1
+ ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
1
2
; RUN: opt < %s -instcombine -S | FileCheck %s
2
3
3
4
; Remove an icmp by using its operand in the subsequent logic directly.
4
5
5
6
define i8 @zext_or_icmp_icmp (i8 %a , i8 %b ) {
7
+ ; CHECK-LABEL: @zext_or_icmp_icmp(
8
+ ; CHECK-NEXT: [[MASK:%.*]] = and i8 [[A:%.*]], 1
9
+ ; CHECK-NEXT: [[TOBOOL2:%.*]] = icmp eq i8 [[B:%.*]], 0
10
+ ; CHECK-NEXT: [[TOBOOL22:%.*]] = zext i1 [[TOBOOL2]] to i8
11
+ ; CHECK-NEXT: [[TMP1:%.*]] = xor i8 [[MASK]], 1
12
+ ; CHECK-NEXT: [[ZEXT3:%.*]] = or i8 [[TMP1]], [[TOBOOL22]]
13
+ ; CHECK-NEXT: ret i8 [[ZEXT3]]
14
+ ;
6
15
%mask = and i8 %a , 1
7
16
%toBool1 = icmp eq i8 %mask , 0
8
17
%toBool2 = icmp eq i8 %b , 0
9
18
%bothCond = or i1 %toBool1 , %toBool2
10
19
%zext = zext i1 %bothCond to i8
11
20
ret i8 %zext
12
-
13
- ; CHECK-LABEL: zext_or_icmp_icmp(
14
- ; CHECK-NEXT: %mask = and i8 %a, 1
15
- ; CHECK-NEXT: %toBool2 = icmp eq i8 %b, 0
16
- ; CHECK-NEXT: %toBool22 = zext i1 %toBool2 to i8
17
- ; CHECK-NEXT: %1 = xor i8 %mask, 1
18
- ; CHECK-NEXT: %zext3 = or i8 %1, %toBool22
19
- ; CHECK-NEXT: ret i8 %zext
20
21
}
21
22
22
23
; Here, widening the or from i1 to i32 and removing one of the icmps would
23
24
; widen an undef value (created by the out-of-range shift), increasing the
24
25
; range of valid values for the return, so we can't do it.
26
+
25
27
define i32 @dont_widen_undef () {
28
+ ; CHECK-LABEL: @dont_widen_undef(
29
+ ; CHECK-NEXT: entry:
30
+ ; CHECK-NEXT: br label [[BLOCK2:%.*]]
31
+ ; CHECK: block1:
32
+ ; CHECK-NEXT: br label [[BLOCK2]]
33
+ ; CHECK: block2:
34
+ ; CHECK-NEXT: [[CMP_I:%.*]] = phi i1 [ false, [[BLOCK1:%.*]] ], [ true, [[ENTRY:%.*]] ]
35
+ ; CHECK-NEXT: [[M_011:%.*]] = phi i32 [ 0, [[BLOCK1]] ], [ 33, [[ENTRY]] ]
36
+ ; CHECK-NEXT: [[M_1_OP:%.*]] = lshr i32 1, [[M_011]]
37
+ ; CHECK-NEXT: [[SEXT_MASK:%.*]] = and i32 [[M_1_OP]], 65535
38
+ ; CHECK-NEXT: [[CMP115:%.*]] = icmp ne i32 [[SEXT_MASK]], 0
39
+ ; CHECK-NEXT: [[CMP1:%.*]] = or i1 [[CMP_I]], [[CMP115]]
40
+ ; CHECK-NEXT: [[CONV2:%.*]] = zext i1 [[CMP1]] to i32
41
+ ; CHECK-NEXT: ret i32 [[CONV2]]
42
+ ;
26
43
entry:
27
44
br label %block2
28
45
@@ -38,14 +55,4 @@ block2:
38
55
%cmp1 = or i1 %cmp.i , %cmp115
39
56
%conv2 = zext i1 %cmp1 to i32
40
57
ret i32 %conv2
41
-
42
- ; CHECK-LABEL: dont_widen_undef(
43
- ; CHECK: %cmp.i = phi i1 [ false, %block1 ], [ true, %entry ]
44
- ; CHECK-NEXT: %m.011 = phi i32 [ 0, %block1 ], [ 33, %entry ]
45
- ; CHECK-NEXT: %m.1.op = lshr i32 1, %m.011
46
- ; CHECK-NEXT: %sext.mask = and i32 %m.1.op, 65535
47
- ; CHECK-NEXT: %cmp115 = icmp ne i32 %sext.mask, 0
48
- ; CHECK-NEXT: %cmp1 = or i1 %cmp.i, %cmp115
49
- ; CHECK-NEXT: %conv2 = zext i1 %cmp1 to i32
50
- ; CHECK-NEXT: ret i32 %conv2
51
58
}
0 commit comments