1 // REQUIRES: aarch64-registered-target
2 // 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
3 // 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
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 - %s | FileCheck %s
5 // 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
6 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -o - %s >/dev/null
7 
8 #include <arm_sve.h>
9 
10 #ifdef SVE_OVERLOADED_FORMS
11 // A simple used,unused... macro, long enough to represent any SVE builtin.
12 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
13 #else
14 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
15 #endif
16 
test_svld1rq_s8(svbool_t pg,const int8_t * base)17 svint8_t test_svld1rq_s8(svbool_t pg, const int8_t *base)
18 {
19   // CHECK-LABEL: test_svld1rq_s8
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.ld1rq.nxv16i8(<vscale x 16 x i1> %pg, i8* %base)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   return SVE_ACLE_FUNC(svld1rq,_s8,,)(pg, base);
23 }
24 
test_svld1rq_s16(svbool_t pg,const int16_t * base)25 svint16_t test_svld1rq_s16(svbool_t pg, const int16_t *base)
26 {
27   // CHECK-LABEL: test_svld1rq_s16
28   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
29   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.ld1rq.nxv8i16(<vscale x 8 x i1> %[[PG]], i16* %base)
30   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
31   return SVE_ACLE_FUNC(svld1rq,_s16,,)(pg, base);
32 }
33 
test_svld1rq_s32(svbool_t pg,const int32_t * base)34 svint32_t test_svld1rq_s32(svbool_t pg, const int32_t *base)
35 {
36   // CHECK-LABEL: test_svld1rq_s32
37   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
38   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.ld1rq.nxv4i32(<vscale x 4 x i1> %[[PG]], i32* %base)
39   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
40   return SVE_ACLE_FUNC(svld1rq,_s32,,)(pg, base);
41 }
42 
test_svld1rq_s64(svbool_t pg,const int64_t * base)43 svint64_t test_svld1rq_s64(svbool_t pg, const int64_t *base)
44 {
45   // CHECK-LABEL: test_svld1rq_s64
46   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
47   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.ld1rq.nxv2i64(<vscale x 2 x i1> %[[PG]], i64* %base)
48   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
49   return SVE_ACLE_FUNC(svld1rq,_s64,,)(pg, base);
50 }
51 
test_svld1rq_u8(svbool_t pg,const uint8_t * base)52 svuint8_t test_svld1rq_u8(svbool_t pg, const uint8_t *base)
53 {
54   // CHECK-LABEL: test_svld1rq_u8
55   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.ld1rq.nxv16i8(<vscale x 16 x i1> %pg, i8* %base)
56   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
57   return SVE_ACLE_FUNC(svld1rq,_u8,,)(pg, base);
58 }
59 
test_svld1rq_u16(svbool_t pg,const uint16_t * base)60 svuint16_t test_svld1rq_u16(svbool_t pg, const uint16_t *base)
61 {
62   // CHECK-LABEL: test_svld1rq_u16
63   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
64   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.ld1rq.nxv8i16(<vscale x 8 x i1> %[[PG]], i16* %base)
65   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
66   return SVE_ACLE_FUNC(svld1rq,_u16,,)(pg, base);
67 }
68 
test_svld1rq_u32(svbool_t pg,const uint32_t * base)69 svuint32_t test_svld1rq_u32(svbool_t pg, const uint32_t *base)
70 {
71   // CHECK-LABEL: test_svld1rq_u32
72   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
73   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.ld1rq.nxv4i32(<vscale x 4 x i1> %[[PG]], i32* %base)
74   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
75   return SVE_ACLE_FUNC(svld1rq,_u32,,)(pg, base);
76 }
77 
test_svld1rq_u64(svbool_t pg,const uint64_t * base)78 svuint64_t test_svld1rq_u64(svbool_t pg, const uint64_t *base)
79 {
80   // CHECK-LABEL: test_svld1rq_u64
81   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
82   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.ld1rq.nxv2i64(<vscale x 2 x i1> %[[PG]], i64* %base)
83   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
84   return SVE_ACLE_FUNC(svld1rq,_u64,,)(pg, base);
85 }
86 
test_svld1rq_f16(svbool_t pg,const float16_t * base)87 svfloat16_t test_svld1rq_f16(svbool_t pg, const float16_t *base)
88 {
89   // CHECK-LABEL: test_svld1rq_f16
90   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
91   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.ld1rq.nxv8f16(<vscale x 8 x i1> %[[PG]], half* %base)
92   // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]]
93   return SVE_ACLE_FUNC(svld1rq,_f16,,)(pg, base);
94 }
95 
test_svld1rq_f32(svbool_t pg,const float32_t * base)96 svfloat32_t test_svld1rq_f32(svbool_t pg, const float32_t *base)
97 {
98   // CHECK-LABEL: test_svld1rq_f32
99   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
100   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.ld1rq.nxv4f32(<vscale x 4 x i1> %[[PG]], float* %base)
101   // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
102   return SVE_ACLE_FUNC(svld1rq,_f32,,)(pg, base);
103 }
104 
test_svld1rq_f64(svbool_t pg,const float64_t * base)105 svfloat64_t test_svld1rq_f64(svbool_t pg, const float64_t *base)
106 {
107   // CHECK-LABEL: test_svld1rq_f64
108   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
109   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.ld1rq.nxv2f64(<vscale x 2 x i1> %[[PG]], double* %base)
110   // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]]
111   return SVE_ACLE_FUNC(svld1rq,_f64,,)(pg, base);
112 }
113