[llvm] 051918c - [DAG] expandIntMINMAX - add umax(x,1) --> sub(x,cmpeq(x,0)) fold
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri May 5 11:28:08 PDT 2023
Author: Simon Pilgrim
Date: 2023-05-05T19:27:52+01:00
New Revision: 051918c71e4d5b612da4124ef86b386c595cea7f
URL: https://github.com/llvm/llvm-project/commit/051918c71e4d5b612da4124ef86b386c595cea7f
DIFF: https://github.com/llvm/llvm-project/commit/051918c71e4d5b612da4124ef86b386c595cea7f.diff
LOG: [DAG] expandIntMINMAX - add umax(x,1) --> sub(x,cmpeq(x,0)) fold
Move the fold from X86 to generic expansion
(We also have several existing expansions that are missing freezes on repeated operands - I've added a TODO for now).
Added:
Modified:
llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
llvm/lib/Target/X86/X86ISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 20b80f882c27..3a9b62176ea0 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -9543,10 +9543,21 @@ SDValue TargetLowering::expandIntMINMAX(SDNode *Node, SelectionDAG &DAG) const {
SDValue Op0 = Node->getOperand(0);
SDValue Op1 = Node->getOperand(1);
EVT VT = Op0.getValueType();
+ EVT BoolVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
unsigned Opcode = Node->getOpcode();
SDLoc DL(Node);
+ // umax(x,1) --> sub(x,cmpeq(x,0)) iff cmp result is allbits
+ if (Opcode == ISD::UMAX && llvm::isOneOrOneSplat(Op1, true) && BoolVT == VT &&
+ getBooleanContents(VT) == ZeroOrNegativeOneBooleanContent) {
+ Op0 = DAG.getFreeze(Op0);
+ SDValue Zero = DAG.getConstant(0, DL, VT);
+ return DAG.getNode(ISD::SUB, DL, VT, Op0,
+ DAG.getSetCC(DL, VT, Op0, Zero, ISD::SETEQ));
+ }
+
// umin(x,y) -> sub(x,usubsat(x,y))
+ // TODO: Missing freeze(Op0)?
if (Opcode == ISD::UMIN && isOperationLegal(ISD::SUB, VT) &&
isOperationLegal(ISD::USUBSAT, VT)) {
return DAG.getNode(ISD::SUB, DL, VT, Op0,
@@ -9554,6 +9565,7 @@ SDValue TargetLowering::expandIntMINMAX(SDNode *Node, SelectionDAG &DAG) const {
}
// umax(x,y) -> add(x,usubsat(y,x))
+ // TODO: Missing freeze(Op0)?
if (Opcode == ISD::UMAX && isOperationLegal(ISD::ADD, VT) &&
isOperationLegal(ISD::USUBSAT, VT)) {
return DAG.getNode(ISD::ADD, DL, VT, Op0,
@@ -9567,10 +9579,10 @@ SDValue TargetLowering::expandIntMINMAX(SDNode *Node, SelectionDAG &DAG) const {
// Attempt to find an existing SETCC node that we can reuse.
// TODO: Do we need a generic doesSETCCNodeExist?
+ // TODO: Missing freeze(Op0)/freeze(Op1)?
auto buildMinMax = [&](ISD::CondCode PrefCC, ISD::CondCode AltCC,
ISD::CondCode PrefCommuteCC,
ISD::CondCode AltCommuteCC) {
- EVT BoolVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
SDVTList BoolVTList = DAG.getVTList(BoolVT);
for (ISD::CondCode CC : {PrefCC, AltCC}) {
if (DAG.doesNodeExist(ISD::SETCC, BoolVTList,
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 03880f2fddda..2c7dce0d3612 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -30219,17 +30219,6 @@ static SDValue LowerMINMAX(SDValue Op, const X86Subtarget &Subtarget,
if (VT == MVT::v32i16 || VT == MVT::v64i8)
return splitVectorIntBinary(Op, DAG);
- // umax(x,1) --> sub(x,cmpeq(x,0))
- // TODO: Move this to expandIntMINMAX?
- if (VT.isVector() && Op.getOpcode() == ISD::UMAX &&
- llvm::isOneOrOneSplat(Op.getOperand(1), true)) {
- SDLoc DL(Op);
- SDValue X = DAG.getFreeze(Op.getOperand(0));
- SDValue Zero = getZeroVector(VT, Subtarget, DAG, DL);
- return DAG.getNode(ISD::SUB, DL, VT, X,
- DAG.getSetCC(DL, VT, X, Zero, ISD::SETEQ));
- }
-
// Default to expand.
return SDValue();
}
More information about the llvm-commits
mailing list