jdk/src/java.base/share/classes/java/util/concurrent/atomic/AtomicIntegerFieldUpdater.java
author dl
Tue, 13 Jun 2017 09:13:28 -0700
changeset 45637 9e0c80381e32
parent 45518 4a116dd82fb5
permissions -rw-r--r--
8181104: Fix specs for updateAndGet and related methods Reviewed-by: martin, psandoz, dholmes, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     6
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     8
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * This file is available under and governed by the GNU General Public
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * License version 2 only, as published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * However, the following notice accompanied the original version of this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * file:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * Written by Doug Lea with assistance from members of JCP JSR-166
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * Expert Group and released to the public domain, as explained at
9242
ef138d47df58 7034657: Update Creative Commons license URL in legal notices
dl
parents: 7518
diff changeset
    33
 * http://creativecommons.org/publicdomain/zero/1.0/
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
package java.util.concurrent.atomic;
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
    37
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    38
import java.lang.reflect.Field;
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    39
import java.lang.reflect.Modifier;
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    40
import java.security.AccessController;
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
    41
import java.security.PrivilegedActionException;
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    42
import java.security.PrivilegedExceptionAction;
43207
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
    43
import java.util.Objects;
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
    44
import java.util.function.IntBinaryOperator;
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
    45
import java.util.function.IntUnaryOperator;
39725
9548f8d846e9 8080603: Replace Unsafe with VarHandle in java.util.concurrent classes
dl
parents: 37363
diff changeset
    46
import jdk.internal.misc.Unsafe;
37363
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36936
diff changeset
    47
import jdk.internal.reflect.CallerSensitive;
329dba26ffd2 8137058: Clear out all non-Critical APIs from sun.reflect
chegar
parents: 36936
diff changeset
    48
import jdk.internal.reflect.Reflection;
45637
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
    49
import java.lang.invoke.VarHandle;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * A reflection-based utility that enables atomic updates to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * designated {@code volatile int} fields of designated classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * This class is designed for use in atomic data structures in which
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * several fields of the same node are independently subject to atomic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * updates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <p>Note that the guarantees of the {@code compareAndSet}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * method in this class are weaker than in other atomic classes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * Because this class cannot ensure that all uses of the field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * are appropriate for purposes of atomic access, it can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * guarantee atomicity only with respect to other invocations of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * {@code compareAndSet} and {@code set} on the same updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
42322
c3474fef4fe4 8166646: Miscellaneous changes imported from jsr166 CVS 2016-10
dl
parents: 39725
diff changeset
    65
 * <p>Object arguments for parameters of type {@code T} that are not
