1 ; RUN: opt -S -instcombine < %s | FileCheck %s
3 define i32 @compute_min_2(i32 %x, i32 %y) {
4 ; CHECK-LABEL: compute_min_2
6 %not_x = sub i32 -1, %x
7 %not_y = sub i32 -1, %y
8 %cmp = icmp sgt i32 %not_x, %not_y
9 %not_min = select i1 %cmp, i32 %not_x, i32 %not_y
10 %min = sub i32 -1, %not_min
13 ; CHECK: %0 = icmp slt i32 %x, %y
14 ; CHECK-NEXT: %1 = select i1 %0, i32 %x, i32 %y
15 ; CHECK-NEXT: ret i32 %1
18 define i32 @compute_min_3(i32 %x, i32 %y, i32 %z) {
19 ; CHECK-LABEL: compute_min_3
21 %not_x = sub i32 -1, %x
22 %not_y = sub i32 -1, %y
23 %not_z = sub i32 -1, %z
24 %cmp_1 = icmp sgt i32 %not_x, %not_y
25 %not_min_1 = select i1 %cmp_1, i32 %not_x, i32 %not_y
26 %cmp_2 = icmp sgt i32 %not_min_1, %not_z
27 %not_min_2 = select i1 %cmp_2, i32 %not_min_1, i32 %not_z
28 %min = sub i32 -1, %not_min_2
31 ; CHECK: %0 = icmp slt i32 %x, %y
32 ; CHECK-NEXT: %1 = select i1 %0, i32 %x, i32 %y
33 ; CHECK-NEXT: %2 = icmp slt i32 %1, %z
34 ; CHECK-NEXT: %3 = select i1 %2, i32 %1, i32 %z
35 ; CHECK-NEXT: ret i32 %3
38 define i32 @compute_min_arithmetic(i32 %x, i32 %y) {
39 ; CHECK-LABEL: compute_min_arithmetic
41 %not_value = sub i32 3, %x
42 %not_y = sub i32 -1, %y
43 %cmp = icmp sgt i32 %not_value, %not_y
44 %not_min = select i1 %cmp, i32 %not_value, i32 %not_y
47 ; CHECK: %0 = add i32 %x, -4
48 ; CHECK-NEXT: %1 = icmp slt i32 %0, %y
49 ; CHECK-NEXT: %2 = select i1 %1, i32 %0, i32 %y
50 ; CHECK-NEXT: %3 = xor i32 %2, -1
51 ; CHECK-NEXT: ret i32 %3
54 declare void @fake_use(i32)
56 define i32 @compute_min_pessimization(i32 %x, i32 %y) {
57 ; CHECK-LABEL: compute_min_pessimization
59 %not_value = sub i32 3, %x
60 call void @fake_use(i32 %not_value)
61 %not_y = sub i32 -1, %y
62 %cmp = icmp sgt i32 %not_value, %not_y
63 ; CHECK: %not_value = sub i32 3, %x
64 ; CHECK: %cmp = icmp sgt i32 %not_value, %not_y
65 %not_min = select i1 %cmp, i32 %not_value, i32 %not_y
66 %min = sub i32 -1, %not_min