1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
|
/*
* Copyright (c) 2024, Arm Limited. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package compiler.c2;
import jdk.internal.misc.Unsafe;
import jdk.test.lib.Asserts;
/**
* @test TestCastX2P
* @summary AArch64: remove extra register copy when converting from long to pointer.
* @bug 8336245
* @library /test/lib
* @modules java.base/jdk.internal.misc
* @run main/othervm -XX:-TieredCompilation compiler.c2.TestCastX2P
*/
public class TestCastX2P {
public static final int LEN = 2040;
static final Unsafe UNSAFE = Unsafe.getUnsafe();
public static long lseed = 0xbeef;
public static int iseed = 0xbeef;
public static short sseed = (short) (0xef);
public static byte bseed = (byte) (0xe);
public static long off1 = 16;
public static long off2 = 32;
public static long off3 = 64;
public static class TestLong {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 10_000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putLong(address+i, lseed);
}
}
UNSAFE.putLong(address + off1 + 1030, lseed);
UNSAFE.putLong(address + 1023, lseed);
UNSAFE.putLong(address + off2 + 1001, lseed);
}
}
public static class TestLongIndirect {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 1000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putLong(address+i, lseed);
}
}
UNSAFE.putLong(address + off1, lseed);
UNSAFE.putLong(address + off1 + off2, lseed);
UNSAFE.putLong(address + off3, lseed);
}
}
public static class TestInt {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 10_000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putInt(address+i, iseed);
}
}
UNSAFE.putInt(address + off1 + 274, iseed);
UNSAFE.putInt(address + 278, iseed);
UNSAFE.putInt(address + off2 + 282, iseed);
}
}
public static class TestIntIndirect {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 1000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putInt(address+i, iseed);
}
}
UNSAFE.putInt(address + off1, iseed);
UNSAFE.putInt(address + off1 + off2, iseed);
UNSAFE.putInt(address + off3, iseed);
}
}
public static class TestShort {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 10_000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putShort(address+i, sseed);
}
}
UNSAFE.putShort(address + off1 + 257, sseed);
UNSAFE.putShort(address + 277, sseed);
UNSAFE.putShort(address + off2 + 283, sseed);
}
}
public static class TestShortIndirect {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 1000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putShort(address+i, sseed);
}
}
UNSAFE.putShort(address + off1, sseed);
UNSAFE.putShort(address + off1 + off2, sseed);
UNSAFE.putShort(address + off3, sseed);
}
}
public static class TestByte {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 10_000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putByte(address+i, bseed);
}
}
UNSAFE.putByte(address + off1 + 257, bseed);
UNSAFE.putByte(address + 277, bseed);
UNSAFE.putByte(address + off2 + 283, bseed);
}
}
public static class TestByteIndirect {
private static long address = UNSAFE.allocateMemory(LEN);
static {
for (int k = 0; k < 1000; k++) {
for (int i = 0; i < LEN/2; i++) {
UNSAFE.putByte(address+i, bseed);
}
}
UNSAFE.putByte(address + off1, bseed);
UNSAFE.putByte(address + off1 + off2, bseed);
UNSAFE.putByte(address + off3, bseed);
}
}
static void test() {
TestLong t1 = new TestLong();
Asserts.assertEquals(UNSAFE.getLong(t1.address + off1 + 1030), lseed, "put long failed!");
Asserts.assertEquals(UNSAFE.getLong(t1.address + 1023), lseed, "put long failed!");
Asserts.assertEquals(UNSAFE.getLong(t1.address + off2 + 1001), lseed, "put long failed!");
TestLongIndirect t2 = new TestLongIndirect();
Asserts.assertEquals(UNSAFE.getLong(t2.address + off1), lseed, "put long failed!");
Asserts.assertEquals(UNSAFE.getLong(t2.address + off1 + off2), lseed, "put long failed!");
Asserts.assertEquals(UNSAFE.getLong(t2.address + off3), lseed, "put long failed!");
TestInt t3 = new TestInt();
Asserts.assertEquals(UNSAFE.getInt(t3.address + off1 + 274), iseed, "put int failed!");
Asserts.assertEquals(UNSAFE.getInt(t3.address + 278), iseed, "put int failed!");
Asserts.assertEquals(UNSAFE.getInt(t3.address + off2 + 282), iseed, "put int failed!");
TestIntIndirect t4 = new TestIntIndirect();
Asserts.assertEquals(UNSAFE.getInt(t4.address + off1), iseed, "put int failed!");
Asserts.assertEquals(UNSAFE.getInt(t4.address + off1 + off2), iseed, "put int failed!");
Asserts.assertEquals(UNSAFE.getInt(t4.address + off3), iseed, "put int failed!");
TestShort t5 = new TestShort();
Asserts.assertEquals(UNSAFE.getShort(t5.address + off1 + 257), sseed, "put short failed!");
Asserts.assertEquals(UNSAFE.getShort(t5.address + 277), sseed, "put short failed!");
Asserts.assertEquals(UNSAFE.getShort(t5.address + off2 + 283), sseed, "put short failed!");
TestShortIndirect t6 = new TestShortIndirect();
Asserts.assertEquals(UNSAFE.getShort(t6.address + off1), sseed, "put short failed!");
Asserts.assertEquals(UNSAFE.getShort(t6.address + off1 + off2), sseed, "put short failed!");
Asserts.assertEquals(UNSAFE.getShort(t6.address + off3), sseed, "put short failed!");
TestByte t7 = new TestByte();
Asserts.assertEquals(UNSAFE.getByte(t7.address + off1 + 257), bseed, "put byte failed!");
Asserts.assertEquals(UNSAFE.getByte(t7.address + 277), bseed, "put byte failed!");
Asserts.assertEquals(UNSAFE.getByte(t7.address + off2 + 283), bseed, "put byte failed!");
TestByteIndirect t8 = new TestByteIndirect();
Asserts.assertEquals(UNSAFE.getByte(t8.address + off1), bseed, "put byte failed!");
Asserts.assertEquals(UNSAFE.getByte(t8.address + off1 + off2), bseed, "put byte failed!");
Asserts.assertEquals(UNSAFE.getByte(t8.address + off3), bseed, "put byte failed!");
}
public static void main(String[] strArr) {
test();
}
}
|