RFR: RISC-V: Reserve one extra temp register for C2_MacroAssembler::fast_lock

Patricio Chilano Mateo pchilanomate at openjdk.org
Wed Oct 9 13:51:04 UTC 2024


On Wed, 9 Oct 2024 07:12:07 GMT, Fei Yang <fyang at openjdk.org> wrote:

> This is a small improvement for `C2_MacroAssembler::fast_lock`. Currently, we reuse `disp_hdr` (alias of `tmp1Reg`) to hold the loaded current thread id, which means we need to reload markWord from object into displaced_header into `disp_hdr` for later use in recursive lock case. This change simply reserves one extra temp register 'tmp4reg' in order to hold the loaded current thread id like friend `C2_MacroAssembler::fast_lock_lightweight`, which would help avoid such a reloading of markWord. This also fixes one code comment of `C2_MacroAssembler::fast_lock_lightweight`.
> 
> Testing performed on linux-riscv64:
> - [x] make test TEST="hotspot_loom jdk_loom" (release build)
> - [x] make test TEST="hotspot_loom jdk_loom" TEST_VM_OPTS="-XX:+VerifyStack -XX:+VerifyContinuations" (fastdebug build)

Marked as reviewed by pchilanomate (Committer).

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

PR Review: https://git.openjdk.org/loom/pull/214#pullrequestreview-2357224568


More information about the loom-dev mailing list