hotspot/src/share/vm/c1/c1_Compilation.hpp
changeset 19696 bd5a0131bde1
parent 16611 6807a703dd6b
child 20702 bbe0fcde6e13
equal deleted inserted replaced
19695:c0b305024048 19696:bd5a0131bde1
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
   277 
   277 
   278 //----------------------------------------------------------------------
   278 //----------------------------------------------------------------------
   279 // Base class for objects allocated by the compiler in the compilation arena
   279 // Base class for objects allocated by the compiler in the compilation arena
   280 class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
   280 class CompilationResourceObj ALLOCATION_SUPER_CLASS_SPEC {
   281  public:
   281  public:
   282   void* operator new(size_t size) { return Compilation::current()->arena()->Amalloc(size); }
   282   void* operator new(size_t size) throw() { return Compilation::current()->arena()->Amalloc(size); }
   283   void* operator new(size_t size, Arena* arena) {
   283   void* operator new(size_t size, Arena* arena) throw() {
   284     return arena->Amalloc(size);
   284     return arena->Amalloc(size);
   285   }
   285   }
   286   void  operator delete(void* p) {} // nothing to do
   286   void  operator delete(void* p) {} // nothing to do
   287 };
   287 };
   288 
   288