Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / InstCombine / pr53357.ll
blob0a6d2993ce46a8cfcd0bda8fd224c538f446ca0c
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; Test for (x & y) + ~(x | y) -> ~(x ^ y)
3 ; RUN: opt < %s -passes=instcombine -S | FileCheck %s
5 ; (x & y) + ~(x | y)
6 define i32 @src(i32 noundef %0, i32 noundef %1) {
7 ; CHECK-LABEL: @src(
8 ; CHECK-NEXT:    [[TMP3:%.*]] = xor i32 [[TMP1:%.*]], [[TMP0:%.*]]
9 ; CHECK-NEXT:    [[TMP4:%.*]] = xor i32 [[TMP3]], -1
10 ; CHECK-NEXT:    ret i32 [[TMP4]]
12   %3 = and i32 %1, %0
13   %4 = or i32 %1, %0
14   %5 = xor i32 %4, -1
15   %6 = add i32 %3, %5
16   ret i32 %6
19 ; vector version of src
20 define <2 x i32> @src_vec(<2 x i32> noundef %0, <2 x i32> noundef %1) {
21 ; CHECK-LABEL: @src_vec(
22 ; CHECK-NEXT:    [[TMP3:%.*]] = xor <2 x i32> [[TMP1:%.*]], [[TMP0:%.*]]
23 ; CHECK-NEXT:    [[TMP4:%.*]] = xor <2 x i32> [[TMP3]], <i32 -1, i32 -1>
24 ; CHECK-NEXT:    ret <2 x i32> [[TMP4]]
26   %3 = and <2 x i32> %1, %0
27   %4 = or  <2 x i32> %1, %0
28   %5 = xor <2 x i32> %4, <i32 -1, i32 -1>
29   %6 = add <2 x i32> %3, %5
30   ret <2 x i32> %6
33 ; vector version of src with undef values
34 define <2 x i32> @src_vec_undef(<2 x i32> noundef %0, <2 x i32> noundef %1) {
35 ; CHECK-LABEL: @src_vec_undef(
36 ; CHECK-NEXT:    [[TMP3:%.*]] = xor <2 x i32> [[TMP1:%.*]], [[TMP0:%.*]]
37 ; CHECK-NEXT:    [[TMP4:%.*]] = xor <2 x i32> [[TMP3]], <i32 -1, i32 -1>
38 ; CHECK-NEXT:    ret <2 x i32> [[TMP4]]
40   %3 = and <2 x i32> %1, %0
41   %4 = or  <2 x i32> %1, %0
42   %5 = xor <2 x i32> %4, <i32 -1, i32 undef>
43   %6 = add <2 x i32> %3, %5
44   ret <2 x i32> %6
47 ; (x & y) + ~(y | x)
48 define i32 @src2(i32 noundef %0, i32 noundef %1) {
49 ; CHECK-LABEL: @src2(
50 ; CHECK-NEXT:    [[TMP3:%.*]] = xor i32 [[TMP1:%.*]], [[TMP0:%.*]]
51 ; CHECK-NEXT:    [[TMP4:%.*]] = xor i32 [[TMP3]], -1
52 ; CHECK-NEXT:    ret i32 [[TMP4]]
54   %3 = and i32 %1, %0
55   %4 = or i32 %0, %1
56   %5 = xor i32 %4, -1
57   %6 = add i32 %3, %5
58   ret i32 %6
61 ; (x & y) + (~x & ~y)
62 define i32 @src3(i32 noundef %0, i32 noundef %1) {
63 ; CHECK-LABEL: @src3(
64 ; CHECK-NEXT:    [[TMP3:%.*]] = xor i32 [[TMP1:%.*]], [[TMP0:%.*]]
65 ; CHECK-NEXT:    [[TMP4:%.*]] = xor i32 [[TMP3]], -1
66 ; CHECK-NEXT:    ret i32 [[TMP4]]
68   %3 = and i32 %1, %0
69   %4 = xor i32 %0, -1
70   %5 = xor i32 %1, -1
71   %6 = and i32 %4, %5
72   %7 = add i32 %3, %6
73   ret i32 %7
76 ; ~(x | y) + (y & x)
77 define i32 @src4(i32 noundef %0, i32 noundef %1) {
78 ; CHECK-LABEL: @src4(
79 ; CHECK-NEXT:    [[TMP3:%.*]] = xor i32 [[TMP0:%.*]], [[TMP1:%.*]]
80 ; CHECK-NEXT:    [[TMP4:%.*]] = xor i32 [[TMP3]], -1
81 ; CHECK-NEXT:    ret i32 [[TMP4]]
83   %3 = and i32 %0, %1
84   %4 = or i32 %1, %0
85   %5 = xor i32 %4, -1
86   %6 = add i32 %3, %5
87   ret i32 %6
90 ; ~(x | y) + (x & y)
91 define i32 @src5(i32 noundef %0, i32 noundef %1) {
92 ; CHECK-LABEL: @src5(
93 ; CHECK-NEXT:    [[TMP3:%.*]] = xor i32 [[TMP1:%.*]], [[TMP0:%.*]]
94 ; CHECK-NEXT:    [[TMP4:%.*]] = xor i32 [[TMP3]], -1
95 ; CHECK-NEXT:    ret i32 [[TMP4]]
97   %3 = or i32 %1, %0
98   %4 = xor i32 %3, -1
99   %5 = and i32 %1, %0
100   %6 = add i32 %4, %5
101   ret i32 %6
104 ; (a & b) + ~(c | d)
105 define i32 @src6(i32 %0, i32 %1, i32 %2, i32 %3) {
106 ; CHECK-LABEL: @src6(
107 ; CHECK-NEXT:    [[TMP5:%.*]] = and i32 [[TMP0:%.*]], [[TMP1:%.*]]
108 ; CHECK-NEXT:    [[TMP6:%.*]] = or i32 [[TMP2:%.*]], [[TMP3:%.*]]
109 ; CHECK-NEXT:    [[TMP7:%.*]] = xor i32 [[TMP6]], -1
110 ; CHECK-NEXT:    [[TMP8:%.*]] = add i32 [[TMP5]], [[TMP7]]
111 ; CHECK-NEXT:    ret i32 [[TMP8]]
113   %5 = and i32 %0, %1
114   %6 = or i32 %2, %3
115   %7 = xor i32 %6, -1
116   %8 = add i32 %5, %7
117   ret i32 %8