-
Notifications
You must be signed in to change notification settings - Fork 13.6k
[RISCV] Add DAG combine to turn (sub (shl X, 8-Y), (shr X, Y)) into orc.b #111828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thank you for submitting a Pull Request (PR) to the LLVM Project! This PR will be automatically labeled and the relevant teams will be notified. If you wish to, you can add reviewers by using the "Reviewers" section on this page. If this is not working for you, it is probably because you do not have write permissions for the repository. In which case you can instead tag reviewers by name in a comment by using If you have received no comments on your PR for a week, you can request a review by "ping"ing the PR by adding a comment “Ping”. The common courtesy "ping" rate is once a week. Please remember that you are asking for valuable time from other developers. If you have further questions, they may be answered by the LLVM GitHub User Guide. You can also ask questions in a comment on this PR, on the LLVM Discord or on the forums. |
@llvm/pr-subscribers-flang-fir-hlfir @llvm/pr-subscribers-backend-risc-v Author: Daniel Mokeev (damokeev) ChangesThis patch generalizes the DAG combine for Full diff: https://github.com/llvm/llvm-project/pull/111828.diff 2 Files Affected:
diff --git a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
index 01fa418e4dbdf4..ee948ca71a31c9 100644
--- a/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ b/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -23,12 +23,14 @@
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/MemoryLocation.h"
#include "llvm/Analysis/VectorUtils.h"
+#include "llvm/CodeGen/ISDOpcodes.h"
#include "llvm/CodeGen/MachineFrameInfo.h"
#include "llvm/CodeGen/MachineFunction.h"
#include "llvm/CodeGen/MachineInstrBuilder.h"
#include "llvm/CodeGen/MachineJumpTableInfo.h"
#include "llvm/CodeGen/MachineRegisterInfo.h"
#include "llvm/CodeGen/SelectionDAGAddressAnalysis.h"
+#include "llvm/CodeGen/SelectionDAGNodes.h"
#include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
#include "llvm/CodeGen/ValueTypes.h"
#include "llvm/IR/DiagnosticInfo.h"
@@ -13572,8 +13574,10 @@ static SDValue combineSubOfBoolean(SDNode *N, SelectionDAG &DAG) {
return DAG.getNode(ISD::ADD, DL, VT, NewLHS, NewRHS);
}
-// Looks for (sub (shl X, 8), X) where only bits 8, 16, 24, 32, etc. of X are
-// non-zero. Replace with orc.b.
+// Looks for (sub (shl X, 8-Y), (shr X, Y)) where the Y-th bit in each byte is
+// potentially set. It is fine for Y to be 0, meaning that (sub (shl X, 8), X)
+// is also valid. Replace with (orc.b X). For example, 0b0000_1000_0000_1000 is
+// valid with Y=3, while 0b0000_1000_0000_0100 is not.
static SDValue combineSubShiftToOrcB(SDNode *N, SelectionDAG &DAG,
const RISCVSubtarget &Subtarget) {
if (!Subtarget.hasStdExtZbb())
@@ -13587,18 +13591,41 @@ static SDValue combineSubShiftToOrcB(SDNode *N, SelectionDAG &DAG,
SDValue N0 = N->getOperand(0);
SDValue N1 = N->getOperand(1);
- if (N0.getOpcode() != ISD::SHL || N0.getOperand(0) != N1 || !N0.hasOneUse())
+ if (N0->getOpcode() != ISD::SHL)
+ return SDValue();
+
+ auto *ShAmtCLeft = dyn_cast<ConstantSDNode>(N0.getOperand(1));
+ if (!ShAmtCLeft)
+ return SDValue();
+ unsigned ShiftedAmount = 8 - ShAmtCLeft->getZExtValue();
+ SDValue LeftShiftOperand = N0->getOperand(0);
+ SDValue RightShiftOperand = N1;
+
+ if (ShiftedAmount != 0 && N1->getOpcode() != ISD::SRL)
+ return SDValue();
+
+ if (ShiftedAmount != 0) { // Right operand must be a right shift.
+ auto *ShAmtCRight = dyn_cast<ConstantSDNode>(N1.getOperand(1));
+ if (!ShAmtCRight || ShAmtCRight->getZExtValue() != ShiftedAmount)
+ return SDValue();
+ RightShiftOperand = N1.getOperand(0);
+ }
+
+ // At least one shift should have a single use.
+ if (!N0.hasOneUse() && (ShiftedAmount == 0 || !N1.hasOneUse()))
return SDValue();
- auto *ShAmtC = dyn_cast<ConstantSDNode>(N0.getOperand(1));
- if (!ShAmtC || ShAmtC->getZExtValue() != 8)
+ if (LeftShiftOperand != RightShiftOperand)
return SDValue();
- APInt Mask = APInt::getSplat(VT.getSizeInBits(), APInt(8, 0xfe));
- if (!DAG.MaskedValueIsZero(N1, Mask))
+ APInt Mask = APInt::getSplat(VT.getSizeInBits(), APInt(8, 0x1));
+ Mask <<= ShiftedAmount;
+ // Check that X has indeed the right shape (only the Y-th bit can be set in
+ // every byte).
+ if (!DAG.MaskedValueIsZero(LeftShiftOperand, ~Mask))
return SDValue();
- return DAG.getNode(RISCVISD::ORC_B, SDLoc(N), VT, N1);
+ return DAG.getNode(RISCVISD::ORC_B, SDLoc(N), VT, LeftShiftOperand);
}
static SDValue performSUBCombine(SDNode *N, SelectionDAG &DAG,
diff --git a/llvm/test/CodeGen/RISCV/orc-b-patterns.ll b/llvm/test/CodeGen/RISCV/orc-b-patterns.ll
new file mode 100644
index 00000000000000..184e66c14b33fc
--- /dev/null
+++ b/llvm/test/CodeGen/RISCV/orc-b-patterns.ll
@@ -0,0 +1,372 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --version 5
+; RUN: llc -mtriple=riscv32 -verify-machineinstrs < %s \
+; RUN: | FileCheck %s -check-prefixes=CHECK,RV32I
+; RUN: llc -mtriple=riscv32 -mattr=+zbb -verify-machineinstrs < %s \
+; RUN: | FileCheck %s -check-prefixes=CHECK,RV32ZBB
+
+define i32 @orc_b_i32_mul255(i32 %x) nounwind {
+; RV32I-LABEL: orc_b_i32_mul255:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a1, 4112
+; RV32I-NEXT: addi a1, a1, 257
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 8
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_mul255:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a1, 4112
+; RV32ZBB-NEXT: addi a1, a1, 257
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 16843009
+ %mul = mul nuw nsw i32 %and, 255
+ ret i32 %mul
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_lsb(i32 %x) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_lsb:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a1, 4112
+; RV32I-NEXT: addi a1, a1, 257
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 8
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_lsb:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a1, 4112
+; RV32ZBB-NEXT: addi a1, a1, 257
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 16843009
+ %sub = mul nuw i32 %and, 255
+ ret i32 %sub
+}
+
+define i32 @orc_b_i32_sub_shl8x_x_lsb_preshifted(i32 %x){
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_lsb_preshifted:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: srli a0, a0, 11
+; RV32I-NEXT: lui a1, 16
+; RV32I-NEXT: addi a1, a1, 257
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 8
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_lsb_preshifted:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: srli a0, a0, 11
+; RV32ZBB-NEXT: lui a1, 16
+; RV32ZBB-NEXT: addi a1, a1, 257
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %shr = lshr i32 %x, 11
+ %and = and i32 %shr, 16843009
+ %sub = mul nuw i32 %and, 255
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b1(i32 %x) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_b1:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a1, 8224
+; RV32I-NEXT: addi a1, a1, 514
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 7
+; RV32I-NEXT: srli a0, a0, 1
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_b1:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a1, 8224
+; RV32ZBB-NEXT: addi a1, a1, 514
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 33686018
+ %shl = shl i32 %and, 7
+ %shr = lshr exact i32 %and, 1
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b2(i32 %x) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_b2:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a1, 16448
+; RV32I-NEXT: addi a1, a1, 1028
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 6
+; RV32I-NEXT: srli a0, a0, 2
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_b2:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a1, 16448
+; RV32ZBB-NEXT: addi a1, a1, 1028
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 67372036
+ %shl = shl i32 %and, 6
+ %shr = lshr exact i32 %and, 2
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b3(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b3:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 24672
+; CHECK-NEXT: addi a1, a1, 1542
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: slli a1, a0, 5
+; CHECK-NEXT: srli a0, a0, 3
+; CHECK-NEXT: sub a0, a1, a0
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 101058054
+ %shl = shl nuw i32 %and, 5
+ %shr = lshr i32 %and, 3
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b4(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b4:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 32897
+; CHECK-NEXT: addi a1, a1, -2040
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: slli a1, a0, 4
+; CHECK-NEXT: srli a0, a0, 4
+; CHECK-NEXT: sub a0, a1, a0
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 134744072
+ %shl = shl nuw i32 %and, 4
+ %shr = lshr i32 %and, 4
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b5(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b5:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 65793
+; CHECK-NEXT: addi a1, a1, 16
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: slli a1, a0, 3
+; CHECK-NEXT: srli a0, a0, 5
+; CHECK-NEXT: sub a0, a1, a0
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 269488144
+ %shl = shl nuw i32 %and, 3
+ %shr = lshr i32 %and, 5
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b6(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b6:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 131586
+; CHECK-NEXT: addi a1, a1, 32
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: slli a1, a0, 2
+; CHECK-NEXT: srli a0, a0, 6
+; CHECK-NEXT: sub a0, a1, a0
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 538976288
+ %shl = shl nuw i32 %and, 2
+ %shr = lshr i32 %and, 6
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b7(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b7:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 263172
+; CHECK-NEXT: addi a1, a1, 64
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: slli a1, a0, 1
+; CHECK-NEXT: srli a0, a0, 7
+; CHECK-NEXT: sub a0, a1, a0
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 1077952576
+ %shl = shl nuw i32 %and, 1
+ %shr = lshr i32 %and, 7
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+define i32 @orc_b_i32_sub_shl8x_x_b1_shl_used(i32 %x, ptr %arr) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_b1_shl_used:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a2, 8224
+; RV32I-NEXT: addi a2, a2, 514
+; RV32I-NEXT: and a0, a0, a2
+; RV32I-NEXT: slli a2, a0, 7
+; RV32I-NEXT: srli a3, a0, 1
+; RV32I-NEXT: sub a0, a2, a3
+; RV32I-NEXT: sw a3, 0(a1)
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_b1_shl_used:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a2, 8224
+; RV32ZBB-NEXT: addi a2, a2, 514
+; RV32ZBB-NEXT: and a0, a0, a2
+; RV32ZBB-NEXT: srli a2, a0, 1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: sw a2, 0(a1)
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 33686018
+ %shl = shl i32 %and, 7
+ %shr = lshr exact i32 %and, 1
+ store i32 %shr, ptr %arr, align 4
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+define i32 @orc_b_i32_sub_shl8x_x_b1_srl_used(i32 %x, ptr %arr) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_b1_srl_used:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a2, 8224
+; RV32I-NEXT: addi a2, a2, 514
+; RV32I-NEXT: and a0, a0, a2
+; RV32I-NEXT: slli a2, a0, 7
+; RV32I-NEXT: srli a0, a0, 1
+; RV32I-NEXT: sub a0, a2, a0
+; RV32I-NEXT: sw a2, 0(a1)
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_b1_srl_used:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a2, 8224
+; RV32ZBB-NEXT: addi a2, a2, 514
+; RV32ZBB-NEXT: and a0, a0, a2
+; RV32ZBB-NEXT: slli a2, a0, 7
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: sw a2, 0(a1)
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 33686018
+ %shl = shl i32 %and, 7
+ %shr = lshr exact i32 %and, 1
+ store i32 %shl, ptr %arr, align 4
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_shl8x_x_b1_not_used(i32 %x, ptr %arr) {
+; RV32I-LABEL: orc_b_i32_sub_shl8x_x_b1_not_used:
+; RV32I: # %bb.0: # %entry
+; RV32I-NEXT: lui a1, 8224
+; RV32I-NEXT: addi a1, a1, 514
+; RV32I-NEXT: and a0, a0, a1
+; RV32I-NEXT: slli a1, a0, 7
+; RV32I-NEXT: srli a0, a0, 1
+; RV32I-NEXT: sub a0, a1, a0
+; RV32I-NEXT: ret
+;
+; RV32ZBB-LABEL: orc_b_i32_sub_shl8x_x_b1_not_used:
+; RV32ZBB: # %bb.0: # %entry
+; RV32ZBB-NEXT: lui a1, 8224
+; RV32ZBB-NEXT: addi a1, a1, 514
+; RV32ZBB-NEXT: and a0, a0, a1
+; RV32ZBB-NEXT: orc.b a0, a0
+; RV32ZBB-NEXT: ret
+entry:
+ %and = and i32 %x, 33686018
+ %shl = shl i32 %and, 7
+ %shr = lshr exact i32 %and, 1
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+define i32 @orc_b_i32_sub_shl8x_x_shl_used(i32 %x, ptr %arr){
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_shl_used:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a2, 4112
+; CHECK-NEXT: addi a2, a2, 257
+; CHECK-NEXT: and a0, a0, a2
+; CHECK-NEXT: slli a2, a0, 8
+; CHECK-NEXT: sub a0, a2, a0
+; CHECK-NEXT: sw a2, 0(a1)
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 16843009
+ %shl = shl i32 %and, 8
+ store i32 %shl, ptr %arr, align 4
+ %sub = mul nuw i32 %and, 255
+ ret i32 %sub
+}
+
+define i32 @orc_b_i32_sub_shl8x_x_b1_both_used(i32 %x, ptr %arr) {
+; CHECK-LABEL: orc_b_i32_sub_shl8x_x_b1_both_used:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a2, 8224
+; CHECK-NEXT: addi a2, a2, 514
+; CHECK-NEXT: and a0, a0, a2
+; CHECK-NEXT: slli a2, a0, 7
+; CHECK-NEXT: srli a3, a0, 1
+; CHECK-NEXT: sw a2, 0(a1)
+; CHECK-NEXT: sub a0, a2, a3
+; CHECK-NEXT: sw a3, 4(a1)
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 33686018
+ %shl = shl i32 %and, 7
+ %shr = lshr exact i32 %and, 1
+ store i32 %shl, ptr %arr, align 4
+ %arrayidx1 = getelementptr inbounds i8, ptr %arr, i32 4
+ store i32 %shr, ptr %arrayidx1, align 4
+ %sub = sub nsw i32 %shl, %shr
+ ret i32 %sub
+}
+
+
+define i32 @orc_b_i32_sub_x_shr8x(i32 %x) {
+; CHECK-LABEL: orc_b_i32_sub_x_shr8x:
+; CHECK: # %bb.0: # %entry
+; CHECK-NEXT: lui a1, 4112
+; CHECK-NEXT: addi a1, a1, 257
+; CHECK-NEXT: and a0, a0, a1
+; CHECK-NEXT: srli a1, a0, 8
+; CHECK-NEXT: sub a0, a0, a1
+; CHECK-NEXT: ret
+entry:
+ %and = and i32 %x, 16843009
+ %shr = lshr i32 %and, 8
+ %sub = sub nsw i32 %and, %shr
+ ret i32 %sub
+}
|
✅ With the latest revision this PR passed the C/C++ code formatter. |
Can you provide alive2 proofs? |
Sure, let me try that! |
Do you have a link to a guide for how to use alive2 for proofs where the target of the optimization is a RISC-V instruction? |
You should promote/refine RISC-V instructions to llvm IR. I wrote a tool for this: https://github.com/dtcxzyw/rvtv. |
I suppose it can be achieved with a very straightforward naive emulation of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Thank you!
Please add the generalized alive proof link to PR description.
Great, thanks for your feedback! Adding this now. |
cf72a16
to
c1e0f3f
Compare
Can you merge it in @dtcxzyw? |
Please fix format. Then I will merge this patch :) |
59b80dc
to
95030b0
Compare
95030b0
to
c2be5f9
Compare
Please remove 0ab4959. |
Yes trying to solve that right now, sorry about that. It was not a good idea to merge main into my branch. |
…rc.b This patch generalizes the DAG combine for (sub (shl X, 8), X) => (orc.b X) into the more general form of (sub (shl X, 8 - Y), (srl X, Y)) => (orc.b X). Alive2 generalized proof: https://alive2.llvm.org/ce/z/dFcf_n Related issue: llvm#96595 Related PR: llvm#96680
c2be5f9
to
320d370
Compare
@damokeev Congratulations on having your first Pull Request (PR) merged into the LLVM Project! Your changes will be combined with recent changes from other authors, then tested by our build bots. If there is a problem with a build, you may receive a report in an email or a comment on this PR. Please check whether problems have been caused by your change specifically, as the builds can include changes from many authors. It is not uncommon for your change to be included in a build that fails due to someone else's changes, or infrastructure issues. How to do this, and the rest of the post-merge process, is covered in detail here. If your change does cause a problem, it may be reverted, or you can revert it yourself. This is a normal part of LLVM development. You can fix your changes and open a new PR to merge them again. If you don't get any reports, no action is required from you. Your changes are working as expected, well done! |
Thanks! Sorry again for the git issues. |
…ent-indentonly * llvm-trunk/main: (6379 commits) [gn build] Port 1c94388 [RISCV] Introduce VLOptimizer pass (llvm#108640) [mlir][vector] Add more tests for ConvertVectorToLLVM (7/n) (llvm#111895) [libc++] Add output groups to run-buildbot (llvm#111739) [libc++abi] Remove unused LIBCXXABI_LIBCXX_INCLUDES CMake option (llvm#111824) [clang] Ignore inline namespace for `hasName` (llvm#109147) [AArch64] Disable consecutive store merging when Neon is unavailable (llvm#111519) [lldb] Fix finding make tool for tests (llvm#111980) Turn `-Wdeprecated-literal-operator` on by default (llvm#111027) [AMDGPU] Rewrite RegSeqNames using !foreach. NFC. (llvm#111994) Revert "Reland: [clang] Finish implementation of P0522 (llvm#111711)" Revert "[clang] CWG2398: improve overload resolution backwards compat (llvm#107350)" Revert "[clang] Implement TTP P0522 pack matching for deduced function template calls. (llvm#111457)" [Clang] Replace Intrinsic::getDeclaration with getOrInsertDeclaration (llvm#111990) Revert "[NVPTX] Prefer prmt.b32 over bfi.b32 (llvm#110766)" [RISCV] Add DAG combine to turn (sub (shl X, 8-Y), (shr X, Y)) into orc.b (llvm#111828) [libc] Fix compilation of new trig functions (llvm#111987) [NFC] Rename `Intrinsic::getDeclaration` to `getOrInsertDeclaration` (llvm#111752) [NFC][CodingStandard] Add additional example for if-else brace rule (llvm#111733) CodeGen: Remove redundant REQUIRES registered-target from tests (llvm#111982) ...
…rc.b (llvm#111828) This patch generalizes the DAG combine for `(sub (shl X, 8), X) => (orc.b X)` into the more general form of `(sub (shl X, 8 - Y), (srl X, Y)) => (orc.b X)`. Alive2 generalized proof: https://alive2.llvm.org/ce/z/dFcf_n Related issue: llvm#96595 Related PR: llvm#96680
This patch generalizes the DAG combine for
(sub (shl X, 8), X) => (orc.b X)
into the more general form of
(sub (shl X, 8 - Y), (srl X, Y)) => (orc.b X)
.Alive2 generalized proof: https://alive2.llvm.org/ce/z/dFcf_n
Related issue: #96595
Related PR: #96680