hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.hpp
changeset 27903 14c6e2f23fa0
parent 27899 17754211a7ab
child 28031 10aec24d2b61
child 28163 322d55d167be
equal deleted inserted replaced
27902:fe89161ff160 27903:14c6e2f23fa0
   719   // Support for parallelizing Eden rescan in CMS remark phase
   719   // Support for parallelizing Eden rescan in CMS remark phase
   720   void sample_eden(); // ... sample Eden space top
   720   void sample_eden(); // ... sample Eden space top
   721 
   721 
   722  private:
   722  private:
   723   // Support for parallelizing young gen rescan in CMS remark phase
   723   // Support for parallelizing young gen rescan in CMS remark phase
   724   Generation* _young_gen;  // the younger gen
   724   ParNewGeneration* _young_gen;  // the younger gen
       
   725 
   725   HeapWord** _top_addr;    // ... Top of Eden
   726   HeapWord** _top_addr;    // ... Top of Eden
   726   HeapWord** _end_addr;    // ... End of Eden
   727   HeapWord** _end_addr;    // ... End of Eden
   727   Mutex*     _eden_chunk_lock;
   728   Mutex*     _eden_chunk_lock;
   728   HeapWord** _eden_chunk_array; // ... Eden partitioning array
   729   HeapWord** _eden_chunk_array; // ... Eden partitioning array
   729   size_t     _eden_chunk_index; // ... top (exclusive) of array
   730   size_t     _eden_chunk_index; // ... top (exclusive) of array