< prev index next >

src/hotspot/share/gc/g1/g1ParScanThreadState.hpp

Print this page
rev 53824 : imported patch 8219096-merge-termination-stats-logging
rev 53825 : [mq]: 8219096-lkorinth-review

*** 125,137 **** } G1EvacuationRootClosures* closures() { return _closures; } uint worker_id() { return _worker_id; } ! // Returns the current amount of waste due to alignment or not being able to fit ! // objects within LABs and the undo waste. ! virtual void waste(size_t& wasted, size_t& undo_wasted); size_t* surviving_young_words() { // We add one to hide entry 0 which accumulates surviving words for // age -1 regions (i.e. non-young ones) return _surviving_young_words + 1; --- 125,136 ---- } G1EvacuationRootClosures* closures() { return _closures; } uint worker_id() { return _worker_id; } ! size_t lab_waste_words() const; ! size_t lab_undo_waste_words() const; size_t* surviving_young_words() { // We add one to hide entry 0 which accumulates surviving words for // age -1 regions (i.e. non-young ones) return _surviving_young_words + 1;
< prev index next >