@@ -189,13 +189,14 @@ void G1Policy::update_young_length_bounds() {
189
189
assert (!Universe::is_fully_initialized () || SafepointSynchronize::is_at_safepoint (), " must be" );
190
190
bool for_young_only_phase = collector_state ()->in_young_only_phase ();
191
191
update_young_length_bounds (_analytics->predict_pending_cards (for_young_only_phase),
192
- _analytics->predict_rs_length (for_young_only_phase));
192
+ _analytics->predict_rs_length (for_young_only_phase),
193
+ _analytics->predict_code_root_rs_length (for_young_only_phase));
193
194
}
194
195
195
- void G1Policy::update_young_length_bounds (size_t pending_cards, size_t rs_length) {
196
+ void G1Policy::update_young_length_bounds (size_t pending_cards, size_t rs_length, size_t code_root_rs_length ) {
196
197
uint old_young_list_target_length = young_list_target_length ();
197
198
198
- uint new_young_list_desired_length = calculate_young_desired_length (pending_cards, rs_length);
199
+ uint new_young_list_desired_length = calculate_young_desired_length (pending_cards, rs_length, code_root_rs_length );
199
200
uint new_young_list_target_length = calculate_young_target_length (new_young_list_desired_length);
200
201
uint new_young_list_max_length = calculate_young_max_length (new_young_list_target_length);
201
202
@@ -234,7 +235,9 @@ void G1Policy::update_young_length_bounds(size_t pending_cards, size_t rs_length
234
235
// value smaller than what is already allocated or what can actually be allocated.
235
236
// This return value is only an expectation.
236
237
//
237
- uint G1Policy::calculate_young_desired_length (size_t pending_cards, size_t rs_length) const {
238
+ uint G1Policy::calculate_young_desired_length (size_t pending_cards,
239
+ size_t rs_length,
240
+ size_t code_root_rs_length) const {
238
241
uint min_young_length_by_sizer = _young_gen_sizer.min_desired_young_length ();
239
242
uint max_young_length_by_sizer = _young_gen_sizer.max_desired_young_length ();
240
243
@@ -267,7 +270,7 @@ uint G1Policy::calculate_young_desired_length(size_t pending_cards, size_t rs_le
267
270
if (use_adaptive_young_list_length ()) {
268
271
desired_eden_length_by_mmu = calculate_desired_eden_length_by_mmu ();
269
272
270
- double base_time_ms = predict_base_time_ms (pending_cards, rs_length);
273
+ double base_time_ms = predict_base_time_ms (pending_cards, rs_length, code_root_rs_length );
271
274
double retained_time_ms = predict_retained_regions_evac_time ();
272
275
double total_time_ms = base_time_ms + retained_time_ms;
273
276
@@ -550,13 +553,13 @@ G1GCPhaseTimes* G1Policy::phase_times() const {
550
553
return _phase_times;
551
554
}
552
555
553
- void G1Policy::revise_young_list_target_length (size_t rs_length) {
556
+ void G1Policy::revise_young_list_target_length (size_t rs_length, size_t code_root_rs_length ) {
554
557
guarantee (use_adaptive_young_list_length (), " should not call this otherwise" );
555
558
556
559
size_t thread_buffer_cards = _analytics->predict_dirtied_cards_in_thread_buffers ();
557
560
G1DirtyCardQueueSet& dcqs = G1BarrierSet::dirty_card_queue_set ();
558
561
size_t pending_cards = dcqs.num_cards () + thread_buffer_cards;
559
- update_young_length_bounds (pending_cards, rs_length);
562
+ update_young_length_bounds (pending_cards, rs_length, code_root_rs_length );
560
563
}
561
564
562
565
void G1Policy::record_full_collection_start () {
@@ -890,6 +893,17 @@ void G1Policy::record_young_collection_end(bool concurrent_operation_is_full_mar
890
893
}
891
894
_analytics->report_card_scan_to_merge_ratio (scan_to_merge_ratio, is_young_only_pause);
892
895
896
+ // Update prediction for code root scan
897
+ size_t const total_code_roots_scanned = p->sum_thread_work_items (G1GCPhaseTimes::CodeRoots, G1GCPhaseTimes::CodeRootsScannedNMethods) +
898
+ p->sum_thread_work_items (G1GCPhaseTimes::OptCodeRoots, G1GCPhaseTimes::CodeRootsScannedNMethods);
899
+
900
+ if (total_code_roots_scanned >= G1NumCodeRootsCostSampleThreshold) {
901
+ double avg_time_code_root_scan = average_time_ms (G1GCPhaseTimes::CodeRoots) +
902
+ average_time_ms (G1GCPhaseTimes::OptCodeRoots);
903
+
904
+ _analytics->report_cost_per_code_root_scan_ms (avg_time_code_root_scan / total_code_roots_scanned, is_young_only_pause);
905
+ }
906
+
893
907
// Update prediction for copy cost per byte
894
908
size_t copied_bytes = p->sum_thread_work_items (G1GCPhaseTimes::MergePSS, G1GCPhaseTimes::MergePSSCopiedBytes);
895
909
@@ -912,6 +926,7 @@ void G1Policy::record_young_collection_end(bool concurrent_operation_is_full_mar
912
926
913
927
_analytics->report_pending_cards ((double )pending_cards_at_gc_start (), is_young_only_pause);
914
928
_analytics->report_rs_length ((double )_rs_length, is_young_only_pause);
929
+ _analytics->report_code_root_rs_length ((double )total_code_roots_scanned, is_young_only_pause);
915
930
}
916
931
917
932
assert (!(G1GCPauseTypeHelper::is_concurrent_start_pause (this_pause) && collector_state ()->mark_or_rebuild_in_progress ()),
@@ -1033,7 +1048,8 @@ void G1Policy::record_young_gc_pause_end(bool evacuation_failed) {
1033
1048
}
1034
1049
1035
1050
double G1Policy::predict_base_time_ms (size_t pending_cards,
1036
- size_t rs_length) const {
1051
+ size_t rs_length,
1052
+ size_t code_root_rs_length) const {
1037
1053
bool in_young_only_phase = collector_state ()->in_young_only_phase ();
1038
1054
1039
1055
size_t unique_cards_from_rs = _analytics->predict_scan_card_num (rs_length, in_young_only_phase);
@@ -1043,22 +1059,26 @@ double G1Policy::predict_base_time_ms(size_t pending_cards,
1043
1059
1044
1060
double card_merge_time = _analytics->predict_card_merge_time_ms (pending_cards + rs_length, in_young_only_phase);
1045
1061
double card_scan_time = _analytics->predict_card_scan_time_ms (effective_scanned_cards, in_young_only_phase);
1062
+ double code_root_scan_time = _analytics->predict_code_root_scan_time_ms (code_root_rs_length, in_young_only_phase);
1046
1063
double constant_other_time = _analytics->predict_constant_other_time_ms ();
1047
1064
double survivor_evac_time = predict_survivor_regions_evac_time ();
1048
1065
1049
- double total_time = card_merge_time + card_scan_time + constant_other_time + survivor_evac_time;
1066
+ double total_time = card_merge_time + card_scan_time + code_root_scan_time + constant_other_time + survivor_evac_time;
1050
1067
1051
1068
log_trace (gc, ergo, heap)(" Predicted base time: total %f lb_cards %zu rs_length %zu effective_scanned_cards %zu "
1052
- " card_merge_time %f card_scan_time %f constant_other_time %f survivor_evac_time %f" ,
1069
+ " card_merge_time %f card_scan_time %f code_root_rs_length %zu code_root_scan_time %f "
1070
+ " constant_other_time %f survivor_evac_time %f" ,
1053
1071
total_time, pending_cards, rs_length, effective_scanned_cards,
1054
- card_merge_time, card_scan_time, constant_other_time, survivor_evac_time);
1072
+ card_merge_time, card_scan_time, code_root_rs_length, code_root_scan_time,
1073
+ constant_other_time, survivor_evac_time);
1055
1074
return total_time;
1056
1075
}
1057
1076
1058
1077
double G1Policy::predict_base_time_ms (size_t pending_cards) const {
1059
1078
bool for_young_only_phase = collector_state ()->in_young_only_phase ();
1060
1079
size_t rs_length = _analytics->predict_rs_length (for_young_only_phase);
1061
- return predict_base_time_ms (pending_cards, rs_length);
1080
+ size_t code_root_rs_length = _analytics->predict_code_root_rs_length (for_young_only_phase);
1081
+ return predict_base_time_ms (pending_cards, rs_length, code_root_rs_length);
1062
1082
}
1063
1083
1064
1084
size_t G1Policy::predict_bytes_to_copy (HeapRegion* hr) const {
@@ -1100,10 +1120,18 @@ double G1Policy::predict_region_merge_scan_time(HeapRegion* hr, bool for_young_o
1100
1120
_analytics->predict_card_scan_time_ms (scan_card_num, for_young_only_phase);
1101
1121
}
1102
1122
1123
+ double G1Policy::predict_region_code_root_scan_time (HeapRegion* hr, bool for_young_only_phase) const {
1124
+ size_t code_root_length = hr->rem_set ()->code_roots_list_length ();
1125
+
1126
+ return
1127
+ _analytics->predict_code_root_scan_time_ms (code_root_length, for_young_only_phase);
1128
+ }
1129
+
1103
1130
double G1Policy::predict_region_non_copy_time_ms (HeapRegion* hr,
1104
1131
bool for_young_only_phase) const {
1105
1132
1106
- double region_elapsed_time_ms = predict_region_merge_scan_time (hr, for_young_only_phase);
1133
+ double region_elapsed_time_ms = predict_region_merge_scan_time (hr, for_young_only_phase) +
1134
+ predict_region_code_root_scan_time (hr, for_young_only_phase);
1107
1135
// The prediction of the "other" time for this region is based
1108
1136
// upon the region type and NOT the GC type.
1109
1137
if (hr->is_young ()) {
1 commit comments
openjdk-notifier[bot] commentedon Sep 19, 2023
Review
Issues