Skip to content

Commit a8f1542

Browse files
author
Thomas Schatzl
committedJul 19, 2021
8270455: Remove unused JFR tracer related code in G1CollectedHeap
Reviewed-by: ayang, kbarrett
1 parent edff556 commit a8f1542

File tree

2 files changed

+0
-18
lines changed

2 files changed

+0
-18
lines changed
 

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

-15
Original file line numberDiff line numberDiff line change
@@ -2867,21 +2867,6 @@ bool G1CollectedHeap::do_collection_pause_at_safepoint(double target_pause_time_
28672867
return true;
28682868
}
28692869

2870-
void G1CollectedHeap::gc_tracer_report_gc_start() {
2871-
_gc_timer_stw->register_gc_start();
2872-
_gc_tracer_stw->report_gc_start(gc_cause(), _gc_timer_stw->gc_start());
2873-
}
2874-
2875-
void G1CollectedHeap::gc_tracer_report_gc_end(bool concurrent_operation_is_full_mark,
2876-
G1EvacuationInfo& evacuation_info) {
2877-
_gc_tracer_stw->report_evacuation_info(&evacuation_info);
2878-
_gc_tracer_stw->report_tenuring_threshold(_policy->tenuring_threshold());
2879-
2880-
_gc_timer_stw->register_gc_end();
2881-
_gc_tracer_stw->report_gc_end(_gc_timer_stw->gc_end(),
2882-
_gc_timer_stw->time_partitions());
2883-
}
2884-
28852870
// GCTraceTime wrapper that constructs the message according to GC pause type and
28862871
// GC cause.
28872872
// The code relies on the fact that GCTraceTimeWrapper stores the string passed

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

-3
Original file line numberDiff line numberDiff line change
@@ -403,9 +403,6 @@ class G1CollectedHeap : public CollectedHeap {
403403

404404
G1NewTracer* _gc_tracer_stw;
405405

406-
void gc_tracer_report_gc_start();
407-
void gc_tracer_report_gc_end(bool concurrent_operation_is_full_mark, G1EvacuationInfo& evacuation_info);
408-
409406
// The current policy object for the collector.
410407
G1Policy* _policy;
411408
G1HeapSizingPolicy* _heap_sizing_policy;

0 commit comments

Comments
 (0)
Please sign in to comment.