[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / InstCombine / sub-xor-or-neg-and.ll
blobab32fe5289c16e4cefa333bbfd76146d5ccf79a0
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt -instcombine -S < %s | FileCheck %s
4 declare void @use(i32)
6 define i32 @sub_to_and(i32 %x, i32 %y) {
7 ; CHECK-LABEL: @sub_to_and(
8 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[X:%.*]], [[Y:%.*]]
9 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
10 ; CHECK-NEXT:    ret i32 [[SUB]]
12   %or = or i32 %x, %y
13   %xor = xor i32 %x, %y
14   %sub = sub i32 %xor, %or
15   ret i32 %sub
18 define i32 @sub_to_and_extra_use_sub(i32 %x, i32 %y) {
19 ; CHECK-LABEL: @sub_to_and_extra_use_sub(
20 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[X:%.*]], [[Y:%.*]]
21 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
22 ; CHECK-NEXT:    call void @use(i32 [[SUB]])
23 ; CHECK-NEXT:    ret i32 [[SUB]]
25   %or = or i32 %x, %y
26   %xor = xor i32 %x, %y
27   %sub = sub i32 %xor, %or
28   call void @use(i32 %sub)
29   ret i32 %sub
32 define i32 @sub_to_and_extra_use_and(i32 %x, i32 %y) {
33 ; CHECK-LABEL: @sub_to_and_extra_use_and(
34 ; CHECK-NEXT:    [[XOR:%.*]] = xor i32 [[X:%.*]], [[Y:%.*]]
35 ; CHECK-NEXT:    call void @use(i32 [[XOR]])
36 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[X]], [[Y]]
37 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
38 ; CHECK-NEXT:    ret i32 [[SUB]]
40   %or = or i32 %x, %y
41   %xor = xor i32 %x, %y
42   call void @use(i32 %xor)
43   %sub = sub i32 %xor, %or
44   ret i32 %sub
47 define i32 @sub_to_and_extra_use_or(i32 %x, i32 %y) {
48 ; CHECK-LABEL: @sub_to_and_extra_use_or(
49 ; CHECK-NEXT:    [[OR:%.*]] = or i32 [[X:%.*]], [[Y:%.*]]
50 ; CHECK-NEXT:    call void @use(i32 [[OR]])
51 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[X]], [[Y]]
52 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
53 ; CHECK-NEXT:    ret i32 [[SUB]]
55   %or = or i32 %x, %y
56   call void @use(i32 %or)
57   %xor = xor i32 %x, %y
58   %sub = sub i32 %xor, %or
59   ret i32 %sub
62 define i32 @sub_to_and_or_commuted(i32 %x, i32 %y) {
63 ; CHECK-LABEL: @sub_to_and_or_commuted(
64 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[X:%.*]], [[Y:%.*]]
65 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
66 ; CHECK-NEXT:    ret i32 [[SUB]]
68   %or = or i32 %y, %x
69   %xor = xor i32 %x, %y
70   %sub = sub i32 %xor, %or
71   ret i32 %sub
74 define i32 @sub_to_and_and_commuted(i32 %x, i32 %y) {
75 ; CHECK-LABEL: @sub_to_and_and_commuted(
76 ; CHECK-NEXT:    [[TMP1:%.*]] = and i32 [[Y:%.*]], [[X:%.*]]
77 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 0, [[TMP1]]
78 ; CHECK-NEXT:    ret i32 [[SUB]]
80   %or = or i32 %x, %y
81   %xor = xor i32 %y, %x
82   %sub = sub i32 %xor, %or
83   ret i32 %sub
86 define <2 x i32> @sub_to_and_vec(<2 x i32> %x, <2 x i32> %y) {
87 ; CHECK-LABEL: @sub_to_and_vec(
88 ; CHECK-NEXT:    [[TMP1:%.*]] = and <2 x i32> [[Y:%.*]], [[X:%.*]]
89 ; CHECK-NEXT:    [[SUB:%.*]] = sub <2 x i32> zeroinitializer, [[TMP1]]
90 ; CHECK-NEXT:    ret <2 x i32> [[SUB]]
92   %or = or <2 x i32> %x, %y
93   %xor = xor <2 x i32> %y, %x
94   %sub = sub <2 x i32> %xor, %or
95   ret <2 x i32> %sub
98 ; Negative tests
100 define i32 @sub_to_and_extra_use_and_or(i32 %x, i32 %y) {
101 ; CHECK-LABEL: @sub_to_and_extra_use_and_or(
102 ; CHECK-NEXT:    [[OR:%.*]] = or i32 [[X:%.*]], [[Y:%.*]]
103 ; CHECK-NEXT:    call void @use(i32 [[OR]])
104 ; CHECK-NEXT:    [[XOR:%.*]] = xor i32 [[X]], [[Y]]
105 ; CHECK-NEXT:    call void @use(i32 [[XOR]])
106 ; CHECK-NEXT:    [[SUB:%.*]] = sub i32 [[XOR]], [[OR]]
107 ; CHECK-NEXT:    ret i32 [[SUB]]
109   %or = or i32 %x, %y
110   call void @use(i32 %or)
111   %xor = xor i32 %x, %y
112   call void @use(i32 %xor)
113   %sub = sub i32 %xor, %or
114   ret i32 %sub