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 -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
3 
4 #include <arm_sve.h>
5 
6 #ifdef SVE_OVERLOADED_FORMS
7 // A simple used,unused... macro, long enough to represent any SVE builtin.
8 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
9 #else
10 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
11 #endif
12 
test_svcreate3_s8(svint8_t x0,svint8_t x1,svint8_t x2)13 svint8x3_t test_svcreate3_s8(svint8_t x0, svint8_t x1, svint8_t x2)
14 {
15   // CHECK-LABEL: test_svcreate3_s8
16   // CHECK: %[[CREATE:.*]] = call <vscale x 48 x i8> @llvm.aarch64.sve.tuple.create3.nxv48i8.nxv16i8(<vscale x 16 x i8> %x0, <vscale x 16 x i8> %x1, <vscale x 16 x i8> %x2)
17   // CHECK-NEXT: ret <vscale x 48 x i8> %[[CREATE]]
18   return SVE_ACLE_FUNC(svcreate3,_s8,,)(x0, x1, x2);
19 }
20 
test_svcreate3_s16(svint16_t x0,svint16_t x1,svint16_t x2)21 svint16x3_t test_svcreate3_s16(svint16_t x0, svint16_t x1, svint16_t x2)
22 {
23   // CHECK-LABEL: test_svcreate3_s16
24   // CHECK: %[[CREATE:.*]] = call <vscale x 24 x i16> @llvm.aarch64.sve.tuple.create3.nxv24i16.nxv8i16(<vscale x 8 x i16> %x0, <vscale x 8 x i16> %x1, <vscale x 8 x i16> %x2)
25   // CHECK-NEXT: ret <vscale x 24 x i16> %[[CREATE]]
26   return SVE_ACLE_FUNC(svcreate3,_s16,,)(x0, x1, x2);
27 }
28 
test_svcreate3_s32(svint32_t x0,svint32_t x1,svint32_t x2)29 svint32x3_t test_svcreate3_s32(svint32_t x0, svint32_t x1, svint32_t x2)
30 {
31   // CHECK-LABEL: test_svcreate3_s32
32   // CHECK: %[[CREATE:.*]] = call <vscale x 12 x i32> @llvm.aarch64.sve.tuple.create3.nxv12i32.nxv4i32(<vscale x 4 x i32> %x0, <vscale x 4 x i32> %x1, <vscale x 4 x i32> %x2)
33   // CHECK-NEXT: ret <vscale x 12 x i32> %[[CREATE]]
34   return SVE_ACLE_FUNC(svcreate3,_s32,,)(x0, x1, x2);
35 }
36 
test_svcreate3_s64(svint64_t x0,svint64_t x1,svint64_t x2)37 svint64x3_t test_svcreate3_s64(svint64_t x0, svint64_t x1, svint64_t x2)
38 {
39   // CHECK-LABEL: test_svcreate3_s64
40   // CHECK: %[[CREATE:.*]] = call <vscale x 6 x i64> @llvm.aarch64.sve.tuple.create3.nxv6i64.nxv2i64(<vscale x 2 x i64> %x0, <vscale x 2 x i64> %x1, <vscale x 2 x i64> %x2)
41   // CHECK-NEXT: ret <vscale x 6 x i64> %[[CREATE]]
42   return SVE_ACLE_FUNC(svcreate3,_s64,,)(x0, x1, x2);
43 }
44 
test_svcreate3_u8(svuint8_t x0,svuint8_t x1,svuint8_t x2)45 svuint8x3_t test_svcreate3_u8(svuint8_t x0, svuint8_t x1, svuint8_t x2)
46 {
47   // CHECK-LABEL: test_svcreate3_u8
48   // CHECK: %[[CREATE:.*]] = call <vscale x 48 x i8> @llvm.aarch64.sve.tuple.create3.nxv48i8.nxv16i8(<vscale x 16 x i8> %x0, <vscale x 16 x i8> %x1, <vscale x 16 x i8> %x2)
49   // CHECK-NEXT: ret <vscale x 48 x i8> %[[CREATE]]
50   return SVE_ACLE_FUNC(svcreate3,_u8,,)(x0, x1, x2);
51 }
52 
test_svcreate3_u16(svuint16_t x0,svuint16_t x1,svuint16_t x2)53 svuint16x3_t test_svcreate3_u16(svuint16_t x0, svuint16_t x1, svuint16_t x2)
54 {
55   // CHECK-LABEL: test_svcreate3_u16
56   // CHECK: %[[CREATE:.*]] = call <vscale x 24 x i16> @llvm.aarch64.sve.tuple.create3.nxv24i16.nxv8i16(<vscale x 8 x i16> %x0, <vscale x 8 x i16> %x1, <vscale x 8 x i16> %x2)
57   // CHECK-NEXT: ret <vscale x 24 x i16> %[[CREATE]]
58   return SVE_ACLE_FUNC(svcreate3,_u16,,)(x0, x1, x2);
59 }
60 
test_svcreate3_u32(svuint32_t x0,svuint32_t x1,svuint32_t x2)61 svuint32x3_t test_svcreate3_u32(svuint32_t x0, svuint32_t x1, svuint32_t x2)
62 {
63   // CHECK-LABEL: test_svcreate3_u32
64   // CHECK: %[[CREATE:.*]] = call <vscale x 12 x i32> @llvm.aarch64.sve.tuple.create3.nxv12i32.nxv4i32(<vscale x 4 x i32> %x0, <vscale x 4 x i32> %x1, <vscale x 4 x i32> %x2)
65   // CHECK-NEXT: ret <vscale x 12 x i32> %[[CREATE]]
66   return SVE_ACLE_FUNC(svcreate3,_u32,,)(x0, x1, x2);
67 }
68 
test_svcreate3_u64(svuint64_t x0,svuint64_t x1,svuint64_t x2)69 svuint64x3_t test_svcreate3_u64(svuint64_t x0, svuint64_t x1, svuint64_t x2)
70 {
71   // CHECK-LABEL: test_svcreate3_u64
72   // CHECK: %[[CREATE:.*]] = call <vscale x 6 x i64> @llvm.aarch64.sve.tuple.create3.nxv6i64.nxv2i64(<vscale x 2 x i64> %x0, <vscale x 2 x i64> %x1, <vscale x 2 x i64> %x2)
73   // CHECK-NEXT: ret <vscale x 6 x i64> %[[CREATE]]
74   return SVE_ACLE_FUNC(svcreate3,_u64,,)(x0, x1, x2);
75 }
76 
test_svcreate3_f16(svfloat16_t x0,svfloat16_t x1,svfloat16_t x2)77 svfloat16x3_t test_svcreate3_f16(svfloat16_t x0, svfloat16_t x1, svfloat16_t x2)
78 {
79   // CHECK-LABEL: test_svcreate3_f16
80   // CHECK: %[[CREATE:.*]] = call <vscale x 24 x half> @llvm.aarch64.sve.tuple.create3.nxv24f16.nxv8f16(<vscale x 8 x half> %x0, <vscale x 8 x half> %x1, <vscale x 8 x half> %x2)
81   // CHECK-NEXT: ret <vscale x 24 x half> %[[CREATE]]
82   return SVE_ACLE_FUNC(svcreate3,_f16,,)(x0, x1, x2);
83 }
84 
test_svcreate3_f32(svfloat32_t x0,svfloat32_t x1,svfloat32_t x2)85 svfloat32x3_t test_svcreate3_f32(svfloat32_t x0, svfloat32_t x1, svfloat32_t x2)
86 {
87   // CHECK-LABEL: test_svcreate3_f32
88   // CHECK: %[[CREATE:.*]] = call <vscale x 12 x float> @llvm.aarch64.sve.tuple.create3.nxv12f32.nxv4f32(<vscale x 4 x float> %x0, <vscale x 4 x float> %x1, <vscale x 4 x float> %x2)
89   // CHECK-NEXT: ret <vscale x 12 x float> %[[CREATE]]
90   return SVE_ACLE_FUNC(svcreate3,_f32,,)(x0, x1, x2);
91 }
92 
test_svcreate3_f64(svfloat64_t x0,svfloat64_t x1,svfloat64_t x2)93 svfloat64x3_t test_svcreate3_f64(svfloat64_t x0, svfloat64_t x1, svfloat64_t x2)
94 {
95   // CHECK-LABEL: test_svcreate3_f64
96   // CHECK: %[[CREATE:.*]] = call <vscale x 6 x double> @llvm.aarch64.sve.tuple.create3.nxv6f64.nxv2f64(<vscale x 2 x double> %x0, <vscale x 2 x double> %x1, <vscale x 2 x double> %x2)
97   // CHECK-NEXT: ret <vscale x 6 x double> %[[CREATE]]
98   return SVE_ACLE_FUNC(svcreate3,_f64,,)(x0, x1, x2);
99 }
100