1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -instcombine -S | FileCheck %s
4 ; https://bugs.llvm.org/show_bug.cgi?id=38123
8 ; Should be transformed into:
10 ; Iff: isPowerOf2(C + 1)
14 declare <2 x i8> @gen2x8()
15 declare <3 x i8> @gen3x8()
17 ; ============================================================================ ;
18 ; Basic positive tests
19 ; ============================================================================ ;
23 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
24 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i8 [[X]], 3
25 ; CHECK-NEXT: ret i1 [[TMP1]]
29 %ret = icmp ugt i8 %x, %tmp0
33 define i1 @pv(i8 %y) {
35 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
36 ; CHECK-NEXT: [[TMP0:%.*]] = lshr i8 -1, [[Y:%.*]]
37 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i8 [[X]], [[TMP0]]
38 ; CHECK-NEXT: ret i1 [[TMP1]]
41 %tmp0 = lshr i8 -1, %y
42 %tmp1 = and i8 %tmp0, %x
43 %ret = icmp ugt i8 %x, %tmp1
47 ; ============================================================================ ;
49 ; ============================================================================ ;
51 define <2 x i1> @p1_vec_splat() {
52 ; CHECK-LABEL: @p1_vec_splat(
53 ; CHECK-NEXT: [[X:%.*]] = call <2 x i8> @gen2x8()
54 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <2 x i8> [[X]], <i8 3, i8 3>
55 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
57 %x = call <2 x i8> @gen2x8()
58 %tmp0 = and <2 x i8> %x, <i8 3, i8 3>
59 %ret = icmp ugt <2 x i8> %x, %tmp0
63 define <2 x i1> @p2_vec_nonsplat() {
64 ; CHECK-LABEL: @p2_vec_nonsplat(
65 ; CHECK-NEXT: [[X:%.*]] = call <2 x i8> @gen2x8()
66 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <2 x i8> [[X]], <i8 3, i8 15>
67 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
69 %x = call <2 x i8> @gen2x8()
70 %tmp0 = and <2 x i8> %x, <i8 3, i8 15> ; doesn't have to be splat.
71 %ret = icmp ugt <2 x i8> %x, %tmp0
75 define <2 x i1> @p2_vec_nonsplat_edgecase0() {
76 ; CHECK-LABEL: @p2_vec_nonsplat_edgecase0(
77 ; CHECK-NEXT: [[X:%.*]] = call <2 x i8> @gen2x8()
78 ; CHECK-NEXT: [[TMP0:%.*]] = and <2 x i8> [[X]], <i8 3, i8 0>
79 ; CHECK-NEXT: [[RET:%.*]] = icmp ugt <2 x i8> [[X]], [[TMP0]]
80 ; CHECK-NEXT: ret <2 x i1> [[RET]]
82 %x = call <2 x i8> @gen2x8()
83 %tmp0 = and <2 x i8> %x, <i8 3, i8 0>
84 %ret = icmp ugt <2 x i8> %x, %tmp0
87 define <2 x i1> @p2_vec_nonsplat_edgecase1() {
88 ; CHECK-LABEL: @p2_vec_nonsplat_edgecase1(
89 ; CHECK-NEXT: [[X:%.*]] = call <2 x i8> @gen2x8()
90 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <2 x i8> [[X]], <i8 3, i8 -1>
91 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
93 %x = call <2 x i8> @gen2x8()
94 %tmp0 = and <2 x i8> %x, <i8 3, i8 -1>
95 %ret = icmp ugt <2 x i8> %x, %tmp0
99 define <3 x i1> @p3_vec_splat_undef() {
100 ; CHECK-LABEL: @p3_vec_splat_undef(
101 ; CHECK-NEXT: [[X:%.*]] = call <3 x i8> @gen3x8()
102 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <3 x i8> [[X]], <i8 3, i8 3, i8 3>
103 ; CHECK-NEXT: ret <3 x i1> [[TMP1]]
105 %x = call <3 x i8> @gen3x8()
106 %tmp0 = and <3 x i8> %x, <i8 3, i8 undef, i8 3>
107 %ret = icmp ugt <3 x i8> %x, %tmp0
111 define <3 x i1> @p3_vec_nonsplat_undef() {
112 ; CHECK-LABEL: @p3_vec_nonsplat_undef(
113 ; CHECK-NEXT: [[X:%.*]] = call <3 x i8> @gen3x8()
114 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt <3 x i8> [[X]], <i8 3, i8 3, i8 15>
115 ; CHECK-NEXT: ret <3 x i1> [[TMP1]]
117 %x = call <3 x i8> @gen3x8()
118 %tmp0 = and <3 x i8> %x, <i8 3, i8 undef, i8 15>
119 %ret = icmp ugt <3 x i8> %x, %tmp0
123 ; ============================================================================ ;
124 ; Commutativity tests.
125 ; ============================================================================ ;
127 define i1 @c0(i8 %x) {
129 ; CHECK-NEXT: ret i1 false
132 %ret = icmp ugt i8 %tmp0, %x ; swapped order
136 ; ============================================================================ ;
137 ; Commutativity tests with variable
138 ; ============================================================================ ;
140 define i1 @cv0(i8 %y) {
142 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
143 ; CHECK-NEXT: [[TMP0:%.*]] = lshr i8 -1, [[Y:%.*]]
144 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i8 [[X]], [[TMP0]]
145 ; CHECK-NEXT: ret i1 [[TMP1]]
148 %tmp0 = lshr i8 -1, %y
149 %tmp1 = and i8 %tmp0, %x ; swapped order
150 %ret = icmp ugt i8 %x, %tmp1
154 define i1 @cv1(i8 %y) {
156 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
157 ; CHECK-NEXT: ret i1 false
160 %tmp0 = lshr i8 -1, %y
161 %tmp1 = and i8 %x, %tmp0
162 %ret = icmp ugt i8 %tmp1, %x ; swapped order
166 define i1 @cv2(i8 %x, i8 %y) {
168 ; CHECK-NEXT: ret i1 false
170 %tmp0 = lshr i8 -1, %y
171 %tmp1 = and i8 %tmp0, %x ; swapped order
172 %ret = icmp ugt i8 %tmp1, %x ; swapped order
176 ; ============================================================================ ;
177 ; One-use tests. We don't care about multi-uses here.
178 ; ============================================================================ ;
180 declare void @use8(i8)
182 define i1 @oneuse0() {
183 ; CHECK-LABEL: @oneuse0(
184 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
185 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X]], 3
186 ; CHECK-NEXT: call void @use8(i8 [[TMP0]])
187 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ugt i8 [[X]], 3
188 ; CHECK-NEXT: ret i1 [[TMP1]]
192 call void @use8(i8 %tmp0)
193 %ret = icmp ugt i8 %x, %tmp0
197 ; ============================================================================ ;
199 ; ============================================================================ ;
203 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
204 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X]], 4
205 ; CHECK-NEXT: [[RET:%.*]] = icmp ugt i8 [[X]], [[TMP0]]
206 ; CHECK-NEXT: ret i1 [[RET]]
209 %tmp0 = and i8 %x, 4 ; power-of-two, but invalid.
210 %ret = icmp ugt i8 %x, %tmp0
214 define i1 @n1(i8 %y, i8 %notx) {
216 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
217 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X]], 3
218 ; CHECK-NEXT: [[RET:%.*]] = icmp ugt i8 [[TMP0]], [[NOTX:%.*]]
219 ; CHECK-NEXT: ret i1 [[RET]]
223 %ret = icmp ugt i8 %tmp0, %notx ; not %x
227 define <2 x i1> @n2() {
229 ; CHECK-NEXT: [[X:%.*]] = call <2 x i8> @gen2x8()
230 ; CHECK-NEXT: [[TMP0:%.*]] = and <2 x i8> [[X]], <i8 3, i8 16>
231 ; CHECK-NEXT: [[RET:%.*]] = icmp ugt <2 x i8> [[X]], [[TMP0]]
232 ; CHECK-NEXT: ret <2 x i1> [[RET]]
234 %x = call <2 x i8> @gen2x8()
235 %tmp0 = and <2 x i8> %x, <i8 3, i8 16> ; only the first one is valid.
236 %ret = icmp ugt <2 x i8> %x, %tmp0