[PowerPC][NFC] Add test for D60506 to show differences in code-gen
[llvm-core.git] / test / CodeGen / PowerPC / testComparesileui.ll
blobaddaa9b991ed0c1d3586949814f6924a03e678f6
1 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -O2 \
2 ; RUN:   -ppc-gpr-icmps=all -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
3 ; RUN:  --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
4 ; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu -O2 \
5 ; RUN:   -ppc-gpr-icmps=all -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
6 ; RUN:  --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
8 @glob = common local_unnamed_addr global i32 0, align 4
10 ; Function Attrs: norecurse nounwind readnone
11 define signext i32 @test_ileui(i32 zeroext %a, i32 zeroext %b) {
12 entry:
13   %cmp = icmp ule i32 %a, %b
14   %sub = zext i1 %cmp to i32
15   ret i32 %sub
16 ; CHECK-LABEL: test_ileui:
17 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
18 ; CHECK-NEXT: not [[REG2:r[0-9]+]], [[REG1]]
19 ; CHECK-NEXT: rldicl r3, [[REG2]], 1, 63
20 ; CHECK: blr
23 ; Function Attrs: norecurse nounwind readnone
24 define signext i32 @test_ileui_sext(i32 zeroext %a, i32 zeroext %b) {
25 entry:
26   %cmp = icmp ule i32 %a, %b
27   %sub = sext i1 %cmp to i32
28   ret i32 %sub
29 ; CHECK-LABEL: @test_ileui_sext
30 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
31 ; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], [[REG1]], 1, 63
32 ; CHECK-NEXT: addi [[REG3:r[0-9]+]], [[REG2]], -1
33 ; CHECK-NEXT: blr
36 ; Function Attrs: norecurse nounwind readnone
37 define signext i32 @test_ileui_z(i32 zeroext %a) {
38 entry:
39   %cmp = icmp eq i32 %a, 0
40   %sub = zext i1 %cmp to i32
41   ret i32 %sub
42 ; CHECK-LABEL: test_ileui_z:
43 ; CHECK: cntlzw [[REG1:r[0-9]+]], r3
44 ; CHECK: srwi r3, [[REG1]], 5
45 ; CHECK: blr
48 ; Function Attrs: norecurse nounwind readnone
49 define signext i32 @test_ileui_sext_z(i32 zeroext %a) {
50 entry:
51   %cmp = icmp eq i32 %a, 0
52   %sub = sext i1 %cmp to i32
53   ret i32 %sub
54 ; CHECK-LABEL: @test_ileui_sext_z
55 ; CHECK: cntlzw [[REG1:r[0-9]+]], r3
56 ; CHECK-NEXT: srwi [[REG2:r[0-9]+]], [[REG1]], 5
57 ; CHECK-NEXT: neg r3, [[REG2]]
58 ; CHECK: blr
61 ; Function Attrs: norecurse nounwind
62 define void @test_ileui_store(i32 zeroext %a, i32 zeroext %b) {
63 entry:
64   %cmp = icmp ule i32 %a, %b
65   %sub = zext i1 %cmp to i32
66   store i32 %sub, i32* @glob
67   ret void
68 ; CHECK-LABEL: test_ileui_store:
69 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
70 ; CHECK: not [[REG2:r[0-9]+]], [[REG1]]
71 ; CHECK-NEXT: rldicl r3, [[REG2]], 1, 63
72 ; CHECK: blr
75 ; Function Attrs: norecurse nounwind
76 define void @test_ileui_sext_store(i32 zeroext %a, i32 zeroext %b) {
77 entry:
78   %cmp = icmp ule i32 %a, %b
79   %sub = sext i1 %cmp to i32
80   store i32 %sub, i32* @glob
81   ret void
82 ; CHECK-LABEL: @test_ileui_sext_store
83 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
84 ; CHECK: rldicl [[REG2:r[0-9]+]], [[REG1]], 1, 63
85 ; CHECK: addi [[REG3:r[0-9]+]], [[REG2]], -1
86 ; CHECK: stw  [[REG3]]
87 ; CHECK: blr
90 ; Function Attrs: norecurse nounwind
91 define void @test_ileui_z_store(i32 zeroext %a) {
92 entry:
93   %cmp = icmp eq i32 %a, 0
94   %sub = zext i1 %cmp to i32
95   store i32 %sub, i32* @glob
96   ret void
97 ; CHECK-LABEL: test_ileui_z_store:
98 ; CHECK: cntlzw [[REG1:r[0-9]+]], r3
99 ; CHECK: srwi {{r[0-9]+}}, [[REG1]], 5
100 ; CHECK: blr
103 ; Function Attrs: norecurse nounwind
104 define void @test_ileui_sext_z_store(i32 zeroext %a) {
105 entry:
106   %cmp = icmp eq i32 %a, 0
107   %sub = sext i1 %cmp to i32
108   store i32 %sub, i32* @glob
109   ret void
110 ; CHECK-LABEL: @test_ileui_sext_z_store
111 ; CHECK: cntlzw [[REG1:r[0-9]+]], r3
112 ; CHECK: srwi [[REG2:r[0-9]+]], [[REG1]], 5
113 ; CHECK: neg [[REG3:r[0-9]+]], [[REG2]]
114 ; CHECK: stw [[REG3]]
115 ; CHECK: blr