43
43
#include " gc/g1/g1FullCollector.hpp"
44
44
#include " gc/g1/g1GCParPhaseTimesTracker.hpp"
45
45
#include " gc/g1/g1GCPhaseTimes.hpp"
46
- #include " gc/g1/g1GCTypes .hpp"
46
+ #include " gc/g1/g1GCPauseType .hpp"
47
47
#include " gc/g1/g1HeapSizingPolicy.hpp"
48
48
#include " gc/g1/g1HeapTransition.hpp"
49
49
#include " gc/g1/g1HeapVerifier.hpp"
@@ -2848,18 +2848,15 @@ void G1CollectedHeap::expand_heap_after_young_collection(){
2848
2848
}
2849
2849
}
2850
2850
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));
2863
2860
}
2864
2861
2865
2862
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_
2882
2879
return true ;
2883
2880
}
2884
2881
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
+
2885
2897
void G1CollectedHeap::do_collection_pause_at_safepoint_helper (double target_pause_time_ms) {
2886
2898
GCIdMark gc_id_mark;
2887
2899
@@ -2890,8 +2902,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
2890
2902
2891
2903
policy ()->note_gc_start ();
2892
2904
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 ();
2895
2906
2896
2907
wait_for_root_region_scanning ();
2897
2908
@@ -2926,11 +2937,12 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
2926
2937
{
2927
2938
G1EvacuationInfo evacuation_info;
2928
2939
2929
- _gc_tracer_stw->report_yc_phase (collector_state ()->young_gc_phase ());
2930
-
2931
2940
GCTraceCPUTime tcpu;
2932
2941
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 );
2934
2946
2935
2947
uint active_workers = WorkerPolicy::calc_active_workers (workers ()->total_workers (),
2936
2948
workers ()->active_workers (),
@@ -2940,7 +2952,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
2940
2952
2941
2953
G1MonitoringScope ms (g1mm (),
2942
2954
false /* full_gc */ ,
2943
- collector_state ()->young_gc_phase () == Mixed /* all_memory_pools_affected */ );
2955
+ collector_state ()->in_mixed_phase () /* all_memory_pools_affected */ );
2944
2956
2945
2957
G1HeapTransition heap_transition (this );
2946
2958
@@ -3008,6 +3020,10 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
3008
3020
// evacuation, eventually aborting it.
3009
3021
concurrent_operation_is_full_mark = policy ()->concurrent_operation_is_full_mark (" Revise IHOP" );
3010
3022
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
+
3011
3027
double sample_end_time_sec = os::elapsedTime ();
3012
3028
double pause_time_ms = (sample_end_time_sec - sample_start_time_sec) * MILLIUNITS;
3013
3029
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
3042
3058
// before any GC notifications are raised.
3043
3059
g1mm ()->update_sizes ();
3044
3060
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);
3049
3062
}
3050
3063
// It should now be safe to tell the concurrent mark thread to start
3051
3064
// without its logging output interfering with the logging output
0 commit comments