[llvm] 43ad2e9 - [DAG] Add getExtOrTrunc helper. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 20 08:03:29 PDT 2023
Author: Simon Pilgrim
Date: 2023-06-20T16:03:18+01:00
New Revision: 43ad2e9c8b03bfeb413f2af515ad1c2dcea0b871
URL: https://github.com/llvm/llvm-project/commit/43ad2e9c8b03bfeb413f2af515ad1c2dcea0b871
DIFF: https://github.com/llvm/llvm-project/commit/43ad2e9c8b03bfeb413f2af515ad1c2dcea0b871.diff
LOG: [DAG] Add getExtOrTrunc helper. NFC.
Wrap the getSExtOrTrunc/getZExtOrTrunc calls behind an IsSigned argument.
Added:
Modified:
llvm/include/llvm/CodeGen/SelectionDAG.h
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
llvm/lib/Target/X86/X86ISelLowering.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/CodeGen/SelectionDAG.h b/llvm/include/llvm/CodeGen/SelectionDAG.h
index 5303c89efcf0a..67904a8043a8e 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAG.h
+++ b/llvm/include/llvm/CodeGen/SelectionDAG.h
@@ -948,6 +948,13 @@ class SelectionDAG {
/// integer type VT, by either zero-extending or truncating it.
SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT);
+ /// Convert Op, which must be of integer type, to the
+ /// integer type VT, by either sign/zero-extending (depending on IsSigned) or
+ /// truncating it.
+ SDValue getExtOrTrunc(bool IsSigned, SDValue Op, const SDLoc &DL, EVT VT) {
+ return IsSigned ? getSExtOrTrunc(Op, DL, VT) : getZExtOrTrunc(Op, DL, VT);
+ }
+
/// Return the expression required to zero extend the Op
/// value assuming it was the smaller SrcTy value.
SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT);
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index 40aedeca2b061..3d095b1e681a6 100644
--- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -5552,8 +5552,7 @@ static SDValue PerformMinMaxFpToSatCombine(SDValue N0, SDValue N1, SDValue N2,
SDLoc DL(Fp);
SDValue Sat = DAG.getNode(NewOpc, DL, NewVT, Fp.getOperand(0),
DAG.getValueType(NewVT.getScalarType()));
- return Unsigned ? DAG.getZExtOrTrunc(Sat, DL, N2->getValueType(0))
- : DAG.getSExtOrTrunc(Sat, DL, N2->getValueType(0));
+ return DAG.getExtOrTrunc(!Unsigned, Sat, DL, N2->getValueType(0));
}
static SDValue PerformUMinFpToSatCombine(SDValue N0, SDValue N1, SDValue N2,
@@ -9997,8 +9996,8 @@ static SDValue combineShiftToMULH(SDNode *N, SelectionDAG &DAG,
SDValue Result =
DAG.getNode(MulhOpcode, DL, NarrowVT, LeftOp.getOperand(0), MulhRightOp);
- return (N->getOpcode() == ISD::SRA ? DAG.getSExtOrTrunc(Result, DL, WideVT)
- : DAG.getZExtOrTrunc(Result, DL, WideVT));
+ bool IsSigned = N->getOpcode() == ISD::SRA;
+ return DAG.getExtOrTrunc(IsSigned, Result, DL, WideVT);
}
// fold (bswap (logic_op(bswap(x),y))) -> logic_op(x,bswap(y))
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
index 511377ec50267..0c4c5fe74084f 100644
--- a/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
@@ -1038,14 +1038,8 @@ static SDValue earlyExpandDIVFIX(SDNode *N, SDValue LHS, SDValue RHS,
if (VT.isVector())
WideVT = EVT::getVectorVT(*DAG.getContext(), WideVT,
VT.getVectorElementCount());
- if (Signed) {
- LHS = DAG.getSExtOrTrunc(LHS, dl, WideVT);
- RHS = DAG.getSExtOrTrunc(RHS, dl, WideVT);
- } else {
- LHS = DAG.getZExtOrTrunc(LHS, dl, WideVT);
- RHS = DAG.getZExtOrTrunc(RHS, dl, WideVT);
- }
-
+ LHS = DAG.getExtOrTrunc(Signed, LHS, dl, WideVT);
+ RHS = DAG.getExtOrTrunc(Signed, RHS, dl, WideVT);
SDValue Res = TLI.expandFixedPointDiv(N->getOpcode(), dl, LHS, RHS, Scale,
DAG);
assert(Res && "Expanding DIVFIX with wide type failed?");
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
index f38957637b745..d70de26655b95 100644
--- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
@@ -5559,13 +5559,8 @@ static SDValue expandDivFix(unsigned Opcode, const SDLoc &DL,
PromVT = EVT::getVectorVT(Ctx, PromVT, VT.getVectorElementCount());
} else
llvm_unreachable("Wrong VT for DIVFIX?");
- if (Signed) {
- LHS = DAG.getSExtOrTrunc(LHS, DL, PromVT);
- RHS = DAG.getSExtOrTrunc(RHS, DL, PromVT);
- } else {
- LHS = DAG.getZExtOrTrunc(LHS, DL, PromVT);
- RHS = DAG.getZExtOrTrunc(RHS, DL, PromVT);
- }
+ LHS = DAG.getExtOrTrunc(Signed, LHS, DL, PromVT);
+ RHS = DAG.getExtOrTrunc(Signed, RHS, DL, PromVT);
EVT ShiftTy = TLI.getShiftAmountTy(PromVT, DAG.getDataLayout());
// For saturating operations, we need to shift up the LHS to get the
// proper saturation width, and then shift down again afterwards.
@@ -8229,10 +8224,7 @@ void SelectionDAGBuilder::processIntegerCallValue(const Instruction &I,
bool IsSigned) {
EVT VT = DAG.getTargetLoweringInfo().getValueType(DAG.getDataLayout(),
I.getType(), true);
- if (IsSigned)
- Value = DAG.getSExtOrTrunc(Value, getCurSDLoc(), VT);
- else
- Value = DAG.getZExtOrTrunc(Value, getCurSDLoc(), VT);
+ Value = DAG.getExtOrTrunc(IsSigned, Value, getCurSDLoc(), VT);
setValue(&I, Value);
}
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index 14ca38dbc30a8..0fe87ccddb01f 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -31659,8 +31659,8 @@ static SDValue LowerShift(SDValue Op, const X86Subtarget &Subtarget,
"Constant build vector expected");
if (VT == MVT::v16i8 && Subtarget.hasInt256()) {
- R = Opc == ISD::SRA ? DAG.getSExtOrTrunc(R, dl, ExVT)
- : DAG.getZExtOrTrunc(R, dl, ExVT);
+ bool IsSigned = Opc == ISD::SRA;
+ R = DAG.getExtOrTrunc(IsSigned, R, dl, ExVT);
R = DAG.getNode(ISD::MUL, dl, ExVT, R, Amt);
R = DAG.getNode(X86ISD::VSRLI, dl, ExVT, R, Cst8);
return DAG.getZExtOrTrunc(R, dl, VT);
More information about the llvm-commits
mailing list