Description[wasm] Detect unrepresentability in the float32-to-int32 conversion correctly on arm.
In the current implementation of wasm an unrepresentable input of the
float32-to-int32 conversion is detected by first truncating the input, then
converting the truncated input to int32 and back to float32, and then checking
whether the result is the same as the truncated input.
This input check does not work on arm and arm64 for an input of (INT32_MAX + 1)
because on these platforms the float32-to-int32 conversion results in INT32_MAX
if the input is greater than INT32_MAX. When INT32_MAX is converted back to
float32, then the result is (INT32_MAX + 1) again because INT32_MAX cannot be
represented precisely as float32, and rounding-to-nearest results in (INT32_MAX
+ 1). Since (INT32_MAX + 1) equals the truncated input value, the input appears
to be representable.
With the changes in this CL, the result of the float32-to-int32 conversion is
incremented by 1 if the original result was INT32_MAX. Thereby the detection of
unrepresenable inputs in wasm works. Note that since INT32_MAX cannot be
represented precisely in float32, it can also never be a valid result of the
float32-to-int32 conversion.
@v8-mips-ports, can you do a similar implementation for mips?
R=titzer@chromium.org, Rodolph.Perfetta@arm.com
Committed: https://crrev.com/de369129d272c9cbd2a6282f4097a5d0ce264e85
Cr-Commit-Position: refs/heads/master@{#37448}
Patch Set 1 #
Total comments: 5
Patch Set 2 : Update bounds in test-run-machops #
Total comments: 2
Patch Set 3 : address comments #
Total comments: 2
Patch Set 4 : use i.OutputRegister32() instead of i.OutputRegister() #
Total comments: 2
Patch Set 5 : Define the bounds properly in variables. #
Messages
Total messages: 20 (3 generated)
|