RFR: 8351145: RISC-V: only enable some crypto intrinsic when AvoidUnalignedAccess == false

Hamlin Li mli at openjdk.org
Tue Mar 4 16:18:27 UTC 2025


Hi,
Can you help to review the patch?

Depending whether a cpu supports fast misaligned access or not, the misaligned access can impact the performance a lot.
Some crypto intrinsic implementation on riscv do not consider data alignment and just use `ld` to load input byte array, and seems there is no way to do it, the main reason is that at java API level, the input byte array to these JVM intrinsic could be part of a real java array, so the input byte array could be 1/2...7 byte aligned.
And with the introduction of COH, it would be even complicated to do the input data alignment.

So, for the consistency of performance, seems it's better to disable these intrinsics when AvoidUnalignedAccess == true.
And the user can still enable the intrinsics explicitly on a CPU with AvoidUnalignedAccess == true if they want so.

Thanks!

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

Commit messages:
 - initial commit

Changes: https://git.openjdk.org/jdk/pull/23903/files
  Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=23903&range=00
  Issue: https://bugs.openjdk.org/browse/JDK-8351145
  Stats: 10 lines in 1 file changed: 4 ins; 4 del; 2 mod
  Patch: https://git.openjdk.org/jdk/pull/23903.diff
  Fetch: git fetch https://git.openjdk.org/jdk.git pull/23903/head:pull/23903

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


More information about the hotspot-dev mailing list