Skip to content

Commit 76675e9

Browse files
author
Thomas Schatzl
committedFeb 3, 2020
8215297: Remove ParallelTaskTerminator
Remove ParallelTaskTerminator as the alternate OWSTTaskTerminator algorithm has worked well for more than a year now. Reviewed-by: zgu, sjohanss
1 parent 4b8a5f9 commit 76675e9

21 files changed

+185
-342
lines changed
 

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

+9-8
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@
7676
#include "gc/shared/isGCActiveMark.hpp"
7777
#include "gc/shared/locationPrinter.inline.hpp"
7878
#include "gc/shared/oopStorageParState.hpp"
79+
#include "gc/shared/owstTaskTerminator.hpp"
7980
#include "gc/shared/preservedMarks.inline.hpp"
8081
#include "gc/shared/suspendibleThreadSet.hpp"
8182
#include "gc/shared/referenceProcessor.inline.hpp"
@@ -1132,7 +1133,7 @@ void G1CollectedHeap::print_heap_after_full_collection(G1HeapTransition* heap_tr
11321133
print_heap_after_gc();
11331134
print_heap_regions();
11341135
#ifdef TRACESPINNING
1135-
ParallelTaskTerminator::print_termination_counts();
1136+
OWSTTaskTerminator::print_termination_counts();
11361137
#endif
11371138
}
11381139

