src/share/vm/memory/allocation.hpp

Fri, 12 Oct 2012 11:31:27 -0700

author
collins
date
Fri, 12 Oct 2012 11:31:27 -0700
changeset 4168
5876f980ea19
parent 4165
fb19af007ffc
child 4183
7b5885dadbdc
permissions
-rw-r--r--

Merge

     1 /*
     2  * Copyright (c) 1997, 2012, 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  */
    25 #ifndef SHARE_VM_MEMORY_ALLOCATION_HPP
    26 #define SHARE_VM_MEMORY_ALLOCATION_HPP
    28 #include "runtime/globals.hpp"
    29 #include "utilities/globalDefinitions.hpp"
    30 #include "utilities/macros.hpp"
    31 #ifdef COMPILER1
    32 #include "c1/c1_globals.hpp"
    33 #endif
    34 #ifdef COMPILER2
    35 #include "opto/c2_globals.hpp"
    36 #endif
    38 #include <new>
    40 #define ARENA_ALIGN_M1 (((size_t)(ARENA_AMALLOC_ALIGNMENT)) - 1)
    41 #define ARENA_ALIGN_MASK (~((size_t)ARENA_ALIGN_M1))
    42 #define ARENA_ALIGN(x) ((((size_t)(x)) + ARENA_ALIGN_M1) & ARENA_ALIGN_MASK)
    45 // noinline attribute
    46 #ifdef _WINDOWS
    47   #define _NOINLINE_  __declspec(noinline)
    48 #else
    49   #if __GNUC__ < 3    // gcc 2.x does not support noinline attribute
    50     #define _NOINLINE_
    51   #else
    52     #define _NOINLINE_ __attribute__ ((noinline))
    53   #endif
    54 #endif
    56 // All classes in the virtual machine must be subclassed
    57 // by one of the following allocation classes:
    58 //
    59 // For objects allocated in the resource area (see resourceArea.hpp).
    60 // - ResourceObj
    61 //
    62 // For objects allocated in the C-heap (managed by: free & malloc).
    63 // - CHeapObj
    64 //
    65 // For objects allocated on the stack.
    66 // - StackObj
    67 //
    68 // For embedded objects.
    69 // - ValueObj
    70 //
    71 // For classes used as name spaces.
    72 // - AllStatic
    73 //
    74 // For classes in Metaspace (class data)
    75 // - MetaspaceObj
    76 //
    77 // The printable subclasses are used for debugging and define virtual
    78 // member functions for printing. Classes that avoid allocating the
    79 // vtbl entries in the objects should therefore not be the printable
    80 // subclasses.
    81 //
    82 // The following macros and function should be used to allocate memory
    83 // directly in the resource area or in the C-heap:
    84 //
    85 //   NEW_RESOURCE_ARRAY(type,size)
    86 //   NEW_RESOURCE_OBJ(type)
    87 //   NEW_C_HEAP_ARRAY(type,size)
    88 //   NEW_C_HEAP_OBJ(type)
    89 //   char* AllocateHeap(size_t size, const char* name);
    90 //   void  FreeHeap(void* p);
    91 //
    92 // C-heap allocation can be traced using +PrintHeapAllocation.
    93 // malloc and free should therefore never called directly.
    95 // Base class for objects allocated in the C-heap.
    97 // In non product mode we introduce a super class for all allocation classes
    98 // that supports printing.
    99 // We avoid the superclass in product mode since some C++ compilers add
   100 // a word overhead for empty super classes.
   102 #ifdef PRODUCT
   103 #define ALLOCATION_SUPER_CLASS_SPEC
   104 #else
   105 #define ALLOCATION_SUPER_CLASS_SPEC : public AllocatedObj
   106 class AllocatedObj {
   107  public:
   108   // Printing support
   109   void print() const;
   110   void print_value() const;
   112   virtual void print_on(outputStream* st) const;
   113   virtual void print_value_on(outputStream* st) const;
   114 };
   115 #endif
   118 /*
   119  * MemoryType bitmap layout:
   120  * | 16 15 14 13 12 11 10 09 | 08 07 06 05 | 04 03 02 01 |
   121  * |      memory type        |   object    | reserved    |
   122  * |                         |     type    |             |
   123  */
   124 enum MemoryType {
   125   // Memory type by sub systems. It occupies lower byte.
   126   mtNone              = 0x0000,  // undefined
   127   mtClass             = 0x0100,  // memory class for Java classes
   128   mtThread            = 0x0200,  // memory for thread objects
   129   mtThreadStack       = 0x0300,
   130   mtCode              = 0x0400,  // memory for generated code
   131   mtGC                = 0x0500,  // memory for GC
   132   mtCompiler          = 0x0600,  // memory for compiler
   133   mtInternal          = 0x0700,  // memory used by VM, but does not belong to
   134                                  // any of above categories, and not used for
   135                                  // native memory tracking
   136   mtOther             = 0x0800,  // memory not used by VM
   137   mtSymbol            = 0x0900,  // symbol
   138   mtNMT               = 0x0A00,  // memory used by native memory tracking
   139   mtChunk             = 0x0B00,  // chunk that holds content of arenas
   140   mtJavaHeap          = 0x0C00,  // Java heap
   141   mtDontTrack         = 0x0D00,  // memory we donot or cannot track
   142   mt_number_of_types  = 0x000C,  // number of memory types
   143   mt_masks            = 0x7F00,
   145   // object type mask
   146   otArena             = 0x0010, // an arena object
   147   otNMTRecorder       = 0x0020, // memory recorder object
   148   ot_masks            = 0x00F0
   149 };
   151 #define IS_MEMORY_TYPE(flags, type) ((flags & mt_masks) == type)
   152 #define HAS_VALID_MEMORY_TYPE(flags)((flags & mt_masks) != mtNone)
   153 #define FLAGS_TO_MEMORY_TYPE(flags) (flags & mt_masks)
   155 #define IS_ARENA_OBJ(flags)         ((flags & ot_masks) == otArena)
   156 #define IS_NMT_RECORDER(flags)      ((flags & ot_masks) == otNMTRecorder)
   157 #define NMT_CAN_TRACK(flags)        (!IS_NMT_RECORDER(flags) && !(IS_MEMORY_TYPE(flags, mtDontTrack)))
   159 typedef unsigned short MEMFLAGS;
   161 #if INCLUDE_NMT
   163 extern bool NMT_track_callsite;
   165 #else
   167 const bool NMT_track_callsite = false;
   169 #endif // INCLUDE_NMT
   171 // debug build does not inline
   172 #if defined(_DEBUG_)
   173   #define CURRENT_PC       (NMT_track_callsite ? os::get_caller_pc(1) : 0)
   174   #define CALLER_PC        (NMT_track_callsite ? os::get_caller_pc(2) : 0)
   175   #define CALLER_CALLER_PC (NMT_track_callsite ? os::get_caller_pc(3) : 0)
   176 #else
   177   #define CURRENT_PC      (NMT_track_callsite? os::get_caller_pc(0) : 0)
   178   #define CALLER_PC       (NMT_track_callsite ? os::get_caller_pc(1) : 0)
   179   #define CALLER_CALLER_PC (NMT_track_callsite ? os::get_caller_pc(2) : 0)
   180 #endif
   184 template <MEMFLAGS F> class CHeapObj ALLOCATION_SUPER_CLASS_SPEC {
   185  public:
   186   _NOINLINE_ void* operator new(size_t size, address caller_pc = 0);
   187   _NOINLINE_ void* operator new (size_t size, const std::nothrow_t&  nothrow_constant,
   188                                address caller_pc = 0);
   190   void  operator delete(void* p);
   191 };
   193 // Base class for objects allocated on the stack only.
   194 // Calling new or delete will result in fatal error.
   196 class StackObj ALLOCATION_SUPER_CLASS_SPEC {
   197  public:
   198   void* operator new(size_t size);
   199   void  operator delete(void* p);
   200 };
   202 // Base class for objects used as value objects.
   203 // Calling new or delete will result in fatal error.
   204 //
   205 // Portability note: Certain compilers (e.g. gcc) will
   206 // always make classes bigger if it has a superclass, even
   207 // if the superclass does not have any virtual methods or
   208 // instance fields. The HotSpot implementation relies on this
   209 // not to happen. So never make a ValueObj class a direct subclass
   210 // of this object, but use the VALUE_OBJ_CLASS_SPEC class instead, e.g.,
   211 // like this:
   212 //
   213 //   class A VALUE_OBJ_CLASS_SPEC {
   214 //     ...
   215 //   }
   216 //
   217 // With gcc and possible other compilers the VALUE_OBJ_CLASS_SPEC can
   218 // be defined as a an empty string "".
   219 //
   220 class _ValueObj {
   221  public:
   222   void* operator new(size_t size);
   223   void operator delete(void* p);
   224 };
   227 // Base class for objects stored in Metaspace.
   228 // Calling delete will result in fatal error.
   229 //
   230 // Do not inherit from something with a vptr because this class does
   231 // not introduce one.  This class is used to allocate both shared read-only
   232 // and shared read-write classes.
   233 //
   235 class ClassLoaderData;
   237 class MetaspaceObj {
   238  public:
   239   bool is_metadata() const;
   240   bool is_shared() const;
   241   void print_address_on(outputStream* st) const;  // nonvirtual address printing
   243   void* operator new(size_t size, ClassLoaderData* loader_data,
   244                      size_t word_size, bool read_only, Thread* thread);
   245                      // can't use TRAPS from this header file.
   246   void operator delete(void* p) { ShouldNotCallThis(); }
   247 };
   249 // Base class for classes that constitute name spaces.
   251 class AllStatic {
   252  public:
   253   AllStatic()  { ShouldNotCallThis(); }
   254   ~AllStatic() { ShouldNotCallThis(); }
   255 };
   258 //------------------------------Chunk------------------------------------------
   259 // Linked list of raw memory chunks
   260 class Chunk: CHeapObj<mtChunk> {
   261   friend class VMStructs;
   263  protected:
   264   Chunk*       _next;     // Next Chunk in list
   265   const size_t _len;      // Size of this Chunk
   266  public:
   267   void* operator new(size_t size, size_t length);
   268   void  operator delete(void* p);
   269   Chunk(size_t length);
   271   enum {
   272     // default sizes; make them slightly smaller than 2**k to guard against
   273     // buddy-system style malloc implementations
   274 #ifdef _LP64
   275     slack      = 40,            // [RGV] Not sure if this is right, but make it
   276                                 //       a multiple of 8.
   277 #else
   278     slack      = 20,            // suspected sizeof(Chunk) + internal malloc headers
   279 #endif
   281     init_size  =  1*K  - slack, // Size of first chunk
   282     medium_size= 10*K  - slack, // Size of medium-sized chunk
   283     size       = 32*K  - slack, // Default size of an Arena chunk (following the first)
   284     non_pool_size = init_size + 32 // An initial size which is not one of above
   285   };
   287   void chop();                  // Chop this chunk
   288   void next_chop();             // Chop next chunk
   289   static size_t aligned_overhead_size(void) { return ARENA_ALIGN(sizeof(Chunk)); }
   290   static size_t aligned_overhead_size(size_t byte_size) { return ARENA_ALIGN(byte_size); }
   292   size_t length() const         { return _len;  }
   293   Chunk* next() const           { return _next;  }
   294   void set_next(Chunk* n)       { _next = n;  }
   295   // Boundaries of data area (possibly unused)
   296   char* bottom() const          { return ((char*) this) + aligned_overhead_size();  }
   297   char* top()    const          { return bottom() + _len; }
   298   bool contains(char* p) const  { return bottom() <= p && p <= top(); }
   300   // Start the chunk_pool cleaner task
   301   static void start_chunk_pool_cleaner_task();
   303   static void clean_chunk_pool();
   304 };
   306 //------------------------------Arena------------------------------------------
   307 // Fast allocation of memory
   308 class Arena : public CHeapObj<mtNone|otArena> {
   309 protected:
   310   friend class ResourceMark;
   311   friend class HandleMark;
   312   friend class NoHandleMark;
   313   friend class VMStructs;
   315   Chunk *_first;                // First chunk
   316   Chunk *_chunk;                // current chunk
   317   char *_hwm, *_max;            // High water mark and max in current chunk
   318   void* grow(size_t x);         // Get a new Chunk of at least size x
   319   size_t _size_in_bytes;        // Size of arena (used for native memory tracking)
   321   NOT_PRODUCT(static julong _bytes_allocated;) // total #bytes allocated since start
   322   friend class AllocStats;
   323   debug_only(void* malloc(size_t size);)
   324   debug_only(void* internal_malloc_4(size_t x);)
   325   NOT_PRODUCT(void inc_bytes_allocated(size_t x);)
   327   void signal_out_of_memory(size_t request, const char* whence) const;
   329   void check_for_overflow(size_t request, const char* whence) const {
   330     if (UINTPTR_MAX - request < (uintptr_t)_hwm) {
   331       signal_out_of_memory(request, whence);
   332     }
   333  }
   335  public:
   336   Arena();
   337   Arena(size_t init_size);
   338   Arena(Arena *old);
   339   ~Arena();
   340   void  destruct_contents();
   341   char* hwm() const             { return _hwm; }
   343   // new operators
   344   void* operator new (size_t size);
   345   void* operator new (size_t size, const std::nothrow_t& nothrow_constant);
   347   // dynamic memory type tagging
   348   void* operator new(size_t size, MEMFLAGS flags);
   349   void* operator new(size_t size, const std::nothrow_t& nothrow_constant, MEMFLAGS flags);
   350   void  operator delete(void* p);
   352   // Fast allocate in the arena.  Common case is: pointer test + increment.
   353   void* Amalloc(size_t x) {
   354     assert(is_power_of_2(ARENA_AMALLOC_ALIGNMENT) , "should be a power of 2");
   355     x = ARENA_ALIGN(x);
   356     debug_only(if (UseMallocOnly) return malloc(x);)
   357     check_for_overflow(x, "Arena::Amalloc");
   358     NOT_PRODUCT(inc_bytes_allocated(x);)
   359     if (_hwm + x > _max) {
   360       return grow(x);
   361     } else {
   362       char *old = _hwm;
   363       _hwm += x;
   364       return old;
   365     }
   366   }
   367   // Further assume size is padded out to words
   368   void *Amalloc_4(size_t x) {
   369     assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" );
   370     debug_only(if (UseMallocOnly) return malloc(x);)
   371     check_for_overflow(x, "Arena::Amalloc_4");
   372     NOT_PRODUCT(inc_bytes_allocated(x);)
   373     if (_hwm + x > _max) {
   374       return grow(x);
   375     } else {
   376       char *old = _hwm;
   377       _hwm += x;
   378       return old;
   379     }
   380   }
   382   // Allocate with 'double' alignment. It is 8 bytes on sparc.
   383   // In other cases Amalloc_D() should be the same as Amalloc_4().
   384   void* Amalloc_D(size_t x) {
   385     assert( (x&(sizeof(char*)-1)) == 0, "misaligned size" );
   386     debug_only(if (UseMallocOnly) return malloc(x);)
   387 #if defined(SPARC) && !defined(_LP64)
   388 #define DALIGN_M1 7
   389     size_t delta = (((size_t)_hwm + DALIGN_M1) & ~DALIGN_M1) - (size_t)_hwm;
   390     x += delta;
   391 #endif
   392     check_for_overflow(x, "Arena::Amalloc_D");
   393     NOT_PRODUCT(inc_bytes_allocated(x);)
   394     if (_hwm + x > _max) {
   395       return grow(x); // grow() returns a result aligned >= 8 bytes.
   396     } else {
   397       char *old = _hwm;
   398       _hwm += x;
   399 #if defined(SPARC) && !defined(_LP64)
   400       old += delta; // align to 8-bytes
   401 #endif
   402       return old;
   403     }
   404   }
   406   // Fast delete in area.  Common case is: NOP (except for storage reclaimed)
   407   void Afree(void *ptr, size_t size) {
   408 #ifdef ASSERT
   409     if (ZapResourceArea) memset(ptr, badResourceValue, size); // zap freed memory
   410     if (UseMallocOnly) return;
   411 #endif
   412     if (((char*)ptr) + size == _hwm) _hwm = (char*)ptr;
   413   }
   415   void *Arealloc( void *old_ptr, size_t old_size, size_t new_size );
   417   // Move contents of this arena into an empty arena
   418   Arena *move_contents(Arena *empty_arena);
   420   // Determine if pointer belongs to this Arena or not.
   421   bool contains( const void *ptr ) const;
   423   // Total of all chunks in use (not thread-safe)
   424   size_t used() const;
   426   // Total # of bytes used
   427   size_t size_in_bytes() const         {  return _size_in_bytes; };
   428   void set_size_in_bytes(size_t size);
   430   static void free_malloced_objects(Chunk* chunk, char* hwm, char* max, char* hwm2)  PRODUCT_RETURN;
   431   static void free_all(char** start, char** end)                                     PRODUCT_RETURN;
   433   // how many arena instances
   434   NOT_PRODUCT(static volatile jint _instance_count;)
   435 private:
   436   // Reset this Arena to empty, access will trigger grow if necessary
   437   void   reset(void) {
   438     _first = _chunk = NULL;
   439     _hwm = _max = NULL;
   440     set_size_in_bytes(0);
   441   }
   442 };
   444 // One of the following macros must be used when allocating
   445 // an array or object from an arena
   446 #define NEW_ARENA_ARRAY(arena, type, size) \
   447   (type*) (arena)->Amalloc((size) * sizeof(type))
   449 #define REALLOC_ARENA_ARRAY(arena, type, old, old_size, new_size)    \
   450   (type*) (arena)->Arealloc((char*)(old), (old_size) * sizeof(type), \
   451                             (new_size) * sizeof(type) )
   453 #define FREE_ARENA_ARRAY(arena, type, old, size) \
   454   (arena)->Afree((char*)(old), (size) * sizeof(type))
   456 #define NEW_ARENA_OBJ(arena, type) \
   457   NEW_ARENA_ARRAY(arena, type, 1)
   460 //%note allocation_1
   461 extern char* resource_allocate_bytes(size_t size);
   462 extern char* resource_allocate_bytes(Thread* thread, size_t size);
   463 extern char* resource_reallocate_bytes( char *old, size_t old_size, size_t new_size);
   464 extern void resource_free_bytes( char *old, size_t size );
   466 //----------------------------------------------------------------------
   467 // Base class for objects allocated in the resource area per default.
   468 // Optionally, objects may be allocated on the C heap with
   469 // new(ResourceObj::C_HEAP) Foo(...) or in an Arena with new (&arena)
   470 // ResourceObj's can be allocated within other objects, but don't use
   471 // new or delete (allocation_type is unknown).  If new is used to allocate,
   472 // use delete to deallocate.
   473 class ResourceObj ALLOCATION_SUPER_CLASS_SPEC {
   474  public:
   475   enum allocation_type { STACK_OR_EMBEDDED = 0, RESOURCE_AREA, C_HEAP, ARENA, allocation_mask = 0x3 };
   476   static void set_allocation_type(address res, allocation_type type) NOT_DEBUG_RETURN;
   477 #ifdef ASSERT
   478  private:
   479   // When this object is allocated on stack the new() operator is not
   480   // called but garbage on stack may look like a valid allocation_type.
   481   // Store negated 'this' pointer when new() is called to distinguish cases.
   482   // Use second array's element for verification value to distinguish garbage.
   483   uintptr_t _allocation_t[2];
   484   bool is_type_set() const;
   485  public:
   486   allocation_type get_allocation_type() const;
   487   bool allocated_on_stack()    const { return get_allocation_type() == STACK_OR_EMBEDDED; }
   488   bool allocated_on_res_area() const { return get_allocation_type() == RESOURCE_AREA; }
   489   bool allocated_on_C_heap()   const { return get_allocation_type() == C_HEAP; }
   490   bool allocated_on_arena()    const { return get_allocation_type() == ARENA; }
   491   ResourceObj(); // default construtor
   492   ResourceObj(const ResourceObj& r); // default copy construtor
   493   ResourceObj& operator=(const ResourceObj& r); // default copy assignment
   494   ~ResourceObj();
   495 #endif // ASSERT
   497  public:
   498   void* operator new(size_t size, allocation_type type, MEMFLAGS flags);
   499   void* operator new(size_t size, Arena *arena) {
   500       address res = (address)arena->Amalloc(size);
   501       DEBUG_ONLY(set_allocation_type(res, ARENA);)
   502       return res;
   503   }
   504   void* operator new(size_t size) {
   505       address res = (address)resource_allocate_bytes(size);
   506       DEBUG_ONLY(set_allocation_type(res, RESOURCE_AREA);)
   507       return res;
   508   }
   509   void  operator delete(void* p);
   510 };
   512 // One of the following macros must be used when allocating an array
   513 // or object to determine whether it should reside in the C heap on in
   514 // the resource area.
   516 #define NEW_RESOURCE_ARRAY(type, size)\
   517   (type*) resource_allocate_bytes((size) * sizeof(type))
   519 #define NEW_RESOURCE_ARRAY_IN_THREAD(thread, type, size)\
   520   (type*) resource_allocate_bytes(thread, (size) * sizeof(type))
   522 #define REALLOC_RESOURCE_ARRAY(type, old, old_size, new_size)\
   523   (type*) resource_reallocate_bytes((char*)(old), (old_size) * sizeof(type), (new_size) * sizeof(type) )
   525 #define FREE_RESOURCE_ARRAY(type, old, size)\
   526   resource_free_bytes((char*)(old), (size) * sizeof(type))
   528 #define FREE_FAST(old)\
   529     /* nop */
   531 #define NEW_RESOURCE_OBJ(type)\
   532   NEW_RESOURCE_ARRAY(type, 1)
   534 #define NEW_C_HEAP_ARRAY(type, size, memflags)\
   535   (type*) (AllocateHeap((size) * sizeof(type), memflags))
   537 #define REALLOC_C_HEAP_ARRAY(type, old, size, memflags)\
   538   (type*) (ReallocateHeap((char*)old, (size) * sizeof(type), memflags))
   540 #define FREE_C_HEAP_ARRAY(type,old,memflags) \
   541   FreeHeap((char*)(old), memflags)
   543 #define NEW_C_HEAP_OBJ(type, memflags)\
   544   NEW_C_HEAP_ARRAY(type, 1, memflags)
   547 #define NEW_C_HEAP_ARRAY2(type, size, memflags, pc)\
   548   (type*) (AllocateHeap((size) * sizeof(type), memflags, pc))
   550 #define REALLOC_C_HEAP_ARRAY2(type, old, size, memflags, pc)\
   551   (type*) (ReallocateHeap((char*)old, (size) * sizeof(type), memflags, pc))
   553 #define NEW_C_HEAP_OBJ2(type, memflags, pc)\
   554   NEW_C_HEAP_ARRAY2(type, 1, memflags, pc)
   557 extern bool warn_new_operator;
   559 // for statistics
   560 #ifndef PRODUCT
   561 class AllocStats : StackObj {
   562   julong start_mallocs, start_frees;
   563   julong start_malloc_bytes, start_mfree_bytes, start_res_bytes;
   564  public:
   565   AllocStats();
   567   julong num_mallocs();    // since creation of receiver
   568   julong alloc_bytes();
   569   julong num_frees();
   570   julong free_bytes();
   571   julong resource_bytes();
   572   void   print();
   573 };
   574 #endif
   577 //------------------------------ReallocMark---------------------------------
   578 // Code which uses REALLOC_RESOURCE_ARRAY should check an associated
   579 // ReallocMark, which is declared in the same scope as the reallocated
   580 // pointer.  Any operation that could __potentially__ cause a reallocation
   581 // should check the ReallocMark.
   582 class ReallocMark: public StackObj {
   583 protected:
   584   NOT_PRODUCT(int _nesting;)
   586 public:
   587   ReallocMark()   PRODUCT_RETURN;
   588   void check()    PRODUCT_RETURN;
   589 };
   591 #endif // SHARE_VM_MEMORY_ALLOCATION_HPP

mercurial