RFR: 8248736: [aarch64] runtime/signal/TestSigpoll.java failed "fatal error: not an ldr (literal) instruction."

Stuart Monteith smonteith at openjdk.java.net
Mon Nov 30 09:34:56 UTC 2020


On Mon, 30 Nov 2020 09:18:28 GMT, Aleksey Shipilev <shade at openjdk.org> wrote:

>> Change mov to movptr in the nmethod entry barrier. movptr will generate a consistent number of mov/movk instructions that are necessary to consistently calculate the size of the nmethod barrier.
>
> src/hotspot/cpu/aarch64/gc/shared/barrierSetAssembler_aarch64.cpp line 257:
> 
>> 255:   __ br(Assembler::EQ, skip);
>> 256: 
>> 257:   __ movptr(rscratch1, (uintptr_t) StubRoutines::aarch64::method_entry_barrier());
> 
> Looking how the rest of AArch64 code calls into external things, this might be:
> 
>  __ lea(rscratch1, ExternalAddress(StubRoutines::aarch64::method_entry_barrier()));
> 
> ...which would end up doing the same (right) thing?

lea calls Address::lea, which itself might call movptr, or but it can also construct the address through other means. It won't, not in the way it is currently written. However, movptr() should be call when generating patchable sequences. While this address isn't patched, we do rely on the property that patchable sequences are of a fixed length. The mistake I made before was in not ensuring that property.

-------------

PR: https://git.openjdk.java.net/jdk/pull/1481


More information about the hotspot-dev mailing list