src/share/vm/utilities/taskqueue.hpp

Tue, 24 Jul 2018 13:22:11 +0800

author
aoqi
date
Tue, 24 Jul 2018 13:22:11 +0800
changeset 9137
dc1769738300
parent 8860
43b19021a5a9
child 9138
b56ab8e56604
permissions
-rw-r--r--

#7048 added Loongson release info to hs_err crash files

aoqi@0 1 /*
shshahma@8611 2 * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 *
aoqi@0 5 * This code is free software; you can redistribute it and/or modify it
aoqi@0 6 * under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 * published by the Free Software Foundation.
aoqi@0 8 *
aoqi@0 9 * This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 * version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 * accompanied this code).
aoqi@0 14 *
aoqi@0 15 * You should have received a copy of the GNU General Public License version
aoqi@0 16 * 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 *
aoqi@0 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 * or visit www.oracle.com if you need additional information or have any
aoqi@0 21 * questions.
aoqi@0 22 *
aoqi@0 23 */
aoqi@0 24
aoqi@0 25 #ifndef SHARE_VM_UTILITIES_TASKQUEUE_HPP
aoqi@0 26 #define SHARE_VM_UTILITIES_TASKQUEUE_HPP
aoqi@0 27
aoqi@0 28 #include "memory/allocation.hpp"
aoqi@0 29 #include "memory/allocation.inline.hpp"
aoqi@0 30 #include "runtime/mutex.hpp"
goetz@6911 31 #include "runtime/orderAccess.inline.hpp"
aoqi@0 32 #include "utilities/stack.hpp"
aoqi@0 33
aoqi@0 34 // Simple TaskQueue stats that are collected by default in debug builds.
aoqi@0 35
aoqi@0 36 #if !defined(TASKQUEUE_STATS) && defined(ASSERT)
aoqi@0 37 #define TASKQUEUE_STATS 1
aoqi@0 38 #elif !defined(TASKQUEUE_STATS)
aoqi@0 39 #define TASKQUEUE_STATS 0
aoqi@0 40 #endif
aoqi@0 41
aoqi@0 42 #if TASKQUEUE_STATS
aoqi@0 43 #define TASKQUEUE_STATS_ONLY(code) code
aoqi@0 44 #else
aoqi@0 45 #define TASKQUEUE_STATS_ONLY(code)
aoqi@0 46 #endif // TASKQUEUE_STATS
aoqi@0 47
aoqi@0 48 #if TASKQUEUE_STATS
aoqi@0 49 class TaskQueueStats {
aoqi@0 50 public:
aoqi@0 51 enum StatId {
aoqi@0 52 push, // number of taskqueue pushes
aoqi@0 53 pop, // number of taskqueue pops
aoqi@0 54 pop_slow, // subset of taskqueue pops that were done slow-path
aoqi@0 55 steal_attempt, // number of taskqueue steal attempts
aoqi@0 56 steal, // number of taskqueue steals
aoqi@0 57 overflow, // number of overflow pushes
aoqi@0 58 overflow_max_len, // max length of overflow stack
aoqi@0 59 last_stat_id
aoqi@0 60 };
aoqi@0 61
aoqi@0 62 public:
aoqi@0 63 inline TaskQueueStats() { reset(); }
aoqi@0 64
aoqi@0 65 inline void record_push() { ++_stats[push]; }
aoqi@0 66 inline void record_pop() { ++_stats[pop]; }
aoqi@0 67 inline void record_pop_slow() { record_pop(); ++_stats[pop_slow]; }
aoqi@0 68 inline void record_steal(bool success);
aoqi@0 69 inline void record_overflow(size_t new_length);
aoqi@0 70
aoqi@0 71 TaskQueueStats & operator +=(const TaskQueueStats & addend);
aoqi@0 72
aoqi@0 73 inline size_t get(StatId id) const { return _stats[id]; }
aoqi@0 74 inline const size_t* get() const { return _stats; }
aoqi@0 75
aoqi@0 76 inline void reset();
aoqi@0 77
aoqi@0 78 // Print the specified line of the header (does not include a line separator).
aoqi@0 79 static void print_header(unsigned int line, outputStream* const stream = tty,
aoqi@0 80 unsigned int width = 10);
aoqi@0 81 // Print the statistics (does not include a line separator).
aoqi@0 82 void print(outputStream* const stream = tty, unsigned int width = 10) const;
aoqi@0 83
aoqi@0 84 DEBUG_ONLY(void verify() const;)
aoqi@0 85
aoqi@0 86 private:
aoqi@0 87 size_t _stats[last_stat_id];
aoqi@0 88 static const char * const _names[last_stat_id];
aoqi@0 89 };
aoqi@0 90
aoqi@0 91 void TaskQueueStats::record_steal(bool success) {
aoqi@0 92 ++_stats[steal_attempt];
aoqi@0 93 if (success) ++_stats[steal];
aoqi@0 94 }
aoqi@0 95
aoqi@0 96 void TaskQueueStats::record_overflow(size_t new_len) {
aoqi@0 97 ++_stats[overflow];
aoqi@0 98 if (new_len > _stats[overflow_max_len]) _stats[overflow_max_len] = new_len;
aoqi@0 99 }
aoqi@0 100
aoqi@0 101 void TaskQueueStats::reset() {
aoqi@0 102 memset(_stats, 0, sizeof(_stats));
aoqi@0 103 }
aoqi@0 104 #endif // TASKQUEUE_STATS
aoqi@0 105
aoqi@0 106 // TaskQueueSuper collects functionality common to all GenericTaskQueue instances.
aoqi@0 107
aoqi@0 108 template <unsigned int N, MEMFLAGS F>
aoqi@0 109 class TaskQueueSuper: public CHeapObj<F> {
aoqi@0 110 protected:
aoqi@0 111 // Internal type for indexing the queue; also used for the tag.
aoqi@0 112 typedef NOT_LP64(uint16_t) LP64_ONLY(uint32_t) idx_t;
aoqi@0 113
fujie@415 114 #ifdef MIPS64
fujie@415 115 private:
fujie@415 116 #endif
aoqi@0 117 // The first free element after the last one pushed (mod N).
aoqi@0 118 volatile uint _bottom;
aoqi@0 119
fujie@415 120 #ifdef MIPS64
fujie@415 121 protected:
fujie@415 122 inline uint get_bottom() const {
fujie@415 123 return OrderAccess::load_acquire((volatile juint*)&_bottom);
fujie@415 124 }
fujie@415 125
fujie@415 126 inline void set_bottom(uint new_bottom) {
fujie@415 127 OrderAccess::release_store(&_bottom, new_bottom);
fujie@415 128 }
fujie@415 129 #endif
fujie@415 130
aoqi@0 131 enum { MOD_N_MASK = N - 1 };
aoqi@0 132
aoqi@0 133 class Age {
aoqi@0 134 public:
aoqi@0 135 Age(size_t data = 0) { _data = data; }
aoqi@0 136 Age(const Age& age) { _data = age._data; }
aoqi@0 137 Age(idx_t top, idx_t tag) { _fields._top = top; _fields._tag = tag; }
aoqi@0 138
fujie@415 139 #ifndef MIPS64
aoqi@0 140 Age get() const volatile { return _data; }
aoqi@0 141 void set(Age age) volatile { _data = age._data; }
aoqi@8860 142
aoqi@0 143 idx_t top() const volatile { return _fields._top; }
aoqi@0 144 idx_t tag() const volatile { return _fields._tag; }
fujie@415 145 #else
aoqi@8860 146 Age get() const volatile {
fujie@415 147 size_t res = OrderAccess::load_ptr_acquire((volatile intptr_t*) &_data);
fujie@415 148 return *(Age*)(&res);
fujie@415 149 }
aoqi@8860 150 void set(Age age) volatile { OrderAccess::release_store_ptr((volatile intptr_t*) &_data, *(size_t*)(&age._data)); }
fujie@415 151
fujie@415 152 idx_t top() const volatile { return OrderAccess::load_acquire((volatile idx_t*) &(_fields._top)); }
fujie@415 153 idx_t tag() const volatile { return OrderAccess::load_acquire((volatile idx_t*) &(_fields._tag)); }
fujie@415 154 #endif
aoqi@0 155
aoqi@0 156 // Increment top; if it wraps, increment tag also.
aoqi@0 157 void increment() {
aoqi@0 158 _fields._top = increment_index(_fields._top);
aoqi@0 159 if (_fields._top == 0) ++_fields._tag;
aoqi@0 160 }
aoqi@0 161
aoqi@0 162 Age cmpxchg(const Age new_age, const Age old_age) volatile {
aoqi@0 163 return (size_t) Atomic::cmpxchg_ptr((intptr_t)new_age._data,
aoqi@0 164 (volatile intptr_t *)&_data,
aoqi@0 165 (intptr_t)old_age._data);
aoqi@0 166 }
aoqi@0 167
aoqi@0 168 bool operator ==(const Age& other) const { return _data == other._data; }
aoqi@0 169
aoqi@0 170 private:
aoqi@0 171 struct fields {
aoqi@0 172 idx_t _top;
aoqi@0 173 idx_t _tag;
aoqi@0 174 };
aoqi@0 175 union {
aoqi@0 176 size_t _data;
aoqi@0 177 fields _fields;
aoqi@0 178 };
aoqi@0 179 };
aoqi@0 180
aoqi@0 181 volatile Age _age;
aoqi@0 182
aoqi@0 183 // These both operate mod N.
aoqi@0 184 static uint increment_index(uint ind) {
aoqi@0 185 return (ind + 1) & MOD_N_MASK;
aoqi@0 186 }
aoqi@0 187 static uint decrement_index(uint ind) {
aoqi@0 188 return (ind - 1) & MOD_N_MASK;
aoqi@0 189 }
aoqi@0 190
aoqi@0 191 // Returns a number in the range [0..N). If the result is "N-1", it should be
aoqi@0 192 // interpreted as 0.
aoqi@0 193 uint dirty_size(uint bot, uint top) const {
aoqi@0 194 return (bot - top) & MOD_N_MASK;
aoqi@0 195 }
aoqi@0 196
aoqi@0 197 // Returns the size corresponding to the given "bot" and "top".
aoqi@0 198 uint size(uint bot, uint top) const {
aoqi@0 199 uint sz = dirty_size(bot, top);
aoqi@0 200 // Has the queue "wrapped", so that bottom is less than top? There's a
aoqi@0 201 // complicated special case here. A pair of threads could perform pop_local
aoqi@0 202 // and pop_global operations concurrently, starting from a state in which
aoqi@0 203 // _bottom == _top+1. The pop_local could succeed in decrementing _bottom,
aoqi@0 204 // and the pop_global in incrementing _top (in which case the pop_global
aoqi@0 205 // will be awarded the contested queue element.) The resulting state must
aoqi@0 206 // be interpreted as an empty queue. (We only need to worry about one such
aoqi@0 207 // event: only the queue owner performs pop_local's, and several concurrent
aoqi@0 208 // threads attempting to perform the pop_global will all perform the same
aoqi@0 209 // CAS, and only one can succeed.) Any stealing thread that reads after
aoqi@0 210 // either the increment or decrement will see an empty queue, and will not
aoqi@0 211 // join the competitors. The "sz == -1 || sz == N-1" state will not be
aoqi@0 212 // modified by concurrent queues, so the owner thread can reset the state to
aoqi@0 213 // _bottom == top so subsequent pushes will be performed normally.
aoqi@0 214 return (sz == N - 1) ? 0 : sz;
aoqi@0 215 }
aoqi@0 216
aoqi@0 217 public:
aoqi@0 218 TaskQueueSuper() : _bottom(0), _age() {}
aoqi@0 219
aoqi@0 220 // Return true if the TaskQueue contains/does not contain any tasks.
aoqi@8860 221 bool peek() const {
fujie@415 222 #ifdef MIPS64
aoqi@8860 223 return get_bottom() != _age.top();
fujie@415 224 #else
aoqi@8860 225 return _bottom != _age.top();
fujie@415 226 #endif
fujie@415 227 }
aoqi@0 228 bool is_empty() const { return size() == 0; }
aoqi@0 229
aoqi@0 230 // Return an estimate of the number of elements in the queue.
aoqi@0 231 // The "careful" version admits the possibility of pop_local/pop_global
aoqi@0 232 // races.
aoqi@0 233 uint size() const {
fujie@415 234 #ifdef MIPS64
fujie@415 235 return size(get_bottom(), _age.top());
fujie@415 236 #else
aoqi@0 237 return size(_bottom, _age.top());
fujie@415 238 #endif
aoqi@0 239 }
aoqi@0 240
aoqi@0 241 uint dirty_size() const {
fujie@415 242 #ifdef MIPS64
fujie@415 243 return dirty_size(get_bottom(), _age.top());
fujie@415 244 #else
aoqi@0 245 return dirty_size(_bottom, _age.top());
fujie@415 246 #endif
aoqi@0 247 }
aoqi@0 248
aoqi@0 249 void set_empty() {
fujie@415 250 #ifdef MIPS64
fujie@415 251 set_bottom(0);
fujie@415 252 #else
aoqi@0 253 _bottom = 0;
fujie@415 254 #endif
aoqi@0 255 _age.set(0);
aoqi@0 256 }
aoqi@0 257
aoqi@0 258 // Maximum number of elements allowed in the queue. This is two less
aoqi@0 259 // than the actual queue size, for somewhat complicated reasons.
aoqi@0 260 uint max_elems() const { return N - 2; }
aoqi@0 261
aoqi@0 262 // Total size of queue.
aoqi@0 263 static const uint total_size() { return N; }
aoqi@0 264
aoqi@0 265 TASKQUEUE_STATS_ONLY(TaskQueueStats stats;)
aoqi@0 266 };
aoqi@0 267
aoqi@0 268 //
aoqi@0 269 // GenericTaskQueue implements an ABP, Aurora-Blumofe-Plaxton, double-
aoqi@0 270 // ended-queue (deque), intended for use in work stealing. Queue operations
aoqi@0 271 // are non-blocking.
aoqi@0 272 //
aoqi@0 273 // A queue owner thread performs push() and pop_local() operations on one end
aoqi@0 274 // of the queue, while other threads may steal work using the pop_global()
aoqi@0 275 // method.
aoqi@0 276 //
aoqi@0 277 // The main difference to the original algorithm is that this
aoqi@0 278 // implementation allows wrap-around at the end of its allocated
aoqi@0 279 // storage, which is an array.
aoqi@0 280 //
aoqi@0 281 // The original paper is:
aoqi@0 282 //
aoqi@0 283 // Arora, N. S., Blumofe, R. D., and Plaxton, C. G.
aoqi@0 284 // Thread scheduling for multiprogrammed multiprocessors.
aoqi@0 285 // Theory of Computing Systems 34, 2 (2001), 115-144.
aoqi@0 286 //
aoqi@0 287 // The following paper provides an correctness proof and an
aoqi@0 288 // implementation for weakly ordered memory models including (pseudo-)
aoqi@0 289 // code containing memory barriers for a Chase-Lev deque. Chase-Lev is
aoqi@0 290 // similar to ABP, with the main difference that it allows resizing of the
aoqi@0 291 // underlying storage:
aoqi@0 292 //
aoqi@0 293 // Le, N. M., Pop, A., Cohen A., and Nardell, F. Z.
aoqi@0 294 // Correct and efficient work-stealing for weak memory models
aoqi@0 295 // Proceedings of the 18th ACM SIGPLAN symposium on Principles and
aoqi@0 296 // practice of parallel programming (PPoPP 2013), 69-80
aoqi@0 297 //
aoqi@0 298
aoqi@0 299 template <class E, MEMFLAGS F, unsigned int N = TASKQUEUE_SIZE>
aoqi@0 300 class GenericTaskQueue: public TaskQueueSuper<N, F> {
aoqi@0 301 ArrayAllocator<E, F> _array_allocator;
aoqi@0 302 protected:
aoqi@0 303 typedef typename TaskQueueSuper<N, F>::Age Age;
aoqi@0 304 typedef typename TaskQueueSuper<N, F>::idx_t idx_t;
aoqi@0 305
fujie@415 306 #ifndef MIPS64
aoqi@0 307 using TaskQueueSuper<N, F>::_bottom;
fujie@415 308 #endif
aoqi@0 309 using TaskQueueSuper<N, F>::_age;
aoqi@0 310 using TaskQueueSuper<N, F>::increment_index;
aoqi@0 311 using TaskQueueSuper<N, F>::decrement_index;
aoqi@0 312 using TaskQueueSuper<N, F>::dirty_size;
aoqi@0 313
aoqi@0 314 public:
aoqi@0 315 using TaskQueueSuper<N, F>::max_elems;
aoqi@0 316 using TaskQueueSuper<N, F>::size;
aoqi@0 317
aoqi@0 318 #if TASKQUEUE_STATS
aoqi@0 319 using TaskQueueSuper<N, F>::stats;
aoqi@0 320 #endif
aoqi@0 321
aoqi@0 322 private:
aoqi@0 323 // Slow paths for push, pop_local. (pop_global has no fast path.)
aoqi@0 324 bool push_slow(E t, uint dirty_n_elems);
aoqi@0 325 bool pop_local_slow(uint localBot, Age oldAge);
aoqi@0 326
aoqi@0 327 public:
aoqi@0 328 typedef E element_type;
aoqi@0 329
aoqi@0 330 // Initializes the queue to empty.
aoqi@0 331 GenericTaskQueue();
aoqi@0 332
aoqi@0 333 void initialize();
aoqi@0 334
aoqi@0 335 // Push the task "t" on the queue. Returns "false" iff the queue is full.
aoqi@0 336 inline bool push(E t);
aoqi@0 337
aoqi@0 338 // Attempts to claim a task from the "local" end of the queue (the most
aoqi@0 339 // recently pushed). If successful, returns true and sets t to the task;
aoqi@0 340 // otherwise, returns false (the queue is empty).
aoqi@0 341 inline bool pop_local(volatile E& t);
aoqi@0 342
aoqi@0 343 // Like pop_local(), but uses the "global" end of the queue (the least
aoqi@0 344 // recently pushed).
aoqi@0 345 bool pop_global(volatile E& t);
aoqi@0 346
aoqi@0 347 // Delete any resource associated with the queue.
aoqi@0 348 ~GenericTaskQueue();
aoqi@0 349
aoqi@0 350 // apply the closure to all elements in the task queue
aoqi@0 351 void oops_do(OopClosure* f);
aoqi@0 352
aoqi@0 353 private:
aoqi@0 354 // Element array.
aoqi@0 355 volatile E* _elems;
aoqi@0 356 };
aoqi@0 357
aoqi@0 358 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 359 GenericTaskQueue<E, F, N>::GenericTaskQueue() {
aoqi@0 360 assert(sizeof(Age) == sizeof(size_t), "Depends on this.");
aoqi@0 361 }
aoqi@0 362
aoqi@0 363 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 364 void GenericTaskQueue<E, F, N>::initialize() {
aoqi@0 365 _elems = _array_allocator.allocate(N);
aoqi@0 366 }
aoqi@0 367
aoqi@0 368 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 369 void GenericTaskQueue<E, F, N>::oops_do(OopClosure* f) {
aoqi@0 370 // tty->print_cr("START OopTaskQueue::oops_do");
aoqi@0 371 uint iters = size();
fujie@415 372 #ifdef MIPS64
fujie@415 373 uint index = this->get_bottom();
fujie@415 374 #else
aoqi@0 375 uint index = _bottom;
fujie@415 376 #endif
aoqi@0 377 for (uint i = 0; i < iters; ++i) {
aoqi@0 378 index = decrement_index(index);
aoqi@0 379 // tty->print_cr(" doing entry %d," INTPTR_T " -> " INTPTR_T,
aoqi@0 380 // index, &_elems[index], _elems[index]);
aoqi@0 381 E* t = (E*)&_elems[index]; // cast away volatility
aoqi@0 382 oop* p = (oop*)t;
aoqi@0 383 assert((*t)->is_oop_or_null(), "Not an oop or null");
aoqi@0 384 f->do_oop(p);
aoqi@0 385 }
aoqi@0 386 // tty->print_cr("END OopTaskQueue::oops_do");
aoqi@0 387 }
aoqi@0 388
aoqi@0 389 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 390 bool GenericTaskQueue<E, F, N>::push_slow(E t, uint dirty_n_elems) {
aoqi@0 391 if (dirty_n_elems == N - 1) {
aoqi@0 392 // Actually means 0, so do the push.
fujie@415 393 #ifdef MIPS64
fujie@415 394 uint localBot = this->get_bottom();
fujie@415 395 #else
aoqi@0 396 uint localBot = _bottom;
fujie@415 397 #endif
aoqi@0 398 // g++ complains if the volatile result of the assignment is
aoqi@0 399 // unused, so we cast the volatile away. We cannot cast directly
aoqi@0 400 // to void, because gcc treats that as not using the result of the
aoqi@0 401 // assignment. However, casting to E& means that we trigger an
aoqi@0 402 // unused-value warning. So, we cast the E& to void.
aoqi@0 403 (void)const_cast<E&>(_elems[localBot] = t);
fujie@415 404 #ifdef MIPS64
fujie@415 405 this->set_bottom(increment_index(localBot));
fujie@415 406 #else
aoqi@0 407 OrderAccess::release_store(&_bottom, increment_index(localBot));
fujie@415 408 #endif
aoqi@0 409 TASKQUEUE_STATS_ONLY(stats.record_push());
aoqi@0 410 return true;
aoqi@0 411 }
aoqi@0 412 return false;
aoqi@0 413 }
aoqi@0 414
aoqi@0 415 // pop_local_slow() is done by the owning thread and is trying to
aoqi@0 416 // get the last task in the queue. It will compete with pop_global()
aoqi@0 417 // that will be used by other threads. The tag age is incremented
aoqi@0 418 // whenever the queue goes empty which it will do here if this thread
aoqi@0 419 // gets the last task or in pop_global() if the queue wraps (top == 0
aoqi@0 420 // and pop_global() succeeds, see pop_global()).
aoqi@0 421 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 422 bool GenericTaskQueue<E, F, N>::pop_local_slow(uint localBot, Age oldAge) {
aoqi@0 423 // This queue was observed to contain exactly one element; either this
aoqi@0 424 // thread will claim it, or a competing "pop_global". In either case,
aoqi@0 425 // the queue will be logically empty afterwards. Create a new Age value
aoqi@0 426 // that represents the empty queue for the given value of "_bottom". (We
aoqi@0 427 // must also increment "tag" because of the case where "bottom == 1",
aoqi@0 428 // "top == 0". A pop_global could read the queue element in that case,
aoqi@0 429 // then have the owner thread do a pop followed by another push. Without
aoqi@0 430 // the incrementing of "tag", the pop_global's CAS could succeed,
aoqi@0 431 // allowing it to believe it has claimed the stale element.)
aoqi@0 432 Age newAge((idx_t)localBot, oldAge.tag() + 1);
aoqi@0 433 // Perhaps a competing pop_global has already incremented "top", in which
aoqi@0 434 // case it wins the element.
aoqi@0 435 if (localBot == oldAge.top()) {
aoqi@0 436 // No competing pop_global has yet incremented "top"; we'll try to
aoqi@0 437 // install new_age, thus claiming the element.
aoqi@0 438 Age tempAge = _age.cmpxchg(newAge, oldAge);
aoqi@0 439 if (tempAge == oldAge) {
aoqi@0 440 // We win.
aoqi@0 441 assert(dirty_size(localBot, _age.top()) != N - 1, "sanity");
aoqi@0 442 TASKQUEUE_STATS_ONLY(stats.record_pop_slow());
aoqi@0 443 return true;
aoqi@0 444 }
aoqi@0 445 }
aoqi@0 446 // We lose; a completing pop_global gets the element. But the queue is empty
aoqi@0 447 // and top is greater than bottom. Fix this representation of the empty queue
aoqi@0 448 // to become the canonical one.
aoqi@0 449 _age.set(newAge);
aoqi@0 450 assert(dirty_size(localBot, _age.top()) != N - 1, "sanity");
aoqi@0 451 return false;
aoqi@0 452 }
aoqi@0 453
aoqi@0 454 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 455 bool GenericTaskQueue<E, F, N>::pop_global(volatile E& t) {
aoqi@0 456 Age oldAge = _age.get();
aoqi@0 457 // Architectures with weak memory model require a barrier here
aoqi@0 458 // to guarantee that bottom is not older than age,
aoqi@0 459 // which is crucial for the correctness of the algorithm.
aoqi@0 460 #if !(defined SPARC || defined IA32 || defined AMD64)
aoqi@0 461 OrderAccess::fence();
aoqi@0 462 #endif
fujie@415 463 #ifdef MIPS64
fujie@415 464 uint localBot = this->get_bottom();
fujie@415 465 #else
aoqi@0 466 uint localBot = OrderAccess::load_acquire((volatile juint*)&_bottom);
fujie@415 467 #endif
aoqi@0 468 uint n_elems = size(localBot, oldAge.top());
aoqi@0 469 if (n_elems == 0) {
aoqi@0 470 return false;
aoqi@0 471 }
aoqi@0 472
aoqi@0 473 // g++ complains if the volatile result of the assignment is
aoqi@0 474 // unused, so we cast the volatile away. We cannot cast directly
aoqi@0 475 // to void, because gcc treats that as not using the result of the
aoqi@0 476 // assignment. However, casting to E& means that we trigger an
aoqi@0 477 // unused-value warning. So, we cast the E& to void.
aoqi@0 478 (void) const_cast<E&>(t = _elems[oldAge.top()]);
aoqi@0 479 Age newAge(oldAge);
aoqi@0 480 newAge.increment();
aoqi@0 481 Age resAge = _age.cmpxchg(newAge, oldAge);
aoqi@0 482
aoqi@0 483 // Note that using "_bottom" here might fail, since a pop_local might
aoqi@0 484 // have decremented it.
aoqi@0 485 assert(dirty_size(localBot, newAge.top()) != N - 1, "sanity");
aoqi@0 486 return resAge == oldAge;
aoqi@0 487 }
aoqi@0 488
aoqi@0 489 template<class E, MEMFLAGS F, unsigned int N>
aoqi@0 490 GenericTaskQueue<E, F, N>::~GenericTaskQueue() {
aoqi@0 491 FREE_C_HEAP_ARRAY(E, _elems, F);
aoqi@0 492 }
aoqi@0 493
aoqi@0 494 // OverflowTaskQueue is a TaskQueue that also includes an overflow stack for
aoqi@0 495 // elements that do not fit in the TaskQueue.
aoqi@0 496 //
aoqi@0 497 // This class hides two methods from super classes:
aoqi@0 498 //
aoqi@0 499 // push() - push onto the task queue or, if that fails, onto the overflow stack
aoqi@0 500 // is_empty() - return true if both the TaskQueue and overflow stack are empty
aoqi@0 501 //
aoqi@0 502 // Note that size() is not hidden--it returns the number of elements in the
aoqi@0 503 // TaskQueue, and does not include the size of the overflow stack. This
aoqi@0 504 // simplifies replacement of GenericTaskQueues with OverflowTaskQueues.
aoqi@0 505 template<class E, MEMFLAGS F, unsigned int N = TASKQUEUE_SIZE>
aoqi@0 506 class OverflowTaskQueue: public GenericTaskQueue<E, F, N>
aoqi@0 507 {
aoqi@0 508 public:
aoqi@0 509 typedef Stack<E, F> overflow_t;
aoqi@0 510 typedef GenericTaskQueue<E, F, N> taskqueue_t;
aoqi@0 511
aoqi@0 512 TASKQUEUE_STATS_ONLY(using taskqueue_t::stats;)
aoqi@0 513
aoqi@0 514 // Push task t onto the queue or onto the overflow stack. Return true.
aoqi@0 515 inline bool push(E t);
aoqi@0 516
shshahma@8611 517 // Try to push task t onto the queue only. Returns true if successful, false otherwise.
shshahma@8611 518 inline bool try_push_to_taskqueue(E t);
shshahma@8611 519
aoqi@0 520 // Attempt to pop from the overflow stack; return true if anything was popped.
aoqi@0 521 inline bool pop_overflow(E& t);
aoqi@0 522
aoqi@0 523 inline overflow_t* overflow_stack() { return &_overflow_stack; }
aoqi@0 524
aoqi@0 525 inline bool taskqueue_empty() const { return taskqueue_t::is_empty(); }
aoqi@0 526 inline bool overflow_empty() const { return _overflow_stack.is_empty(); }
aoqi@0 527 inline bool is_empty() const {
aoqi@0 528 return taskqueue_empty() && overflow_empty();
aoqi@0 529 }
aoqi@0 530
aoqi@0 531 private:
aoqi@0 532 overflow_t _overflow_stack;
aoqi@0 533 };
aoqi@0 534
aoqi@0 535 template <class E, MEMFLAGS F, unsigned int N>
aoqi@0 536 bool OverflowTaskQueue<E, F, N>::push(E t)
aoqi@0 537 {
aoqi@0 538 if (!taskqueue_t::push(t)) {
aoqi@0 539 overflow_stack()->push(t);
aoqi@0 540 TASKQUEUE_STATS_ONLY(stats.record_overflow(overflow_stack()->size()));
aoqi@0 541 }
aoqi@0 542 return true;
aoqi@0 543 }
aoqi@0 544
aoqi@0 545 template <class E, MEMFLAGS F, unsigned int N>
aoqi@0 546 bool OverflowTaskQueue<E, F, N>::pop_overflow(E& t)
aoqi@0 547 {
aoqi@0 548 if (overflow_empty()) return false;
aoqi@0 549 t = overflow_stack()->pop();
aoqi@0 550 return true;
aoqi@0 551 }
aoqi@0 552
shshahma@8611 553 template <class E, MEMFLAGS F, unsigned int N>
shshahma@8611 554 bool OverflowTaskQueue<E, F, N>::try_push_to_taskqueue(E t) {
shshahma@8611 555 return taskqueue_t::push(t);
shshahma@8611 556 }
aoqi@0 557 class TaskQueueSetSuper {
aoqi@0 558 protected:
aoqi@0 559 static int randomParkAndMiller(int* seed0);
aoqi@0 560 public:
aoqi@0 561 // Returns "true" if some TaskQueue in the set contains a task.
aoqi@0 562 virtual bool peek() = 0;
aoqi@0 563 };
aoqi@0 564
aoqi@0 565 template <MEMFLAGS F> class TaskQueueSetSuperImpl: public CHeapObj<F>, public TaskQueueSetSuper {
aoqi@0 566 };
aoqi@0 567
aoqi@0 568 template<class T, MEMFLAGS F>
aoqi@0 569 class GenericTaskQueueSet: public TaskQueueSetSuperImpl<F> {
aoqi@0 570 private:
aoqi@0 571 uint _n;
aoqi@0 572 T** _queues;
aoqi@0 573
aoqi@0 574 public:
aoqi@0 575 typedef typename T::element_type E;
aoqi@0 576
aoqi@0 577 GenericTaskQueueSet(int n) : _n(n) {
aoqi@0 578 typedef T* GenericTaskQueuePtr;
aoqi@0 579 _queues = NEW_C_HEAP_ARRAY(GenericTaskQueuePtr, n, F);
aoqi@0 580 for (int i = 0; i < n; i++) {
aoqi@0 581 _queues[i] = NULL;
aoqi@0 582 }
aoqi@0 583 }
aoqi@0 584
aoqi@0 585 bool steal_best_of_2(uint queue_num, int* seed, E& t);
aoqi@0 586
aoqi@0 587 void register_queue(uint i, T* q);
aoqi@0 588
aoqi@0 589 T* queue(uint n);
aoqi@0 590
aoqi@0 591 // The thread with queue number "queue_num" (and whose random number seed is
aoqi@0 592 // at "seed") is trying to steal a task from some other queue. (It may try
aoqi@0 593 // several queues, according to some configuration parameter.) If some steal
aoqi@0 594 // succeeds, returns "true" and sets "t" to the stolen task, otherwise returns
aoqi@0 595 // false.
aoqi@0 596 bool steal(uint queue_num, int* seed, E& t);
aoqi@0 597
aoqi@0 598 bool peek();
aoqi@0 599 };
aoqi@0 600
aoqi@0 601 template<class T, MEMFLAGS F> void
aoqi@0 602 GenericTaskQueueSet<T, F>::register_queue(uint i, T* q) {
aoqi@0 603 assert(i < _n, "index out of range.");
aoqi@0 604 _queues[i] = q;
aoqi@0 605 }
aoqi@0 606
aoqi@0 607 template<class T, MEMFLAGS F> T*
aoqi@0 608 GenericTaskQueueSet<T, F>::queue(uint i) {
aoqi@0 609 return _queues[i];
aoqi@0 610 }
aoqi@0 611
aoqi@0 612 template<class T, MEMFLAGS F> bool
aoqi@0 613 GenericTaskQueueSet<T, F>::steal(uint queue_num, int* seed, E& t) {
aoqi@0 614 for (uint i = 0; i < 2 * _n; i++) {
aoqi@0 615 if (steal_best_of_2(queue_num, seed, t)) {
aoqi@0 616 TASKQUEUE_STATS_ONLY(queue(queue_num)->stats.record_steal(true));
aoqi@0 617 return true;
aoqi@0 618 }
aoqi@0 619 }
aoqi@0 620 TASKQUEUE_STATS_ONLY(queue(queue_num)->stats.record_steal(false));
aoqi@0 621 return false;
aoqi@0 622 }
aoqi@0 623
aoqi@0 624 template<class T, MEMFLAGS F> bool
aoqi@0 625 GenericTaskQueueSet<T, F>::steal_best_of_2(uint queue_num, int* seed, E& t) {
aoqi@0 626 if (_n > 2) {
aoqi@25 627 uint k1 = queue_num;
aoqi@25 628 while (k1 == queue_num) k1 = TaskQueueSetSuper::randomParkAndMiller(seed) % _n;
aoqi@25 629 uint k2 = queue_num;
aoqi@25 630 while (k2 == queue_num || k2 == k1) k2 = TaskQueueSetSuper::randomParkAndMiller(seed) % _n;
aoqi@25 631 // Sample both and try the larger.
aoqi@25 632 uint sz1 = _queues[k1]->size();
aoqi@25 633 uint sz2 = _queues[k2]->size();
aoqi@25 634 if (sz2 > sz1) return _queues[k2]->pop_global(t);
aoqi@25 635 else return _queues[k1]->pop_global(t);
aoqi@0 636 } else if (_n == 2) {
aoqi@0 637 // Just try the other one.
aoqi@0 638 uint k = (queue_num + 1) % 2;
aoqi@0 639 return _queues[k]->pop_global(t);
aoqi@0 640 } else {
aoqi@0 641 assert(_n == 1, "can't be zero.");
aoqi@0 642 return false;
aoqi@0 643 }
aoqi@0 644 }
aoqi@0 645
aoqi@0 646 template<class T, MEMFLAGS F>
aoqi@0 647 bool GenericTaskQueueSet<T, F>::peek() {
aoqi@0 648 // Try all the queues.
aoqi@0 649 for (uint j = 0; j < _n; j++) {
aoqi@0 650 if (_queues[j]->peek())
aoqi@0 651 return true;
aoqi@0 652 }
aoqi@0 653 return false;
aoqi@0 654 }
aoqi@0 655
aoqi@0 656 // When to terminate from the termination protocol.
aoqi@0 657 class TerminatorTerminator: public CHeapObj<mtInternal> {
aoqi@0 658 public:
aoqi@0 659 virtual bool should_exit_termination() = 0;
aoqi@0 660 };
aoqi@0 661
aoqi@0 662 // A class to aid in the termination of a set of parallel tasks using
aoqi@0 663 // TaskQueueSet's for work stealing.
aoqi@0 664
aoqi@0 665 #undef TRACESPINNING
aoqi@0 666
aoqi@0 667 class ParallelTaskTerminator: public StackObj {
aoqi@0 668 private:
aoqi@0 669 int _n_threads;
aoqi@0 670 TaskQueueSetSuper* _queue_set;
aoqi@0 671 int _offered_termination;
aoqi@0 672
aoqi@0 673 #ifdef TRACESPINNING
aoqi@0 674 static uint _total_yields;
aoqi@0 675 static uint _total_spins;
aoqi@0 676 static uint _total_peeks;
aoqi@0 677 #endif
aoqi@0 678
aoqi@0 679 bool peek_in_queue_set();
aoqi@0 680 protected:
aoqi@0 681 virtual void yield();
aoqi@0 682 void sleep(uint millis);
aoqi@0 683
aoqi@0 684 public:
aoqi@0 685
aoqi@0 686 // "n_threads" is the number of threads to be terminated. "queue_set" is a
aoqi@0 687 // queue sets of work queues of other threads.
aoqi@0 688 ParallelTaskTerminator(int n_threads, TaskQueueSetSuper* queue_set);
aoqi@0 689
aoqi@0 690 // The current thread has no work, and is ready to terminate if everyone
aoqi@0 691 // else is. If returns "true", all threads are terminated. If returns
aoqi@0 692 // "false", available work has been observed in one of the task queues,
aoqi@0 693 // so the global task is not complete.
aoqi@0 694 bool offer_termination() {
aoqi@0 695 return offer_termination(NULL);
aoqi@0 696 }
aoqi@0 697
aoqi@0 698 // As above, but it also terminates if the should_exit_termination()
aoqi@0 699 // method of the terminator parameter returns true. If terminator is
aoqi@0 700 // NULL, then it is ignored.
aoqi@0 701 bool offer_termination(TerminatorTerminator* terminator);
aoqi@0 702
aoqi@0 703 // Reset the terminator, so that it may be reused again.
aoqi@0 704 // The caller is responsible for ensuring that this is done
aoqi@0 705 // in an MT-safe manner, once the previous round of use of
aoqi@0 706 // the terminator is finished.
aoqi@0 707 void reset_for_reuse();
aoqi@0 708 // Same as above but the number of parallel threads is set to the
aoqi@0 709 // given number.
aoqi@0 710 void reset_for_reuse(int n_threads);
aoqi@0 711
aoqi@0 712 #ifdef TRACESPINNING
aoqi@0 713 static uint total_yields() { return _total_yields; }
aoqi@0 714 static uint total_spins() { return _total_spins; }
aoqi@0 715 static uint total_peeks() { return _total_peeks; }
aoqi@0 716 static void print_termination_counts();
aoqi@0 717 #endif
aoqi@0 718 };
aoqi@0 719
aoqi@0 720 template<class E, MEMFLAGS F, unsigned int N> inline bool
aoqi@0 721 GenericTaskQueue<E, F, N>::push(E t) {
fujie@415 722 #ifdef MIPS64
fujie@415 723 uint localBot = this->get_bottom();
fujie@415 724 #else
aoqi@0 725 uint localBot = _bottom;
fujie@415 726 #endif
aoqi@0 727 assert(localBot < N, "_bottom out of range.");
aoqi@0 728 idx_t top = _age.top();
aoqi@0 729 uint dirty_n_elems = dirty_size(localBot, top);
aoqi@0 730 assert(dirty_n_elems < N, "n_elems out of range.");
aoqi@0 731 if (dirty_n_elems < max_elems()) {
aoqi@0 732 // g++ complains if the volatile result of the assignment is
aoqi@0 733 // unused, so we cast the volatile away. We cannot cast directly
aoqi@0 734 // to void, because gcc treats that as not using the result of the
aoqi@0 735 // assignment. However, casting to E& means that we trigger an
aoqi@0 736 // unused-value warning. So, we cast the E& to void.
aoqi@0 737 (void) const_cast<E&>(_elems[localBot] = t);
fujie@415 738 #ifdef MIPS64
fujie@415 739 this->set_bottom(increment_index(localBot));
fujie@415 740 #else
aoqi@0 741 OrderAccess::release_store(&_bottom, increment_index(localBot));
fujie@415 742 #endif
aoqi@0 743 TASKQUEUE_STATS_ONLY(stats.record_push());
aoqi@0 744 return true;
aoqi@0 745 } else {
aoqi@0 746 return push_slow(t, dirty_n_elems);
aoqi@0 747 }
aoqi@0 748 }
aoqi@0 749
aoqi@0 750 template<class E, MEMFLAGS F, unsigned int N> inline bool
aoqi@0 751 GenericTaskQueue<E, F, N>::pop_local(volatile E& t) {
fujie@415 752 #ifdef MIPS64
fujie@415 753 uint localBot = this->get_bottom();
fujie@415 754 #else
aoqi@0 755 uint localBot = _bottom;
fujie@415 756 #endif
aoqi@0 757 // This value cannot be N-1. That can only occur as a result of
aoqi@0 758 // the assignment to bottom in this method. If it does, this method
aoqi@0 759 // resets the size to 0 before the next call (which is sequential,
aoqi@0 760 // since this is pop_local.)
aoqi@0 761 uint dirty_n_elems = dirty_size(localBot, _age.top());
aoqi@0 762 assert(dirty_n_elems != N - 1, "Shouldn't be possible...");
aoqi@0 763 if (dirty_n_elems == 0) return false;
aoqi@0 764 localBot = decrement_index(localBot);
fujie@415 765 #ifdef MIPS64
fujie@415 766 this->set_bottom(localBot);
fujie@415 767 #else
aoqi@0 768 _bottom = localBot;
fujie@415 769 #endif
aoqi@0 770 // This is necessary to prevent any read below from being reordered
aoqi@0 771 // before the store just above.
aoqi@0 772 OrderAccess::fence();
aoqi@0 773 // g++ complains if the volatile result of the assignment is
aoqi@0 774 // unused, so we cast the volatile away. We cannot cast directly
aoqi@0 775 // to void, because gcc treats that as not using the result of the
aoqi@0 776 // assignment. However, casting to E& means that we trigger an
aoqi@0 777 // unused-value warning. So, we cast the E& to void.
aoqi@0 778 (void) const_cast<E&>(t = _elems[localBot]);
aoqi@0 779 // This is a second read of "age"; the "size()" above is the first.
aoqi@0 780 // If there's still at least one element in the queue, based on the
aoqi@0 781 // "_bottom" and "age" we've read, then there can be no interference with
aoqi@0 782 // a "pop_global" operation, and we're done.
aoqi@0 783 idx_t tp = _age.top(); // XXX
aoqi@0 784 if (size(localBot, tp) > 0) {
aoqi@0 785 assert(dirty_size(localBot, tp) != N - 1, "sanity");
aoqi@0 786 TASKQUEUE_STATS_ONLY(stats.record_pop());
aoqi@0 787 return true;
aoqi@0 788 } else {
aoqi@0 789 // Otherwise, the queue contained exactly one element; we take the slow
aoqi@0 790 // path.
aoqi@0 791 return pop_local_slow(localBot, _age.get());
aoqi@0 792 }
aoqi@0 793 }
aoqi@0 794
aoqi@0 795 typedef GenericTaskQueue<oop, mtGC> OopTaskQueue;
aoqi@0 796 typedef GenericTaskQueueSet<OopTaskQueue, mtGC> OopTaskQueueSet;
aoqi@0 797
aoqi@0 798 #ifdef _MSC_VER
aoqi@0 799 #pragma warning(push)
aoqi@0 800 // warning C4522: multiple assignment operators specified
aoqi@0 801 #pragma warning(disable:4522)
aoqi@0 802 #endif
aoqi@0 803
aoqi@0 804 // This is a container class for either an oop* or a narrowOop*.
aoqi@0 805 // Both are pushed onto a task queue and the consumer will test is_narrow()
aoqi@0 806 // to determine which should be processed.
aoqi@0 807 class StarTask {
aoqi@0 808 void* _holder; // either union oop* or narrowOop*
aoqi@0 809
aoqi@0 810 enum { COMPRESSED_OOP_MASK = 1 };
aoqi@0 811
aoqi@0 812 public:
aoqi@0 813 StarTask(narrowOop* p) {
aoqi@0 814 assert(((uintptr_t)p & COMPRESSED_OOP_MASK) == 0, "Information loss!");
aoqi@0 815 _holder = (void *)((uintptr_t)p | COMPRESSED_OOP_MASK);
aoqi@0 816 }
aoqi@0 817 StarTask(oop* p) {
aoqi@0 818 assert(((uintptr_t)p & COMPRESSED_OOP_MASK) == 0, "Information loss!");
aoqi@0 819 _holder = (void*)p;
aoqi@0 820 }
aoqi@0 821 StarTask() { _holder = NULL; }
aoqi@0 822 operator oop*() { return (oop*)_holder; }
aoqi@0 823 operator narrowOop*() {
aoqi@0 824 return (narrowOop*)((uintptr_t)_holder & ~COMPRESSED_OOP_MASK);
aoqi@0 825 }
aoqi@0 826
aoqi@0 827 StarTask& operator=(const StarTask& t) {
aoqi@0 828 _holder = t._holder;
aoqi@0 829 return *this;
aoqi@0 830 }
aoqi@0 831 volatile StarTask& operator=(const volatile StarTask& t) volatile {
aoqi@0 832 _holder = t._holder;
aoqi@0 833 return *this;
aoqi@0 834 }
aoqi@0 835
aoqi@0 836 bool is_narrow() const {
aoqi@0 837 return (((uintptr_t)_holder & COMPRESSED_OOP_MASK) != 0);
aoqi@0 838 }
aoqi@0 839 };
aoqi@0 840
aoqi@0 841 class ObjArrayTask
aoqi@0 842 {
aoqi@0 843 public:
aoqi@0 844 ObjArrayTask(oop o = NULL, int idx = 0): _obj(o), _index(idx) { }
aoqi@0 845 ObjArrayTask(oop o, size_t idx): _obj(o), _index(int(idx)) {
aoqi@0 846 assert(idx <= size_t(max_jint), "too big");
aoqi@0 847 }
aoqi@0 848 ObjArrayTask(const ObjArrayTask& t): _obj(t._obj), _index(t._index) { }
aoqi@0 849
aoqi@0 850 ObjArrayTask& operator =(const ObjArrayTask& t) {
aoqi@0 851 _obj = t._obj;
aoqi@0 852 _index = t._index;
aoqi@0 853 return *this;
aoqi@0 854 }
aoqi@0 855 volatile ObjArrayTask&
aoqi@0 856 operator =(const volatile ObjArrayTask& t) volatile {
aoqi@0 857 (void)const_cast<oop&>(_obj = t._obj);
aoqi@0 858 _index = t._index;
aoqi@0 859 return *this;
aoqi@0 860 }
aoqi@0 861
aoqi@0 862 inline oop obj() const { return _obj; }
aoqi@0 863 inline int index() const { return _index; }
aoqi@0 864
aoqi@0 865 DEBUG_ONLY(bool is_valid() const); // Tasks to be pushed/popped must be valid.
aoqi@0 866
aoqi@0 867 private:
aoqi@0 868 oop _obj;
aoqi@0 869 int _index;
aoqi@0 870 };
aoqi@0 871
aoqi@0 872 #ifdef _MSC_VER
aoqi@0 873 #pragma warning(pop)
aoqi@0 874 #endif
aoqi@0 875
aoqi@0 876 typedef OverflowTaskQueue<StarTask, mtClass> OopStarTaskQueue;
aoqi@0 877 typedef GenericTaskQueueSet<OopStarTaskQueue, mtClass> OopStarTaskQueueSet;
aoqi@0 878
aoqi@0 879 typedef OverflowTaskQueue<size_t, mtInternal> RegionTaskQueue;
aoqi@0 880 typedef GenericTaskQueueSet<RegionTaskQueue, mtClass> RegionTaskQueueSet;
aoqi@0 881
aoqi@0 882
aoqi@0 883 #endif // SHARE_VM_UTILITIES_TASKQUEUE_HPP

mercurial