@@ -194,19 +194,30 @@ void G1Policy::update_young_length_bounds() {
194
194
}
195
195
196
196
void G1Policy::update_young_length_bounds (size_t pending_cards, size_t rs_length) {
197
- uint old_young_list_target_length = _young_list_target_length ;
197
+ uint old_young_list_target_length = young_list_target_length () ;
198
198
199
- _young_list_desired_length = calculate_young_desired_length (pending_cards, rs_length);
200
- _young_list_target_length = calculate_young_target_length (_young_list_desired_length );
201
- _young_list_max_length = calculate_young_max_length (_young_list_target_length );
199
+ uint new_young_list_desired_length = calculate_young_desired_length (pending_cards, rs_length);
200
+ uint new_young_list_target_length = calculate_young_target_length (new_young_list_desired_length );
201
+ uint new_young_list_max_length = calculate_young_max_length (new_young_list_target_length );
202
202
203
203
log_trace (gc, ergo, heap)(" Young list length update: pending cards %zu rs_length %zu old target %u desired: %u target: %u max: %u" ,
204
204
pending_cards,
205
205
rs_length,
206
206
old_young_list_target_length,
207
- _young_list_desired_length,
208
- _young_list_target_length,
209
- _young_list_max_length);
207
+ new_young_list_desired_length,
208
+ new_young_list_target_length,
209
+ new_young_list_max_length);
210
+
211
+ // Write back. This is not an attempt to control visibility order to other threads
212
+ // here; all the revising of the young gen length are best effort to keep pause time.
213
+ // E.g. we could be "too late" revising young gen upwards to avoid GC because
214
+ // there is some time left, or some threads could get different values for stopping
215
+ // allocation.
216
+ // That is "fine" - at most this will schedule a GC (hopefully only a little) too
217
+ // early or too late.
218
+ Atomic::store (&_young_list_desired_length, new_young_list_desired_length);
219
+ Atomic::store (&_young_list_target_length, new_young_list_target_length);
220
+ Atomic::store (&_young_list_max_length, new_young_list_max_length);
210
221
}
211
222
212
223
// Calculates desired young gen length. It is calculated from:
@@ -1088,14 +1099,12 @@ double G1Policy::predict_region_total_time_ms(HeapRegion* hr, bool for_young_onl
1088
1099
1089
1100
bool G1Policy::should_allocate_mutator_region () const {
1090
1101
uint young_list_length = _g1h->young_regions_count ();
1091
- uint young_list_target_length = _young_list_target_length;
1092
- return young_list_length < young_list_target_length;
1102
+ return young_list_length < young_list_target_length ();
1093
1103
}
1094
1104
1095
1105
bool G1Policy::can_expand_young_list () const {
1096
1106
uint young_list_length = _g1h->young_regions_count ();
1097
- uint young_list_max_length = _young_list_max_length;
1098
- return young_list_length < young_list_max_length;
1107
+ return young_list_length < young_list_max_length ();
1099
1108
}
1100
1109
1101
1110
bool G1Policy::use_adaptive_young_list_length () const {
@@ -1124,8 +1133,8 @@ void G1Policy::print_age_table() {
1124
1133
uint G1Policy::calculate_young_max_length (uint target_young_length) const {
1125
1134
uint expansion_region_num = 0 ;
1126
1135
if (GCLockerEdenExpansionPercent > 0 ) {
1127
- double perc = ( double ) GCLockerEdenExpansionPercent / 100.0 ;
1128
- double expansion_region_num_d = perc * ( double ) _young_list_target_length ;
1136
+ double perc = GCLockerEdenExpansionPercent / 100.0 ;
1137
+ double expansion_region_num_d = perc * young_list_target_length () ;
1129
1138
// We use ceiling so that if expansion_region_num_d is > 0.0 (but
1130
1139
// less than 1.0) we'll get 1.
1131
1140
expansion_region_num = (uint ) ceil (expansion_region_num_d);
@@ -1138,7 +1147,7 @@ uint G1Policy::calculate_young_max_length(uint target_young_length) const {
1138
1147
// Calculates survivor space parameters.
1139
1148
void G1Policy::update_survivors_policy () {
1140
1149
double max_survivor_regions_d =
1141
- (double ) _young_list_target_length / (double ) SurvivorRatio;
1150
+ (double )young_list_target_length () / (double ) SurvivorRatio;
1142
1151
1143
1152
// Calculate desired survivor size based on desired max survivor regions (unconstrained
1144
1153
// by remaining heap). Otherwise we may cause undesired promotions as we are
0 commit comments