[llvm] IRBuilder: Add NoSignedZeros parameter to CreateMaxNum/CreateMinNum (PR #129173)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 17:52:13 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-ir
Author: YunQiang Su (wzssyqa)
<details>
<summary>Changes</summary>
In https://github.com/llvm/llvm-project/pull/112852, we claimed that llvm.minnum and llvm.maxnum should treat +0.0>-0.0, while libc doesn't require fmin(3)/fmax(3) for it.
Let's add NoSignedZeros parameter to CreateMaxNum and CreateMinNum, so that they can used by CodeGenFunction::EmitBuiltinExpr of Clang.
---
Full diff: https://github.com/llvm/llvm-project/pull/129173.diff
1 Files Affected:
- (modified) llvm/include/llvm/IR/IRBuilder.h (+14-6)
``````````diff
diff --git a/llvm/include/llvm/IR/IRBuilder.h b/llvm/include/llvm/IR/IRBuilder.h
index 933dbb306d1fc..fe8c269101847 100644
--- a/llvm/include/llvm/IR/IRBuilder.h
+++ b/llvm/include/llvm/IR/IRBuilder.h
@@ -1005,23 +1005,31 @@ class IRBuilderBase {
const Twine &Name = "");
/// Create call to the minnum intrinsic.
- Value *CreateMinNum(Value *LHS, Value *RHS, const Twine &Name = "") {
+ Value *CreateMinNum(Value *LHS, Value *RHS, const Twine &Name = "",
+ bool NoSignedZeros = false) {
+ llvm::FastMathFlags FMF;
+ FMF.setNoSignedZeros(NoSignedZeros);
+ FMFSource FMFSrc(FMF);
if (IsFPConstrained) {
return CreateConstrainedFPUnroundedBinOp(
- Intrinsic::experimental_constrained_minnum, LHS, RHS, nullptr, Name);
+ Intrinsic::experimental_constrained_minnum, LHS, RHS, FMFSrc, Name);
}
- return CreateBinaryIntrinsic(Intrinsic::minnum, LHS, RHS, nullptr, Name);
+ return CreateBinaryIntrinsic(Intrinsic::minnum, LHS, RHS, FMFSrc, Name);
}
/// Create call to the maxnum intrinsic.
- Value *CreateMaxNum(Value *LHS, Value *RHS, const Twine &Name = "") {
+ Value *CreateMaxNum(Value *LHS, Value *RHS, const Twine &Name = "",
+ bool NoSignedZeros = false) {
+ llvm::FastMathFlags FMF;
+ FMF.setNoSignedZeros(NoSignedZeros);
+ FMFSource FMFSrc(FMF);
if (IsFPConstrained) {
return CreateConstrainedFPUnroundedBinOp(
- Intrinsic::experimental_constrained_maxnum, LHS, RHS, nullptr, Name);
+ Intrinsic::experimental_constrained_maxnum, LHS, RHS, FMFSrc, Name);
}
- return CreateBinaryIntrinsic(Intrinsic::maxnum, LHS, RHS, nullptr, Name);
+ return CreateBinaryIntrinsic(Intrinsic::maxnum, LHS, RHS, FMFSrc, Name);
}
/// Create call to the minimum intrinsic.
``````````
</details>
https://github.com/llvm/llvm-project/pull/129173
More information about the llvm-commits
mailing list