< prev index next >

src/hotspot/share/gc/g1/g1GCPhaseTimes.cpp

Print this page
rev 49900 : imported patch 6672778-partial-queue-trimming
rev 49901 : imported patch 6672778-refactoring
rev 49902 : imported patch 6672778-stefanj-review
rev 49903 : imported patch 6672778-inconsistent-time-fixes
rev 49904 : imported patch 6672778-satb-timing-fix
rev 49905 : imported patch 8201492-properly-implement-non-contiguous-reference-processing
rev 49907 : imported patch 8202018-move-card-table-clear
rev 49910 : imported patch 8202017-reference-processor-remove-enqueue

@@ -127,11 +127,10 @@
   _cur_resize_tlab_time_ms = 0.0;
   _cur_derived_pointer_table_update_time_ms = 0.0;
   _cur_clear_ct_time_ms = 0.0;
   _cur_expand_heap_time_ms = 0.0;
   _cur_ref_proc_time_ms = 0.0;
-  _cur_ref_enq_time_ms = 0.0;
   _cur_weak_ref_proc_time_ms = 0.0;
   _cur_collection_start_sec = 0.0;
   _root_region_scan_wait_time_ms = 0.0;
   _external_accounted_time_ms = 0.0;
   _recorded_clear_claimed_marks_time_ms = 0.0;

@@ -381,11 +380,10 @@
   const double sum_ms = evac_fail_handling +
                         _cur_collection_code_root_fixup_time_ms +
                         _recorded_preserve_cm_referents_time_ms +
                         _cur_ref_proc_time_ms +
                         _cur_weak_ref_proc_time_ms +
-                        _cur_ref_enq_time_ms +
                         _cur_clear_ct_time_ms +
                         _recorded_merge_pss_time_ms +
                         _cur_strong_code_root_purge_time_ms +
                         _recorded_redirty_logged_cards_time_ms +
                         _recorded_total_free_cset_time_ms +

@@ -414,13 +412,10 @@
     debug_time("Evacuation Failure", evac_fail_handling);
     trace_time("Recalculate Used", _cur_evac_fail_recalc_used);
     trace_time("Remove Self Forwards",_cur_evac_fail_remove_self_forwards);
   }
 
-  debug_time_for_reference("Reference Enqueuing", _cur_ref_enq_time_ms);
-  _ref_phase_times.print_enqueue_phase(2, false);
-
   debug_time("Merge Per-Thread State", _recorded_merge_pss_time_ms);
   debug_time("Code Roots Purge", _cur_strong_code_root_purge_time_ms);
 
   debug_time("Redirty Cards", _recorded_redirty_logged_cards_time_ms);
   trace_phase(_gc_par_phases[RedirtyCards]);
< prev index next >