Skip to content

Commit f650f3d

Browse files
committedSep 21, 2020
Changes imported from jsr166 CVS 2020-09
1 parent face460 commit f650f3d

12 files changed

+2325
-2046
lines changed
 

‎src/java.base/share/classes/java/util/concurrent/CountedCompleter.java

+28-18
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,11 @@ public final boolean compareAndSetPendingCount(int expected, int count) {
553553
return PENDING.compareAndSet(this, expected, count);
554554
}
555555

556+
// internal-only weak version
557+
final boolean weakCompareAndSetPendingCount(int expected, int count) {
558+
return PENDING.weakCompareAndSet(this, expected, count);
559+
}
560+
556561
/**
557562
* If the pending count is nonzero, (atomically) decrements it.
558563
*
@@ -562,7 +567,7 @@ public final boolean compareAndSetPendingCount(int expected, int count) {
562567
public final int decrementPendingCountUnlessZero() {
563568
int c;
564569
do {} while ((c = pending) != 0 &&
565-
!PENDING.weakCompareAndSet(this, c, c - 1));
570+
!weakCompareAndSetPendingCount(c, c - 1));
566571
return c;
567572
}
568573

@@ -595,7 +600,7 @@ public final void tryComplete() {
595600
return;
596601
}
597602
}
598-
else if (PENDING.weakCompareAndSet(a, c, c - 1))
603+
else if (a.weakCompareAndSetPendingCount(c, c - 1))
599604
return;
600605
}
601606
}
@@ -618,7 +623,7 @@ public final void propagateCompletion() {
618623
return;
619624
}
620625
}
621-
else if (PENDING.weakCompareAndSet(a, c, c - 1))
626+
else if (a.weakCompareAndSetPendingCount(c, c - 1))
622627
return;
623628
}
624629
}
@@ -663,7 +668,7 @@ public final CountedCompleter<?> firstComplete() {
663668
for (int c;;) {
664669
if ((c = pending) == 0)
665670
return this;
666-
else if (PENDING.weakCompareAndSet(this, c, c - 1))
671+
else if (weakCompareAndSetPendingCount(c, c - 1))
667672
return null;
668673
}
669674
}
@@ -718,30 +723,33 @@ public final void quietlyCompleteRoot() {
718723
* processed.
719724
*/
720725
public final void helpComplete(int maxTasks) {
721-
Thread t; ForkJoinWorkerThread wt;
722-
if (maxTasks > 0 && status >= 0) {
723-
if ((t = Thread.currentThread()) instanceof ForkJoinWorkerThread)
724-
(wt = (ForkJoinWorkerThread)t).pool.
725-
helpComplete(wt.workQueue, this, maxTasks);
726-
else
727-
ForkJoinPool.common.externalHelpComplete(this, maxTasks);
728-
}
726+
ForkJoinPool.WorkQueue q; Thread t; boolean owned;
727+
if (owned = (t = Thread.currentThread()) instanceof ForkJoinWorkerThread)
728+
q = ((ForkJoinWorkerThread)t).workQueue;
729+
else
730+
q = ForkJoinPool.commonQueue();
731+
if (q != null && maxTasks > 0)
732+
q.helpComplete(this, owned, maxTasks);
729733
}
730734

735+
// ForkJoinTask overrides
736+
731737
/**
732738
* Supports ForkJoinTask exception propagation.
733739
*/
734-
void internalPropagateException(Throwable ex) {
735-
CountedCompleter<?> a = this, s = a;
736-
while (a.onExceptionalCompletion(ex, s) &&
737-
(a = (s = a).completer) != null && a.status >= 0 &&
738-
isExceptionalStatus(a.recordExceptionalCompletion(ex)))
739-
;
740+
@Override
741+
final int trySetException(Throwable ex) {
742+
CountedCompleter<?> a = this, p = a;
743+
do {} while (isExceptionalStatus(a.trySetThrown(ex)) &&
744+
a.onExceptionalCompletion(ex, p) &&
745+
(a = (p = a).completer) != null && a.status >= 0);
746+
return status;
740747
}
741748

742749
/**
743750
* Implements execution conventions for CountedCompleters.
744751
*/
752+
@Override
745753
protected final boolean exec() {
746754
compute();
747755
return false;
@@ -756,6 +764,7 @@ protected final boolean exec() {
756764
*
757765
* @return the result of the computation
758766
*/
767+
@Override
759768
public T getRawResult() { return null; }
760769

761770
/**
@@ -765,6 +774,7 @@ protected final boolean exec() {
765774
* overridden to update existing objects or fields, then it must
766775
* in general be defined to be thread-safe.
767776
*/
777+
@Override
768778
protected void setRawResult(T t) { }
769779

770780
// VarHandle mechanics

‎src/java.base/share/classes/java/util/concurrent/ForkJoinPool.java

+1,622-1,406
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.