1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
2 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
3 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s
4 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
5 
6 #include <arm_sve.h>
7 
8 #ifdef SVE_OVERLOADED_FORMS
9 // A simple used,unused... macro, long enough to represent any SVE builtin.
10 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
11 #else
12 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
13 #endif
14 
test_svcreate4_s8(svint8_t x0,svint8_t x1,svint8_t x2,svint8_t x4)15 svint8x4_t test_svcreate4_s8(svint8_t x0, svint8_t x1, svint8_t x2, svint8_t x4)
16 {
17   // CHECK-LABEL: test_svcreate4_s8
18   // CHECK: %[[CREATE:.*]] = call <vscale x 64 x i8> @llvm.aarch64.sve.tuple.create4.nxv64i8.nxv16i8(<vscale x 16 x i8> %x0, <vscale x 16 x i8> %x1, <vscale x 16 x i8> %x2, <vscale x 16 x i8> %x4)
19   // CHECK-NEXT: ret <vscale x 64 x i8> %[[CREATE]]
20   return SVE_ACLE_FUNC(svcreate4,_s8,,)(x0, x1, x2, x4);
21 }
22 
test_svcreate4_s16(svint16_t x0,svint16_t x1,svint16_t x2,svint16_t x4)23 svint16x4_t test_svcreate4_s16(svint16_t x0, svint16_t x1, svint16_t x2, svint16_t x4)
24 {
25   // CHECK-LABEL: test_svcreate4_s16
26   // CHECK: %[[CREATE:.*]] = call <vscale x 32 x i16> @llvm.aarch64.sve.tuple.create4.nxv32i16.nxv8i16(<vscale x 8 x i16> %x0, <vscale x 8 x i16> %x1, <vscale x 8 x i16> %x2, <vscale x 8 x i16> %x4)
27   // CHECK-NEXT: ret <vscale x 32 x i16> %[[CREATE]]
28   return SVE_ACLE_FUNC(svcreate4,_s16,,)(x0, x1, x2, x4);
29 }
30 
test_svcreate4_s32(svint32_t x0,svint32_t x1,svint32_t x2,svint32_t x4)31 svint32x4_t test_svcreate4_s32(svint32_t x0, svint32_t x1, svint32_t x2, svint32_t x4)
32 {
33   // CHECK-LABEL: test_svcreate4_s32
34   // CHECK: %[[CREATE:.*]] = call <vscale x 16 x i32> @llvm.aarch64.sve.tuple.create4.nxv16i32.nxv4i32(<vscale x 4 x i32> %x0, <vscale x 4 x i32> %x1, <vscale x 4 x i32> %x2, <vscale x 4 x i32> %x4)
35   // CHECK-NEXT: ret <vscale x 16 x i32> %[[CREATE]]
36   return SVE_ACLE_FUNC(svcreate4,_s32,,)(x0, x1, x2, x4);
37 }
38 
test_svcreate4_s64(svint64_t x0,svint64_t x1,svint64_t x2,svint64_t x4)39 svint64x4_t test_svcreate4_s64(svint64_t x0, svint64_t x1, svint64_t x2, svint64_t x4)
40 {
41   // CHECK-LABEL: test_svcreate4_s64
42   // CHECK: %[[CREATE:.*]] = call <vscale x 8 x i64> @llvm.aarch64.sve.tuple.create4.nxv8i64.nxv2i64(<vscale x 2 x i64> %x0, <vscale x 2 x i64> %x1, <vscale x 2 x i64> %x2, <vscale x 2 x i64> %x4)
43   // CHECK-NEXT: ret <vscale x 8 x i64> %[[CREATE]]
44   return SVE_ACLE_FUNC(svcreate4,_s64,,)(x0, x1, x2, x4);
45 }
46 
test_svcreate4_u8(svuint8_t x0,svuint8_t x1,svuint8_t x2,svuint8_t x4)47 svuint8x4_t test_svcreate4_u8(svuint8_t x0, svuint8_t x1, svuint8_t x2, svuint8_t x4)
48 {
49   // CHECK-LABEL: test_svcreate4_u8
50   // CHECK: %[[CREATE:.*]] = call <vscale x 64 x i8> @llvm.aarch64.sve.tuple.create4.nxv64i8.nxv16i8(<vscale x 16 x i8> %x0, <vscale x 16 x i8> %x1, <vscale x 16 x i8> %x2, <vscale x 16 x i8> %x4)
51   // CHECK-NEXT: ret <vscale x 64 x i8> %[[CREATE]]
52   return SVE_ACLE_FUNC(svcreate4,_u8,,)(x0, x1, x2, x4);
53 }
54 
test_svcreate4_u16(svuint16_t x0,svuint16_t x1,svuint16_t x2,svuint16_t x4)55 svuint16x4_t test_svcreate4_u16(svuint16_t x0, svuint16_t x1, svuint16_t x2, svuint16_t x4)
56 {
57   // CHECK-LABEL: test_svcreate4_u16
58   // CHECK: %[[CREATE:.*]] = call <vscale x 32 x i16> @llvm.aarch64.sve.tuple.create4.nxv32i16.nxv8i16(<vscale x 8 x i16> %x0, <vscale x 8 x i16> %x1, <vscale x 8 x i16> %x2, <vscale x 8 x i16> %x4)
59   // CHECK-NEXT: ret <vscale x 32 x i16> %[[CREATE]]
60   return SVE_ACLE_FUNC(svcreate4,_u16,,)(x0, x1, x2, x4);
61 }
62 
test_svcreate4_u32(svuint32_t x0,svuint32_t x1,svuint32_t x2,svuint32_t x4)63 svuint32x4_t test_svcreate4_u32(svuint32_t x0, svuint32_t x1, svuint32_t x2, svuint32_t x4)
64 {
65   // CHECK-LABEL: test_svcreate4_u32
66   // CHECK: %[[CREATE:.*]] = call <vscale x 16 x i32> @llvm.aarch64.sve.tuple.create4.nxv16i32.nxv4i32(<vscale x 4 x i32> %x0, <vscale x 4 x i32> %x1, <vscale x 4 x i32> %x2, <vscale x 4 x i32> %x4)
67   // CHECK-NEXT: ret <vscale x 16 x i32> %[[CREATE]]
68   return SVE_ACLE_FUNC(svcreate4,_u32,,)(x0, x1, x2, x4);
69 }
70 
test_svcreate4_u64(svuint64_t x0,svuint64_t x1,svuint64_t x2,svuint64_t x4)71 svuint64x4_t test_svcreate4_u64(svuint64_t x0, svuint64_t x1, svuint64_t x2, svuint64_t x4)
72 {
73   // CHECK-LABEL: test_svcreate4_u64
74   // CHECK: %[[CREATE:.*]] = call <vscale x 8 x i64> @llvm.aarch64.sve.tuple.create4.nxv8i64.nxv2i64(<vscale x 2 x i64> %x0, <vscale x 2 x i64> %x1, <vscale x 2 x i64> %x2, <vscale x 2 x i64> %x4)
75   // CHECK-NEXT: ret <vscale x 8 x i64> %[[CREATE]]
76   return SVE_ACLE_FUNC(svcreate4,_u64,,)(x0, x1, x2, x4);
77 }
78 
test_svcreate4_f16(svfloat16_t x0,svfloat16_t x1,svfloat16_t x2,svfloat16_t x4)79 svfloat16x4_t test_svcreate4_f16(svfloat16_t x0, svfloat16_t x1, svfloat16_t x2, svfloat16_t x4)
80 {
81   // CHECK-LABEL: test_svcreate4_f16
82   // CHECK: %[[CREATE:.*]] = call <vscale x 32 x half> @llvm.aarch64.sve.tuple.create4.nxv32f16.nxv8f16(<vscale x 8 x half> %x0, <vscale x 8 x half> %x1, <vscale x 8 x half> %x2, <vscale x 8 x half> %x4)
83   // CHECK-NEXT: ret <vscale x 32 x half> %[[CREATE]]
84   return SVE_ACLE_FUNC(svcreate4,_f16,,)(x0, x1, x2, x4);
85 }
86 
test_svcreate4_f32(svfloat32_t x0,svfloat32_t x1,svfloat32_t x2,svfloat32_t x4)87 svfloat32x4_t test_svcreate4_f32(svfloat32_t x0, svfloat32_t x1, svfloat32_t x2, svfloat32_t x4)
88 {
89   // CHECK-LABEL: test_svcreate4_f32
90   // CHECK: %[[CREATE:.*]] = call <vscale x 16 x float> @llvm.aarch64.sve.tuple.create4.nxv16f32.nxv4f32(<vscale x 4 x float> %x0, <vscale x 4 x float> %x1, <vscale x 4 x float> %x2, <vscale x 4 x float> %x4)
91   // CHECK-NEXT: ret <vscale x 16 x float> %[[CREATE]]
92   return SVE_ACLE_FUNC(svcreate4,_f32,,)(x0, x1, x2, x4);
93 }
94 
test_svcreate4_f64(svfloat64_t x0,svfloat64_t x1,svfloat64_t x2,svfloat64_t x4)95 svfloat64x4_t test_svcreate4_f64(svfloat64_t x0, svfloat64_t x1, svfloat64_t x2, svfloat64_t x4)
96 {
97   // CHECK-LABEL: test_svcreate4_f64
98   // CHECK: %[[CREATE:.*]] = call <vscale x 8 x double> @llvm.aarch64.sve.tuple.create4.nxv8f64.nxv2f64(<vscale x 2 x double> %x0, <vscale x 2 x double> %x1, <vscale x 2 x double> %x2, <vscale x 2 x double> %x4)
99   // CHECK-NEXT: ret <vscale x 8 x double> %[[CREATE]]
100   return SVE_ACLE_FUNC(svcreate4,_f64,,)(x0, x1, x2, x4);
101 }
102