< prev index next >

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

Print this page
rev 12944 : imported patch 8178148-more-detailed-scan-rs-logging

*** 196,241 **** class G1ParScanThreadStateSet : public StackObj { G1CollectedHeap* _g1h; G1ParScanThreadState** _states; size_t* _surviving_young_words_total; - size_t* _cards_scanned; - size_t _total_cards_scanned; size_t _young_cset_length; uint _n_workers; bool _flushed; public: G1ParScanThreadStateSet(G1CollectedHeap* g1h, uint n_workers, size_t young_cset_length) : _g1h(g1h), _states(NEW_C_HEAP_ARRAY(G1ParScanThreadState*, n_workers, mtGC)), _surviving_young_words_total(NEW_C_HEAP_ARRAY(size_t, young_cset_length, mtGC)), - _cards_scanned(NEW_C_HEAP_ARRAY(size_t, n_workers, mtGC)), - _total_cards_scanned(0), _young_cset_length(young_cset_length), _n_workers(n_workers), _flushed(false) { for (uint i = 0; i < n_workers; ++i) { _states[i] = NULL; } memset(_surviving_young_words_total, 0, young_cset_length * sizeof(size_t)); - memset(_cards_scanned, 0, n_workers * sizeof(size_t)); } ~G1ParScanThreadStateSet() { assert(_flushed, "thread local state from the per thread states should have been flushed"); FREE_C_HEAP_ARRAY(G1ParScanThreadState*, _states); FREE_C_HEAP_ARRAY(size_t, _surviving_young_words_total); - FREE_C_HEAP_ARRAY(size_t, _cards_scanned); } void flush(); G1ParScanThreadState* state_for_worker(uint worker_id); - void add_cards_scanned(uint worker_id, size_t cards_scanned); - size_t total_cards_scanned() const; const size_t* surviving_young_words() const; private: G1ParScanThreadState* new_par_scan_state(uint worker_id, size_t young_cset_length); }; --- 196,233 ----
< prev index next >