1 ; RUN: llc < %s -mtriple armeb-eabi -mattr v7,neon -float-abi soft -o - | FileCheck %s
2 ; RUN: llc < %s -mtriple armeb-eabi -mattr v7,neon -float-abi hard -o - | FileCheck %s -check-prefix CHECK-HARD
4 @v2i64 = global <2 x i64> zeroinitializer
5 @v2i32 = global <2 x i32> zeroinitializer
6 @v4i32 = global <4 x i32> zeroinitializer
7 @v4i16 = global <4 x i16> zeroinitializer
8 @v8i16 = global <8 x i16> zeroinitializer
9 @v8i8 = global <8 x i8> zeroinitializer
10 @v16i8 = global <16 x i8> zeroinitializer
12 @v2f32 = global <2 x float> zeroinitializer
13 @v2f64 = global <2 x double> zeroinitializer
14 @v4f32 = global <4 x float> zeroinitializer
18 define void @conv_i64_to_v8i8( i64 %val, ptr %store ) {
19 ; CHECK-LABEL: conv_i64_to_v8i8:
21 %v = bitcast i64 %val to <8 x i8>
22 %w = load <8 x i8>, ptr @v8i8
23 %a = add <8 x i8> %v, %w
24 store <8 x i8> %a, ptr %store
28 define void @conv_v8i8_to_i64( ptr %load, ptr %store ) {
29 ; CHECK-LABEL: conv_v8i8_to_i64:
31 %v = load <8 x i8>, ptr %load
32 %w = load <8 x i8>, ptr @v8i8
33 %a = add <8 x i8> %v, %w
34 %f = bitcast <8 x i8> %a to i64
35 call void @conv_i64_to_v8i8( i64 %f, ptr %store )
39 define void @conv_i64_to_v4i16( i64 %val, ptr %store ) {
40 ; CHECK-LABEL: conv_i64_to_v4i16:
42 %v = bitcast i64 %val to <4 x i16>
43 %w = load <4 x i16>, ptr @v4i16
44 %a = add <4 x i16> %v, %w
45 store <4 x i16> %a, ptr %store
49 define void @conv_v4i16_to_i64( ptr %load, ptr %store ) {
50 ; CHECK-LABEL: conv_v4i16_to_i64:
52 %v = load <4 x i16>, ptr %load
53 %w = load <4 x i16>, ptr @v4i16
54 %a = add <4 x i16> %v, %w
55 %f = bitcast <4 x i16> %a to i64
56 call void @conv_i64_to_v4i16( i64 %f, ptr %store )
60 define void @conv_i64_to_v2i32( i64 %val, ptr %store ) {
61 ; CHECK-LABEL: conv_i64_to_v2i32:
63 %v = bitcast i64 %val to <2 x i32>
64 %w = load <2 x i32>, ptr @v2i32
65 %a = add <2 x i32> %v, %w
66 store <2 x i32> %a, ptr %store
70 define void @conv_v2i32_to_i64( ptr %load, ptr %store ) {
71 ; CHECK-LABEL: conv_v2i32_to_i64:
73 %v = load <2 x i32>, ptr %load
74 %w = load <2 x i32>, ptr @v2i32
75 %a = add <2 x i32> %v, %w
76 %f = bitcast <2 x i32> %a to i64
77 call void @conv_i64_to_v2i32( i64 %f, ptr %store )
81 define void @conv_i64_to_v2f32( i64 %val, ptr %store ) {
82 ; CHECK-LABEL: conv_i64_to_v2f32:
84 %v = bitcast i64 %val to <2 x float>
85 %w = load <2 x float>, ptr @v2f32
86 %a = fadd <2 x float> %v, %w
87 store <2 x float> %a, ptr %store
91 define void @conv_v2f32_to_i64( ptr %load, ptr %store ) {
92 ; CHECK-LABEL: conv_v2f32_to_i64:
94 %v = load <2 x float>, ptr %load
95 %w = load <2 x float>, ptr @v2f32
96 %a = fadd <2 x float> %v, %w
97 %f = bitcast <2 x float> %a to i64
98 call void @conv_i64_to_v2f32( i64 %f, ptr %store )
102 define void @conv_f64_to_v8i8( double %val, ptr %store ) {
103 ; CHECK-LABEL: conv_f64_to_v8i8:
105 %v = bitcast double %val to <8 x i8>
106 %w = load <8 x i8>, ptr @v8i8
107 %a = add <8 x i8> %v, %w
108 store <8 x i8> %a, ptr %store
112 define void @conv_v8i8_to_f64( ptr %load, ptr %store ) {
113 ; CHECK-LABEL: conv_v8i8_to_f64:
115 %v = load <8 x i8>, ptr %load
116 %w = load <8 x i8>, ptr @v8i8
117 %a = add <8 x i8> %v, %w
118 %f = bitcast <8 x i8> %a to double
119 call void @conv_f64_to_v8i8( double %f, ptr %store )
123 define void @conv_f64_to_v4i16( double %val, ptr %store ) {
124 ; CHECK-LABEL: conv_f64_to_v4i16:
126 %v = bitcast double %val to <4 x i16>
127 %w = load <4 x i16>, ptr @v4i16
128 %a = add <4 x i16> %v, %w
129 store <4 x i16> %a, ptr %store
133 define void @conv_v4i16_to_f64( ptr %load, ptr %store ) {
134 ; CHECK-LABEL: conv_v4i16_to_f64:
136 %v = load <4 x i16>, ptr %load
137 %w = load <4 x i16>, ptr @v4i16
138 %a = add <4 x i16> %v, %w
139 %f = bitcast <4 x i16> %a to double
140 call void @conv_f64_to_v4i16( double %f, ptr %store )
144 define void @conv_f64_to_v2i32( double %val, ptr %store ) {
145 ; CHECK-LABEL: conv_f64_to_v2i32:
147 %v = bitcast double %val to <2 x i32>
148 %w = load <2 x i32>, ptr @v2i32
149 %a = add <2 x i32> %v, %w
150 store <2 x i32> %a, ptr %store
154 define void @conv_v2i32_to_f64( ptr %load, ptr %store ) {
155 ; CHECK-LABEL: conv_v2i32_to_f64:
157 %v = load <2 x i32>, ptr %load
158 %w = load <2 x i32>, ptr @v2i32
159 %a = add <2 x i32> %v, %w
160 %f = bitcast <2 x i32> %a to double
161 call void @conv_f64_to_v2i32( double %f, ptr %store )
165 define void @conv_f64_to_v2f32( double %val, ptr %store ) {
166 ; CHECK-LABEL: conv_f64_to_v2f32:
168 %v = bitcast double %val to <2 x float>
169 %w = load <2 x float>, ptr @v2f32
170 %a = fadd <2 x float> %v, %w
171 store <2 x float> %a, ptr %store
175 define void @conv_v2f32_to_f64( ptr %load, ptr %store ) {
176 ; CHECK-LABEL: conv_v2f32_to_f64:
178 %v = load <2 x float>, ptr %load
179 %w = load <2 x float>, ptr @v2f32
180 %a = fadd <2 x float> %v, %w
181 %f = bitcast <2 x float> %a to double
182 call void @conv_f64_to_v2f32( double %f, ptr %store )
186 ; 128 bit conversions
189 define void @conv_i128_to_v16i8( i128 %val, ptr %store ) {
190 ; CHECK-LABEL: conv_i128_to_v16i8:
192 %v = bitcast i128 %val to <16 x i8>
193 %w = load <16 x i8>, ptr @v16i8
194 %a = add <16 x i8> %v, %w
195 store <16 x i8> %a, ptr %store
199 define void @conv_v16i8_to_i128( ptr %load, ptr %store ) {
200 ; CHECK-LABEL: conv_v16i8_to_i128:
202 %v = load <16 x i8>, ptr %load
203 %w = load <16 x i8>, ptr @v16i8
204 %a = add <16 x i8> %v, %w
205 %f = bitcast <16 x i8> %a to i128
206 call void @conv_i128_to_v16i8( i128 %f, ptr %store )
210 define void @conv_i128_to_v8i16( i128 %val, ptr %store ) {
211 ; CHECK-LABEL: conv_i128_to_v8i16:
213 %v = bitcast i128 %val to <8 x i16>
214 %w = load <8 x i16>, ptr @v8i16
215 %a = add <8 x i16> %v, %w
216 store <8 x i16> %a, ptr %store
220 define void @conv_v8i16_to_i128( ptr %load, ptr %store ) {
221 ; CHECK-LABEL: conv_v8i16_to_i128:
223 %v = load <8 x i16>, ptr %load
224 %w = load <8 x i16>, ptr @v8i16
225 %a = add <8 x i16> %v, %w
226 %f = bitcast <8 x i16> %a to i128
227 call void @conv_i128_to_v8i16( i128 %f, ptr %store )
231 define void @conv_i128_to_v4i32( i128 %val, ptr %store ) {
232 ; CHECK-LABEL: conv_i128_to_v4i32:
234 %v = bitcast i128 %val to <4 x i32>
235 %w = load <4 x i32>, ptr @v4i32
236 %a = add <4 x i32> %v, %w
237 store <4 x i32> %a, ptr %store
241 define void @conv_v4i32_to_i128( ptr %load, ptr %store ) {
242 ; CHECK-LABEL: conv_v4i32_to_i128:
244 %v = load <4 x i32>, ptr %load
245 %w = load <4 x i32>, ptr @v4i32
246 %a = add <4 x i32> %v, %w
247 %f = bitcast <4 x i32> %a to i128
248 call void @conv_i128_to_v4i32( i128 %f, ptr %store )
252 define void @conv_i128_to_v4f32( i128 %val, ptr %store ) {
253 ; CHECK-LABEL: conv_i128_to_v4f32:
255 %v = bitcast i128 %val to <4 x float>
256 %w = load <4 x float>, ptr @v4f32
257 %a = fadd <4 x float> %v, %w
258 store <4 x float> %a, ptr %store
262 define void @conv_v4f32_to_i128( ptr %load, ptr %store ) {
263 ; CHECK-LABEL: conv_v4f32_to_i128:
265 %v = load <4 x float>, ptr %load
266 %w = load <4 x float>, ptr @v4f32
267 %a = fadd <4 x float> %v, %w
268 %f = bitcast <4 x float> %a to i128
269 call void @conv_i128_to_v4f32( i128 %f, ptr %store )
273 define void @conv_f128_to_v2f64( fp128 %val, ptr %store ) {
274 ; CHECK-LABEL: conv_f128_to_v2f64:
276 %v = bitcast fp128 %val to <2 x double>
277 %w = load <2 x double>, ptr @v2f64
278 %a = fadd <2 x double> %v, %w
279 store <2 x double> %a, ptr %store
283 define void @conv_v2f64_to_f128( ptr %load, ptr %store ) {
284 ; CHECK-LABEL: conv_v2f64_to_f128:
286 %v = load <2 x double>, ptr %load
287 %w = load <2 x double>, ptr @v2f64
288 %a = fadd <2 x double> %v, %w
289 %f = bitcast <2 x double> %a to fp128
290 call void @conv_f128_to_v2f64( fp128 %f, ptr %store )
294 define void @conv_f128_to_v16i8( fp128 %val, ptr %store ) {
295 ; CHECK-LABEL: conv_f128_to_v16i8:
297 %v = bitcast fp128 %val to <16 x i8>
298 %w = load <16 x i8>, ptr @v16i8
299 %a = add <16 x i8> %v, %w
300 store <16 x i8> %a, ptr %store
304 define void @conv_v16i8_to_f128( ptr %load, ptr %store ) {
305 ; CHECK-LABEL: conv_v16i8_to_f128:
307 %v = load <16 x i8>, ptr %load
308 %w = load <16 x i8>, ptr @v16i8
309 %a = add <16 x i8> %v, %w
310 %f = bitcast <16 x i8> %a to fp128
311 call void @conv_f128_to_v16i8( fp128 %f, ptr %store )
315 define void @conv_f128_to_v8i16( fp128 %val, ptr %store ) {
316 ; CHECK-LABEL: conv_f128_to_v8i16:
318 %v = bitcast fp128 %val to <8 x i16>
319 %w = load <8 x i16>, ptr @v8i16
320 %a = add <8 x i16> %v, %w
321 store <8 x i16> %a, ptr %store
325 define void @conv_v8i16_to_f128( ptr %load, ptr %store ) {
326 ; CHECK-LABEL: conv_v8i16_to_f128:
328 %v = load <8 x i16>, ptr %load
329 %w = load <8 x i16>, ptr @v8i16
330 %a = add <8 x i16> %v, %w
331 %f = bitcast <8 x i16> %a to fp128
332 call void @conv_f128_to_v8i16( fp128 %f, ptr %store )
336 define void @conv_f128_to_v4f32( fp128 %val, ptr %store ) {
337 ; CHECK-LABEL: conv_f128_to_v4f32:
339 %v = bitcast fp128 %val to <4 x float>
340 %w = load <4 x float>, ptr @v4f32
341 %a = fadd <4 x float> %v, %w
342 store <4 x float> %a, ptr %store
346 define void @conv_v4f32_to_f128( ptr %load, ptr %store ) {
347 ; CHECK-LABEL: conv_v4f32_to_f128:
349 %v = load <4 x float>, ptr %load
350 %w = load <4 x float>, ptr @v4f32
351 %a = fadd <4 x float> %v, %w
352 %f = bitcast <4 x float> %a to fp128
353 call void @conv_f128_to_v4f32( fp128 %f, ptr %store )
357 define void @arg_v4i32( <4 x i32> %var, ptr %store ) {
358 ; CHECK-LABEL: arg_v4i32:
359 ; CHECK: vmov [[REG2:d[0-9]+]], r3, r2
360 ; CHECK: vmov [[REG1:d[0-9]+]], r1, r0
361 ; CHECK: vst1.64 {[[REG1]], [[REG2]]},
362 ; CHECK-HARD-LABEL: arg_v4i32:
363 ; CHECK-HARD-NOT: vmov
364 ; CHECK-HARD: vst1.64 {d0, d1}
365 store <4 x i32> %var, ptr %store
369 define void @arg_v8i16( <8 x i16> %var, ptr %store ) {
370 ; CHECK-LABEL: arg_v8i16:
371 ; CHECK: vmov [[REG2:d[0-9]+]], r3, r2
372 ; CHECK: vmov [[REG1:d[0-9]+]], r1, r0
373 ; CHECK: vst1.64 {[[REG1]], [[REG2]]},
374 ; CHECK-HARD-LABEL: arg_v8i16:
375 ; CHECK-HARD-NOT: vmov
376 ; CHECK-HARD: vst1.64 {d0, d1}
377 store <8 x i16> %var, ptr %store
381 define void @arg_v16i8( <16 x i8> %var, ptr %store ) {
382 ; CHECK-LABEL: arg_v16i8:
383 ; CHECK: vmov [[REG2:d[0-9]+]], r3, r2
384 ; CHECK: vmov [[REG1:d[0-9]+]], r1, r0
385 ; CHECK: vst1.64 {[[REG1]], [[REG2]]},
386 ; CHECK-HARD-LABEL: arg_v16i8:
387 ; CHECK-HARD-NOT: vmov
388 ; CHECK-HARD: vst1.64 {d0, d1}
389 store <16 x i8> %var, ptr %store