Skip to content

Commit 1eec30a

Browse files
committedMay 6, 2024
8331573: Rename CollectedHeap::is_gc_active to be explicitly about STW GCs
Reviewed-by: stefank, zgu, tschatzl, gli
1 parent e8a2d56 commit 1eec30a

27 files changed

+62
-64
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -2399,7 +2399,7 @@ void G1CollectedHeap::expand_heap_after_young_collection(){
23992399

24002400
bool G1CollectedHeap::do_collection_pause_at_safepoint() {
24012401
assert_at_safepoint_on_vm_thread();
2402-
guarantee(!is_gc_active(), "collection is not reentrant");
2402+
guarantee(!is_stw_gc_active(), "collection is not reentrant");
24032403

24042404
do_collection_pause_at_safepoint_helper();
24052405
return true;
@@ -2469,7 +2469,7 @@ void G1CollectedHeap::flush_region_pin_cache() {
24692469
void G1CollectedHeap::do_collection_pause_at_safepoint_helper() {
24702470
ResourceMark rm;
24712471

2472-
IsGCActiveMark active_gc_mark;
2472+
IsSTWGCActiveMark active_gc_mark;
24732473
GCIdMark gc_id_mark;
24742474
SvcGCMarker sgcm(SvcGCMarker::MINOR);
24752475

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ class G1CollectedHeap : public CollectedHeap {
749749
// false if unable to do the collection due to the GC locker being
750750
// active, true otherwise.
751751
// precondition: at safepoint on VM thread
752-
// precondition: !is_gc_active()
752+
// precondition: !is_stw_gc_active()
753753
bool do_collection_pause_at_safepoint();
754754

755755
// Helper for do_collection_pause_at_safepoint, containing the guts

‎src/hotspot/share/gc/g1/g1CollectedHeap.inline.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ inline bool G1CollectedHeap::is_obj_dead(const oop obj, const HeapRegion* hr) co
265265

266266
inline void G1CollectedHeap::pin_object(JavaThread* thread, oop obj) {
267267
assert(obj != nullptr, "obj must not be null");
268-
assert(!is_gc_active(), "must not pin objects during a GC");
268+
assert(!is_stw_gc_active(), "must not pin objects during a GC pause");
269269
assert(obj->is_typeArray(), "must be typeArray");
270270

271271
uint obj_region_idx = heap_region_containing(obj)->hrm_index();
@@ -274,7 +274,7 @@ inline void G1CollectedHeap::pin_object(JavaThread* thread, oop obj) {
274274

275275
inline void G1CollectedHeap::unpin_object(JavaThread* thread, oop obj) {
276276
assert(obj != nullptr, "obj must not be null");
277-
assert(!is_gc_active(), "must not unpin objects during a GC");
277+
assert(!is_stw_gc_active(), "must not unpin objects during a GC pause");
278278

279279
uint obj_region_idx = heap_region_containing(obj)->hrm_index();
280280
G1ThreadLocalData::pin_count_cache(thread).dec_count(obj_region_idx);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class G1FullGCScope : public StackObj {
5252
SvcGCMarker _svc_marker;
5353
STWGCTimer _timer;
5454
G1FullGCTracer* _tracer;
55-
IsGCActiveMark _active;
55+
IsSTWGCActiveMark _active;
5656
G1FullGCJFRTracerMark _tracer_mark;
5757
ClearedAllSoftRefs _soft_refs;
5858
G1FullGCMonitoringScope _monitoring_scope;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@ bool G1RemSet::clean_card_before_refine(CardValue** const card_ptr_addr) {
15641564

15651565
void G1RemSet::refine_card_concurrently(CardValue* const card_ptr,
15661566
const uint worker_id) {
1567-
assert(!_g1h->is_gc_active(), "Only call concurrently");
1567+
assert(!_g1h->is_stw_gc_active(), "Only call concurrently");
15681568
check_card_ptr(card_ptr, _ct);
15691569

15701570
// Construct the MemRegion representing the card.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ void VM_G1PauseConcurrent::doit() {
146146

147147
G1ConcGCMonitoringScope monitoring_scope(g1h->monitoring_support());
148148
SvcGCMarker sgcm(SvcGCMarker::CONCURRENT);
149-
IsGCActiveMark x;
149+
IsSTWGCActiveMark x;
150150

151151
work();
152152
}

‎src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ void ParallelScavengeHeap::do_full_collection(bool clear_all_soft_refs) {
459459
HeapWord* ParallelScavengeHeap::failed_mem_allocate(size_t size) {
460460
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint");
461461
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread");
462-
assert(!is_gc_active(), "not reentrant");
462+
assert(!is_stw_gc_active(), "not reentrant");
463463
assert(!Heap_lock->owned_by_self(), "this thread should not own the Heap_lock");
464464

465465
// We assume that allocation in eden will fail unless we collect.

‎src/hotspot/share/gc/parallel/psParallelCompact.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -1269,9 +1269,9 @@ bool PSParallelCompact::invoke(bool maximum_heap_compaction) {
12691269
"should be in vm thread");
12701270

12711271
ParallelScavengeHeap* heap = ParallelScavengeHeap::heap();
1272-
assert(!heap->is_gc_active(), "not reentrant");
1272+
assert(!heap->is_stw_gc_active(), "not reentrant");
12731273

1274-
IsGCActiveMark mark;
1274+
IsSTWGCActiveMark mark;
12751275

12761276
const bool clear_all_soft_refs =
12771277
heap->soft_ref_policy()->should_clear_all_soft_refs();
@@ -1492,7 +1492,7 @@ class PCAddThreadRootsMarkingTaskClosure : public ThreadClosure {
14921492
public:
14931493
PCAddThreadRootsMarkingTaskClosure(uint worker_id) : _worker_id(worker_id) { }
14941494
void do_thread(Thread* thread) {
1495-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
1495+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
14961496

14971497
ResourceMark rm;
14981498

@@ -1509,7 +1509,7 @@ class PCAddThreadRootsMarkingTaskClosure : public ThreadClosure {
15091509
};
15101510

15111511
void steal_marking_work(TaskTerminator& terminator, uint worker_id) {
1512-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
1512+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
15131513

15141514
ParCompactionManager* cm =
15151515
ParCompactionManager::gc_thread_compaction_manager(worker_id);
@@ -1986,7 +1986,7 @@ void PSParallelCompact::write_block_fill_histogram()
19861986
#endif // #ifdef ASSERT
19871987

19881988
static void compaction_with_stealing_work(TaskTerminator* terminator, uint worker_id) {
1989-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
1989+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
19901990

19911991
ParCompactionManager* cm =
19921992
ParCompactionManager::gc_thread_compaction_manager(worker_id);

‎src/hotspot/share/gc/parallel/psScavenge.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ParallelScavengeTracer PSScavenge::_gc_tracer;
8484
CollectorCounters* PSScavenge::_counters = nullptr;
8585

8686
static void scavenge_roots_work(ParallelRootType::Value root_type, uint worker_id) {
87-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
87+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
8888

8989
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(worker_id);
9090
PSPromoteRootsClosure roots_to_old_closure(pm);
@@ -115,7 +115,7 @@ static void scavenge_roots_work(ParallelRootType::Value root_type, uint worker_i
115115
}
116116

117117
static void steal_work(TaskTerminator& terminator, uint worker_id) {
118-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
118+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
119119

120120
PSPromotionManager* pm =
121121
PSPromotionManager::gc_thread_promotion_manager(worker_id);
@@ -232,11 +232,11 @@ class ParallelScavengeRefProcProxyTask : public RefProcProxyTask {
232232
bool PSScavenge::invoke() {
233233
assert(SafepointSynchronize::is_at_safepoint(), "should be at safepoint");
234234
assert(Thread::current() == (Thread*)VMThread::vm_thread(), "should be in vm thread");
235-
assert(!ParallelScavengeHeap::heap()->is_gc_active(), "not reentrant");
235+
assert(!ParallelScavengeHeap::heap()->is_stw_gc_active(), "not reentrant");
236236

237237
ParallelScavengeHeap* const heap = ParallelScavengeHeap::heap();
238238
PSAdaptiveSizePolicy* policy = heap->size_policy();
239-
IsGCActiveMark mark;
239+
IsSTWGCActiveMark mark;
240240

241241
const bool scavenge_done = PSScavenge::invoke_no_policy();
242242
const bool need_full_gc = !scavenge_done;
@@ -264,7 +264,7 @@ class PSThreadRootsTaskClosure : public ThreadClosure {
264264
public:
265265
PSThreadRootsTaskClosure(uint worker_id) : _worker_id(worker_id) { }
266266
virtual void do_thread(Thread* thread) {
267-
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
267+
assert(ParallelScavengeHeap::heap()->is_stw_gc_active(), "called outside gc");
268268

269269
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager(_worker_id);
270270
PSScavengeRootsClosure roots_closure(pm);

‎src/hotspot/share/gc/serial/serialHeap.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ void SerialHeap::do_collection(bool full,
484484
assert(my_thread->is_VM_thread(), "only VM thread");
485485
assert(Heap_lock->is_locked(),
486486
"the requesting thread should have the Heap_lock");
487-
guarantee(!is_gc_active(), "collection is not reentrant");
487+
guarantee(!is_stw_gc_active(), "collection is not reentrant");
488488

489489
if (GCLocker::check_active_before_gc()) {
490490
return; // GC is disabled (e.g. JNI GetXXXCritical operation)
@@ -495,7 +495,7 @@ void SerialHeap::do_collection(bool full,
495495

496496
ClearedAllSoftRefs casr(do_clear_all_soft_refs, soft_ref_policy());
497497

498-
IsGCActiveMark active_gc_mark;
498+
IsSTWGCActiveMark active_gc_mark;
499499

500500
bool complete = full && (max_generation == OldGen);
501501
bool old_collects_young = complete;

‎src/hotspot/share/gc/shared/collectedHeap.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ CollectedHeap::CollectedHeap() :
243243
_capacity_at_last_gc(0),
244244
_used_at_last_gc(0),
245245
_soft_ref_policy(),
246-
_is_gc_active(false),
246+
_is_stw_gc_active(false),
247247
_last_whole_heap_examined_time_ns(os::javaTimeNanos()),
248248
_total_collections(0),
249249
_total_full_collections(0),

‎src/hotspot/share/gc/shared/collectedHeap.hpp

+5-7
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ class ParallelObjectIterator : public StackObj {
9090
class CollectedHeap : public CHeapObj<mtGC> {
9191
friend class VMStructs;
9292
friend class JVMCIVMStructs;
93-
friend class IsGCActiveMark; // Block structured external access to _is_gc_active
94-
friend class DisableIsGCActiveMark; // Disable current IsGCActiveMark
93+
friend class IsSTWGCActiveMark; // Block structured external access to _is_stw_gc_active
94+
friend class DisableIsSTWGCActiveMark; // Disable current IsSTWGCActiveMark
9595
friend class MemAllocator;
9696
friend class ParallelObjectIterator;
9797

@@ -112,7 +112,7 @@ class CollectedHeap : public CHeapObj<mtGC> {
112112
// Not used by all GCs
113113
MemRegion _reserved;
114114

115-
bool _is_gc_active;
115+
bool _is_stw_gc_active;
116116

117117
// (Minimum) Alignment reserve for TLABs and PLABs.
118118
static size_t _lab_alignment_reserve;
@@ -374,10 +374,8 @@ class CollectedHeap : public CHeapObj<mtGC> {
374374
// allocated object.
375375
virtual bool requires_barriers(stackChunkOop obj) const = 0;
376376

377-
// Returns "true" iff there is a stop-world GC in progress. (I assume
378-
// that it should answer "false" for the concurrent part of a concurrent
379-
// collector -- dld).
380-
bool is_gc_active() const { return _is_gc_active; }
377+
// Returns "true" iff there is a stop-world GC in progress.
378+
bool is_stw_gc_active() const { return _is_stw_gc_active; }
381379

382380
// Total number of GC collections (started)
383381
unsigned int total_collections() const { return _total_collections; }

‎src/hotspot/share/gc/shared/isGCActiveMark.cpp

+13-13
Original file line numberDiff line numberDiff line change
@@ -29,28 +29,28 @@
2929
#include "utilities/debug.hpp"
3030

3131
// This class provides a method for block structured setting of the
32-
// _is_gc_active state without requiring accessors in CollectedHeap
32+
// _is_stw_gc_active state without requiring accessors in CollectedHeap
3333

34-
IsGCActiveMark::IsGCActiveMark() {
34+
IsSTWGCActiveMark::IsSTWGCActiveMark() {
3535
CollectedHeap* heap = Universe::heap();
36-
assert(!heap->is_gc_active(), "Not reentrant");
37-
heap->_is_gc_active = true;
36+
assert(!heap->is_stw_gc_active(), "Not reentrant");
37+
heap->_is_stw_gc_active = true;
3838
}
3939

40-
IsGCActiveMark::~IsGCActiveMark() {
40+
IsSTWGCActiveMark::~IsSTWGCActiveMark() {
4141
CollectedHeap* heap = Universe::heap();
42-
assert(heap->is_gc_active(), "Sanity");
43-
heap->_is_gc_active = false;
42+
assert(heap->is_stw_gc_active(), "Sanity");
43+
heap->_is_stw_gc_active = false;
4444
}
4545

46-
DisableIsGCActiveMark::DisableIsGCActiveMark() {
46+
DisableIsSTWGCActiveMark::DisableIsSTWGCActiveMark() {
4747
CollectedHeap* heap = Universe::heap();
48-
assert(heap->is_gc_active(), "Not reentrant");
49-
heap->_is_gc_active = false;
48+
assert(heap->is_stw_gc_active(), "Not reentrant");
49+
heap->_is_stw_gc_active = false;
5050
}
5151

52-
DisableIsGCActiveMark::~DisableIsGCActiveMark() {
52+
DisableIsSTWGCActiveMark::~DisableIsSTWGCActiveMark() {
5353
CollectedHeap* heap = Universe::heap();
54-
assert(!heap->is_gc_active(), "Sanity");
55-
heap->_is_gc_active = true;
54+
assert(!heap->is_stw_gc_active(), "Sanity");
55+
heap->_is_stw_gc_active = true;
5656
}

‎src/hotspot/share/gc/shared/isGCActiveMark.hpp

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
#include "memory/allocation.hpp"
2929

3030
// This class provides a method for block structured setting of the
31-
// _is_gc_active state without requiring accessors in CollectedHeap
31+
// _is_stw_gc_active state without requiring accessors in CollectedHeap
3232

33-
class IsGCActiveMark : public StackObj {
33+
class IsSTWGCActiveMark : public StackObj {
3434
public:
35-
IsGCActiveMark();
36-
~IsGCActiveMark();
35+
IsSTWGCActiveMark();
36+
~IsSTWGCActiveMark();
3737
};
3838

39-
class DisableIsGCActiveMark : public StackObj {
39+
class DisableIsSTWGCActiveMark : public StackObj {
4040
public:
41-
DisableIsGCActiveMark();
42-
~DisableIsGCActiveMark();
41+
DisableIsSTWGCActiveMark();
42+
~DisableIsSTWGCActiveMark();
4343
};
4444

4545
#endif // SHARE_GC_SHARED_ISGCACTIVEMARK_HPP

‎src/hotspot/share/gc/shared/memAllocator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void MemAllocator::Allocation::verify_before() {
147147
JavaThread* THREAD = _thread; // For exception macros.
148148
assert(!HAS_PENDING_EXCEPTION, "Should not allocate with exception pending");
149149
debug_only(check_for_valid_allocation_state());
150-
assert(!Universe::heap()->is_gc_active(), "Allocation during gc not allowed");
150+
assert(!Universe::heap()->is_stw_gc_active(), "Allocation during GC pause not allowed");
151151
}
152152

153153
#ifdef ASSERT

‎src/hotspot/share/gc/shared/vmStructs_gc.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
nonstatic_field(CardTableBarrierSet, _card_table, CardTable*) \
9393
\
9494
nonstatic_field(CollectedHeap, _reserved, MemRegion) \
95-
nonstatic_field(CollectedHeap, _is_gc_active, bool) \
95+
nonstatic_field(CollectedHeap, _is_stw_gc_active, bool) \
9696
nonstatic_field(CollectedHeap, _total_collections, unsigned int) \
9797
\
9898
nonstatic_field(ContiguousSpace, _bottom, HeapWord*) \

‎src/hotspot/share/gc/shenandoah/shenandoahUtils.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class ShenandoahGCPauseMark : public StackObj {
132132
ShenandoahHeap* const _heap;
133133
const GCIdMark _gc_id_mark;
134134
const SvcGCMarker _svc_gc_mark;
135-
const IsGCActiveMark _is_gc_active_mark;
135+
const IsSTWGCActiveMark _is_gc_active_mark;
136136
TraceMemoryManagerStats _trace_pause;
137137

138138
public:

‎src/hotspot/share/gc/x/xDriver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class VM_XOperation : public VM_Operation {
116116

117117
// Setup GC id and active marker
118118
GCIdMark gc_id_mark(_gc_id);
119-
IsGCActiveMark gc_active_mark;
119+
IsSTWGCActiveMark gc_active_mark;
120120

121121
// Verify before operation
122122
XVerify::before_zoperation();

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ class VM_ZOperation : public VM_Operation {
438438
virtual void doit() {
439439
// Setup GC id and active marker
440440
GCIdMark gc_id_mark(_gc_id);
441-
IsGCActiveMark gc_active_mark;
441+
IsSTWGCActiveMark gc_active_mark;
442442

443443
// Verify before operation
444444
ZVerify::before_zoperation();

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ void ZVerify::after_mark() {
484484
}
485485
if (ZVerifyObjects) {
486486
// Workaround OopMapCacheAlloc_lock reordering with the StackWatermark_lock
487-
DisableIsGCActiveMark mark;
487+
DisableIsSTWGCActiveMark mark;
488488

489489
objects(false /* verify_weaks */);
490490
guarantee(zverify_broken_object == zaddress::null, "Verification failed");

‎src/hotspot/share/jvmci/jvmciRuntime.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,7 @@ static OopStorage* object_handles() {
879879
}
880880

881881
jlong JVMCIRuntime::make_oop_handle(const Handle& obj) {
882-
assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC");
882+
assert(!Universe::heap()->is_stw_gc_active(), "can't extend the root set during GC pause");
883883
assert(oopDesc::is_oop(obj()), "not an oop");
884884

885885
oop* ptr = OopHandle(object_handles(), obj()).ptr_raw();

‎src/hotspot/share/memory/universe.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1342,8 +1342,8 @@ bool Universe::release_fullgc_alot_dummy() {
13421342
return true;
13431343
}
13441344

1345-
bool Universe::is_gc_active() {
1346-
return heap()->is_gc_active();
1345+
bool Universe::is_stw_gc_active() {
1346+
return heap()->is_stw_gc_active();
13471347
}
13481348

13491349
bool Universe::is_in_heap(const void* p) {

‎src/hotspot/share/memory/universe.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ class Universe: AllStatic {
295295
// The particular choice of collected heap.
296296
static CollectedHeap* heap() { return _collectedHeap; }
297297

298-
DEBUG_ONLY(static bool is_gc_active();)
298+
DEBUG_ONLY(static bool is_stw_gc_active();)
299299
DEBUG_ONLY(static bool is_in_heap(const void* p);)
300300
DEBUG_ONLY(static bool is_in_heap_or_null(const void* p) { return p == nullptr || is_in_heap(p); })
301301

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ void Method::mask_for(int bci, InterpreterOopMap* mask) {
312312
methodHandle h_this(Thread::current(), this);
313313
// Only GC uses the OopMapCache during thread stack root scanning
314314
// any other uses generate an oopmap but do not save it in the cache.
315-
if (Universe::heap()->is_gc_active()) {
315+
if (Universe::heap()->is_stw_gc_active()) {
316316
method_holder()->mask_for(h_this, bci, mask);
317317
} else {
318318
OopMapCache::compute_one_oop_map(h_this, bci, mask);

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,6 @@ bool oopDesc::size_might_change() {
226226
// the grey portion of an already copied array. This will cause the first
227227
// disjunct below to fail if the two comparands are computed across such
228228
// a concurrent change.
229-
return Universe::heap()->is_gc_active() && is_objArray() && is_forwarded() && (UseParallelGC || UseG1GC);
229+
return Universe::heap()->is_stw_gc_active() && is_objArray() && is_forwarded() && (UseParallelGC || UseG1GC);
230230
}
231231
#endif

‎src/hotspot/share/prims/forte.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -602,7 +602,7 @@ void AsyncGetCallTrace(ASGCT_CallTrace *trace, jint depth, void* ucontext) {
602602
return;
603603
}
604604

605-
if (Universe::heap()->is_gc_active()) {
605+
if (Universe::heap()->is_stw_gc_active()) {
606606
trace->num_frames = ticks_GC_active; // -2
607607
return;
608608
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ static void report_handle_allocation_failure(AllocFailType alloc_failmode,
8383
}
8484

8585
jobject JNIHandles::make_global(Handle obj, AllocFailType alloc_failmode) {
86-
assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC");
86+
assert(!Universe::heap()->is_stw_gc_active(), "can't extend the root set during GC pause");
8787
assert(!current_thread_in_native(), "must not be in native");
8888
jobject res = nullptr;
8989
if (!obj.is_null()) {
@@ -105,7 +105,7 @@ jobject JNIHandles::make_global(Handle obj, AllocFailType alloc_failmode) {
105105
}
106106

107107
jweak JNIHandles::make_weak_global(Handle obj, AllocFailType alloc_failmode) {
108-
assert(!Universe::heap()->is_gc_active(), "can't extend the root set during GC");
108+
assert(!Universe::heap()->is_stw_gc_active(), "can't extend the root set during GC pause");
109109
assert(!current_thread_in_native(), "must not be in native");
110110
jweak res = nullptr;
111111
if (!obj.is_null()) {

0 commit comments

Comments
 (0)
Please sign in to comment.