src/hotspot/share/gc/g1/g1ParScanThreadState.hpp
changeset 57802 854e828d6b5b
parent 57785 8d9362f3b8aa
child 58679 9c3209ff7550
child 59061 df6f2350edfa
equal deleted inserted replaced
57801:aff991f6e64d 57802:854e828d6b5b
   143   uint worker_id() { return _worker_id; }
   143   uint worker_id() { return _worker_id; }
   144 
   144 
   145   size_t lab_waste_words() const;
   145   size_t lab_waste_words() const;
   146   size_t lab_undo_waste_words() const;
   146   size_t lab_undo_waste_words() const;
   147 
   147 
   148   size_t* surviving_young_words() {
       
   149     // We add one to hide entry 0 which accumulates surviving words for
       
   150     // age -1 regions (i.e. non-young ones)
       
   151     return _surviving_young_words + 1;
       
   152   }
       
   153 
       
   154   void flush(size_t* surviving_young_words);
   148   void flush(size_t* surviving_young_words);
   155 
   149 
   156 private:
   150 private:
   157   #define G1_PARTIAL_ARRAY_MASK 0x2
   151   #define G1_PARTIAL_ARRAY_MASK 0x2
   158 
   152