src/share/vm/utilities/workgroup.hpp

Mon, 20 Sep 2010 14:38:38 -0700

author
jmasa
date
Mon, 20 Sep 2010 14:38:38 -0700
changeset 2188
8b10f48633dc
parent 1907
c18cbe5936b8
child 2314
f95d63e2154a
permissions
-rw-r--r--

6984287: Regularize how GC parallel workers are specified.
Summary: Associate number of GC workers with the workgang as opposed to the task.
Reviewed-by: johnc, ysr

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

mercurial