Integrated: 8287552: riscv: Fix comment typo in li64
Feilong Jiang
fjiang at openjdk.java.net
Wed Jun 1 09:33:36 UTC 2022
On Tue, 31 May 2022 07:59:21 GMT, Feilong Jiang <fjiang at openjdk.org> wrote:
> In riscv, 'imm[31:28]’ should be 'imm[31:20]' for '0x7ff' in the following two places:
>
> src/hotspot/cpu/riscv/assembler_riscv.cpp:
>
>
> void Assembler::li64(Register Rd, int64_t imm) {
> // Load upper 32 bits. upper = imm[63:32], but if imm[31] == 1 or
> // (imm[31:28] == 0x7ff && imm[19] == 1), upper = imm[63:32] + 1.
> int64_t lower = imm & 0xffffffff;
>
>
> src/hotspot/cpu/riscv/macroAssembler_riscv.cpp:
>
>
> // Load upper 32 bits. Upper = target[63:32], but if target[31] = 1 or (target[31:28] == 0x7ff && target[19] == 1),
> // upper = target[63:32] + 1.
>
>
> This patch also unifies the immediate type in `movptr_with_offset` to `int64_t`.
>
> Hotspot tier1 test on QEMU passed without new failures.
This pull request has now been integrated.
Changeset: 0ef3d855
Author: Feilong Jiang <fjiang at openjdk.org>
Committer: Fei Yang <fyang at openjdk.org>
URL: https://git.openjdk.java.net/jdk/commit/0ef3d8551d85c9004087464d656074dac753acfd
Stats: 5 lines in 2 files changed: 0 ins; 0 del; 5 mod
8287552: riscv: Fix comment typo in li64
Co-authored-by: Dingli Zhang <dingli at iscas.ac.cn>
Reviewed-by: fyang
-------------
PR: https://git.openjdk.java.net/jdk/pull/8950
More information about the hotspot-dev
mailing list