@@ -84,7 +84,7 @@ ParallelScavengeTracer PSScavenge::_gc_tracer;
84
84
CollectorCounters* PSScavenge::_counters = nullptr ;
85
85
86
86
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" );
88
88
89
89
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager (worker_id);
90
90
PSPromoteRootsClosure roots_to_old_closure (pm);
@@ -115,7 +115,7 @@ static void scavenge_roots_work(ParallelRootType::Value root_type, uint worker_i
115
115
}
116
116
117
117
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" );
119
119
120
120
PSPromotionManager* pm =
121
121
PSPromotionManager::gc_thread_promotion_manager (worker_id);
@@ -232,11 +232,11 @@ class ParallelScavengeRefProcProxyTask : public RefProcProxyTask {
232
232
bool PSScavenge::invoke () {
233
233
assert (SafepointSynchronize::is_at_safepoint (), " should be at safepoint" );
234
234
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" );
236
236
237
237
ParallelScavengeHeap* const heap = ParallelScavengeHeap::heap ();
238
238
PSAdaptiveSizePolicy* policy = heap->size_policy ();
239
- IsGCActiveMark mark;
239
+ IsSTWGCActiveMark mark;
240
240
241
241
const bool scavenge_done = PSScavenge::invoke_no_policy ();
242
242
const bool need_full_gc = !scavenge_done;
@@ -264,7 +264,7 @@ class PSThreadRootsTaskClosure : public ThreadClosure {
264
264
public:
265
265
PSThreadRootsTaskClosure (uint worker_id) : _worker_id(worker_id) { }
266
266
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" );
268
268
269
269
PSPromotionManager* pm = PSPromotionManager::gc_thread_promotion_manager (_worker_id);
270
270
PSScavengeRootsClosure roots_closure (pm);
0 commit comments