RFR: 8248736: [aarch64] runtime/signal/TestSigpoll.java failed "fatal error: not an ldr (literal) instruction."
Aleksey Shipilev
shade at openjdk.java.net
Mon Nov 30 09:21:02 UTC 2020
On Fri, 27 Nov 2020 15:11:18 GMT, Stuart Monteith <smonteith 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?
-------------
PR: https://git.openjdk.java.net/jdk/pull/1481
More information about the hotspot-dev
mailing list