comparison src/share/vm/gc_implementation/g1/g1GCPhaseTimes.cpp @ 17756:a07bea31ef35

8035398: Add card redirty time in "Other" time in G1 Summary: Show the time taken by card redirtying during GC in a new "Redirty Cards" line. Reviewed-by: jwilhelm, brutisso
author tschatzl
date Mon, 24 Mar 2014 15:30:40 +0100
parents 96b1c2e06e25
children eff02b5bd56c
comparison
equal deleted inserted replaced
17755:96b1c2e06e25 17756:a07bea31ef35
312 print_stats(2, "Choose CSet", 312 print_stats(2, "Choose CSet",
313 (_recorded_young_cset_choice_time_ms + 313 (_recorded_young_cset_choice_time_ms +
314 _recorded_non_young_cset_choice_time_ms)); 314 _recorded_non_young_cset_choice_time_ms));
315 print_stats(2, "Ref Proc", _cur_ref_proc_time_ms); 315 print_stats(2, "Ref Proc", _cur_ref_proc_time_ms);
316 print_stats(2, "Ref Enq", _cur_ref_enq_time_ms); 316 print_stats(2, "Ref Enq", _cur_ref_enq_time_ms);
317 if (G1DeferredRSUpdate) {
318 print_stats(2, "Redirty Cards", _recorded_redirty_logged_cards_time_ms);
319 }
317 print_stats(2, "Free CSet", 320 print_stats(2, "Free CSet",
318 (_recorded_young_free_cset_time_ms + 321 (_recorded_young_free_cset_time_ms +
319 _recorded_non_young_free_cset_time_ms)); 322 _recorded_non_young_free_cset_time_ms));
320 if (G1Log::finest()) { 323 if (G1Log::finest()) {
321 print_stats(3, "Young Free CSet", _recorded_young_free_cset_time_ms); 324 print_stats(3, "Young Free CSet", _recorded_young_free_cset_time_ms);