[GlobalISel] Don't combine instructions with unknown type in hoist_logic_op_with_same...
authorVladislav Dzhidzhoev <vdzhidzhoev@accesssoftek.com>
Fri, 27 Jan 2023 02:01:22 +0000 (03:01 +0100)
committerVladislav Dzhidzhoev <vdzhidzhoev@accesssoftek.com>
Tue, 31 Jan 2023 23:54:15 +0000 (00:54 +0100)
This fixes failure for some LLVM IR.

Differential Revision: https://reviews.llvm.org/D142791

llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
llvm/test/CodeGen/AArch64/GlobalISel/postlegalizercombiner-hoist-same-hands.mir

index bbb7c7c..7b85f2e 100644 (file)
@@ -2750,7 +2750,7 @@ bool CombinerHelper::matchHoistLogicOpWithSameOpcodeHands(
   Register Y = RightHandInst->getOperand(1).getReg();
   LLT XTy = MRI.getType(X);
   LLT YTy = MRI.getType(Y);
-  if (XTy != YTy)
+  if (!XTy.isValid() || XTy != YTy)
     return false;
   if (!isLegalOrBeforeLegalizer({LogicOpcode, {XTy, YTy}}))
     return false;
index b05bd92..0c624d7 100644 (file)
@@ -58,3 +58,20 @@ body:             |
     %logic_op:_(s64) = G_OR %hand1, %hand2
     $x0 = COPY %logic_op(s64)
     RET_ReallyLR implicit $x0
+
+...
+---
+name:            dont_combine_physreg
+tracksRegLiveness: true
+legalized: true
+body:             |
+  bb.0:
+    liveins: $w0, $w1
+    ; Post-legalization, we must not crash here.
+    ;
+    ; CHECK-LABEL: name: dont_combine_physreg
+    %x:_(s32) = COPY $w0
+    %y:_(s32) = COPY $w1
+    %logic_op:_(s32) = G_OR %x, %y
+    $w0 = COPY %logic_op(s32)
+    RET_ReallyLR implicit $w0