comparison src/share/vm/gc_implementation/g1/g1GCPhaseTimes.hpp @ 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 191174b49bec
children eff02b5bd56c
comparison
equal deleted inserted replaced
17755:96b1c2e06e25 17756:a07bea31ef35
141 double _root_region_scan_wait_time_ms; 141 double _root_region_scan_wait_time_ms;
142 142
143 double _recorded_young_cset_choice_time_ms; 143 double _recorded_young_cset_choice_time_ms;
144 double _recorded_non_young_cset_choice_time_ms; 144 double _recorded_non_young_cset_choice_time_ms;
145 145
146 double _recorded_redirty_logged_cards_time_ms;
147
146 double _recorded_young_free_cset_time_ms; 148 double _recorded_young_free_cset_time_ms;
147 double _recorded_non_young_free_cset_time_ms; 149 double _recorded_non_young_free_cset_time_ms;
148 150
149 double _cur_verify_before_time_ms; 151 double _cur_verify_before_time_ms;
150 double _cur_verify_after_time_ms; 152 double _cur_verify_after_time_ms;
254 256
255 void record_non_young_cset_choice_time_ms(double time_ms) { 257 void record_non_young_cset_choice_time_ms(double time_ms) {
256 _recorded_non_young_cset_choice_time_ms = time_ms; 258 _recorded_non_young_cset_choice_time_ms = time_ms;
257 } 259 }
258 260
261 void record_redirty_logged_cards_time_ms(double time_ms) {
262 _recorded_redirty_logged_cards_time_ms = time_ms;
263 }
264
259 void record_cur_collection_start_sec(double time_ms) { 265 void record_cur_collection_start_sec(double time_ms) {
260 _cur_collection_start_sec = time_ms; 266 _cur_collection_start_sec = time_ms;
261 } 267 }
262 268
263 void record_verify_before_time_ms(double time_ms) { 269 void record_verify_before_time_ms(double time_ms) {