1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
49
49
#include " gc/shared/gcTrace.hpp"
50
50
#include " gc/shared/gcTraceTime.inline.hpp"
51
51
#include " gc/shared/isGCActiveMark.hpp"
52
+ #include " gc/shared/owstTaskTerminator.hpp"
52
53
#include " gc/shared/referencePolicy.hpp"
53
54
#include " gc/shared/referenceProcessor.hpp"
54
55
#include " gc/shared/referenceProcessorPhaseTimes.hpp"
@@ -1969,7 +1970,7 @@ bool PSParallelCompact::invoke_no_policy(bool maximum_heap_compaction) {
1969
1970
collection_exit.ticks ());
1970
1971
1971
1972
#ifdef TRACESPINNING
1972
- ParallelTaskTerminator ::print_termination_counts ();
1973
+ OWSTTaskTerminator ::print_termination_counts ();
1973
1974
#endif
1974
1975
1975
1976
AdaptiveSizePolicyOutput::print (size_policy, heap->total_collections ());
@@ -2149,7 +2150,7 @@ static void mark_from_roots_work(ParallelRootType::Value root_type, uint worker_
2149
2150
cm->follow_marking_stacks ();
2150
2151
}
2151
2152
2152
- static void steal_marking_work (ParallelTaskTerminator & terminator, uint worker_id) {
2153
+ static void steal_marking_work (OWSTTaskTerminator & terminator, uint worker_id) {
2153
2154
assert (ParallelScavengeHeap::heap ()->is_gc_active (), " called outside gc" );
2154
2155
2155
2156
ParCompactionManager* cm =
@@ -2173,7 +2174,7 @@ class MarkFromRootsTask : public AbstractGangTask {
2173
2174
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
2174
2175
StrongRootsScope _strong_roots_scope; // needed for Threads::possibly_parallel_threads_do
2175
2176
SequentialSubTasksDone _subtasks;
2176
- TaskTerminator _terminator;
2177
+ OWSTTaskTerminator _terminator;
2177
2178
uint _active_workers;
2178
2179
2179
2180
public:
@@ -2197,7 +2198,7 @@ class MarkFromRootsTask : public AbstractGangTask {
2197
2198
Threads::possibly_parallel_threads_do (true /* parallel */ , &closure);
2198
2199
2199
2200
if (_active_workers > 1 ) {
2200
- steal_marking_work (* _terminator. terminator () , worker_id);
2201
+ steal_marking_work (_terminator, worker_id);
2201
2202
}
2202
2203
}
2203
2204
};
@@ -2206,7 +2207,7 @@ class PCRefProcTask : public AbstractGangTask {
2206
2207
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
2207
2208
ProcessTask& _task;
2208
2209
uint _ergo_workers;
2209
- TaskTerminator _terminator;
2210
+ OWSTTaskTerminator _terminator;
2210
2211
2211
2212
public:
2212
2213
PCRefProcTask (ProcessTask& task, uint ergo_workers) :
@@ -2227,7 +2228,7 @@ class PCRefProcTask : public AbstractGangTask {
2227
2228
_task.work (worker_id, *PSParallelCompact::is_alive_closure (),
2228
2229
mark_and_push_closure, follow_stack_closure);
2229
2230
2230
- steal_marking_work (* _terminator. terminator () , worker_id);
2231
+ steal_marking_work (_terminator, worker_id);
2231
2232
}
2232
2233
};
2233
2234
@@ -2586,7 +2587,7 @@ void PSParallelCompact::write_block_fill_histogram()
2586
2587
}
2587
2588
#endif // #ifdef ASSERT
2588
2589
2589
- static void compaction_with_stealing_work (ParallelTaskTerminator * terminator, uint worker_id) {
2590
+ static void compaction_with_stealing_work (OWSTTaskTerminator * terminator, uint worker_id) {
2590
2591
assert (ParallelScavengeHeap::heap ()->is_gc_active (), " called outside gc" );
2591
2592
2592
2593
ParCompactionManager* cm =
@@ -2622,7 +2623,7 @@ static void compaction_with_stealing_work(ParallelTaskTerminator* terminator, ui
2622
2623
class UpdateDensePrefixAndCompactionTask : public AbstractGangTask {
2623
2624
typedef AbstractRefProcTaskExecutor::ProcessTask ProcessTask;
2624
2625
TaskQueue& _tq;
2625
- TaskTerminator _terminator;
2626
+ OWSTTaskTerminator _terminator;
2626
2627
uint _active_workers;
2627
2628
2628
2629
public:
@@ -2644,7 +2645,7 @@ class UpdateDensePrefixAndCompactionTask: public AbstractGangTask {
2644
2645
2645
2646
// Once a thread has drained it's stack, it should try to steal regions from
2646
2647
// other threads.
2647
- compaction_with_stealing_work (_terminator. terminator () , worker_id);
2648
+ compaction_with_stealing_work (& _terminator, worker_id);
2648
2649
}
2649
2650
};
2650
2651
0 commit comments