c3474fef4fe4 8166646: Miscellaneous changes imported from jsr166 CVS 2016-10
dl
parents: 39725
diff changeset
    66
 * instances of the class passed to {@link #newUpdater} will result in
c3474fef4fe4 8166646: Miscellaneous changes imported from jsr166 CVS 2016-10
dl
parents: 39725
diff changeset
    67
 * a {@link ClassCastException} being thrown.
c3474fef4fe4 8166646: Miscellaneous changes imported from jsr166 CVS 2016-10
dl
parents: 39725
diff changeset
    68
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * @author Doug Lea
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * @param <T> The type of the object holding the updatable field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 */
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 12674
diff changeset
    73
public abstract class AtomicIntegerFieldUpdater<T> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * Creates and returns an updater for objects with the given field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * The Class argument is needed to check that reflective types and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * generic types match.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * @param tclass the class of the objects holding the field
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     * @param fieldName the name of the field to be updated
19048
7d0a94c79779 8021417: Fix doclint issues in java.util.concurrent
chegar
parents: 18576
diff changeset
    81
     * @param <U> the type of instances of tclass
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
     * @return the updater
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * @throws IllegalArgumentException if the field is not a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * volatile integer type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * @throws RuntimeException with a nested reflection-based
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    86
     * exception if the class does not hold field or is the wrong type,
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    87
     * or the field is inaccessible to the caller according to Java language
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
    88
     * access control
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16011
diff changeset
    90
    @CallerSensitive
18576
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
    91
    public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass,
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
    92
                                                              String fieldName) {
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
    93
        return new AtomicIntegerFieldUpdaterImpl<U>
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
    94
            (tclass, fieldName, Reflection.getCallerClass());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * Protected do-nothing constructor for use by subclasses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    protected AtomicIntegerFieldUpdater() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * Atomically sets the field of the given object managed by this updater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * to the given updated value if the current value {@code ==} the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * expected value. This method is guaranteed to be atomic with respect to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * other calls to {@code compareAndSet} and {@code set}, but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * necessarily with respect to other changes in the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param obj An object whose field to conditionally set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @param update the new value
18576
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   113
     * @return {@code true} if successful
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public abstract boolean compareAndSet(T obj, int expect, int update);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * Atomically sets the field of the given object managed by this updater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * to the given updated value if the current value {@code ==} the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * expected value. This method is guaranteed to be atomic with respect to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * other calls to {@code compareAndSet} and {@code set}, but not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * necessarily with respect to other changes in the field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     *
18576
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   124
     * <p><a href="package-summary.html#weakCompareAndSet">May fail
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   125
     * spuriously and does not provide ordering guarantees</a>, so is
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   126
     * only rarely an appropriate alternative to {@code compareAndSet}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @param obj An object whose field to conditionally set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @param expect the expected value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * @param update the new value
18576
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   131
     * @return {@code true} if successful
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public abstract boolean weakCompareAndSet(T obj, int expect, int update);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     * Sets the field of the given object managed by this updater to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * given updated value. This operation is guaranteed to act as a volatile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * store with respect to subsequent invocations of {@code compareAndSet}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * @param obj An object whose field to set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    public abstract void set(T obj, int newValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * Eventually sets the field of the given object managed by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * updater to the given updated value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     * @param obj An object whose field to set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    public abstract void lazySet(T obj, int newValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    /**
39725
9548f8d846e9 8080603: Replace Unsafe with VarHandle in java.util.concurrent classes
dl
parents: 37363
diff changeset
   156
     * Returns the current value held in the field of the given object
9548f8d846e9 8080603: Replace Unsafe with VarHandle in java.util.concurrent classes
dl
parents: 37363
diff changeset
   157
     * managed by this updater.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * @param obj An object whose field to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * @return the current value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    public abstract int get(T obj);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * Atomically sets the field of the given object managed by this updater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * to the given value and returns the old value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param newValue the new value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    public int getAndSet(T obj, int newValue) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   173
        int prev;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   174
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   175
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   176
        } while (!compareAndSet(obj, prev, newValue));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   177
        return prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * Atomically increments by one the current value of the field of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    public int getAndIncrement(T obj) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   188
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   189
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   190
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   191
            next = prev + 1;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   192
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   193
        return prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * Atomically decrements by one the current value of the field of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    public int getAndDecrement(T obj) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   204
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   205
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   206
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   207
            next = prev - 1;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   208
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   209
        return prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * Atomically adds the given value to the current value of the field of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * the given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     * @param delta the value to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @return the previous value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    public int getAndAdd(T obj, int delta) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   221
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   222
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   223
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   224
            next = prev + delta;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   225
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   226
        return prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Atomically increments by one the current value of the field of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    public int incrementAndGet(T obj) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   237
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   238
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   239
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   240
            next = prev + 1;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   241
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   242
        return next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Atomically decrements by one the current value of the field of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    public int decrementAndGet(T obj) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   253
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   254
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   255
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   256
            next = prev - 1;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   257
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   258
        return next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Atomically adds the given value to the current value of the field of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * the given object managed by this updater.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @param obj An object whose field to get and set
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @param delta the value to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     * @return the updated value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    public int addAndGet(T obj, int delta) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   270
        int prev, next;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   271
        do {
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   272
            prev = get(obj);
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   273
            next = prev + delta;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   274
        } while (!compareAndSet(obj, prev, next));
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   275
        return next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    /**
45637
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   279
     * Atomically updates (with memory effects as specified by {@link
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   280
     * VarHandle#compareAndSet}) the field of the given object managed
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   281
     * by this updater with the results of applying the given
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   282
     * function, returning the previous value. The function should be
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   283
     * side-effect-free, since it may be re-applied when attempted
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   284
     * updates fail due to contention among threads.
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   285
     *
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   286
     * @param obj An object whose field to get and set
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   287
     * @param updateFunction a side-effect-free function
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   288
     * @return the previous value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   289
     * @since 1.8
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   290
     */
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   291
    public final int getAndUpdate(T obj, IntUnaryOperator updateFunction) {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   292
        int prev, next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   293
        do {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   294
            prev = get(obj);
16011
890a7ed97f6c 8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents: 15267
diff changeset
   295
            next = updateFunction.applyAsInt(prev);
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   296
        } while (!compareAndSet(obj, prev, next));
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   297
        return prev;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   298
    }
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   299
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   300
    /**
45637
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   301
     * Atomically updates (with memory effects as specified by {@link
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   302
     * VarHandle#compareAndSet}) the field of the given object managed
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   303
     * by this updater with the results of applying the given
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   304
     * function, returning the updated value. The function should be
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   305
     * side-effect-free, since it may be re-applied when attempted
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   306
     * updates fail due to contention among threads.
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   307
     *
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   308
     * @param obj An object whose field to get and set
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   309
     * @param updateFunction a side-effect-free function
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   310
     * @return the updated value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   311
     * @since 1.8
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   312
     */
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   313
    public final int updateAndGet(T obj, IntUnaryOperator updateFunction) {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   314
        int prev, next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   315
        do {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   316
            prev = get(obj);
16011
890a7ed97f6c 8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents: 15267
diff changeset
   317
            next = updateFunction.applyAsInt(prev);
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   318
        } while (!compareAndSet(obj, prev, next));
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   319
        return next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   320
    }
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   321
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   322
    /**
45637
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   323
     * Atomically updates (with memory effects as specified by {@link
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   324
     * VarHandle#compareAndSet}) the field of the given object managed
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   325
     * by this updater with the results of applying the given function
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   326
     * to the current and given values, returning the previous value.
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   327
     * The function should be side-effect-free, since it may be
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   328
     * re-applied when attempted updates fail due to contention among
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   329
     * threads.  The function is applied with the current value as its
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   330
     * first argument, and the given update as the second argument.
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   331
     *
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   332
     * @param obj An object whose field to get and set
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   333
     * @param x the update value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   334
     * @param accumulatorFunction a side-effect-free function of two arguments
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   335
     * @return the previous value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   336
     * @since 1.8
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   337
     */
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   338
    public final int getAndAccumulate(T obj, int x,
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   339
                                      IntBinaryOperator accumulatorFunction) {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   340
        int prev, next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   341
        do {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   342
            prev = get(obj);
16011
890a7ed97f6c 8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents: 15267
diff changeset
   343
            next = accumulatorFunction.applyAsInt(prev, x);
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   344
        } while (!compareAndSet(obj, prev, next));
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   345
        return prev;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   346
    }
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   347
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   348
    /**
45637
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   349
     * Atomically updates (with memory effects as specified by {@link
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   350
     * VarHandle#compareAndSet}) the field of the given object managed
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   351
     * by this updater with the results of applying the given function
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   352
     * to the current and given values, returning the updated value.
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   353
     * The function should be side-effect-free, since it may be
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   354
     * re-applied when attempted updates fail due to contention among
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   355
     * threads.  The function is applied with the current value as its
9e0c80381e32 8181104: Fix specs for updateAndGet and related methods
dl
parents: 45518
diff changeset
   356
     * first argument, and the given update as the second argument.
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   357
     *
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   358
     * @param obj An object whose field to get and set
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   359
     * @param x the update value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   360
     * @param accumulatorFunction a side-effect-free function of two arguments
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   361
     * @return the updated value
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   362
     * @since 1.8
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   363
     */
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   364
    public final int accumulateAndGet(T obj, int x,
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   365
                                      IntBinaryOperator accumulatorFunction) {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   366
        int prev, next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   367
        do {
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   368
            prev = get(obj);
16011
890a7ed97f6c 8004561: Additional functional interfaces, extension methods and name changes
mduigou
parents: 15267
diff changeset
   369
            next = accumulatorFunction.applyAsInt(prev, x);
15267
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   370
        } while (!compareAndSet(obj, prev, next));
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   371
        return next;
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   372
    }
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   373
c884f548a25f 8001666: Add lambda-compatible atomics and accumulators to the ActomicXXX classes
dl
parents: 15020
diff changeset
   374
    /**
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   375
     * Standard hotspot implementation using intrinsics.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   377
    private static final class AtomicIntegerFieldUpdaterImpl<T>
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   378
        extends AtomicIntegerFieldUpdater<T> {
39725
9548f8d846e9 8080603: Replace Unsafe with VarHandle in java.util.concurrent classes
dl
parents: 37363
diff changeset
   379
        private static final Unsafe U = Unsafe.getUnsafe();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        private final long offset;
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   381
        /**
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   382
         * if field is protected, the subclass constructing updater, else
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   383
         * the same as tclass
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   384
         */
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   385
        private final Class<?> cclass;
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   386
        /** class holding the field */
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        private final Class<T> tclass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
16906
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16011
diff changeset
   389
        AtomicIntegerFieldUpdaterImpl(final Class<T> tclass,
44dfee24cb71 8010117: Annotate jdk caller sensitive methods with @sun.reflect.CallerSensitive
mchung
parents: 16011
diff changeset
   390
                                      final String fieldName,
18576
7a5c231327af 8019377: Sync j.u.c locks and atomic from 166 to tl
dl
parents: 16906
diff changeset
   391
                                      final Class<?> caller) {
14325
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 12674
diff changeset
   392
            final Field field;
622c473a21aa 8001575: Minor/sync/cleanup j.u.c with Dougs CVS - Oct 2012
dl
parents: 12674
diff changeset
   393
            final int modifiers;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
            try {
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   395
                field = AccessController.doPrivileged(
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   396
                    new PrivilegedExceptionAction<Field>() {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   397
                        public Field run() throws NoSuchFieldException {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   398
                            return tclass.getDeclaredField(fieldName);
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   399
                        }
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   400
                    });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                modifiers = field.getModifiers();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
                sun.reflect.misc.ReflectUtil.ensureMemberAccess(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                    caller, tclass, null, modifiers);
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   404
                ClassLoader cl = tclass.getClassLoader();
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   405
                ClassLoader ccl = caller.getClassLoader();
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   406
                if ((ccl != null) && (ccl != cl) &&
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   407
                    ((cl == null) || !isAncestor(cl, ccl))) {
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   408
                    sun.reflect.misc.ReflectUtil.checkPackageAccess(tclass);
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   409
                }
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   410
            } catch (PrivilegedActionException pae) {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   411
                throw new RuntimeException(pae.getException());
7518
0282db800fe1 7003745: Code style cleanups (sync from Dougs CVS)
dl
parents: 5506
diff changeset
   412
            } catch (Exception ex) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                throw new RuntimeException(ex);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   416
            if (field.getType() != int.class)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
                throw new IllegalArgumentException("Must be integer type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
            if (!Modifier.isVolatile(modifiers))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
                throw new IllegalArgumentException("Must be volatile type");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
43207
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   422
            // Access to protected field members is restricted to receivers only
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   423
            // of the accessing class, or one of its subclasses, and the
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   424
            // accessing class must in turn be a subclass (or package sibling)
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   425
            // of the protected member's defining class.
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   426
            // If the updater refers to a protected field of a declaring class
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   427
            // outside the current package, the receiver argument will be
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   428
            // narrowed to the type of the accessing class.
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   429
            this.cclass = (Modifier.isProtected(modifiers) &&
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   430
                           tclass.isAssignableFrom(caller) &&
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   431
                           !isSamePackage(tclass, caller))
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   432
                          ? caller : tclass;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
            this.tclass = tclass;
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   434
            this.offset = U.objectFieldOffset(field);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
12674
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   437
        /**
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   438
         * Returns true if the second classloader can be found in the first
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   439
         * classloader's delegation chain.
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   440
         * Equivalent to the inaccessible: first.isAncestor(second).
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   441
         */
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   442
        private static boolean isAncestor(ClassLoader first, ClassLoader second) {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   443
            ClassLoader acl = first;
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   444
            do {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   445
                acl = acl.getParent();
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   446
                if (second == acl) {
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   447
                    return true;
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   448
                }
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   449
            } while (acl != null);
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   450
            return false;
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   451
        }
5f9829b7fc7e 7103570: AtomicIntegerFieldUpdater does not work when SecurityManager is installed
dholmes
parents: 11134
diff changeset
   452
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   453
        /**
43207
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   454
         * Returns true if the two classes have the same class loader and
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   455
         * package qualifier
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   456
         */
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   457
        private static boolean isSamePackage(Class<?> class1, Class<?> class2) {
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   458
            return class1.getClassLoader() == class2.getClassLoader()
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   459
                   && Objects.equals(class1.getPackageName(), class2.getPackageName());
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   460
        }
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   461
569e0c1d851d 8165344: Update concurrency support
psandoz
parents: 42322
diff changeset
   462
        /**
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   463
         * Checks that target argument is instance of cclass.  On
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   464
         * failure, throws cause.
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   465
         */
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   466
        private final void accessCheck(T obj) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   467
            if (!cclass.isInstance(obj))
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   468
                throwAccessCheckException(obj);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   471
        /**
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   472
         * Throws access exception if accessCheck failed due to
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   473
         * protected access, else ClassCastException.
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   474
         */
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   475
        private final void throwAccessCheckException(T obj) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   476
            if (cclass == tclass)
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   477
                throw new ClassCastException();
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   478
            else
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   479
                throw new RuntimeException(
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   480
                    new IllegalAccessException(
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   481
                        "Class " +
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   482
                        cclass.getName() +
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   483
                        " can not access a protected member of class " +
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   484
                        tclass.getName() +
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   485
                        " using an instance of " +
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   486
                        obj.getClass().getName()));
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   487
        }
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   488
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   489
        public final boolean compareAndSet(T obj, int expect, int update) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   490
            accessCheck(obj);
45518
4a116dd82fb5 8181292: Backport Rename internal Unsafe.compare methods from 10 to 9
psandoz
parents: 43207
diff changeset
   491
            return U.compareAndSetInt(obj, offset, expect, update);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   494
        public final boolean weakCompareAndSet(T obj, int expect, int update) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   495
            accessCheck(obj);
45518
4a116dd82fb5 8181292: Backport Rename internal Unsafe.compare methods from 10 to 9
psandoz
parents: 43207
diff changeset
   496
            return U.compareAndSetInt(obj, offset, expect, update);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   499
        public final void set(T obj, int newValue) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   500
            accessCheck(obj);
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   501
            U.putIntVolatile(obj, offset, newValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   504
        public final void lazySet(T obj, int newValue) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   505
            accessCheck(obj);
36936
bfcdf736a998 8152698: Remove obsolete Unsafe.putOrdered{X} methods, usages, runtime and compiler support
shade
parents: 34339
diff changeset
   506
            U.putIntRelease(obj, offset, newValue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        public final int get(T obj) {
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   510
            accessCheck(obj);
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   511
            return U.getIntVolatile(obj, offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   514
        public final int getAndSet(T obj, int newValue) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   515
            accessCheck(obj);
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   516
            return U.getAndSetInt(obj, offset, newValue);
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   517
        }
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   518
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   519
        public final int getAndAdd(T obj, int delta) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   520
            accessCheck(obj);
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   521
            return U.getAndAddInt(obj, offset, delta);
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   522
        }
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   523
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   524
        public final int getAndIncrement(T obj) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   525
            return getAndAdd(obj, 1);
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   526
        }
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   527
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   528
        public final int getAndDecrement(T obj) {
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   529
            return getAndAdd(obj, -1);
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   530
        }
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   531
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   532
        public final int incrementAndGet(T obj) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   533
            return getAndAdd(obj, 1) + 1;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   534
        }
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   535
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   536
        public final int decrementAndGet(T obj) {
32838
caeef2c79243 8134854: Bulk integration of java.util.concurrent.atomic classes
dl
parents: 25859
diff changeset
   537
            return getAndAdd(obj, -1) - 1;
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   538
        }
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   539
34339
61d78c23fcdc 8140587: Atomic*FieldUpdaters should use Class.isInstance instead of direct class check
dl
parents: 33674
diff changeset
   540
        public final int addAndGet(T obj, int delta) {
15020
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   541
            return getAndAdd(obj, delta) + delta;
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   542
        }
50394fa17c1b 8006007: j.u.c.atomic classes should use intrinsic getAndXXX provided by 7023898
chegar
parents: 14325
diff changeset
   543
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
}