1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2 -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 +sve2 -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 -fsyntax-only -verify -verify-ignore-unexpected=error %s
4 // RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify=overload -verify-ignore-unexpected=error %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_svmullt_s16(svint8_t op1,svint8_t op2)15 svint16_t test_svmullt_s16(svint8_t op1, svint8_t op2)
16 {
17   // CHECK-LABEL: test_svmullt_s16
18   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.smullt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
19   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
20   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
21   // expected-warning@+1 {{implicit declaration of function 'svmullt_s16'}}
22   return SVE_ACLE_FUNC(svmullt,_s16,,)(op1, op2);
23 }
24 
test_svmullt_s32(svint16_t op1,svint16_t op2)25 svint32_t test_svmullt_s32(svint16_t op1, svint16_t op2)
26 {
27   // CHECK-LABEL: test_svmullt_s32
28   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smullt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
29   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
30   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
31   // expected-warning@+1 {{implicit declaration of function 'svmullt_s32'}}
32   return SVE_ACLE_FUNC(svmullt,_s32,,)(op1, op2);
33 }
34 
test_svmullt_s64(svint32_t op1,svint32_t op2)35 svint64_t test_svmullt_s64(svint32_t op1, svint32_t op2)
36 {
37   // CHECK-LABEL: test_svmullt_s64
38   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smullt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
39   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
40   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
41   // expected-warning@+1 {{implicit declaration of function 'svmullt_s64'}}
42   return SVE_ACLE_FUNC(svmullt,_s64,,)(op1, op2);
43 }
44 
test_svmullt_u16(svuint8_t op1,svuint8_t op2)45 svuint16_t test_svmullt_u16(svuint8_t op1, svuint8_t op2)
46 {
47   // CHECK-LABEL: test_svmullt_u16
48   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.umullt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
49   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
50   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
51   // expected-warning@+1 {{implicit declaration of function 'svmullt_u16'}}
52   return SVE_ACLE_FUNC(svmullt,_u16,,)(op1, op2);
53 }
54 
test_svmullt_u32(svuint16_t op1,svuint16_t op2)55 svuint32_t test_svmullt_u32(svuint16_t op1, svuint16_t op2)
56 {
57   // CHECK-LABEL: test_svmullt_u32
58   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umullt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
59   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
60   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
61   // expected-warning@+1 {{implicit declaration of function 'svmullt_u32'}}
62   return SVE_ACLE_FUNC(svmullt,_u32,,)(op1, op2);
63 }
64 
test_svmullt_u64(svuint32_t op1,svuint32_t op2)65 svuint64_t test_svmullt_u64(svuint32_t op1, svuint32_t op2)
66 {
67   // CHECK-LABEL: test_svmullt_u64
68   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umullt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
69   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
70   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
71   // expected-warning@+1 {{implicit declaration of function 'svmullt_u64'}}
72   return SVE_ACLE_FUNC(svmullt,_u64,,)(op1, op2);
73 }
74 
test_svmullt_n_s16(svint8_t op1,int8_t op2)75 svint16_t test_svmullt_n_s16(svint8_t op1, int8_t op2)
76 {
77   // CHECK-LABEL: test_svmullt_n_s16
78   // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op2)
79   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.smullt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %[[DUP]])
80   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
81   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
82   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_s16'}}
83   return SVE_ACLE_FUNC(svmullt,_n_s16,,)(op1, op2);
84 }
85 
test_svmullt_n_s32(svint16_t op1,int16_t op2)86 svint32_t test_svmullt_n_s32(svint16_t op1, int16_t op2)
87 {
88   // CHECK-LABEL: test_svmullt_n_s32
89   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
90   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smullt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
91   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
92   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
93   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_s32'}}
94   return SVE_ACLE_FUNC(svmullt,_n_s32,,)(op1, op2);
95 }
96 
test_svmullt_n_s64(svint32_t op1,int32_t op2)97 svint64_t test_svmullt_n_s64(svint32_t op1, int32_t op2)
98 {
99   // CHECK-LABEL: test_svmullt_n_s64
100   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
101   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smullt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
102   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
103   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
104   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_s64'}}
105   return SVE_ACLE_FUNC(svmullt,_n_s64,,)(op1, op2);
106 }
107 
test_svmullt_n_u16(svuint8_t op1,uint8_t op2)108 svuint16_t test_svmullt_n_u16(svuint8_t op1, uint8_t op2)
109 {
110   // CHECK-LABEL: test_svmullt_n_u16
111   // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op2)
112   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.umullt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %[[DUP]])
113   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
114   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
115   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_u16'}}
116   return SVE_ACLE_FUNC(svmullt,_n_u16,,)(op1, op2);
117 }
118 
test_svmullt_n_u32(svuint16_t op1,uint16_t op2)119 svuint32_t test_svmullt_n_u32(svuint16_t op1, uint16_t op2)
120 {
121   // CHECK-LABEL: test_svmullt_n_u32
122   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
123   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umullt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
124   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
125   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
126   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_u32'}}
127   return SVE_ACLE_FUNC(svmullt,_n_u32,,)(op1, op2);
128 }
129 
test_svmullt_n_u64(svuint32_t op1,uint32_t op2)130 svuint64_t test_svmullt_n_u64(svuint32_t op1, uint32_t op2)
131 {
132   // CHECK-LABEL: test_svmullt_n_u64
133   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
134   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umullt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
135   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
136   // overload-warning@+2 {{implicit declaration of function 'svmullt'}}
137   // expected-warning@+1 {{implicit declaration of function 'svmullt_n_u64'}}
138   return SVE_ACLE_FUNC(svmullt,_n_u64,,)(op1, op2);
139 }
140 
test_svmullt_lane_s32(svint16_t op1,svint16_t op2)141 svint32_t test_svmullt_lane_s32(svint16_t op1, svint16_t op2)
142 {
143   // CHECK-LABEL: test_svmullt_lane_s32
144   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smullt.lane.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2, i32 0)
145   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
146   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
147   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_s32'}}
148   return SVE_ACLE_FUNC(svmullt_lane,_s32,,)(op1, op2, 0);
149 }
150 
test_svmullt_lane_s32_1(svint16_t op1,svint16_t op2)151 svint32_t test_svmullt_lane_s32_1(svint16_t op1, svint16_t op2)
152 {
153   // CHECK-LABEL: test_svmullt_lane_s32_1
154   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.smullt.lane.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2, i32 7)
155   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
156   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
157   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_s32'}}
158   return SVE_ACLE_FUNC(svmullt_lane,_s32,,)(op1, op2, 7);
159 }
160 
test_svmullt_lane_s64(svint32_t op1,svint32_t op2)161 svint64_t test_svmullt_lane_s64(svint32_t op1, svint32_t op2)
162 {
163   // CHECK-LABEL: test_svmullt_lane_s64
164   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smullt.lane.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2, i32 0)
165   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
166   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
167   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_s64'}}
168   return SVE_ACLE_FUNC(svmullt_lane,_s64,,)(op1, op2, 0);
169 }
170 
test_svmullt_lane_s64_1(svint32_t op1,svint32_t op2)171 svint64_t test_svmullt_lane_s64_1(svint32_t op1, svint32_t op2)
172 {
173   // CHECK-LABEL: test_svmullt_lane_s64_1
174   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.smullt.lane.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2, i32 3)
175   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
176   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
177   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_s64'}}
178   return SVE_ACLE_FUNC(svmullt_lane,_s64,,)(op1, op2, 3);
179 }
180 
test_svmullt_lane_u32(svuint16_t op1,svuint16_t op2)181 svuint32_t test_svmullt_lane_u32(svuint16_t op1, svuint16_t op2)
182 {
183   // CHECK-LABEL: test_svmullt_lane_u32
184   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umullt.lane.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2, i32 0)
185   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
186   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
187   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_u32'}}
188   return SVE_ACLE_FUNC(svmullt_lane,_u32,,)(op1, op2, 0);
189 }
190 
test_svmullt_lane_u32_1(svuint16_t op1,svuint16_t op2)191 svuint32_t test_svmullt_lane_u32_1(svuint16_t op1, svuint16_t op2)
192 {
193   // CHECK-LABEL: test_svmullt_lane_u32_1
194   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.umullt.lane.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2, i32 7)
195   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
196   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
197   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_u32'}}
198   return SVE_ACLE_FUNC(svmullt_lane,_u32,,)(op1, op2, 7);
199 }
200 
test_svmullt_lane_u64(svuint32_t op1,svuint32_t op2)201 svuint64_t test_svmullt_lane_u64(svuint32_t op1, svuint32_t op2)
202 {
203   // CHECK-LABEL: test_svmullt_lane_u64
204   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umullt.lane.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2, i32 0)
205   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
206   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
207   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_u64'}}
208   return SVE_ACLE_FUNC(svmullt_lane,_u64,,)(op1, op2, 0);
209 }
210 
test_svmullt_lane_u64_1(svuint32_t op1,svuint32_t op2)211 svuint64_t test_svmullt_lane_u64_1(svuint32_t op1, svuint32_t op2)
212 {
213   // CHECK-LABEL: test_svmullt_lane_u64_1
214   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.umullt.lane.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2, i32 3)
215   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
216   // overload-warning@+2 {{implicit declaration of function 'svmullt_lane'}}
217   // expected-warning@+1 {{implicit declaration of function 'svmullt_lane_u64'}}
218   return SVE_ACLE_FUNC(svmullt_lane,_u64,,)(op1, op2, 3);
219 }
220