1*f4a2713aSLionel Sambuc; This test makes sure that xor instructions are properly eliminated.
2*f4a2713aSLionel Sambuc; This test is for Integer BitWidth > 64 && BitWidth <= 1024.
3*f4a2713aSLionel Sambuc
4*f4a2713aSLionel Sambuc; RUN: opt < %s -instcombine -S | not grep "xor "
5*f4a2713aSLionel Sambuc; END.
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc
8*f4a2713aSLionel Sambucdefine i447 @test1(i447 %A, i447 %B) {
9*f4a2713aSLionel Sambuc        ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
10*f4a2713aSLionel Sambuc        %A1 = and i447 %A, 70368744177664
11*f4a2713aSLionel Sambuc        %B1 = and i447 %B, 70368744177663
12*f4a2713aSLionel Sambuc        %C1 = xor i447 %A1, %B1
13*f4a2713aSLionel Sambuc        ret i447 %C1
14*f4a2713aSLionel Sambuc}
15*f4a2713aSLionel Sambuc
16*f4a2713aSLionel Sambucdefine i1005 @test2(i1005 %x) {
17*f4a2713aSLionel Sambuc        %tmp.2 = xor i1005 %x, 0
18*f4a2713aSLionel Sambuc        ret i1005 %tmp.2
19*f4a2713aSLionel Sambuc}
20*f4a2713aSLionel Sambuc
21*f4a2713aSLionel Sambucdefine i123 @test3(i123 %x) {
22*f4a2713aSLionel Sambuc        %tmp.2 = xor i123 %x, %x
23*f4a2713aSLionel Sambuc        ret i123 %tmp.2
24*f4a2713aSLionel Sambuc}
25*f4a2713aSLionel Sambuc
26*f4a2713aSLionel Sambucdefine i737 @test4(i737 %x) {
27*f4a2713aSLionel Sambuc        ; x ^ ~x == -1
28*f4a2713aSLionel Sambuc        %NotX = xor i737 -1, %x
29*f4a2713aSLionel Sambuc        %B = xor i737 %x, %NotX
30*f4a2713aSLionel Sambuc        ret i737 %B
31*f4a2713aSLionel Sambuc}
32*f4a2713aSLionel Sambuc
33*f4a2713aSLionel Sambucdefine i700 @test5(i700 %A) {
34*f4a2713aSLionel Sambuc        ;; (A|B)^B == A & (~B)
35*f4a2713aSLionel Sambuc        %t1 = or i700 %A, 288230376151711743
36*f4a2713aSLionel Sambuc        %r = xor i700 %t1, 288230376151711743
37*f4a2713aSLionel Sambuc        ret i700 %r
38*f4a2713aSLionel Sambuc}
39*f4a2713aSLionel Sambuc
40*f4a2713aSLionel Sambucdefine i77 @test6(i77 %A) {
41*f4a2713aSLionel Sambuc        %t1 = xor i77 %A, 23
42*f4a2713aSLionel Sambuc        %r = xor i77 %t1, 23
43*f4a2713aSLionel Sambuc        ret i77 %r
44*f4a2713aSLionel Sambuc}
45*f4a2713aSLionel Sambuc
46*f4a2713aSLionel Sambucdefine i1023 @test7(i1023 %A) {
47*f4a2713aSLionel Sambuc        ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2
48*f4a2713aSLionel Sambuc        %B1 = or i1023 %A,   70368744177663
49*f4a2713aSLionel Sambuc        %C1 = xor i1023 %B1, 703687463
50*f4a2713aSLionel Sambuc        ret i1023 %C1
51*f4a2713aSLionel Sambuc}
52