[llvm] [RISCV] Add combine for shadd family of instructions. (PR #130829)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 15:11:29 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff f3e55944a9468842746467494dd89724a66fc533 b60ccb89d5e367a5057817a36cb2722286e6fbd6 --extensions cpp -- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index cce6025ca0..cec4a3dada 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -14314,8 +14314,10 @@ 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 bool checkAddiForShift(SDValue AddI, int64_t &AddConst, int64_t &ShlConst) {
+// Check if this SDValue is an add immediate that is fed by a shift of 1, 2,
+// or 3.
+static bool checkAddiForShift(SDValue AddI, int64_t &AddConst,
+ int64_t &ShlConst) {
// Based on testing it seems that performance degrades if the ADDI has
// more than 2 uses.
if (AddI->use_size() > 2)
@@ -14373,14 +14375,15 @@ static SDValue combineShlAddIAdd(SDNode *N, SelectionDAG &DAG,
if (!LHSIsAddI && !RHSIsAddI)
return SDValue();
- // If the LHS is not the result of an add or both sides are results of an add, but
- // the LHS does not have the desired structure with a shift, swap the operands.
+ // If the LHS is not the result of an add or both sides are results of an add,
+ // but the LHS does not have the desired structure with a shift, swap the
+ // operands.
if (!LHSIsAddI || (RHSIsAddI && !checkAddiForShift(AddI, AddConst, ShlConst)))
std::swap(AddI, Other);
// We simply need to ensure AddI has the desired structure.
if (!checkAddiForShift(AddI, AddConst, ShlConst))
- return SDValue();
+ return SDValue();
SDValue SHLVal = AddI->getOperand(0);
SDLoc DL(N);
``````````
</details>
https://github.com/llvm/llvm-project/pull/130829
More information about the llvm-commits
mailing list