[llvm] [RISCV] Add combine for shadd family of instructions. (PR #130829)
Stefan Pintilie via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 15:17:53 PDT 2025
================
@@ -14306,6 +14312,87 @@ 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 and then
+static bool checkAddiForShift(SDValue AddI) {
+ // Based on testing it seems that performance degrades if the ADDI has
+ // more than 2 uses.
+ if (AddI->use_size() > 2)
+ return false;
+
+ ConstantSDNode *AddConst = dyn_cast<ConstantSDNode>(AddI->getOperand(1));
+ if (!AddConst)
+ return false;
+
+ SDValue SHLVal = AddI->getOperand(0);
+ if (SHLVal->getOpcode() != ISD::SHL)
+ return false;
+
+ ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(SHLVal->getOperand(1));
+ if (!ShiftNode)
+ return false;
+
+ auto ShiftVal = ShiftNode->getSExtValue();
+ if (ShiftVal != 1 && ShiftVal != 2 && ShiftVal != 3)
+ return false;
+
+ return true;
+}
+
+// Optimize (add (add (shl x, c0), c1), y) ->
+// (ADDI (SH*ADD y, x), c1), if c0 equals to [1|2|3].
+static SDValue combineShlAddIAdd(SDNode *N, SelectionDAG &DAG,
+ const RISCVSubtarget &Subtarget) {
+ if (!ReassocShlAddiAdd)
+ return SDValue();
+
+ // Perform this optimization only in the zba extension.
+ if (!Subtarget.hasStdExtZba())
+ return SDValue();
+
+ // Skip for vector types and larger types.
+ EVT VT = N->getValueType(0);
+ if (VT.isVector() || VT.getSizeInBits() > Subtarget.getXLen())
+ return SDValue();
+
+ // Looking for a reg-reg add and not an addi.
+ auto *Op1 = dyn_cast<ConstantSDNode>(N->getOperand(1));
+ if (Op1)
+ return SDValue();
+ SDValue AddI;
+ SDValue Other;
+
+ if (N->getOperand(0)->getOpcode() == ISD::ADD &&
----------------
stefanp-synopsys wrote:
I have added the use of SDPatternMatch.
However, there is a bit of an issue. The file already makes use of PatternMatch which contains a lot of the same functions as SDPatternMatch. Calling these functions becomes ambiguous because the compiler doesn't know which version of the function to call. For example `m_Value()`. As a result I cannot simply add:
```
using namespace llvm::PatternMatch;
using namespace llvm::SDPatternMatch;
```
To get this working I was forced to add `SDPatternMatch::` in front of every function that is being used from that namespace and omit the `using namespace` line. This creates quite a bit of clutter in the code and I'm not sure if it is worth it.
Thoughts? @mshockwave @nemanjai
Also, if we do decide to go with SDPatternMatch there is more I can do with it.
https://github.com/llvm/llvm-project/pull/130829
More information about the llvm-commits
mailing list