[PATCH] D107692: [DAGCombine] Prevent the transform of combine for multi-use operand

Allen zhong via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 7 03:08:27 PDT 2021


Allen created this revision.
Herald added subscribers: ecnelises, hiraditya.
Allen requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Fix the bug reported on link https://bugs.llvm.org/show_bug.cgi?id=51321


https://reviews.llvm.org/D107692

Files:
  llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
  llvm/test/CodeGen/AArch64/arm64-srl-and.ll


Index: llvm/test/CodeGen/AArch64/arm64-srl-and.ll
===================================================================
--- /dev/null
+++ llvm/test/CodeGen/AArch64/arm64-srl-and.ll
@@ -0,0 +1,24 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc -mcpu=tsv110 -O3 < %s | FileCheck %s
+
+; Disable the dagcombine if operand has multi use
+
+ at g = dso_local local_unnamed_addr global i16 0, align 4
+define dso_local noundef i32 @srl_and() local_unnamed_addr  {
+; CHECK-LABEL: srl_and:
+; CHECK:    mov w9, #65535
+; CHECK-NEXT:    add w8, w8, w9
+; CHECK-NEXT:    and w0, w8, w8, lsr #16
+entry:
+  %0 = load i16, i16* @g, align 4
+  %1 = xor i16 %0, 50
+  %tobool = icmp ne i16 %1, 0
+  %lor.ext = zext i1 %tobool to i32
+  %sub = add i16 %1, -1
+
+  %srl = zext i16 %sub to i32
+  %and = and i32 %srl, %lor.ext
+
+  ret i32 %and
+}
+
Index: llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -4941,7 +4941,7 @@
     return V;
 
   if (N0.getOpcode() == ISD::ADD && N1.getOpcode() == ISD::SRL &&
-      VT.getSizeInBits() <= 64) {
+      VT.getSizeInBits() <= 64 && N0.hasOneUse()) {
     if (ConstantSDNode *ADDI = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
       if (ConstantSDNode *SRLI = dyn_cast<ConstantSDNode>(N1.getOperand(1))) {
         // Look for (and (add x, c1), (lshr y, c2)). If C1 wasn't a legal


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107692.364947.patch
Type: text/x-patch
Size: 1523 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210807/0bc0fdac/attachment.bin>


More information about the llvm-commits mailing list