RFR: 8294087: RISC-V: RVC: Fix a potential alignment issue and add more alignment assertions for the patchable calls/nops [v2]

Xiaolin Zheng xlinzheng at openjdk.org
Wed Sep 21 10:31:41 UTC 2022


On Wed, 21 Sep 2022 08:53:48 GMT, Feilong Jiang <fjiang at openjdk.org> wrote:

>> Xiaolin Zheng has updated the pull request incrementally with two additional commits since the last revision:
>> 
>>  - Modifications as to review comments
>>  - RISC-V: Fix a potential alignment issue and add more alignment assertions for the patchable calls/nops
>
> src/hotspot/cpu/riscv/macroAssembler_riscv.cpp line 94:
> 
>> 92: }
>> 93: 
>> 94: void MacroAssembler::assert_alignment() {
> 
> It's a bit weird that `assert_alignment` only checks the alignment of instruction size. Can you extend this method with a parameter like `align_size` to check any alignment? (instruction size can be the default size of the check)

Thank you, that is reasonable and I have modified it; but due to the introduction of `NativeInstruction::instruction_size` in the `macroassembler_riscv.hpp`, it seems we also need to introduce `nativeinst_riscv.hpp` in it. I was wondering is this okay, or other plans?

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

PR: https://git.openjdk.org/jdk/pull/10370


More information about the hotspot-dev mailing list