src/share/vm/compiler/directivesParser.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/compiler

src/share/vm/compiler/directivesParser.cpp

Print this page


   1 /*
   2  * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "compiler/compileBroker.hpp"
  27 #include "compiler/directivesParser.hpp"
  28 #include "memory/allocation.inline.hpp"

  29 #include "runtime/os.hpp"
  30 #include <string.h>
  31 
  32 void DirectivesParser::push_tmp(CompilerDirectives* dir) {
  33   _tmp_depth++;
  34   dir->set_next(_tmp_top);
  35   _tmp_top = dir;
  36 }
  37 
  38 CompilerDirectives* DirectivesParser::pop_tmp() {
  39   if (_tmp_top == NULL) {
  40     return NULL;
  41   }
  42   CompilerDirectives* tmp = _tmp_top;
  43   _tmp_top = _tmp_top->next();
  44   tmp->set_next(NULL);
  45   _tmp_depth--;
  46   return tmp;
  47 }
  48 


   1 /*
   2  * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "compiler/compileBroker.hpp"
  27 #include "compiler/directivesParser.hpp"
  28 #include "memory/allocation.inline.hpp"
  29 #include "memory/resourceArea.hpp"
  30 #include "runtime/os.hpp"
  31 #include <string.h>
  32 
  33 void DirectivesParser::push_tmp(CompilerDirectives* dir) {
  34   _tmp_depth++;
  35   dir->set_next(_tmp_top);
  36   _tmp_top = dir;
  37 }
  38 
  39 CompilerDirectives* DirectivesParser::pop_tmp() {
  40   if (_tmp_top == NULL) {
  41     return NULL;
  42   }
  43   CompilerDirectives* tmp = _tmp_top;
  44   _tmp_top = _tmp_top->next();
  45   tmp->set_next(NULL);
  46   _tmp_depth--;
  47   return tmp;
  48 }
  49 


src/share/vm/compiler/directivesParser.cpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File