RFR: 8291550: RISC-V: jdk uses misaligned memory access when AvoidUnalignedAccess enabled [v5]

Andrew Haley aph at openjdk.org
Thu May 4 14:56:22 UTC 2023


On Tue, 2 May 2023 08:28:14 GMT, Vladimir Kempik <vkempik at openjdk.org> wrote:

>> Please review this attempt to remove misaligned loads and stores in risc-v specific part of jdk.
>> 
>> The patch has two main parts:
>>  - opcodes loads/stores is now using put_native_uX/get_native_uX
>>  - some code in template interp got changed to prevent misaligned loads
>>  
>> perf stat numbers for trp_lam ( misaligned loads) and trp_sam ( misaligned stores) before the patch: 
>> 
>>  169598      trp_lam                                          
>>   13562      trp_sam  
>> 
>> 
>> after the patch both numbers are zeroes.
>> I can see template interpreter to be ~40 % faster on hifive unmatched ( 1 repetition of renaissance philosophers in -Xint mode), and the same performance ( before and after the patch) on thead rvb-ice ( which supports misaligned stores/loads in hw)
>> 
>> tier testing on hw is in progress
>
> Vladimir Kempik has updated the pull request incrementally with one additional commit since the last revision:
> 
>   simpify branching in branch opcodes

src/hotspot/cpu/riscv/interp_masm_riscv.cpp line 228:

> 226:       slli(tmp, tmp, 24);
> 227:       add(index, index, tmp);
> 228:     } else {

Does it really make sense to do this here? Shouldn't there be an unaligned version of `lwu` in MacroAssembler?

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

PR Review Comment: https://git.openjdk.org/jdk/pull/13645#discussion_r1185139804


More information about the hotspot-dev mailing list