< prev index next >

src/hotspot/share/compiler/directivesParser.cpp

Print this page




  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 
  50 void DirectivesParser::clean_tmp() {




  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.inline.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 
  50 void DirectivesParser::clean_tmp() {


< prev index next >