@@ -175,25 +175,13 @@ StackWatermark::~StackWatermark() {
175
175
bool StackWatermark::is_frame_safe (frame f) {
176
176
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
177
177
uint32_t state = Atomic::load (&_state);
178
- if (StackWatermarkState::epoch (state) != epoch_id ( )) {
178
+ if (! iteration_started (state )) {
179
179
return false ;
180
180
}
181
- if (StackWatermarkState::is_done (state)) {
181
+ if (iteration_completed (state)) {
182
182
return true ;
183
183
}
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 ();
197
185
}
198
186
199
187
void StackWatermark::start_iteration_impl (void * context) {
@@ -241,9 +229,9 @@ void StackWatermark::update_watermark() {
241
229
242
230
void StackWatermark::process_one () {
243
231
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
244
- if (should_start_iteration ()) {
232
+ if (! iteration_started ()) {
245
233
start_iteration_impl (NULL /* context */ );
246
- } else if (_iterator != NULL ) {
234
+ } else if (! iteration_completed () ) {
247
235
_iterator->process_one (NULL /* context */ );
248
236
update_watermark ();
249
237
}
@@ -255,36 +243,48 @@ uintptr_t StackWatermark::watermark() {
255
243
256
244
uintptr_t StackWatermark::last_processed () {
257
245
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
258
- if (should_start_iteration ()) {
246
+ if (! iteration_started ()) {
259
247
// Stale state; no last processed
260
248
return 0 ;
261
249
}
262
- if (watermark () == 0 ) {
250
+ if (iteration_completed () ) {
263
251
// Already processed all; no last processed
264
252
return 0 ;
265
253
}
266
- if (_iterator == NULL ) {
267
- // No frames to processed; no last processed
268
- return 0 ;
269
- }
270
254
return _iterator->caller ();
271
255
}
272
256
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
+
273
273
void StackWatermark::start_iteration () {
274
- if (should_start_iteration_acquire ()) {
274
+ if (! iteration_started_acquire ()) {
275
275
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
276
- if (should_start_iteration ()) {
276
+ if (! iteration_started ()) {
277
277
start_iteration_impl (NULL /* context */ );
278
278
}
279
279
}
280
280
}
281
281
282
282
void StackWatermark::finish_iteration (void * context) {
283
283
MutexLocker ml (&_lock, Mutex::_no_safepoint_check_flag);
284
- if (should_start_iteration ()) {
284
+ if (! iteration_started ()) {
285
285
start_iteration_impl (context);
286
286
}
287
- if (_iterator != NULL ) {
287
+ if (! iteration_completed () ) {
288
288
_iterator->process_all (context);
289
289
update_watermark ();
290
290
}
0 commit comments