src/share/vm/utilities/workgroup.cpp

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) 2001, 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 # include "incls/_precompiled.incl"
duke@435 26 # include "incls/_workgroup.cpp.incl"
duke@435 27
duke@435 28 // Definitions of WorkGang methods.
duke@435 29
duke@435 30 AbstractWorkGang::AbstractWorkGang(const char* name,
ysr@777 31 bool are_GC_task_threads,
ysr@777 32 bool are_ConcurrentGC_threads) :
duke@435 33 _name(name),
ysr@777 34 _are_GC_task_threads(are_GC_task_threads),
ysr@777 35 _are_ConcurrentGC_threads(are_ConcurrentGC_threads) {
ysr@777 36
ysr@777 37 assert(!(are_GC_task_threads && are_ConcurrentGC_threads),
ysr@777 38 "They cannot both be STW GC and Concurrent threads" );
ysr@777 39
duke@435 40 // Other initialization.
duke@435 41 _monitor = new Monitor(/* priority */ Mutex::leaf,
duke@435 42 /* name */ "WorkGroup monitor",
ysr@777 43 /* allow_vm_block */ are_GC_task_threads);
duke@435 44 assert(monitor() != NULL, "Failed to allocate monitor");
duke@435 45 _terminate = false;
duke@435 46 _task = NULL;
duke@435 47 _sequence_number = 0;
duke@435 48 _started_workers = 0;
duke@435 49 _finished_workers = 0;
duke@435 50 }
duke@435 51
duke@435 52 WorkGang::WorkGang(const char* name,
ysr@777 53 int workers,
ysr@777 54 bool are_GC_task_threads,
ysr@777 55 bool are_ConcurrentGC_threads) :
jmasa@2188 56 AbstractWorkGang(name, are_GC_task_threads, are_ConcurrentGC_threads) {
duke@435 57 // Save arguments.
duke@435 58 _total_workers = workers;
jmasa@2188 59 }
jmasa@2188 60
jmasa@2188 61 GangWorker* WorkGang::allocate_worker(int which) {
jmasa@2188 62 GangWorker* new_worker = new GangWorker(this, which);
jmasa@2188 63 return new_worker;
jmasa@2188 64 }
jmasa@2188 65
jmasa@2188 66 // The current implementation will exit if the allocation
jmasa@2188 67 // of any worker fails. Still, return a boolean so that
jmasa@2188 68 // a future implementation can possibly do a partial
jmasa@2188 69 // initialization of the workers and report such to the
jmasa@2188 70 // caller.
jmasa@2188 71 bool WorkGang::initialize_workers() {
ysr@777 72
duke@435 73 if (TraceWorkGang) {
jmasa@2188 74 tty->print_cr("Constructing work gang %s with %d threads",
jmasa@2188 75 name(),
jmasa@2188 76 total_workers());
duke@435 77 }
jmasa@2188 78 _gang_workers = NEW_C_HEAP_ARRAY(GangWorker*, total_workers());
ysr@777 79 if (gang_workers() == NULL) {
ysr@777 80 vm_exit_out_of_memory(0, "Cannot create GangWorker array.");
jmasa@2188 81 return false;
jmasa@2188 82 }
jmasa@2188 83 os::ThreadType worker_type;
jmasa@2188 84 if (are_ConcurrentGC_threads()) {
jmasa@2188 85 worker_type = os::cgc_thread;
jmasa@2188 86 } else {
jmasa@2188 87 worker_type = os::pgc_thread;
ysr@777 88 }
duke@435 89 for (int worker = 0; worker < total_workers(); worker += 1) {
jmasa@2188 90 GangWorker* new_worker = allocate_worker(worker);
duke@435 91 assert(new_worker != NULL, "Failed to allocate GangWorker");
duke@435 92 _gang_workers[worker] = new_worker;
jmasa@2188 93 if (new_worker == NULL || !os::create_thread(new_worker, worker_type)) {
duke@435 94 vm_exit_out_of_memory(0, "Cannot create worker GC thread. Out of system resources.");
jmasa@2188 95 return false;
jmasa@2188 96 }
duke@435 97 if (!DisableStartThread) {
duke@435 98 os::start_thread(new_worker);
duke@435 99 }
duke@435 100 }
jmasa@2188 101 return true;
duke@435 102 }
duke@435 103
duke@435 104 AbstractWorkGang::~AbstractWorkGang() {
duke@435 105 if (TraceWorkGang) {
duke@435 106 tty->print_cr("Destructing work gang %s", name());
duke@435 107 }
duke@435 108 stop(); // stop all the workers
duke@435 109 for (int worker = 0; worker < total_workers(); worker += 1) {
duke@435 110 delete gang_worker(worker);
duke@435 111 }
duke@435 112 delete gang_workers();
duke@435 113 delete monitor();
duke@435 114 }
duke@435 115
duke@435 116 GangWorker* AbstractWorkGang::gang_worker(int i) const {
duke@435 117 // Array index bounds checking.
duke@435 118 GangWorker* result = NULL;
duke@435 119 assert(gang_workers() != NULL, "No workers for indexing");
duke@435 120 assert(((i >= 0) && (i < total_workers())), "Worker index out of bounds");
duke@435 121 result = _gang_workers[i];
duke@435 122 assert(result != NULL, "Indexing to null worker");
duke@435 123 return result;
duke@435 124 }
duke@435 125
duke@435 126 void WorkGang::run_task(AbstractGangTask* task) {
duke@435 127 // This thread is executed by the VM thread which does not block
duke@435 128 // on ordinary MutexLocker's.
duke@435 129 MutexLockerEx ml(monitor(), Mutex::_no_safepoint_check_flag);
duke@435 130 if (TraceWorkGang) {
duke@435 131 tty->print_cr("Running work gang %s task %s", name(), task->name());
duke@435 132 }
duke@435 133 // Tell all the workers to run a task.
duke@435 134 assert(task != NULL, "Running a null task");
duke@435 135 // Initialize.
duke@435 136 _task = task;
duke@435 137 _sequence_number += 1;
duke@435 138 _started_workers = 0;
duke@435 139 _finished_workers = 0;
duke@435 140 // Tell the workers to get to work.
duke@435 141 monitor()->notify_all();
duke@435 142 // Wait for them to be finished
duke@435 143 while (finished_workers() < total_workers()) {
duke@435 144 if (TraceWorkGang) {
duke@435 145 tty->print_cr("Waiting in work gang %s: %d/%d finished sequence %d",
duke@435 146 name(), finished_workers(), total_workers(),
duke@435 147 _sequence_number);
duke@435 148 }
duke@435 149 monitor()->wait(/* no_safepoint_check */ true);
duke@435 150 }
duke@435 151 _task = NULL;
duke@435 152 if (TraceWorkGang) {
duke@435 153 tty->print_cr("/nFinished work gang %s: %d/%d sequence %d",
duke@435 154 name(), finished_workers(), total_workers(),
duke@435 155 _sequence_number);
duke@435 156 }
duke@435 157 }
duke@435 158
duke@435 159 void AbstractWorkGang::stop() {
duke@435 160 // Tell all workers to terminate, then wait for them to become inactive.
duke@435 161 MutexLockerEx ml(monitor(), Mutex::_no_safepoint_check_flag);
duke@435 162 if (TraceWorkGang) {
duke@435 163 tty->print_cr("Stopping work gang %s task %s", name(), task()->name());
duke@435 164 }
duke@435 165 _task = NULL;
duke@435 166 _terminate = true;
duke@435 167 monitor()->notify_all();
duke@435 168 while (finished_workers() < total_workers()) {
duke@435 169 if (TraceWorkGang) {
duke@435 170 tty->print_cr("Waiting in work gang %s: %d/%d finished",
duke@435 171 name(), finished_workers(), total_workers());
duke@435 172 }
duke@435 173 monitor()->wait(/* no_safepoint_check */ true);
duke@435 174 }
duke@435 175 }
duke@435 176
duke@435 177 void AbstractWorkGang::internal_worker_poll(WorkData* data) const {
duke@435 178 assert(monitor()->owned_by_self(), "worker_poll is an internal method");
duke@435 179 assert(data != NULL, "worker data is null");
duke@435 180 data->set_terminate(terminate());
duke@435 181 data->set_task(task());
duke@435 182 data->set_sequence_number(sequence_number());
duke@435 183 }
duke@435 184
duke@435 185 void AbstractWorkGang::internal_note_start() {
duke@435 186 assert(monitor()->owned_by_self(), "note_finish is an internal method");
duke@435 187 _started_workers += 1;
duke@435 188 }
duke@435 189
duke@435 190 void AbstractWorkGang::internal_note_finish() {
duke@435 191 assert(monitor()->owned_by_self(), "note_finish is an internal method");
duke@435 192 _finished_workers += 1;
duke@435 193 }
duke@435 194
duke@435 195 void AbstractWorkGang::print_worker_threads_on(outputStream* st) const {
duke@435 196 uint num_thr = total_workers();
duke@435 197 for (uint i = 0; i < num_thr; i++) {
duke@435 198 gang_worker(i)->print_on(st);
duke@435 199 st->cr();
duke@435 200 }
duke@435 201 }
duke@435 202
duke@435 203 void AbstractWorkGang::threads_do(ThreadClosure* tc) const {
duke@435 204 assert(tc != NULL, "Null ThreadClosure");
duke@435 205 uint num_thr = total_workers();
duke@435 206 for (uint i = 0; i < num_thr; i++) {
duke@435 207 tc->do_thread(gang_worker(i));
duke@435 208 }
duke@435 209 }
duke@435 210
duke@435 211 // GangWorker methods.
duke@435 212
duke@435 213 GangWorker::GangWorker(AbstractWorkGang* gang, uint id) {
duke@435 214 _gang = gang;
duke@435 215 set_id(id);
duke@435 216 set_name("Gang worker#%d (%s)", id, gang->name());
duke@435 217 }
duke@435 218
duke@435 219 void GangWorker::run() {
duke@435 220 initialize();
duke@435 221 loop();
duke@435 222 }
duke@435 223
duke@435 224 void GangWorker::initialize() {
duke@435 225 this->initialize_thread_local_storage();
duke@435 226 assert(_gang != NULL, "No gang to run in");
duke@435 227 os::set_priority(this, NearMaxPriority);
duke@435 228 if (TraceWorkGang) {
duke@435 229 tty->print_cr("Running gang worker for gang %s id %d",
duke@435 230 gang()->name(), id());
duke@435 231 }
duke@435 232 // The VM thread should not execute here because MutexLocker's are used
duke@435 233 // as (opposed to MutexLockerEx's).
duke@435 234 assert(!Thread::current()->is_VM_thread(), "VM thread should not be part"
duke@435 235 " of a work gang");
duke@435 236 }
duke@435 237
duke@435 238 void GangWorker::loop() {
duke@435 239 int previous_sequence_number = 0;
duke@435 240 Monitor* gang_monitor = gang()->monitor();
duke@435 241 for ( ; /* !terminate() */; ) {
duke@435 242 WorkData data;
duke@435 243 int part; // Initialized below.
duke@435 244 {
duke@435 245 // Grab the gang mutex.
duke@435 246 MutexLocker ml(gang_monitor);
duke@435 247 // Wait for something to do.
duke@435 248 // Polling outside the while { wait } avoids missed notifies
duke@435 249 // in the outer loop.
duke@435 250 gang()->internal_worker_poll(&data);
duke@435 251 if (TraceWorkGang) {
duke@435 252 tty->print("Polled outside for work in gang %s worker %d",
duke@435 253 gang()->name(), id());
duke@435 254 tty->print(" terminate: %s",
duke@435 255 data.terminate() ? "true" : "false");
duke@435 256 tty->print(" sequence: %d (prev: %d)",
duke@435 257 data.sequence_number(), previous_sequence_number);
duke@435 258 if (data.task() != NULL) {
duke@435 259 tty->print(" task: %s", data.task()->name());
duke@435 260 } else {
duke@435 261 tty->print(" task: NULL");
duke@435 262 }
duke@435 263 tty->cr();
duke@435 264 }
duke@435 265 for ( ; /* break or return */; ) {
duke@435 266 // Terminate if requested.
duke@435 267 if (data.terminate()) {
duke@435 268 gang()->internal_note_finish();
duke@435 269 gang_monitor->notify_all();
duke@435 270 return;
duke@435 271 }
duke@435 272 // Check for new work.
duke@435 273 if ((data.task() != NULL) &&
duke@435 274 (data.sequence_number() != previous_sequence_number)) {
duke@435 275 gang()->internal_note_start();
duke@435 276 gang_monitor->notify_all();
duke@435 277 part = gang()->started_workers() - 1;
duke@435 278 break;
duke@435 279 }
duke@435 280 // Nothing to do.
duke@435 281 gang_monitor->wait(/* no_safepoint_check */ true);
duke@435 282 gang()->internal_worker_poll(&data);
duke@435 283 if (TraceWorkGang) {
duke@435 284 tty->print("Polled inside for work in gang %s worker %d",
duke@435 285 gang()->name(), id());
duke@435 286 tty->print(" terminate: %s",
duke@435 287 data.terminate() ? "true" : "false");
duke@435 288 tty->print(" sequence: %d (prev: %d)",
duke@435 289 data.sequence_number(), previous_sequence_number);
duke@435 290 if (data.task() != NULL) {
duke@435 291 tty->print(" task: %s", data.task()->name());
duke@435 292 } else {
duke@435 293 tty->print(" task: NULL");
duke@435 294 }
duke@435 295 tty->cr();
duke@435 296 }
duke@435 297 }
duke@435 298 // Drop gang mutex.
duke@435 299 }
duke@435 300 if (TraceWorkGang) {
duke@435 301 tty->print("Work for work gang %s id %d task %s part %d",
duke@435 302 gang()->name(), id(), data.task()->name(), part);
duke@435 303 }
duke@435 304 assert(data.task() != NULL, "Got null task");
duke@435 305 data.task()->work(part);
duke@435 306 {
duke@435 307 if (TraceWorkGang) {
duke@435 308 tty->print("Finish for work gang %s id %d task %s part %d",
duke@435 309 gang()->name(), id(), data.task()->name(), part);
duke@435 310 }
duke@435 311 // Grab the gang mutex.
duke@435 312 MutexLocker ml(gang_monitor);
duke@435 313 gang()->internal_note_finish();
duke@435 314 // Tell the gang you are done.
duke@435 315 gang_monitor->notify_all();
duke@435 316 // Drop the gang mutex.
duke@435 317 }
duke@435 318 previous_sequence_number = data.sequence_number();
duke@435 319 }
duke@435 320 }
duke@435 321
duke@435 322 bool GangWorker::is_GC_task_thread() const {
ysr@777 323 return gang()->are_GC_task_threads();
ysr@777 324 }
ysr@777 325
ysr@777 326 bool GangWorker::is_ConcurrentGC_thread() const {
ysr@777 327 return gang()->are_ConcurrentGC_threads();
duke@435 328 }
duke@435 329
duke@435 330 void GangWorker::print_on(outputStream* st) const {
duke@435 331 st->print("\"%s\" ", name());
duke@435 332 Thread::print_on(st);
duke@435 333 st->cr();
duke@435 334 }
duke@435 335
duke@435 336 // Printing methods
duke@435 337
duke@435 338 const char* AbstractWorkGang::name() const {
duke@435 339 return _name;
duke@435 340 }
duke@435 341
duke@435 342 #ifndef PRODUCT
duke@435 343
duke@435 344 const char* AbstractGangTask::name() const {
duke@435 345 return _name;
duke@435 346 }
duke@435 347
duke@435 348 #endif /* PRODUCT */
duke@435 349
duke@435 350 // *** WorkGangBarrierSync
duke@435 351
duke@435 352 WorkGangBarrierSync::WorkGangBarrierSync()
duke@435 353 : _monitor(Mutex::safepoint, "work gang barrier sync", true),
ysr@777 354 _n_workers(0), _n_completed(0), _should_reset(false) {
duke@435 355 }
duke@435 356
duke@435 357 WorkGangBarrierSync::WorkGangBarrierSync(int n_workers, const char* name)
duke@435 358 : _monitor(Mutex::safepoint, name, true),
ysr@777 359 _n_workers(n_workers), _n_completed(0), _should_reset(false) {
duke@435 360 }
duke@435 361
duke@435 362 void WorkGangBarrierSync::set_n_workers(int n_workers) {
duke@435 363 _n_workers = n_workers;
duke@435 364 _n_completed = 0;
ysr@777 365 _should_reset = false;
duke@435 366 }
duke@435 367
duke@435 368 void WorkGangBarrierSync::enter() {
duke@435 369 MutexLockerEx x(monitor(), Mutex::_no_safepoint_check_flag);
ysr@777 370 if (should_reset()) {
ysr@777 371 // The should_reset() was set and we are the first worker to enter
ysr@777 372 // the sync barrier. We will zero the n_completed() count which
ysr@777 373 // effectively resets the barrier.
ysr@777 374 zero_completed();
ysr@777 375 set_should_reset(false);
ysr@777 376 }
duke@435 377 inc_completed();
duke@435 378 if (n_completed() == n_workers()) {
ysr@777 379 // At this point we would like to reset the barrier to be ready in
ysr@777 380 // case it is used again. However, we cannot set n_completed() to
ysr@777 381 // 0, even after the notify_all(), given that some other workers
ysr@777 382 // might still be waiting for n_completed() to become ==
ysr@777 383 // n_workers(). So, if we set n_completed() to 0, those workers
ysr@777 384 // will get stuck (as they will wake up, see that n_completed() !=
ysr@777 385 // n_workers() and go back to sleep). Instead, we raise the
ysr@777 386 // should_reset() flag and the barrier will be reset the first
ysr@777 387 // time a worker enters it again.
ysr@777 388 set_should_reset(true);
duke@435 389 monitor()->notify_all();
ysr@777 390 } else {
duke@435 391 while (n_completed() != n_workers()) {
duke@435 392 monitor()->wait(/* no_safepoint_check */ true);
duke@435 393 }
duke@435 394 }
duke@435 395 }
duke@435 396
duke@435 397 // SubTasksDone functions.
duke@435 398
duke@435 399 SubTasksDone::SubTasksDone(int n) :
duke@435 400 _n_tasks(n), _n_threads(1), _tasks(NULL) {
duke@435 401 _tasks = NEW_C_HEAP_ARRAY(jint, n);
duke@435 402 guarantee(_tasks != NULL, "alloc failure");
duke@435 403 clear();
duke@435 404 }
duke@435 405
duke@435 406 bool SubTasksDone::valid() {
duke@435 407 return _tasks != NULL;
duke@435 408 }
duke@435 409
jmasa@2188 410 void SubTasksDone::set_n_threads(int t) {
duke@435 411 #ifdef ASSERT
duke@435 412 assert(_claimed == 0 || _threads_completed == _n_threads,
duke@435 413 "should not be called while tasks are being processed!");
duke@435 414 #endif
duke@435 415 _n_threads = (t == 0 ? 1 : t);
duke@435 416 }
duke@435 417
duke@435 418 void SubTasksDone::clear() {
duke@435 419 for (int i = 0; i < _n_tasks; i++) {
duke@435 420 _tasks[i] = 0;
duke@435 421 }
duke@435 422 _threads_completed = 0;
duke@435 423 #ifdef ASSERT
duke@435 424 _claimed = 0;
duke@435 425 #endif
duke@435 426 }
duke@435 427
duke@435 428 bool SubTasksDone::is_task_claimed(int t) {
duke@435 429 assert(0 <= t && t < _n_tasks, "bad task id.");
duke@435 430 jint old = _tasks[t];
duke@435 431 if (old == 0) {
duke@435 432 old = Atomic::cmpxchg(1, &_tasks[t], 0);
duke@435 433 }
duke@435 434 assert(_tasks[t] == 1, "What else?");
duke@435 435 bool res = old != 0;
duke@435 436 #ifdef ASSERT
duke@435 437 if (!res) {
duke@435 438 assert(_claimed < _n_tasks, "Too many tasks claimed; missing clear?");
duke@435 439 Atomic::inc(&_claimed);
duke@435 440 }
duke@435 441 #endif
duke@435 442 return res;
duke@435 443 }
duke@435 444
duke@435 445 void SubTasksDone::all_tasks_completed() {
duke@435 446 jint observed = _threads_completed;
duke@435 447 jint old;
duke@435 448 do {
duke@435 449 old = observed;
duke@435 450 observed = Atomic::cmpxchg(old+1, &_threads_completed, old);
duke@435 451 } while (observed != old);
duke@435 452 // If this was the last thread checking in, clear the tasks.
duke@435 453 if (observed+1 == _n_threads) clear();
duke@435 454 }
duke@435 455
duke@435 456
duke@435 457 SubTasksDone::~SubTasksDone() {
duke@435 458 if (_tasks != NULL) FREE_C_HEAP_ARRAY(jint, _tasks);
duke@435 459 }
duke@435 460
duke@435 461 // *** SequentialSubTasksDone
duke@435 462
duke@435 463 void SequentialSubTasksDone::clear() {
duke@435 464 _n_tasks = _n_claimed = 0;
duke@435 465 _n_threads = _n_completed = 0;
duke@435 466 }
duke@435 467
duke@435 468 bool SequentialSubTasksDone::valid() {
duke@435 469 return _n_threads > 0;
duke@435 470 }
duke@435 471
duke@435 472 bool SequentialSubTasksDone::is_task_claimed(int& t) {
duke@435 473 jint* n_claimed_ptr = &_n_claimed;
duke@435 474 t = *n_claimed_ptr;
duke@435 475 while (t < _n_tasks) {
duke@435 476 jint res = Atomic::cmpxchg(t+1, n_claimed_ptr, t);
duke@435 477 if (res == t) {
duke@435 478 return false;
duke@435 479 }
duke@435 480 t = *n_claimed_ptr;
duke@435 481 }
duke@435 482 return true;
duke@435 483 }
duke@435 484
duke@435 485 bool SequentialSubTasksDone::all_tasks_completed() {
duke@435 486 jint* n_completed_ptr = &_n_completed;
duke@435 487 jint complete = *n_completed_ptr;
duke@435 488 while (true) {
duke@435 489 jint res = Atomic::cmpxchg(complete+1, n_completed_ptr, complete);
duke@435 490 if (res == complete) {
duke@435 491 break;
duke@435 492 }
duke@435 493 complete = res;
duke@435 494 }
duke@435 495 if (complete+1 == _n_threads) {
duke@435 496 clear();
duke@435 497 return true;
duke@435 498 }
duke@435 499 return false;
duke@435 500 }
ysr@777 501
ysr@777 502 bool FreeIdSet::_stat_init = false;
ysr@777 503 FreeIdSet* FreeIdSet::_sets[NSets];
ysr@777 504 bool FreeIdSet::_safepoint;
ysr@777 505
ysr@777 506 FreeIdSet::FreeIdSet(int sz, Monitor* mon) :
ysr@777 507 _sz(sz), _mon(mon), _hd(0), _waiters(0), _index(-1), _claimed(0)
ysr@777 508 {
ysr@777 509 _ids = new int[sz];
ysr@777 510 for (int i = 0; i < sz; i++) _ids[i] = i+1;
ysr@777 511 _ids[sz-1] = end_of_list; // end of list.
ysr@777 512 if (_stat_init) {
ysr@777 513 for (int j = 0; j < NSets; j++) _sets[j] = NULL;
ysr@777 514 _stat_init = true;
ysr@777 515 }
ysr@777 516 // Add to sets. (This should happen while the system is still single-threaded.)
ysr@777 517 for (int j = 0; j < NSets; j++) {
ysr@777 518 if (_sets[j] == NULL) {
ysr@777 519 _sets[j] = this;
ysr@777 520 _index = j;
ysr@777 521 break;
ysr@777 522 }
ysr@777 523 }
ysr@777 524 guarantee(_index != -1, "Too many FreeIdSets in use!");
ysr@777 525 }
ysr@777 526
ysr@777 527 FreeIdSet::~FreeIdSet() {
ysr@777 528 _sets[_index] = NULL;
ysr@777 529 }
ysr@777 530
ysr@777 531 void FreeIdSet::set_safepoint(bool b) {
ysr@777 532 _safepoint = b;
ysr@777 533 if (b) {
ysr@777 534 for (int j = 0; j < NSets; j++) {
ysr@777 535 if (_sets[j] != NULL && _sets[j]->_waiters > 0) {
ysr@777 536 Monitor* mon = _sets[j]->_mon;
ysr@777 537 mon->lock_without_safepoint_check();
ysr@777 538 mon->notify_all();
ysr@777 539 mon->unlock();
ysr@777 540 }
ysr@777 541 }
ysr@777 542 }
ysr@777 543 }
ysr@777 544
ysr@777 545 #define FID_STATS 0
ysr@777 546
ysr@777 547 int FreeIdSet::claim_par_id() {
ysr@777 548 #if FID_STATS
ysr@777 549 thread_t tslf = thr_self();
ysr@777 550 tty->print("claim_par_id[%d]: sz = %d, claimed = %d\n", tslf, _sz, _claimed);
ysr@777 551 #endif
ysr@777 552 MutexLockerEx x(_mon, Mutex::_no_safepoint_check_flag);
ysr@777 553 while (!_safepoint && _hd == end_of_list) {
ysr@777 554 _waiters++;
ysr@777 555 #if FID_STATS
ysr@777 556 if (_waiters > 5) {
ysr@777 557 tty->print("claim_par_id waiting[%d]: %d waiters, %d claimed.\n",
ysr@777 558 tslf, _waiters, _claimed);
ysr@777 559 }
ysr@777 560 #endif
ysr@777 561 _mon->wait(Mutex::_no_safepoint_check_flag);
ysr@777 562 _waiters--;
ysr@777 563 }
ysr@777 564 if (_hd == end_of_list) {
ysr@777 565 #if FID_STATS
ysr@777 566 tty->print("claim_par_id[%d]: returning EOL.\n", tslf);
ysr@777 567 #endif
ysr@777 568 return -1;
ysr@777 569 } else {
ysr@777 570 int res = _hd;
ysr@777 571 _hd = _ids[res];
ysr@777 572 _ids[res] = claimed; // For debugging.
ysr@777 573 _claimed++;
ysr@777 574 #if FID_STATS
ysr@777 575 tty->print("claim_par_id[%d]: returning %d, claimed = %d.\n",
ysr@777 576 tslf, res, _claimed);
ysr@777 577 #endif
ysr@777 578 return res;
ysr@777 579 }
ysr@777 580 }
ysr@777 581
ysr@777 582 bool FreeIdSet::claim_perm_id(int i) {
ysr@777 583 assert(0 <= i && i < _sz, "Out of range.");
ysr@777 584 MutexLockerEx x(_mon, Mutex::_no_safepoint_check_flag);
ysr@777 585 int prev = end_of_list;
ysr@777 586 int cur = _hd;
ysr@777 587 while (cur != end_of_list) {
ysr@777 588 if (cur == i) {
ysr@777 589 if (prev == end_of_list) {
ysr@777 590 _hd = _ids[cur];
ysr@777 591 } else {
ysr@777 592 _ids[prev] = _ids[cur];
ysr@777 593 }
ysr@777 594 _ids[cur] = claimed;
ysr@777 595 _claimed++;
ysr@777 596 return true;
ysr@777 597 } else {
ysr@777 598 prev = cur;
ysr@777 599 cur = _ids[cur];
ysr@777 600 }
ysr@777 601 }
ysr@777 602 return false;
ysr@777 603
ysr@777 604 }
ysr@777 605
ysr@777 606 void FreeIdSet::release_par_id(int id) {
ysr@777 607 MutexLockerEx x(_mon, Mutex::_no_safepoint_check_flag);
ysr@777 608 assert(_ids[id] == claimed, "Precondition.");
ysr@777 609 _ids[id] = _hd;
ysr@777 610 _hd = id;
ysr@777 611 _claimed--;
ysr@777 612 #if FID_STATS
ysr@777 613 tty->print("[%d] release_par_id(%d), waiters =%d, claimed = %d.\n",
ysr@777 614 thr_self(), id, _waiters, _claimed);
ysr@777 615 #endif
ysr@777 616 if (_waiters > 0)
ysr@777 617 // Notify all would be safer, but this is OK, right?
ysr@777 618 _mon->notify_all();
ysr@777 619 }

mercurial