[SystemZ] Return true from convertSetCCLogicToBitwiseLogic for scalar integer.
authorJonas Paulsson <paulsson@linux.vnet.ibm.com>
Tue, 1 Jun 2021 16:38:00 +0000 (11:38 -0500)
committerJonas Paulsson <paulsson@linux.vnet.ibm.com>
Tue, 8 Jun 2021 21:27:28 +0000 (16:27 -0500)
Review: Ulrich Weigand

llvm/lib/Target/SystemZ/SystemZISelLowering.h
llvm/test/CodeGen/SystemZ/int-cmp-61.ll [new file with mode: 0644]

index 60969ff..248efc1 100644 (file)
@@ -441,6 +441,9 @@ public:
     ConstantInt* Mask = dyn_cast<ConstantInt>(AndI.getOperand(1));
     return Mask && Mask->getValue().isIntN(16);
   }
+  bool convertSetCCLogicToBitwiseLogic(EVT VT) const override {
+    return VT.isScalarInteger();
+  }
   EVT getSetCCResultType(const DataLayout &DL, LLVMContext &,
                          EVT) const override;
   bool isFMAFasterThanFMulAndFAdd(const MachineFunction &MF,
diff --git a/llvm/test/CodeGen/SystemZ/int-cmp-61.ll b/llvm/test/CodeGen/SystemZ/int-cmp-61.ll
new file mode 100644 (file)
index 0000000..f57944c
--- /dev/null
@@ -0,0 +1,25 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z14 | FileCheck %s
+;
+; Test using bitwise logic on icmp operands instead of i1 logic when
+; possible.
+
+define i32 @fun(i32* %Src) {
+; CHECK-LABEL: fun:
+; CHECK:       # %bb.0: # %bb
+; CHECK-NEXT:    lhi %r0, -2
+; CHECK-NEXT:    s %r0, 0(%r2)
+; CHECK-NEXT:    nill %r0, 65533
+; CHECK-NEXT:    chi %r0, 0
+; CHECK-NEXT:    lhi %r2, 0
+; CHECK-NEXT:    lochilh %r2, 1
+; CHECK-NEXT:    br %r14
+bb:
+  %i = load i32, i32* %Src
+  %i3 = sub nsw i32 0, %i
+  %i4 = icmp ne i32 %i3, 2
+  %i5 = icmp ne i32 %i3, 4
+  %i6 = and i1 %i4, %i5
+  %i7 = zext i1 %i6 to i32
+  ret i32 %i7
+}