< prev index next >

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

Print this page
rev 13166 : imported patch 8183394-remove-unused-n_workers-method
rev 13167 : imported patch 8179677-rename-conc-refined-cards
rev 13168 : [mq]: 8179677-erik-review

*** 74,84 **** // Flush remaining refinement buffers for cross-region references to either evacuate references // into the collection set or update the remembered set. void update_rem_set(DirtyCardQueue* into_cset_dcq, G1ParScanThreadState* pss, uint worker_i); G1CollectedHeap* _g1; ! size_t _conc_refine_cards; CardTableModRefBS* _ct_bs; G1Policy* _g1p; G1HotCardCache* _hot_card_cache; --- 74,84 ---- // Flush remaining refinement buffers for cross-region references to either evacuate references // into the collection set or update the remembered set. void update_rem_set(DirtyCardQueue* into_cset_dcq, G1ParScanThreadState* pss, uint worker_i); G1CollectedHeap* _g1; ! size_t _num_conc_refined_cards; // Number of cards refined concurrently to the mutator. CardTableModRefBS* _ct_bs; G1Policy* _g1p; G1HotCardCache* _hot_card_cache;
*** 146,156 **** void print_periodic_summary_info(const char* header, uint period_count); // Prepare remembered set for verification. void prepare_for_verify(); ! size_t conc_refine_cards() const { return _conc_refine_cards; } void create_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap); void finalize_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap); // Verify that the liveness count data created concurrently matches one created --- 146,156 ---- void print_periodic_summary_info(const char* header, uint period_count); // Prepare remembered set for verification. void prepare_for_verify(); ! size_t num_conc_refined_cards() const { return _num_conc_refined_cards; } void create_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap); void finalize_card_live_data(WorkGang* workers, G1CMBitMap* mark_bitmap); // Verify that the liveness count data created concurrently matches one created
< prev index next >