Skip to content

Commit ba3587e

Browse files
author
Thomas Schatzl
committedAug 31, 2021
8273144: Remove unused top level "Sample Collection Set Candidates" logging
Reviewed-by: iwalulya, ayang
1 parent 75d987a commit ba3587e

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed
 

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

-3
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ void G1GCPhaseTimes::reset() {
175175
_recorded_prepare_heap_roots_time_ms = 0.0;
176176
_recorded_young_cset_choice_time_ms = 0.0;
177177
_recorded_non_young_cset_choice_time_ms = 0.0;
178-
_recorded_sample_collection_set_candidates_time_ms = 0.0;
179178
_recorded_preserve_cm_referents_time_ms = 0.0;
180179
_recorded_start_new_cset_time_ms = 0.0;
181180
_recorded_serial_free_cset_time_ms = 0.0;
@@ -463,7 +462,6 @@ double G1GCPhaseTimes::print_post_evacuate_collection_set() const {
463462
_recorded_preserve_cm_referents_time_ms +
464463
_cur_ref_proc_time_ms +
465464
(_weak_phase_times.total_time_sec() * MILLIUNITS) +
466-
_recorded_sample_collection_set_candidates_time_ms +
467465
_cur_post_evacuate_cleanup_1_time_ms +
468466
_cur_post_evacuate_cleanup_2_time_ms +
469467
_recorded_total_rebuild_freelist_time_ms +
@@ -487,7 +485,6 @@ double G1GCPhaseTimes::print_post_evacuate_collection_set() const {
487485
debug_phase(_gc_par_phases[RemoveSelfForwardingPtr], 1);
488486
}
489487

490-
debug_time("Sample Collection Set Candidates", _recorded_sample_collection_set_candidates_time_ms);
491488
trace_phase(_gc_par_phases[RedirtyCards]);
492489
debug_time("Post Evacuate Cleanup 2", _cur_post_evacuate_cleanup_2_time_ms);
493490
if (G1CollectedHeap::heap()->evacuation_failed()) {

‎src/hotspot/share/gc/g1/g1GCPhaseTimes.hpp

-6
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ class G1GCPhaseTimes : public CHeapObj<mtGC> {
186186
double _recorded_young_cset_choice_time_ms;
187187
double _recorded_non_young_cset_choice_time_ms;
188188

189-
double _recorded_sample_collection_set_candidates_time_ms;
190-
191189
double _recorded_preserve_cm_referents_time_ms;
192190

193191
double _recorded_start_new_cset_time_ms;
@@ -344,10 +342,6 @@ class G1GCPhaseTimes : public CHeapObj<mtGC> {
344342
_recorded_non_young_cset_choice_time_ms = time_ms;
345343
}
346344

347-
void record_sample_collection_set_candidates_time_ms(double time_ms) {
348-
_recorded_sample_collection_set_candidates_time_ms = time_ms;
349-
}
350-
351345
void record_preserve_cm_referents_time_ms(double time_ms) {
352346
_recorded_preserve_cm_referents_time_ms = time_ms;
353347
}

‎test/hotspot/jtreg/gc/g1/TestGCLogMessages.java

-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@ public boolean isAvailable() {
140140
new LogMessageWithLevel("Region Register", Level.DEBUG),
141141
new LogMessageWithLevel("Prepare Heap Roots", Level.DEBUG),
142142
new LogMessageWithLevel("Concatenate Dirty Card Logs", Level.DEBUG),
143-
new LogMessageWithLevel("Sample Collection Set Candidates", Level.DEBUG),
144143
// Free CSet
145144
new LogMessageWithLevel("Free Collection Set", Level.DEBUG),
146145
new LogMessageWithLevel("Serial Free Collection Set", Level.TRACE),

0 commit comments

Comments
 (0)
Please sign in to comment.