Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / X86 / vector-partial-undef.ll
blobfd41fd53e3be14384b12950fa4057fd1e48468bd
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-- -mattr=+sse2 | FileCheck %s --check-prefix=SSE
3 ; RUN: llc < %s -mtriple=x86_64-- -mattr=+avx2 | FileCheck %s --check-prefix=AVX
5 ; xor undef, undef --> 0 because it's not worth fighting to make that return undef?
7 define <4 x i64> @xor_insert_insert(<2 x i64> %x, <2 x i64> %y) {
8 ; SSE-LABEL: xor_insert_insert:
9 ; SSE:       # %bb.0:
10 ; SSE-NEXT:    xorps %xmm1, %xmm0
11 ; SSE-NEXT:    xorps %xmm1, %xmm1
12 ; SSE-NEXT:    retq
14 ; AVX-LABEL: xor_insert_insert:
15 ; AVX:       # %bb.0:
16 ; AVX-NEXT:    vxorps %xmm1, %xmm0, %xmm0
17 ; AVX-NEXT:    retq
18   %xw = shufflevector <2 x i64> %x, <2 x i64> undef, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
19   %yw = shufflevector <2 x i64> %y, <2 x i64> undef, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
20   %r = xor <4 x i64> %xw, %yw
21   ret <4 x i64> %r
24 define <4 x i64> @xor_insert_insert_high_half(<2 x i64> %x, <2 x i64> %y) {
25 ; SSE-LABEL: xor_insert_insert_high_half:
26 ; SSE:       # %bb.0:
27 ; SSE-NEXT:    xorps %xmm0, %xmm1
28 ; SSE-NEXT:    xorps %xmm0, %xmm0
29 ; SSE-NEXT:    retq
31 ; AVX-LABEL: xor_insert_insert_high_half:
32 ; AVX:       # %bb.0:
33 ; AVX-NEXT:    vxorps %xmm1, %xmm0, %xmm0
34 ; AVX-NEXT:    vxorps %xmm1, %xmm1, %xmm1
35 ; AVX-NEXT:    vinsertf128 $1, %xmm0, %ymm1, %ymm0
36 ; AVX-NEXT:    retq
37   %xw = shufflevector <2 x i64> %x, <2 x i64> undef, <4 x i32> <i32 undef, i32 undef, i32 0, i32 1>
38   %yw = shufflevector <2 x i64> %y, <2 x i64> undef, <4 x i32> <i32 undef, i32 undef, i32 0, i32 1>
39   %r = xor <4 x i64> %xw, %yw
40   ret <4 x i64> %r
43 ; All elements of the add are undefined:
44 ;  x[0] , x[1] , x[2] , x[3],  u ,   u  ,   u  ,  u
45 ; +  u  ,   u  ,   u  ,   u , 42 ,  43  ,  44  , 45
47 define <8 x i32> @add_undef_elts(<4 x i32> %x) {
48 ; SSE-LABEL: add_undef_elts:
49 ; SSE:       # %bb.0:
50 ; SSE-NEXT:    retq
52 ; AVX-LABEL: add_undef_elts:
53 ; AVX:       # %bb.0:
54 ; AVX-NEXT:    retq
55   %extend = shufflevector <4 x i32> %x, <4 x i32> undef, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
56   %bogus_bo = add <8 x i32> %extend, <i32 undef, i32 undef, i32 undef, i32 undef, i32 42, i32 43, i32 44, i32 12>
57   %arbitrary_shuf = shufflevector <8 x i32> %bogus_bo, <8 x i32> undef, <8 x i32> <i32 6, i32 0, i32 5, i32 4, i32 3, i32 2, i32 1, i32 7>
58   ret <8 x i32> %arbitrary_shuf
61 ; Verify that constant operand 0 for a sub works too.
63 define <8 x i32> @sub_undef_elts(<4 x i32> %x) {
64 ; SSE-LABEL: sub_undef_elts:
65 ; SSE:       # %bb.0:
66 ; SSE-NEXT:    retq
68 ; AVX-LABEL: sub_undef_elts:
69 ; AVX:       # %bb.0:
70 ; AVX-NEXT:    retq
71   %extend = shufflevector <4 x i32> %x, <4 x i32> undef, <8 x i32> <i32 0, i32 1, i32 2, i32 3, i32 undef, i32 undef, i32 undef, i32 undef>
72   %bogus_bo = sub <8 x i32> <i32 undef, i32 undef, i32 undef, i32 undef, i32 42, i32 43, i32 44, i32 12>, %extend
73   %arbitrary_shuf = shufflevector <8 x i32> %bogus_bo, <8 x i32> undef, <8 x i32> <i32 1, i32 0, i32 5, i32 4, i32 3, i32 2, i32 6, i32 7>
74   ret <8 x i32> %arbitrary_shuf
77 ; and undef, C --> 0, so this tests that we are tracking known zero lanes.
79 define <4 x i64> @and_undef_elts(<2 x i64> %x) {
80 ; SSE-LABEL: and_undef_elts:
81 ; SSE:       # %bb.0:
82 ; SSE-NEXT:    xorps %xmm0, %xmm0
83 ; SSE-NEXT:    xorps %xmm1, %xmm1
84 ; SSE-NEXT:    retq
86 ; AVX-LABEL: and_undef_elts:
87 ; AVX:       # %bb.0:
88 ; AVX-NEXT:    vxorps %xmm0, %xmm0, %xmm0
89 ; AVX-NEXT:    retq
90   %extend = shufflevector <2 x i64> %x, <2 x i64> undef, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
91   %bogus_bo = and <4 x i64> %extend, <i64 undef, i64 undef, i64 42, i64 43>
92   %arbitrary_shuf = shufflevector <4 x i64> %bogus_bo, <4 x i64> undef, <4 x i32> <i32 3, i32 0, i32 1, i32 2>
93   ret <4 x i64> %arbitrary_shuf
96 ; or undef, C --> -1, so this tests that we are tracking known all-ones lanes.
98 define <4 x i64> @or_undef_elts(<2 x i64> %x) {
99 ; SSE-LABEL: or_undef_elts:
100 ; SSE:       # %bb.0:
101 ; SSE-NEXT:    pcmpeqd %xmm0, %xmm0
102 ; SSE-NEXT:    pcmpeqd %xmm1, %xmm1
103 ; SSE-NEXT:    retq
105 ; AVX-LABEL: or_undef_elts:
106 ; AVX:       # %bb.0:
107 ; AVX-NEXT:    # kill: def $xmm0 killed $xmm0 def $ymm0
108 ; AVX-NEXT:    vpermpd {{.*#+}} ymm0 = ymm0[3,0,1,2]
109 ; AVX-NEXT:    vorps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm0, %ymm0
110 ; AVX-NEXT:    retq
111   %extend = shufflevector <2 x i64> %x, <2 x i64> undef, <4 x i32> <i32 0, i32 1, i32 undef, i32 undef>
112   %bogus_bo = or <4 x i64> %extend, <i64 undef, i64 undef, i64 42, i64 43>
113   %arbitrary_shuf = shufflevector <4 x i64> %bogus_bo, <4 x i64> undef, <4 x i32> <i32 3, i32 0, i32 1, i32 2>
114   ret <4 x i64> %arbitrary_shuf
117 ; Verify that this isn't limited to high/low halves.
119 define <8 x i32> @xor_undef_elts(<4 x i32> %x) {
120 ; SSE-LABEL: xor_undef_elts:
121 ; SSE:       # %bb.0:
122 ; SSE-NEXT:    retq
124 ; AVX-LABEL: xor_undef_elts:
125 ; AVX:       # %bb.0:
126 ; AVX-NEXT:    retq
127   %extend = shufflevector <4 x i32> %x, <4 x i32> undef, <8 x i32> <i32 undef, i32 undef, i32 1, i32 3, i32 0, i32 2, i32 undef, i32 undef>
128   %bogus_bo = xor <8 x i32> %extend, <i32 42, i32 43, i32 undef, i32 undef, i32 undef, i32 undef, i32 44, i32 12>
129   %arbitrary_shuf = shufflevector <8 x i32> %bogus_bo, <8 x i32> undef, <8 x i32> <i32 6, i32 1, i32 5, i32 4, i32 3, i32 2, i32 0, i32 7>
130   ret <8 x i32> %arbitrary_shuf
133 ; Verify that this isn't limited to high/low halves
134 ; Special case: the undef-ness of the 1st shuffle may be lost if we turn that into vector concat.
136 define <8 x i32> @xor_undef_elts_alt(<4 x i32> %x) {
137 ; SSE-LABEL: xor_undef_elts_alt:
138 ; SSE:       # %bb.0:
139 ; SSE-NEXT:    movaps %xmm0, %xmm1
140 ; SSE-NEXT:    movaps {{.*#+}} xmm2 = [u,u,44,12]
141 ; SSE-NEXT:    xorps %xmm0, %xmm2
142 ; SSE-NEXT:    xorps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %xmm1
143 ; SSE-NEXT:    movaps %xmm1, %xmm0
144 ; SSE-NEXT:    shufps {{.*#+}} xmm0 = xmm0[1,0],xmm2[2,0]
145 ; SSE-NEXT:    shufps {{.*#+}} xmm0 = xmm0[2,0],xmm2[1,0]
146 ; SSE-NEXT:    shufps {{.*#+}} xmm2 = xmm2[3,0],xmm1[0,0]
147 ; SSE-NEXT:    shufps {{.*#+}} xmm1 = xmm1[3,2],xmm2[2,0]
148 ; SSE-NEXT:    retq
150 ; AVX-LABEL: xor_undef_elts_alt:
151 ; AVX:       # %bb.0:
152 ; AVX-NEXT:    # kill: def $xmm0 killed $xmm0 def $ymm0
153 ; AVX-NEXT:    vinsertf128 $1, %xmm0, %ymm0, %ymm0
154 ; AVX-NEXT:    vxorps {{\.?LCPI[0-9]+_[0-9]+}}(%rip), %ymm0, %ymm0
155 ; AVX-NEXT:    vmovaps {{.*#+}} ymm1 = [6,1,5,4,3,2,0,7]
156 ; AVX-NEXT:    vpermps %ymm0, %ymm1, %ymm0
157 ; AVX-NEXT:    retq
158   %extend = shufflevector <4 x i32> %x, <4 x i32> undef, <8 x i32> <i32 undef, i32 undef, i32 2, i32 3, i32 0, i32 1, i32 undef, i32 undef>
159   %bogus_bo = xor <8 x i32> %extend, <i32 42, i32 43, i32 undef, i32 undef, i32 undef, i32 undef, i32 44, i32 12>
160   %arbitrary_shuf = shufflevector <8 x i32> %bogus_bo, <8 x i32> undef, <8 x i32> <i32 6, i32 1, i32 5, i32 4, i32 3, i32 2, i32 0, i32 7>
161   ret <8 x i32> %arbitrary_shuf