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 #include <arm_sve.h>
8 
9 #ifdef SVE_OVERLOADED_FORMS
10 // A simple used,unused... macro, long enough to represent any SVE builtin.
11 #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3
12 #else
13 #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4
14 #endif
15 
test_svqadd_s8(svint8_t op1,svint8_t op2)16 svint8_t test_svqadd_s8(svint8_t op1, svint8_t op2)
17 {
18   // CHECK-LABEL: test_svqadd_s8
19   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.sqadd.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
20   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
21   return SVE_ACLE_FUNC(svqadd,_s8,,)(op1, op2);
22 }
23 
test_svqadd_s16(svint16_t op1,svint16_t op2)24 svint16_t test_svqadd_s16(svint16_t op1, svint16_t op2)
25 {
26   // CHECK-LABEL: test_svqadd_s16
27   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sqadd.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
28   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
29   return SVE_ACLE_FUNC(svqadd,_s16,,)(op1, op2);
30 }
31 
test_svqadd_s32(svint32_t op1,svint32_t op2)32 svint32_t test_svqadd_s32(svint32_t op1, svint32_t op2)
33 {
34   // CHECK-LABEL: test_svqadd_s32
35   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sqadd.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
36   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
37   return SVE_ACLE_FUNC(svqadd,_s32,,)(op1, op2);
38 }
39 
test_svqadd_s64(svint64_t op1,svint64_t op2)40 svint64_t test_svqadd_s64(svint64_t op1, svint64_t op2)
41 {
42   // CHECK-LABEL: test_svqadd_s64
43   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.sqadd.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
44   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
45   return SVE_ACLE_FUNC(svqadd,_s64,,)(op1, op2);
46 }
47 
test_svqadd_u8(svuint8_t op1,svuint8_t op2)48 svuint8_t test_svqadd_u8(svuint8_t op1, svuint8_t op2)
49 {
50   // CHECK-LABEL: test_svqadd_u8
51   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.uqadd.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
52   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
53   return SVE_ACLE_FUNC(svqadd,_u8,,)(op1, op2);
54 }
55 
test_svqadd_u16(svuint16_t op1,svuint16_t op2)56 svuint16_t test_svqadd_u16(svuint16_t op1, svuint16_t op2)
57 {
58   // CHECK-LABEL: test_svqadd_u16
59   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.uqadd.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
60   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
61   return SVE_ACLE_FUNC(svqadd,_u16,,)(op1, op2);
62 }
63 
test_svqadd_u32(svuint32_t op1,svuint32_t op2)64 svuint32_t test_svqadd_u32(svuint32_t op1, svuint32_t op2)
65 {
66   // CHECK-LABEL: test_svqadd_u32
67   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.uqadd.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
68   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
69   return SVE_ACLE_FUNC(svqadd,_u32,,)(op1, op2);
70 }
71 
test_svqadd_u64(svuint64_t op1,svuint64_t op2)72 svuint64_t test_svqadd_u64(svuint64_t op1, svuint64_t op2)
73 {
74   // CHECK-LABEL: test_svqadd_u64
75   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.uqadd.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
76   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
77   return SVE_ACLE_FUNC(svqadd,_u64,,)(op1, op2);
78 }
79 
test_svqadd_n_s8(svint8_t op1,int8_t op2)80 svint8_t test_svqadd_n_s8(svint8_t op1, int8_t op2)
81 {
82   // CHECK-LABEL: test_svqadd_n_s8
83   // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op2)
84   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.sqadd.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %[[DUP]])
85   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
86   return SVE_ACLE_FUNC(svqadd,_n_s8,,)(op1, op2);
87 }
88 
test_svqadd_n_s16(svint16_t op1,int16_t op2)89 svint16_t test_svqadd_n_s16(svint16_t op1, int16_t op2)
90 {
91   // CHECK-LABEL: test_svqadd_n_s16
92   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
93   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sqadd.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
94   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
95   return SVE_ACLE_FUNC(svqadd,_n_s16,,)(op1, op2);
96 }
97 
test_svqadd_n_s32(svint32_t op1,int32_t op2)98 svint32_t test_svqadd_n_s32(svint32_t op1, int32_t op2)
99 {
100   // CHECK-LABEL: test_svqadd_n_s32
101   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
102   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sqadd.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
103   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
104   return SVE_ACLE_FUNC(svqadd,_n_s32,,)(op1, op2);
105 }
106 
test_svqadd_n_s64(svint64_t op1,int64_t op2)107 svint64_t test_svqadd_n_s64(svint64_t op1, int64_t op2)
108 {
109   // CHECK-LABEL: test_svqadd_n_s64
110   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2)
111   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.sqadd.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %[[DUP]])
112   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
113   return SVE_ACLE_FUNC(svqadd,_n_s64,,)(op1, op2);
114 }
115 
test_svqadd_n_u8(svuint8_t op1,uint8_t op2)116 svuint8_t test_svqadd_n_u8(svuint8_t op1, uint8_t op2)
117 {
118   // CHECK-LABEL: test_svqadd_n_u8
119   // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op2)
120   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.uqadd.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %[[DUP]])
121   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
122   return SVE_ACLE_FUNC(svqadd,_n_u8,,)(op1, op2);
123 }
124 
test_svqadd_n_u16(svuint16_t op1,uint16_t op2)125 svuint16_t test_svqadd_n_u16(svuint16_t op1, uint16_t op2)
126 {
127   // CHECK-LABEL: test_svqadd_n_u16
128   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
129   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.uqadd.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
130   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
131   return SVE_ACLE_FUNC(svqadd,_n_u16,,)(op1, op2);
132 }
133 
test_svqadd_n_u32(svuint32_t op1,uint32_t op2)134 svuint32_t test_svqadd_n_u32(svuint32_t op1, uint32_t op2)
135 {
136   // CHECK-LABEL: test_svqadd_n_u32
137   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
138   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.uqadd.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
139   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
140   return SVE_ACLE_FUNC(svqadd,_n_u32,,)(op1, op2);
141 }
142 
test_svqadd_n_u64(svuint64_t op1,uint64_t op2)143 svuint64_t test_svqadd_n_u64(svuint64_t op1, uint64_t op2)
144 {
145   // CHECK-LABEL: test_svqadd_n_u64
146   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2)
147   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.uqadd.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %[[DUP]])
148   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
149   return SVE_ACLE_FUNC(svqadd,_n_u64,,)(op1, op2);
150 }
151