author | eosterlund |
Tue, 20 Sep 2016 11:41:43 +0200 | |
changeset 41279 | 5a7c83da4a2d |
parent 41178 | e567be097315 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
37214
bc4e0e0995e6
8152952: Allow G1 phase logging to use individual number of threads
brutisso
parents:
36201
diff
changeset
|
2 |
* Copyright (c) 2002, 2016, Oracle and/or its affiliates. All rights reserved. |
1 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
2105
diff
changeset
|
21 |
* questions. |
1 | 22 |
* |
23 |
*/ |
|
24 |
||
30764 | 25 |
#ifndef SHARE_VM_GC_SHARED_WORKGROUP_HPP |
26 |
#define SHARE_VM_GC_SHARED_WORKGROUP_HPP |
|
7397 | 27 |
|
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
28 |
#include "memory/allocation.hpp" |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
29 |
#include "runtime/globals.hpp" |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
30 |
#include "runtime/thread.hpp" |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
31 |
#include "gc/shared/gcId.hpp" |
36201
8d947f31586e
8150367: Add back information about the number of GC workers
brutisso
parents:
35465
diff
changeset
|
32 |
#include "logging/log.hpp" |
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
33 |
#include "utilities/debug.hpp" |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
34 |
#include "utilities/globalDefinitions.hpp" |
7397 | 35 |
|
8688
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
36 |
// Task class hierarchy: |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
37 |
// AbstractGangTask |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
38 |
// |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
39 |
// Gang/Group class hierarchy: |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
40 |
// AbstractWorkGang |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
41 |
// WorkGang |
32360 | 42 |
// YieldingFlexibleWorkGang (defined in another file) |
8688
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
43 |
// |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
44 |
// Worker class hierarchy: |
32360 | 45 |
// AbstractGangWorker (subclass of WorkerThread) |
46 |
// GangWorker |
|
8688
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
47 |
// YieldingFlexibleGangWorker (defined in another file) |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
48 |
|
1 | 49 |
// Forward declarations of classes defined here |
50 |
||
32360 | 51 |
class AbstractGangWorker; |
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
52 |
class Semaphore; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
53 |
class WorkGang; |
1 | 54 |
|
55 |
// An abstract task to be worked on by a gang. |
|
56 |
// You subclass this to supply your own work() method |
|
2013
49e915da0905
6700941: G1: allocation spec missing for some G1 classes
apetrusenko
parents:
1374
diff
changeset
|
57 |
class AbstractGangTask VALUE_OBJ_CLASS_SPEC { |
32360 | 58 |
const char* _name; |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
59 |
const uint _gc_id; |
32360 | 60 |
|
61 |
public: |
|
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
62 |
AbstractGangTask(const char* name) : |
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
63 |
_name(name), |
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
64 |
_gc_id(GCId::current_raw()) |
41178 | 65 |
{} |
66 |
||
67 |
AbstractGangTask(const char* name, const uint gc_id) : |
|
68 |
_name(name), |
|
69 |
_gc_id(gc_id) |
|
70 |
{} |
|
32360 | 71 |
|
1 | 72 |
// The abstract work method. |
73 |
// The argument tells you which member of the gang you are. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
74 |
virtual void work(uint worker_id) = 0; |
1 | 75 |
|
76 |
// Debugging accessor for the name. |
|
32360 | 77 |
const char* name() const { return _name; } |
33107
77bf0d2069a3
8134953: Make the GC ID available in a central place
brutisso
parents:
33105
diff
changeset
|
78 |
const uint gc_id() const { return _gc_id; } |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
79 |
}; |
1 | 80 |
|
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
81 |
struct WorkData { |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
82 |
AbstractGangTask* _task; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
83 |
uint _worker_id; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
84 |
WorkData(AbstractGangTask* task, uint worker_id) : _task(task), _worker_id(worker_id) {} |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
85 |
}; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
86 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
87 |
// Interface to handle the synchronization between the coordinator thread and the worker threads, |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
88 |
// when a task is dispatched out to the worker threads. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
89 |
class GangTaskDispatcher : public CHeapObj<mtGC> { |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
90 |
public: |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
91 |
virtual ~GangTaskDispatcher() {} |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
92 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
93 |
// Coordinator API. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
94 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
95 |
// Distributes the task out to num_workers workers. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
96 |
// Returns when the task has been completed by all workers. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
97 |
virtual void coordinator_execute_on_workers(AbstractGangTask* task, uint num_workers) = 0; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
98 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
99 |
// Worker API. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
100 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
101 |
// Waits for a task to become available to the worker. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
102 |
// Returns when the worker has been assigned a task. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
103 |
virtual WorkData worker_wait_for_task() = 0; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
104 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
105 |
// Signal to the coordinator that the worker is done with the assigned task. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
106 |
virtual void worker_done_with_task() = 0; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
107 |
}; |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
108 |
|
32360 | 109 |
// The work gang is the collection of workers to execute tasks. |
110 |
// The number of workers run for a task is "_active_workers" |
|
111 |
// while "_total_workers" is the number of available of workers. |
|
112 |
class AbstractWorkGang : public CHeapObj<mtInternal> { |
|
113 |
protected: |
|
114 |
// The array of worker threads for this gang. |
|
115 |
AbstractGangWorker** _workers; |
|
116 |
// The count of the number of workers in the gang. |
|
117 |
uint _total_workers; |
|
118 |
// The currently active workers in this gang. |
|
119 |
uint _active_workers; |
|
38216 | 120 |
// The count of created workers in the gang. |
121 |
uint _created_workers; |
|
32360 | 122 |
// Printing support. |
123 |
const char* _name; |
|
124 |
||
125 |
private: |
|
1 | 126 |
// Initialize only instance data. |
1374 | 127 |
const bool _are_GC_task_threads; |
128 |
const bool _are_ConcurrentGC_threads; |
|
32360 | 129 |
|
38216 | 130 |
void set_thread(uint worker_id, AbstractGangWorker* worker) { |
131 |
_workers[worker_id] = worker; |
|
132 |
} |
|
133 |
||
32360 | 134 |
public: |
135 |
AbstractWorkGang(const char* name, uint workers, bool are_GC_task_threads, bool are_ConcurrentGC_threads) : |
|
136 |
_name(name), |
|
137 |
_total_workers(workers), |
|
138 |
_active_workers(UseDynamicNumberOfGCThreads ? 1U : workers), |
|
38216 | 139 |
_created_workers(0), |
32360 | 140 |
_are_GC_task_threads(are_GC_task_threads), |
141 |
_are_ConcurrentGC_threads(are_ConcurrentGC_threads) |
|
142 |
{ } |
|
143 |
||
144 |
// Initialize workers in the gang. Return true if initialization succeeded. |
|
38216 | 145 |
void initialize_workers(); |
32360 | 146 |
|
147 |
bool are_GC_task_threads() const { return _are_GC_task_threads; } |
|
148 |
bool are_ConcurrentGC_threads() const { return _are_ConcurrentGC_threads; } |
|
149 |
||
150 |
uint total_workers() const { return _total_workers; } |
|
151 |
||
38216 | 152 |
uint created_workers() const { |
153 |
return _created_workers; |
|
154 |
} |
|
155 |
||
32360 | 156 |
virtual uint active_workers() const { |
157 |
assert(_active_workers <= _total_workers, |
|
33105
294e48b4f704
8080775: Better argument formatting for assert() and friends
david
parents:
32361
diff
changeset
|
158 |
"_active_workers: %u > _total_workers: %u", _active_workers, _total_workers); |
32360 | 159 |
assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers, |
160 |
"Unless dynamic should use total workers"); |
|
161 |
return _active_workers; |
|
162 |
} |
|
38216 | 163 |
|
40096
246c62cd9180
8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents:
39704
diff
changeset
|
164 |
uint update_active_workers(uint v) { |
32360 | 165 |
assert(v <= _total_workers, |
166 |
"Trying to set more workers active than there are"); |
|
167 |
_active_workers = MIN2(v, _total_workers); |
|
38216 | 168 |
add_workers(false /* exit_on_failure */); |
32360 | 169 |
assert(v != 0, "Trying to set active workers to 0"); |
40922
d9f1eaf18f9a
8165292: The gc+task logging is repeated a lot, decreasing the usefulness of -Xlog:gc*=info
tschatzl
parents:
40096
diff
changeset
|
170 |
log_trace(gc, task)("%s: using %d out of %d workers", name(), _active_workers, _total_workers); |
40096
246c62cd9180
8159073: : Error handling incomplete when creating GC threads lazily
jmasa
parents:
39704
diff
changeset
|
171 |
return _active_workers; |
32360 | 172 |
} |
173 |
||
38216 | 174 |
// Add GC workers as needed. |
175 |
void add_workers(bool initializing); |
|
176 |
||
39231
e6aa09b4f1b9
8157620: Guarantee in run_task(task, num_workers) fails
jmasa
parents:
38216
diff
changeset
|
177 |
// Add GC workers as needed to reach the specified number of workers. |
e6aa09b4f1b9
8157620: Guarantee in run_task(task, num_workers) fails
jmasa
parents:
38216
diff
changeset
|
178 |
void add_workers(uint active_workers, bool initializing); |
e6aa09b4f1b9
8157620: Guarantee in run_task(task, num_workers) fails
jmasa
parents:
38216
diff
changeset
|
179 |
|
32360 | 180 |
// Return the Ith worker. |
181 |
AbstractGangWorker* worker(uint i) const; |
|
182 |
||
39704 | 183 |
// Base name (without worker id #) of threads. |
184 |
const char* group_name() { return name(); } |
|
185 |
||
32360 | 186 |
void threads_do(ThreadClosure* tc) const; |
187 |
||
38216 | 188 |
// Create a GC worker and install it into the work gang. |
189 |
virtual AbstractGangWorker* install_worker(uint which); |
|
190 |
||
32360 | 191 |
// Debugging. |
192 |
const char* name() const { return _name; } |
|
193 |
||
194 |
// Printing |
|
195 |
void print_worker_threads_on(outputStream *st) const; |
|
196 |
void print_worker_threads() const { |
|
197 |
print_worker_threads_on(tty); |
|
198 |
} |
|
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
199 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
200 |
protected: |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
201 |
virtual AbstractGangWorker* allocate_worker(uint which) = 0; |
32360 | 202 |
}; |
203 |
||
204 |
// An class representing a gang of workers. |
|
205 |
class WorkGang: public AbstractWorkGang { |
|
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
206 |
// To get access to the GangTaskDispatcher instance. |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
207 |
friend class GangWorker; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
208 |
|
32360 | 209 |
// Never deleted. |
210 |
~WorkGang(); |
|
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
211 |
|
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
212 |
GangTaskDispatcher* const _dispatcher; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
213 |
GangTaskDispatcher* dispatcher() const { |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
214 |
return _dispatcher; |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
215 |
} |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
216 |
|
32360 | 217 |
public: |
218 |
WorkGang(const char* name, |
|
219 |
uint workers, |
|
220 |
bool are_GC_task_threads, |
|
221 |
bool are_ConcurrentGC_threads); |
|
222 |
||
38153
4f13f0b690c3
8155232: Augment Workgang to run task with a given number of threads
tschatzl
parents:
37225
diff
changeset
|
223 |
// Run a task using the current active number of workers, returns when the task is done. |
32360 | 224 |
virtual void run_task(AbstractGangTask* task); |
38153
4f13f0b690c3
8155232: Augment Workgang to run task with a given number of threads
tschatzl
parents:
37225
diff
changeset
|
225 |
// Run a task with the given number of workers, returns |
4f13f0b690c3
8155232: Augment Workgang to run task with a given number of threads
tschatzl
parents:
37225
diff
changeset
|
226 |
// when the task is done. The number of workers must be at most the number of |
39231
e6aa09b4f1b9
8157620: Guarantee in run_task(task, num_workers) fails
jmasa
parents:
38216
diff
changeset
|
227 |
// active workers. Additional workers may be created if an insufficient |
e6aa09b4f1b9
8157620: Guarantee in run_task(task, num_workers) fails
jmasa
parents:
38216
diff
changeset
|
228 |
// number currently exists. |
38153
4f13f0b690c3
8155232: Augment Workgang to run task with a given number of threads
tschatzl
parents:
37225
diff
changeset
|
229 |
void run_task(AbstractGangTask* task, uint num_workers); |
32360 | 230 |
|
231 |
protected: |
|
232 |
virtual AbstractGangWorker* allocate_worker(uint which); |
|
1 | 233 |
}; |
234 |
||
32360 | 235 |
// Several instances of this class run in parallel as workers for a gang. |
236 |
class AbstractGangWorker: public WorkerThread { |
|
1 | 237 |
public: |
32360 | 238 |
AbstractGangWorker(AbstractWorkGang* gang, uint id); |
1 | 239 |
|
240 |
// The only real method: run a task for the gang. |
|
241 |
virtual void run(); |
|
242 |
// Predicate for Thread |
|
243 |
virtual bool is_GC_task_thread() const; |
|
1374 | 244 |
virtual bool is_ConcurrentGC_thread() const; |
1 | 245 |
// Printing |
246 |
void print_on(outputStream* st) const; |
|
247 |
virtual void print() const { print_on(tty); } |
|
32360 | 248 |
|
1 | 249 |
protected: |
250 |
AbstractWorkGang* _gang; |
|
251 |
||
252 |
virtual void initialize(); |
|
32360 | 253 |
virtual void loop() = 0; |
254 |
||
255 |
AbstractWorkGang* gang() const { return _gang; } |
|
256 |
}; |
|
257 |
||
258 |
class GangWorker: public AbstractGangWorker { |
|
259 |
public: |
|
260 |
GangWorker(WorkGang* gang, uint id) : AbstractGangWorker(gang, id) {} |
|
261 |
||
262 |
protected: |
|
1 | 263 |
virtual void loop(); |
264 |
||
32360 | 265 |
private: |
32361
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
266 |
WorkData wait_for_task(); |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
267 |
void run_task(WorkData work); |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
268 |
void signal_task_done(); |
3de9a2e1e2d0
8087324: Use semaphores when starting and stopping GC task threads
stefank
parents:
32360
diff
changeset
|
269 |
|
32360 | 270 |
WorkGang* gang() const { return (WorkGang*)_gang; } |
1 | 271 |
}; |
272 |
||
273 |
// A class that acts as a synchronisation barrier. Workers enter |
|
274 |
// the barrier and must wait until all other workers have entered |
|
275 |
// before any of them may leave. |
|
276 |
||
277 |
class WorkGangBarrierSync : public StackObj { |
|
278 |
protected: |
|
279 |
Monitor _monitor; |
|
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
280 |
uint _n_workers; |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
281 |
uint _n_completed; |
1374 | 282 |
bool _should_reset; |
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
283 |
bool _aborted; |
1 | 284 |
|
1374 | 285 |
Monitor* monitor() { return &_monitor; } |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
286 |
uint n_workers() { return _n_workers; } |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
287 |
uint n_completed() { return _n_completed; } |
1374 | 288 |
bool should_reset() { return _should_reset; } |
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
289 |
bool aborted() { return _aborted; } |
1 | 290 |
|
1374 | 291 |
void zero_completed() { _n_completed = 0; } |
292 |
void inc_completed() { _n_completed++; } |
|
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
293 |
void set_aborted() { _aborted = true; } |
1374 | 294 |
void set_should_reset(bool v) { _should_reset = v; } |
1 | 295 |
|
296 |
public: |
|
297 |
WorkGangBarrierSync(); |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
298 |
WorkGangBarrierSync(uint n_workers, const char* name); |
1 | 299 |
|
300 |
// Set the number of workers that will use the barrier. |
|
301 |
// Must be called before any of the workers start running. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
302 |
void set_n_workers(uint n_workers); |
1 | 303 |
|
304 |
// Enter the barrier. A worker that enters the barrier will |
|
305 |
// not be allowed to leave until all other threads have |
|
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
306 |
// also entered the barrier or the barrier is aborted. |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
307 |
// Returns false if the barrier was aborted. |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
308 |
bool enter(); |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
309 |
|
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
310 |
// Aborts the barrier and wakes up any threads waiting for |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
311 |
// the barrier to complete. The barrier will remain in the |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
312 |
// aborted state until the next call to set_n_workers(). |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
313 |
void abort(); |
1 | 314 |
}; |
315 |
||
316 |
// A class to manage claiming of subtasks within a group of tasks. The |
|
317 |
// subtasks will be identified by integer indices, usually elements of an |
|
318 |
// enumeration type. |
|
319 |
||
13195 | 320 |
class SubTasksDone: public CHeapObj<mtInternal> { |
41279
5a7c83da4a2d
8165860: WorkGroup classes are missing volatile specifiers for lock-free code
eosterlund
parents:
41178
diff
changeset
|
321 |
volatile uint* _tasks; |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
322 |
uint _n_tasks; |
41279
5a7c83da4a2d
8165860: WorkGroup classes are missing volatile specifiers for lock-free code
eosterlund
parents:
41178
diff
changeset
|
323 |
volatile uint _threads_completed; |
1 | 324 |
#ifdef ASSERT |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
325 |
volatile uint _claimed; |
1 | 326 |
#endif |
327 |
||
328 |
// Set all tasks to unclaimed. |
|
329 |
void clear(); |
|
330 |
||
331 |
public: |
|
332 |
// Initializes "this" to a state in which there are "n" tasks to be |
|
333 |
// processed, none of the which are originally claimed. The number of |
|
334 |
// threads doing the tasks is initialized 1. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
335 |
SubTasksDone(uint n); |
1 | 336 |
|
337 |
// True iff the object is in a valid state. |
|
338 |
bool valid(); |
|
339 |
||
340 |
// Returns "false" if the task "t" is unclaimed, and ensures that task is |
|
341 |
// claimed. The task "t" is required to be within the range of "this". |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
342 |
bool is_task_claimed(uint t); |
1 | 343 |
|
344 |
// The calling thread asserts that it has attempted to claim all the |
|
345 |
// tasks that it will try to claim. Every thread in the parallel task |
|
346 |
// must execute this. (When the last thread does so, the task array is |
|
347 |
// cleared.) |
|
30869 | 348 |
// |
349 |
// n_threads - Number of threads executing the sub-tasks. |
|
350 |
void all_tasks_completed(uint n_threads); |
|
1 | 351 |
|
352 |
// Destructor. |
|
353 |
~SubTasksDone(); |
|
354 |
}; |
|
355 |
||
356 |
// As above, but for sequential tasks, i.e. instead of claiming |
|
357 |
// sub-tasks from a set (possibly an enumeration), claim sub-tasks |
|
358 |
// in sequential order. This is ideal for claiming dynamically |
|
359 |
// partitioned tasks (like striding in the parallel remembered |
|
360 |
// set scanning). Note that unlike the above class this is |
|
361 |
// a stack object - is there any reason for it not to be? |
|
362 |
||
363 |
class SequentialSubTasksDone : public StackObj { |
|
364 |
protected: |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
365 |
uint _n_tasks; // Total number of tasks available. |
41279
5a7c83da4a2d
8165860: WorkGroup classes are missing volatile specifiers for lock-free code
eosterlund
parents:
41178
diff
changeset
|
366 |
volatile uint _n_claimed; // Number of tasks claimed. |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
367 |
// _n_threads is used to determine when a sub task is done. |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
368 |
// See comments on SubTasksDone::_n_threads |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
369 |
uint _n_threads; // Total number of parallel threads. |
41279
5a7c83da4a2d
8165860: WorkGroup classes are missing volatile specifiers for lock-free code
eosterlund
parents:
41178
diff
changeset
|
370 |
volatile uint _n_completed; // Number of completed threads. |
1 | 371 |
|
372 |
void clear(); |
|
373 |
||
374 |
public: |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
375 |
SequentialSubTasksDone() { |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
376 |
clear(); |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
377 |
} |
1 | 378 |
~SequentialSubTasksDone() {} |
379 |
||
380 |
// True iff the object is in a valid state. |
|
381 |
bool valid(); |
|
382 |
||
383 |
// number of tasks |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
384 |
uint n_tasks() const { return _n_tasks; } |
1 | 385 |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
386 |
// Get/set the number of parallel threads doing the tasks to t. |
1 | 387 |
// Should be called before the task starts but it is safe |
388 |
// to call this once a task is running provided that all |
|
389 |
// threads agree on the number of threads. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
390 |
uint n_threads() { return _n_threads; } |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
391 |
void set_n_threads(uint t) { _n_threads = t; } |
1 | 392 |
|
393 |
// Set the number of tasks to be claimed to t. As above, |
|
394 |
// should be called before the tasks start but it is safe |
|
395 |
// to call this once a task is running provided all threads |
|
396 |
// agree on the number of tasks. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
397 |
void set_n_tasks(uint t) { _n_tasks = t; } |
1 | 398 |
|
399 |
// Returns false if the next task in the sequence is unclaimed, |
|
400 |
// and ensures that it is claimed. Will set t to be the index |
|
401 |
// of the claimed task in the sequence. Will return true if |
|
402 |
// the task cannot be claimed and there are none left to claim. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
403 |
bool is_task_claimed(uint& t); |
1 | 404 |
|
405 |
// The calling thread asserts that it has attempted to claim |
|
406 |
// all the tasks it possibly can in the sequence. Every thread |
|
407 |
// claiming tasks must promise call this. Returns true if this |
|
408 |
// is the last thread to complete so that the thread can perform |
|
409 |
// cleanup if necessary. |
|
410 |
bool all_tasks_completed(); |
|
411 |
}; |
|
1374 | 412 |
|
30764 | 413 |
#endif // SHARE_VM_GC_SHARED_WORKGROUP_HPP |