@@ -3140,7 +3141,7 @@ void G1CollectedHeap::do_collection_pause_at_safepoint_helper(double target_paus
31403141
verify_after_young_collection(verify_type);
31413142

31423143
#ifdef TRACESPINNING
3143-
ParallelTaskTerminator::print_termination_counts();
3144+
OWSTTaskTerminator::print_termination_counts();
31443145
#endif
31453146

31463147
gc_epilogue(false);
@@ -3476,14 +3477,14 @@ class G1STWRefProcTaskProxy: public AbstractGangTask {
34763477
G1CollectedHeap* _g1h;
34773478
G1ParScanThreadStateSet* _pss;
34783479
RefToScanQueueSet* _task_queues;
3479-
ParallelTaskTerminator* _terminator;
3480+
OWSTTaskTerminator* _terminator;
34803481

34813482
public:
34823483
G1STWRefProcTaskProxy(ProcessTask& proc_task,
34833484
G1CollectedHeap* g1h,
34843485
G1ParScanThreadStateSet* per_thread_states,
34853486
RefToScanQueueSet *task_queues,
3486-
ParallelTaskTerminator* terminator) :
3487+
OWSTTaskTerminator* terminator) :
34873488
AbstractGangTask("Process reference objects in parallel"),
34883489
_proc_task(proc_task),
34893490
_g1h(g1h),
@@ -3527,8 +3528,8 @@ void G1STWRefProcTaskExecutor::execute(ProcessTask& proc_task, uint ergo_workers
35273528
assert(_workers->active_workers() >= ergo_workers,
35283529
"Ergonomically chosen workers (%u) should be less than or equal to active workers (%u)",
35293530
ergo_workers, _workers->active_workers());
3530-
TaskTerminator terminator(ergo_workers, _queues);
3531-
G1STWRefProcTaskProxy proc_task_proxy(proc_task, _g1h, _pss, _queues, terminator.terminator());
3531+
OWSTTaskTerminator terminator(ergo_workers, _queues);
3532+
G1STWRefProcTaskProxy proc_task_proxy(proc_task, _g1h, _pss, _queues, &terminator);
35323533

35333534
_workers->run_task(&proc_task_proxy, ergo_workers);
35343535
}
@@ -3814,7 +3815,7 @@ class G1EvacuateRegionsBaseTask : public AbstractGangTask {
38143815
G1CollectedHeap* _g1h;
38153816
G1ParScanThreadStateSet* _per_thread_states;
38163817
RefToScanQueueSet* _task_queues;
3817-
TaskTerminator _terminator;
3818+
OWSTTaskTerminator _terminator;
38183819
uint _num_workers;
38193820

38203821
void evacuate_live_objects(G1ParScanThreadState* pss,
@@ -3824,7 +3825,7 @@ class G1EvacuateRegionsBaseTask : public AbstractGangTask {
38243825
G1GCPhaseTimes* p = _g1h->phase_times();
38253826

38263827
Ticks start = Ticks::now();
3827-
G1ParEvacuateFollowersClosure cl(_g1h, pss, _task_queues, _terminator.terminator(), objcopy_phase);
3828+
G1ParEvacuateFollowersClosure cl(_g1h, pss, _task_queues, &_terminator, objcopy_phase);
38283829
cl.do_void();
38293830

38303831
assert(pss->queue_is_empty(), "should be empty");

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1482,18 +1482,18 @@ class G1ParEvacuateFollowersClosure : public VoidClosure {
14821482
G1CollectedHeap* _g1h;
14831483
G1ParScanThreadState* _par_scan_state;
14841484
RefToScanQueueSet* _queues;
1485-
ParallelTaskTerminator* _terminator;
1485+
OWSTTaskTerminator* _terminator;
14861486
G1GCPhaseTimes::GCParPhases _phase;
14871487

14881488
G1ParScanThreadState* par_scan_state() { return _par_scan_state; }
14891489
RefToScanQueueSet* queues() { return _queues; }
1490-
ParallelTaskTerminator* terminator() { return _terminator; }
1490+
OWSTTaskTerminator* terminator() { return _terminator; }
14911491

14921492
public:
14931493
G1ParEvacuateFollowersClosure(G1CollectedHeap* g1h,
14941494
G1ParScanThreadState* par_scan_state,
14951495
RefToScanQueueSet* queues,
1496-
ParallelTaskTerminator* terminator,
1496+
OWSTTaskTerminator* terminator,
14971497
G1GCPhaseTimes::GCParPhases phase)
14981498
: _start_term(0.0), _term_time(0.0), _term_attempts(0),
14991499
_g1h(g1h), _par_scan_state(par_scan_state),

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,6 +46,7 @@
4646
#include "gc/shared/gcTraceTime.inline.hpp"
4747
#include "gc/shared/gcVMOperations.hpp"
4848
#include "gc/shared/genOopClosures.inline.hpp"
49+
#include "gc/shared/owstTaskTerminator.hpp"
4950
#include "gc/shared/referencePolicy.hpp"
5051
#include "gc/shared/strongRootsScope.hpp"
5152
#include "gc/shared/suspendibleThreadSet.hpp"
@@ -600,7 +601,7 @@ void G1ConcurrentMark::set_concurrency(uint active_tasks) {
600601
_num_active_tasks = active_tasks;
601602
// Need to update the three data structures below according to the
602603
// number of active threads for this phase.
603-
_terminator.terminator()->reset_for_reuse((int) active_tasks);
604+
_terminator.reset_for_reuse(active_tasks);
604605
_first_overflow_barrier_sync.set_n_workers((int) active_tasks);
605606
_second_overflow_barrier_sync.set_n_workers((int) active_tasks);
606607
}

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

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,6 +30,7 @@
3030
#include "gc/g1/g1HeapVerifier.hpp"
3131
#include "gc/g1/g1RegionMarkStatsCache.hpp"
3232
#include "gc/g1/heapRegionSet.hpp"
33+
#include "gc/shared/owstTaskTerminator.hpp"
3334
#include "gc/shared/taskqueue.hpp"
3435
#include "gc/shared/verifyOption.hpp"
3536
#include "gc/shared/workgroup.hpp"
@@ -328,7 +329,7 @@ class G1ConcurrentMark : public CHeapObj<mtGC> {
328329
G1CMTask** _tasks; // Task queue array (max_worker_id length)
329330

330331
G1CMTaskQueueSet* _task_queues; // Task queue set
331-
TaskTerminator _terminator; // For termination
332+
OWSTTaskTerminator _terminator; // For termination
332333

333334
// Two sync barriers that are used to synchronize tasks when an
334335
// overflow occurs. The algorithm is the following. All tasks enter
@@ -414,10 +415,10 @@ class G1ConcurrentMark : public CHeapObj<mtGC> {
414415
// Prints all gathered CM-related statistics
415416
void print_stats();
416417

417-
HeapWord* finger() { return _finger; }
418-
bool concurrent() { return _concurrent; }
419-
uint active_tasks() { return _num_active_tasks; }
420-
ParallelTaskTerminator* terminator() const { return _terminator.terminator(); }
418+
HeapWord* finger() { return _finger; }
419+
bool concurrent() { return _concurrent; }
420+
uint active_tasks() { return _num_active_tasks; }
421+
OWSTTaskTerminator* terminator() { return &_terminator; }
421422

422423
// Claims the next available region to be scanned by a marking
423424
// task/thread. It might return NULL if the next region is empty or

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -59,7 +59,7 @@ void G1FullGCMarkTask::work(uint worker_id) {
5959
}
6060

6161
// Mark stack is populated, now process and drain it.
62-
marker->complete_marking(collector()->oop_queue_set(), collector()->array_queue_set(), _terminator.terminator());
62+
marker->complete_marking(collector()->oop_queue_set(), collector()->array_queue_set(), &_terminator);
6363

6464
// This is the point where the entire marking should have completed.
6565
assert(marker->oop_stack()->is_empty(), "Marking should have completed");

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -36,7 +36,7 @@
3636

3737
class G1FullGCMarkTask : public G1FullGCTask {
3838
G1RootProcessor _root_processor;
39-
TaskTerminator _terminator;
39+
OWSTTaskTerminator _terminator;
4040

4141
public:
4242
G1FullGCMarkTask(G1FullCollector* collector);

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -25,6 +25,7 @@
2525
#include "precompiled.hpp"
2626
#include "classfile/classLoaderData.hpp"
2727
#include "gc/g1/g1FullGCMarker.inline.hpp"
28+
#include "gc/shared/owstTaskTerminator.hpp"
2829
#include "gc/shared/referenceProcessor.hpp"
2930
#include "gc/shared/verifyOption.hpp"
3031
#include "memory/iterator.inline.hpp"
@@ -49,7 +50,7 @@ G1FullGCMarker::~G1FullGCMarker() {
4950

5051
void G1FullGCMarker::complete_marking(OopQueueSet* oop_stacks,
5152
ObjArrayTaskQueueSet* array_stacks,
52-
ParallelTaskTerminator* terminator) {
53+
OWSTTaskTerminator* terminator) {
5354
do {
5455
drain_stack();
5556
ObjArrayTask steal_array;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -87,7 +87,7 @@ class G1FullGCMarker : public CHeapObj<mtGC> {
8787
inline void drain_stack();
8888
void complete_marking(OopQueueSet* oop_stacks,
8989
ObjArrayTaskQueueSet* array_stacks,
90-
ParallelTaskTerminator* terminator);
90+
OWSTTaskTerminator* terminator);
9191

9292
// Closure getters
9393
CLDToOopClosure* cld_closure() { return &_cld_closure; }

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -61,7 +61,7 @@ class G1FullGCReferenceProcessingExecutor: public AbstractRefProcTaskExecutor {
6161
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
6262
ProcessTask& _proc_task;
6363
G1FullCollector* _collector;
64-
TaskTerminator _terminator;
64+
OWSTTaskTerminator _terminator;
6565

6666
public:
6767
G1RefProcTaskProxy(ProcessTask& proc_task,

‎src/hotspot/share/gc/parallel/psCompactionManager.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ class ParallelCompactData;
3838
class ParMarkBitMap;
3939

4040
class ParCompactionManager : public CHeapObj<mtGC> {
41-
friend class ParallelTaskTerminator;
4241
friend class ParMarkBitMap;
4342
friend class PSParallelCompact;
4443
friend class CompactionWithStealingTask;
@@ -96,7 +95,7 @@ class ParCompactionManager : public CHeapObj<mtGC> {
9695
static void initialize(ParMarkBitMap* mbm);
9796

9897
protected:
99-
// Array of tasks. Needed by the ParallelTaskTerminator.
98+
// Array of task queues. Needed by the task terminator.
10099
static RegionTaskQueueSet* region_array() { return _region_array; }
101100
OverflowTaskQueue<oop, mtGC>* marking_stack() { return &_marking_stack; }
102101

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

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -49,6 +49,7 @@
4949
#include "gc/shared/gcTrace.hpp"
5050
#include "gc/shared/gcTraceTime.inline.hpp"
5151
#include "gc/shared/isGCActiveMark.hpp"
52+
#include "gc/shared/owstTaskTerminator.hpp"
5253
#include "gc/shared/referencePolicy.hpp"
5354
#include "gc/shared/referenceProcessor.hpp"
5455
#include "gc/shared/referenceProcessorPhaseTimes.hpp"
@@ -1969,7 +1970,7 @@ bool PSParallelCompact::invoke_no_policy(bool maximum_heap_compaction) {
19691970
collection_exit.ticks());
19701971

19711972
#ifdef TRACESPINNING
1972-
ParallelTaskTerminator::print_termination_counts();
1973+
OWSTTaskTerminator::print_termination_counts();
19731974
#endif
19741975

19751976
AdaptiveSizePolicyOutput::print(size_policy, heap->total_collections());
@@ -2149,7 +2150,7 @@ static void mark_from_roots_work(ParallelRootType::Value root_type, uint worker_
21492150
cm->follow_marking_stacks();
21502151
}
21512152

2152-
static void steal_marking_work(ParallelTaskTerminator& terminator, uint worker_id) {
2153+
static void steal_marking_work(OWSTTaskTerminator& terminator, uint worker_id) {
21532154
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
21542155

21552156
ParCompactionManager* cm =
@@ -2173,7 +2174,7 @@ class MarkFromRootsTask : public AbstractGangTask {
21732174
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
21742175
StrongRootsScope _strong_roots_scope; // needed for Threads::possibly_parallel_threads_do
21752176
SequentialSubTasksDone _subtasks;
2176-
TaskTerminator _terminator;
2177+
OWSTTaskTerminator _terminator;
21772178
uint _active_workers;
21782179

21792180
public:
@@ -2197,7 +2198,7 @@ class MarkFromRootsTask : public AbstractGangTask {
21972198
Threads::possibly_parallel_threads_do(true /*parallel */, &closure);
21982199

21992200
if (_active_workers > 1) {
2200-
steal_marking_work(*_terminator.terminator(), worker_id);
2201+
steal_marking_work(_terminator, worker_id);
22012202
}
22022203
}
22032204
};
@@ -2206,7 +2207,7 @@ class PCRefProcTask : public AbstractGangTask {
22062207
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
22072208
ProcessTask& _task;
22082209
uint _ergo_workers;
2209-
TaskTerminator _terminator;
2210+
OWSTTaskTerminator _terminator;
22102211

22112212
public:
22122213
PCRefProcTask(ProcessTask& task, uint ergo_workers) :
@@ -2227,7 +2228,7 @@ class PCRefProcTask : public AbstractGangTask {
22272228
_task.work(worker_id, *PSParallelCompact::is_alive_closure(),
22282229
mark_and_push_closure, follow_stack_closure);
22292230

2230-
steal_marking_work(*_terminator.terminator(), worker_id);
2231+
steal_marking_work(_terminator, worker_id);
22312232
}
22322233
};
22332234

@@ -2586,7 +2587,7 @@ void PSParallelCompact::write_block_fill_histogram()
25862587
}
25872588
#endif // #ifdef ASSERT
25882589

2589-
static void compaction_with_stealing_work(ParallelTaskTerminator* terminator, uint worker_id) {
2590+
static void compaction_with_stealing_work(OWSTTaskTerminator* terminator, uint worker_id) {
25902591
assert(ParallelScavengeHeap::heap()->is_gc_active(), "called outside gc");
25912592

25922593
ParCompactionManager* cm =
@@ -2622,7 +2623,7 @@ static void compaction_with_stealing_work(ParallelTaskTerminator* terminator, ui
26222623
class UpdateDensePrefixAndCompactionTask: public AbstractGangTask {
26232624
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
26242625
TaskQueue& _tq;
2625-
TaskTerminator _terminator;
2626+
OWSTTaskTerminator _terminator;
26262627
uint _active_workers;
26272628

26282629
public:
@@ -2644,7 +2645,7 @@ class UpdateDensePrefixAndCompactionTask: public AbstractGangTask {
26442645

26452646
// Once a thread has drained it's stack, it should try to steal regions from
26462647
// other threads.
2647-
compaction_with_stealing_work(_terminator.terminator(), worker_id);
2648+
compaction_with_stealing_work(&_terminator, worker_id);
26482649
}
26492650
};
26502651

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

-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,7 @@ class PSAdaptiveSizePolicy;
4040
class PSYoungGen;
4141
class PSOldGen;
4242
class ParCompactionManager;
43-
class ParallelTaskTerminator;
4443
class PSParallelCompact;
45-
class PreGCValues;
4644
class MoveAndUpdateClosure;
4745
class RefProcTaskExecutor;
4846
class ParallelOldTracer;

0 commit comments

Comments
 (0)
Please sign in to comment.