RFR: 8287567: AArch64: Implement post-call NOPs

Andrew Haley aph at openjdk.java.net
Wed Jun 1 16:43:36 UTC 2022


On Wed, 1 Jun 2022 07:32:35 GMT, Dean Long <dlong at openjdk.org> wrote:

>>> Is there any advantage to having the first instruction be "nop" instead of a branch that skips over the movks?
>>> 
>>> ```
>>> b done
>>> movk zr, lo
>>> movk zr, hi
>>> done:
>>> ```
>>> 
>>> I was going to suggest:
>>> 
>>> ```
>>>  b done
>>>  (raw data)
>>>  done:
>>> ```
>>> 
>>> but then it might be hard for NativePostCallNop::check() to prevent false positives.
>> 
>> The NOP is required for deoptimization.
>
>> The NOP is required for deoptimization.
> 
> I could be wrong, but I thought aarch64 allowed undefined instructions to be patched on top of branch instructions too.

@dean-long , are you happy with that explanation?

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

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


More information about the hotspot-dev mailing list