[llvm] IRBuilder: Add NoSignedZeros parameter to CreateMaxNum/CreateMinNum (PR #129173)
YunQiang Su via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 17:51:38 PST 2025
https://github.com/wzssyqa created https://github.com/llvm/llvm-project/pull/129173
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.
>From 1c4a94686c171bbc7411a7f9fce083cfc9e77a1f Mon Sep 17 00:00:00 2001
From: YunQiang Su <yunqiang at isrc.iscas.ac.cn>
Date: Fri, 28 Feb 2025 09:45:25 +0800
Subject: [PATCH] IRBuilder: Add NoSignedZeros parameter to
CreateMaxNum/CreateMinNum
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.
---
llvm/include/llvm/IR/IRBuilder.h | 20 ++++++++++++++------
1 file changed, 14 insertions(+), 6 deletions(-)
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.
More information about the llvm-commits
mailing list