Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8322732: ForkJoinPool may underutilize cores in async mode #19131

Closed
wants to merge 51 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
64a6367
Trial version of updated throttling scheme
DougLea Dec 24, 2023
4c03319
Next version
DougLea Jan 7, 2024
3edb8a3
Merge branch 'openjdk:master' into JDK-8322732
DougLea Jan 7, 2024
ba7bee4
New version
DougLea Jan 8, 2024
01e9c6f
More or less stable version
DougLea Jan 8, 2024
66ed812
Merge branch 'openjdk:master' into JDK-8322732
DougLea Jan 8, 2024
ff7fe4a
Clearer control structure
DougLea Jan 11, 2024
ba55ad3
Merge branch 'openjdk:master' into JDK-8322732
DougLea Jan 17, 2024
ec3b1da
Less contention
DougLea Jan 21, 2024
47c8a25
Merge branch 'openjdk:master' into JDK-8322732
DougLea Jan 21, 2024
b3bbb53
Simpify control
DougLea Jan 23, 2024
c140083
Less parking
DougLea Feb 10, 2024
6218f23
Merge branch 'openjdk:master' into JDK-8322732
DougLea Feb 10, 2024
2e20b9b
For utilization tests
DougLea Mar 1, 2024
610d308
Merge branch 'openjdk:master' into JDK-8322732
DougLea Mar 1, 2024
940fd65
Increase spins
DougLea Mar 6, 2024
9e908a4
Merge branch 'openjdk:master' into JDK-8322732
DougLea Mar 6, 2024
d908119
Merge branch 'openjdk:master' into JDK-8322732
DougLea Mar 8, 2024
02fb4a2
Improve spinning
DougLea Mar 8, 2024
e020c22
Fix signal bug
DougLea Mar 10, 2024
aba91cd
For utilization testing
DougLea Mar 24, 2024
5d6c705
shorten common paths
DougLea Mar 25, 2024
e9fd908
Merge branch 'openjdk:master' into JDK-8322732
DougLea Mar 25, 2024
82bf86a
re-integrate docs
DougLea Apr 8, 2024
8deb47c
Merge branch 'openjdk:master' into JDK-8322732
DougLea Apr 8, 2024
333ff58
reduce memory contention
DougLea Apr 13, 2024
ea685ee
Merge branch 'openjdk:master' into JDK-8322732
DougLea Apr 13, 2024
4ee040d
Reduce unneeded signals
DougLea Apr 15, 2024
e4ce86f
Merge branch 'openjdk:master' into JDK-8322732
DougLea Apr 15, 2024
105a87b
Next version
DougLea Apr 29, 2024
decd6f5
Merge branch 'openjdk:master' into JDK-8322732
DougLea Apr 29, 2024
60461aa
Repack some fields; adjust control flow
DougLea May 7, 2024
7e64cdf
Merge branch 'openjdk:master' into JDK-8322732
DougLea May 7, 2024
8689ac1
Address review comments
DougLea May 12, 2024
d36b618
More performance tradoffs
DougLea May 22, 2024
f1fc4f3
Merge branch 'openjdk:master' into JDK-8322732
DougLea May 22, 2024
2834174
Reduce memory stalls
DougLea May 23, 2024
7222477
Adjust control flow
DougLea May 25, 2024
81cb815
Un-misplace onSpinWait call
DougLea May 28, 2024
a262f6c
Add test for utilization with interdependent tasks
DougLea May 29, 2024
cf5fe55
Merge branch 'openjdk:master' into JDK-8322732
DougLea May 29, 2024
e5c4a55
Address review comments
DougLea May 29, 2024
5e44de4
Merge branch 'openjdk:master' into JDK-8322732
DougLea May 29, 2024
4564b92
unguard signal
DougLea May 29, 2024
1b818b4
re-enable rescan; slim down test
DougLea May 30, 2024
b13d8ee
Don't shadow parks
DougLea May 30, 2024
398e5c6
reshadow; avoid test loop bleed
DougLea May 30, 2024
47ce364
Reinstate quiescence signals
DougLea May 30, 2024
becabd0
diagnostic
DougLea May 30, 2024
3836207
Merge branch 'openjdk:master' into JDK-8322732
DougLea May 31, 2024
aedf9fc
Reconcile changes
DougLea May 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -909,7 +909,7 @@ public class ForkJoinPool extends AbstractExecutorService {
* Currently, arrays for workers are initialized to be just large
* enough to avoid resizing in most tree-structured tasks, but
* larger for external queues where both false-sharing problems
* and the need for resizing are more common.. (Maintenance note:
* and the need for resizing are more common. (Maintenance note:
* any changes in fields, queues, or their uses, or JVM layout
* policies, must be accompanied by re-evaluation of these
* placement and sizing decisions.)
@@ -1854,7 +1854,7 @@ final void deregisterWorker(ForkJoinWorkerThread wt, Throwable ex) {
(TC_MASK & (c - TC_UNIT)) |
(LMASK & c)))));
}
if ((tryTerminate(false, false) & STOP) == 0 && w != null) {
if ((tryTerminate(false, false) & STOP) == 0L && w != null) {
WorkQueue[] qs; int n, i; // remove index unless terminating
long ns = w.nsteals & 0xffffffffL;
if ((lockRunState() & STOP) != 0L)
@@ -1984,16 +1984,16 @@ final void runWorker(WorkQueue w) {
if (w != null) {
int phase = w.phase, r = w.stackPred; // seed from registerWorker
int cfg = w.config, src = -1, nsteals = 0;
rescan: for (boolean working = false;;) { // set if ran since active
rescan: for (;;) {
WorkQueue[] qs;
boolean taken = false;
r ^= r << 13; r ^= r >>> 17; r ^= r << 5; // xorshift
if ((runState & STOP) != 0L || (qs = queues) == null)
return;
int n = qs.length, i = r, step = (r >>> 16) | 1;
for (int l = n; l > 0; --l, i += step) { // scan queues
int j; WorkQueue q;
if ((q = qs[j = i & (n - 1)]) != null) {
boolean taken = false;
for (int b = q.base;;) {
int cap, k, nb; ForkJoinTask<?>[] a;
if ((a = q.array) == null || (cap = a.length) <= 0)
@@ -2025,8 +2025,7 @@ else if (!U.compareAndSetReference(a, kp, t, null))
q.base = nb;
w.nsteals = ++nsteals;
w.source = j; // volatile write
if (working != (working = taken = true) &&
a[nk] != null)
if (taken != (taken = true) && a[nk] != null)
signalWork(); // propagate signal
w.topLevelExec(t, cfg);
if ((b = q.base) != nb && src != (src = j))
@@ -2037,7 +2036,6 @@ else if (!U.compareAndSetReference(a, kp, t, null))
}
if (((phase = deactivate(w, r, phase)) & IDLE) != 0)
return;
working = false; // reactivated
}
}
}
@@ -2058,7 +2056,7 @@ private int deactivate(WorkQueue w, int r, int phase) {
for (;;) { // try to enqueue
w.stackPred = (int)pc; // set ctl stack link
qc = (active & LMASK) | ((pc - RC_UNIT) & UMASK);
if (pc == (pc = compareAndExchangeCtl(pc, qc)))
if (pc == (pc = compareAndExchangeCtl(pc, qc))) // success
break;
if ((pc & RC_MASK) >= (qc & RC_MASK)) {
p = w.phase = phase; // back out on possible signal