-
Notifications
You must be signed in to change notification settings - Fork 987
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle more cases of undefined behaviour due to signed integer overflow or division by zero #7012
base: trunk
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still reviewing, some comments so far:
naga/src/back/hlsl/help.rs
Outdated
let level = crate::back::Level(1); | ||
writeln!( | ||
self.out, | ||
"{level}return val >= 0 ? val : asint(~asuint(val) + 1u);" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't HLSL support unary -
on uint
? C++ does. So this could just be
"{level}return val >= 0 ? val : asint(~asuint(val) + 1u);" | |
"{level}return val >= 0 ? val : asint(-asuint(val));" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah unsigned negation never even occurred to me. Can't see anything in the respective specs, but the shaders appear to pass validation so presumably it's supported.
naga/src/back/hlsl/help.rs
Outdated
writeln!(self.out, " val) {{")?; | ||
|
||
let level = crate::back::Level(1); | ||
writeln!(self.out, "{level}return asint(~asuint(val) + 1u);",)?; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly:
writeln!(self.out, "{level}return asint(~asuint(val) + 1u);",)?; | |
writeln!(self.out, "{level}return asint(-asuint(val));",)?; |
naga/src/back/hlsl/help.rs
Outdated
func_ctx | ||
.resolve_type(expr_handle, &module.types) | ||
.scalar_kind(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this just expr_ty
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes
naga/src/back/hlsl/help.rs
Outdated
let left_wrapped_ty = match *func_ctx.resolve_type(left, &module.types) { | ||
crate::TypeInner::Scalar(scalar) => (scalar, None), | ||
crate::TypeInner::Vector { size, scalar } => (scalar, Some(size)), | ||
_ => unreachable!(), | ||
}; | ||
let right_wrapped_ty = match *func_ctx.resolve_type(right, &module.types) { | ||
crate::TypeInner::Scalar(scalar) => (scalar, None), | ||
crate::TypeInner::Vector { size, scalar } => (scalar, Some(size)), | ||
_ => unreachable!(), | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't these resolve_type
calls exactly left_ty
and right_ty
, already computed above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes again
naga/src/back/hlsl/help.rs
Outdated
let (scalar, vector_size) = match *expr_ty { | ||
crate::TypeInner::Scalar(scalar) => (scalar, None), | ||
crate::TypeInner::Vector { size, scalar } => (scalar, Some(size)), | ||
_ => continue, | ||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You repeat this match a lot. Pity the poor reader who has to check that these are all the same, and wonder why if they're not. How about turning it into an impl TypeInner
utility function (vector_size_and_scalar
, say) in naga/src/proc/mod.rs
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done. the helpers in proc/mod.rs
seem to have been recently moved to proc/type_methods.rs
so that's where I put it
naga/src/back/hlsl/help.rs
Outdated
let level = crate::back::Level(1); | ||
match kind { | ||
crate::ScalarKind::Sint => { | ||
let min = 2u64.pow(expr_ty.scalar_width().unwrap() as u32 * 8 - 1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The unwrap
is kind of a code smell: if you know it's not going to panic, then you must have done some prior match that you ought to have been able to get the data out of.
This is actually the negative of the minimum, so the name is a little confusing.
Suggestion: drop the explicit -
in the format string and then use:
let min = 2u64.pow(expr_ty.scalar_width().unwrap() as u32 * 8 - 1); | |
let min = -1_i64 << (expr_ty.scalar_width().unwrap() as u32 * 8 - 1); |
That should get you the right minimum even for 64-bit integer types.
@@ -2579,7 +2583,7 @@ impl<'a, W: fmt::Write> super::Writer<'a, W> { | |||
crate::Literal::F64(value) => write!(self.out, "{value:?}L")?, | |||
crate::Literal::F32(value) => write!(self.out, "{value:?}")?, | |||
crate::Literal::U32(value) => write!(self.out, "{value}u")?, | |||
crate::Literal::I32(value) => write!(self.out, "{value}")?, | |||
crate::Literal::I32(value) => write!(self.out, "int({value})")?, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this necessary? This should have a comment, at least.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
naga/src/back/hlsl/writer.rs
Outdated
self.write_expr(module, right, func_ctx)?; | ||
write!(self.out, ")")?; | ||
} | ||
|
||
// TODO: handle undefined behavior of BinaryOperator::Modulo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we delete this comment too?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we still need to handle division by zero for floating points
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does HLSL say floating-point division by zero is UB? It seems like they usually follow IEEE.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This table is describing DXIL, and seems to imply that it's defined.
https://github.com/microsoft/DirectXShaderCompiler/blob/main/docs/DXIL.rst#fdiv
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry I meant to say modulo not division. But you might be right we can remove the comment, or at least have to update it. The modulus operator says it's undefined unless both operands are positive or negative. But we don't use the modulus operator, we use fmod()
. This doesn't say anything about being undefined. But we do need to check whether it has the same semantics as WGSL..
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed the reference to undefined behaviour, but left the "TODO: if right == 0 return ?" part for now.
This also fixes #4385, I think. |
46e2945
to
f82adbd
Compare
902a598
to
f44b83b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still reviewing, just posting some comments
pub(crate) const ABS_FUNCTION: &str = "naga_abs"; | ||
pub(crate) const DIV_FUNCTION: &str = "naga_div"; | ||
pub(crate) const MOD_FUNCTION: &str = "naga_mod"; | ||
pub(crate) const NEG_FUNCTION: &str = "naga_neg"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These need to be added to back::hlsl::keywords::RESERVED
, so that they won't conflict with the user's identifiers.
pub(crate) const ABS_FUNCTION: &str = "naga_abs"; | ||
pub(crate) const DIV_FUNCTION: &str = "naga_div"; | ||
pub(crate) const MOD_FUNCTION: &str = "naga_mod"; | ||
pub(crate) const NEG_FUNCTION: &str = "naga_neg"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As with HLSL, you need to tell the namer about these.
I like the infrastructure added to the Metal backend for this. Filed #7105 to take advantage of it more. |
I've fully reviewed the following commits and they look good to me:
|
…, negation, and abs Adds infrastructure to the MSL backend for emitting helper functions, based upon the existing HLSL backend equivalent. Emit helper functions for MathFunction::Abs and UnaryOperator::Negate with a signed integer scalar or vector operand. And for BinaryOperator::Divide and BinaryOperator::Modulo with signed or unsigned integer scalar or vector operands. Abs and Negate are written to avoid signed integer overflow when the operand equals INT_MIN. This is achieved by bitcasting the value to unsigned and using the negation operator, then bitcasting the result back to signed. Division and Modulo avoid undefined bevaviour for INT_MIN / -1 and divide-by-zero by using 1 for the divisor instead. Additionally we avoid undefined behaviour when using the modulo operator when either or both operands are negative by using the equation from the WGSL spec, using division, subtraction and multiplication, rather than MSL's modulus operator. Lastly, as the usage of the wrapper function for unary integer negation makes the negation_avoids_prefix_decrement() testcase less interesting, we extend it to additionally test negating floats.
There is no literal suffix in HLSL for the integer type. We can, however, wrap integer literals in a constructor style cast. This avoids ambiguity when passing literals to overloaded functions, which we'll make use of in the subsequent patch in this PR.
…, subtraction, and multiplication Though not explicitly specified one way or the other, we have been informed by DirectX engineers that signed integer overflow may be undefined behaviour in some cases. To avoid this, we therefore bitcast signed operands to unsigned prior to performing addition, subtraction, or multiplication, then bitcast the result back to signed. As signed types are represented as two's complement, this gives the correct result whilst avoid any potential undefined behaviour. Unfortunately HLSL's bitcast functions asint() and asuint() only work for the 32-bit int and uint types. We therefore only apply this workaround for 32-bit signed arithmetic. Support for other bit widths could be added in the future, but extra care must be taken when converting from unsigned to signed to avoid undefined or implemented-defined behaviour.
f44b83b
to
cec38f3
Compare
Filed #7109 for non-32-bit integer overflow UB in HLSl. |
…o, negation, and abs Emit helper functions for MathFunction::Abs and UnaryOperator::Negate with a signed integer scalar or vector operand. And for BinaryOperator::Divide and BinaryOperator::Modulo with signed or unsigned integer scalar or vector operands. Abs and Negate are written to avoid signed integer overflow when the operand equals INT_MIN. This is achieved by bitcasting the value to unsigned, using the negation operator, then bitcasting the result back to signed. As HLSL's bitcast functions asint() and asuint() only work for 32-bit types, we only use this workaround in such cases. Division and Modulo avoid undefined behaviour for INT_MIN / -1 and divide-by-zero by using 1 for the divisor instead. Additionally we avoid undefined behaviour when using the modulo operator on operands of mixed signedness by using the equation from the WGSL spec, using division, subtraction and multiplication, rather than HLSL's modulus operator.
Integer division or modulo is undefined behaviour in SPIR-V when the divisor is zero, or when the dividend is the most negative number representable by the result type and the divisor is negative one. This patch makes us avoid this undefined behaviour and instead ensures we adhere to the WGSL spec in these cases: for divisions the expression evaluates to the value of the dividend, and for modulos the expression evaluates to zero. Similarily to how we handle these cases for the MSL and HLSL backends, prior to emitting each function we emit code for any helper functions required by that function's expressions. In this case that is helper functions for integer division and modulo. Then, when emitting the actual function's body, if we encounter an expression which needs wrapped we instead emit a function call to the helper.
df8ff83
to
ab352b9
Compare
ab352b9
to
c1ddb37
Compare
This is quite large so is in separate commits both for reviewability and future readability - please land with a rebase rather than squash!!
Connections
Fixes #6961
Description
Signed arithmetic overflow is undefined behaviour as specified in the metal spec, and we have been informed that we cannot rely on it being safe in HLSL either. The simple cases (addition, subtraction, multiplication) are safe in SPIRV, and were handled in #6666 for metal, but still affect the HLSL backend. Additionally, some edge cases remain undefined behaviour for various backends:
This patch series ensures all these cases are handled if necessary for the MSL, HLSL, and SPIRV backends, in line with the WGSL spec's requirements.
Testing
Inspected test snapshots and ensure they still pass validation. Manual testing that compute shader outputs correct values for various operations.
Checklist
cargo fmt
.taplo format
.cargo clippy
. If applicable, add:--target wasm32-unknown-unknown
--target wasm32-unknown-emscripten
cargo xtask test
to run tests.CHANGELOG.md
. See simple instructions inside file.