We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2e3a2c commit e16eda8Copy full SHA for e16eda8
src/hotspot/share/oops/stackChunkOop.cpp
@@ -312,8 +312,10 @@ class TransformStackChunkClosure {
312
313
// This code is called from the STW collectors and don't have concurrent
314
// 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");
+ // storestore barrier here. Alternatively, we're called from freeze, when
+ // allocating in old.
317
+ assert(Thread::current()->is_Java_thread() || SafepointSynchronize::is_at_safepoint(),
318
+ "Should only be used by STW collectors");
319
320
CompressOopsAndBuildBitmapOopClosure<kind> cl(_chunk);
321
f.iterate_oops(&cl, map);
0 commit comments