RFR: 8285868: x86_64 intrinsics for floating point methods isNaN, isFinite and isInfinite [v4]
Quan Anh Mai
duke at openjdk.java.net
Wed May 18 06:05:47 UTC 2022
On Wed, 18 May 2022 05:54:40 GMT, Srinivas Vamsi Parasa <duke at openjdk.java.net> wrote:
>> Will try the `xor dst, dst` and see the performance changes.
>
> setb either writes a 0 or 1 based on the condition. So, will it cause partial writes?
Actually `setb` only writes the byte portion and leaves the remaining of the register intact, so it would be wrong without clearing the register beforehand.
-------------
PR: https://git.openjdk.java.net/jdk/pull/8459
More information about the hotspot-compiler-dev
mailing list