annotate src/share/vm/utilities/workgroup.hpp @ 549:fe3d7c11b4b7

6700941: G1: allocation spec missing for some G1 classes Reviewed-by: tonyp
author apetrusenko
date Tue, 10 Feb 2009 18:39:09 +0300
parents 37f87013dfd8
children 0fbdb4381b99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2002-2007 Sun Microsystems, Inc. All Rights Reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
a61af66fc99e Initial load
duke
parents:
diff changeset
25 // Forward declarations of classes defined here
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 class WorkGang;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 class GangWorker;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 class YieldingFlexibleGangWorker;
a61af66fc99e Initial load
duke
parents:
diff changeset
30 class YieldingFlexibleGangTask;
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class WorkData;
a61af66fc99e Initial load
duke
parents:
diff changeset
32
a61af66fc99e Initial load
duke
parents:
diff changeset
33 // An abstract task to be worked on by a gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
34 // You subclass this to supply your own work() method
549
fe3d7c11b4b7 6700941: G1: allocation spec missing for some G1 classes
apetrusenko
parents: 342
diff changeset
35 class AbstractGangTask VALUE_OBJ_CLASS_SPEC {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // The abstract work method.
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // The argument tells you which member of the gang you are.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 virtual void work(int i) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
40
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // Debugging accessor for the name.
a61af66fc99e Initial load
duke
parents:
diff changeset
42 const char* name() const PRODUCT_RETURN_(return NULL;);
a61af66fc99e Initial load
duke
parents:
diff changeset
43 int counter() { return _counter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
44 void set_counter(int value) { _counter = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
45 int *address_of_counter() { return &_counter; }
a61af66fc99e Initial load
duke
parents:
diff changeset
46
a61af66fc99e Initial load
duke
parents:
diff changeset
47 // RTTI
a61af66fc99e Initial load
duke
parents:
diff changeset
48 NOT_PRODUCT(virtual bool is_YieldingFlexibleGang_task() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
49 return false;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 })
a61af66fc99e Initial load
duke
parents:
diff changeset
51
a61af66fc99e Initial load
duke
parents:
diff changeset
52 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
53 NOT_PRODUCT(const char* _name;)
a61af66fc99e Initial load
duke
parents:
diff changeset
54 // ??? Should a task have a priority associated with it?
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // ??? Or can the run method adjust priority as needed?
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int _counter;
a61af66fc99e Initial load
duke
parents:
diff changeset
57
a61af66fc99e Initial load
duke
parents:
diff changeset
58 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
59 // Constructor and desctructor: only construct subclasses.
a61af66fc99e Initial load
duke
parents:
diff changeset
60 AbstractGangTask(const char* name) {
a61af66fc99e Initial load
duke
parents:
diff changeset
61 NOT_PRODUCT(_name = name);
a61af66fc99e Initial load
duke
parents:
diff changeset
62 _counter = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64 virtual ~AbstractGangTask() { }
a61af66fc99e Initial load
duke
parents:
diff changeset
65 };
a61af66fc99e Initial load
duke
parents:
diff changeset
66
a61af66fc99e Initial load
duke
parents:
diff changeset
67
a61af66fc99e Initial load
duke
parents:
diff changeset
68 // Class AbstractWorkGang:
a61af66fc99e Initial load
duke
parents:
diff changeset
69 // An abstract class representing a gang of workers.
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // You subclass this to supply an implementation of run_task().
a61af66fc99e Initial load
duke
parents:
diff changeset
71 class AbstractWorkGang: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
72 // Here's the public interface to this class.
a61af66fc99e Initial load
duke
parents:
diff changeset
73 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
74 // Constructor and destructor.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
75 AbstractWorkGang(const char* name, bool are_GC_task_threads,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
76 bool are_ConcurrentGC_threads);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77 ~AbstractWorkGang();
a61af66fc99e Initial load
duke
parents:
diff changeset
78 // Run a task, returns when the task is done (or terminated).
a61af66fc99e Initial load
duke
parents:
diff changeset
79 virtual void run_task(AbstractGangTask* task) = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
80 // Stop and terminate all workers.
a61af66fc99e Initial load
duke
parents:
diff changeset
81 virtual void stop();
a61af66fc99e Initial load
duke
parents:
diff changeset
82 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
83 // Debugging.
a61af66fc99e Initial load
duke
parents:
diff changeset
84 const char* name() const;
a61af66fc99e Initial load
duke
parents:
diff changeset
85 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
86 // Initialize only instance data.
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
87 const bool _are_GC_task_threads;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
88 const bool _are_ConcurrentGC_threads;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89 // Printing support.
a61af66fc99e Initial load
duke
parents:
diff changeset
90 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 // The monitor which protects these data,
a61af66fc99e Initial load
duke
parents:
diff changeset
92 // and notifies of changes in it.
a61af66fc99e Initial load
duke
parents:
diff changeset
93 Monitor* _monitor;
a61af66fc99e Initial load
duke
parents:
diff changeset
94 // The count of the number of workers in the gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
95 int _total_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
96 // Whether the workers should terminate.
a61af66fc99e Initial load
duke
parents:
diff changeset
97 bool _terminate;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 // The array of worker threads for this gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
99 // This is only needed for cleaning up.
a61af66fc99e Initial load
duke
parents:
diff changeset
100 GangWorker** _gang_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
101 // The task for this gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
102 AbstractGangTask* _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
103 // A sequence number for the current task.
a61af66fc99e Initial load
duke
parents:
diff changeset
104 int _sequence_number;
a61af66fc99e Initial load
duke
parents:
diff changeset
105 // The number of started workers.
a61af66fc99e Initial load
duke
parents:
diff changeset
106 int _started_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
107 // The number of finished workers.
a61af66fc99e Initial load
duke
parents:
diff changeset
108 int _finished_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
109 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
110 // Accessors for fields
a61af66fc99e Initial load
duke
parents:
diff changeset
111 Monitor* monitor() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
112 return _monitor;
a61af66fc99e Initial load
duke
parents:
diff changeset
113 }
a61af66fc99e Initial load
duke
parents:
diff changeset
114 int total_workers() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
115 return _total_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
116 }
a61af66fc99e Initial load
duke
parents:
diff changeset
117 bool terminate() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
118 return _terminate;
a61af66fc99e Initial load
duke
parents:
diff changeset
119 }
a61af66fc99e Initial load
duke
parents:
diff changeset
120 GangWorker** gang_workers() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
121 return _gang_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
122 }
a61af66fc99e Initial load
duke
parents:
diff changeset
123 AbstractGangTask* task() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
124 return _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
125 }
a61af66fc99e Initial load
duke
parents:
diff changeset
126 int sequence_number() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
127 return _sequence_number;
a61af66fc99e Initial load
duke
parents:
diff changeset
128 }
a61af66fc99e Initial load
duke
parents:
diff changeset
129 int started_workers() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
130 return _started_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
131 }
a61af66fc99e Initial load
duke
parents:
diff changeset
132 int finished_workers() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
133 return _finished_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
134 }
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
135 bool are_GC_task_threads() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
136 return _are_GC_task_threads;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
137 }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
138 bool are_ConcurrentGC_threads() const {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
139 return _are_ConcurrentGC_threads;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
140 }
a61af66fc99e Initial load
duke
parents:
diff changeset
141 // Predicates.
a61af66fc99e Initial load
duke
parents:
diff changeset
142 bool is_idle() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
143 return (task() == NULL);
a61af66fc99e Initial load
duke
parents:
diff changeset
144 }
a61af66fc99e Initial load
duke
parents:
diff changeset
145 // Return the Ith gang worker.
a61af66fc99e Initial load
duke
parents:
diff changeset
146 GangWorker* gang_worker(int i) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 void threads_do(ThreadClosure* tc) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
149
a61af66fc99e Initial load
duke
parents:
diff changeset
150 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
151 void print_worker_threads_on(outputStream *st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
152 void print_worker_threads() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
153 print_worker_threads_on(tty);
a61af66fc99e Initial load
duke
parents:
diff changeset
154 }
a61af66fc99e Initial load
duke
parents:
diff changeset
155
a61af66fc99e Initial load
duke
parents:
diff changeset
156 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
157 friend class GangWorker;
a61af66fc99e Initial load
duke
parents:
diff changeset
158 friend class YieldingFlexibleGangWorker;
a61af66fc99e Initial load
duke
parents:
diff changeset
159 // Note activation and deactivation of workers.
a61af66fc99e Initial load
duke
parents:
diff changeset
160 // These methods should only be called with the mutex held.
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void internal_worker_poll(WorkData* data) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 void internal_note_start();
a61af66fc99e Initial load
duke
parents:
diff changeset
163 void internal_note_finish();
a61af66fc99e Initial load
duke
parents:
diff changeset
164 };
a61af66fc99e Initial load
duke
parents:
diff changeset
165
a61af66fc99e Initial load
duke
parents:
diff changeset
166 class WorkData: public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
167 // This would be a struct, but I want accessor methods.
a61af66fc99e Initial load
duke
parents:
diff changeset
168 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
169 bool _terminate;
a61af66fc99e Initial load
duke
parents:
diff changeset
170 AbstractGangTask* _task;
a61af66fc99e Initial load
duke
parents:
diff changeset
171 int _sequence_number;
a61af66fc99e Initial load
duke
parents:
diff changeset
172 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // Constructor and destructor
a61af66fc99e Initial load
duke
parents:
diff changeset
174 WorkData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 _terminate = false;
a61af66fc99e Initial load
duke
parents:
diff changeset
176 _task = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 _sequence_number = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
178 }
a61af66fc99e Initial load
duke
parents:
diff changeset
179 ~WorkData() {
a61af66fc99e Initial load
duke
parents:
diff changeset
180 }
a61af66fc99e Initial load
duke
parents:
diff changeset
181 // Accessors and modifiers
a61af66fc99e Initial load
duke
parents:
diff changeset
182 bool terminate() const { return _terminate; }
a61af66fc99e Initial load
duke
parents:
diff changeset
183 void set_terminate(bool value) { _terminate = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
184 AbstractGangTask* task() const { return _task; }
a61af66fc99e Initial load
duke
parents:
diff changeset
185 void set_task(AbstractGangTask* value) { _task = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
186 int sequence_number() const { return _sequence_number; }
a61af66fc99e Initial load
duke
parents:
diff changeset
187 void set_sequence_number(int value) { _sequence_number = value; }
a61af66fc99e Initial load
duke
parents:
diff changeset
188
a61af66fc99e Initial load
duke
parents:
diff changeset
189 YieldingFlexibleGangTask* yf_task() const {
a61af66fc99e Initial load
duke
parents:
diff changeset
190 return (YieldingFlexibleGangTask*)_task;
a61af66fc99e Initial load
duke
parents:
diff changeset
191 }
a61af66fc99e Initial load
duke
parents:
diff changeset
192 };
a61af66fc99e Initial load
duke
parents:
diff changeset
193
a61af66fc99e Initial load
duke
parents:
diff changeset
194 // Class WorkGang:
a61af66fc99e Initial load
duke
parents:
diff changeset
195 class WorkGang: public AbstractWorkGang {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
197 // Constructor
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
198 WorkGang(const char* name, int workers,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
199 bool are_GC_task_threads, bool are_ConcurrentGC_threads);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
200 // Run a task, returns when the task is done (or terminated).
a61af66fc99e Initial load
duke
parents:
diff changeset
201 virtual void run_task(AbstractGangTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
202 };
a61af66fc99e Initial load
duke
parents:
diff changeset
203
a61af66fc99e Initial load
duke
parents:
diff changeset
204 // Class GangWorker:
a61af66fc99e Initial load
duke
parents:
diff changeset
205 // Several instances of this class run in parallel as workers for a gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
206 class GangWorker: public WorkerThread {
a61af66fc99e Initial load
duke
parents:
diff changeset
207 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
208 // Constructors and destructor.
a61af66fc99e Initial load
duke
parents:
diff changeset
209 GangWorker(AbstractWorkGang* gang, uint id);
a61af66fc99e Initial load
duke
parents:
diff changeset
210
a61af66fc99e Initial load
duke
parents:
diff changeset
211 // The only real method: run a task for the gang.
a61af66fc99e Initial load
duke
parents:
diff changeset
212 virtual void run();
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // Predicate for Thread
a61af66fc99e Initial load
duke
parents:
diff changeset
214 virtual bool is_GC_task_thread() const;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
215 virtual bool is_ConcurrentGC_thread() const;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
216 // Printing
a61af66fc99e Initial load
duke
parents:
diff changeset
217 void print_on(outputStream* st) const;
a61af66fc99e Initial load
duke
parents:
diff changeset
218 virtual void print() const { print_on(tty); }
a61af66fc99e Initial load
duke
parents:
diff changeset
219 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
220 AbstractWorkGang* _gang;
a61af66fc99e Initial load
duke
parents:
diff changeset
221
a61af66fc99e Initial load
duke
parents:
diff changeset
222 virtual void initialize();
a61af66fc99e Initial load
duke
parents:
diff changeset
223 virtual void loop();
a61af66fc99e Initial load
duke
parents:
diff changeset
224
a61af66fc99e Initial load
duke
parents:
diff changeset
225 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
226 AbstractWorkGang* gang() const { return _gang; }
a61af66fc99e Initial load
duke
parents:
diff changeset
227 };
a61af66fc99e Initial load
duke
parents:
diff changeset
228
a61af66fc99e Initial load
duke
parents:
diff changeset
229 // A class that acts as a synchronisation barrier. Workers enter
a61af66fc99e Initial load
duke
parents:
diff changeset
230 // the barrier and must wait until all other workers have entered
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // before any of them may leave.
a61af66fc99e Initial load
duke
parents:
diff changeset
232
a61af66fc99e Initial load
duke
parents:
diff changeset
233 class WorkGangBarrierSync : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
234 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
235 Monitor _monitor;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 int _n_workers;
a61af66fc99e Initial load
duke
parents:
diff changeset
237 int _n_completed;
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
238 bool _should_reset;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
239
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
240 Monitor* monitor() { return &_monitor; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
241 int n_workers() { return _n_workers; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
242 int n_completed() { return _n_completed; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
243 bool should_reset() { return _should_reset; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
244
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
245 void zero_completed() { _n_completed = 0; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
246 void inc_completed() { _n_completed++; }
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
247
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
248 void set_should_reset(bool v) { _should_reset = v; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
251 WorkGangBarrierSync();
a61af66fc99e Initial load
duke
parents:
diff changeset
252 WorkGangBarrierSync(int n_workers, const char* name);
a61af66fc99e Initial load
duke
parents:
diff changeset
253
a61af66fc99e Initial load
duke
parents:
diff changeset
254 // Set the number of workers that will use the barrier.
a61af66fc99e Initial load
duke
parents:
diff changeset
255 // Must be called before any of the workers start running.
a61af66fc99e Initial load
duke
parents:
diff changeset
256 void set_n_workers(int n_workers);
a61af66fc99e Initial load
duke
parents:
diff changeset
257
a61af66fc99e Initial load
duke
parents:
diff changeset
258 // Enter the barrier. A worker that enters the barrier will
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // not be allowed to leave until all other threads have
a61af66fc99e Initial load
duke
parents:
diff changeset
260 // also entered the barrier.
a61af66fc99e Initial load
duke
parents:
diff changeset
261 void enter();
a61af66fc99e Initial load
duke
parents:
diff changeset
262 };
a61af66fc99e Initial load
duke
parents:
diff changeset
263
a61af66fc99e Initial load
duke
parents:
diff changeset
264 // A class to manage claiming of subtasks within a group of tasks. The
a61af66fc99e Initial load
duke
parents:
diff changeset
265 // subtasks will be identified by integer indices, usually elements of an
a61af66fc99e Initial load
duke
parents:
diff changeset
266 // enumeration type.
a61af66fc99e Initial load
duke
parents:
diff changeset
267
a61af66fc99e Initial load
duke
parents:
diff changeset
268 class SubTasksDone: public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
269 jint* _tasks;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 int _n_tasks;
a61af66fc99e Initial load
duke
parents:
diff changeset
271 int _n_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
272 jint _threads_completed;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 #ifdef ASSERT
a61af66fc99e Initial load
duke
parents:
diff changeset
274 jint _claimed;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 #endif
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // Set all tasks to unclaimed.
a61af66fc99e Initial load
duke
parents:
diff changeset
278 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
279
a61af66fc99e Initial load
duke
parents:
diff changeset
280 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
281 // Initializes "this" to a state in which there are "n" tasks to be
a61af66fc99e Initial load
duke
parents:
diff changeset
282 // processed, none of the which are originally claimed. The number of
a61af66fc99e Initial load
duke
parents:
diff changeset
283 // threads doing the tasks is initialized 1.
a61af66fc99e Initial load
duke
parents:
diff changeset
284 SubTasksDone(int n);
a61af66fc99e Initial load
duke
parents:
diff changeset
285
a61af66fc99e Initial load
duke
parents:
diff changeset
286 // True iff the object is in a valid state.
a61af66fc99e Initial load
duke
parents:
diff changeset
287 bool valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
288
a61af66fc99e Initial load
duke
parents:
diff changeset
289 // Set the number of parallel threads doing the tasks to "t". Can only
a61af66fc99e Initial load
duke
parents:
diff changeset
290 // be called before tasks start or after they are complete.
a61af66fc99e Initial load
duke
parents:
diff changeset
291 void set_par_threads(int t);
a61af66fc99e Initial load
duke
parents:
diff changeset
292
a61af66fc99e Initial load
duke
parents:
diff changeset
293 // Returns "false" if the task "t" is unclaimed, and ensures that task is
a61af66fc99e Initial load
duke
parents:
diff changeset
294 // claimed. The task "t" is required to be within the range of "this".
a61af66fc99e Initial load
duke
parents:
diff changeset
295 bool is_task_claimed(int t);
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 // The calling thread asserts that it has attempted to claim all the
a61af66fc99e Initial load
duke
parents:
diff changeset
298 // tasks that it will try to claim. Every thread in the parallel task
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // must execute this. (When the last thread does so, the task array is
a61af66fc99e Initial load
duke
parents:
diff changeset
300 // cleared.)
a61af66fc99e Initial load
duke
parents:
diff changeset
301 void all_tasks_completed();
a61af66fc99e Initial load
duke
parents:
diff changeset
302
a61af66fc99e Initial load
duke
parents:
diff changeset
303 // Destructor.
a61af66fc99e Initial load
duke
parents:
diff changeset
304 ~SubTasksDone();
a61af66fc99e Initial load
duke
parents:
diff changeset
305 };
a61af66fc99e Initial load
duke
parents:
diff changeset
306
a61af66fc99e Initial load
duke
parents:
diff changeset
307 // As above, but for sequential tasks, i.e. instead of claiming
a61af66fc99e Initial load
duke
parents:
diff changeset
308 // sub-tasks from a set (possibly an enumeration), claim sub-tasks
a61af66fc99e Initial load
duke
parents:
diff changeset
309 // in sequential order. This is ideal for claiming dynamically
a61af66fc99e Initial load
duke
parents:
diff changeset
310 // partitioned tasks (like striding in the parallel remembered
a61af66fc99e Initial load
duke
parents:
diff changeset
311 // set scanning). Note that unlike the above class this is
a61af66fc99e Initial load
duke
parents:
diff changeset
312 // a stack object - is there any reason for it not to be?
a61af66fc99e Initial load
duke
parents:
diff changeset
313
a61af66fc99e Initial load
duke
parents:
diff changeset
314 class SequentialSubTasksDone : public StackObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
315 protected:
a61af66fc99e Initial load
duke
parents:
diff changeset
316 jint _n_tasks; // Total number of tasks available.
a61af66fc99e Initial load
duke
parents:
diff changeset
317 jint _n_claimed; // Number of tasks claimed.
a61af66fc99e Initial load
duke
parents:
diff changeset
318 jint _n_threads; // Total number of parallel threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
319 jint _n_completed; // Number of completed threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 void clear();
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
324 SequentialSubTasksDone() { clear(); }
a61af66fc99e Initial load
duke
parents:
diff changeset
325 ~SequentialSubTasksDone() {}
a61af66fc99e Initial load
duke
parents:
diff changeset
326
a61af66fc99e Initial load
duke
parents:
diff changeset
327 // True iff the object is in a valid state.
a61af66fc99e Initial load
duke
parents:
diff changeset
328 bool valid();
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 // number of tasks
a61af66fc99e Initial load
duke
parents:
diff changeset
331 jint n_tasks() const { return _n_tasks; }
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 // Set the number of parallel threads doing the tasks to t.
a61af66fc99e Initial load
duke
parents:
diff changeset
334 // Should be called before the task starts but it is safe
a61af66fc99e Initial load
duke
parents:
diff changeset
335 // to call this once a task is running provided that all
a61af66fc99e Initial load
duke
parents:
diff changeset
336 // threads agree on the number of threads.
a61af66fc99e Initial load
duke
parents:
diff changeset
337 void set_par_threads(int t) { _n_threads = t; }
a61af66fc99e Initial load
duke
parents:
diff changeset
338
a61af66fc99e Initial load
duke
parents:
diff changeset
339 // Set the number of tasks to be claimed to t. As above,
a61af66fc99e Initial load
duke
parents:
diff changeset
340 // should be called before the tasks start but it is safe
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // to call this once a task is running provided all threads
a61af66fc99e Initial load
duke
parents:
diff changeset
342 // agree on the number of tasks.
a61af66fc99e Initial load
duke
parents:
diff changeset
343 void set_n_tasks(int t) { _n_tasks = t; }
a61af66fc99e Initial load
duke
parents:
diff changeset
344
a61af66fc99e Initial load
duke
parents:
diff changeset
345 // Returns false if the next task in the sequence is unclaimed,
a61af66fc99e Initial load
duke
parents:
diff changeset
346 // and ensures that it is claimed. Will set t to be the index
a61af66fc99e Initial load
duke
parents:
diff changeset
347 // of the claimed task in the sequence. Will return true if
a61af66fc99e Initial load
duke
parents:
diff changeset
348 // the task cannot be claimed and there are none left to claim.
a61af66fc99e Initial load
duke
parents:
diff changeset
349 bool is_task_claimed(int& t);
a61af66fc99e Initial load
duke
parents:
diff changeset
350
a61af66fc99e Initial load
duke
parents:
diff changeset
351 // The calling thread asserts that it has attempted to claim
a61af66fc99e Initial load
duke
parents:
diff changeset
352 // all the tasks it possibly can in the sequence. Every thread
a61af66fc99e Initial load
duke
parents:
diff changeset
353 // claiming tasks must promise call this. Returns true if this
a61af66fc99e Initial load
duke
parents:
diff changeset
354 // is the last thread to complete so that the thread can perform
a61af66fc99e Initial load
duke
parents:
diff changeset
355 // cleanup if necessary.
a61af66fc99e Initial load
duke
parents:
diff changeset
356 bool all_tasks_completed();
a61af66fc99e Initial load
duke
parents:
diff changeset
357 };
342
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
358
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
359 // Represents a set of free small integer ids.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
360 class FreeIdSet {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
361 enum {
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
362 end_of_list = -1,
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
363 claimed = -2
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
364 };
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
365
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
366 int _sz;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
367 Monitor* _mon;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
368
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
369 int* _ids;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
370 int _hd;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
371 int _waiters;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
372 int _claimed;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
373
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
374 static bool _safepoint;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
375 typedef FreeIdSet* FreeIdSetPtr;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
376 static const int NSets = 10;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
377 static FreeIdSetPtr _sets[NSets];
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
378 static bool _stat_init;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
379 int _index;
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
380
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
381 public:
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
382 FreeIdSet(int sz, Monitor* mon);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
383 ~FreeIdSet();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
384
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
385 static void set_safepoint(bool b);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
386
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
387 // Attempt to claim the given id permanently. Returns "true" iff
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
388 // successful.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
389 bool claim_perm_id(int i);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
390
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
391 // Returns an unclaimed parallel id (waiting for one to be released if
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
392 // necessary). Returns "-1" if a GC wakes up a wait for an id.
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
393 int claim_par_id();
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
394
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
395 void release_par_id(int id);
37f87013dfd8 6711316: Open source the Garbage-First garbage collector
ysr
parents: 0
diff changeset
396 };