ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/concurrent/ForkJoinPool.java
Revision: 1.331
Committed: Tue Jan 31 01:44:39 2017 UTC (7 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.330: +44 -27 lines
Log Message:
JDK-8172726: ForkJoin common pool retains a reference to the thread context class loader

File Contents

# User Rev Content
1 jsr166 1.1 /*
2     * Written by Doug Lea with assistance from members of JCP JSR-166
3     * Expert Group and released to the public domain, as explained at
4 jsr166 1.58 * http://creativecommons.org/publicdomain/zero/1.0/
5 jsr166 1.1 */
6 jsr166 1.301
7 jsr166 1.1 package java.util.concurrent;
8    
9 jsr166 1.156 import java.lang.Thread.UncaughtExceptionHandler;
10 dl 1.314 import java.lang.invoke.MethodHandles;
11     import java.lang.invoke.VarHandle;
12 jsr166 1.329 import java.security.AccessController;
13 jsr166 1.228 import java.security.AccessControlContext;
14 jsr166 1.331 import java.security.Permission;
15 jsr166 1.228 import java.security.Permissions;
16 jsr166 1.329 import java.security.PrivilegedAction;
17 jsr166 1.228 import java.security.ProtectionDomain;
18 jsr166 1.1 import java.util.ArrayList;
19     import java.util.Collection;
20     import java.util.Collections;
21     import java.util.List;
22 dl 1.307 import java.util.function.Predicate;
23 dl 1.243 import java.util.concurrent.locks.LockSupport;
24 jsr166 1.1
25     /**
26 jsr166 1.4 * An {@link ExecutorService} for running {@link ForkJoinTask}s.
27 jsr166 1.8 * A {@code ForkJoinPool} provides the entry point for submissions
28 dl 1.18 * from non-{@code ForkJoinTask} clients, as well as management and
29 jsr166 1.11 * monitoring operations.
30 jsr166 1.1 *
31 jsr166 1.9 * <p>A {@code ForkJoinPool} differs from other kinds of {@link
32     * ExecutorService} mainly by virtue of employing
33     * <em>work-stealing</em>: all threads in the pool attempt to find and
34 dl 1.78 * execute tasks submitted to the pool and/or created by other active
35     * tasks (eventually blocking waiting for work if none exist). This
36     * enables efficient processing when most tasks spawn other subtasks
37     * (as do most {@code ForkJoinTask}s), as well as when many small
38     * tasks are submitted to the pool from external clients. Especially
39     * when setting <em>asyncMode</em> to true in constructors, {@code
40     * ForkJoinPool}s may also be appropriate for use with event-style
41 dl 1.330 * tasks that are never joined. All worker threads are initialized
42     * with {@link Thread#isDaemon} set {@code true}.
43 jsr166 1.1 *
44 dl 1.112 * <p>A static {@link #commonPool()} is available and appropriate for
45 dl 1.101 * most applications. The common pool is used by any ForkJoinTask that
46     * is not explicitly submitted to a specified pool. Using the common
47     * pool normally reduces resource usage (its threads are slowly
48     * reclaimed during periods of non-use, and reinstated upon subsequent
49 dl 1.105 * use).
50 dl 1.100 *
51     * <p>For applications that require separate or custom pools, a {@code
52     * ForkJoinPool} may be constructed with a given target parallelism
53 jsr166 1.214 * level; by default, equal to the number of available processors.
54     * The pool attempts to maintain enough active (or available) threads
55     * by dynamically adding, suspending, or resuming internal worker
56 jsr166 1.187 * threads, even if some tasks are stalled waiting to join others.
57     * However, no such adjustments are guaranteed in the face of blocked
58     * I/O or other unmanaged synchronization. The nested {@link
59 dl 1.100 * ManagedBlocker} interface enables extension of the kinds of
60 dl 1.300 * synchronization accommodated. The default policies may be
61     * overridden using a constructor with parameters corresponding to
62     * those documented in class {@link ThreadPoolExecutor}.
63 jsr166 1.1 *
64     * <p>In addition to execution and lifecycle control methods, this
65     * class provides status check methods (for example
66 jsr166 1.4 * {@link #getStealCount}) that are intended to aid in developing,
67 jsr166 1.1 * tuning, and monitoring fork/join applications. Also, method
68 jsr166 1.4 * {@link #toString} returns indications of pool state in a
69 jsr166 1.1 * convenient form for informal monitoring.
70     *
71 jsr166 1.109 * <p>As is the case with other ExecutorServices, there are three
72 jsr166 1.84 * main task execution methods summarized in the following table.
73     * These are designed to be used primarily by clients not already
74     * engaged in fork/join computations in the current pool. The main
75     * forms of these methods accept instances of {@code ForkJoinTask},
76     * but overloaded forms also allow mixed execution of plain {@code
77     * Runnable}- or {@code Callable}- based activities as well. However,
78     * tasks that are already executing in a pool should normally instead
79     * use the within-computation forms listed in the table unless using
80     * async event-style tasks that are not usually joined, in which case
81     * there is little difference among choice of methods.
82 dl 1.18 *
83     * <table BORDER CELLPADDING=3 CELLSPACING=1>
84 jsr166 1.159 * <caption>Summary of task execution methods</caption>
85 dl 1.18 * <tr>
86     * <td></td>
87     * <td ALIGN=CENTER> <b>Call from non-fork/join clients</b></td>
88     * <td ALIGN=CENTER> <b>Call from within fork/join computations</b></td>
89     * </tr>
90     * <tr>
91 jsr166 1.153 * <td> <b>Arrange async execution</b></td>
92 dl 1.18 * <td> {@link #execute(ForkJoinTask)}</td>
93     * <td> {@link ForkJoinTask#fork}</td>
94     * </tr>
95     * <tr>
96 jsr166 1.153 * <td> <b>Await and obtain result</b></td>
97 dl 1.18 * <td> {@link #invoke(ForkJoinTask)}</td>
98     * <td> {@link ForkJoinTask#invoke}</td>
99     * </tr>
100     * <tr>
101 jsr166 1.153 * <td> <b>Arrange exec and obtain Future</b></td>
102 dl 1.18 * <td> {@link #submit(ForkJoinTask)}</td>
103     * <td> {@link ForkJoinTask#fork} (ForkJoinTasks <em>are</em> Futures)</td>
104     * </tr>
105     * </table>
106 dl 1.19 *
107 dl 1.105 * <p>The common pool is by default constructed with default
108 jsr166 1.321 * parameters, but these may be controlled by setting the following
109 jsr166 1.162 * {@linkplain System#getProperty system properties}:
110     * <ul>
111     * <li>{@code java.util.concurrent.ForkJoinPool.common.parallelism}
112     * - the parallelism level, a non-negative integer
113     * <li>{@code java.util.concurrent.ForkJoinPool.common.threadFactory}
114 jsr166 1.331 * - the class name of a {@link ForkJoinWorkerThreadFactory}.
115     * The {@linkplain ClassLoader#getSystemClassLoader() system class loader}
116     * is used to load this class.
117 jsr166 1.162 * <li>{@code java.util.concurrent.ForkJoinPool.common.exceptionHandler}
118 jsr166 1.331 * - the class name of a {@link UncaughtExceptionHandler}.
119     * The {@linkplain ClassLoader#getSystemClassLoader() system class loader}
120     * is used to load this class.
121 dl 1.208 * <li>{@code java.util.concurrent.ForkJoinPool.common.maximumSpares}
122 dl 1.223 * - the maximum number of allowed extra threads to maintain target
123 dl 1.208 * parallelism (default 256).
124 jsr166 1.162 * </ul>
125 jsr166 1.331 * If a {@link SecurityManager} is present and no factory is specified,
126     * then the default pool uses a factory supplying threads that have no
127     * {@link Permissions} enabled, and uses the system class loader as the
128     * {@linkplain Thread#getContextClassLoader() thread context class loader}.
129     *
130 jsr166 1.156 * Upon any error in establishing these settings, default parameters
131 dl 1.160 * are used. It is possible to disable or limit the use of threads in
132     * the common pool by setting the parallelism property to zero, and/or
133 dl 1.193 * using a factory that may return {@code null}. However doing so may
134     * cause unjoined tasks to never be executed.
135 dl 1.105 *
136 jsr166 1.1 * <p><b>Implementation notes</b>: This implementation restricts the
137     * maximum number of running threads to 32767. Attempts to create
138 jsr166 1.11 * pools with greater than the maximum number result in
139 jsr166 1.8 * {@code IllegalArgumentException}.
140 jsr166 1.1 *
141 jsr166 1.11 * <p>This implementation rejects submitted tasks (that is, by throwing
142 dl 1.19 * {@link RejectedExecutionException}) only when the pool is shut down
143 dl 1.20 * or internal resources have been exhausted.
144 jsr166 1.11 *
145 jsr166 1.1 * @since 1.7
146     * @author Doug Lea
147     */
148     public class ForkJoinPool extends AbstractExecutorService {
149    
150     /*
151 dl 1.14 * Implementation Overview
152     *
153 dl 1.78 * This class and its nested classes provide the main
154     * functionality and control for a set of worker threads:
155 jsr166 1.84 * Submissions from non-FJ threads enter into submission queues.
156     * Workers take these tasks and typically split them into subtasks
157     * that may be stolen by other workers. Preference rules give
158     * first priority to processing tasks from their own queues (LIFO
159     * or FIFO, depending on mode), then to randomized FIFO steals of
160 dl 1.200 * tasks in other queues. This framework began as vehicle for
161     * supporting tree-structured parallelism using work-stealing.
162     * Over time, its scalability advantages led to extensions and
163 dl 1.208 * changes to better support more diverse usage contexts. Because
164     * most internal methods and nested classes are interrelated,
165     * their main rationale and descriptions are presented here;
166     * individual methods and nested classes contain only brief
167     * comments about details.
168 dl 1.78 *
169 jsr166 1.84 * WorkQueues
170 dl 1.78 * ==========
171     *
172     * Most operations occur within work-stealing queues (in nested
173     * class WorkQueue). These are special forms of Deques that
174     * support only three of the four possible end-operations -- push,
175     * pop, and poll (aka steal), under the further constraints that
176     * push and pop are called only from the owning thread (or, as
177     * extended here, under a lock), while poll may be called from
178     * other threads. (If you are unfamiliar with them, you probably
179     * want to read Herlihy and Shavit's book "The Art of
180     * Multiprocessor programming", chapter 16 describing these in
181     * more detail before proceeding.) The main work-stealing queue
182     * design is roughly similar to those in the papers "Dynamic
183     * Circular Work-Stealing Deque" by Chase and Lev, SPAA 2005
184     * (http://research.sun.com/scalable/pubs/index.html) and
185     * "Idempotent work stealing" by Michael, Saraswat, and Vechev,
186     * PPoPP 2009 (http://portal.acm.org/citation.cfm?id=1504186).
187 dl 1.200 * The main differences ultimately stem from GC requirements that
188     * we null out taken slots as soon as we can, to maintain as small
189     * a footprint as possible even in programs generating huge
190     * numbers of tasks. To accomplish this, we shift the CAS
191     * arbitrating pop vs poll (steal) from being on the indices
192     * ("base" and "top") to the slots themselves.
193     *
194 dl 1.243 * Adding tasks then takes the form of a classic array push(task)
195     * in a circular buffer:
196     * q.array[q.top++ % length] = task;
197 dl 1.200 *
198     * (The actual code needs to null-check and size-check the array,
199 jsr166 1.247 * uses masking, not mod, for indexing a power-of-two-sized array,
200 dl 1.243 * properly fences accesses, and possibly signals waiting workers
201     * to start scanning -- see below.) Both a successful pop and
202     * poll mainly entail a CAS of a slot from non-null to null.
203 dl 1.200 *
204 jsr166 1.202 * The pop operation (always performed by owner) is:
205 dl 1.243 * if ((the task at top slot is not null) and
206 dl 1.200 * (CAS slot to null))
207     * decrement top and return task;
208     *
209     * And the poll operation (usually by a stealer) is
210 dl 1.243 * if ((the task at base slot is not null) and
211 dl 1.200 * (CAS slot to null))
212     * increment base and return task;
213     *
214 dl 1.300 * There are several variants of each of these. In particular,
215     * almost all uses of poll occur within scan operations that also
216     * interleave contention tracking (with associated code sprawl.)
217 dl 1.243 *
218     * Memory ordering. See "Correct and Efficient Work-Stealing for
219     * Weak Memory Models" by Le, Pop, Cohen, and Nardelli, PPoPP 2013
220     * (http://www.di.ens.fr/~zappa/readings/ppopp13.pdf) for an
221     * analysis of memory ordering requirements in work-stealing
222     * algorithms similar to (but different than) the one used here.
223     * Extracting tasks in array slots via (fully fenced) CAS provides
224     * primary synchronization. The base and top indices imprecisely
225     * guide where to extract from. We do not always require strict
226     * orderings of array and index updates, so sometimes let them be
227     * subject to compiler and processor reorderings. However, the
228     * volatile "base" index also serves as a basis for memory
229     * ordering: Slot accesses are preceded by a read of base,
230 jsr166 1.247 * ensuring happens-before ordering with respect to stealers (so
231 dl 1.243 * the slots themselves can be read via plain array reads.) The
232     * only other memory orderings relied on are maintained in the
233     * course of signalling and activation (see below). A check that
234     * base == top indicates (momentary) emptiness, but otherwise may
235     * err on the side of possibly making the queue appear nonempty
236     * when a push, pop, or poll have not fully committed, or making
237     * it appear empty when an update of top has not yet been visibly
238     * written. (Method isEmpty() checks the case of a partially
239 dl 1.211 * completed removal of the last element.) Because of this, the
240     * poll operation, considered individually, is not wait-free. One
241     * thief cannot successfully continue until another in-progress
242 dl 1.243 * one (or, if previously empty, a push) visibly completes.
243     * However, in the aggregate, we ensure at least probabilistic
244     * non-blockingness. If an attempted steal fails, a scanning
245     * thief chooses a different random victim target to try next. So,
246     * in order for one thief to progress, it suffices for any
247 dl 1.205 * in-progress poll or new push on any empty queue to
248 dl 1.300 * complete.
249 dl 1.200 *
250     * This approach also enables support of a user mode in which
251     * local task processing is in FIFO, not LIFO order, simply by
252     * using poll rather than pop. This can be useful in
253     * message-passing frameworks in which tasks are never joined.
254 dl 1.78 *
255     * WorkQueues are also used in a similar way for tasks submitted
256     * to the pool. We cannot mix these tasks in the same queues used
257 dl 1.200 * by workers. Instead, we randomly associate submission queues
258 dl 1.83 * with submitting threads, using a form of hashing. The
259 dl 1.139 * ThreadLocalRandom probe value serves as a hash code for
260     * choosing existing queues, and may be randomly repositioned upon
261     * contention with other submitters. In essence, submitters act
262     * like workers except that they are restricted to executing local
263 dl 1.300 * tasks that they submitted. Insertion of tasks in shared mode
264     * requires a lock but we use only a simple spinlock (using field
265 jsr166 1.304 * phase), because submitters encountering a busy queue move to a
266     * different position to use or create other queues -- they block
267     * only when creating and registering new queues. Because it is
268     * used only as a spinlock, unlocking requires only a "releasing"
269 dl 1.314 * store (using setRelease).
270 dl 1.78 *
271 jsr166 1.84 * Management
272 dl 1.78 * ==========
273 dl 1.52 *
274     * The main throughput advantages of work-stealing stem from
275     * decentralized control -- workers mostly take tasks from
276 dl 1.200 * themselves or each other, at rates that can exceed a billion
277     * per second. The pool itself creates, activates (enables
278     * scanning for and running tasks), deactivates, blocks, and
279     * terminates threads, all with minimal central information.
280     * There are only a few properties that we can globally track or
281     * maintain, so we pack them into a small number of variables,
282     * often maintaining atomicity without blocking or locking.
283 dl 1.300 * Nearly all essentially atomic control state is held in a few
284 dl 1.200 * volatile variables that are by far most often read (not
285 dl 1.300 * written) as status and consistency checks. We pack as much
286     * information into them as we can.
287 dl 1.78 *
288 dl 1.200 * Field "ctl" contains 64 bits holding information needed to
289 dl 1.300 * atomically decide to add, enqueue (on an event queue), and
290     * dequeue (and release)-activate workers. To enable this
291 dl 1.78 * packing, we restrict maximum parallelism to (1<<15)-1 (which is
292     * far in excess of normal operating range) to allow ids, counts,
293     * and their negations (used for thresholding) to fit into 16bit
294 dl 1.215 * subfields.
295     *
296 dl 1.300 * Field "mode" holds configuration parameters as well as lifetime
297     * status, atomically and monotonically setting SHUTDOWN, STOP,
298     * and finally TERMINATED bits.
299 dl 1.258 *
300     * Field "workQueues" holds references to WorkQueues. It is
301 dl 1.300 * updated (only during worker creation and termination) under
302     * lock (using field workerNamePrefix as lock), but is otherwise
303     * concurrently readable, and accessed directly. We also ensure
304     * that uses of the array reference itself never become too stale
305     * in case of resizing. To simplify index-based operations, the
306     * array size is always a power of two, and all readers must
307     * tolerate null slots. Worker queues are at odd indices. Shared
308     * (submission) queues are at even indices, up to a maximum of 64
309     * slots, to limit growth even if array needs to expand to add
310     * more workers. Grouping them together in this way simplifies and
311 dl 1.262 * speeds up task scanning.
312 dl 1.86 *
313     * All worker thread creation is on-demand, triggered by task
314     * submissions, replacement of terminated workers, and/or
315 dl 1.78 * compensation for blocked workers. However, all other support
316     * code is set up to work with other policies. To ensure that we
317 jsr166 1.264 * do not hold on to worker references that would prevent GC, all
318 dl 1.78 * accesses to workQueues are via indices into the workQueues
319     * array (which is one source of some of the messy code
320     * constructions here). In essence, the workQueues array serves as
321 dl 1.200 * a weak reference mechanism. Thus for example the stack top
322     * subfield of ctl stores indices, not references.
323     *
324     * Queuing Idle Workers. Unlike HPC work-stealing frameworks, we
325     * cannot let workers spin indefinitely scanning for tasks when
326     * none can be found immediately, and we cannot start/resume
327     * workers unless there appear to be tasks available. On the
328     * other hand, we must quickly prod them into action when new
329     * tasks are submitted or generated. In many usages, ramp-up time
330 dl 1.300 * is the main limiting factor in overall performance, which is
331     * compounded at program start-up by JIT compilation and
332     * allocation. So we streamline this as much as possible.
333     *
334     * The "ctl" field atomically maintains total worker and
335     * "released" worker counts, plus the head of the available worker
336     * queue (actually stack, represented by the lower 32bit subfield
337     * of ctl). Released workers are those known to be scanning for
338     * and/or running tasks. Unreleased ("available") workers are
339     * recorded in the ctl stack. These workers are made available for
340     * signalling by enqueuing in ctl (see method runWorker). The
341     * "queue" is a form of Treiber stack. This is ideal for
342     * activating threads in most-recently used order, and improves
343 dl 1.200 * performance and locality, outweighing the disadvantages of
344     * being prone to contention and inability to release a worker
345 dl 1.300 * unless it is topmost on stack. To avoid missed signal problems
346     * inherent in any wait/signal design, available workers rescan
347     * for (and if found run) tasks after enqueuing. Normally their
348     * release status will be updated while doing so, but the released
349     * worker ctl count may underestimate the number of active
350     * threads. (However, it is still possible to determine quiescence
351     * via a validation traversal -- see isQuiescent). After an
352     * unsuccessful rescan, available workers are blocked until
353     * signalled (see signalWork). The top stack state holds the
354     * value of the "phase" field of the worker: its index and status,
355     * plus a version counter that, in addition to the count subfields
356     * (also serving as version stamps) provide protection against
357     * Treiber stack ABA effects.
358 dl 1.200 *
359 dl 1.300 * Creating workers. To create a worker, we pre-increment counts
360     * (serving as a reservation), and attempt to construct a
361 dl 1.200 * ForkJoinWorkerThread via its factory. Upon construction, the
362     * new thread invokes registerWorker, where it constructs a
363     * WorkQueue and is assigned an index in the workQueues array
364 jsr166 1.266 * (expanding the array if necessary). The thread is then started.
365     * Upon any exception across these steps, or null return from
366     * factory, deregisterWorker adjusts counts and records
367 dl 1.200 * accordingly. If a null return, the pool continues running with
368     * fewer than the target number workers. If exceptional, the
369     * exception is propagated, generally to some external caller.
370     * Worker index assignment avoids the bias in scanning that would
371     * occur if entries were sequentially packed starting at the front
372     * of the workQueues array. We treat the array as a simple
373     * power-of-two hash table, expanding as needed. The seedIndex
374     * increment ensures no collisions until a resize is needed or a
375     * worker is deregistered and replaced, and thereafter keeps
376 jsr166 1.202 * probability of collision low. We cannot use
377 dl 1.200 * ThreadLocalRandom.getProbe() for similar purposes here because
378     * the thread has not started yet, but do so for creating
379 dl 1.243 * submission queues for existing external threads (see
380     * externalPush).
381     *
382 dl 1.300 * WorkQueue field "phase" is used by both workers and the pool to
383     * manage and track whether a worker is UNSIGNALLED (possibly
384     * blocked waiting for a signal). When a worker is enqueued its
385     * phase field is set. Note that phase field updates lag queue CAS
386     * releases so usage requires care -- seeing a negative phase does
387     * not guarantee that the worker is available. When queued, the
388     * lower 16 bits of scanState must hold its pool index. So we
389     * place the index there upon initialization (see registerWorker)
390     * and otherwise keep it there or restore it when necessary.
391 dl 1.243 *
392     * The ctl field also serves as the basis for memory
393     * synchronization surrounding activation. This uses a more
394     * efficient version of a Dekker-like rule that task producers and
395     * consumers sync with each other by both writing/CASing ctl (even
396 dl 1.253 * if to its current value). This would be extremely costly. So
397     * we relax it in several ways: (1) Producers only signal when
398     * their queue is empty. Other workers propagate this signal (in
399 dl 1.300 * method scan) when they find tasks; to further reduce flailing,
400     * each worker signals only one other per activation. (2) Workers
401     * only enqueue after scanning (see below) and not finding any
402     * tasks. (3) Rather than CASing ctl to its current value in the
403     * common case where no action is required, we reduce write
404     * contention by equivalently prefacing signalWork when called by
405     * an external task producer using a memory access with
406     * full-volatile semantics or a "fullFence".
407 dl 1.243 *
408 jsr166 1.249 * Almost always, too many signals are issued. A task producer
409 dl 1.243 * cannot in general tell if some existing worker is in the midst
410     * of finishing one task (or already scanning) and ready to take
411     * another without being signalled. So the producer might instead
412     * activate a different worker that does not find any work, and
413     * then inactivates. This scarcely matters in steady-state
414     * computations involving all workers, but can create contention
415 jsr166 1.247 * and bookkeeping bottlenecks during ramp-up, ramp-down, and small
416 dl 1.243 * computations involving only a few workers.
417     *
418 dl 1.300 * Scanning. Method runWorker performs top-level scanning for
419     * tasks. Each scan traverses and tries to poll from each queue
420     * starting at a random index and circularly stepping. Scans are
421     * not performed in ideal random permutation order, to reduce
422     * cacheline contention. The pseudorandom generator need not have
423     * high-quality statistical properties in the long term, but just
424     * within computations; We use Marsaglia XorShifts (often via
425     * ThreadLocalRandom.nextSecondarySeed), which are cheap and
426     * suffice. Scanning also employs contention reduction: When
427     * scanning workers fail to extract an apparently existing task,
428     * they soon restart at a different pseudorandom index. This
429     * improves throughput when many threads are trying to take tasks
430     * from few queues, which can be common in some usages. Scans do
431     * not otherwise explicitly take into account core affinities,
432     * loads, cache localities, etc, However, they do exploit temporal
433     * locality (which usually approximates these) by preferring to
434     * re-poll (at most #workers times) from the same queue after a
435     * successful poll before trying others.
436 dl 1.52 *
437     * Trimming workers. To release resources after periods of lack of
438     * use, a worker starting to wait when the pool is quiescent will
439 dl 1.300 * time out and terminate (see method scan) if the pool has
440     * remained quiescent for period given by field keepAlive.
441 dl 1.52 *
442 dl 1.210 * Shutdown and Termination. A call to shutdownNow invokes
443     * tryTerminate to atomically set a runState bit. The calling
444     * thread, as well as every other worker thereafter terminating,
445 dl 1.300 * helps terminate others by cancelling their unprocessed tasks,
446     * and waking them up, doing so repeatedly until stable. Calls to
447     * non-abrupt shutdown() preface this by checking whether
448     * termination should commence by sweeping through queues (until
449     * stable) to ensure lack of in-flight submissions and workers
450     * about to process them before triggering the "STOP" phase of
451     * termination.
452 dl 1.211 *
453 jsr166 1.84 * Joining Tasks
454     * =============
455 dl 1.78 *
456     * Any of several actions may be taken when one worker is waiting
457 jsr166 1.84 * to join a task stolen (or always held) by another. Because we
458 dl 1.78 * are multiplexing many tasks on to a pool of workers, we can't
459 dl 1.300 * always just let them block (as in Thread.join). We also cannot
460     * just reassign the joiner's run-time stack with another and
461     * replace it later, which would be a form of "continuation", that
462     * even if possible is not necessarily a good idea since we may
463     * need both an unblocked task and its continuation to progress.
464     * Instead we combine two tactics:
465 dl 1.19 *
466     * Helping: Arranging for the joiner to execute some task that it
467 dl 1.78 * would be running if the steal had not occurred.
468 dl 1.19 *
469     * Compensating: Unless there are already enough live threads,
470 dl 1.78 * method tryCompensate() may create or re-activate a spare
471     * thread to compensate for blocked joiners until they unblock.
472     *
473 dl 1.105 * A third form (implemented in tryRemoveAndExec) amounts to
474     * helping a hypothetical compensator: If we can readily tell that
475     * a possible action of a compensator is to steal and execute the
476     * task being joined, the joining thread can do so directly,
477 dl 1.300 * without the need for a compensation thread.
478 dl 1.52 *
479     * The ManagedBlocker extension API can't use helping so relies
480     * only on compensation in method awaitBlocker.
481 dl 1.19 *
482 dl 1.300 * The algorithm in awaitJoin entails a form of "linear helping".
483     * Each worker records (in field source) the id of the queue from
484     * which it last stole a task. The scan in method awaitJoin uses
485     * these markers to try to find a worker to help (i.e., steal back
486     * a task from and execute it) that could hasten completion of the
487     * actively joined task. Thus, the joiner executes a task that
488     * would be on its own local deque if the to-be-joined task had
489     * not been stolen. This is a conservative variant of the approach
490     * described in Wagner & Calder "Leapfrogging: a portable
491     * technique for implementing efficient futures" SIGPLAN Notices,
492     * 1993 (http://portal.acm.org/citation.cfm?id=155354). It differs
493     * mainly in that we only record queue ids, not full dependency
494     * links. This requires a linear scan of the workQueues array to
495     * locate stealers, but isolates cost to when it is needed, rather
496     * than adding to per-task overhead. Searches can fail to locate
497     * stealers GC stalls and the like delay recording sources.
498     * Further, even when accurately identified, stealers might not
499     * ever produce a task that the joiner can in turn help with. So,
500     * compensation is tried upon failure to find tasks to run.
501 dl 1.105 *
502 dl 1.300 * Compensation does not by default aim to keep exactly the target
503 dl 1.200 * parallelism number of unblocked threads running at any given
504     * time. Some previous versions of this class employed immediate
505     * compensations for any blocked join. However, in practice, the
506     * vast majority of blockages are transient byproducts of GC and
507     * other JVM or OS activities that are made worse by replacement.
508 dl 1.300 * Rather than impose arbitrary policies, we allow users to
509     * override the default of only adding threads upon apparent
510     * starvation. The compensation mechanism may also be bounded.
511     * Bounds for the commonPool (see COMMON_MAX_SPARES) better enable
512     * JVMs to cope with programming errors and abuse before running
513     * out of resources to do so.
514 jsr166 1.301 *
515 dl 1.105 * Common Pool
516     * ===========
517     *
518 jsr166 1.175 * The static common pool always exists after static
519 dl 1.105 * initialization. Since it (or any other created pool) need
520     * never be used, we minimize initial construction overhead and
521 dl 1.300 * footprint to the setup of about a dozen fields.
522 dl 1.105 *
523     * When external threads submit to the common pool, they can
524 dl 1.200 * perform subtask processing (see externalHelpComplete and
525     * related methods) upon joins. This caller-helps policy makes it
526     * sensible to set common pool parallelism level to one (or more)
527     * less than the total number of available cores, or even zero for
528     * pure caller-runs. We do not need to record whether external
529     * submissions are to the common pool -- if not, external help
530     * methods return quickly. These submitters would otherwise be
531     * blocked waiting for completion, so the extra effort (with
532     * liberally sprinkled task status checks) in inapplicable cases
533     * amounts to an odd form of limited spin-wait before blocking in
534     * ForkJoinTask.join.
535 dl 1.105 *
536 dl 1.197 * As a more appropriate default in managed environments, unless
537     * overridden by system properties, we use workers of subclass
538     * InnocuousForkJoinWorkerThread when there is a SecurityManager
539     * present. These workers have no permissions set, do not belong
540     * to any user-defined ThreadGroup, and erase all ThreadLocals
541 dl 1.300 * after executing any top-level task (see
542     * WorkQueue.afterTopLevelExec). The associated mechanics (mainly
543     * in ForkJoinWorkerThread) may be JVM-dependent and must access
544     * particular Thread class fields to achieve this effect.
545 jsr166 1.198 *
546 dl 1.105 * Style notes
547     * ===========
548     *
549 jsr166 1.315 * Memory ordering relies mainly on VarHandles. This can be
550     * awkward and ugly, but also reflects the need to control
551     * outcomes across the unusual cases that arise in very racy code
552 dl 1.319 * with very few invariants. All fields are read into locals
553     * before use, and null-checked if they are references. This is
554     * usually done in a "C"-like style of listing declarations at the
555     * heads of methods or blocks, and using inline assignments on
556     * first encounter. Nearly all explicit checks lead to
557     * bypass/return, not exception throws, because they may
558     * legitimately arise due to cancellation/revocation during
559     * shutdown.
560 dl 1.200 *
561 dl 1.105 * There is a lot of representation-level coupling among classes
562     * ForkJoinPool, ForkJoinWorkerThread, and ForkJoinTask. The
563     * fields of WorkQueue maintain data structures managed by
564     * ForkJoinPool, so are directly accessed. There is little point
565     * trying to reduce this, since any associated future changes in
566     * representations will need to be accompanied by algorithmic
567     * changes anyway. Several methods intrinsically sprawl because
568 dl 1.200 * they must accumulate sets of consistent reads of fields held in
569     * local variables. There are also other coding oddities
570     * (including several unnecessary-looking hoisted null checks)
571     * that help some methods perform reasonably even when interpreted
572     * (not compiled).
573 dl 1.52 *
574 dl 1.208 * The order of declarations in this file is (with a few exceptions):
575 dl 1.86 * (1) Static utility functions
576     * (2) Nested (static) classes
577     * (3) Static fields
578     * (4) Fields, along with constants used when unpacking some of them
579     * (5) Internal control methods
580     * (6) Callbacks and other support for ForkJoinTask methods
581     * (7) Exported methods
582     * (8) Static block initializing statics in minimally dependent order
583     */
584    
585     // Static utilities
586    
587     /**
588     * If there is a security manager, makes sure caller has
589     * permission to modify threads.
590 jsr166 1.1 */
591 dl 1.86 private static void checkPermission() {
592     SecurityManager security = System.getSecurityManager();
593     if (security != null)
594     security.checkPermission(modifyThreadPermission);
595     }
596    
597     // Nested classes
598 jsr166 1.1
599     /**
600 jsr166 1.8 * Factory for creating new {@link ForkJoinWorkerThread}s.
601     * A {@code ForkJoinWorkerThreadFactory} must be defined and used
602     * for {@code ForkJoinWorkerThread} subclasses that extend base
603     * functionality or initialize threads with different contexts.
604 jsr166 1.1 */
605     public static interface ForkJoinWorkerThreadFactory {
606     /**
607     * Returns a new worker thread operating in the given pool.
608 dl 1.300 * Returning null or throwing an exception may result in tasks
609     * never being executed. If this method throws an exception,
610     * it is relayed to the caller of the method (for example
611     * {@code execute}) causing attempted thread creation. If this
612     * method returns null or throws an exception, it is not
613     * retried until the next attempted creation (for example
614     * another call to {@code execute}).
615 jsr166 1.1 *
616     * @param pool the pool this thread works in
617 jsr166 1.296 * @return the new worker thread, or {@code null} if the request
618 jsr166 1.331 * to create a thread is rejected
619 jsr166 1.11 * @throws NullPointerException if the pool is null
620 jsr166 1.1 */
621     public ForkJoinWorkerThread newThread(ForkJoinPool pool);
622     }
623    
624 jsr166 1.331 static AccessControlContext contextWithPermissions(Permission ... perms) {
625     Permissions permissions = new Permissions();
626     for (Permission perm : perms)
627     permissions.add(perm);
628     return new AccessControlContext(
629     new ProtectionDomain[] { new ProtectionDomain(null, permissions) });
630     }
631    
632 jsr166 1.1 /**
633     * Default ForkJoinWorkerThreadFactory implementation; creates a
634 jsr166 1.331 * new ForkJoinWorkerThread using the system class loader as the
635     * thread context class loader.
636 jsr166 1.1 */
637 jsr166 1.278 private static final class DefaultForkJoinWorkerThreadFactory
638 jsr166 1.1 implements ForkJoinWorkerThreadFactory {
639 jsr166 1.331 private static final AccessControlContext ACC = contextWithPermissions(
640     new RuntimePermission("getClassLoader"),
641     new RuntimePermission("setContextClassLoader"));
642    
643 dl 1.112 public final ForkJoinWorkerThread newThread(ForkJoinPool pool) {
644 jsr166 1.331 return AccessController.doPrivileged(
645     new PrivilegedAction<>() {
646     public ForkJoinWorkerThread run() {
647     return new ForkJoinWorkerThread(
648     pool, ClassLoader.getSystemClassLoader()); }},
649     ACC);
650 jsr166 1.1 }
651     }
652    
653 dl 1.200 // Constants shared across ForkJoinPool and WorkQueue
654    
655     // Bounds
656 dl 1.300 static final int SWIDTH = 16; // width of short
657 dl 1.200 static final int SMASK = 0xffff; // short bits == max index
658     static final int MAX_CAP = 0x7fff; // max #workers - 1
659     static final int SQMASK = 0x007e; // max 64 (even) slots
660    
661 dl 1.300 // Masks and units for WorkQueue.phase and ctl sp subfield
662 dl 1.243 static final int UNSIGNALLED = 1 << 31; // must be negative
663 dl 1.211 static final int SS_SEQ = 1 << 16; // version count
664 dl 1.300 static final int QLOCK = 1; // must be 1
665 dl 1.200
666 dl 1.300 // Mode bits and sentinels, some also used in WorkQueue id and.source fields
667     static final int OWNED = 1; // queue has owner thread
668     static final int FIFO = 1 << 16; // fifo queue or access mode
669     static final int SHUTDOWN = 1 << 18;
670     static final int TERMINATED = 1 << 19;
671     static final int STOP = 1 << 31; // must be negative
672     static final int QUIET = 1 << 30; // not scanning or working
673     static final int DORMANT = QUIET | UNSIGNALLED;
674    
675     /**
676     * The maximum number of local polls from the same queue before
677     * checking others. This is a safeguard against infinitely unfair
678     * looping under unbounded user task recursion, and must be larger
679     * than plausible cases of intentional bounded task recursion.
680 dl 1.253 */
681 dl 1.300 static final int POLL_LIMIT = 1 << 10;
682 dl 1.253
683     /**
684 dl 1.78 * Queues supporting work-stealing as well as external task
685 jsr166 1.202 * submission. See above for descriptions and algorithms.
686 dl 1.78 * Performance on most platforms is very sensitive to placement of
687     * instances of both WorkQueues and their arrays -- we absolutely
688     * do not want multiple WorkQueue instances or multiple queue
689 dl 1.200 * arrays sharing cache lines. The @Contended annotation alerts
690     * JVMs to try to keep instances apart.
691 dl 1.78 */
692 dl 1.308 @jdk.internal.vm.annotation.Contended
693 dl 1.78 static final class WorkQueue {
694 dl 1.200
695 dl 1.78 /**
696     * Capacity of work-stealing queue array upon initialization.
697 dl 1.90 * Must be a power of two; at least 4, but should be larger to
698     * reduce or eliminate cacheline sharing among queues.
699     * Currently, it is much larger, as a partial workaround for
700     * the fact that JVMs often place arrays in locations that
701     * share GC bookkeeping (especially cardmarks) such that
702     * per-write accesses encounter serious memory contention.
703 dl 1.78 */
704 dl 1.90 static final int INITIAL_QUEUE_CAPACITY = 1 << 13;
705 dl 1.78
706     /**
707     * Maximum size for queue arrays. Must be a power of two less
708     * than or equal to 1 << (31 - width of array entry) to ensure
709     * lack of wraparound of index calculations, but defined to a
710     * value a bit less than this to help users trap runaway
711     * programs before saturating systems.
712     */
713     static final int MAXIMUM_QUEUE_CAPACITY = 1 << 26; // 64M
714    
715 dl 1.200 // Instance fields
716 dl 1.300 volatile int phase; // versioned, negative: queued, 1: locked
717     int stackPred; // pool stack (ctl) predecessor link
718 dl 1.178 int nsteals; // number of steals
719 dl 1.300 int id; // index, mode, tag
720     volatile int source; // source queue id, or sentinel
721 dl 1.78 volatile int base; // index of next slot for poll
722     int top; // index of next slot for push
723     ForkJoinTask<?>[] array; // the elements (initially unallocated)
724 dl 1.90 final ForkJoinPool pool; // the containing pool (may be null)
725 dl 1.78 final ForkJoinWorkerThread owner; // owning thread or null if shared
726 dl 1.112
727 dl 1.200 WorkQueue(ForkJoinPool pool, ForkJoinWorkerThread owner) {
728 dl 1.90 this.pool = pool;
729 dl 1.78 this.owner = owner;
730 dl 1.115 // Place indices in the center of array (that is not yet allocated)
731 dl 1.78 base = top = INITIAL_QUEUE_CAPACITY >>> 1;
732     }
733    
734     /**
735 jsr166 1.220 * Returns an exportable index (used by ForkJoinWorkerThread).
736 dl 1.200 */
737     final int getPoolIndex() {
738 dl 1.300 return (id & 0xffff) >>> 1; // ignore odd/even tag bit
739 dl 1.200 }
740    
741     /**
742 dl 1.115 * Returns the approximate number of tasks in the queue.
743     */
744     final int queueSize() {
745 dl 1.243 int n = base - top; // read base first
746 dl 1.115 return (n >= 0) ? 0 : -n; // ignore transient negative
747     }
748    
749 jsr166 1.180 /**
750 dl 1.115 * Provides a more accurate estimate of whether this queue has
751     * any tasks than does queueSize, by checking whether a
752     * near-empty queue has at least one unclaimed task.
753     */
754     final boolean isEmpty() {
755 dl 1.300 ForkJoinTask<?>[] a; int n, al, b;
756     return ((n = (b = base) - top) >= 0 || // possibly one task
757 dl 1.243 (n == -1 && ((a = array) == null ||
758     (al = a.length) == 0 ||
759 dl 1.300 a[(al - 1) & b] == null)));
760 dl 1.115 }
761    
762 dl 1.300
763 dl 1.115 /**
764 dl 1.256 * Pushes a task. Call only by owner in unshared queues.
765 dl 1.78 *
766     * @param task the task. Caller must ensure non-null.
767 jsr166 1.146 * @throws RejectedExecutionException if array cannot be resized
768 dl 1.78 */
769 dl 1.90 final void push(ForkJoinTask<?> task) {
770 dl 1.300 int s = top; ForkJoinTask<?>[] a; int al, d;
771 dl 1.243 if ((a = array) != null && (al = a.length) > 0) {
772 dl 1.300 int index = (al - 1) & s;
773     ForkJoinPool p = pool;
774 dl 1.243 top = s + 1;
775 dl 1.314 QA.setRelease(a, index, task);
776 dl 1.292 if ((d = base - s) == 0 && p != null) {
777 dl 1.314 VarHandle.fullFence();
778 dl 1.253 p.signalWork();
779 dl 1.284 }
780 dl 1.300 else if (d + al == 1)
781 dl 1.243 growArray();
782 dl 1.78 }
783     }
784    
785 dl 1.178 /**
786 dl 1.112 * Initializes or doubles the capacity of array. Call either
787     * by owner or with lock held -- it is OK for base, but not
788     * top, to move while resizings are in progress.
789     */
790     final ForkJoinTask<?>[] growArray() {
791     ForkJoinTask<?>[] oldA = array;
792 dl 1.300 int oldSize = oldA != null ? oldA.length : 0;
793     int size = oldSize > 0 ? oldSize << 1 : INITIAL_QUEUE_CAPACITY;
794 dl 1.225 if (size < INITIAL_QUEUE_CAPACITY || size > MAXIMUM_QUEUE_CAPACITY)
795 dl 1.112 throw new RejectedExecutionException("Queue capacity exceeded");
796     int oldMask, t, b;
797     ForkJoinTask<?>[] a = array = new ForkJoinTask<?>[size];
798 dl 1.300 if (oldA != null && (oldMask = oldSize - 1) > 0 &&
799 dl 1.112 (t = top) - (b = base) > 0) {
800     int mask = size - 1;
801 dl 1.200 do { // emulate poll from old array, push to new array
802 dl 1.256 int index = b & oldMask;
803 dl 1.243 ForkJoinTask<?> x = (ForkJoinTask<?>)
804 dl 1.316 QA.getAcquire(oldA, index);
805 dl 1.243 if (x != null &&
806 dl 1.314 QA.compareAndSet(oldA, index, x, null))
807 dl 1.243 a[b & mask] = x;
808 dl 1.112 } while (++b != t);
809 dl 1.314 VarHandle.releaseFence();
810 dl 1.78 }
811 dl 1.112 return a;
812 dl 1.78 }
813    
814     /**
815 dl 1.90 * Takes next task, if one exists, in LIFO order. Call only
816 dl 1.102 * by owner in unshared queues.
817 dl 1.90 */
818     final ForkJoinTask<?> pop() {
819 dl 1.243 int b = base, s = top, al, i; ForkJoinTask<?>[] a;
820 dl 1.256 if ((a = array) != null && b != s && (al = a.length) > 0) {
821     int index = (al - 1) & --s;
822 dl 1.262 ForkJoinTask<?> t = (ForkJoinTask<?>)
823 dl 1.314 QA.get(a, index);
824 dl 1.262 if (t != null &&
825 dl 1.314 QA.compareAndSet(a, index, t, null)) {
826 dl 1.256 top = s;
827 dl 1.314 VarHandle.releaseFence();
828 dl 1.78 return t;
829     }
830     }
831     return null;
832     }
833    
834     /**
835 dl 1.90 * Takes next task, if one exists, in FIFO order.
836 dl 1.78 */
837 dl 1.90 final ForkJoinTask<?> poll() {
838 dl 1.243 for (;;) {
839     int b = base, s = top, d, al; ForkJoinTask<?>[] a;
840     if ((a = array) != null && (d = b - s) < 0 &&
841     (al = a.length) > 0) {
842 dl 1.256 int index = (al - 1) & b;
843 dl 1.243 ForkJoinTask<?> t = (ForkJoinTask<?>)
844 dl 1.316 QA.getAcquire(a, index);
845 dl 1.243 if (b++ == base) {
846     if (t != null) {
847 dl 1.314 if (QA.compareAndSet(a, index, t, null)) {
848 dl 1.243 base = b;
849     return t;
850     }
851 dl 1.200 }
852 dl 1.243 else if (d == -1)
853     break; // now empty
854 dl 1.78 }
855 dl 1.90 }
856 dl 1.243 else
857     break;
858 dl 1.78 }
859     return null;
860     }
861    
862     /**
863     * Takes next task, if one exists, in order specified by mode.
864     */
865     final ForkJoinTask<?> nextLocalTask() {
866 dl 1.300 return ((id & FIFO) != 0) ? poll() : pop();
867 dl 1.78 }
868    
869     /**
870     * Returns next task, if one exists, in order specified by mode.
871     */
872     final ForkJoinTask<?> peek() {
873 dl 1.292 int al; ForkJoinTask<?>[] a;
874 dl 1.243 return ((a = array) != null && (al = a.length) > 0) ?
875 dl 1.300 a[(al - 1) &
876     ((id & FIFO) != 0 ? base : top - 1)] : null;
877 dl 1.78 }
878    
879     /**
880     * Pops the given task only if it is at the current top.
881 jsr166 1.251 */
882 dl 1.243 final boolean tryUnpush(ForkJoinTask<?> task) {
883 dl 1.256 int b = base, s = top, al; ForkJoinTask<?>[] a;
884     if ((a = array) != null && b != s && (al = a.length) > 0) {
885     int index = (al - 1) & --s;
886 dl 1.314 if (QA.compareAndSet(a, index, task, null)) {
887 dl 1.243 top = s;
888 dl 1.314 VarHandle.releaseFence();
889 dl 1.224 return true;
890     }
891 dl 1.78 }
892     return false;
893     }
894    
895     /**
896 jsr166 1.84 * Removes and cancels all known tasks, ignoring any exceptions.
897 dl 1.78 */
898     final void cancelAll() {
899 dl 1.300 for (ForkJoinTask<?> t; (t = poll()) != null; )
900 dl 1.78 ForkJoinTask.cancelIgnoringExceptions(t);
901     }
902    
903 dl 1.104 // Specialized execution methods
904 dl 1.78
905     /**
906 dl 1.300 * Pops and executes up to limit consecutive tasks or until empty.
907     *
908     * @param limit max runs, or zero for no limit
909 dl 1.253 */
910 dl 1.300 final void localPopAndExec(int limit) {
911     for (;;) {
912 dl 1.253 int b = base, s = top, al; ForkJoinTask<?>[] a;
913     if ((a = array) != null && b != s && (al = a.length) > 0) {
914 dl 1.256 int index = (al - 1) & --s;
915 dl 1.253 ForkJoinTask<?> t = (ForkJoinTask<?>)
916 dl 1.314 QA.getAndSet(a, index, null);
917 dl 1.253 if (t != null) {
918     top = s;
919 dl 1.314 VarHandle.releaseFence();
920 dl 1.300 t.doExec();
921     if (limit != 0 && --limit == 0)
922 dl 1.253 break;
923     }
924     else
925     break;
926     }
927     else
928     break;
929     }
930     }
931    
932     /**
933 dl 1.300 * Polls and executes up to limit consecutive tasks or until empty.
934     *
935     * @param limit, or zero for no limit
936 dl 1.253 */
937 dl 1.300 final void localPollAndExec(int limit) {
938     for (int polls = 0;;) {
939     int b = base, s = top, d, al; ForkJoinTask<?>[] a;
940     if ((a = array) != null && (d = b - s) < 0 &&
941     (al = a.length) > 0) {
942 dl 1.256 int index = (al - 1) & b++;
943 dl 1.253 ForkJoinTask<?> t = (ForkJoinTask<?>)
944 dl 1.314 QA.getAndSet(a, index, null);
945 dl 1.253 if (t != null) {
946     base = b;
947 dl 1.255 t.doExec();
948 dl 1.300 if (limit != 0 && ++polls == limit)
949 dl 1.253 break;
950     }
951 dl 1.300 else if (d == -1)
952     break; // now empty
953     else
954     polls = 0; // stolen; reset
955 dl 1.253 }
956     else
957     break;
958     }
959     }
960    
961     /**
962 jsr166 1.302 * If present, removes task from queue and executes it.
963 dl 1.94 */
964 dl 1.300 final void tryRemoveAndExec(ForkJoinTask<?> task) {
965     ForkJoinTask<?>[] wa; int s, wal;
966     if (base - (s = top) < 0 && // traverse from top
967     (wa = array) != null && (wal = wa.length) > 0) {
968     for (int m = wal - 1, ns = s - 1, i = ns; ; --i) {
969     int index = i & m;
970     ForkJoinTask<?> t = (ForkJoinTask<?>)
971 dl 1.314 QA.get(wa, index);
972 dl 1.300 if (t == null)
973     break;
974     else if (t == task) {
975 dl 1.314 if (QA.compareAndSet(wa, index, t, null)) {
976 dl 1.300 top = ns; // safely shift down
977     for (int j = i; j != ns; ++j) {
978     ForkJoinTask<?> f;
979     int pindex = (j + 1) & m;
980 dl 1.314 f = (ForkJoinTask<?>)QA.get(wa, pindex);
981     QA.setVolatile(wa, pindex, null);
982 dl 1.300 int jindex = j & m;
983 dl 1.314 QA.setRelease(wa, jindex, f);
984 dl 1.300 }
985 dl 1.314 VarHandle.releaseFence();
986 dl 1.300 t.doExec();
987     }
988     break;
989     }
990 dl 1.262 }
991 dl 1.215 }
992     }
993    
994     /**
995 dl 1.300 * Tries to steal and run tasks within the target's
996 jsr166 1.302 * computation until done, not found, or limit exceeded.
997 dl 1.94 *
998 dl 1.300 * @param task root of CountedCompleter computation
999     * @param limit max runs, or zero for no limit
1000     * @return task status on exit
1001     */
1002     final int localHelpCC(CountedCompleter<?> task, int limit) {
1003     int status = 0;
1004     if (task != null && (status = task.status) >= 0) {
1005     for (;;) {
1006     boolean help = false;
1007     int b = base, s = top, al; ForkJoinTask<?>[] a;
1008     if ((a = array) != null && b != s && (al = a.length) > 0) {
1009     int index = (al - 1) & (s - 1);
1010     ForkJoinTask<?> o = (ForkJoinTask<?>)
1011 dl 1.314 QA.get(a, index);
1012 dl 1.300 if (o instanceof CountedCompleter) {
1013     CountedCompleter<?> t = (CountedCompleter<?>)o;
1014     for (CountedCompleter<?> f = t;;) {
1015     if (f != task) {
1016     if ((f = f.completer) == null) // try parent
1017     break;
1018     }
1019     else {
1020 dl 1.314 if (QA.compareAndSet(a, index, t, null)) {
1021 dl 1.300 top = s - 1;
1022 dl 1.314 VarHandle.releaseFence();
1023 dl 1.300 t.doExec();
1024     help = true;
1025     }
1026     break;
1027 dl 1.200 }
1028     }
1029 dl 1.243 }
1030 dl 1.104 }
1031 dl 1.300 if ((status = task.status) < 0 || !help ||
1032     (limit != 0 && --limit == 0))
1033     break;
1034 dl 1.104 }
1035     }
1036 dl 1.300 return status;
1037     }
1038    
1039     // Operations on shared queues
1040    
1041     /**
1042 jsr166 1.302 * Tries to lock shared queue by CASing phase field.
1043 dl 1.300 */
1044     final boolean tryLockSharedQueue() {
1045 dl 1.314 return PHASE.compareAndSet(this, 0, QLOCK);
1046 dl 1.104 }
1047    
1048     /**
1049 dl 1.300 * Shared version of tryUnpush.
1050 dl 1.78 */
1051 dl 1.300 final boolean trySharedUnpush(ForkJoinTask<?> task) {
1052     boolean popped = false;
1053     int s = top - 1, al; ForkJoinTask<?>[] a;
1054     if ((a = array) != null && (al = a.length) > 0) {
1055     int index = (al - 1) & s;
1056 dl 1.314 ForkJoinTask<?> t = (ForkJoinTask<?>) QA.get(a, index);
1057 dl 1.300 if (t == task &&
1058 dl 1.314 PHASE.compareAndSet(this, 0, QLOCK)) {
1059 dl 1.300 if (top == s + 1 && array == a &&
1060 dl 1.314 QA.compareAndSet(a, index, task, null)) {
1061 dl 1.300 popped = true;
1062     top = s;
1063 dl 1.178 }
1064 dl 1.314 PHASE.setRelease(this, 0);
1065 dl 1.94 }
1066 dl 1.78 }
1067 dl 1.300 return popped;
1068 dl 1.78 }
1069    
1070     /**
1071 dl 1.300 * Shared version of localHelpCC.
1072     */
1073     final int sharedHelpCC(CountedCompleter<?> task, int limit) {
1074     int status = 0;
1075     if (task != null && (status = task.status) >= 0) {
1076     for (;;) {
1077     boolean help = false;
1078     int b = base, s = top, al; ForkJoinTask<?>[] a;
1079     if ((a = array) != null && b != s && (al = a.length) > 0) {
1080     int index = (al - 1) & (s - 1);
1081     ForkJoinTask<?> o = (ForkJoinTask<?>)
1082 dl 1.314 QA.get(a, index);
1083 dl 1.300 if (o instanceof CountedCompleter) {
1084     CountedCompleter<?> t = (CountedCompleter<?>)o;
1085     for (CountedCompleter<?> f = t;;) {
1086     if (f != task) {
1087     if ((f = f.completer) == null)
1088     break;
1089     }
1090     else {
1091 dl 1.314 if (PHASE.compareAndSet(this, 0, QLOCK)) {
1092 dl 1.300 if (top == s && array == a &&
1093 dl 1.314 QA.compareAndSet(a, index, t, null)) {
1094 dl 1.300 help = true;
1095     top = s - 1;
1096     }
1097 dl 1.314 PHASE.setRelease(this, 0);
1098 dl 1.300 if (help)
1099     t.doExec();
1100     }
1101     break;
1102     }
1103 dl 1.243 }
1104 dl 1.200 }
1105 dl 1.178 }
1106 dl 1.300 if ((status = task.status) < 0 || !help ||
1107     (limit != 0 && --limit == 0))
1108     break;
1109 dl 1.178 }
1110 dl 1.78 }
1111 dl 1.300 return status;
1112 dl 1.78 }
1113    
1114     /**
1115 dl 1.86 * Returns true if owned and not known to be blocked.
1116     */
1117     final boolean isApparentlyUnblocked() {
1118     Thread wt; Thread.State s;
1119 dl 1.300 return ((wt = owner) != null &&
1120 dl 1.86 (s = wt.getState()) != Thread.State.BLOCKED &&
1121     s != Thread.State.WAITING &&
1122     s != Thread.State.TIMED_WAITING);
1123     }
1124    
1125 dl 1.314 // VarHandle mechanics.
1126     private static final VarHandle PHASE;
1127 dl 1.78 static {
1128     try {
1129 dl 1.314 MethodHandles.Lookup l = MethodHandles.lookup();
1130     PHASE = l.findVarHandle(WorkQueue.class, "phase", int.class);
1131 jsr166 1.231 } catch (ReflectiveOperationException e) {
1132 dl 1.78 throw new Error(e);
1133     }
1134     }
1135     }
1136 dl 1.14
1137 dl 1.112 // static fields (initialized in static initializer below)
1138    
1139     /**
1140     * Creates a new ForkJoinWorkerThread. This factory is used unless
1141     * overridden in ForkJoinPool constructors.
1142     */
1143     public static final ForkJoinWorkerThreadFactory
1144     defaultForkJoinWorkerThreadFactory;
1145    
1146 jsr166 1.1 /**
1147 dl 1.115 * Permission required for callers of methods that may start or
1148 dl 1.300 * kill threads.
1149 dl 1.115 */
1150 jsr166 1.276 static final RuntimePermission modifyThreadPermission;
1151 dl 1.115
1152     /**
1153 dl 1.101 * Common (static) pool. Non-null for public use unless a static
1154 dl 1.105 * construction exception, but internal usages null-check on use
1155     * to paranoically avoid potential initialization circularities
1156     * as well as to simplify generated code.
1157 dl 1.101 */
1158 dl 1.134 static final ForkJoinPool common;
1159 dl 1.101
1160     /**
1161 dl 1.160 * Common pool parallelism. To allow simpler use and management
1162     * when common pool threads are disabled, we allow the underlying
1163 dl 1.185 * common.parallelism field to be zero, but in that case still report
1164 dl 1.160 * parallelism as 1 to reflect resulting caller-runs mechanics.
1165 dl 1.90 */
1166 jsr166 1.274 static final int COMMON_PARALLELISM;
1167 dl 1.90
1168     /**
1169 dl 1.208 * Limit on spare thread construction in tryCompensate.
1170     */
1171 jsr166 1.273 private static final int COMMON_MAX_SPARES;
1172 dl 1.208
1173     /**
1174 dl 1.105 * Sequence number for creating workerNamePrefix.
1175 dl 1.86 */
1176 dl 1.105 private static int poolNumberSequence;
1177 dl 1.86
1178 jsr166 1.1 /**
1179 jsr166 1.132 * Returns the next sequence number. We don't expect this to
1180     * ever contend, so use simple builtin sync.
1181 dl 1.83 */
1182 dl 1.105 private static final synchronized int nextPoolId() {
1183     return ++poolNumberSequence;
1184     }
1185 dl 1.86
1186 dl 1.200 // static configuration constants
1187 dl 1.86
1188     /**
1189 dl 1.300 * Default idle timeout value (in milliseconds) for the thread
1190     * triggering quiescence to park waiting for new work
1191 dl 1.86 */
1192 jsr166 1.326 private static final long DEFAULT_KEEPALIVE = 60_000L;
1193 dl 1.86
1194     /**
1195 dl 1.300 * Undershoot tolerance for idle timeouts
1196 dl 1.120 */
1197 dl 1.300 private static final long TIMEOUT_SLOP = 20L;
1198 dl 1.200
1199     /**
1200 jsr166 1.273 * The default value for COMMON_MAX_SPARES. Overridable using the
1201     * "java.util.concurrent.ForkJoinPool.common.maximumSpares" system
1202     * property. The default value is far in excess of normal
1203     * requirements, but also far short of MAX_CAP and typical OS
1204     * thread limits, so allows JVMs to catch misuse/abuse before
1205     * running out of resources needed to do so.
1206 dl 1.200 */
1207 dl 1.208 private static final int DEFAULT_COMMON_MAX_SPARES = 256;
1208 dl 1.120
1209     /**
1210 dl 1.90 * Increment for seed generators. See class ThreadLocal for
1211     * explanation.
1212     */
1213 dl 1.193 private static final int SEED_INCREMENT = 0x9e3779b9;
1214 dl 1.83
1215 jsr166 1.163 /*
1216 dl 1.200 * Bits and masks for field ctl, packed with 4 16 bit subfields:
1217 dl 1.300 * RC: Number of released (unqueued) workers minus target parallelism
1218 dl 1.200 * TC: Number of total workers minus target parallelism
1219     * SS: version count and status of top waiting thread
1220     * ID: poolIndex of top of Treiber stack of waiters
1221     *
1222     * When convenient, we can extract the lower 32 stack top bits
1223     * (including version bits) as sp=(int)ctl. The offsets of counts
1224     * by the target parallelism and the positionings of fields makes
1225     * it possible to perform the most common checks via sign tests of
1226 dl 1.300 * fields: When ac is negative, there are not enough unqueued
1227 dl 1.200 * workers, when tc is negative, there are not enough total
1228     * workers. When sp is non-zero, there are waiting workers. To
1229     * deal with possibly negative fields, we use casts in and out of
1230     * "short" and/or signed shifts to maintain signedness.
1231     *
1232 dl 1.300 * Because it occupies uppermost bits, we can add one release count
1233     * using getAndAddLong of RC_UNIT, rather than CAS, when returning
1234 dl 1.200 * from a blocked join. Other updates entail multiple subfields
1235     * and masking, requiring CAS.
1236 dl 1.300 *
1237     * The limits packed in field "bounds" are also offset by the
1238     * parallelism level to make them comparable to the ctl rc and tc
1239     * fields.
1240 dl 1.200 */
1241    
1242     // Lower and upper word masks
1243     private static final long SP_MASK = 0xffffffffL;
1244     private static final long UC_MASK = ~SP_MASK;
1245 dl 1.86
1246 dl 1.300 // Release counts
1247     private static final int RC_SHIFT = 48;
1248     private static final long RC_UNIT = 0x0001L << RC_SHIFT;
1249     private static final long RC_MASK = 0xffffL << RC_SHIFT;
1250 dl 1.200
1251     // Total counts
1252 dl 1.86 private static final int TC_SHIFT = 32;
1253 dl 1.200 private static final long TC_UNIT = 0x0001L << TC_SHIFT;
1254     private static final long TC_MASK = 0xffffL << TC_SHIFT;
1255     private static final long ADD_WORKER = 0x0001L << (TC_SHIFT + 15); // sign
1256    
1257 dl 1.300 // Instance fields
1258 dl 1.86
1259 dl 1.300 volatile long stealCount; // collects worker nsteals
1260     final long keepAlive; // milliseconds before dropping if idle
1261     int indexSeed; // next worker index
1262     final int bounds; // min, max threads packed as shorts
1263     volatile int mode; // parallelism, runstate, queue mode
1264     WorkQueue[] workQueues; // main registry
1265     final String workerNamePrefix; // for worker thread string; sync lock
1266 dl 1.112 final ForkJoinWorkerThreadFactory factory;
1267 dl 1.200 final UncaughtExceptionHandler ueh; // per-worker UEH
1268 dl 1.307 final Predicate<? super ForkJoinPool> saturate;
1269 dl 1.101
1270 dl 1.308 @jdk.internal.vm.annotation.Contended("fjpctl") // segregate
1271     volatile long ctl; // main pool control
1272 jsr166 1.309
1273 dl 1.200 // Creating, registering and deregistering workers
1274    
1275 dl 1.112 /**
1276 dl 1.200 * Tries to construct and start one worker. Assumes that total
1277     * count has already been incremented as a reservation. Invokes
1278     * deregisterWorker on any failure.
1279     *
1280     * @return true if successful
1281 dl 1.115 */
1282 dl 1.300 private boolean createWorker() {
1283 dl 1.200 ForkJoinWorkerThreadFactory fac = factory;
1284     Throwable ex = null;
1285     ForkJoinWorkerThread wt = null;
1286     try {
1287     if (fac != null && (wt = fac.newThread(this)) != null) {
1288     wt.start();
1289     return true;
1290 dl 1.115 }
1291 dl 1.200 } catch (Throwable rex) {
1292     ex = rex;
1293 dl 1.112 }
1294 dl 1.200 deregisterWorker(wt, ex);
1295     return false;
1296 dl 1.112 }
1297    
1298 dl 1.200 /**
1299     * Tries to add one worker, incrementing ctl counts before doing
1300     * so, relying on createWorker to back out on failure.
1301     *
1302     * @param c incoming ctl value, with total count negative and no
1303     * idle workers. On CAS failure, c is refreshed and retried if
1304 jsr166 1.202 * this holds (otherwise, a new worker is not needed).
1305 dl 1.200 */
1306     private void tryAddWorker(long c) {
1307     do {
1308 dl 1.300 long nc = ((RC_MASK & (c + RC_UNIT)) |
1309 dl 1.200 (TC_MASK & (c + TC_UNIT)));
1310 dl 1.314 if (ctl == c && CTL.compareAndSet(this, c, nc)) {
1311 dl 1.300 createWorker();
1312 dl 1.243 break;
1313 dl 1.200 }
1314     } while (((c = ctl) & ADD_WORKER) != 0L && (int)c == 0);
1315     }
1316 dl 1.112
1317     /**
1318 dl 1.200 * Callback from ForkJoinWorkerThread constructor to establish and
1319     * record its WorkQueue.
1320 dl 1.112 *
1321     * @param wt the worker thread
1322 dl 1.115 * @return the worker's queue
1323 dl 1.112 */
1324 dl 1.115 final WorkQueue registerWorker(ForkJoinWorkerThread wt) {
1325 dl 1.200 UncaughtExceptionHandler handler;
1326 dl 1.300 wt.setDaemon(true); // configure thread
1327 dl 1.115 if ((handler = ueh) != null)
1328     wt.setUncaughtExceptionHandler(handler);
1329 dl 1.200 WorkQueue w = new WorkQueue(this, wt);
1330 dl 1.300 int tid = 0; // for thread name
1331     int fifo = mode & FIFO;
1332     String prefix = workerNamePrefix;
1333     if (prefix != null) {
1334 jsr166 1.301 synchronized (prefix) {
1335 dl 1.300 WorkQueue[] ws = workQueues; int n;
1336     int s = indexSeed += SEED_INCREMENT;
1337     if (ws != null && (n = ws.length) > 1) {
1338     int m = n - 1;
1339     tid = s & m;
1340     int i = m & ((s << 1) | 1); // odd-numbered indices
1341     for (int probes = n >>> 1;;) { // find empty slot
1342     WorkQueue q;
1343     if ((q = ws[i]) == null || q.phase == QUIET)
1344     break;
1345     else if (--probes == 0) {
1346     i = n | 1; // resize below
1347     break;
1348     }
1349     else
1350     i = (i + 2) & m;
1351     }
1352    
1353     int id = i | fifo | (s & ~(SMASK | FIFO | DORMANT));
1354     w.phase = w.id = id; // now publishable
1355    
1356     if (i < n)
1357     ws[i] = w;
1358     else { // expand array
1359     int an = n << 1;
1360     WorkQueue[] as = new WorkQueue[an];
1361     as[i] = w;
1362     int am = an - 1;
1363     for (int j = 0; j < n; ++j) {
1364     WorkQueue v; // copy external queue
1365     if ((v = ws[j]) != null) // position may change
1366     as[v.id & am & SQMASK] = v;
1367     if (++j >= n)
1368     break;
1369     as[j] = ws[j]; // copy worker
1370 dl 1.94 }
1371 dl 1.300 workQueues = as;
1372 dl 1.94 }
1373     }
1374 dl 1.78 }
1375 dl 1.300 wt.setName(prefix.concat(Integer.toString(tid)));
1376 dl 1.78 }
1377 dl 1.115 return w;
1378 dl 1.78 }
1379 dl 1.19
1380 jsr166 1.1 /**
1381 dl 1.86 * Final callback from terminating worker, as well as upon failure
1382 dl 1.105 * to construct or start a worker. Removes record of worker from
1383     * array, and adjusts counts. If pool is shutting down, tries to
1384     * complete termination.
1385 dl 1.78 *
1386 jsr166 1.151 * @param wt the worker thread, or null if construction failed
1387 dl 1.78 * @param ex the exception causing failure, or null if none
1388 dl 1.45 */
1389 dl 1.78 final void deregisterWorker(ForkJoinWorkerThread wt, Throwable ex) {
1390     WorkQueue w = null;
1391 dl 1.300 int phase = 0;
1392 dl 1.78 if (wt != null && (w = wt.workQueue) != null) {
1393 dl 1.300 Object lock = workerNamePrefix;
1394     long ns = (long)w.nsteals & 0xffffffffL;
1395     int idx = w.id & SMASK;
1396     if (lock != null) {
1397     WorkQueue[] ws; // remove index from array
1398 jsr166 1.301 synchronized (lock) {
1399 dl 1.243 if ((ws = workQueues) != null && ws.length > idx &&
1400     ws[idx] == w)
1401     ws[idx] = null;
1402 dl 1.300 stealCount += ns;
1403 dl 1.243 }
1404     }
1405 dl 1.300 phase = w.phase;
1406 dl 1.243 }
1407 dl 1.300 if (phase != QUIET) { // else pre-adjusted
1408 dl 1.243 long c; // decrement counts
1409 jsr166 1.325 do {} while (!CTL.weakCompareAndSet
1410 dl 1.314 (this, c = ctl, ((RC_MASK & (c - RC_UNIT)) |
1411     (TC_MASK & (c - TC_UNIT)) |
1412     (SP_MASK & c))));
1413 dl 1.243 }
1414 dl 1.300 if (w != null)
1415 dl 1.200 w.cancelAll(); // cancel remaining tasks
1416 dl 1.300
1417     if (!tryTerminate(false, false) && // possibly replace worker
1418     w != null && w.array != null) // avoid repeated failures
1419     signalWork();
1420    
1421 dl 1.200 if (ex == null) // help clean on way out
1422 dl 1.120 ForkJoinTask.helpExpungeStaleExceptions();
1423 dl 1.200 else // rethrow
1424 dl 1.104 ForkJoinTask.rethrow(ex);
1425 dl 1.78 }
1426 dl 1.52
1427 dl 1.19 /**
1428 dl 1.300 * Tries to create or release a worker if too few are running.
1429 dl 1.105 */
1430 dl 1.253 final void signalWork() {
1431 dl 1.243 for (;;) {
1432 dl 1.300 long c; int sp; WorkQueue[] ws; int i; WorkQueue v;
1433 dl 1.243 if ((c = ctl) >= 0L) // enough workers
1434     break;
1435     else if ((sp = (int)c) == 0) { // no idle workers
1436     if ((c & ADD_WORKER) != 0L) // too few workers
1437 dl 1.200 tryAddWorker(c);
1438     break;
1439     }
1440 dl 1.243 else if ((ws = workQueues) == null)
1441     break; // unstarted/terminated
1442     else if (ws.length <= (i = sp & SMASK))
1443     break; // terminated
1444     else if ((v = ws[i]) == null)
1445     break; // terminating
1446     else {
1447 dl 1.300 int np = sp & ~UNSIGNALLED;
1448     int vp = v.phase;
1449     long nc = (v.stackPred & SP_MASK) | (UC_MASK & (c + RC_UNIT));
1450     Thread vt = v.owner;
1451 dl 1.314 if (sp == vp && CTL.compareAndSet(this, c, nc)) {
1452 dl 1.300 v.phase = np;
1453     if (v.source < 0)
1454     LockSupport.unpark(vt);
1455 dl 1.243 break;
1456     }
1457 dl 1.174 }
1458 dl 1.52 }
1459 dl 1.14 }
1460    
1461 dl 1.200 /**
1462 dl 1.300 * Tries to decrement counts (sometimes implicitly) and possibly
1463     * arrange for a compensating worker in preparation for blocking:
1464     * If not all core workers yet exist, creates one, else if any are
1465     * unreleased (possibly including caller) releases one, else if
1466     * fewer than the minimum allowed number of workers running,
1467     * checks to see that they are all active, and if so creates an
1468     * extra worker unless over maximum limit and policy is to
1469     * saturate. Most of these steps can fail due to interference, in
1470     * which case 0 is returned so caller will retry. A negative
1471     * return value indicates that the caller doesn't need to
1472     * re-adjust counts when later unblocked.
1473 dl 1.243 *
1474 dl 1.300 * @return 1: block then adjust, -1: block without adjust, 0 : retry
1475 dl 1.243 */
1476 dl 1.300 private int tryCompensate(WorkQueue w) {
1477     int t, n, sp;
1478     long c = ctl;
1479     WorkQueue[] ws = workQueues;
1480 dl 1.310 if ((t = (short)(c >>> TC_SHIFT)) >= 0) {
1481 dl 1.300 if (ws == null || (n = ws.length) <= 0 || w == null)
1482     return 0; // disabled
1483     else if ((sp = (int)c) != 0) { // replace or release
1484     WorkQueue v = ws[sp & (n - 1)];
1485     int wp = w.phase;
1486     long uc = UC_MASK & ((wp < 0) ? c + RC_UNIT : c);
1487     int np = sp & ~UNSIGNALLED;
1488     if (v != null) {
1489     int vp = v.phase;
1490     Thread vt = v.owner;
1491     long nc = ((long)v.stackPred & SP_MASK) | uc;
1492 dl 1.314 if (vp == sp && CTL.compareAndSet(this, c, nc)) {
1493 dl 1.300 v.phase = np;
1494     if (v.source < 0)
1495     LockSupport.unpark(vt);
1496     return (wp < 0) ? -1 : 1;
1497     }
1498     }
1499     return 0;
1500     }
1501     else if ((int)(c >> RC_SHIFT) - // reduce parallelism
1502     (short)(bounds & SMASK) > 0) {
1503     long nc = ((RC_MASK & (c - RC_UNIT)) | (~RC_MASK & c));
1504 dl 1.314 return CTL.compareAndSet(this, c, nc) ? 1 : 0;
1505 dl 1.300 }
1506     else { // validate
1507     int md = mode, pc = md & SMASK, tc = pc + t, bc = 0;
1508     boolean unstable = false;
1509     for (int i = 1; i < n; i += 2) {
1510     WorkQueue q; Thread wt; Thread.State ts;
1511     if ((q = ws[i]) != null) {
1512     if (q.source == 0) {
1513     unstable = true;
1514     break;
1515     }
1516     else {
1517     --tc;
1518     if ((wt = q.owner) != null &&
1519     ((ts = wt.getState()) == Thread.State.BLOCKED ||
1520     ts == Thread.State.WAITING))
1521     ++bc; // worker is blocking
1522     }
1523 dl 1.243 }
1524     }
1525 dl 1.300 if (unstable || tc != 0 || ctl != c)
1526     return 0; // inconsistent
1527     else if (t + pc >= MAX_CAP || t >= (bounds >>> SWIDTH)) {
1528 dl 1.307 Predicate<? super ForkJoinPool> sat;
1529     if ((sat = saturate) != null && sat.test(this))
1530 dl 1.300 return -1;
1531     else if (bc < pc) { // lagging
1532     Thread.yield(); // for retry spins
1533     return 0;
1534 dl 1.243 }
1535     else
1536 dl 1.300 throw new RejectedExecutionException(
1537     "Thread limit exceeded replacing blocked worker");
1538 dl 1.200 }
1539 dl 1.177 }
1540 dl 1.243 }
1541 dl 1.300
1542     long nc = ((c + TC_UNIT) & TC_MASK) | (c & ~TC_MASK); // expand pool
1543 dl 1.314 return CTL.compareAndSet(this, c, nc) && createWorker() ? 1 : 0;
1544 dl 1.243 }
1545    
1546     /**
1547     * Top-level runloop for workers, called by ForkJoinWorkerThread.run.
1548 dl 1.300 * See above for explanation.
1549 dl 1.243 */
1550     final void runWorker(WorkQueue w) {
1551 dl 1.300 WorkQueue[] ws;
1552 dl 1.243 w.growArray(); // allocate queue
1553 dl 1.300 int r = w.id ^ ThreadLocalRandom.nextSecondarySeed();
1554     if (r == 0) // initial nonzero seed
1555     r = 1;
1556     int lastSignalId = 0; // avoid unneeded signals
1557     while ((ws = workQueues) != null) {
1558     boolean nonempty = false; // scan
1559     for (int n = ws.length, j = n, m = n - 1; j > 0; --j) {
1560     WorkQueue q; int i, b, al; ForkJoinTask<?>[] a;
1561     if ((i = r & m) >= 0 && i < n && // always true
1562     (q = ws[i]) != null && (b = q.base) - q.top < 0 &&
1563 dl 1.243 (a = q.array) != null && (al = a.length) > 0) {
1564 dl 1.300 int qid = q.id; // (never zero)
1565 dl 1.256 int index = (al - 1) & b;
1566 dl 1.243 ForkJoinTask<?> t = (ForkJoinTask<?>)
1567 dl 1.316 QA.getAcquire(a, index);
1568 dl 1.300 if (t != null && b++ == q.base &&
1569 dl 1.314 QA.compareAndSet(a, index, t, null)) {
1570 dl 1.300 if ((q.base = b) - q.top < 0 && qid != lastSignalId)
1571     signalWork(); // propagate signal
1572     w.source = lastSignalId = qid;
1573     t.doExec();
1574     if ((w.id & FIFO) != 0) // run remaining locals
1575     w.localPollAndExec(POLL_LIMIT);
1576     else
1577     w.localPopAndExec(POLL_LIMIT);
1578     ForkJoinWorkerThread thread = w.owner;
1579     ++w.nsteals;
1580     w.source = 0; // now idle
1581     if (thread != null)
1582     thread.afterTopLevelExec();
1583 dl 1.243 }
1584 dl 1.300 nonempty = true;
1585 dl 1.178 }
1586 dl 1.300 else if (nonempty)
1587 dl 1.243 break;
1588 dl 1.300 else
1589     ++r;
1590 dl 1.120 }
1591 dl 1.178
1592 dl 1.300 if (nonempty) { // move (xorshift)
1593     r ^= r << 13; r ^= r >>> 17; r ^= r << 5;
1594     }
1595     else {
1596     int phase;
1597     lastSignalId = 0; // clear for next scan
1598     if ((phase = w.phase) >= 0) { // enqueue
1599     int np = w.phase = (phase + SS_SEQ) | UNSIGNALLED;
1600     long c, nc;
1601     do {
1602     w.stackPred = (int)(c = ctl);
1603     nc = ((c - RC_UNIT) & UC_MASK) | (SP_MASK & np);
1604 jsr166 1.325 } while (!CTL.weakCompareAndSet(this, c, nc));
1605 dl 1.300 }
1606     else { // already queued
1607     int pred = w.stackPred;
1608     w.source = DORMANT; // enable signal
1609     for (int steps = 0;;) {
1610     int md, rc; long c;
1611     if (w.phase >= 0) {
1612     w.source = 0;
1613     break;
1614     }
1615     else if ((md = mode) < 0) // shutting down
1616     return;
1617     else if ((rc = ((md & SMASK) + // possibly quiescent
1618     (int)((c = ctl) >> RC_SHIFT))) <= 0 &&
1619     (md & SHUTDOWN) != 0 &&
1620     tryTerminate(false, false))
1621     return; // help terminate
1622     else if ((++steps & 1) == 0)
1623     Thread.interrupted(); // clear between parks
1624     else if (rc <= 0 && pred != 0 && phase == (int)c) {
1625     long d = keepAlive + System.currentTimeMillis();
1626     LockSupport.parkUntil(this, d);
1627     if (ctl == c &&
1628     d - System.currentTimeMillis() <= TIMEOUT_SLOP) {
1629     long nc = ((UC_MASK & (c - TC_UNIT)) |
1630     (SP_MASK & pred));
1631 dl 1.314 if (CTL.compareAndSet(this, c, nc)) {
1632 dl 1.300 w.phase = QUIET;
1633     return; // drop on timeout
1634     }
1635     }
1636     }
1637     else
1638     LockSupport.park(this);
1639     }
1640     }
1641     }
1642     }
1643     }
1644 dl 1.200
1645 dl 1.305 /**
1646     * Helps and/or blocks until the given task is done or timeout.
1647     * First tries locally helping, then scans other queues for a task
1648     * produced by one of w's stealers; compensating and blocking if
1649     * none are found (rescanning if tryCompensate fails).
1650     *
1651     * @param w caller
1652     * @param task the task
1653     * @param deadline for timed waits, if nonzero
1654     * @return task status on exit
1655     */
1656 dl 1.300 final int awaitJoin(WorkQueue w, ForkJoinTask<?> task, long deadline) {
1657     int s = 0;
1658     if (w != null && task != null &&
1659     (!(task instanceof CountedCompleter) ||
1660     (s = w.localHelpCC((CountedCompleter<?>)task, 0)) >= 0)) {
1661     w.tryRemoveAndExec(task);
1662     int src = w.source, id = w.id;
1663     s = task.status;
1664     while (s >= 0) {
1665     WorkQueue[] ws;
1666     boolean nonempty = false;
1667     int r = ThreadLocalRandom.nextSecondarySeed() | 1; // odd indices
1668     if ((ws = workQueues) != null) { // scan for matching id
1669     for (int n = ws.length, m = n - 1, j = -n; j < n; j += 2) {
1670     WorkQueue q; int i, b, al; ForkJoinTask<?>[] a;
1671     if ((i = (r + j) & m) >= 0 && i < n &&
1672     (q = ws[i]) != null && q.source == id &&
1673     (b = q.base) - q.top < 0 &&
1674     (a = q.array) != null && (al = a.length) > 0) {
1675     int qid = q.id;
1676     int index = (al - 1) & b;
1677     ForkJoinTask<?> t = (ForkJoinTask<?>)
1678 dl 1.316 QA.getAcquire(a, index);
1679 dl 1.300 if (t != null && b++ == q.base && id == q.source &&
1680 dl 1.314 QA.compareAndSet(a, index, t, null)) {
1681 dl 1.300 q.base = b;
1682     w.source = qid;
1683     t.doExec();
1684     w.source = src;
1685     }
1686     nonempty = true;
1687 dl 1.200 break;
1688 dl 1.300 }
1689 dl 1.200 }
1690 dl 1.300 }
1691     if ((s = task.status) < 0)
1692     break;
1693     else if (!nonempty) {
1694     long ms, ns; int block;
1695     if (deadline == 0L)
1696     ms = 0L; // untimed
1697     else if ((ns = deadline - System.nanoTime()) <= 0L)
1698     break; // timeout
1699     else if ((ms = TimeUnit.NANOSECONDS.toMillis(ns)) <= 0L)
1700     ms = 1L; // avoid 0 for timed wait
1701     if ((block = tryCompensate(w)) != 0) {
1702     task.internalWait(ms);
1703 dl 1.314 CTL.getAndAdd(this, (block > 0) ? RC_UNIT : 0L);
1704 dl 1.200 }
1705 dl 1.300 s = task.status;
1706 dl 1.200 }
1707 dl 1.178 }
1708     }
1709 dl 1.200 return s;
1710 dl 1.120 }
1711    
1712     /**
1713 dl 1.300 * Runs tasks until {@code isQuiescent()}. Rather than blocking
1714     * when tasks cannot be found, rescans until all others cannot
1715     * find tasks either.
1716 dl 1.78 */
1717 dl 1.300 final void helpQuiescePool(WorkQueue w) {
1718     int prevSrc = w.source, fifo = w.id & FIFO;
1719     for (int source = prevSrc, released = -1;;) { // -1 until known
1720     WorkQueue[] ws;
1721     if (fifo != 0)
1722     w.localPollAndExec(0);
1723     else
1724     w.localPopAndExec(0);
1725     if (released == -1 && w.phase >= 0)
1726     released = 1;
1727     boolean quiet = true, empty = true;
1728     int r = ThreadLocalRandom.nextSecondarySeed();
1729     if ((ws = workQueues) != null) {
1730     for (int n = ws.length, j = n, m = n - 1; j > 0; --j) {
1731     WorkQueue q; int i, b, al; ForkJoinTask<?>[] a;
1732     if ((i = (r - j) & m) >= 0 && i < n && (q = ws[i]) != null) {
1733     if ((b = q.base) - q.top < 0 &&
1734     (a = q.array) != null && (al = a.length) > 0) {
1735     int qid = q.id;
1736     if (released == 0) { // increment
1737     released = 1;
1738 dl 1.314 CTL.getAndAdd(this, RC_UNIT);
1739 dl 1.95 }
1740 dl 1.256 int index = (al - 1) & b;
1741 dl 1.300 ForkJoinTask<?> t = (ForkJoinTask<?>)
1742 dl 1.316 QA.getAcquire(a, index);
1743 dl 1.300 if (t != null && b++ == q.base &&
1744 dl 1.314 QA.compareAndSet(a, index, t, null)) {
1745 dl 1.300 q.base = b;
1746     w.source = source = q.id;
1747     t.doExec();
1748     w.source = source = prevSrc;
1749 dl 1.243 }
1750 dl 1.300 quiet = empty = false;
1751 dl 1.200 break;
1752 dl 1.95 }
1753 dl 1.300 else if ((q.source & QUIET) == 0)
1754     quiet = false;
1755 dl 1.52 }
1756 dl 1.19 }
1757 dl 1.243 }
1758 dl 1.300 if (quiet) {
1759     if (released == 0)
1760 dl 1.314 CTL.getAndAdd(this, RC_UNIT);
1761 dl 1.300 w.source = prevSrc;
1762     break;
1763     }
1764     else if (empty) {
1765     if (source != QUIET)
1766     w.source = source = QUIET;
1767     if (released == 1) { // decrement
1768     released = 0;
1769 dl 1.314 CTL.getAndAdd(this, RC_MASK & -RC_UNIT);
1770 dl 1.300 }
1771     }
1772 dl 1.14 }
1773 dl 1.22 }
1774    
1775 dl 1.52 /**
1776 dl 1.300 * Scans for and returns a polled task, if available.
1777     * Used only for untracked polls.
1778 dl 1.105 *
1779 dl 1.300 * @param submissionsOnly if true, only scan submission queues
1780 dl 1.19 */
1781 dl 1.300 private ForkJoinTask<?> pollScan(boolean submissionsOnly) {
1782     WorkQueue[] ws; int n;
1783     rescan: while ((mode & STOP) == 0 && (ws = workQueues) != null &&
1784     (n = ws.length) > 0) {
1785     int m = n - 1;
1786     int r = ThreadLocalRandom.nextSecondarySeed();
1787     int h = r >>> 16;
1788     int origin, step;
1789     if (submissionsOnly) {
1790     origin = (r & ~1) & m; // even indices and steps
1791     step = (h & ~1) | 2;
1792     }
1793     else {
1794     origin = r & m;
1795     step = h | 1;
1796     }
1797     for (int k = origin, oldSum = 0, checkSum = 0;;) {
1798     WorkQueue q; int b, al; ForkJoinTask<?>[] a;
1799     if ((q = ws[k]) != null) {
1800     checkSum += b = q.base;
1801     if (b - q.top < 0 &&
1802     (a = q.array) != null && (al = a.length) > 0) {
1803     int index = (al - 1) & b;
1804     ForkJoinTask<?> t = (ForkJoinTask<?>)
1805 dl 1.316 QA.getAcquire(a, index);
1806 dl 1.300 if (t != null && b++ == q.base &&
1807 dl 1.314 QA.compareAndSet(a, index, t, null)) {
1808 dl 1.300 q.base = b;
1809     return t;
1810     }
1811     else
1812     break; // restart
1813     }
1814     }
1815     if ((k = (k + step) & m) == origin) {
1816     if (oldSum == (oldSum = checkSum))
1817     break rescan;
1818     checkSum = 0;
1819 dl 1.178 }
1820 dl 1.52 }
1821 dl 1.90 }
1822 dl 1.300 return null;
1823     }
1824    
1825     /**
1826     * Gets and removes a local or stolen task for the given worker.
1827     *
1828     * @return a task, if available
1829     */
1830     final ForkJoinTask<?> nextTaskFor(WorkQueue w) {
1831     ForkJoinTask<?> t;
1832     if (w != null &&
1833     (t = (w.id & FIFO) != 0 ? w.poll() : w.pop()) != null)
1834     return t;
1835     else
1836     return pollScan(false);
1837 dl 1.90 }
1838    
1839 dl 1.300 // External operations
1840    
1841 dl 1.90 /**
1842 dl 1.300 * Adds the given task to a submission queue at submitter's
1843     * current queue, creating one if null or contended.
1844 dl 1.90 *
1845 dl 1.300 * @param task the task. Caller must ensure non-null.
1846 dl 1.90 */
1847 dl 1.300 final void externalPush(ForkJoinTask<?> task) {
1848     int r; // initialize caller's probe
1849     if ((r = ThreadLocalRandom.getProbe()) == 0) {
1850     ThreadLocalRandom.localInit();
1851     r = ThreadLocalRandom.getProbe();
1852     }
1853     for (;;) {
1854     int md = mode, n;
1855     WorkQueue[] ws = workQueues;
1856     if ((md & SHUTDOWN) != 0 || ws == null || (n = ws.length) <= 0)
1857     throw new RejectedExecutionException();
1858     else {
1859     WorkQueue q;
1860     boolean push = false, grow = false;
1861     if ((q = ws[(n - 1) & r & SQMASK]) == null) {
1862     Object lock = workerNamePrefix;
1863     int qid = (r | QUIET) & ~(FIFO | OWNED);
1864     q = new WorkQueue(this, null);
1865     q.id = qid;
1866     q.source = QUIET;
1867     q.phase = QLOCK; // lock queue
1868     if (lock != null) {
1869 jsr166 1.301 synchronized (lock) { // lock pool to install
1870 dl 1.300 int i;
1871     if ((ws = workQueues) != null &&
1872     (n = ws.length) > 0 &&
1873     ws[i = qid & (n - 1) & SQMASK] == null) {
1874     ws[i] = q;
1875     push = grow = true;
1876     }
1877     }
1878     }
1879     }
1880     else if (q.tryLockSharedQueue()) {
1881     int b = q.base, s = q.top, al, d; ForkJoinTask<?>[] a;
1882     if ((a = q.array) != null && (al = a.length) > 0 &&
1883     al - 1 + (d = b - s) > 0) {
1884     a[(al - 1) & s] = task;
1885     q.top = s + 1; // relaxed writes OK here
1886     q.phase = 0;
1887 dl 1.311 if (d < 0 && q.base - s < -1)
1888 dl 1.300 break; // no signal needed
1889     }
1890 dl 1.243 else
1891 dl 1.300 grow = true;
1892     push = true;
1893     }
1894     if (push) {
1895     if (grow) {
1896     try {
1897     q.growArray();
1898     int s = q.top, al; ForkJoinTask<?>[] a;
1899     if ((a = q.array) != null && (al = a.length) > 0) {
1900     a[(al - 1) & s] = task;
1901     q.top = s + 1;
1902     }
1903     } finally {
1904     q.phase = 0;
1905     }
1906 dl 1.243 }
1907 dl 1.300 signalWork();
1908     break;
1909 dl 1.90 }
1910 dl 1.300 else // move if busy
1911     r = ThreadLocalRandom.advanceProbe(r);
1912 dl 1.90 }
1913     }
1914     }
1915    
1916 dl 1.300 /**
1917     * Pushes a possibly-external submission.
1918     */
1919     private <T> ForkJoinTask<T> externalSubmit(ForkJoinTask<T> task) {
1920     Thread t; ForkJoinWorkerThread w; WorkQueue q;
1921     if (task == null)
1922     throw new NullPointerException();
1923     if (((t = Thread.currentThread()) instanceof ForkJoinWorkerThread) &&
1924     (w = (ForkJoinWorkerThread)t).pool == this &&
1925     (q = w.workQueue) != null)
1926     q.push(task);
1927     else
1928     externalPush(task);
1929     return task;
1930     }
1931    
1932     /**
1933     * Returns common pool queue for an external thread.
1934     */
1935     static WorkQueue commonSubmitterQueue() {
1936     ForkJoinPool p = common;
1937     int r = ThreadLocalRandom.getProbe();
1938     WorkQueue[] ws; int n;
1939     return (p != null && (ws = p.workQueues) != null &&
1940     (n = ws.length) > 0) ?
1941     ws[(n - 1) & r & SQMASK] : null;
1942     }
1943 dl 1.90
1944     /**
1945 dl 1.300 * Performs tryUnpush for an external submitter.
1946     */
1947     final boolean tryExternalUnpush(ForkJoinTask<?> task) {
1948     int r = ThreadLocalRandom.getProbe();
1949     WorkQueue[] ws; WorkQueue w; int n;
1950     return ((ws = workQueues) != null &&
1951     (n = ws.length) > 0 &&
1952     (w = ws[(n - 1) & r & SQMASK]) != null &&
1953     w.trySharedUnpush(task));
1954 dl 1.22 }
1955    
1956     /**
1957 dl 1.300 * Performs helpComplete for an external submitter.
1958 dl 1.78 */
1959 dl 1.300 final int externalHelpComplete(CountedCompleter<?> task, int maxTasks) {
1960     int r = ThreadLocalRandom.getProbe();
1961     WorkQueue[] ws; WorkQueue w; int n;
1962     return ((ws = workQueues) != null && (n = ws.length) > 0 &&
1963     (w = ws[(n - 1) & r & SQMASK]) != null) ?
1964     w.sharedHelpCC(task, maxTasks) : 0;
1965 dl 1.22 }
1966    
1967     /**
1968 dl 1.300 * Tries to steal and run tasks within the target's computation.
1969     * The maxTasks argument supports external usages; internal calls
1970     * use zero, allowing unbounded steps (external calls trap
1971     * non-positive values).
1972 dl 1.78 *
1973 dl 1.300 * @param w caller
1974     * @param maxTasks if non-zero, the maximum number of other tasks to run
1975     * @return task status on exit
1976 dl 1.22 */
1977 dl 1.300 final int helpComplete(WorkQueue w, CountedCompleter<?> task,
1978     int maxTasks) {
1979     return (w == null) ? 0 : w.localHelpCC(task, maxTasks);
1980 dl 1.14 }
1981    
1982     /**
1983 dl 1.105 * Returns a cheap heuristic guide for task partitioning when
1984     * programmers, frameworks, tools, or languages have little or no
1985 jsr166 1.222 * idea about task granularity. In essence, by offering this
1986 dl 1.105 * method, we ask users only about tradeoffs in overhead vs
1987     * expected throughput and its variance, rather than how finely to
1988     * partition tasks.
1989     *
1990     * In a steady state strict (tree-structured) computation, each
1991     * thread makes available for stealing enough tasks for other
1992     * threads to remain active. Inductively, if all threads play by
1993     * the same rules, each thread should make available only a
1994     * constant number of tasks.
1995     *
1996     * The minimum useful constant is just 1. But using a value of 1
1997     * would require immediate replenishment upon each steal to
1998     * maintain enough tasks, which is infeasible. Further,
1999     * partitionings/granularities of offered tasks should minimize
2000     * steal rates, which in general means that threads nearer the top
2001     * of computation tree should generate more than those nearer the
2002     * bottom. In perfect steady state, each thread is at
2003     * approximately the same level of computation tree. However,
2004     * producing extra tasks amortizes the uncertainty of progress and
2005     * diffusion assumptions.
2006     *
2007 jsr166 1.161 * So, users will want to use values larger (but not much larger)
2008 dl 1.105 * than 1 to both smooth over transient shortages and hedge
2009     * against uneven progress; as traded off against the cost of
2010     * extra task overhead. We leave the user to pick a threshold
2011     * value to compare with the results of this call to guide
2012     * decisions, but recommend values such as 3.
2013     *
2014     * When all threads are active, it is on average OK to estimate
2015     * surplus strictly locally. In steady-state, if one thread is
2016     * maintaining say 2 surplus tasks, then so are others. So we can
2017     * just use estimated queue length. However, this strategy alone
2018     * leads to serious mis-estimates in some non-steady-state
2019     * conditions (ramp-up, ramp-down, other stalls). We can detect
2020     * many of these by further considering the number of "idle"
2021     * threads, that are known to have zero queued tasks, so
2022     * compensate by a factor of (#idle/#active) threads.
2023     */
2024     static int getSurplusQueuedTaskCount() {
2025     Thread t; ForkJoinWorkerThread wt; ForkJoinPool pool; WorkQueue q;
2026 dl 1.300 if (((t = Thread.currentThread()) instanceof ForkJoinWorkerThread) &&
2027     (pool = (wt = (ForkJoinWorkerThread)t).pool) != null &&
2028     (q = wt.workQueue) != null) {
2029     int p = pool.mode & SMASK;
2030     int a = p + (int)(pool.ctl >> RC_SHIFT);
2031     int n = q.top - q.base;
2032 dl 1.112 return n - (a > (p >>>= 1) ? 0 :
2033     a > (p >>>= 1) ? 1 :
2034     a > (p >>>= 1) ? 2 :
2035     a > (p >>>= 1) ? 4 :
2036     8);
2037 dl 1.105 }
2038     return 0;
2039 dl 1.100 }
2040    
2041 dl 1.300 // Termination
2042 dl 1.14
2043     /**
2044 dl 1.210 * Possibly initiates and/or completes termination.
2045 dl 1.14 *
2046     * @param now if true, unconditionally terminate, else only
2047 dl 1.78 * if no work and no active workers
2048 dl 1.243 * @param enable if true, terminate when next possible
2049 dl 1.300 * @return true if terminating or terminated
2050 jsr166 1.1 */
2051 dl 1.300 private boolean tryTerminate(boolean now, boolean enable) {
2052     int md; // 3 phases: try to set SHUTDOWN, then STOP, then TERMINATED
2053 dl 1.289
2054 dl 1.300 while (((md = mode) & SHUTDOWN) == 0) {
2055 dl 1.294 if (!enable || this == common) // cannot shutdown
2056 dl 1.300 return false;
2057 dl 1.294 else
2058 dl 1.314 MODE.compareAndSet(this, md, md | SHUTDOWN);
2059 dl 1.289 }
2060    
2061 dl 1.300 while (((md = mode) & STOP) == 0) { // try to initiate termination
2062     if (!now) { // check if quiescent & empty
2063 dl 1.211 for (long oldSum = 0L;;) { // repeat until stable
2064 dl 1.300 boolean running = false;
2065 dl 1.210 long checkSum = ctl;
2066 dl 1.300 WorkQueue[] ws = workQueues;
2067     if ((md & SMASK) + (int)(checkSum >> RC_SHIFT) > 0)
2068     running = true;
2069     else if (ws != null) {
2070     WorkQueue w; int b;
2071 dl 1.289 for (int i = 0; i < ws.length; ++i) {
2072     if ((w = ws[i]) != null) {
2073 dl 1.300 checkSum += (b = w.base) + w.id;
2074     if (b != w.top ||
2075     ((i & 1) == 1 && w.source >= 0)) {
2076     running = true;
2077     break;
2078     }
2079 dl 1.289 }
2080 dl 1.206 }
2081 dl 1.203 }
2082 dl 1.300 if (((md = mode) & STOP) != 0)
2083     break; // already triggered
2084     else if (running)
2085     return false;
2086     else if (workQueues == ws && oldSum == (oldSum = checkSum))
2087 dl 1.210 break;
2088 dl 1.203 }
2089     }
2090 dl 1.300 if ((md & STOP) == 0)
2091 dl 1.314 MODE.compareAndSet(this, md, md | STOP);
2092 dl 1.200 }
2093 dl 1.210
2094 dl 1.300 while (((md = mode) & TERMINATED) == 0) { // help terminate others
2095     for (long oldSum = 0L;;) { // repeat until stable
2096     WorkQueue[] ws; WorkQueue w;
2097     long checkSum = ctl;
2098     if ((ws = workQueues) != null) {
2099     for (int i = 0; i < ws.length; ++i) {
2100     if ((w = ws[i]) != null) {
2101     ForkJoinWorkerThread wt = w.owner;
2102     w.cancelAll(); // clear queues
2103     if (wt != null) {
2104 dl 1.289 try { // unblock join or park
2105 dl 1.210 wt.interrupt();
2106     } catch (Throwable ignore) {
2107 dl 1.200 }
2108     }
2109 dl 1.300 checkSum += w.base + w.id;
2110 dl 1.200 }
2111 dl 1.101 }
2112 dl 1.78 }
2113 dl 1.300 if (((md = mode) & TERMINATED) != 0 ||
2114     (workQueues == ws && oldSum == (oldSum = checkSum)))
2115     break;
2116 dl 1.78 }
2117 dl 1.300 if ((md & TERMINATED) != 0)
2118     break;
2119     else if ((md & SMASK) + (short)(ctl >>> TC_SHIFT) > 0)
2120 dl 1.210 break;
2121 dl 1.314 else if (MODE.compareAndSet(this, md, md | TERMINATED)) {
2122 dl 1.300 synchronized (this) {
2123     notifyAll(); // for awaitTermination
2124 dl 1.243 }
2125 dl 1.256 break;
2126 dl 1.200 }
2127 dl 1.52 }
2128 dl 1.300 return true;
2129 dl 1.105 }
2130    
2131 dl 1.52 // Exported methods
2132 jsr166 1.1
2133     // Constructors
2134    
2135     /**
2136 jsr166 1.9 * Creates a {@code ForkJoinPool} with parallelism equal to {@link
2137 dl 1.300 * java.lang.Runtime#availableProcessors}, using defaults for all
2138 dl 1.319 * other parameters (see {@link #ForkJoinPool(int,
2139     * ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean,
2140     * int, int, int, Predicate, long, TimeUnit)}).
2141 jsr166 1.1 *
2142     * @throws SecurityException if a security manager exists and
2143     * the caller is not permitted to modify threads
2144     * because it does not hold {@link
2145     * java.lang.RuntimePermission}{@code ("modifyThread")}
2146     */
2147     public ForkJoinPool() {
2148 jsr166 1.148 this(Math.min(MAX_CAP, Runtime.getRuntime().availableProcessors()),
2149 dl 1.300 defaultForkJoinWorkerThreadFactory, null, false,
2150 dl 1.307 0, MAX_CAP, 1, null, DEFAULT_KEEPALIVE, TimeUnit.MILLISECONDS);
2151 jsr166 1.1 }
2152    
2153     /**
2154 jsr166 1.9 * Creates a {@code ForkJoinPool} with the indicated parallelism
2155 dl 1.319 * level, using defaults for all other parameters (see {@link
2156     * #ForkJoinPool(int, ForkJoinWorkerThreadFactory,
2157     * UncaughtExceptionHandler, boolean, int, int, int, Predicate,
2158     * long, TimeUnit)}).
2159 jsr166 1.1 *
2160 jsr166 1.9 * @param parallelism the parallelism level
2161 jsr166 1.1 * @throws IllegalArgumentException if parallelism less than or
2162 jsr166 1.11 * equal to zero, or greater than implementation limit
2163 jsr166 1.1 * @throws SecurityException if a security manager exists and
2164     * the caller is not permitted to modify threads
2165     * because it does not hold {@link
2166     * java.lang.RuntimePermission}{@code ("modifyThread")}
2167     */
2168     public ForkJoinPool(int parallelism) {
2169 dl 1.300 this(parallelism, defaultForkJoinWorkerThreadFactory, null, false,
2170 dl 1.307 0, MAX_CAP, 1, null, DEFAULT_KEEPALIVE, TimeUnit.MILLISECONDS);
2171 jsr166 1.1 }
2172    
2173     /**
2174 dl 1.300 * Creates a {@code ForkJoinPool} with the given parameters (using
2175 dl 1.319 * defaults for others -- see {@link #ForkJoinPool(int,
2176     * ForkJoinWorkerThreadFactory, UncaughtExceptionHandler, boolean,
2177     * int, int, int, Predicate, long, TimeUnit)}).
2178 jsr166 1.1 *
2179 dl 1.18 * @param parallelism the parallelism level. For default value,
2180     * use {@link java.lang.Runtime#availableProcessors}.
2181     * @param factory the factory for creating new threads. For default value,
2182     * use {@link #defaultForkJoinWorkerThreadFactory}.
2183 dl 1.19 * @param handler the handler for internal worker threads that
2184     * terminate due to unrecoverable errors encountered while executing
2185 jsr166 1.31 * tasks. For default value, use {@code null}.
2186 dl 1.19 * @param asyncMode if true,
2187 dl 1.18 * establishes local first-in-first-out scheduling mode for forked
2188     * tasks that are never joined. This mode may be more appropriate
2189     * than default locally stack-based mode in applications in which
2190     * worker threads only process event-style asynchronous tasks.
2191 jsr166 1.31 * For default value, use {@code false}.
2192 jsr166 1.1 * @throws IllegalArgumentException if parallelism less than or
2193 jsr166 1.11 * equal to zero, or greater than implementation limit
2194     * @throws NullPointerException if the factory is null
2195 jsr166 1.1 * @throws SecurityException if a security manager exists and
2196     * the caller is not permitted to modify threads
2197     * because it does not hold {@link
2198     * java.lang.RuntimePermission}{@code ("modifyThread")}
2199     */
2200 dl 1.19 public ForkJoinPool(int parallelism,
2201 dl 1.18 ForkJoinWorkerThreadFactory factory,
2202 jsr166 1.156 UncaughtExceptionHandler handler,
2203 dl 1.18 boolean asyncMode) {
2204 dl 1.300 this(parallelism, factory, handler, asyncMode,
2205 dl 1.307 0, MAX_CAP, 1, null, DEFAULT_KEEPALIVE, TimeUnit.MILLISECONDS);
2206 dl 1.152 }
2207    
2208 dl 1.300 /**
2209     * Creates a {@code ForkJoinPool} with the given parameters.
2210     *
2211     * @param parallelism the parallelism level. For default value,
2212     * use {@link java.lang.Runtime#availableProcessors}.
2213     *
2214     * @param factory the factory for creating new threads. For
2215     * default value, use {@link #defaultForkJoinWorkerThreadFactory}.
2216     *
2217     * @param handler the handler for internal worker threads that
2218     * terminate due to unrecoverable errors encountered while
2219     * executing tasks. For default value, use {@code null}.
2220     *
2221     * @param asyncMode if true, establishes local first-in-first-out
2222     * scheduling mode for forked tasks that are never joined. This
2223     * mode may be more appropriate than default locally stack-based
2224     * mode in applications in which worker threads only process
2225     * event-style asynchronous tasks. For default value, use {@code
2226     * false}.
2227     *
2228     * @param corePoolSize the number of threads to keep in the pool
2229     * (unless timed out after an elapsed keep-alive). Normally (and
2230     * by default) this is the same value as the parallelism level,
2231     * but may be set to a larger value to reduce dynamic overhead if
2232     * tasks regularly block. Using a smaller value (for example
2233     * {@code 0}) has the same effect as the default.
2234     *
2235     * @param maximumPoolSize the maximum number of threads allowed.
2236     * When the maximum is reached, attempts to replace blocked
2237     * threads fail. (However, because creation and termination of
2238     * different threads may overlap, and may be managed by the given
2239 dl 1.307 * thread factory, this value may be transiently exceeded.) To
2240     * arrange the same value as is used by default for the common
2241 dl 1.319 * pool, use {@code 256} plus the {@code parallelism} level. (By
2242     * default, the common pool allows a maximum of 256 spare
2243     * threads.) Using a value (for example {@code
2244     * Integer.MAX_VALUE}) larger than the implementation's total
2245     * thread limit has the same effect as using this limit (which is
2246     * the default).
2247 dl 1.300 *
2248     * @param minimumRunnable the minimum allowed number of core
2249     * threads not blocked by a join or {@link ManagedBlocker}. To
2250     * ensure progress, when too few unblocked threads exist and
2251     * unexecuted tasks may exist, new threads are constructed, up to
2252     * the given maximumPoolSize. For the default value, use {@code
2253     * 1}, that ensures liveness. A larger value might improve
2254     * throughput in the presence of blocked activities, but might
2255     * not, due to increased overhead. A value of zero may be
2256     * acceptable when submitted tasks cannot have dependencies
2257     * requiring additional threads.
2258     *
2259 jsr166 1.318 * @param saturate if non-null, a predicate invoked upon attempts
2260 dl 1.307 * to create more than the maximum total allowed threads. By
2261     * default, when a thread is about to block on a join or {@link
2262     * ManagedBlocker}, but cannot be replaced because the
2263     * maximumPoolSize would be exceeded, a {@link
2264     * RejectedExecutionException} is thrown. But if this predicate
2265     * returns {@code true}, then no exception is thrown, so the pool
2266     * continues to operate with fewer than the target number of
2267     * runnable threads, which might not ensure progress.
2268 dl 1.300 *
2269     * @param keepAliveTime the elapsed time since last use before
2270     * a thread is terminated (and then later replaced if needed).
2271     * For the default value, use {@code 60, TimeUnit.SECONDS}.
2272     *
2273     * @param unit the time unit for the {@code keepAliveTime} argument
2274     *
2275     * @throws IllegalArgumentException if parallelism is less than or
2276     * equal to zero, or is greater than implementation limit,
2277     * or if maximumPoolSize is less than parallelism,
2278     * of if the keepAliveTime is less than or equal to zero.
2279     * @throws NullPointerException if the factory is null
2280     * @throws SecurityException if a security manager exists and
2281     * the caller is not permitted to modify threads
2282     * because it does not hold {@link
2283     * java.lang.RuntimePermission}{@code ("modifyThread")}
2284 jsr166 1.306 * @since 9
2285 dl 1.300 */
2286     public ForkJoinPool(int parallelism,
2287     ForkJoinWorkerThreadFactory factory,
2288     UncaughtExceptionHandler handler,
2289     boolean asyncMode,
2290     int corePoolSize,
2291     int maximumPoolSize,
2292     int minimumRunnable,
2293 dl 1.307 Predicate<? super ForkJoinPool> saturate,
2294 dl 1.300 long keepAliveTime,
2295     TimeUnit unit) {
2296     // check, encode, pack parameters
2297     if (parallelism <= 0 || parallelism > MAX_CAP ||
2298     maximumPoolSize < parallelism || keepAliveTime <= 0L)
2299 dl 1.152 throw new IllegalArgumentException();
2300 dl 1.14 if (factory == null)
2301     throw new NullPointerException();
2302 dl 1.300 long ms = Math.max(unit.toMillis(keepAliveTime), TIMEOUT_SLOP);
2303    
2304     int corep = Math.min(Math.max(corePoolSize, parallelism), MAX_CAP);
2305     long c = ((((long)(-corep) << TC_SHIFT) & TC_MASK) |
2306     (((long)(-parallelism) << RC_SHIFT) & RC_MASK));
2307 dl 1.307 int m = parallelism | (asyncMode ? FIFO : 0);
2308 dl 1.300 int maxSpares = Math.min(maximumPoolSize, MAX_CAP) - parallelism;
2309     int minAvail = Math.min(Math.max(minimumRunnable, 0), MAX_CAP);
2310     int b = ((minAvail - parallelism) & SMASK) | (maxSpares << SWIDTH);
2311     int n = (parallelism > 1) ? parallelism - 1 : 1; // at least 2 slots
2312     n |= n >>> 1; n |= n >>> 2; n |= n >>> 4; n |= n >>> 8; n |= n >>> 16;
2313     n = (n + 1) << 1; // power of two, including space for submission queues
2314    
2315 jsr166 1.328 this.workerNamePrefix = "ForkJoinPool-" + nextPoolId() + "-worker-";
2316 dl 1.300 this.workQueues = new WorkQueue[n];
2317     this.factory = factory;
2318     this.ueh = handler;
2319 dl 1.307 this.saturate = saturate;
2320 dl 1.300 this.keepAlive = ms;
2321     this.bounds = b;
2322     this.mode = m;
2323     this.ctl = c;
2324     checkPermission();
2325 dl 1.152 }
2326    
2327 jsr166 1.327 private Object newInstanceFromSystemProperty(String property)
2328     throws ReflectiveOperationException {
2329     String className = System.getProperty(property);
2330     return (className == null)
2331     ? null
2332     : ClassLoader.getSystemClassLoader().loadClass(className)
2333     .getConstructor().newInstance();
2334     }
2335    
2336 dl 1.152 /**
2337 dl 1.300 * Constructor for common pool using parameters possibly
2338     * overridden by system properties
2339     */
2340     private ForkJoinPool(byte forCommonPoolOnly) {
2341     int parallelism = -1;
2342     ForkJoinWorkerThreadFactory fac = null;
2343     UncaughtExceptionHandler handler = null;
2344     try { // ignore exceptions in accessing/parsing properties
2345     String pp = System.getProperty
2346     ("java.util.concurrent.ForkJoinPool.common.parallelism");
2347     if (pp != null)
2348     parallelism = Integer.parseInt(pp);
2349 jsr166 1.327 fac = (ForkJoinWorkerThreadFactory) newInstanceFromSystemProperty(
2350     "java.util.concurrent.ForkJoinPool.common.threadFactory");
2351     handler = (UncaughtExceptionHandler) newInstanceFromSystemProperty(
2352     "java.util.concurrent.ForkJoinPool.common.exceptionHandler");
2353 dl 1.300 } catch (Exception ignore) {
2354     }
2355    
2356     if (fac == null) {
2357     if (System.getSecurityManager() == null)
2358     fac = defaultForkJoinWorkerThreadFactory;
2359     else // use security-managed default
2360     fac = new InnocuousForkJoinWorkerThreadFactory();
2361     }
2362     if (parallelism < 0 && // default 1 less than #cores
2363     (parallelism = Runtime.getRuntime().availableProcessors() - 1) <= 0)
2364     parallelism = 1;
2365     if (parallelism > MAX_CAP)
2366     parallelism = MAX_CAP;
2367    
2368     long c = ((((long)(-parallelism) << TC_SHIFT) & TC_MASK) |
2369     (((long)(-parallelism) << RC_SHIFT) & RC_MASK));
2370     int b = ((1 - parallelism) & SMASK) | (COMMON_MAX_SPARES << SWIDTH);
2371     int n = (parallelism > 1) ? parallelism - 1 : 1;
2372     n |= n >>> 1; n |= n >>> 2; n |= n >>> 4; n |= n >>> 8; n |= n >>> 16;
2373     n = (n + 1) << 1;
2374    
2375 jsr166 1.328 this.workerNamePrefix = "ForkJoinPool.commonPool-worker-";
2376 dl 1.300 this.workQueues = new WorkQueue[n];
2377     this.factory = fac;
2378 dl 1.18 this.ueh = handler;
2379 dl 1.307 this.saturate = null;
2380 dl 1.300 this.keepAlive = DEFAULT_KEEPALIVE;
2381     this.bounds = b;
2382 dl 1.310 this.mode = parallelism;
2383 dl 1.300 this.ctl = c;
2384 dl 1.101 }
2385    
2386     /**
2387 dl 1.128 * Returns the common pool instance. This pool is statically
2388 dl 1.134 * constructed; its run state is unaffected by attempts to {@link
2389     * #shutdown} or {@link #shutdownNow}. However this pool and any
2390     * ongoing processing are automatically terminated upon program
2391     * {@link System#exit}. Any program that relies on asynchronous
2392     * task processing to complete before program termination should
2393 jsr166 1.158 * invoke {@code commonPool().}{@link #awaitQuiescence awaitQuiescence},
2394     * before exit.
2395 dl 1.100 *
2396     * @return the common pool instance
2397 jsr166 1.138 * @since 1.8
2398 dl 1.100 */
2399     public static ForkJoinPool commonPool() {
2400 dl 1.134 // assert common != null : "static init error";
2401     return common;
2402 dl 1.100 }
2403    
2404 jsr166 1.1 // Execution methods
2405    
2406     /**
2407     * Performs the given task, returning its result upon completion.
2408 dl 1.52 * If the computation encounters an unchecked Exception or Error,
2409     * it is rethrown as the outcome of this invocation. Rethrown
2410     * exceptions behave in the same way as regular exceptions, but,
2411     * when possible, contain stack traces (as displayed for example
2412     * using {@code ex.printStackTrace()}) of both the current thread
2413     * as well as the thread actually encountering the exception;
2414     * minimally only the latter.
2415 jsr166 1.1 *
2416     * @param task the task
2417 jsr166 1.191 * @param <T> the type of the task's result
2418 jsr166 1.1 * @return the task's result
2419 jsr166 1.11 * @throws NullPointerException if the task is null
2420     * @throws RejectedExecutionException if the task cannot be
2421     * scheduled for execution
2422 jsr166 1.1 */
2423     public <T> T invoke(ForkJoinTask<T> task) {
2424 dl 1.90 if (task == null)
2425     throw new NullPointerException();
2426 dl 1.243 externalSubmit(task);
2427 dl 1.78 return task.join();
2428 jsr166 1.1 }
2429    
2430     /**
2431     * Arranges for (asynchronous) execution of the given task.
2432     *
2433     * @param task the task
2434 jsr166 1.11 * @throws NullPointerException if the task is null
2435     * @throws RejectedExecutionException if the task cannot be
2436     * scheduled for execution
2437 jsr166 1.1 */
2438 jsr166 1.8 public void execute(ForkJoinTask<?> task) {
2439 dl 1.243 externalSubmit(task);
2440 jsr166 1.1 }
2441    
2442     // AbstractExecutorService methods
2443    
2444 jsr166 1.11 /**
2445     * @throws NullPointerException if the task is null
2446     * @throws RejectedExecutionException if the task cannot be
2447     * scheduled for execution
2448     */
2449 jsr166 1.1 public void execute(Runnable task) {
2450 dl 1.41 if (task == null)
2451     throw new NullPointerException();
2452 jsr166 1.2 ForkJoinTask<?> job;
2453 jsr166 1.3 if (task instanceof ForkJoinTask<?>) // avoid re-wrap
2454     job = (ForkJoinTask<?>) task;
2455 jsr166 1.2 else
2456 dl 1.152 job = new ForkJoinTask.RunnableExecuteAction(task);
2457 dl 1.243 externalSubmit(job);
2458 jsr166 1.1 }
2459    
2460 jsr166 1.11 /**
2461 dl 1.18 * Submits a ForkJoinTask for execution.
2462     *
2463     * @param task the task to submit
2464 jsr166 1.191 * @param <T> the type of the task's result
2465 dl 1.18 * @return the task
2466     * @throws NullPointerException if the task is null
2467     * @throws RejectedExecutionException if the task cannot be
2468     * scheduled for execution
2469     */
2470     public <T> ForkJoinTask<T> submit(ForkJoinTask<T> task) {
2471 dl 1.243 return externalSubmit(task);
2472 dl 1.18 }
2473    
2474     /**
2475 jsr166 1.11 * @throws NullPointerException if the task is null
2476     * @throws RejectedExecutionException if the task cannot be
2477     * scheduled for execution
2478     */
2479 jsr166 1.1 public <T> ForkJoinTask<T> submit(Callable<T> task) {
2480 dl 1.243 return externalSubmit(new ForkJoinTask.AdaptedCallable<T>(task));
2481 jsr166 1.1 }
2482    
2483 jsr166 1.11 /**
2484     * @throws NullPointerException if the task is null
2485     * @throws RejectedExecutionException if the task cannot be
2486     * scheduled for execution
2487     */
2488 jsr166 1.1 public <T> ForkJoinTask<T> submit(Runnable task, T result) {
2489 dl 1.243 return externalSubmit(new ForkJoinTask.AdaptedRunnable<T>(task, result));
2490 jsr166 1.1 }
2491    
2492 jsr166 1.11 /**
2493     * @throws NullPointerException if the task is null
2494     * @throws RejectedExecutionException if the task cannot be
2495     * scheduled for execution
2496     */
2497 jsr166 1.1 public ForkJoinTask<?> submit(Runnable task) {
2498 dl 1.41 if (task == null)
2499     throw new NullPointerException();
2500 jsr166 1.2 ForkJoinTask<?> job;
2501 jsr166 1.3 if (task instanceof ForkJoinTask<?>) // avoid re-wrap
2502     job = (ForkJoinTask<?>) task;
2503 jsr166 1.2 else
2504 dl 1.90 job = new ForkJoinTask.AdaptedRunnableAction(task);
2505 dl 1.243 return externalSubmit(job);
2506 jsr166 1.1 }
2507    
2508     /**
2509 jsr166 1.11 * @throws NullPointerException {@inheritDoc}
2510     * @throws RejectedExecutionException {@inheritDoc}
2511     */
2512 jsr166 1.1 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) {
2513 dl 1.86 // In previous versions of this class, this method constructed
2514     // a task to run ForkJoinTask.invokeAll, but now external
2515     // invocation of multiple tasks is at least as efficient.
2516 jsr166 1.199 ArrayList<Future<T>> futures = new ArrayList<>(tasks.size());
2517 jsr166 1.1
2518 dl 1.86 try {
2519     for (Callable<T> t : tasks) {
2520 dl 1.90 ForkJoinTask<T> f = new ForkJoinTask.AdaptedCallable<T>(t);
2521 jsr166 1.144 futures.add(f);
2522 dl 1.243 externalSubmit(f);
2523 dl 1.86 }
2524 jsr166 1.143 for (int i = 0, size = futures.size(); i < size; i++)
2525     ((ForkJoinTask<?>)futures.get(i)).quietlyJoin();
2526 dl 1.86 return futures;
2527 jsr166 1.226 } catch (Throwable t) {
2528     for (int i = 0, size = futures.size(); i < size; i++)
2529     futures.get(i).cancel(false);
2530     throw t;
2531 jsr166 1.1 }
2532     }
2533    
2534     /**
2535     * Returns the factory used for constructing new workers.
2536     *
2537     * @return the factory used for constructing new workers
2538     */
2539     public ForkJoinWorkerThreadFactory getFactory() {
2540     return factory;
2541     }
2542    
2543     /**
2544     * Returns the handler for internal worker threads that terminate
2545     * due to unrecoverable errors encountered while executing tasks.
2546     *
2547 jsr166 1.4 * @return the handler, or {@code null} if none
2548 jsr166 1.1 */
2549 jsr166 1.156 public UncaughtExceptionHandler getUncaughtExceptionHandler() {
2550 dl 1.14 return ueh;
2551 jsr166 1.1 }
2552    
2553     /**
2554 jsr166 1.9 * Returns the targeted parallelism level of this pool.
2555 jsr166 1.1 *
2556 jsr166 1.9 * @return the targeted parallelism level of this pool
2557 jsr166 1.1 */
2558     public int getParallelism() {
2559 dl 1.310 int par = mode & SMASK;
2560     return (par > 0) ? par : 1;
2561 jsr166 1.1 }
2562    
2563     /**
2564 dl 1.100 * Returns the targeted parallelism level of the common pool.
2565     *
2566     * @return the targeted parallelism level of the common pool
2567 jsr166 1.138 * @since 1.8
2568 dl 1.100 */
2569     public static int getCommonPoolParallelism() {
2570 jsr166 1.274 return COMMON_PARALLELISM;
2571 dl 1.100 }
2572    
2573     /**
2574 jsr166 1.1 * Returns the number of worker threads that have started but not
2575 jsr166 1.34 * yet terminated. The result returned by this method may differ
2576 jsr166 1.4 * from {@link #getParallelism} when threads are created to
2577 jsr166 1.1 * maintain parallelism when others are cooperatively blocked.
2578     *
2579     * @return the number of worker threads
2580     */
2581     public int getPoolSize() {
2582 dl 1.300 return ((mode & SMASK) + (short)(ctl >>> TC_SHIFT));
2583 jsr166 1.1 }
2584    
2585     /**
2586 jsr166 1.4 * Returns {@code true} if this pool uses local first-in-first-out
2587 jsr166 1.1 * scheduling mode for forked tasks that are never joined.
2588     *
2589 jsr166 1.4 * @return {@code true} if this pool uses async mode
2590 jsr166 1.1 */
2591     public boolean getAsyncMode() {
2592 dl 1.300 return (mode & FIFO) != 0;
2593 jsr166 1.1 }
2594    
2595     /**
2596     * Returns an estimate of the number of worker threads that are
2597     * not blocked waiting to join tasks or for other managed
2598 dl 1.14 * synchronization. This method may overestimate the
2599     * number of running threads.
2600 jsr166 1.1 *
2601     * @return the number of worker threads
2602     */
2603     public int getRunningThreadCount() {
2604 dl 1.78 int rc = 0;
2605     WorkQueue[] ws; WorkQueue w;
2606     if ((ws = workQueues) != null) {
2607 dl 1.86 for (int i = 1; i < ws.length; i += 2) {
2608     if ((w = ws[i]) != null && w.isApparentlyUnblocked())
2609 dl 1.78 ++rc;
2610     }
2611     }
2612     return rc;
2613 jsr166 1.1 }
2614    
2615     /**
2616     * Returns an estimate of the number of threads that are currently
2617     * stealing or executing tasks. This method may overestimate the
2618     * number of active threads.
2619     *
2620     * @return the number of active threads
2621     */
2622     public int getActiveThreadCount() {
2623 dl 1.300 int r = (mode & SMASK) + (int)(ctl >> RC_SHIFT);
2624 jsr166 1.63 return (r <= 0) ? 0 : r; // suppress momentarily negative values
2625 jsr166 1.1 }
2626    
2627     /**
2628 jsr166 1.4 * Returns {@code true} if all worker threads are currently idle.
2629     * An idle worker is one that cannot obtain a task to execute
2630     * because none are available to steal from other threads, and
2631     * there are no pending submissions to the pool. This method is
2632     * conservative; it might not return {@code true} immediately upon
2633     * idleness of all threads, but will eventually become true if
2634     * threads remain inactive.
2635 jsr166 1.1 *
2636 jsr166 1.4 * @return {@code true} if all threads are currently idle
2637 jsr166 1.1 */
2638     public boolean isQuiescent() {
2639 dl 1.300 for (;;) {
2640     long c = ctl;
2641     int md = mode, pc = md & SMASK;
2642 dl 1.310 int tc = pc + (short)(c >>> TC_SHIFT);
2643 dl 1.300 int rc = pc + (int)(c >> RC_SHIFT);
2644     if ((md & (STOP | TERMINATED)) != 0)
2645     return true;
2646     else if (rc > 0)
2647     return false;
2648     else {
2649     WorkQueue[] ws; WorkQueue v;
2650     if ((ws = workQueues) != null) {
2651     for (int i = 1; i < ws.length; i += 2) {
2652     if ((v = ws[i]) != null) {
2653     if ((v.source & QUIET) == 0)
2654     return false;
2655     --tc;
2656     }
2657     }
2658     }
2659     if (tc == 0 && ctl == c)
2660     return true;
2661     }
2662     }
2663 jsr166 1.1 }
2664    
2665     /**
2666     * Returns an estimate of the total number of tasks stolen from
2667     * one thread's work queue by another. The reported value
2668     * underestimates the actual total number of steals when the pool
2669     * is not quiescent. This value may be useful for monitoring and
2670     * tuning fork/join programs: in general, steal counts should be
2671     * high enough to keep threads busy, but low enough to avoid
2672     * overhead and contention across threads.
2673     *
2674     * @return the number of steals
2675     */
2676     public long getStealCount() {
2677 dl 1.300 long count = stealCount;
2678 dl 1.78 WorkQueue[] ws; WorkQueue w;
2679     if ((ws = workQueues) != null) {
2680 dl 1.86 for (int i = 1; i < ws.length; i += 2) {
2681 dl 1.78 if ((w = ws[i]) != null)
2682 dl 1.300 count += (long)w.nsteals & 0xffffffffL;
2683 dl 1.78 }
2684     }
2685     return count;
2686 jsr166 1.1 }
2687    
2688     /**
2689     * Returns an estimate of the total number of tasks currently held
2690     * in queues by worker threads (but not including tasks submitted
2691     * to the pool that have not begun executing). This value is only
2692     * an approximation, obtained by iterating across all threads in
2693     * the pool. This method may be useful for tuning task
2694     * granularities.
2695     *
2696     * @return the number of queued tasks
2697     */
2698     public long getQueuedTaskCount() {
2699     long count = 0;
2700 dl 1.78 WorkQueue[] ws; WorkQueue w;
2701     if ((ws = workQueues) != null) {
2702 dl 1.86 for (int i = 1; i < ws.length; i += 2) {
2703 dl 1.78 if ((w = ws[i]) != null)
2704     count += w.queueSize();
2705     }
2706 dl 1.52 }
2707 jsr166 1.1 return count;
2708     }
2709    
2710     /**
2711 jsr166 1.8 * Returns an estimate of the number of tasks submitted to this
2712 dl 1.55 * pool that have not yet begun executing. This method may take
2713 dl 1.52 * time proportional to the number of submissions.
2714 jsr166 1.1 *
2715     * @return the number of queued submissions
2716     */
2717     public int getQueuedSubmissionCount() {
2718 dl 1.78 int count = 0;
2719     WorkQueue[] ws; WorkQueue w;
2720     if ((ws = workQueues) != null) {
2721 dl 1.86 for (int i = 0; i < ws.length; i += 2) {
2722 dl 1.78 if ((w = ws[i]) != null)
2723     count += w.queueSize();
2724     }
2725     }
2726     return count;
2727 jsr166 1.1 }
2728    
2729     /**
2730 jsr166 1.4 * Returns {@code true} if there are any tasks submitted to this
2731     * pool that have not yet begun executing.
2732 jsr166 1.1 *
2733     * @return {@code true} if there are any queued submissions
2734     */
2735     public boolean hasQueuedSubmissions() {
2736 dl 1.78 WorkQueue[] ws; WorkQueue w;
2737     if ((ws = workQueues) != null) {
2738 dl 1.86 for (int i = 0; i < ws.length; i += 2) {
2739 dl 1.115 if ((w = ws[i]) != null && !w.isEmpty())
2740 dl 1.78 return true;
2741     }
2742     }
2743     return false;
2744 jsr166 1.1 }
2745    
2746     /**
2747     * Removes and returns the next unexecuted submission if one is
2748     * available. This method may be useful in extensions to this
2749     * class that re-assign work in systems with multiple pools.
2750     *
2751 jsr166 1.4 * @return the next submission, or {@code null} if none
2752 jsr166 1.1 */
2753     protected ForkJoinTask<?> pollSubmission() {
2754 dl 1.300 return pollScan(true);
2755 jsr166 1.1 }
2756    
2757     /**
2758     * Removes all available unexecuted submitted and forked tasks
2759     * from scheduling queues and adds them to the given collection,
2760     * without altering their execution status. These may include
2761 jsr166 1.8 * artificially generated or wrapped tasks. This method is
2762     * designed to be invoked only when the pool is known to be
2763 jsr166 1.1 * quiescent. Invocations at other times may not remove all
2764     * tasks. A failure encountered while attempting to add elements
2765     * to collection {@code c} may result in elements being in
2766     * neither, either or both collections when the associated
2767     * exception is thrown. The behavior of this operation is
2768     * undefined if the specified collection is modified while the
2769     * operation is in progress.
2770     *
2771     * @param c the collection to transfer elements into
2772     * @return the number of elements transferred
2773     */
2774 jsr166 1.5 protected int drainTasksTo(Collection<? super ForkJoinTask<?>> c) {
2775 dl 1.52 int count = 0;
2776 dl 1.78 WorkQueue[] ws; WorkQueue w; ForkJoinTask<?> t;
2777     if ((ws = workQueues) != null) {
2778 dl 1.86 for (int i = 0; i < ws.length; ++i) {
2779 dl 1.78 if ((w = ws[i]) != null) {
2780     while ((t = w.poll()) != null) {
2781     c.add(t);
2782     ++count;
2783     }
2784     }
2785 dl 1.52 }
2786     }
2787 dl 1.18 return count;
2788     }
2789    
2790     /**
2791 jsr166 1.1 * Returns a string identifying this pool, as well as its state,
2792     * including indications of run state, parallelism level, and
2793     * worker and task counts.
2794     *
2795     * @return a string identifying this pool, as well as its state
2796     */
2797     public String toString() {
2798 dl 1.86 // Use a single pass through workQueues to collect counts
2799     long qt = 0L, qs = 0L; int rc = 0;
2800 dl 1.300 long st = stealCount;
2801 dl 1.86 WorkQueue[] ws; WorkQueue w;
2802     if ((ws = workQueues) != null) {
2803     for (int i = 0; i < ws.length; ++i) {
2804     if ((w = ws[i]) != null) {
2805     int size = w.queueSize();
2806     if ((i & 1) == 0)
2807     qs += size;
2808     else {
2809     qt += size;
2810 dl 1.300 st += (long)w.nsteals & 0xffffffffL;
2811 dl 1.86 if (w.isApparentlyUnblocked())
2812     ++rc;
2813     }
2814     }
2815     }
2816     }
2817 dl 1.300
2818     int md = mode;
2819     int pc = (md & SMASK);
2820     long c = ctl;
2821 dl 1.52 int tc = pc + (short)(c >>> TC_SHIFT);
2822 dl 1.300 int ac = pc + (int)(c >> RC_SHIFT);
2823 dl 1.78 if (ac < 0) // ignore transient negative
2824     ac = 0;
2825 dl 1.300 String level = ((md & TERMINATED) != 0 ? "Terminated" :
2826     (md & STOP) != 0 ? "Terminating" :
2827     (md & SHUTDOWN) != 0 ? "Shutting down" :
2828 dl 1.200 "Running");
2829 jsr166 1.1 return super.toString() +
2830 dl 1.52 "[" + level +
2831 dl 1.14 ", parallelism = " + pc +
2832     ", size = " + tc +
2833     ", active = " + ac +
2834     ", running = " + rc +
2835 jsr166 1.1 ", steals = " + st +
2836     ", tasks = " + qt +
2837     ", submissions = " + qs +
2838     "]";
2839     }
2840    
2841     /**
2842 dl 1.100 * Possibly initiates an orderly shutdown in which previously
2843     * submitted tasks are executed, but no new tasks will be
2844     * accepted. Invocation has no effect on execution state if this
2845 jsr166 1.137 * is the {@link #commonPool()}, and no additional effect if
2846 dl 1.100 * already shut down. Tasks that are in the process of being
2847     * submitted concurrently during the course of this method may or
2848     * may not be rejected.
2849 jsr166 1.1 *
2850     * @throws SecurityException if a security manager exists and
2851     * the caller is not permitted to modify threads
2852     * because it does not hold {@link
2853     * java.lang.RuntimePermission}{@code ("modifyThread")}
2854     */
2855     public void shutdown() {
2856     checkPermission();
2857 dl 1.105 tryTerminate(false, true);
2858 jsr166 1.1 }
2859    
2860     /**
2861 dl 1.100 * Possibly attempts to cancel and/or stop all tasks, and reject
2862     * all subsequently submitted tasks. Invocation has no effect on
2863 jsr166 1.137 * execution state if this is the {@link #commonPool()}, and no
2864 dl 1.100 * additional effect if already shut down. Otherwise, tasks that
2865     * are in the process of being submitted or executed concurrently
2866     * during the course of this method may or may not be
2867     * rejected. This method cancels both existing and unexecuted
2868     * tasks, in order to permit termination in the presence of task
2869     * dependencies. So the method always returns an empty list
2870     * (unlike the case for some other Executors).
2871 jsr166 1.1 *
2872     * @return an empty list
2873     * @throws SecurityException if a security manager exists and
2874     * the caller is not permitted to modify threads
2875     * because it does not hold {@link
2876     * java.lang.RuntimePermission}{@code ("modifyThread")}
2877     */
2878     public List<Runnable> shutdownNow() {
2879     checkPermission();
2880 dl 1.105 tryTerminate(true, true);
2881 jsr166 1.1 return Collections.emptyList();
2882     }
2883    
2884     /**
2885     * Returns {@code true} if all tasks have completed following shut down.
2886     *
2887     * @return {@code true} if all tasks have completed following shut down
2888     */
2889     public boolean isTerminated() {
2890 dl 1.300 return (mode & TERMINATED) != 0;
2891 jsr166 1.1 }
2892    
2893     /**
2894     * Returns {@code true} if the process of termination has
2895 jsr166 1.9 * commenced but not yet completed. This method may be useful for
2896     * debugging. A return of {@code true} reported a sufficient
2897     * period after shutdown may indicate that submitted tasks have
2898 jsr166 1.119 * ignored or suppressed interruption, or are waiting for I/O,
2899 dl 1.49 * causing this executor not to properly terminate. (See the
2900     * advisory notes for class {@link ForkJoinTask} stating that
2901     * tasks should not normally entail blocking operations. But if
2902     * they do, they must abort them on interrupt.)
2903 jsr166 1.1 *
2904 jsr166 1.9 * @return {@code true} if terminating but not yet terminated
2905 jsr166 1.1 */
2906     public boolean isTerminating() {
2907 dl 1.300 int md = mode;
2908     return (md & STOP) != 0 && (md & TERMINATED) == 0;
2909 jsr166 1.1 }
2910    
2911     /**
2912     * Returns {@code true} if this pool has been shut down.
2913     *
2914     * @return {@code true} if this pool has been shut down
2915     */
2916     public boolean isShutdown() {
2917 dl 1.300 return (mode & SHUTDOWN) != 0;
2918 jsr166 1.9 }
2919    
2920     /**
2921 dl 1.105 * Blocks until all tasks have completed execution after a
2922     * shutdown request, or the timeout occurs, or the current thread
2923 dl 1.134 * is interrupted, whichever happens first. Because the {@link
2924     * #commonPool()} never terminates until program shutdown, when
2925     * applied to the common pool, this method is equivalent to {@link
2926 jsr166 1.158 * #awaitQuiescence(long, TimeUnit)} but always returns {@code false}.
2927 jsr166 1.1 *
2928     * @param timeout the maximum time to wait
2929     * @param unit the time unit of the timeout argument
2930     * @return {@code true} if this executor terminated and
2931     * {@code false} if the timeout elapsed before termination
2932     * @throws InterruptedException if interrupted while waiting
2933     */
2934     public boolean awaitTermination(long timeout, TimeUnit unit)
2935     throws InterruptedException {
2936 dl 1.134 if (Thread.interrupted())
2937     throw new InterruptedException();
2938     if (this == common) {
2939     awaitQuiescence(timeout, unit);
2940     return false;
2941     }
2942 dl 1.52 long nanos = unit.toNanos(timeout);
2943 dl 1.101 if (isTerminated())
2944     return true;
2945 dl 1.183 if (nanos <= 0L)
2946     return false;
2947     long deadline = System.nanoTime() + nanos;
2948 jsr166 1.103 synchronized (this) {
2949 jsr166 1.184 for (;;) {
2950 dl 1.183 if (isTerminated())
2951     return true;
2952     if (nanos <= 0L)
2953     return false;
2954     long millis = TimeUnit.NANOSECONDS.toMillis(nanos);
2955     wait(millis > 0L ? millis : 1L);
2956     nanos = deadline - System.nanoTime();
2957 dl 1.52 }
2958 dl 1.18 }
2959 jsr166 1.1 }
2960    
2961     /**
2962 dl 1.134 * If called by a ForkJoinTask operating in this pool, equivalent
2963     * in effect to {@link ForkJoinTask#helpQuiesce}. Otherwise,
2964     * waits and/or attempts to assist performing tasks until this
2965     * pool {@link #isQuiescent} or the indicated timeout elapses.
2966     *
2967     * @param timeout the maximum time to wait
2968     * @param unit the time unit of the timeout argument
2969     * @return {@code true} if quiescent; {@code false} if the
2970     * timeout elapsed.
2971     */
2972     public boolean awaitQuiescence(long timeout, TimeUnit unit) {
2973     long nanos = unit.toNanos(timeout);
2974     ForkJoinWorkerThread wt;
2975     Thread thread = Thread.currentThread();
2976     if ((thread instanceof ForkJoinWorkerThread) &&
2977     (wt = (ForkJoinWorkerThread)thread).pool == this) {
2978     helpQuiescePool(wt.workQueue);
2979     return true;
2980     }
2981 dl 1.300 else {
2982     for (long startTime = System.nanoTime();;) {
2983     ForkJoinTask<?> t;
2984     if ((t = pollScan(false)) != null)
2985     t.doExec();
2986     else if (isQuiescent())
2987     return true;
2988     else if ((System.nanoTime() - startTime) > nanos)
2989 dl 1.134 return false;
2990 dl 1.300 else
2991     Thread.yield(); // cannot block
2992 dl 1.134 }
2993     }
2994     }
2995    
2996     /**
2997     * Waits and/or attempts to assist performing tasks indefinitely
2998 jsr166 1.141 * until the {@link #commonPool()} {@link #isQuiescent}.
2999 dl 1.134 */
3000 dl 1.136 static void quiesceCommonPool() {
3001 dl 1.134 common.awaitQuiescence(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
3002     }
3003    
3004     /**
3005 jsr166 1.1 * Interface for extending managed parallelism for tasks running
3006 jsr166 1.8 * in {@link ForkJoinPool}s.
3007     *
3008 dl 1.19 * <p>A {@code ManagedBlocker} provides two methods. Method
3009 jsr166 1.218 * {@link #isReleasable} must return {@code true} if blocking is
3010     * not necessary. Method {@link #block} blocks the current thread
3011 dl 1.19 * if necessary (perhaps internally invoking {@code isReleasable}
3012 dl 1.54 * before actually blocking). These actions are performed by any
3013 jsr166 1.157 * thread invoking {@link ForkJoinPool#managedBlock(ManagedBlocker)}.
3014     * The unusual methods in this API accommodate synchronizers that
3015     * may, but don't usually, block for long periods. Similarly, they
3016 dl 1.54 * allow more efficient internal handling of cases in which
3017     * additional workers may be, but usually are not, needed to
3018     * ensure sufficient parallelism. Toward this end,
3019     * implementations of method {@code isReleasable} must be amenable
3020     * to repeated invocation.
3021 jsr166 1.1 *
3022     * <p>For example, here is a ManagedBlocker based on a
3023     * ReentrantLock:
3024 jsr166 1.239 * <pre> {@code
3025 jsr166 1.1 * class ManagedLocker implements ManagedBlocker {
3026     * final ReentrantLock lock;
3027     * boolean hasLock = false;
3028     * ManagedLocker(ReentrantLock lock) { this.lock = lock; }
3029     * public boolean block() {
3030     * if (!hasLock)
3031     * lock.lock();
3032     * return true;
3033     * }
3034     * public boolean isReleasable() {
3035     * return hasLock || (hasLock = lock.tryLock());
3036     * }
3037     * }}</pre>
3038 dl 1.19 *
3039     * <p>Here is a class that possibly blocks waiting for an
3040     * item on a given queue:
3041 jsr166 1.239 * <pre> {@code
3042 dl 1.19 * class QueueTaker<E> implements ManagedBlocker {
3043     * final BlockingQueue<E> queue;
3044     * volatile E item = null;
3045     * QueueTaker(BlockingQueue<E> q) { this.queue = q; }
3046     * public boolean block() throws InterruptedException {
3047     * if (item == null)
3048 dl 1.23 * item = queue.take();
3049 dl 1.19 * return true;
3050     * }
3051     * public boolean isReleasable() {
3052 dl 1.23 * return item != null || (item = queue.poll()) != null;
3053 dl 1.19 * }
3054     * public E getItem() { // call after pool.managedBlock completes
3055     * return item;
3056     * }
3057     * }}</pre>
3058 jsr166 1.1 */
3059     public static interface ManagedBlocker {
3060     /**
3061     * Possibly blocks the current thread, for example waiting for
3062     * a lock or condition.
3063     *
3064 jsr166 1.4 * @return {@code true} if no additional blocking is necessary
3065     * (i.e., if isReleasable would return true)
3066 jsr166 1.1 * @throws InterruptedException if interrupted while waiting
3067     * (the method is not required to do so, but is allowed to)
3068     */
3069     boolean block() throws InterruptedException;
3070    
3071     /**
3072 jsr166 1.4 * Returns {@code true} if blocking is unnecessary.
3073 jsr166 1.154 * @return {@code true} if blocking is unnecessary
3074 jsr166 1.1 */
3075     boolean isReleasable();
3076     }
3077    
3078     /**
3079 jsr166 1.217 * Runs the given possibly blocking task. When {@linkplain
3080     * ForkJoinTask#inForkJoinPool() running in a ForkJoinPool}, this
3081     * method possibly arranges for a spare thread to be activated if
3082     * necessary to ensure sufficient parallelism while the current
3083     * thread is blocked in {@link ManagedBlocker#block blocker.block()}.
3084 jsr166 1.1 *
3085 jsr166 1.217 * <p>This method repeatedly calls {@code blocker.isReleasable()} and
3086     * {@code blocker.block()} until either method returns {@code true}.
3087     * Every call to {@code blocker.block()} is preceded by a call to
3088     * {@code blocker.isReleasable()} that returned {@code false}.
3089     *
3090     * <p>If not running in a ForkJoinPool, this method is
3091 jsr166 1.8 * behaviorally equivalent to
3092 jsr166 1.239 * <pre> {@code
3093 jsr166 1.1 * while (!blocker.isReleasable())
3094     * if (blocker.block())
3095 jsr166 1.217 * break;}</pre>
3096 jsr166 1.8 *
3097 jsr166 1.217 * If running in a ForkJoinPool, the pool may first be expanded to
3098     * ensure sufficient parallelism available during the call to
3099     * {@code blocker.block()}.
3100 jsr166 1.1 *
3101 jsr166 1.217 * @param blocker the blocker task
3102     * @throws InterruptedException if {@code blocker.block()} did so
3103 jsr166 1.1 */
3104 dl 1.18 public static void managedBlock(ManagedBlocker blocker)
3105 jsr166 1.1 throws InterruptedException {
3106 dl 1.200 ForkJoinPool p;
3107     ForkJoinWorkerThread wt;
3108 dl 1.300 WorkQueue w;
3109 jsr166 1.1 Thread t = Thread.currentThread();
3110 dl 1.200 if ((t instanceof ForkJoinWorkerThread) &&
3111 dl 1.300 (p = (wt = (ForkJoinWorkerThread)t).pool) != null &&
3112     (w = wt.workQueue) != null) {
3113     int block;
3114 dl 1.172 while (!blocker.isReleasable()) {
3115 dl 1.300 if ((block = p.tryCompensate(w)) != 0) {
3116 dl 1.105 try {
3117     do {} while (!blocker.isReleasable() &&
3118     !blocker.block());
3119     } finally {
3120 dl 1.314 CTL.getAndAdd(p, (block > 0) ? RC_UNIT : 0L);
3121 dl 1.105 }
3122     break;
3123 dl 1.78 }
3124     }
3125 dl 1.18 }
3126 dl 1.105 else {
3127     do {} while (!blocker.isReleasable() &&
3128     !blocker.block());
3129     }
3130 jsr166 1.1 }
3131    
3132 dl 1.310 /**
3133     * If the given executor is a ForkJoinPool, poll and execute
3134     * AsynchronousCompletionTasks from worker's queue until none are
3135     * available or blocker is released.
3136     */
3137     static void helpAsyncBlocker(Executor e, ManagedBlocker blocker) {
3138     if (blocker != null && (e instanceof ForkJoinPool)) {
3139     WorkQueue w; ForkJoinWorkerThread wt; WorkQueue[] ws; int r, n;
3140     ForkJoinPool p = (ForkJoinPool)e;
3141     Thread thread = Thread.currentThread();
3142     if (thread instanceof ForkJoinWorkerThread &&
3143     (wt = (ForkJoinWorkerThread)thread).pool == p)
3144     w = wt.workQueue;
3145     else if ((r = ThreadLocalRandom.getProbe()) != 0 &&
3146     (ws = p.workQueues) != null && (n = ws.length) > 0)
3147     w = ws[(n - 1) & r & SQMASK];
3148     else
3149     w = null;
3150     if (w != null) {
3151     for (;;) {
3152     int b = w.base, s = w.top, d, al; ForkJoinTask<?>[] a;
3153     if ((a = w.array) != null && (d = b - s) < 0 &&
3154     (al = a.length) > 0) {
3155     int index = (al - 1) & b;
3156     ForkJoinTask<?> t = (ForkJoinTask<?>)
3157 dl 1.316 QA.getAcquire(a, index);
3158 dl 1.310 if (blocker.isReleasable())
3159     break;
3160     else if (b++ == w.base) {
3161     if (t == null) {
3162     if (d == -1)
3163     break;
3164     }
3165     else if (!(t instanceof CompletableFuture.
3166     AsynchronousCompletionTask))
3167     break;
3168 dl 1.314 else if (QA.compareAndSet(a, index, t, null)) {
3169 dl 1.310 w.base = b;
3170     t.doExec();
3171     }
3172     }
3173     }
3174     else
3175     break;
3176     }
3177     }
3178     }
3179     }
3180    
3181 jsr166 1.7 // AbstractExecutorService overrides. These rely on undocumented
3182     // fact that ForkJoinTask.adapt returns ForkJoinTasks that also
3183     // implement RunnableFuture.
3184 jsr166 1.1
3185     protected <T> RunnableFuture<T> newTaskFor(Runnable runnable, T value) {
3186 dl 1.90 return new ForkJoinTask.AdaptedRunnable<T>(runnable, value);
3187 jsr166 1.1 }
3188    
3189     protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
3190 dl 1.90 return new ForkJoinTask.AdaptedCallable<T>(callable);
3191 jsr166 1.1 }
3192    
3193 dl 1.314 // VarHandle mechanics
3194     private static final VarHandle CTL;
3195     private static final VarHandle MODE;
3196     private static final VarHandle QA;
3197 dl 1.52
3198     static {
3199 jsr166 1.3 try {
3200 dl 1.314 MethodHandles.Lookup l = MethodHandles.lookup();
3201     CTL = l.findVarHandle(ForkJoinPool.class, "ctl", long.class);
3202     MODE = l.findVarHandle(ForkJoinPool.class, "mode", int.class);
3203     QA = MethodHandles.arrayElementVarHandle(ForkJoinTask[].class);
3204 jsr166 1.231 } catch (ReflectiveOperationException e) {
3205 dl 1.52 throw new Error(e);
3206     }
3207 dl 1.105
3208 dl 1.243 // Reduce the risk of rare disastrous classloading in first call to
3209     // LockSupport.park: https://bugs.openjdk.java.net/browse/JDK-8074773
3210     Class<?> ensureLoaded = LockSupport.class;
3211    
3212 jsr166 1.273 int commonMaxSpares = DEFAULT_COMMON_MAX_SPARES;
3213     try {
3214     String p = System.getProperty
3215     ("java.util.concurrent.ForkJoinPool.common.maximumSpares");
3216     if (p != null)
3217     commonMaxSpares = Integer.parseInt(p);
3218     } catch (Exception ignore) {}
3219     COMMON_MAX_SPARES = commonMaxSpares;
3220    
3221 dl 1.152 defaultForkJoinWorkerThreadFactory =
3222 dl 1.112 new DefaultForkJoinWorkerThreadFactory();
3223 dl 1.115 modifyThreadPermission = new RuntimePermission("modifyThread");
3224    
3225 jsr166 1.329 common = AccessController.doPrivileged(new PrivilegedAction<>() {
3226     public ForkJoinPool run() {
3227     return new ForkJoinPool((byte)0); }});
3228 jsr166 1.275
3229 dl 1.310 COMMON_PARALLELISM = Math.max(common.mode & SMASK, 1);
3230 jsr166 1.3 }
3231 dl 1.52
3232 dl 1.197 /**
3233 jsr166 1.279 * Factory for innocuous worker threads.
3234 dl 1.197 */
3235 jsr166 1.278 private static final class InnocuousForkJoinWorkerThreadFactory
3236 dl 1.197 implements ForkJoinWorkerThreadFactory {
3237    
3238     /**
3239     * An ACC to restrict permissions for the factory itself.
3240     * The constructed workers have no permissions set.
3241     */
3242 jsr166 1.331 private static final AccessControlContext ACC = contextWithPermissions(
3243     modifyThreadPermission,
3244     new RuntimePermission("enableContextClassLoaderOverride"),
3245     new RuntimePermission("modifyThreadGroup"),
3246     new RuntimePermission("setContextClassLoader"));
3247 dl 1.197
3248     public final ForkJoinWorkerThread newThread(ForkJoinPool pool) {
3249 jsr166 1.331 return AccessController.doPrivileged(
3250     new PrivilegedAction<>() {
3251     public ForkJoinWorkerThread run() {
3252     return new ForkJoinWorkerThread.
3253     InnocuousForkJoinWorkerThread(pool); }},
3254     ACC);
3255 dl 1.197 }
3256     }
3257 jsr166 1.1 }