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_svnmatch_s8(svbool_t pg,svint8_t op1,svint8_t op2)17 svbool_t test_svnmatch_s8(svbool_t pg, svint8_t op1, svint8_t op2)
18 {
19   // CHECK-LABEL: test_svnmatch_s8
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i1> @llvm.aarch64.sve.nmatch.nxv16i8(<vscale x 16 x i1> %pg, <vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
21   // CHECK: ret <vscale x 16 x i1> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svnmatch'}}
23   // expected-warning@+1 {{implicit declaration of function 'svnmatch_s8'}}
24   return SVE_ACLE_FUNC(svnmatch,_s8,,)(pg, op1, op2);
25 }
26 
test_svnmatch_s16(svbool_t pg,svint16_t op1,svint16_t op2)27 svbool_t test_svnmatch_s16(svbool_t pg, svint16_t op1, svint16_t op2)
28 {
29   // CHECK-LABEL: test_svnmatch_s16
30   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
31   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.nmatch.nxv8i16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
32   // CHECK: %[[RET:.*]] = call <vscale x 16 x i1> @llvm.aarch64.sve.convert.to.svbool.nxv8i1(<vscale x 8 x i1> %[[INTRINSIC]])
33   // CHECK: ret <vscale x 16 x i1> %[[RET]]
34   // overload-warning@+2 {{implicit declaration of function 'svnmatch'}}
35   // expected-warning@+1 {{implicit declaration of function 'svnmatch_s16'}}
36   return SVE_ACLE_FUNC(svnmatch,_s16,,)(pg, op1, op2);
37 }
38 
test_svnmatch_u8(svbool_t pg,svuint8_t op1,svuint8_t op2)39 svbool_t test_svnmatch_u8(svbool_t pg, svuint8_t op1, svuint8_t op2)
40 {
41   // CHECK-LABEL: test_svnmatch_u8
42   // CHECK: %[[intrinsic:.*]] = call <vscale x 16 x i1> @llvm.aarch64.sve.nmatch.nxv16i8(<vscale x 16 x i1> %pg, <vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
43   // CHECK: ret <vscale x 16 x i1> %[[intrinsic]]
44   // overload-warning@+2 {{implicit declaration of function 'svnmatch'}}
45   // expected-warning@+1 {{implicit declaration of function 'svnmatch_u8'}}
46   return SVE_ACLE_FUNC(svnmatch,_u8,,)(pg, op1, op2);
47 }
48 
test_svnmatch_u16(svbool_t pg,svuint16_t op1,svuint16_t op2)49 svbool_t test_svnmatch_u16(svbool_t pg, svuint16_t op1, svuint16_t op2)
50 {
51   // CHECK-LABEL: test_svnmatch_u16
52   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
53   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.nmatch.nxv8i16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
54   // CHECK: %[[RET:.*]] = call <vscale x 16 x i1> @llvm.aarch64.sve.convert.to.svbool.nxv8i1(<vscale x 8 x i1> %[[INTRINSIC]])
55   // CHECK: ret <vscale x 16 x i1> %[[RET]]
56   // overload-warning@+2 {{implicit declaration of function 'svnmatch'}}
57   // expected-warning@+1 {{implicit declaration of function 'svnmatch_u16'}}
58   return SVE_ACLE_FUNC(svnmatch,_u16,,)(pg, op1, op2);
59 }
60