Skip to content

Commit 6626a29

Browse files
author
Thomas Schatzl
committedNov 2, 2022
8294845: Make globals accessed by G1 young gen revising atomic
Reviewed-by: iwalulya, kbarrett
1 parent dac6ecc commit 6626a29

File tree

2 files changed

+33
-24
lines changed

2 files changed

+33
-24
lines changed
 

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

+23-14
Original file line numberDiff line numberDiff line change
@@ -194,19 +194,30 @@ void G1Policy::update_young_length_bounds() {
194194
}
195195

196196
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();
198198

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);
202202

203203
log_trace(gc, ergo, heap)("Young list length update: pending cards %zu rs_length %zu old target %u desired: %u target: %u max: %u",
204204
pending_cards,
205205
rs_length,
206206
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);
210221
}
211222

212223
// 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
10881099

10891100
bool G1Policy::should_allocate_mutator_region() const {
10901101
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();
10931103
}
10941104

10951105
bool G1Policy::can_expand_young_list() const {
10961106
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();
10991108
}
11001109

11011110
bool G1Policy::use_adaptive_young_list_length() const {
@@ -1124,8 +1133,8 @@ void G1Policy::print_age_table() {
11241133
uint G1Policy::calculate_young_max_length(uint target_young_length) const {
11251134
uint expansion_region_num = 0;
11261135
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();
11291138
// We use ceiling so that if expansion_region_num_d is > 0.0 (but
11301139
// less than 1.0) we'll get 1.
11311140
expansion_region_num = (uint) ceil(expansion_region_num_d);
@@ -1138,7 +1147,7 @@ uint G1Policy::calculate_young_max_length(uint target_young_length) const {
11381147
// Calculates survivor space parameters.
11391148
void G1Policy::update_survivors_policy() {
11401149
double max_survivor_regions_d =
1141-
(double) _young_list_target_length / (double) SurvivorRatio;
1150+
(double)young_list_target_length() / (double) SurvivorRatio;
11421151

11431152
// Calculate desired survivor size based on desired max survivor regions (unconstrained
11441153
// by remaining heap). Otherwise we may cause undesired promotions as we are

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
#include "gc/g1/g1Predictions.hpp"
3636
#include "gc/g1/g1YoungGenSizer.hpp"
3737
#include "gc/shared/gcCause.hpp"
38+
#include "runtime/atomic.hpp"
3839
#include "utilities/pair.hpp"
3940
#include "utilities/ticks.hpp"
4041

@@ -77,12 +78,14 @@ class G1Policy: public CHeapObj<mtGC> {
7778

7879
double _full_collection_start_sec;
7980

80-
uint _young_list_desired_length;
81-
uint _young_list_target_length;
82-
81+
// Desired young gen length without taking actually available free regions into
82+
// account.
83+
volatile uint _young_list_desired_length;
84+
// Actual target length given available free memory.
85+
volatile uint _young_list_target_length;
8386
// The max number of regions we can extend the eden by while the GC
8487
// locker is active. This should be >= _young_list_target_length;
85-
uint _young_list_max_length;
88+
volatile uint _young_list_max_length;
8689

8790
// The survivor rate groups below must be initialized after the predictor because they
8891
// indirectly use it through the "this" object passed to their constructor.
@@ -379,17 +382,14 @@ class G1Policy: public CHeapObj<mtGC> {
379382
// This must be called at the very beginning of an evacuation pause.
380383
void decide_on_concurrent_start_pause();
381384

382-
uint young_list_desired_length() const { return _young_list_desired_length; }
383-
uint young_list_target_length() const { return _young_list_target_length; }
385+
uint young_list_desired_length() const { return Atomic::load(&_young_list_desired_length); }
386+
uint young_list_target_length() const { return Atomic::load(&_young_list_target_length); }
387+
uint young_list_max_length() const { return Atomic::load(&_young_list_max_length); }
384388

385389
bool should_allocate_mutator_region() const;
386390

387391
bool can_expand_young_list() const;
388392

389-
uint young_list_max_length() const {
390-
return _young_list_max_length;
391-
}
392-
393393
bool use_adaptive_young_list_length() const;
394394

395395
// Return an estimate of the number of bytes used in young gen.

0 commit comments

Comments
 (0)
Please sign in to comment.