Skip to content

Commit e16eda8

Browse files
committedApr 20, 2022
Fix assertion
1 parent a2e3a2c commit e16eda8

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎src/hotspot/share/oops/stackChunkOop.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,10 @@ class TransformStackChunkClosure {
312312

313313
// This code is called from the STW collectors and don't have concurrent
314314
// access to the derived pointers. Therefore there's no need to add a
315-
// storestore barrier here.
316-
assert(SafepointSynchronize::is_at_safepoint(), "Should only be used by STW collectors");
315+
// storestore barrier here. Alternatively, we're called from freeze, when
316+
// allocating in old.
317+
assert(Thread::current()->is_Java_thread() || SafepointSynchronize::is_at_safepoint(),
318+
"Should only be used by STW collectors");
317319

318320
CompressOopsAndBuildBitmapOopClosure<kind> cl(_chunk);
319321
f.iterate_oops(&cl, map);

0 commit comments

Comments
 (0)
Please sign in to comment.