RFR: 8255368: Math.exp() gives wrong result for large values on x86 32-bit platforms [v6]
Xubo Zhang
github.com+58006833+xbzhang99 at openjdk.java.net
Tue Nov 17 20:49:07 UTC 2020
On Tue, 17 Nov 2020 02:21:49 GMT, Vladimir Kozlov <kvn at openjdk.org> wrote:
>> src/hotspot/cpu/x86/macroAssembler_x86_exp.cpp line 496:
>>
>>> 494: movl(Address(rsp, 64), tmp);
>>> 495: lea(tmp, ExternalAddress(static_const_table));
>>> 496: movsd(xmm0, Address(rsp, 128));
>>
>> Can you explain this change?
>
> Would be nice to add comment about what values are on stack.
movdqu moves 128 bits from the memory, while movsd moves 64 bits. movsd is what's needed for double precision calculation.
In this case however, no harm was done even using movdqu, as the subsequent vunpcklpd would broadcast only the lower 64bits. Still it is safe to change to movsd to begin with
an example of stack is c05ec00000000000. movqqu would move 0x00000000e719ee40c05ec00000000000
-------------
PR: https://git.openjdk.java.net/jdk/pull/894
More information about the hotspot-dev
mailing list