@@ -263,8 +263,8 @@ public void emitPrologue() {
263
263
@ Override
264
264
public void emitEpilogue () {
265
265
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 );
268
268
}
269
269
270
270
@ Override
@@ -285,7 +285,7 @@ public void emitCallEpilogue(CallingConvention cc) {
285
285
286
286
@ Override
287
287
public void emitCall (long addr ) {
288
- emitLoadLong (scratchRegister , addr );
288
+ emitLoadPointer48 (scratchRegister , addr );
289
289
emitBlr (scratchRegister );
290
290
}
291
291
@@ -320,20 +320,39 @@ public void emitLoad(AllocatableValue av, Object prim) {
320
320
}
321
321
}
322
322
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
+
323
347
@ Override
324
348
public Register emitLoadPointer (HotSpotConstant c ) {
325
349
recordDataPatchInCode (new ConstantReference ((VMConstant ) c ));
326
350
327
351
Register ret = newRegister ();
328
352
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 );
332
354
} else {
333
- // 48-bit VA
334
- emitMovz (ret , 0xdead , 0 );
335
- emitMovk (ret , 0xdead , 16 );
336
- emitMovk (ret , 0xdead , 32 );
355
+ emitLoadPointer48 (ret , 0xdeaddeaddeadL );
337
356
}
338
357
return ret ;
339
358
}
0 commit comments