< prev index next >

src/hotspot/share/adlc/arena.hpp

Print this page

        

@@ -23,10 +23,12 @@
  */
 
 #ifndef SHARE_VM_ADLC_ARENA_HPP
 #define SHARE_VM_ADLC_ARENA_HPP
 
+void* AllocateHeap(size_t size);
+
 // All classes in adlc may be derived
 // from one of the following allocation classes:
 //
 // For objects allocated in the C-heap (managed by: malloc & free).
 // - CHeapObj

@@ -40,11 +42,10 @@
   void* operator new(size_t size) throw();
   void  operator delete(void* p);
   void* new_array(size_t size);
 };
 
-
 // Base class for classes that constitute name spaces.
 
 class AllStatic {
  public:
   void* operator new(size_t size) throw();
< prev index next >