comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp @ 6188:7994a5a35fcf

6921087: G1: remove per-GC-thread expansion tables from the fine-grain remembered sets Summary: Remove the per-thread expansion tables (PosParPRT) and associated expansion and compaction from the fine grain RSet entries. This code has been unused for a while. Reviewed-by: johnc, brutisso Contributed-by: Thomas Schatzl <thomas.schatzl@jku.at>
author johnc
date Mon, 25 Jun 2012 16:00:55 -0700
parents b9442ac22f59
children 24b9c7f4cae6 922993931b3d
comparison
equal deleted inserted replaced
6161:1c280e5b8d31 6188:7994a5a35fcf
4748 _g1h->g1_policy()->record_termination(worker_id, term_ms, pss.term_attempts()); 4748 _g1h->g1_policy()->record_termination(worker_id, term_ms, pss.term_attempts());
4749 } 4749 }
4750 _g1h->g1_policy()->record_thread_age_table(pss.age_table()); 4750 _g1h->g1_policy()->record_thread_age_table(pss.age_table());
4751 _g1h->update_surviving_young_words(pss.surviving_young_words()+1); 4751 _g1h->update_surviving_young_words(pss.surviving_young_words()+1);
4752 4752
4753 // Clean up any par-expanded rem sets.
4754 HeapRegionRemSet::par_cleanup();
4755
4756 if (ParallelGCVerbose) { 4753 if (ParallelGCVerbose) {
4757 MutexLocker x(stats_lock()); 4754 MutexLocker x(stats_lock());
4758 pss.print_termination_stats(worker_id); 4755 pss.print_termination_stats(worker_id);
4759 } 4756 }
4760 4757