RFR: 8318158: RISC-V: implement roundD/roundF intrinsics [v2]
Andrew Haley
aph at openjdk.org
Sat Nov 11 10:08:57 UTC 2023
On Thu, 9 Nov 2023 17:51:41 GMT, Vladimir Kempik <vkempik at openjdk.org> wrote:
>> src/hotspot/cpu/riscv/macroAssembler_riscv.cpp line 4263:
>>
>>> 4261: fadd_s(ftmp, src, ftmp);
>>> 4262: fcvt_w_s(dst, ftmp, RoundingMode::rdn);
>>> 4263:
>>
>> This still doesn't look right to me. I urge you to test it against the Java implementation over the full 32-bit range.
>
> I think it may start working if rounding mode for fadd_s would be changed from default rne, to rdn
It won't because of double rounding, and changing rounding modes is expensive.
https://github.com/openjdk/jdk/blob/master/src/hotspot/cpu/aarch64/macroAssembler_aarch64.cpp#L5882
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/16382#discussion_r1390193250
More information about the hotspot-dev
mailing list