Skip to content

Commit 4f1cda4

Browse files
author
Thomas Schatzl
committedMar 15, 2021
8263387: G1GarbageCollection JFR event gets gc phase, not gc type
Reviewed-by: sjohanss, ayang, iwalulya
1 parent 5ab5244 commit 4f1cda4

File tree

10 files changed

+138
-185
lines changed

10 files changed

+138
-185
lines changed
 

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

+36-23
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
#include "gc/g1/g1FullCollector.hpp"
4444
#include "gc/g1/g1GCParPhaseTimesTracker.hpp"
4545
#include "gc/g1/g1GCPhaseTimes.hpp"
46-
#include "gc/g1/g1GCTypes.hpp"
46+
#include "gc/g1/g1GCPauseType.hpp"
4747
#include "gc/g1/g1HeapSizingPolicy.hpp"
4848
#include "gc/g1/g1HeapTransition.hpp"
4949
#include "gc/g1/g1HeapVerifier.hpp"
@@ -2848,18 +2848,15 @@ void G1CollectedHeap::expand_heap_after_young_collection(){
28482848
}
28492849
}
28502850

2851-
const char* G1CollectedHeap::young_gc_name() const {
2852-
if (collector_state()->in_concurrent_start_gc()) {
2853-
return "Pause Young (Concurrent Start)";
2854-
} else if (collector_state()->in_young_only_phase()) {
2855-
if (collector_state()->in_young_gc_before_mixed()) {
2856-
return "Pause Young (Prepare Mixed)";
2857-
} else {
2858-
return "Pause Young (Normal)";
2859-
}
2860-
} else {
2861-
return "Pause Young (Mixed)";
2862-
}
2851+
void G1CollectedHeap::set_young_gc_name(char* young_gc_name) {
2852+
G1GCPauseType pause_type =
2853+
// The strings for all Concurrent Start pauses are the same, so the parameter
2854+
// does not matter here.
2855+
collector_state()->young_gc_pause_type(false /* concurrent_operation_is_full_mark */);
2856+
snprintf(young_gc_name,
2857+
MaxYoungGCNameLength,
2858+
"Pause Young (%s)",
2859+
G1GCPauseTypeHelper::to_string(pause_type));
28632860
}
28642861

28652862
bool G1CollectedHeap::do_collection_pause_at_safepoint(double target_pause_time_ms) {
@@ -2882,6 +2879,21 @@ bool G1CollectedHeap::do_collection_pause_at_safepoint(double target_pause_time_
28822879
return true;
28832880
}
28842881

2882+
void G1CollectedHeap::gc_tracer_report_gc_start() {
2883+
_gc_timer_stw->register_gc_start();
2884+
_gc_tracer_stw->report_gc_start(gc_cause(), _gc_timer_stw->gc_start());
2885+
}
2886+
2887+
void G1CollectedHeap::gc_tracer_report_gc_end(bool concurrent_operation_is_full_mark,
2888+
G1EvacuationInfo& evacuation_info) {
2889+
_gc_tracer_stw->report_evacuation_info(&evacuation_info);
2890+
_gc_tracer_stw->report_tenuring_threshold(_policy->tenuring_threshold());
2891+
2892+
_gc_timer_stw->register_gc_end();
2893+
_gc_tracer_stw->report_gc_end(_gc_timer_stw->gc_end(),
2894+
_gc_timer_stw->time_partitions());
2895+
}
2896+
28852897
void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_pause_time_ms) {
28862898
GCIdMark gc_id_mark;
28872899

@@ -2890,8 +2902,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
28902902

28912903
policy()->note_gc_start();
28922904

2893-
_gc_timer_stw->register_gc_start();
2894-
_gc_tracer_stw->report_gc_start(gc_cause(), _gc_timer_stw->gc_start());
2905+
gc_tracer_report_gc_start();
28952906

28962907
wait_for_root_region_scanning();
28972908

@@ -2926,11 +2937,12 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
29262937
{
29272938
G1EvacuationInfo evacuation_info;
29282939

2929-
_gc_tracer_stw->report_yc_phase(collector_state()->young_gc_phase());
2930-
29312940
GCTraceCPUTime tcpu;
29322941

2933-
GCTraceTime(Info, gc) tm(young_gc_name(), NULL, gc_cause(), true);
2942+
char young_gc_name[MaxYoungGCNameLength];
2943+
set_young_gc_name(young_gc_name);
2944+
2945+
GCTraceTime(Info, gc) tm(young_gc_name, NULL, gc_cause(), true);
29342946

29352947
uint active_workers = WorkerPolicy::calc_active_workers(workers()->total_workers(),
29362948
workers()->active_workers(),
@@ -2940,7 +2952,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
29402952

29412953
G1MonitoringScope ms(g1mm(),
29422954
false /* full_gc */,
2943-
collector_state()->young_gc_phase() == Mixed /* all_memory_pools_affected */);
2955+
collector_state()->in_mixed_phase() /* all_memory_pools_affected */);
29442956

29452957
G1HeapTransition heap_transition(this);
29462958

@@ -3008,6 +3020,10 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
30083020
// evacuation, eventually aborting it.
30093021
concurrent_operation_is_full_mark = policy()->concurrent_operation_is_full_mark("Revise IHOP");
30103022

3023+
// Need to report the collection pause now since record_collection_pause_end()
3024+
// modifies it to the next state.
3025+
_gc_tracer_stw->report_young_gc_pause(collector_state()->young_gc_pause_type(concurrent_operation_is_full_mark));
3026+
30113027
double sample_end_time_sec = os::elapsedTime();
30123028
double pause_time_ms = (sample_end_time_sec - sample_start_time_sec) * MILLIUNITS;
30133029
policy()->record_collection_pause_end(pause_time_ms, concurrent_operation_is_full_mark);
@@ -3042,10 +3058,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
30423058
// before any GC notifications are raised.
30433059
g1mm()->update_sizes();
30443060

3045-
_gc_tracer_stw->report_evacuation_info(&evacuation_info);
3046-
_gc_tracer_stw->report_tenuring_threshold(_policy->tenuring_threshold());
3047-
_gc_timer_stw->register_gc_end();
3048-
_gc_tracer_stw->report_gc_end(_gc_timer_stw->gc_end(), _gc_timer_stw->time_partitions());
3061+
gc_tracer_report_gc_end(concurrent_operation_is_full_mark, evacuation_info);
30493062
}
30503063
// It should now be safe to tell the concurrent mark thread to start
30513064
// without its logging output interfering with the logging output

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

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,7 +36,7 @@
3636
#include "gc/g1/g1EvacStats.hpp"
3737
#include "gc/g1/g1EvacuationInfo.hpp"
3838
#include "gc/g1/g1GCPhaseTimes.hpp"
39-
#include "gc/g1/g1GCTypes.hpp"
39+
#include "gc/g1/g1GCPauseType.hpp"
4040
#include "gc/g1/g1HeapTransition.hpp"
4141
#include "gc/g1/g1HeapVerifier.hpp"
4242
#include "gc/g1/g1HRPrinter.hpp"
@@ -378,7 +378,10 @@ class G1CollectedHeap : public CollectedHeap {
378378
#define assert_used_and_recalculate_used_equal(g1h) do {} while(0)
379379
#endif
380380

381-
const char* young_gc_name() const;
381+
static const uint MaxYoungGCNameLength = 128;
382+
// Sets given young_gc_name to the canonical young gc pause string. Young_gc_name
383+
// must be at least of length MaxYoungGCNameLength.
384+
void set_young_gc_name(char* young_gc_name);
382385

383386
// The young region list.
384387
G1EdenRegions _eden;
@@ -388,6 +391,9 @@ class G1CollectedHeap : public CollectedHeap {
388391

389392
G1NewTracer* _gc_tracer_stw;
390393

394+
void gc_tracer_report_gc_start();
395+
void gc_tracer_report_gc_end(bool concurrent_operation_is_full_mark, G1EvacuationInfo& evacuation_info);
396+
391397
// The current policy object for the collector.
392398
G1Policy* _policy;
393399
G1HeapSizingPolicy* _heap_sizing_policy;

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

+6-19
Original file line numberDiff line numberDiff line change
@@ -24,37 +24,24 @@
2424

2525
#include "precompiled.hpp"
2626
#include "gc/g1/g1CollectorState.hpp"
27-
#include "gc/g1/g1GCTypes.hpp"
27+
#include "gc/g1/g1GCPauseType.hpp"
2828

2929
G1GCPauseType G1CollectorState::young_gc_pause_type(bool concurrent_operation_is_full_mark) const {
3030
assert(!in_full_gc(), "must be");
3131
if (in_concurrent_start_gc()) {
3232
assert(!in_young_gc_before_mixed(), "must be");
33-
return concurrent_operation_is_full_mark ? ConcurrentStartMarkGC : ConcurrentStartUndoGC;
33+
return concurrent_operation_is_full_mark ? G1GCPauseType::ConcurrentStartMarkGC :
34+
G1GCPauseType::ConcurrentStartUndoGC;
3435
} else if (in_young_gc_before_mixed()) {
3536
assert(!in_concurrent_start_gc(), "must be");
36-
return LastYoungGC;
37+
return G1GCPauseType::LastYoungGC;
3738
} else if (in_mixed_phase()) {
3839
assert(!in_concurrent_start_gc(), "must be");
3940
assert(!in_young_gc_before_mixed(), "must be");
40-
return MixedGC;
41+
return G1GCPauseType::MixedGC;
4142
} else {
4243
assert(!in_concurrent_start_gc(), "must be");
4344
assert(!in_young_gc_before_mixed(), "must be");
44-
return YoungGC;
45-
}
46-
}
47-
48-
G1GCYoungPhase G1CollectorState::young_gc_phase() const {
49-
assert(!in_full_gc(), "must be");
50-
51-
if (in_concurrent_start_gc()) {
52-
return ConcurrentStart;
53-
} else if (mark_or_rebuild_in_progress()) {
54-
return DuringMarkOrRebuild;
55-
} else if (in_young_only_phase()) {
56-
return Normal;
57-
} else {
58-
return Mixed;
45+
return G1GCPauseType::YoungGC;
5946
}
6047
}

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

+1-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#ifndef SHARE_GC_G1_G1COLLECTORSTATE_HPP
2626
#define SHARE_GC_G1_G1COLLECTORSTATE_HPP
2727

28-
#include "gc/g1/g1GCTypes.hpp"
28+
#include "gc/g1/g1GCPauseType.hpp"
2929
#include "utilities/globalDefinitions.hpp"
3030

3131
// State of the G1 collection.
@@ -112,8 +112,6 @@ class G1CollectorState {
112112

113113
// Calculate GC Pause Type from internal state.
114114
G1GCPauseType young_gc_pause_type(bool concurrent_operation_is_full_mark) const;
115-
G1GCYoungPhase young_gc_phase() const;
116-
117115
};
118116

119117
#endif // SHARE_GC_G1_G1COLLECTORSTATE_HPP

‎src/hotspot/share/gc/g1/g1GCTypes.hpp ‎src/hotspot/share/gc/g1/g1GCPauseType.hpp

+30-35
Original file line numberDiff line numberDiff line change
@@ -22,73 +22,68 @@
2222
*
2323
*/
2424

25-
#ifndef SHARE_GC_G1_G1GCTYPES_HPP
26-
#define SHARE_GC_G1_G1GCTYPES_HPP
25+
#ifndef SHARE_GC_G1_G1GCPAUSETYPES_HPP
26+
#define SHARE_GC_G1_G1GCPAUSETYPES_HPP
2727

2828
#include "utilities/debug.hpp"
29+
#include "utilities/enumIterator.hpp"
2930

30-
// Enumarate the phases in which the collection cycle can be.
31-
enum G1GCYoungPhase {
32-
Normal,
33-
ConcurrentStart,
34-
DuringMarkOrRebuild,
35-
Mixed,
36-
G1GCYoungPhaseEndSentinel
37-
};
38-
39-
enum G1GCPauseType {
31+
enum class G1GCPauseType : uint {
4032
YoungGC,
4133
LastYoungGC,
4234
ConcurrentStartMarkGC,
4335
ConcurrentStartUndoGC,
4436
Cleanup,
4537
Remark,
4638
MixedGC,
47-
FullGC,
48-
G1GCPauseTypeEndSentinel
39+
FullGC
4940
};
5041

51-
class G1GCTypeHelper {
52-
public:
42+
ENUMERATOR_RANGE(G1GCPauseType, G1GCPauseType::YoungGC, G1GCPauseType::FullGC)
43+
44+
class G1GCPauseTypeHelper {
45+
public:
5346

5447
static void assert_is_young_pause(G1GCPauseType type) {
55-
assert(type != FullGC, "must be");
56-
assert(type != Remark, "must be");
57-
assert(type != Cleanup, "must be");
48+
assert(type != G1GCPauseType::FullGC, "must be");
49+
assert(type != G1GCPauseType::Remark, "must be");
50+
assert(type != G1GCPauseType::Cleanup, "must be");
5851
}
5952

6053
static bool is_young_only_pause(G1GCPauseType type) {
6154
assert_is_young_pause(type);
62-
return type == ConcurrentStartUndoGC ||
63-
type == ConcurrentStartMarkGC ||
64-
type == LastYoungGC ||
65-
type == YoungGC;
55+
return type == G1GCPauseType::ConcurrentStartUndoGC ||
56+
type == G1GCPauseType::ConcurrentStartMarkGC ||
57+
type == G1GCPauseType::LastYoungGC ||
58+
type == G1GCPauseType::YoungGC;
6659
}
6760

6861
static bool is_mixed_pause(G1GCPauseType type) {
6962
assert_is_young_pause(type);
70-
return type == MixedGC;
63+
return type == G1GCPauseType::MixedGC;
7164
}
7265

7366
static bool is_last_young_pause(G1GCPauseType type) {
7467
assert_is_young_pause(type);
75-
return type == LastYoungGC;
68+
return type == G1GCPauseType::LastYoungGC;
7669
}
7770

7871
static bool is_concurrent_start_pause(G1GCPauseType type) {
7972
assert_is_young_pause(type);
80-
return type == ConcurrentStartMarkGC || type == ConcurrentStartUndoGC;
73+
return type == G1GCPauseType::ConcurrentStartMarkGC || type == G1GCPauseType::ConcurrentStartUndoGC;
8174
}
8275

83-
static const char* to_string(G1GCYoungPhase type) {
84-
switch(type) {
85-
case Normal: return "Normal";
86-
case ConcurrentStart: return "Concurrent Start";
87-
case DuringMarkOrRebuild: return "During Mark";
88-
case Mixed: return "Mixed";
89-
default: ShouldNotReachHere(); return NULL;
90-
}
76+
static const char* to_string(G1GCPauseType type) {
77+
static const char* pause_strings[] = { "Normal",
78+
"Prepare Mixed",
79+
"Concurrent Start", // Do not distinguish between the different
80+
"Concurrent Start", // Concurrent Start pauses.
81+
"Cleanup",
82+
"Remark",
83+
"Mixed",
84+
"Full" };
85+
return pause_strings[static_cast<uint>(type)];
9186
}
9287
};
9388

94-
#endif // SHARE_GC_G1_G1GCTYPES_HPP
89+
#endif // SHARE_GC_G1_G1GCPAUSETYPES_HPP

0 commit comments

Comments
 (0)
Please sign in to comment.