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 -triple aarch64-none-linux-gnu -target-feature +sve2 -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 +sve2 -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 +sve2 -fallow-half-arguments-and-returns -S -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s
5 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify -verify-ignore-unexpected=error %s
6 // 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
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_svraddhnt_s16(svint8_t op1,svint16_t op2,svint16_t op3)17 svint8_t test_svraddhnt_s16(svint8_t op1, svint16_t op2, svint16_t op3)
18 {
19   // CHECK-LABEL: test_svraddhnt_s16
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.raddhnt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
23   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_s16'}}
24   return SVE_ACLE_FUNC(svraddhnt,_s16,,)(op1, op2, op3);
25 }
26 
test_svraddhnt_s32(svint16_t op1,svint32_t op2,svint32_t op3)27 svint16_t test_svraddhnt_s32(svint16_t op1, svint32_t op2, svint32_t op3)
28 {
29   // CHECK-LABEL: test_svraddhnt_s32
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.raddhnt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3)
31   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
33   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_s32'}}
34   return SVE_ACLE_FUNC(svraddhnt,_s32,,)(op1, op2, op3);
35 }
36 
test_svraddhnt_s64(svint32_t op1,svint64_t op2,svint64_t op3)37 svint32_t test_svraddhnt_s64(svint32_t op1, svint64_t op2, svint64_t op3)
38 {
39   // CHECK-LABEL: test_svraddhnt_s64
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.raddhnt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 2 x i64> %op2, <vscale x 2 x i64> %op3)
41   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
43   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_s64'}}
44   return SVE_ACLE_FUNC(svraddhnt,_s64,,)(op1, op2, op3);
45 }
46 
test_svraddhnt_u16(svuint8_t op1,svuint16_t op2,svuint16_t op3)47 svuint8_t test_svraddhnt_u16(svuint8_t op1, svuint16_t op2, svuint16_t op3)
48 {
49   // CHECK-LABEL: test_svraddhnt_u16
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.raddhnt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %op3)
51   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
53   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_u16'}}
54   return SVE_ACLE_FUNC(svraddhnt,_u16,,)(op1, op2, op3);
55 }
56 
test_svraddhnt_u32(svuint16_t op1,svuint32_t op2,svuint32_t op3)57 svuint16_t test_svraddhnt_u32(svuint16_t op1, svuint32_t op2, svuint32_t op3)
58 {
59   // CHECK-LABEL: test_svraddhnt_u32
60   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.raddhnt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %op3)
61   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
62   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
63   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_u32'}}
64   return SVE_ACLE_FUNC(svraddhnt,_u32,,)(op1, op2, op3);
65 }
66 
test_svraddhnt_u64(svuint32_t op1,svuint64_t op2,svuint64_t op3)67 svuint32_t test_svraddhnt_u64(svuint32_t op1, svuint64_t op2, svuint64_t op3)
68 {
69   // CHECK-LABEL: test_svraddhnt_u64
70   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.raddhnt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 2 x i64> %op2, <vscale x 2 x i64> %op3)
71   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
72   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
73   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_u64'}}
74   return SVE_ACLE_FUNC(svraddhnt,_u64,,)(op1, op2, op3);
75 }
76 
test_svraddhnt_n_s16(svint8_t op1,svint16_t op2,int16_t op3)77 svint8_t test_svraddhnt_n_s16(svint8_t op1, svint16_t op2, int16_t op3)
78 {
79   // CHECK-LABEL: test_svraddhnt_n_s16
80   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op3)
81   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.raddhnt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %[[DUP]])
82   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
83   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
84   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_s16'}}
85   return SVE_ACLE_FUNC(svraddhnt,_n_s16,,)(op1, op2, op3);
86 }
87 
test_svraddhnt_n_s32(svint16_t op1,svint32_t op2,int32_t op3)88 svint16_t test_svraddhnt_n_s32(svint16_t op1, svint32_t op2, int32_t op3)
89 {
90   // CHECK-LABEL: test_svraddhnt_n_s32
91   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op3)
92   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.raddhnt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %[[DUP]])
93   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
94   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
95   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_s32'}}
96   return SVE_ACLE_FUNC(svraddhnt,_n_s32,,)(op1, op2, op3);
97 }
98 
test_svraddhnt_n_s64(svint32_t op1,svint64_t op2,int64_t op3)99 svint32_t test_svraddhnt_n_s64(svint32_t op1, svint64_t op2, int64_t op3)
100 {
101   // CHECK-LABEL: test_svraddhnt_n_s64
102   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op3)
103   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.raddhnt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 2 x i64> %op2, <vscale x 2 x i64> %[[DUP]])
104   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
105   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
106   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_s64'}}
107   return SVE_ACLE_FUNC(svraddhnt,_n_s64,,)(op1, op2, op3);
108 }
109 
test_svraddhnt_n_u16(svuint8_t op1,svuint16_t op2,uint16_t op3)110 svuint8_t test_svraddhnt_n_u16(svuint8_t op1, svuint16_t op2, uint16_t op3)
111 {
112   // CHECK-LABEL: test_svraddhnt_n_u16
113   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op3)
114   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.raddhnt.nxv8i16(<vscale x 16 x i8> %op1, <vscale x 8 x i16> %op2, <vscale x 8 x i16> %[[DUP]])
115   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
116   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
117   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_u16'}}
118   return SVE_ACLE_FUNC(svraddhnt,_n_u16,,)(op1, op2, op3);
119 }
120 
test_svraddhnt_n_u32(svuint16_t op1,svuint32_t op2,uint32_t op3)121 svuint16_t test_svraddhnt_n_u32(svuint16_t op1, svuint32_t op2, uint32_t op3)
122 {
123   // CHECK-LABEL: test_svraddhnt_n_u32
124   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op3)
125   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.raddhnt.nxv4i32(<vscale x 8 x i16> %op1, <vscale x 4 x i32> %op2, <vscale x 4 x i32> %[[DUP]])
126   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
127   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
128   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_u32'}}
129   return SVE_ACLE_FUNC(svraddhnt,_n_u32,,)(op1, op2, op3);
130 }
131 
test_svraddhnt_n_u64(svuint32_t op1,svuint64_t op2,uint64_t op3)132 svuint32_t test_svraddhnt_n_u64(svuint32_t op1, svuint64_t op2, uint64_t op3)
133 {
134   // CHECK-LABEL: test_svraddhnt_n_u64
135   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op3)
136   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.raddhnt.nxv2i64(<vscale x 4 x i32> %op1, <vscale x 2 x i64> %op2, <vscale x 2 x i64> %[[DUP]])
137   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
138   // overload-warning@+2 {{implicit declaration of function 'svraddhnt'}}
139   // expected-warning@+1 {{implicit declaration of function 'svraddhnt_n_u64'}}
140   return SVE_ACLE_FUNC(svraddhnt,_n_u64,,)(op1, op2, op3);
141 }
142