|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 8277060 |
| 27 | + * @requires vm.debug == true & vm.compiler2.enabled |
| 28 | + * @modules java.base/jdk.internal.misc |
| 29 | + * |
| 30 | + * @run main/othervm -Xbatch -XX:CompileCommand=dontinline,compiler.debug.TestTracePhaseCCP::test |
| 31 | + * -XX:CompileCommand=compileonly,compiler.debug.TestTracePhaseCCP::test -XX:+TracePhaseCCP |
| 32 | + * compiler.debug.TestTracePhaseCCP |
| 33 | + */ |
| 34 | + |
| 35 | +package compiler.debug; |
| 36 | + |
| 37 | +import jdk.internal.misc.Unsafe; |
| 38 | +import java.nio.ByteOrder; |
| 39 | + |
| 40 | +public class TestTracePhaseCCP { |
| 41 | + static private Unsafe UNSAFE = Unsafe.getUnsafe(); |
| 42 | + |
| 43 | + static final boolean IS_BIG_ENDIAN = ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN; |
| 44 | + |
| 45 | + static int[] srcArr = new int[1]; |
| 46 | + static int[] dstArr = new int[1]; |
| 47 | + |
| 48 | + static int test(boolean flag) { |
| 49 | + int[] srcArrIntLocal = new int[1]; |
| 50 | + long[] srcArrLongLocal = new long[1]; |
| 51 | + Object srcArrLocal = (flag ? srcArrIntLocal : srcArrLongLocal); |
| 52 | + long srcOffset = (flag ? Unsafe.ARRAY_INT_BASE_OFFSET : Unsafe.ARRAY_LONG_BASE_OFFSET); |
| 53 | + srcOffset += (!flag && IS_BIG_ENDIAN ? 4 : 0); |
| 54 | + UNSAFE.copyMemory(srcArrLocal, srcOffset, dstArr, Unsafe.ARRAY_INT_BASE_OFFSET, 4); |
| 55 | + return dstArr[0]; |
| 56 | + } |
| 57 | + |
| 58 | + static boolean flag = false; |
| 59 | + |
| 60 | + public static void main(String[] args) { |
| 61 | + for (int i = 0; i < 20_000; i++) { |
| 62 | + flag = (i % 2 == 0); |
| 63 | + int r1 = test(flag); |
| 64 | + } |
| 65 | + } |
| 66 | +} |
0 commit comments