@@ -553,6 +553,11 @@ public final boolean compareAndSetPendingCount(int expected, int count) {
553
553
return PENDING .compareAndSet (this , expected , count );
554
554
}
555
555
556
+ // internal-only weak version
557
+ final boolean weakCompareAndSetPendingCount (int expected , int count ) {
558
+ return PENDING .weakCompareAndSet (this , expected , count );
559
+ }
560
+
556
561
/**
557
562
* If the pending count is nonzero, (atomically) decrements it.
558
563
*
@@ -562,7 +567,7 @@ public final boolean compareAndSetPendingCount(int expected, int count) {
562
567
public final int decrementPendingCountUnlessZero () {
563
568
int c ;
564
569
do {} while ((c = pending ) != 0 &&
565
- !PENDING . weakCompareAndSet ( this , c , c - 1 ));
570
+ !weakCompareAndSetPendingCount ( c , c - 1 ));
566
571
return c ;
567
572
}
568
573
@@ -595,7 +600,7 @@ public final void tryComplete() {
595
600
return ;
596
601
}
597
602
}
598
- else if (PENDING . weakCompareAndSet ( a , c , c - 1 ))
603
+ else if (a . weakCompareAndSetPendingCount ( c , c - 1 ))
599
604
return ;
600
605
}
601
606
}
@@ -618,7 +623,7 @@ public final void propagateCompletion() {
618
623
return ;
619
624
}
620
625
}
621
- else if (PENDING . weakCompareAndSet ( a , c , c - 1 ))
626
+ else if (a . weakCompareAndSetPendingCount ( c , c - 1 ))
622
627
return ;
623
628
}
624
629
}
@@ -663,7 +668,7 @@ public final CountedCompleter<?> firstComplete() {
663
668
for (int c ;;) {
664
669
if ((c = pending ) == 0 )
665
670
return this ;
666
- else if (PENDING . weakCompareAndSet ( this , c , c - 1 ))
671
+ else if (weakCompareAndSetPendingCount ( c , c - 1 ))
667
672
return null ;
668
673
}
669
674
}
@@ -718,30 +723,33 @@ public final void quietlyCompleteRoot() {
718
723
* processed.
719
724
*/
720
725
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 );
729
733
}
730
734
735
+ // ForkJoinTask overrides
736
+
731
737
/**
732
738
* Supports ForkJoinTask exception propagation.
733
739
*/
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 ;
740
747
}
741
748
742
749
/**
743
750
* Implements execution conventions for CountedCompleters.
744
751
*/
752
+ @ Override
745
753
protected final boolean exec () {
746
754
compute ();
747
755
return false ;
@@ -756,6 +764,7 @@ protected final boolean exec() {
756
764
*
757
765
* @return the result of the computation
758
766
*/
767
+ @ Override
759
768
public T getRawResult () { return null ; }
760
769
761
770
/**
@@ -765,6 +774,7 @@ protected final boolean exec() {
765
774
* overridden to update existing objects or fields, then it must
766
775
* in general be defined to be thread-safe.
767
776
*/
777
+ @ Override
768
778
protected void setRawResult (T t ) { }
769
779
770
780
// VarHandle mechanics
0 commit comments