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_svaddhnb_s16(svint16_t op1,svint16_t op2)17 svint8_t test_svaddhnb_s16(svint16_t op1, svint16_t op2)
18 {
19   // CHECK-LABEL: test_svaddhnb_s16
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.addhnb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
23   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_s16'}}
24   return SVE_ACLE_FUNC(svaddhnb,_s16,,)(op1, op2);
25 }
26 
test_svaddhnb_s32(svint32_t op1,svint32_t op2)27 svint16_t test_svaddhnb_s32(svint32_t op1, svint32_t op2)
28 {
29   // CHECK-LABEL: test_svaddhnb_s32
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.addhnb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
31   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
33   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_s32'}}
34   return SVE_ACLE_FUNC(svaddhnb,_s32,,)(op1, op2);
35 }
36 
test_svaddhnb_s64(svint64_t op1,svint64_t op2)37 svint32_t test_svaddhnb_s64(svint64_t op1, svint64_t op2)
38 {
39   // CHECK-LABEL: test_svaddhnb_s64
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.addhnb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
41   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
43   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_s64'}}
44   return SVE_ACLE_FUNC(svaddhnb,_s64,,)(op1, op2);
45 }
46 
test_svaddhnb_u16(svuint16_t op1,svuint16_t op2)47 svuint8_t test_svaddhnb_u16(svuint16_t op1, svuint16_t op2)
48 {
49   // CHECK-LABEL: test_svaddhnb_u16
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.addhnb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
51   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
53   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_u16'}}
54   return SVE_ACLE_FUNC(svaddhnb,_u16,,)(op1, op2);
55 }
56 
test_svaddhnb_u32(svuint32_t op1,svuint32_t op2)57 svuint16_t test_svaddhnb_u32(svuint32_t op1, svuint32_t op2)
58 {
59   // CHECK-LABEL: test_svaddhnb_u32
60   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.addhnb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
61   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
62   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
63   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_u32'}}
64   return SVE_ACLE_FUNC(svaddhnb,_u32,,)(op1, op2);
65 }
66 
test_svaddhnb_u64(svuint64_t op1,svuint64_t op2)67 svuint32_t test_svaddhnb_u64(svuint64_t op1, svuint64_t op2)
68 {
69   // CHECK-LABEL: test_svaddhnb_u64
70   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.addhnb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
71   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
72   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
73   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_u64'}}
74   return SVE_ACLE_FUNC(svaddhnb,_u64,,)(op1, op2);
75 }
76 
test_svaddhnb_n_s16(svint16_t op1,int16_t op2)77 svint8_t test_svaddhnb_n_s16(svint16_t op1, int16_t op2)
78 {
79   // CHECK-LABEL: test_svaddhnb_n_s16
80   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
81   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.addhnb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
82   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
83   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
84   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_s16'}}
85   return SVE_ACLE_FUNC(svaddhnb,_n_s16,,)(op1, op2);
86 }
87 
test_svaddhnb_n_s32(svint32_t op1,int32_t op2)88 svint16_t test_svaddhnb_n_s32(svint32_t op1, int32_t op2)
89 {
90   // CHECK-LABEL: test_svaddhnb_n_s32
91   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
92   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.addhnb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
93   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
94   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
95   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_s32'}}
96   return SVE_ACLE_FUNC(svaddhnb,_n_s32,,)(op1, op2);
97 }
98 
test_svaddhnb_n_s64(svint64_t op1,int64_t op2)99 svint32_t test_svaddhnb_n_s64(svint64_t op1, int64_t op2)
100 {
101   // CHECK-LABEL: test_svaddhnb_n_s64
102   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2)
103   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.addhnb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %[[DUP]])
104   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
105   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
106   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_s64'}}
107   return SVE_ACLE_FUNC(svaddhnb,_n_s64,,)(op1, op2);
108 }
109 
test_svaddhnb_n_u16(svuint16_t op1,uint16_t op2)110 svuint8_t test_svaddhnb_n_u16(svuint16_t op1, uint16_t op2)
111 {
112   // CHECK-LABEL: test_svaddhnb_n_u16
113   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
114   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.addhnb.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
115   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
116   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
117   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_u16'}}
118   return SVE_ACLE_FUNC(svaddhnb,_n_u16,,)(op1, op2);
119 }
120 
test_svaddhnb_n_u32(svuint32_t op1,uint32_t op2)121 svuint16_t test_svaddhnb_n_u32(svuint32_t op1, uint32_t op2)
122 {
123   // CHECK-LABEL: test_svaddhnb_n_u32
124   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
125   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.addhnb.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
126   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
127   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
128   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_u32'}}
129   return SVE_ACLE_FUNC(svaddhnb,_n_u32,,)(op1, op2);
130 }
131 
test_svaddhnb_n_u64(svuint64_t op1,uint64_t op2)132 svuint32_t test_svaddhnb_n_u64(svuint64_t op1, uint64_t op2)
133 {
134   // CHECK-LABEL: test_svaddhnb_n_u64
135   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2)
136   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.addhnb.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %[[DUP]])
137   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
138   // overload-warning@+2 {{implicit declaration of function 'svaddhnb'}}
139   // expected-warning@+1 {{implicit declaration of function 'svaddhnb_n_u64'}}
140   return SVE_ACLE_FUNC(svaddhnb,_n_u64,,)(op1, op2);
141 }
142