[llvm] r348516 - [PowerPC] add tests for hoisting bitwise logic; NFC

Sanjay Patel via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 6 11:05:19 PST 2018


Author: spatel
Date: Thu Dec  6 11:05:19 2018
New Revision: 348516

URL: http://llvm.org/viewvc/llvm-project?rev=348516&view=rev
Log:
[PowerPC] add tests for hoisting bitwise logic; NFC

Added:
    llvm/trunk/test/CodeGen/PowerPC/hoist-logic.ll

Added: llvm/trunk/test/CodeGen/PowerPC/hoist-logic.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/hoist-logic.ll?rev=348516&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/hoist-logic.ll (added)
+++ llvm/trunk/test/CodeGen/PowerPC/hoist-logic.ll Thu Dec  6 11:05:19 2018
@@ -0,0 +1,72 @@
+; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
+; RUN: llc < %s -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s
+
+; This is good - eliminate an op by hoisting logic.
+
+define i32 @lshr_or(i32 %x, i32 %y, i32 %z, i32* %p1, i32* %p2) {
+; CHECK-LABEL: lshr_or:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    or 3, 3, 4
+; CHECK-NEXT:    srw 3, 3, 5
+; CHECK-NEXT:    blr
+  %xt = lshr i32 %x, %z
+  %yt = lshr i32 %y, %z
+  %r = or i32 %xt, %yt
+  ret i32 %r
+}
+
+; This is questionable - hoisting doesn't eliminate anything.
+
+define i32 @lshr_or_multiuse1(i32 %x, i32 %y, i32 %z, i32* %p1, i32* %p2) {
+; CHECK-LABEL: lshr_or_multiuse1:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    or 4, 3, 4
+; CHECK-NEXT:    srw 4, 4, 5
+; CHECK-NEXT:    srw 5, 3, 5
+; CHECK-NEXT:    mr 3, 4
+; CHECK-NEXT:    stw 5, 0(6)
+; CHECK-NEXT:    blr
+  %xt = lshr i32 %x, %z
+  %yt = lshr i32 %y, %z
+  store i32 %xt, i32* %p1
+  %r = or i32 %xt, %yt
+  ret i32 %r
+}
+
+; This is questionable - hoisting doesn't eliminate anything.
+
+define i32 @lshr_multiuse2(i32 %x, i32 %y, i32 %z, i32* %p1, i32* %p2) {
+; CHECK-LABEL: lshr_multiuse2:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    or 3, 3, 4
+; CHECK-NEXT:    srw 3, 3, 5
+; CHECK-NEXT:    srw 4, 4, 5
+; CHECK-NEXT:    stw 4, 0(7)
+; CHECK-NEXT:    blr
+  %xt = lshr i32 %x, %z
+  %yt = lshr i32 %y, %z
+  store i32 %yt, i32* %p2
+  %r = or i32 %xt, %yt
+  ret i32 %r
+}
+
+; FIXME: This is not profitable to hoist. We need an extra shift instruction.
+
+define i32 @lshr_multiuse3(i32 %x, i32 %y, i32 %z, i32* %p1, i32* %p2) {
+; CHECK-LABEL: lshr_multiuse3:
+; CHECK:       # %bb.0:
+; CHECK-NEXT:    or 8, 3, 4
+; CHECK-NEXT:    srw 3, 3, 5
+; CHECK-NEXT:    stw 3, 0(6)
+; CHECK-NEXT:    srw 3, 8, 5
+; CHECK-NEXT:    srw 4, 4, 5
+; CHECK-NEXT:    stw 4, 0(7)
+; CHECK-NEXT:    blr
+  %xt = lshr i32 %x, %z
+  %yt = lshr i32 %y, %z
+  store i32 %xt, i32* %p1
+  store i32 %yt, i32* %p2
+  %r = or i32 %xt, %yt
+  ret i32 %r
+}
+




More information about the llvm-commits mailing list