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 i64 @test_llleui(i32 zeroext %a, i32 zeroext %b) {
13 %cmp = icmp ule i32 %a, %b
14 %conv1 = zext i1 %cmp to i64
16 ; CHECK-LABEL: test_llleui:
17 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
18 ; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], [[REG1]], 1, 63
19 ; CHECK-NEXT: xori r3, [[REG2]], 1
23 ; Function Attrs: norecurse nounwind readnone
24 define i64 @test_llleui_sext(i32 zeroext %a, i32 zeroext %b) {
26 %cmp = icmp ule i32 %a, %b
27 %conv1 = sext i1 %cmp to i64
29 ; CHECK-LABEL: @test_llleui_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
36 ; Function Attrs: norecurse nounwind readnone
37 define i64 @test_llleui_z(i32 zeroext %a) {
39 %cmp = icmp ule i32 %a, 0
40 %conv1 = zext i1 %cmp to i64
42 ; CHECK-LABEL: test_llleui_z:
43 ; CHECK: cntlzw r3, r3
44 ; CHECK-NEXT: srwi r3, r3, 5
48 ; Function Attrs: norecurse nounwind readnone
49 define i64 @test_llleui_sext_z(i32 zeroext %a) {
51 %cmp = icmp ule i32 %a, 0
52 %conv1 = sext i1 %cmp to i64
54 ; CHECK-LABEL: @test_llleui_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]]
61 ; Function Attrs: norecurse nounwind
62 define void @test_llleui_store(i32 zeroext %a, i32 zeroext %b) {
64 %cmp = icmp ule i32 %a, %b
65 %conv = zext i1 %cmp to i32
66 store i32 %conv, i32* @glob
68 ; CHECK-LABEL: test_llleui_store:
69 ; CHECK: sub [[REG1:r[0-9]+]], r4, r3
70 ; CHECK: rldicl [[REG2:r[0-9]+]], [[REG1]], 1, 63
71 ; CHECK: xori {{r[0-9]+}}, [[REG2]], 1
75 ; Function Attrs: norecurse nounwind
76 define void @test_llleui_sext_store(i32 zeroext %a, i32 zeroext %b) {
78 %cmp = icmp ule i32 %a, %b
79 %sub = sext i1 %cmp to i32
80 store i32 %sub, i32* @glob
82 ; CHECK-LABEL: @test_llleui_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
90 ; Function Attrs: norecurse nounwind
91 define void @test_llleui_z_store(i32 zeroext %a) {
93 %cmp = icmp ule i32 %a, 0
94 %conv = zext i1 %cmp to i32
95 store i32 %conv, i32* @glob
97 ; CHECK-LABEL: test_llleui_z_store:
98 ; CHECK: cntlzw r3, r3
99 ; CHECK: srwi r3, r3, 5
103 ; Function Attrs: norecurse nounwind
104 define void @test_llleui_sext_z_store(i32 zeroext %a) {
106 %cmp = icmp ule i32 %a, 0
107 %sub = sext i1 %cmp to i32
108 store i32 %sub, i32* @glob
110 ; CHECK-LABEL: @test_llleui_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]]