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_svqxtnt_s16(svint8_t op,svint16_t op1)17 svint8_t test_svqxtnt_s16(svint8_t op, svint16_t op1)
18 {
19   // CHECK-LABEL: test_svqxtnt_s16
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.sqxtnt.nxv8i16(<vscale x 16 x i8> %op, <vscale x 8 x i16> %op1)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
23   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_s16'}}
24   return SVE_ACLE_FUNC(svqxtnt,_s16,,)(op, op1);
25 }
26 
test_svqxtnt_s32(svint16_t op,svint32_t op1)27 svint16_t test_svqxtnt_s32(svint16_t op, svint32_t op1)
28 {
29   // CHECK-LABEL: test_svqxtnt_s32
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.sqxtnt.nxv4i32(<vscale x 8 x i16> %op, <vscale x 4 x i32> %op1)
31   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
33   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_s32'}}
34   return SVE_ACLE_FUNC(svqxtnt,_s32,,)(op, op1);
35 }
36 
test_svqxtnt_s64(svint32_t op,svint64_t op1)37 svint32_t test_svqxtnt_s64(svint32_t op, svint64_t op1)
38 {
39   // CHECK-LABEL: test_svqxtnt_s64
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.sqxtnt.nxv2i64(<vscale x 4 x i32> %op, <vscale x 2 x i64> %op1)
41   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
43   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_s64'}}
44   return SVE_ACLE_FUNC(svqxtnt,_s64,,)(op, op1);
45 }
46 
test_svqxtnt_u16(svuint8_t op,svuint16_t op1)47 svuint8_t test_svqxtnt_u16(svuint8_t op, svuint16_t op1)
48 {
49   // CHECK-LABEL: test_svqxtnt_u16
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.uqxtnt.nxv8i16(<vscale x 16 x i8> %op, <vscale x 8 x i16> %op1)
51   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
53   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_u16'}}
54   return SVE_ACLE_FUNC(svqxtnt,_u16,,)(op, op1);
55 }
56 
test_svqxtnt_u32(svuint16_t op,svuint32_t op1)57 svuint16_t test_svqxtnt_u32(svuint16_t op, svuint32_t op1)
58 {
59   // CHECK-LABEL: test_svqxtnt_u32
60   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.uqxtnt.nxv4i32(<vscale x 8 x i16> %op, <vscale x 4 x i32> %op1)
61   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
62   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
63   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_u32'}}
64   return SVE_ACLE_FUNC(svqxtnt,_u32,,)(op, op1);
65 }
66 
test_svqxtnt_u64(svuint32_t op,svuint64_t op1)67 svuint32_t test_svqxtnt_u64(svuint32_t op, svuint64_t op1)
68 {
69   // CHECK-LABEL: test_svqxtnt_u64
70   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.uqxtnt.nxv2i64(<vscale x 4 x i32> %op, <vscale x 2 x i64> %op1)
71   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
72   // overload-warning@+2 {{implicit declaration of function 'svqxtnt'}}
73   // expected-warning@+1 {{implicit declaration of function 'svqxtnt_u64'}}
74   return SVE_ACLE_FUNC(svqxtnt,_u64,,)(op, op1);
75 }
76