src/hotspot/share/gc/g1/heapRegion.cpp
changeset 53034 de99beff5c0e
parent 52897 495c05ee2a9a
child 53839 31dde2f0ddf1
equal deleted inserted replaced
53033:dcbb71b9e7c0 53034:de99beff5c0e
   875     p += block_size(p);
   875     p += block_size(p);
   876   }
   876   }
   877 }
   877 }
   878 
   878 
   879 G1ContiguousSpace::G1ContiguousSpace(G1BlockOffsetTable* bot) :
   879 G1ContiguousSpace::G1ContiguousSpace(G1BlockOffsetTable* bot) :
       
   880   _top(NULL),
   880   _bot_part(bot, this),
   881   _bot_part(bot, this),
   881   _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true)
   882   _par_alloc_lock(Mutex::leaf, "OffsetTableContigSpace par alloc lock", true),
       
   883   _pre_dummy_top(NULL)
   882 {
   884 {
   883 }
   885 }
   884 
   886 
   885 void G1ContiguousSpace::initialize(MemRegion mr, bool clear_space, bool mangle_space) {
   887 void G1ContiguousSpace::initialize(MemRegion mr, bool clear_space, bool mangle_space) {
   886   CompactibleSpace::initialize(mr, clear_space, mangle_space);
   888   CompactibleSpace::initialize(mr, clear_space, mangle_space);