1 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve2-bitperm -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-bitperm -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-bitperm -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-bitperm -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_svbdep_u8(svuint8_t op1,svuint8_t op2)17 svuint8_t test_svbdep_u8(svuint8_t op1, svuint8_t op2)
18 {
19   // CHECK-LABEL: test_svbdep_u8
20   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.bdep.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %op2)
21   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
22   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
23   // expected-warning@+1 {{implicit declaration of function 'svbdep_u8'}}
24   return SVE_ACLE_FUNC(svbdep,_u8,,)(op1, op2);
25 }
26 
test_svbdep_u16(svuint16_t op1,svuint16_t op2)27 svuint16_t test_svbdep_u16(svuint16_t op1, svuint16_t op2)
28 {
29   // CHECK-LABEL: test_svbdep_u16
30   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.bdep.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %op2)
31   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
32   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
33   // expected-warning@+1 {{implicit declaration of function 'svbdep_u16'}}
34   return SVE_ACLE_FUNC(svbdep,_u16,,)(op1, op2);
35 }
36 
test_svbdep_u32(svuint32_t op1,svuint32_t op2)37 svuint32_t test_svbdep_u32(svuint32_t op1, svuint32_t op2)
38 {
39   // CHECK-LABEL: test_svbdep_u32
40   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.bdep.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %op2)
41   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
42   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
43   // expected-warning@+1 {{implicit declaration of function 'svbdep_u32'}}
44   return SVE_ACLE_FUNC(svbdep,_u32,,)(op1, op2);
45 }
46 
test_svbdep_u64(svuint64_t op1,svuint64_t op2)47 svuint64_t test_svbdep_u64(svuint64_t op1, svuint64_t op2)
48 {
49   // CHECK-LABEL: test_svbdep_u64
50   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.bdep.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %op2)
51   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
52   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
53   // expected-warning@+1 {{implicit declaration of function 'svbdep_u64'}}
54   return SVE_ACLE_FUNC(svbdep,_u64,,)(op1, op2);
55 }
56 
test_svbdep_n_u8(svuint8_t op1,uint8_t op2)57 svuint8_t test_svbdep_n_u8(svuint8_t op1, uint8_t op2)
58 {
59   // CHECK-LABEL: test_svbdep_n_u8
60   // CHECK: %[[DUP:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.dup.x.nxv16i8(i8 %op2)
61   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 16 x i8> @llvm.aarch64.sve.bdep.x.nxv16i8(<vscale x 16 x i8> %op1, <vscale x 16 x i8> %[[DUP]])
62   // CHECK: ret <vscale x 16 x i8> %[[INTRINSIC]]
63   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
64   // expected-warning@+1 {{implicit declaration of function 'svbdep_n_u8'}}
65   return SVE_ACLE_FUNC(svbdep,_n_u8,,)(op1, op2);
66 }
67 
test_svbdep_n_u16(svuint16_t op1,uint16_t op2)68 svuint16_t test_svbdep_n_u16(svuint16_t op1, uint16_t op2)
69 {
70   // CHECK-LABEL: test_svbdep_n_u16
71   // CHECK: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2)
72   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.bdep.x.nxv8i16(<vscale x 8 x i16> %op1, <vscale x 8 x i16> %[[DUP]])
73   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
74   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
75   // expected-warning@+1 {{implicit declaration of function 'svbdep_n_u16'}}
76   return SVE_ACLE_FUNC(svbdep,_n_u16,,)(op1, op2);
77 }
78 
test_svbdep_n_u32(svuint32_t op1,uint32_t op2)79 svuint32_t test_svbdep_n_u32(svuint32_t op1, uint32_t op2)
80 {
81   // CHECK-LABEL: test_svbdep_n_u32
82   // CHECK: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2)
83   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.bdep.x.nxv4i32(<vscale x 4 x i32> %op1, <vscale x 4 x i32> %[[DUP]])
84   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
85   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
86   // expected-warning@+1 {{implicit declaration of function 'svbdep_n_u32'}}
87   return SVE_ACLE_FUNC(svbdep,_n_u32,,)(op1, op2);
88 }
89 
test_svbdep_n_u64(svuint64_t op1,uint64_t op2)90 svuint64_t test_svbdep_n_u64(svuint64_t op1, uint64_t op2)
91 {
92   // CHECK-LABEL: test_svbdep_n_u64
93   // CHECK: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2)
94   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.bdep.x.nxv2i64(<vscale x 2 x i64> %op1, <vscale x 2 x i64> %[[DUP]])
95   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
96   // overload-warning@+2 {{implicit declaration of function 'svbdep'}}
97   // expected-warning@+1 {{implicit declaration of function 'svbdep_n_u64'}}
98   return SVE_ACLE_FUNC(svbdep,_n_u64,,)(op1, op2);
99 }
100