|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, 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 8223923 |
| 27 | + * @modules java.base/jdk.internal.misc |
| 28 | + * @run main/othervm -Xbatch compiler.unsafe.MismatchedUnsafeAccessTest |
| 29 | + */ |
| 30 | +package compiler.unsafe; |
| 31 | + |
| 32 | +import jdk.internal.misc.Unsafe; |
| 33 | + |
| 34 | +public class MismatchedUnsafeAccessTest { |
| 35 | + private static final Unsafe UNSAFE = Unsafe.getUnsafe(); |
| 36 | + |
| 37 | + public static class Test { |
| 38 | + public int x = 0; |
| 39 | + public int y = 0; |
| 40 | + |
| 41 | + public static final long offsetX; |
| 42 | + public static final long offsetY; |
| 43 | + |
| 44 | + static { |
| 45 | + try { |
| 46 | + offsetX = UNSAFE.objectFieldOffset(Test.class.getField("x")); |
| 47 | + offsetY = UNSAFE.objectFieldOffset(Test.class.getField("y")); |
| 48 | + } catch (NoSuchFieldException e) { |
| 49 | + throw new InternalError(e); |
| 50 | + } |
| 51 | + // Validate offsets |
| 52 | + if (offsetX >= offsetY || offsetY - offsetX != 4) { |
| 53 | + throw new InternalError("Wrong offsets: " + offsetX + " " + offsetY); |
| 54 | + } |
| 55 | + } |
| 56 | + } |
| 57 | + |
| 58 | + public static int test(long l) { |
| 59 | + Test a = new Test(); |
| 60 | + UNSAFE.putLong(a, Test.offsetX, l); // mismatched access; interferes with subsequent load |
| 61 | + return UNSAFE.getInt(a, Test.offsetY); |
| 62 | + } |
| 63 | + |
| 64 | + public static void main(String[] args) { |
| 65 | + for (int i = 0; i < 20_000; i++) { |
| 66 | + int res = test(-1L); |
| 67 | + if (res != -1) { |
| 68 | + throw new AssertionError("Wrong result: " + res); |
| 69 | + } |
| 70 | + } |
| 71 | + System.out.println("TEST PASSED"); |
| 72 | + } |
| 73 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Oct 4, 2021
Review
Issues