xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/arm-vector-arguments.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc // REQUIRES: arm-registered-target
2*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -triple thumbv7-apple-darwin9 \
3*f4a2713aSLionel Sambuc // RUN:   -target-abi apcs-gnu \
4*f4a2713aSLionel Sambuc // RUN:   -target-cpu cortex-a8 \
5*f4a2713aSLionel Sambuc // RUN:   -mfloat-abi soft \
6*f4a2713aSLionel Sambuc // RUN:   -target-feature +soft-float-abi \
7*f4a2713aSLionel Sambuc // RUN:   -ffreestanding \
8*f4a2713aSLionel Sambuc // RUN:   -emit-llvm -w -o - %s | FileCheck %s
9*f4a2713aSLionel Sambuc 
10*f4a2713aSLionel Sambuc #include <arm_neon.h>
11*f4a2713aSLionel Sambuc 
12*f4a2713aSLionel Sambuc // CHECK: define void @f0(%struct.int8x16x2_t* noalias sret %agg.result, <16 x i8> %{{.*}}, <16 x i8> %{{.*}})
f0(int8x16_t a0,int8x16_t a1)13*f4a2713aSLionel Sambuc int8x16x2_t f0(int8x16_t a0, int8x16_t a1) {
14*f4a2713aSLionel Sambuc   return vzipq_s8(a0, a1);
15*f4a2713aSLionel Sambuc }
16*f4a2713aSLionel Sambuc 
17*f4a2713aSLionel Sambuc // Test direct vector passing.
18*f4a2713aSLionel Sambuc 
19*f4a2713aSLionel Sambuc typedef float T_float32x2 __attribute__ ((__vector_size__ (8)));
20*f4a2713aSLionel Sambuc typedef float T_float32x4 __attribute__ ((__vector_size__ (16)));
21*f4a2713aSLionel Sambuc typedef float T_float32x8 __attribute__ ((__vector_size__ (32)));
22*f4a2713aSLionel Sambuc typedef float T_float32x16 __attribute__ ((__vector_size__ (64)));
23*f4a2713aSLionel Sambuc 
24*f4a2713aSLionel Sambuc // CHECK: define <2 x float> @f1_0(<2 x float> %{{.*}})
f1_0(T_float32x2 a0)25*f4a2713aSLionel Sambuc T_float32x2 f1_0(T_float32x2 a0) { return a0; }
26*f4a2713aSLionel Sambuc // CHECK: define <4 x float> @f1_1(<4 x float> %{{.*}})
f1_1(T_float32x4 a0)27*f4a2713aSLionel Sambuc T_float32x4 f1_1(T_float32x4 a0) { return a0; }
28*f4a2713aSLionel Sambuc // CHECK: define void @f1_2(<8 x float>* noalias sret %{{.*}}, <8 x float> %{{.*}})
f1_2(T_float32x8 a0)29*f4a2713aSLionel Sambuc T_float32x8 f1_2(T_float32x8 a0) { return a0; }
30*f4a2713aSLionel Sambuc // CHECK: define void @f1_3(<16 x float>* noalias sret %{{.*}}, <16 x float> %{{.*}})
f1_3(T_float32x16 a0)31*f4a2713aSLionel Sambuc T_float32x16 f1_3(T_float32x16 a0) { return a0; }
32