[naga hlsl-out msl-out spv-out] Avoid undefined behaviour when casting floats to integers #7422
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Connections
Depends on #7421 (not functionally, but they touch adjacent code so easier to land that first)
Depends on #7424
Fixes #7386
Fixes #7387
Description
We currently hit undefined behaviour when casting from floats to integers if the value is out of range for the target integer type. This avoids that. Additionally we must ensure we adhere to the spec's requirements:
This can be achieved by
clamp()
ing to the minimum and maximum floating point values that are also representable in the target type, before casting.Even though F64, I64, and U64 are not part of the WGSL spec we use the same behaviour when casting to/from those types, as it seems the less surprising choice.
Testing
Added new snapshot tests to ensure we handle this correctly during const eval.
I tested by hand with a compute shader that runtime values were as expected (on Windows/DXC, Linux/Vulkan, and Macos/Metal) but there is nothing in the test suite.
Squash or Rebase?
Either
Checklist
cargo fmt
.cargo clippy --tests
. If applicable, add:cargo xtask test
to run tests.CHANGELOG.md
entry.