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_svqrshrunb_n_s16(svint16_t op1)17 svuint8_t test_svqrshrunb_n_s16(svint16_t op1)
18 {
19   // CHECK-LABEL: test_svqrshrunb_n_s16
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.sqrshrunb.nxv8i16(<vscale x 8 x i16> %op1, i32 1)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
23   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s16'}}
24   return SVE_ACLE_FUNC(svqrshrunb,_n_s16,,)(op1, 1);
25 }
26 
test_svqrshrunb_n_s16_1(svint16_t op1)27 svuint8_t test_svqrshrunb_n_s16_1(svint16_t op1)
28 {
29   // CHECK-LABEL: test_svqrshrunb_n_s16_1
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.sqrshrunb.nxv8i16(<vscale x 8 x i16> %op1, i32 8)
31   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
33   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s16'}}
34   return SVE_ACLE_FUNC(svqrshrunb,_n_s16,,)(op1, 8);
35 }
36 
test_svqrshrunb_n_s32(svint32_t op1)37 svuint16_t test_svqrshrunb_n_s32(svint32_t op1)
38 {
39   // CHECK-LABEL: test_svqrshrunb_n_s32
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sqrshrunb.nxv4i32(<vscale x 4 x i32> %op1, i32 1)
41   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
43   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s32'}}
44   return SVE_ACLE_FUNC(svqrshrunb,_n_s32,,)(op1, 1);
45 }
46 
test_svqrshrunb_n_s32_1(svint32_t op1)47 svuint16_t test_svqrshrunb_n_s32_1(svint32_t op1)
48 {
49   // CHECK-LABEL: test_svqrshrunb_n_s32_1
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sqrshrunb.nxv4i32(<vscale x 4 x i32> %op1, i32 16)
51   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
53   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s32'}}
54   return SVE_ACLE_FUNC(svqrshrunb,_n_s32,,)(op1, 16);
55 }
56 
test_svqrshrunb_n_s64(svint64_t op1)57 svuint32_t test_svqrshrunb_n_s64(svint64_t op1)
58 {
59   // CHECK-LABEL: test_svqrshrunb_n_s64
60   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sqrshrunb.nxv2i64(<vscale x 2 x i64> %op1, i32 1)
61   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
62   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
63   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s64'}}
64   return SVE_ACLE_FUNC(svqrshrunb,_n_s64,,)(op1, 1);
65 }
66 
test_svqrshrunb_n_s64_1(svint64_t op1)67 svuint32_t test_svqrshrunb_n_s64_1(svint64_t op1)
68 {
69   // CHECK-LABEL: test_svqrshrunb_n_s64_1
70   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sqrshrunb.nxv2i64(<vscale x 2 x i64> %op1, i32 32)
71   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
72   // overload-warning@+2 {{implicit declaration of function 'svqrshrunb'}}
73   // expected-warning@+1 {{implicit declaration of function 'svqrshrunb_n_s64'}}
74   return SVE_ACLE_FUNC(svqrshrunb,_n_s64,,)(op1, 32);
75 }
76