1822N/A/*
2362N/A * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
1822N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1822N/A *
1822N/A * This code is free software; you can redistribute it and/or modify it
1822N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation.
1822N/A *
2362N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1822N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1822N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1822N/A * version 2 for more details (a copy is included in the LICENSE file that
1822N/A * accompanied this code).
1822N/A *
1822N/A * You should have received a copy of the GNU General Public License version
1822N/A * 2 along with this work; if not, write to the Free Software Foundation,
1822N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1822N/A *
1822N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1822N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
2362N/A */
2362N/A
1822N/A/**
1822N/A * @test
1822N/A * @bug 8000805
1822N/A * @summary JMM issue: short loads are non-atomic
1822N/A *
1822N/A * @run main/othervm -XX:+IgnoreUnrecognizedVMOptions -XX:-TieredCompilation -Xcomp -XX:+PrintCompilation -XX:CompileOnly=Test8000805.loadS2LmaskFF,Test8000805.loadS2Lmask16,Test8000805.loadS2Lmask13,Test8000805.loadUS_signExt,Test8000805.loadB2L_mask8 Test8000805
1822N/A */
1822N/A
1822N/Apublic class Test8000805 {
1822N/A static long loadS2LmaskFF (short[] sa) { return sa[0] & 0xFF; }
1822N/A static long loadS2LmaskFF_1 (short[] sa) { return sa[0] & 0xFF; }
1822N/A
1822N/A static long loadS2Lmask16 (short[] sa) { return sa[0] & 0xFFFE; }
1822N/A static long loadS2Lmask16_1 (short[] sa) { return sa[0] & 0xFFFE; }
1822N/A
1822N/A static long loadS2Lmask13 (short[] sa) { return sa[0] & 0x0FFF; }
1822N/A static long loadS2Lmask13_1 (short[] sa) { return sa[0] & 0x0FFF; }
1822N/A
1822N/A static int loadUS_signExt (char[] ca) { return (ca[0] << 16) >> 16; }
1822N/A static int loadUS_signExt_1 (char[] ca) { return (ca[0] << 16) >> 16; }
1822N/A
1822N/A static long loadB2L_mask8 (byte[] ba) { return ba[0] & 0x55; }
1822N/A static long loadB2L_mask8_1 (byte[] ba) { return ba[0] & 0x55; }
1822N/A
1822N/A public static void main(String[] args) {
1822N/A for (int i = Byte.MIN_VALUE; i < Byte.MAX_VALUE; i++) {
1822N/A byte[] ba = new byte[] { (byte) i};
1822N/A
1822N/A { long v1 = loadB2L_mask8(ba);
1822N/A long v2 = loadB2L_mask8_1(ba);
1822N/A if (v1 != v2)
1822N/A throw new InternalError(String.format("loadB2L_mask8 failed: %x != %x", v1, v2)); }
1822N/A }
1822N/A
1822N/A for (int i = Short.MIN_VALUE; i < Short.MAX_VALUE; i++) {
1822N/A short[] sa = new short[] { (short)i };
1822N/A char[] ca = new char[] { (char)i };
1822N/A
1822N/A { long v1 = loadS2LmaskFF(sa);
1822N/A long v2 = loadS2LmaskFF_1(sa);
1822N/A if (v1 != v2)
1822N/A throw new InternalError(String.format("loadS2LmaskFF failed: %x != %x", v1, v2)); }
1822N/A
1822N/A { long v1 = loadS2Lmask16(sa);
1822N/A long v2 = loadS2Lmask16_1(sa);
1822N/A if (v1 != v2)
1822N/A throw new InternalError(String.format("loadS2Lmask16 failed: %x != %x", v1, v2)); }
1822N/A
1822N/A { long v1 = loadS2Lmask13(sa);
1822N/A long v2 = loadS2Lmask13_1(sa);
1822N/A if (v1 != v2)
1822N/A throw new InternalError(String.format("loadS2Lmask13 failed: %x != %x", v1, v2)); }
1822N/A
1822N/A { int v1 = loadUS_signExt(ca);
1822N/A int v2 = loadUS_signExt_1(ca);
1822N/A if (v1 != v2)
1822N/A throw new InternalError(String.format("loadUS_signExt failed: %x != %x", v1, v2)); }
}
System.out.println("TEST PASSED.");
}
}