[SystemZ] Tighten branch tests
[oota-llvm.git] / test / CodeGen / SystemZ / int-cmp-11.ll
1 ; Test 64-bit signed comparisons in which the second operand is a constant.
2 ;
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4
5 ; Check comparisons with 0.
6 define double @f1(double %a, double %b, i64 %i1) {
7 ; CHECK: f1:
8 ; CHECK: cghi %r2, 0
9 ; CHECK-NEXT: jl
10 ; CHECK: ldr %f0, %f2
11 ; CHECK: br %r14
12   %cond = icmp slt i64 %i1, 0
13   %res = select i1 %cond, double %a, double %b
14   ret double %res
15 }
16
17 ; Check comparisons with 1.
18 define double @f2(double %a, double %b, i64 %i1) {
19 ; CHECK: f2:
20 ; CHECK: cghi %r2, 1
21 ; CHECK-NEXT: jl
22 ; CHECK: ldr %f0, %f2
23 ; CHECK: br %r14
24   %cond = icmp slt i64 %i1, 1
25   %res = select i1 %cond, double %a, double %b
26   ret double %res
27 }
28
29 ; Check the high end of the CGHI range.
30 define double @f3(double %a, double %b, i64 %i1) {
31 ; CHECK: f3:
32 ; CHECK: cghi %r2, 32767
33 ; CHECK-NEXT: jl
34 ; CHECK: ldr %f0, %f2
35 ; CHECK: br %r14
36   %cond = icmp slt i64 %i1, 32767
37   %res = select i1 %cond, double %a, double %b
38   ret double %res
39 }
40
41 ; Check the next value up, which must use CGFI.
42 define double @f4(double %a, double %b, i64 %i1) {
43 ; CHECK: f4:
44 ; CHECK: cgfi %r2, 32768
45 ; CHECK-NEXT: jl
46 ; CHECK: ldr %f0, %f2
47 ; CHECK: br %r14
48   %cond = icmp slt i64 %i1, 32768
49   %res = select i1 %cond, double %a, double %b
50   ret double %res
51 }
52
53 ; Check the high end of the CGFI range.
54 define double @f5(double %a, double %b, i64 %i1) {
55 ; CHECK: f5:
56 ; CHECK: cgfi %r2, 2147483647
57 ; CHECK-NEXT: jl
58 ; CHECK: ldr %f0, %f2
59 ; CHECK: br %r14
60   %cond = icmp slt i64 %i1, 2147483647
61   %res = select i1 %cond, double %a, double %b
62   ret double %res
63 }
64
65 ; Check the next value up, which must use register comparison.
66 define double @f6(double %a, double %b, i64 %i1) {
67 ; CHECK: f6:
68 ; CHECK: cgr
69 ; CHECK-NEXT: jl
70 ; CHECK: ldr %f0, %f2
71 ; CHECK: br %r14
72   %cond = icmp slt i64 %i1, 2147483648
73   %res = select i1 %cond, double %a, double %b
74   ret double %res
75 }
76
77 ; Check the high end of the negative CGHI range.
78 define double @f7(double %a, double %b, i64 %i1) {
79 ; CHECK: f7:
80 ; CHECK: cghi %r2, -1
81 ; CHECK-NEXT: jl
82 ; CHECK: ldr %f0, %f2
83 ; CHECK: br %r14
84   %cond = icmp slt i64 %i1, -1
85   %res = select i1 %cond, double %a, double %b
86   ret double %res
87 }
88
89 ; Check the low end of the CGHI range.
90 define double @f8(double %a, double %b, i64 %i1) {
91 ; CHECK: f8:
92 ; CHECK: cghi %r2, -32768
93 ; CHECK-NEXT: jl
94 ; CHECK: ldr %f0, %f2
95 ; CHECK: br %r14
96   %cond = icmp slt i64 %i1, -32768
97   %res = select i1 %cond, double %a, double %b
98   ret double %res
99 }
100
101 ; Check the next value down, which must use CGFI instead.
102 define double @f9(double %a, double %b, i64 %i1) {
103 ; CHECK: f9:
104 ; CHECK: cgfi %r2, -32769
105 ; CHECK-NEXT: jl
106 ; CHECK: ldr %f0, %f2
107 ; CHECK: br %r14
108   %cond = icmp slt i64 %i1, -32769
109   %res = select i1 %cond, double %a, double %b
110   ret double %res
111 }
112
113 ; Check the low end of the CGFI range.
114 define double @f10(double %a, double %b, i64 %i1) {
115 ; CHECK: f10:
116 ; CHECK: cgfi %r2, -2147483648
117 ; CHECK-NEXT: jl
118 ; CHECK: ldr %f0, %f2
119 ; CHECK: br %r14
120   %cond = icmp slt i64 %i1, -2147483648
121   %res = select i1 %cond, double %a, double %b
122   ret double %res
123 }
124
125 ; Check the next value down, which must use register comparison.
126 define double @f11(double %a, double %b, i64 %i1) {
127 ; CHECK: f11:
128 ; CHECK: cgr
129 ; CHECK-NEXT: jl
130 ; CHECK: ldr %f0, %f2
131 ; CHECK: br %r14
132   %cond = icmp slt i64 %i1, -2147483649
133   %res = select i1 %cond, double %a, double %b
134   ret double %res
135 }