Skip to content

Commit 7176b9a

Browse files
author
Stefan Karlsson
committedSep 10, 2020
ZGC: Review 8: Rename and simplify iteration functions
1 parent a025519 commit 7176b9a

File tree

4 files changed

+51
-36
lines changed

4 files changed

+51
-36
lines changed
 

‎src/hotspot/share/gc/z/zVerify.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,11 @@ class ZVerifyStack : public OopClosure {
114114
ZStackWatermark* stack_watermark = StackWatermarkSet::get<ZStackWatermark>(jt, StackWatermarkSet::gc);
115115

116116
if (_cl->verify_fixed()) {
117-
assert(!stack_watermark->should_start_iteration(), "Should already have been fixed");
117+
assert(stack_watermark->iteration_started(), "Should already have been fixed");
118+
assert(stack_watermark->iteration_completed(), "Should already have been fixed");
118119
} else {
119120
// We don't really know the state of the stack, verify watermark.
120-
if (stack_watermark->should_start_iteration()) {
121+
if (!stack_watermark->iteration_started()) {
121122
_verifying_bad_frames = true;
122123
} else {
123124
// Not time yet to verify bad frames

‎src/hotspot/share/runtime/stackWatermark.cpp

+27-27
Original file line numberDiff line numberDiff line change
@@ -175,25 +175,13 @@ StackWatermark::~StackWatermark() {
175175
bool StackWatermark::is_frame_safe(frame f) {
176176
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
177177
uint32_t state = Atomic::load(&_state);
178-
if (StackWatermarkState::epoch(state) != epoch_id()) {
178+
if (!iteration_started(state)) {
179179
return false;
180180
}
181-
if (StackWatermarkState::is_done(state)) {
181+
if (iteration_completed(state)) {
182182
return true;
183183
}
184-
if (_iterator != NULL) {
185-
return reinterpret_cast<uintptr_t>(f.sp()) < _iterator->caller();
186-
}
187-
return true;
188-
}
189-
190-
bool StackWatermark::should_start_iteration() const {
191-
return StackWatermarkState::epoch(_state) != epoch_id();
192-
}
193-
194-
bool StackWatermark::should_start_iteration_acquire() const {
195-
uint32_t state = Atomic::load_acquire(&_state);
196-
return StackWatermarkState::epoch(state) != epoch_id();
184+
return reinterpret_cast<uintptr_t>(f.sp()) < _iterator->caller();
197185
}
198186

199187
void StackWatermark::start_iteration_impl(void* context) {
@@ -241,9 +229,9 @@ void StackWatermark::update_watermark() {
241229

242230
void StackWatermark::process_one() {
243231
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
244-
if (should_start_iteration()) {
232+
if (!iteration_started()) {
245233
start_iteration_impl(NULL /* context */);
246-
} else if (_iterator != NULL) {
234+
} else if (!iteration_completed()) {
247235
_iterator->process_one(NULL /* context */);
248236
update_watermark();
249237
}
@@ -255,36 +243,48 @@ uintptr_t StackWatermark::watermark() {
255243

256244
uintptr_t StackWatermark::last_processed() {
257245
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
258-
if (should_start_iteration()) {
246+
if (!iteration_started()) {
259247
// Stale state; no last processed
260248
return 0;
261249
}
262-
if (watermark() == 0) {
250+
if (iteration_completed()) {
263251
// Already processed all; no last processed
264252
return 0;
265253
}
266-
if (_iterator == NULL) {
267-
// No frames to processed; no last processed
268-
return 0;
269-
}
270254
return _iterator->caller();
271255
}
272256

257+
bool StackWatermark::iteration_started() const {
258+
return iteration_started(Atomic::load(&_state));
259+
}
260+
261+
bool StackWatermark::iteration_started_acquire() const {
262+
return iteration_started(Atomic::load_acquire(&_state));
263+
}
264+
265+
bool StackWatermark::iteration_completed() const {
266+
return iteration_completed(Atomic::load(&_state));
267+
}
268+
269+
bool StackWatermark::iteration_completed_acquire() const {
270+
return iteration_completed(Atomic::load_acquire(&_state));
271+
}
272+
273273
void StackWatermark::start_iteration() {
274-
if (should_start_iteration_acquire()) {
274+
if (!iteration_started_acquire()) {
275275
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
276-
if (should_start_iteration()) {
276+
if (!iteration_started()) {
277277
start_iteration_impl(NULL /* context */);
278278
}
279279
}
280280
}
281281

282282
void StackWatermark::finish_iteration(void* context) {
283283
MutexLocker ml(&_lock, Mutex::_no_safepoint_check_flag);
284-
if (should_start_iteration()) {
284+
if (!iteration_started()) {
285285
start_iteration_impl(context);
286286
}
287-
if (_iterator != NULL) {
287+
if (!iteration_completed()) {
288288
_iterator->process_all(context);
289289
update_watermark();
290290
}

‎src/hotspot/share/runtime/stackWatermark.hpp

+10-4
Original file line numberDiff line numberDiff line change
@@ -78,24 +78,30 @@ class StackWatermark : public CHeapObj<mtInternal> {
7878
// opposed to due to frames being unwinded by the owning thread.
7979
virtual bool process_on_iteration() { return true; }
8080

81+
bool iteration_started(uint32_t state) const;
82+
bool iteration_completed(uint32_t state) const;
83+
8184
public:
8285
StackWatermark(JavaThread* jt, StackWatermarkSet::Kind kind, uint32_t epoch);
8386
virtual ~StackWatermark();
8487

85-
uintptr_t watermark();
8688

8789
// StackWatermarkSet support
8890
StackWatermarkSet::Kind kind() const { return _kind; }
8991
StackWatermark* next() const { return _next; }
9092
void set_next(StackWatermark* n) { _next = n; }
9193

92-
bool should_start_iteration() const;
93-
bool should_start_iteration_acquire() const;
94-
94+
uintptr_t watermark();
9595
uintptr_t last_processed();
9696

97+
bool iteration_started() const;
98+
bool iteration_started_acquire() const;
99+
bool iteration_completed() const;
100+
bool iteration_completed_acquire() const;
101+
97102
void before_unwind();
98103
void after_unwind();
104+
99105
void on_iteration(frame fr);
100106
void start_iteration();
101107
void finish_iteration(void* context);

‎src/hotspot/share/runtime/stackWatermark.inline.hpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,19 @@ inline bool StackWatermark::has_barrier(frame& f) {
5151
return false;
5252
}
5353

54+
inline bool StackWatermark::iteration_started(uint32_t state) const {
55+
return StackWatermarkState::epoch(state) == epoch_id();
56+
}
57+
58+
inline bool StackWatermark::iteration_completed(uint32_t state) const {
59+
assert(iteration_started(state), "Check is only valid if iteration has been started");
60+
return StackWatermarkState::is_done(state);
61+
}
62+
5463
inline void StackWatermark::ensure_safe(frame f) {
55-
assert(!should_start_iteration(), "Iteration should already have started");
64+
assert(iteration_started(), "Iteration should already have started");
5665

57-
uint32_t state = Atomic::load_acquire(&_state);
58-
if (StackWatermarkState::is_done(state)) {
66+
if (iteration_completed_acquire()) {
5967
return;
6068
}
6169

0 commit comments

Comments
 (0)
Please sign in to comment.