summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/PowerPC/testComparesigtsll.ll
diff options
context:
space:
mode:
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>2017-09-25 14:05:46 +0000
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>2017-09-25 14:05:46 +0000
commitf7bc9ce37887c6126fa115cb0d03397139f2fa75 (patch)
tree26beb6fa97de0fa4b78951a3ae49f74f894cb6e3 /llvm/test/CodeGen/PowerPC/testComparesigtsll.ll
parent71070856e6cc8b406a09e7291f20e4434c7fad53 (diff)
downloadbcm5719-llvm-f7bc9ce37887c6126fa115cb0d03397139f2fa75.tar.gz
bcm5719-llvm-f7bc9ce37887c6126fa115cb0d03397139f2fa75.zip
[PowerPC] Eliminate compares - add i64 sext/zext handling for SETLT/SETGT
As mentioned in https://reviews.llvm.org/D33718, this simply adds another pattern to the compare elimination sequence and is committed without a differential review. llvm-svn: 314106
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/testComparesigtsll.ll')
-rw-r--r--llvm/test/CodeGen/PowerPC/testComparesigtsll.ll134
1 files changed, 134 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/PowerPC/testComparesigtsll.ll b/llvm/test/CodeGen/PowerPC/testComparesigtsll.ll
new file mode 100644
index 00000000000..ea50b492d60
--- /dev/null
+++ b/llvm/test/CodeGen/PowerPC/testComparesigtsll.ll
@@ -0,0 +1,134 @@
+; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -O2 \
+; RUN: -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
+; RUN: --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
+; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu -O2 \
+; RUN: -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
+; RUN: --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
+
+@glob = common local_unnamed_addr global i64 0, align 8
+
+; Function Attrs: norecurse nounwind readnone
+define signext i32 @test_igtsll(i64 %a, i64 %b) {
+; CHECK-LABEL: test_igtsll:
+; CHECK: # BB#0: # %entry
+; CHECK-NEXT: sradi [[REG1:r[0-9]+]], r4, 63
+; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], r3, 1, 63
+; CHECK-NEXT: subfc [[REG3:r[0-9]+]], r3, r4
+; CHECK-NEXT: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
+; CHECK-NEXT: xori r3, [[REG4]], 1
+; CHECK-NEXT: blr
+entry:
+ %cmp = icmp sgt i64 %a, %b
+ %conv = zext i1 %cmp to i32
+ ret i32 %conv
+}
+
+; Function Attrs: norecurse nounwind readnone
+define signext i32 @test_igtsll_sext(i64 %a, i64 %b) {
+; CHECK-LABEL: test_igtsll_sext:
+; CHECK: # BB#0: # %entry
+; CHECK-NEXT: sradi [[REG1:r[0-9]+]], r4, 63
+; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], r3, 1, 63
+; CHECK-NEXT: subfc [[REG3:r[0-9]+]], r3, r4
+; CHECK-NEXT: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
+; CHECK-NEXT: xori [[REG5:r[0-9]+]], [[REG4]], 1
+; CHECK-NEXT: neg r3, [[REG5]]
+; CHECK-NEXT: blr
+entry:
+ %cmp = icmp sgt i64 %a, %b
+ %sub = sext i1 %cmp to i32
+ ret i32 %sub
+}
+
+; FIXME
+; Function Attrs: norecurse nounwind readnone
+define signext i32 @test_igtsll_z(i64 %a) {
+; CHECK-LABEL: test_igtsll_z:
+; CHECK: # BB#0: # %entry
+; CHECK-NEXT: addi r4, r3, -1
+; CHECK-NEXT: nor r3, r4, r3
+; CHECK-NEXT: rldicl r3, r3, 1, 63
+; CHECK-NEXT: blr
+entry:
+ %cmp = icmp sgt i64 %a, 0
+ %conv = zext i1 %cmp to i32
+ ret i32 %conv
+}
+
+; Function Attrs: norecurse nounwind readnone
+define signext i32 @test_igtsll_sext_z(i64 %a) {
+; CHECK-LABEL: test_igtsll_sext_z:
+; CHECK: addi [[REG1:r[0-9]+]], r3, -1
+; CHECK-NEXT: nor [[REG2:r[0-9]+]], [[REG1]], r3
+; CHECK-NEXT: sradi r3, [[REG2]], 63
+entry:
+ %cmp = icmp sgt i64 %a, 0
+ %sub = sext i1 %cmp to i32
+ ret i32 %sub
+}
+
+; Function Attrs: norecurse nounwind
+define void @test_igtsll_store(i64 %a, i64 %b) {
+; CHECK-LABEL: test_igtsll_store:
+; CHECK: # BB#0: # %entry
+; CHECK: sradi [[REG1:r[0-9]+]], r4, 63
+; CHECK: rldicl [[REG2:r[0-9]+]], r3, 1, 63
+; CHECK-DIAG: subfc [[REG3:r[0-9]+]], r3, r4
+; CHECK: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
+; CHECK: xori [[REG5:r[0-9]+]], [[REG4]], 1
+; CHECK-NOT: neg
+entry:
+ %cmp = icmp sgt i64 %a, %b
+ %conv1 = zext i1 %cmp to i64
+ store i64 %conv1, i64* @glob, align 8
+ ret void
+}
+
+; Function Attrs: norecurse nounwind
+define void @test_igtsll_sext_store(i64 %a, i64 %b) {
+; CHECK-LABEL: test_igtsll_sext_store:
+; CHECK: # BB#0: # %entry
+; CHECK: sradi [[REG1:r[0-9]+]], r4, 63
+; CHECK: rldicl [[REG2:r[0-9]+]], r3, 1, 63
+; CHECK-DIAG: subfc [[REG3:r[0-9]+]], r3, r4
+; CHECK: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
+; CHECK: xori [[REG5:r[0-9]+]], [[REG4]], 1
+; CHECK: neg {{r[0-9]+}}, [[REG5]]
+entry:
+ %cmp = icmp sgt i64 %a, %b
+ %conv1 = sext i1 %cmp to i64
+ store i64 %conv1, i64* @glob, align 8
+ ret void
+}
+
+; FIXME
+; Function Attrs: norecurse nounwind
+define void @test_igtsll_z_store(i64 %a) {
+; CHECK-LABEL: test_igtsll_z_store:
+; CHECK: # BB#0: # %entry
+; CHECK-NEXT: addis r4, r2, .LC0@toc@ha
+; CHECK-NEXT: addi r5, r3, -1
+; CHECK-NEXT: ld r4, .LC0@toc@l(r4)
+; CHECK-NEXT: nor r3, r5, r3
+; CHECK-NEXT: rldicl r3, r3, 1, 63
+; CHECK-NEXT: std r3, 0(r4)
+; CHECK-NEXT: blr
+entry:
+ %cmp = icmp sgt i64 %a, 0
+ %conv1 = zext i1 %cmp to i64
+ store i64 %conv1, i64* @glob, align 8
+ ret void
+}
+
+; Function Attrs: norecurse nounwind
+define void @test_igtsll_sext_z_store(i64 %a) {
+; CHECK-LABEL: test_igtsll_sext_z_store:
+; CHECK: addi [[REG1:r[0-9]+]], r3, -1
+; CHECK: nor [[REG2:r[0-9]+]], [[REG1]], r3
+; CHECK: sradi [[REG3:r[0-9]+]], [[REG2]], 63
+entry:
+ %cmp = icmp sgt i64 %a, 0
+ %conv1 = sext i1 %cmp to i64
+ store i64 %conv1, i64* @glob, align 8
+ ret void
+}
OpenPOWER on IntegriCloud