[llvm] [RISCV] Add combine for shadd family of instructions. (PR #130829)
Stefan Pintilie via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 07:06:24 PDT 2025
================
@@ -14306,6 +14313,66 @@ static SDValue transformAddShlImm(SDNode *N, SelectionDAG &DAG,
return DAG.getNode(ISD::SHL, DL, VT, SHADD, DAG.getConstant(Bits, DL, VT));
}
+// Check if this SDValue is an add immediate that is fed by a shift of 1, 2,
+// or 3.
+static SDValue combineShlAddIAddImpl(SDNode *N, SDValue AddI, SDValue Other,
+ SelectionDAG &DAG) {
+ using namespace llvm::SDPatternMatch;
+
+ // Loooking for a reg-reg add and not an addi.
+ if (isa<ConstantSDNode>(N->getOperand(1)))
+ return SDValue();
+
+ // Based on testing it seems that performance degrades if the ADDI has
+ // more than 2 uses.
+ if (AddI->use_size() > 2)
+ return SDValue();
+
+ APInt AddVal;
+ SDValue SHLVal;
+ if (!sd_match(AddI, m_Add(m_Value(SHLVal), m_ConstInt(AddVal))))
+ return SDValue();
+
+ APInt VShift;
+ if (!sd_match(SHLVal, m_BinOp(ISD::SHL, m_Value(), m_ConstInt(VShift))))
+ return SDValue();
+
+ if (VShift.slt(1) || VShift.sgt(3))
+ return SDValue();
+
+ SDLoc DL(N);
+ EVT VT = N->getValueType(0);
+ int64_t ShlConst = VShift.getSExtValue();
+ int64_t AddConst = AddVal.getSExtValue();
+
+ SDValue SHADD = DAG.getNode(RISCVISD::SHL_ADD, DL, VT, SHLVal->getOperand(0),
+ DAG.getConstant(ShlConst, DL, VT), Other);
----------------
stefanp-synopsys wrote:
I've added new test cases. Among them, one where the constant on the add is negative and one where the constant on the shift is negative. We already check that the shift is 1, 2, or 3 so there is no way to get to this line with a negative shift. However, I have fixed the getConstant to getSignedConstant for the constant for the add.
https://github.com/llvm/llvm-project/pull/130829
More information about the llvm-commits
mailing list