1/*
2 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 */
23
24/*
25 * @test
26 * @bug 8143628
27 * @summary Test unsafe access for long
28 *
29 * @modules java.base/jdk.internal.misc:+open
30 * @run testng/othervm -Diters=100   -Xint                   compiler.unsafe.JdkInternalMiscUnsafeAccessTestLong
31 * @run testng/othervm -Diters=20000 -XX:TieredStopAtLevel=1 compiler.unsafe.JdkInternalMiscUnsafeAccessTestLong
32 * @run testng/othervm -Diters=20000 -XX:-TieredCompilation  compiler.unsafe.JdkInternalMiscUnsafeAccessTestLong
33 * @run testng/othervm -Diters=20000                         compiler.unsafe.JdkInternalMiscUnsafeAccessTestLong
34 */
35
36package compiler.unsafe;
37
38import org.testng.annotations.Test;
39
40import java.lang.reflect.Field;
41
42import static org.testng.Assert.*;
43
44public class JdkInternalMiscUnsafeAccessTestLong {
45    static final int ITERS = Integer.getInteger("iters", 1);
46    static final int WEAK_ATTEMPTS = Integer.getInteger("weakAttempts", 10);
47
48    static final jdk.internal.misc.Unsafe UNSAFE;
49
50    static final long V_OFFSET;
51
52    static final Object STATIC_V_BASE;
53
54    static final long STATIC_V_OFFSET;
55
56    static int ARRAY_OFFSET;
57
58    static int ARRAY_SHIFT;
59
60    static {
61        try {
62            Field f = jdk.internal.misc.Unsafe.class.getDeclaredField("theUnsafe");
63            f.setAccessible(true);
64            UNSAFE = (jdk.internal.misc.Unsafe) f.get(null);
65        } catch (Exception e) {
66            throw new RuntimeException("Unable to get Unsafe instance.", e);
67        }
68
69        try {
70            Field staticVField = JdkInternalMiscUnsafeAccessTestLong.class.getDeclaredField("static_v");
71            STATIC_V_BASE = UNSAFE.staticFieldBase(staticVField);
72            STATIC_V_OFFSET = UNSAFE.staticFieldOffset(staticVField);
73        } catch (Exception e) {
74            throw new RuntimeException(e);
75        }
76
77        try {
78            Field vField = JdkInternalMiscUnsafeAccessTestLong.class.getDeclaredField("v");
79            V_OFFSET = UNSAFE.objectFieldOffset(vField);
80        } catch (Exception e) {
81            throw new RuntimeException(e);
82        }
83
84        ARRAY_OFFSET = UNSAFE.arrayBaseOffset(long[].class);
85        int ascale = UNSAFE.arrayIndexScale(long[].class);
86        ARRAY_SHIFT = 31 - Integer.numberOfLeadingZeros(ascale);
87    }
88
89    static long static_v;
90
91    long v;
92
93    @Test
94    public void testFieldInstance() {
95        JdkInternalMiscUnsafeAccessTestLong t = new JdkInternalMiscUnsafeAccessTestLong();
96        for (int c = 0; c < ITERS; c++) {
97            testAccess(t, V_OFFSET);
98        }
99    }
100
101    @Test
102    public void testFieldStatic() {
103        for (int c = 0; c < ITERS; c++) {
104            testAccess(STATIC_V_BASE, STATIC_V_OFFSET);
105        }
106    }
107
108    @Test
109    public void testArray() {
110        long[] array = new long[10];
111        for (int c = 0; c < ITERS; c++) {
112            for (int i = 0; i < array.length; i++) {
113                testAccess(array, (((long) i) << ARRAY_SHIFT) + ARRAY_OFFSET);
114            }
115        }
116    }
117
118    @Test
119    public void testArrayOffHeap() {
120        int size = 10;
121        long address = UNSAFE.allocateMemory(size << ARRAY_SHIFT);
122        try {
123            for (int c = 0; c < ITERS; c++) {
124                for (int i = 0; i < size; i++) {
125                    testAccess(null, (((long) i) << ARRAY_SHIFT) + address);
126                }
127            }
128        } finally {
129            UNSAFE.freeMemory(address);
130        }
131    }
132
133    @Test
134    public void testArrayOffHeapDirect() {
135        int size = 10;
136        long address = UNSAFE.allocateMemory(size << ARRAY_SHIFT);
137        try {
138            for (int c = 0; c < ITERS; c++) {
139                for (int i = 0; i < size; i++) {
140                    testAccess((((long) i) << ARRAY_SHIFT) + address);
141                }
142            }
143        } finally {
144            UNSAFE.freeMemory(address);
145        }
146    }
147
148    static void testAccess(Object base, long offset) {
149        // Plain
150        {
151            UNSAFE.putLong(base, offset, 0x0123456789ABCDEFL);
152            long x = UNSAFE.getLong(base, offset);
153            assertEquals(x, 0x0123456789ABCDEFL, "set long value");
154        }
155
156        // Volatile
157        {
158            UNSAFE.putLongVolatile(base, offset, 0xCAFEBABECAFEBABEL);
159            long x = UNSAFE.getLongVolatile(base, offset);
160            assertEquals(x, 0xCAFEBABECAFEBABEL, "putVolatile long value");
161        }
162
163
164        // Lazy
165        {
166            UNSAFE.putLongRelease(base, offset, 0x0123456789ABCDEFL);
167            long x = UNSAFE.getLongAcquire(base, offset);
168            assertEquals(x, 0x0123456789ABCDEFL, "putRelease long value");
169        }
170
171        // Opaque
172        {
173            UNSAFE.putLongOpaque(base, offset, 0xCAFEBABECAFEBABEL);
174            long x = UNSAFE.getLongOpaque(base, offset);
175            assertEquals(x, 0xCAFEBABECAFEBABEL, "putOpaque long value");
176        }
177
178        // Unaligned
179        {
180            UNSAFE.putLongUnaligned(base, offset, 0xCAFEBABECAFEBABEL);
181            long x = UNSAFE.getLongUnaligned(base, offset);
182            assertEquals(x, 0xCAFEBABECAFEBABEL, "putUnaligned long value");
183        }
184
185        {
186            UNSAFE.putLongUnaligned(base, offset, 0x0123456789ABCDEFL, true);
187            long x = UNSAFE.getLongUnaligned(base, offset, true);
188            assertEquals(x, 0x0123456789ABCDEFL, "putUnaligned big endian long value");
189        }
190
191        {
192            UNSAFE.putLongUnaligned(base, offset, 0xCAFEBABECAFEBABEL, false);
193            long x = UNSAFE.getLongUnaligned(base, offset, false);
194            assertEquals(x, 0xCAFEBABECAFEBABEL, "putUnaligned little endian long value");
195        }
196
197        UNSAFE.putLong(base, offset, 0x0123456789ABCDEFL);
198
199        // Compare
200        {
201            boolean r = UNSAFE.compareAndSetLong(base, offset, 0x0123456789ABCDEFL, 0xCAFEBABECAFEBABEL);
202            assertEquals(r, true, "success compareAndSet long");
203            long x = UNSAFE.getLong(base, offset);
204            assertEquals(x, 0xCAFEBABECAFEBABEL, "success compareAndSet long value");
205        }
206
207        {
208            boolean r = UNSAFE.compareAndSetLong(base, offset, 0x0123456789ABCDEFL, 0xDEADBEEFDEADBEEFL);
209            assertEquals(r, false, "failing compareAndSet long");
210            long x = UNSAFE.getLong(base, offset);
211            assertEquals(x, 0xCAFEBABECAFEBABEL, "failing compareAndSet long value");
212        }
213
214        // Advanced compare
215        {
216            long r = UNSAFE.compareAndExchangeLong(base, offset, 0xCAFEBABECAFEBABEL, 0x0123456789ABCDEFL);
217            assertEquals(r, 0xCAFEBABECAFEBABEL, "success compareAndExchange long");
218            long x = UNSAFE.getLong(base, offset);
219            assertEquals(x, 0x0123456789ABCDEFL, "success compareAndExchange long value");
220        }
221
222        {
223            long r = UNSAFE.compareAndExchangeLong(base, offset, 0xCAFEBABECAFEBABEL, 0xDEADBEEFDEADBEEFL);
224            assertEquals(r, 0x0123456789ABCDEFL, "failing compareAndExchange long");
225            long x = UNSAFE.getLong(base, offset);
226            assertEquals(x, 0x0123456789ABCDEFL, "failing compareAndExchange long value");
227        }
228
229        {
230            long r = UNSAFE.compareAndExchangeLongAcquire(base, offset, 0x0123456789ABCDEFL, 0xCAFEBABECAFEBABEL);
231            assertEquals(r, 0x0123456789ABCDEFL, "success compareAndExchangeAcquire long");
232            long x = UNSAFE.getLong(base, offset);
233            assertEquals(x, 0xCAFEBABECAFEBABEL, "success compareAndExchangeAcquire long value");
234        }
235
236        {
237            long r = UNSAFE.compareAndExchangeLongAcquire(base, offset, 0x0123456789ABCDEFL, 0xDEADBEEFDEADBEEFL);
238            assertEquals(r, 0xCAFEBABECAFEBABEL, "failing compareAndExchangeAcquire long");
239            long x = UNSAFE.getLong(base, offset);
240            assertEquals(x, 0xCAFEBABECAFEBABEL, "failing compareAndExchangeAcquire long value");
241        }
242
243        {
244            long r = UNSAFE.compareAndExchangeLongRelease(base, offset, 0xCAFEBABECAFEBABEL, 0x0123456789ABCDEFL);
245            assertEquals(r, 0xCAFEBABECAFEBABEL, "success compareAndExchangeRelease long");
246            long x = UNSAFE.getLong(base, offset);
247            assertEquals(x, 0x0123456789ABCDEFL, "success compareAndExchangeRelease long value");
248        }
249
250        {
251            long r = UNSAFE.compareAndExchangeLongRelease(base, offset, 0xCAFEBABECAFEBABEL, 0xDEADBEEFDEADBEEFL);
252            assertEquals(r, 0x0123456789ABCDEFL, "failing compareAndExchangeRelease long");
253            long x = UNSAFE.getLong(base, offset);
254            assertEquals(x, 0x0123456789ABCDEFL, "failing compareAndExchangeRelease long value");
255        }
256
257        {
258            boolean success = false;
259            for (int c = 0; c < WEAK_ATTEMPTS && !success; c++) {
260                success = UNSAFE.weakCompareAndSetLongPlain(base, offset, 0x0123456789ABCDEFL, 0xCAFEBABECAFEBABEL);
261            }
262            assertEquals(success, true, "weakCompareAndSetPlain long");
263            long x = UNSAFE.getLong(base, offset);
264            assertEquals(x, 0xCAFEBABECAFEBABEL, "weakCompareAndSetPlain long value");
265        }
266
267        {
268            boolean success = false;
269            for (int c = 0; c < WEAK_ATTEMPTS && !success; c++) {
270                success = UNSAFE.weakCompareAndSetLongAcquire(base, offset, 0xCAFEBABECAFEBABEL, 0x0123456789ABCDEFL);
271            }
272            assertEquals(success, true, "weakCompareAndSetAcquire long");
273            long x = UNSAFE.getLong(base, offset);
274            assertEquals(x, 0x0123456789ABCDEFL, "weakCompareAndSetAcquire long");
275        }
276
277        {
278            boolean success = false;
279            for (int c = 0; c < WEAK_ATTEMPTS && !success; c++) {
280                success = UNSAFE.weakCompareAndSetLongRelease(base, offset, 0x0123456789ABCDEFL, 0xCAFEBABECAFEBABEL);
281            }
282            assertEquals(success, true, "weakCompareAndSetRelease long");
283            long x = UNSAFE.getLong(base, offset);
284            assertEquals(x, 0xCAFEBABECAFEBABEL, "weakCompareAndSetRelease long");
285        }
286
287        {
288            boolean success = false;
289            for (int c = 0; c < WEAK_ATTEMPTS && !success; c++) {
290                success = UNSAFE.weakCompareAndSetLong(base, offset, 0xCAFEBABECAFEBABEL, 0x0123456789ABCDEFL);
291            }
292            assertEquals(success, true, "weakCompareAndSet long");
293            long x = UNSAFE.getLong(base, offset);
294            assertEquals(x, 0x0123456789ABCDEFL, "weakCompareAndSet long");
295        }
296
297        UNSAFE.putLong(base, offset, 0xCAFEBABECAFEBABEL);
298
299        // Compare set and get
300        {
301            long o = UNSAFE.getAndSetLong(base, offset, 0x0123456789ABCDEFL);
302            assertEquals(o, 0xCAFEBABECAFEBABEL, "getAndSet long");
303            long x = UNSAFE.getLong(base, offset);
304            assertEquals(x, 0x0123456789ABCDEFL, "getAndSet long value");
305        }
306
307        UNSAFE.putLong(base, offset, 0x0123456789ABCDEFL);
308
309        // get and add, add and get
310        {
311            long o = UNSAFE.getAndAddLong(base, offset, 0xCAFEBABECAFEBABEL);
312            assertEquals(o, 0x0123456789ABCDEFL, "getAndAdd long");
313            long x = UNSAFE.getLong(base, offset);
314            assertEquals(x, (long)(0x0123456789ABCDEFL + 0xCAFEBABECAFEBABEL), "getAndAdd long");
315        }
316    }
317
318    static void testAccess(long address) {
319        // Plain
320        {
321            UNSAFE.putLong(address, 0x0123456789ABCDEFL);
322            long x = UNSAFE.getLong(address);
323            assertEquals(x, 0x0123456789ABCDEFL, "set long value");
324        }
325    }
326}
327