[PATCH] D154760: [DAGCombine] Canonicalize operands for visitANDLike
Lu Weining via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 24 01:53:33 PDT 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG595d5f36f4f9: [DAGCombine] Canonicalize operands for visitANDLike (authored by hev, committed by SixWeining).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D154760/new/
https://reviews.llvm.org/D154760
Files:
llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
llvm/test/CodeGen/RISCV/and-add-lsr.ll
Index: llvm/test/CodeGen/RISCV/and-add-lsr.ll
===================================================================
--- llvm/test/CodeGen/RISCV/and-add-lsr.ll
+++ llvm/test/CodeGen/RISCV/and-add-lsr.ll
@@ -7,18 +7,14 @@
define i32 @and_add_lsr(i32 %x, i32 %y) {
; RV32I-LABEL: and_add_lsr:
; RV32I: # %bb.0:
-; RV32I-NEXT: lui a2, 1
-; RV32I-NEXT: addi a2, a2, -1
-; RV32I-NEXT: add a0, a0, a2
+; RV32I-NEXT: addi a0, a0, -1
; RV32I-NEXT: srli a1, a1, 20
; RV32I-NEXT: and a0, a1, a0
; RV32I-NEXT: ret
;
; RV64I-LABEL: and_add_lsr:
; RV64I: # %bb.0:
-; RV64I-NEXT: lui a2, 1
-; RV64I-NEXT: addiw a2, a2, -1
-; RV64I-NEXT: addw a0, a0, a2
+; RV64I-NEXT: addiw a0, a0, -1
; RV64I-NEXT: srliw a1, a1, 20
; RV64I-NEXT: and a0, a1, a0
; RV64I-NEXT: ret
Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -6195,6 +6195,11 @@
if (SDValue V = foldLogicOfSetCCs(true, N0, N1, DL))
return V;
+ // Canonicalize:
+ // and(x, add) -> and(add, x)
+ if (N1.getOpcode() == ISD::ADD)
+ std::swap(N0, N1);
+
// TODO: Rewrite this to return a new 'AND' instead of using CombineTo.
if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
VT.getSizeInBits() <= 64 && N0->hasOneUse()) {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D154760.543419.patch
Type: text/x-patch
Size: 1441 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20230724/75d51278/attachment.bin>
More information about the llvm-commits
mailing list