Skip to content

Commit ab7ff1e

Browse files
committedJun 23, 2021
8266885: [aarch64] Crash with 'Field too big for insn' for some tests under compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/
Reviewed-by: ngasson, dnsimon, kvn
1 parent 35e4c27 commit ab7ff1e

File tree

1 file changed

+29
-10
lines changed

1 file changed

+29
-10
lines changed
 

‎test/hotspot/jtreg/compiler/jvmci/jdk.vm.ci.code.test/src/jdk/vm/ci/code/test/aarch64/AArch64TestAssembler.java

+29-10
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,8 @@ public void emitPrologue() {
263263
@Override
264264
public void emitEpilogue() {
265265
recordMark(config.MARKID_DEOPT_HANDLER_ENTRY);
266-
recordCall(new HotSpotForeignCallTarget(config.handleDeoptStub), 5, true, null);
267-
code.emitInt(0x94000000); // bl <imm26>
266+
recordCall(new HotSpotForeignCallTarget(config.handleDeoptStub), 4*4, true, null);
267+
emitCall(0xdeaddeaddeadL);
268268
}
269269

270270
@Override
@@ -285,7 +285,7 @@ public void emitCallEpilogue(CallingConvention cc) {
285285

286286
@Override
287287
public void emitCall(long addr) {
288-
emitLoadLong(scratchRegister, addr);
288+
emitLoadPointer48(scratchRegister, addr);
289289
emitBlr(scratchRegister);
290290
}
291291

@@ -320,20 +320,39 @@ public void emitLoad(AllocatableValue av, Object prim) {
320320
}
321321
}
322322

323+
private void emitLoadPointer32(Register ret, long addr) {
324+
long a = addr;
325+
long al = a;
326+
a >>= 16;
327+
long ah = a;
328+
a >>= 16;
329+
assert a == 0 : "invalid pointer" + Long.toHexString(addr);
330+
// Set upper 16 bits first. See MacroAssembler::patch_oop().
331+
emitMovz(ret, ((int)ah & 0xffff), 16);
332+
emitMovk(ret, ((int)al & 0xffff), 0);
333+
}
334+
335+
private void emitLoadPointer48(Register ret, long addr) {
336+
// 48-bit VA
337+
long a = addr;
338+
emitMovz(ret, ((int)a & 0xffff), 0);
339+
a >>= 16;
340+
emitMovk(ret, ((int)a & 0xffff), 16);
341+
a >>= 16;
342+
emitMovk(ret, ((int)a & 0xffff), 32);
343+
a >>= 16;
344+
assert a == 0 : "invalid pointer" + Long.toHexString(addr);
345+
}
346+
323347
@Override
324348
public Register emitLoadPointer(HotSpotConstant c) {
325349
recordDataPatchInCode(new ConstantReference((VMConstant) c));
326350

327351
Register ret = newRegister();
328352
if (c.isCompressed()) {
329-
// Set upper 16 bits first. See MacroAssembler::patch_oop().
330-
emitMovz(ret, 0xdead, 16);
331-
emitMovk(ret, 0xdead, 0);
353+
emitLoadPointer32(ret, 0xdeaddeadL);
332354
} else {
333-
// 48-bit VA
334-
emitMovz(ret, 0xdead, 0);
335-
emitMovk(ret, 0xdead, 16);
336-
emitMovk(ret, 0xdead, 32);
355+
emitLoadPointer48(ret, 0xdeaddeaddeadL);
337356
}
338357
return ret;
339358
}

0 commit comments

Comments
 (0)
Please sign in to comment.