author | stefank |
Mon, 25 May 2015 11:41:34 +0200 | |
changeset 30881 | 7a3899d7cea0 |
parent 30875 | f98008e14939 |
child 31030 | 811c2501a5a6 |
permissions | -rw-r--r-- |
1 | 1 |
/* |
30585 | 2 |
* Copyright (c) 2002, 2015, 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 |
|
30764 | 28 |
#include "gc/shared/taskqueue.hpp" |
14583
d70ee55535f4
8003935: Simplify the needed includes for using Thread::current()
stefank
parents:
13963
diff
changeset
|
29 |
#include "runtime/thread.inline.hpp" |
7397 | 30 |
|
8688
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
31 |
// Task class hierarchy: |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
32 |
// AbstractGangTask |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
33 |
// AbstractGangTaskWOopQueues |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
34 |
// |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
35 |
// Gang/Group class hierarchy: |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
36 |
// AbstractWorkGang |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
37 |
// WorkGang |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
38 |
// FlexibleWorkGang |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
39 |
// YieldingFlexibleWorkGang (defined in another file) |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
40 |
// |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
41 |
// Worker class hierarchy: |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
42 |
// GangWorker (subclass of WorkerThread) |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
43 |
// YieldingFlexibleGangWorker (defined in another file) |
493d12ccc6db
6668573: CMS: reference processing crash if ParallelCMSThreads > ParallelGCThreads
ysr
parents:
7397
diff
changeset
|
44 |
|
1 | 45 |
// Forward declarations of classes defined here |
46 |
||
47 |
class WorkGang; |
|
48 |
class GangWorker; |
|
49 |
class YieldingFlexibleGangWorker; |
|
50 |
class YieldingFlexibleGangTask; |
|
51 |
class WorkData; |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
52 |
class AbstractWorkGang; |
1 | 53 |
|
54 |
// An abstract task to be worked on by a gang. |
|
55 |
// 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
|
56 |
class AbstractGangTask VALUE_OBJ_CLASS_SPEC { |
1 | 57 |
public: |
58 |
// The abstract work method. |
|
59 |
// 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
|
60 |
virtual void work(uint worker_id) = 0; |
1 | 61 |
|
62 |
// Debugging accessor for the name. |
|
63 |
const char* name() const PRODUCT_RETURN_(return NULL;); |
|
64 |
int counter() { return _counter; } |
|
65 |
void set_counter(int value) { _counter = value; } |
|
66 |
int *address_of_counter() { return &_counter; } |
|
67 |
||
68 |
// RTTI |
|
69 |
NOT_PRODUCT(virtual bool is_YieldingFlexibleGang_task() const { |
|
70 |
return false; |
|
71 |
}) |
|
72 |
||
73 |
private: |
|
74 |
NOT_PRODUCT(const char* _name;) |
|
75 |
// ??? Should a task have a priority associated with it? |
|
76 |
// ??? Or can the run method adjust priority as needed? |
|
77 |
int _counter; |
|
78 |
||
79 |
protected: |
|
80 |
// Constructor and desctructor: only construct subclasses. |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
81 |
AbstractGangTask(const char* name) |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
82 |
{ |
1 | 83 |
NOT_PRODUCT(_name = name); |
84 |
_counter = 0; |
|
85 |
} |
|
14841
d069f5506f71
8004845: Catch incorrect usage of new and delete during compile time for value objects and stack objects
brutisso
parents:
14583
diff
changeset
|
86 |
~AbstractGangTask() { } |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
87 |
|
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
88 |
public: |
1 | 89 |
}; |
90 |
||
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
91 |
class AbstractGangTaskWOopQueues : public AbstractGangTask { |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
92 |
OopTaskQueueSet* _queues; |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
93 |
ParallelTaskTerminator _terminator; |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
94 |
public: |
30881
7a3899d7cea0
8080879: Remove FlexibleWorkGang::set_for_termination
stefank
parents:
30875
diff
changeset
|
95 |
AbstractGangTaskWOopQueues(const char* name, OopTaskQueueSet* queues, uint n_threads) : |
7a3899d7cea0
8080879: Remove FlexibleWorkGang::set_for_termination
stefank
parents:
30875
diff
changeset
|
96 |
AbstractGangTask(name), _queues(queues), _terminator(n_threads, _queues) {} |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
97 |
ParallelTaskTerminator* terminator() { return &_terminator; } |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
98 |
OopTaskQueueSet* queues() { return _queues; } |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
99 |
}; |
1 | 100 |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
101 |
|
1 | 102 |
// Class AbstractWorkGang: |
103 |
// An abstract class representing a gang of workers. |
|
104 |
// You subclass this to supply an implementation of run_task(). |
|
13195 | 105 |
class AbstractWorkGang: public CHeapObj<mtInternal> { |
1 | 106 |
// Here's the public interface to this class. |
107 |
public: |
|
108 |
// Constructor and destructor. |
|
1374 | 109 |
AbstractWorkGang(const char* name, bool are_GC_task_threads, |
110 |
bool are_ConcurrentGC_threads); |
|
1 | 111 |
~AbstractWorkGang(); |
112 |
// Run a task, returns when the task is done (or terminated). |
|
113 |
virtual void run_task(AbstractGangTask* task) = 0; |
|
114 |
// Stop and terminate all workers. |
|
115 |
virtual void stop(); |
|
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
116 |
// Return true if more workers should be applied to the task. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
117 |
virtual bool needs_more_workers() const { return true; } |
1 | 118 |
public: |
119 |
// Debugging. |
|
120 |
const char* name() const; |
|
121 |
protected: |
|
122 |
// Initialize only instance data. |
|
1374 | 123 |
const bool _are_GC_task_threads; |
124 |
const bool _are_ConcurrentGC_threads; |
|
1 | 125 |
// Printing support. |
126 |
const char* _name; |
|
127 |
// The monitor which protects these data, |
|
128 |
// and notifies of changes in it. |
|
129 |
Monitor* _monitor; |
|
130 |
// The count of the number of workers in the gang. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
131 |
uint _total_workers; |
1 | 132 |
// Whether the workers should terminate. |
133 |
bool _terminate; |
|
134 |
// The array of worker threads for this gang. |
|
135 |
// This is only needed for cleaning up. |
|
136 |
GangWorker** _gang_workers; |
|
137 |
// The task for this gang. |
|
138 |
AbstractGangTask* _task; |
|
139 |
// A sequence number for the current task. |
|
140 |
int _sequence_number; |
|
141 |
// The number of started workers. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
142 |
uint _started_workers; |
1 | 143 |
// The number of finished workers. |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
144 |
uint _finished_workers; |
1 | 145 |
public: |
146 |
// Accessors for fields |
|
147 |
Monitor* monitor() const { |
|
148 |
return _monitor; |
|
149 |
} |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
150 |
uint total_workers() const { |
1 | 151 |
return _total_workers; |
152 |
} |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
153 |
virtual uint active_workers() const { |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
154 |
return _total_workers; |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
155 |
} |
1 | 156 |
bool terminate() const { |
157 |
return _terminate; |
|
158 |
} |
|
159 |
GangWorker** gang_workers() const { |
|
160 |
return _gang_workers; |
|
161 |
} |
|
162 |
AbstractGangTask* task() const { |
|
163 |
return _task; |
|
164 |
} |
|
165 |
int sequence_number() const { |
|
166 |
return _sequence_number; |
|
167 |
} |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
168 |
uint started_workers() const { |
1 | 169 |
return _started_workers; |
170 |
} |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
171 |
uint finished_workers() const { |
1 | 172 |
return _finished_workers; |
173 |
} |
|
1374 | 174 |
bool are_GC_task_threads() const { |
175 |
return _are_GC_task_threads; |
|
176 |
} |
|
177 |
bool are_ConcurrentGC_threads() const { |
|
178 |
return _are_ConcurrentGC_threads; |
|
1 | 179 |
} |
180 |
// Predicates. |
|
181 |
bool is_idle() const { |
|
182 |
return (task() == NULL); |
|
183 |
} |
|
184 |
// Return the Ith gang worker. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
185 |
GangWorker* gang_worker(uint i) const; |
1 | 186 |
|
187 |
void threads_do(ThreadClosure* tc) const; |
|
188 |
||
189 |
// Printing |
|
190 |
void print_worker_threads_on(outputStream *st) const; |
|
191 |
void print_worker_threads() const { |
|
192 |
print_worker_threads_on(tty); |
|
193 |
} |
|
194 |
||
195 |
protected: |
|
196 |
friend class GangWorker; |
|
197 |
friend class YieldingFlexibleGangWorker; |
|
198 |
// Note activation and deactivation of workers. |
|
199 |
// These methods should only be called with the mutex held. |
|
200 |
void internal_worker_poll(WorkData* data) const; |
|
201 |
void internal_note_start(); |
|
202 |
void internal_note_finish(); |
|
203 |
}; |
|
204 |
||
205 |
class WorkData: public StackObj { |
|
206 |
// This would be a struct, but I want accessor methods. |
|
207 |
private: |
|
208 |
bool _terminate; |
|
209 |
AbstractGangTask* _task; |
|
210 |
int _sequence_number; |
|
211 |
public: |
|
212 |
// Constructor and destructor |
|
213 |
WorkData() { |
|
214 |
_terminate = false; |
|
215 |
_task = NULL; |
|
216 |
_sequence_number = 0; |
|
217 |
} |
|
218 |
~WorkData() { |
|
219 |
} |
|
220 |
// Accessors and modifiers |
|
221 |
bool terminate() const { return _terminate; } |
|
222 |
void set_terminate(bool value) { _terminate = value; } |
|
223 |
AbstractGangTask* task() const { return _task; } |
|
224 |
void set_task(AbstractGangTask* value) { _task = value; } |
|
225 |
int sequence_number() const { return _sequence_number; } |
|
226 |
void set_sequence_number(int value) { _sequence_number = value; } |
|
227 |
||
228 |
YieldingFlexibleGangTask* yf_task() const { |
|
229 |
return (YieldingFlexibleGangTask*)_task; |
|
230 |
} |
|
231 |
}; |
|
232 |
||
233 |
// Class WorkGang: |
|
234 |
class WorkGang: public AbstractWorkGang { |
|
235 |
public: |
|
236 |
// Constructor |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
237 |
WorkGang(const char* name, uint workers, |
1374 | 238 |
bool are_GC_task_threads, bool are_ConcurrentGC_threads); |
1 | 239 |
// Run a task, returns when the task is done (or terminated). |
240 |
virtual void run_task(AbstractGangTask* task); |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
241 |
void run_task(AbstractGangTask* task, uint no_of_parallel_workers); |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
242 |
// Allocate a worker and return a pointer to it. |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
243 |
virtual GangWorker* allocate_worker(uint which); |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
244 |
// Initialize workers in the gang. Return true if initialization |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
245 |
// succeeded. The type of the worker can be overridden in a derived |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
246 |
// class with the appropriate implementation of allocate_worker(). |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
247 |
bool initialize_workers(); |
1 | 248 |
}; |
249 |
||
250 |
// Class GangWorker: |
|
251 |
// Several instances of this class run in parallel as workers for a gang. |
|
252 |
class GangWorker: public WorkerThread { |
|
253 |
public: |
|
254 |
// Constructors and destructor. |
|
255 |
GangWorker(AbstractWorkGang* gang, uint id); |
|
256 |
||
257 |
// The only real method: run a task for the gang. |
|
258 |
virtual void run(); |
|
259 |
// Predicate for Thread |
|
260 |
virtual bool is_GC_task_thread() const; |
|
1374 | 261 |
virtual bool is_ConcurrentGC_thread() const; |
1 | 262 |
// Printing |
263 |
void print_on(outputStream* st) const; |
|
264 |
virtual void print() const { print_on(tty); } |
|
265 |
protected: |
|
266 |
AbstractWorkGang* _gang; |
|
267 |
||
268 |
virtual void initialize(); |
|
269 |
virtual void loop(); |
|
270 |
||
271 |
public: |
|
272 |
AbstractWorkGang* gang() const { return _gang; } |
|
273 |
}; |
|
274 |
||
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
275 |
// Dynamic number of worker threads |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
276 |
// |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
277 |
// This type of work gang is used to run different numbers of |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
278 |
// worker threads at different times. The |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
279 |
// number of workers run for a task is "_active_workers" |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
280 |
// instead of "_total_workers" in a WorkGang. The method |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
281 |
// "needs_more_workers()" returns true until "_active_workers" |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
282 |
// have been started and returns false afterwards. The |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
283 |
// implementation of "needs_more_workers()" in WorkGang always |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
284 |
// returns true so that all workers are started. The method |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
285 |
// "loop()" in GangWorker was modified to ask "needs_more_workers()" |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
286 |
// in its loop to decide if it should start working on a task. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
287 |
// A worker in "loop()" waits for notification on the WorkGang |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
288 |
// monitor and execution of each worker as it checks for work |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
289 |
// is serialized via the same monitor. The "needs_more_workers()" |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
290 |
// call is serialized and additionally the calculation for the |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
291 |
// "part" (effectively the worker id for executing the task) is |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
292 |
// serialized to give each worker a unique "part". Workers that |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
293 |
// are not needed for this tasks (i.e., "_active_workers" have |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
294 |
// been started before it, continue to wait for work. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
295 |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
296 |
class FlexibleWorkGang: public WorkGang { |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
297 |
// The currently active workers in this gang. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
298 |
// This is a number that is dynamically adjusted |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
299 |
// and checked in the run_task() method at each invocation. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
300 |
// As described above _active_workers determines the number |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
301 |
// of threads started on a task. It must also be used to |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
302 |
// determine completion. |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
303 |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
304 |
protected: |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
305 |
uint _active_workers; |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
306 |
public: |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
307 |
// Constructor and destructor. |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
308 |
FlexibleWorkGang(const char* name, uint workers, |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
309 |
bool are_GC_task_threads, |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
310 |
bool are_ConcurrentGC_threads) : |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
311 |
WorkGang(name, workers, are_GC_task_threads, are_ConcurrentGC_threads), |
30873
4e2d1bd16703
8080869: FlexibleWorkGang initializes _active_workers to more than _total_workers
stefank
parents:
30869
diff
changeset
|
312 |
_active_workers(UseDynamicNumberOfGCThreads ? 1U : workers) {} |
4e2d1bd16703
8080869: FlexibleWorkGang initializes _active_workers to more than _total_workers
stefank
parents:
30869
diff
changeset
|
313 |
|
4e2d1bd16703
8080869: FlexibleWorkGang initializes _active_workers to more than _total_workers
stefank
parents:
30869
diff
changeset
|
314 |
// Accessors for fields. |
30875 | 315 |
virtual uint active_workers() const { |
316 |
assert(_active_workers <= _total_workers, |
|
317 |
err_msg("_active_workers: %u > _total_workers: %u", _active_workers, _total_workers)); |
|
318 |
assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers, |
|
319 |
"Unless dynamic should use total workers"); |
|
320 |
return _active_workers; |
|
321 |
} |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
322 |
void set_active_workers(uint v) { |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
323 |
assert(v <= _total_workers, |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
324 |
"Trying to set more workers active than there are"); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
325 |
_active_workers = MIN2(v, _total_workers); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
326 |
assert(v != 0, "Trying to set active workers to 0"); |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
327 |
_active_workers = MAX2(1U, _active_workers); |
11174
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
328 |
assert(UseDynamicNumberOfGCThreads || _active_workers == _total_workers, |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
329 |
"Unless dynamic should use total workers"); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
330 |
} |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
331 |
virtual void run_task(AbstractGangTask* task); |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
332 |
virtual bool needs_more_workers() const { |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
333 |
return _started_workers < _active_workers; |
fccee5238e70
6593758: RFE: Enhance GC ergonomics to dynamically choose ParallelGCThreads
jmasa
parents:
10565
diff
changeset
|
334 |
} |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
335 |
}; |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
336 |
|
1 | 337 |
// A class that acts as a synchronisation barrier. Workers enter |
338 |
// the barrier and must wait until all other workers have entered |
|
339 |
// before any of them may leave. |
|
340 |
||
341 |
class WorkGangBarrierSync : public StackObj { |
|
342 |
protected: |
|
343 |
Monitor _monitor; |
|
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
344 |
uint _n_workers; |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
345 |
uint _n_completed; |
1374 | 346 |
bool _should_reset; |
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
347 |
bool _aborted; |
1 | 348 |
|
1374 | 349 |
Monitor* monitor() { return &_monitor; } |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
350 |
uint n_workers() { return _n_workers; } |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
351 |
uint n_completed() { return _n_completed; } |
1374 | 352 |
bool should_reset() { return _should_reset; } |
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
353 |
bool aborted() { return _aborted; } |
1 | 354 |
|
1374 | 355 |
void zero_completed() { _n_completed = 0; } |
356 |
void inc_completed() { _n_completed++; } |
|
24468
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
357 |
void set_aborted() { _aborted = true; } |
1374 | 358 |
void set_should_reset(bool v) { _should_reset = v; } |
1 | 359 |
|
360 |
public: |
|
361 |
WorkGangBarrierSync(); |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
362 |
WorkGangBarrierSync(uint n_workers, const char* name); |
1 | 363 |
|
364 |
// Set the number of workers that will use the barrier. |
|
365 |
// 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
|
366 |
void set_n_workers(uint n_workers); |
1 | 367 |
|
368 |
// Enter the barrier. A worker that enters the barrier will |
|
369 |
// 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
|
370 |
// also entered the barrier or the barrier is aborted. |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
371 |
// Returns false if the barrier was aborted. |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
372 |
bool enter(); |
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
373 |
|
cb71997b6484
8040803: G1: Concurrent mark hangs when mark stack overflows
pliden
parents:
17376
diff
changeset
|
374 |
// 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
|
375 |
// 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
|
376 |
// 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
|
377 |
void abort(); |
1 | 378 |
}; |
379 |
||
380 |
// A class to manage claiming of subtasks within a group of tasks. The |
|
381 |
// subtasks will be identified by integer indices, usually elements of an |
|
382 |
// enumeration type. |
|
383 |
||
13195 | 384 |
class SubTasksDone: public CHeapObj<mtInternal> { |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
385 |
uint* _tasks; |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
386 |
uint _n_tasks; |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
387 |
uint _threads_completed; |
1 | 388 |
#ifdef ASSERT |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
389 |
volatile uint _claimed; |
1 | 390 |
#endif |
391 |
||
392 |
// Set all tasks to unclaimed. |
|
393 |
void clear(); |
|
394 |
||
395 |
public: |
|
396 |
// Initializes "this" to a state in which there are "n" tasks to be |
|
397 |
// processed, none of the which are originally claimed. The number of |
|
398 |
// 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
|
399 |
SubTasksDone(uint n); |
1 | 400 |
|
401 |
// True iff the object is in a valid state. |
|
402 |
bool valid(); |
|
403 |
||
404 |
// Returns "false" if the task "t" is unclaimed, and ensures that task is |
|
405 |
// 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
|
406 |
bool is_task_claimed(uint t); |
1 | 407 |
|
408 |
// The calling thread asserts that it has attempted to claim all the |
|
409 |
// tasks that it will try to claim. Every thread in the parallel task |
|
410 |
// must execute this. (When the last thread does so, the task array is |
|
411 |
// cleared.) |
|
30869 | 412 |
// |
413 |
// n_threads - Number of threads executing the sub-tasks. |
|
414 |
void all_tasks_completed(uint n_threads); |
|
1 | 415 |
|
416 |
// Destructor. |
|
417 |
~SubTasksDone(); |
|
418 |
}; |
|
419 |
||
420 |
// As above, but for sequential tasks, i.e. instead of claiming |
|
421 |
// sub-tasks from a set (possibly an enumeration), claim sub-tasks |
|
422 |
// in sequential order. This is ideal for claiming dynamically |
|
423 |
// partitioned tasks (like striding in the parallel remembered |
|
424 |
// set scanning). Note that unlike the above class this is |
|
425 |
// a stack object - is there any reason for it not to be? |
|
426 |
||
427 |
class SequentialSubTasksDone : public StackObj { |
|
428 |
protected: |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
429 |
uint _n_tasks; // Total number of tasks available. |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
430 |
uint _n_claimed; // Number of tasks claimed. |
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
431 |
// _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
|
432 |
// See comments on SubTasksDone::_n_threads |
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
433 |
uint _n_threads; // Total number of parallel threads. |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
434 |
uint _n_completed; // Number of completed threads. |
1 | 435 |
|
436 |
void clear(); |
|
437 |
||
438 |
public: |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
439 |
SequentialSubTasksDone() { |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
440 |
clear(); |
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
441 |
} |
1 | 442 |
~SequentialSubTasksDone() {} |
443 |
||
444 |
// True iff the object is in a valid state. |
|
445 |
bool valid(); |
|
446 |
||
447 |
// number of tasks |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
448 |
uint n_tasks() const { return _n_tasks; } |
1 | 449 |
|
6759
67b1a69ef5aa
6984287: Regularize how GC parallel workers are specified.
jmasa
parents:
5547
diff
changeset
|
450 |
// Get/set the number of parallel threads doing the tasks to t. |
1 | 451 |
// Should be called before the task starts but it is safe |
452 |
// to call this once a task is running provided that all |
|
453 |
// 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
|
454 |
uint n_threads() { return _n_threads; } |
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
455 |
void set_n_threads(uint t) { _n_threads = t; } |
1 | 456 |
|
457 |
// Set the number of tasks to be claimed to t. As above, |
|
458 |
// should be called before the tasks start but it is safe |
|
459 |
// to call this once a task is running provided all threads |
|
460 |
// agree on the number of tasks. |
|
11396
917d8673b5ef
7121618: Change type of number of GC workers to unsigned int.
jmasa
parents:
11174
diff
changeset
|
461 |
void set_n_tasks(uint t) { _n_tasks = t; } |
1 | 462 |
|
463 |
// Returns false if the next task in the sequence is unclaimed, |
|
464 |
// and ensures that it is claimed. Will set t to be the index |
|
465 |
// of the claimed task in the sequence. Will return true if |
|
466 |
// 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
|
467 |
bool is_task_claimed(uint& t); |
1 | 468 |
|
469 |
// The calling thread asserts that it has attempted to claim |
|
470 |
// all the tasks it possibly can in the sequence. Every thread |
|
471 |
// claiming tasks must promise call this. Returns true if this |
|
472 |
// is the last thread to complete so that the thread can perform |
|
473 |
// cleanup if necessary. |
|
474 |
bool all_tasks_completed(); |
|
475 |
}; |
|
1374 | 476 |
|
477 |
// Represents a set of free small integer ids. |
|
17376
4ee999c3c007
8012902: remove use of global operator new - take 2
minqi
parents:
17031
diff
changeset
|
478 |
class FreeIdSet : public CHeapObj<mtInternal> { |
1374 | 479 |
enum { |
480 |
end_of_list = -1, |
|
481 |
claimed = -2 |
|
482 |
}; |
|
483 |
||
484 |
int _sz; |
|
485 |
Monitor* _mon; |
|
486 |
||
487 |
int* _ids; |
|
488 |
int _hd; |
|
489 |
int _waiters; |
|
490 |
int _claimed; |
|
491 |
||
492 |
static bool _safepoint; |
|
493 |
typedef FreeIdSet* FreeIdSetPtr; |
|
494 |
static const int NSets = 10; |
|
495 |
static FreeIdSetPtr _sets[NSets]; |
|
496 |
static bool _stat_init; |
|
497 |
int _index; |
|
498 |
||
499 |
public: |
|
500 |
FreeIdSet(int sz, Monitor* mon); |
|
501 |
~FreeIdSet(); |
|
502 |
||
503 |
static void set_safepoint(bool b); |
|
504 |
||
505 |
// Attempt to claim the given id permanently. Returns "true" iff |
|
506 |
// successful. |
|
507 |
bool claim_perm_id(int i); |
|
508 |
||
509 |
// Returns an unclaimed parallel id (waiting for one to be released if |
|
510 |
// necessary). Returns "-1" if a GC wakes up a wait for an id. |
|
511 |
int claim_par_id(); |
|
512 |
||
513 |
void release_par_id(int id); |
|
514 |
}; |
|
7397 | 515 |
|
30764 | 516 |
#endif // SHARE_VM_GC_SHARED_WORKGROUP_HPP |