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)
13 ; ============================================================================ ;
14 ; Basic positive tests
15 ; ============================================================================ ;
17 define i1 @p0(i8 %x) {
19 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult i8 [[X:%.*]], 4
20 ; CHECK-NEXT: ret i1 [[TMP1]]
23 %ret = icmp uge i8 %tmp0, %x
27 define i1 @pv(i8 %x, i8 %y) {
29 ; CHECK-NEXT: [[TMP0:%.*]] = lshr i8 -1, [[Y:%.*]]
30 ; CHECK-NEXT: [[TMP1:%.*]] = icmp uge i8 [[TMP0]], [[X:%.*]]
31 ; CHECK-NEXT: ret i1 [[TMP1]]
33 %tmp0 = lshr i8 -1, %y
34 %tmp1 = and i8 %tmp0, %x
35 %ret = icmp uge i8 %tmp1, %x
39 ; ============================================================================ ;
41 ; ============================================================================ ;
43 define <2 x i1> @p1_vec_splat(<2 x i8> %x) {
44 ; CHECK-LABEL: @p1_vec_splat(
45 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult <2 x i8> [[X:%.*]], <i8 4, i8 4>
46 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
48 %tmp0 = and <2 x i8> %x, <i8 3, i8 3>
49 %ret = icmp uge <2 x i8> %tmp0, %x
53 define <2 x i1> @p2_vec_nonsplat(<2 x i8> %x) {
54 ; CHECK-LABEL: @p2_vec_nonsplat(
55 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult <2 x i8> [[X:%.*]], <i8 4, i8 16>
56 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
58 %tmp0 = and <2 x i8> %x, <i8 3, i8 15> ; doesn't have to be splat.
59 %ret = icmp uge <2 x i8> %tmp0, %x
63 define <2 x i1> @p2_vec_nonsplat_edgecase0(<2 x i8> %x) {
64 ; CHECK-LABEL: @p2_vec_nonsplat_edgecase0(
65 ; CHECK-NEXT: [[TMP0:%.*]] = and <2 x i8> [[X:%.*]], <i8 3, i8 0>
66 ; CHECK-NEXT: [[RET:%.*]] = icmp uge <2 x i8> [[TMP0]], [[X]]
67 ; CHECK-NEXT: ret <2 x i1> [[RET]]
69 %tmp0 = and <2 x i8> %x, <i8 3, i8 0>
70 %ret = icmp uge <2 x i8> %tmp0, %x
73 define <2 x i1> @p2_vec_nonsplat_edgecase1(<2 x i8> %x) {
74 ; CHECK-LABEL: @p2_vec_nonsplat_edgecase1(
75 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ule <2 x i8> [[X:%.*]], <i8 3, i8 -1>
76 ; CHECK-NEXT: ret <2 x i1> [[TMP1]]
78 %tmp0 = and <2 x i8> %x, <i8 3, i8 -1>
79 %ret = icmp uge <2 x i8> %tmp0, %x
83 define <3 x i1> @p3_vec_splat_undef(<3 x i8> %x) {
84 ; CHECK-LABEL: @p3_vec_splat_undef(
85 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult <3 x i8> [[X:%.*]], <i8 4, i8 undef, i8 4>
86 ; CHECK-NEXT: ret <3 x i1> [[TMP1]]
88 %tmp0 = and <3 x i8> %x, <i8 3, i8 undef, i8 3>
89 %ret = icmp uge <3 x i8> %tmp0, %x
93 ; ============================================================================ ;
94 ; Commutativity tests.
95 ; ============================================================================ ;
99 ; The pattern is not commutative. instsimplify will already take care of it.
102 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
103 ; CHECK-NEXT: ret i1 true
107 %ret = icmp uge i8 %x, %tmp0 ; swapped order
111 ; ============================================================================ ;
112 ; Commutativity tests with variable
113 ; ============================================================================ ;
115 define i1 @cv0(i8 %y) {
117 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
118 ; CHECK-NEXT: [[TMP0:%.*]] = lshr i8 -1, [[Y:%.*]]
119 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ule i8 [[X]], [[TMP0]]
120 ; CHECK-NEXT: ret i1 [[TMP1]]
123 %tmp0 = lshr i8 -1, %y
124 %tmp1 = and i8 %x, %tmp0 ; swapped order
125 %ret = icmp uge i8 %tmp1, %x
129 define i1 @cv1(i8 %y) {
131 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
132 ; CHECK-NEXT: ret i1 true
135 %tmp0 = lshr i8 -1, %y
136 %tmp1 = and i8 %tmp0, %x
137 %ret = icmp uge i8 %x, %tmp1 ; swapped order
141 define i1 @cv2(i8 %y) {
143 ; CHECK-NEXT: [[X:%.*]] = call i8 @gen8()
144 ; CHECK-NEXT: ret i1 true
147 %tmp0 = lshr i8 -1, %y
148 %tmp1 = and i8 %x, %tmp0 ; swapped order
149 %ret = icmp uge i8 %x, %tmp1 ; swapped order
153 ; ============================================================================ ;
154 ; One-use tests. We don't care about multi-uses here.
155 ; ============================================================================ ;
157 declare void @use8(i8)
159 define i1 @oneuse0(i8 %x) {
160 ; CHECK-LABEL: @oneuse0(
161 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X:%.*]], 3
162 ; CHECK-NEXT: call void @use8(i8 [[TMP0]])
163 ; CHECK-NEXT: [[TMP1:%.*]] = icmp ult i8 [[X]], 4
164 ; CHECK-NEXT: ret i1 [[TMP1]]
167 call void @use8(i8 %tmp0)
168 %ret = icmp uge i8 %tmp0, %x
172 ; ============================================================================ ;
174 ; ============================================================================ ;
176 define i1 @n0(i8 %x) {
178 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X:%.*]], 4
179 ; CHECK-NEXT: [[RET:%.*]] = icmp uge i8 [[TMP0]], [[X]]
180 ; CHECK-NEXT: ret i1 [[RET]]
182 %tmp0 = and i8 %x, 4 ; power-of-two, but invalid.
183 %ret = icmp uge i8 %tmp0, %x
187 define i1 @n1(i8 %x, i8 %y, i8 %notx) {
189 ; CHECK-NEXT: [[TMP0:%.*]] = and i8 [[X:%.*]], 3
190 ; CHECK-NEXT: [[RET:%.*]] = icmp uge i8 [[TMP0]], [[NOTX:%.*]]
191 ; CHECK-NEXT: ret i1 [[RET]]
194 %ret = icmp uge i8 %tmp0, %notx ; not %x
198 define <2 x i1> @n2(<2 x i8> %x) {
200 ; CHECK-NEXT: [[TMP0:%.*]] = and <2 x i8> [[X:%.*]], <i8 3, i8 16>
201 ; CHECK-NEXT: [[RET:%.*]] = icmp uge <2 x i8> [[TMP0]], [[X]]
202 ; CHECK-NEXT: ret <2 x i1> [[RET]]
204 %tmp0 = and <2 x i8> %x, <i8 3, i8 16> ; only the first one is valid.
205 %ret = icmp uge <2 x i8> %tmp0, %x