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_svlogb_f16_z(svbool_t pg,svfloat16_t op)17 svint16_t test_svlogb_f16_z(svbool_t pg, svfloat16_t op)
18 {
19   // CHECK-LABEL: test_svlogb_f16_z
20   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
21   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.flogb.nxv8f16(<vscale x 8 x i16> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op)
22   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
23   // overload-warning@+2 {{implicit declaration of function 'svlogb_z'}}
24   // expected-warning@+1 {{implicit declaration of function 'svlogb_f16_z'}}
25   return SVE_ACLE_FUNC(svlogb,_f16,_z,)(pg, op);
26 }
27 
test_svlogb_f32_z(svbool_t pg,svfloat32_t op)28 svint32_t test_svlogb_f32_z(svbool_t pg, svfloat32_t op)
29 {
30   // CHECK-LABEL: test_svlogb_f32_z
31   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
32   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.flogb.nxv4f32(<vscale x 4 x i32> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op)
33   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
34   // overload-warning@+2 {{implicit declaration of function 'svlogb_z'}}
35   // expected-warning@+1 {{implicit declaration of function 'svlogb_f32_z'}}
36   return SVE_ACLE_FUNC(svlogb,_f32,_z,)(pg, op);
37 }
38 
test_svlogb_f64_z(svbool_t pg,svfloat64_t op)39 svint64_t test_svlogb_f64_z(svbool_t pg, svfloat64_t op)
40 {
41   // CHECK-LABEL: test_svlogb_f64_z
42   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
43   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.flogb.nxv2f64(<vscale x 2 x i64> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op)
44   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
45   // overload-warning@+2 {{implicit declaration of function 'svlogb_z'}}
46   // expected-warning@+1 {{implicit declaration of function 'svlogb_f64_z'}}
47   return SVE_ACLE_FUNC(svlogb,_f64,_z,)(pg, op);
48 }
49 
test_svlogb_f16_m(svint16_t inactive,svbool_t pg,svfloat16_t op)50 svint16_t test_svlogb_f16_m(svint16_t inactive, svbool_t pg, svfloat16_t op)
51 {
52   // CHECK-LABEL: test_svlogb_f16_m
53   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
54   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.flogb.nxv8f16(<vscale x 8 x i16> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op)
55   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
56   // overload-warning@+2 {{implicit declaration of function 'svlogb_m'}}
57   // expected-warning@+1 {{implicit declaration of function 'svlogb_f16_m'}}
58   return SVE_ACLE_FUNC(svlogb,_f16,_m,)(inactive, pg, op);
59 }
60 
test_svlogb_f32_m(svint32_t inactive,svbool_t pg,svfloat32_t op)61 svint32_t test_svlogb_f32_m(svint32_t inactive, svbool_t pg, svfloat32_t op)
62 {
63   // CHECK-LABEL: test_svlogb_f32_m
64   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
65   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.flogb.nxv4f32(<vscale x 4 x i32> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op)
66   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
67   // overload-warning@+2 {{implicit declaration of function 'svlogb_m'}}
68   // expected-warning@+1 {{implicit declaration of function 'svlogb_f32_m'}}
69   return SVE_ACLE_FUNC(svlogb,_f32,_m,)(inactive, pg, op);
70 }
71 
test_svlogb_f64_m(svint64_t inactive,svbool_t pg,svfloat64_t op)72 svint64_t test_svlogb_f64_m(svint64_t inactive, svbool_t pg, svfloat64_t op)
73 {
74   // CHECK-LABEL: test_svlogb_f64_m
75   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
76   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.flogb.nxv2f64(<vscale x 2 x i64> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op)
77   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
78   // overload-warning@+2 {{implicit declaration of function 'svlogb_m'}}
79   // expected-warning@+1 {{implicit declaration of function 'svlogb_f64_m'}}
80   return SVE_ACLE_FUNC(svlogb,_f64,_m,)(inactive, pg, op);
81 }
82 
test_svlogb_f16_x(svbool_t pg,svfloat16_t op)83 svint16_t test_svlogb_f16_x(svbool_t pg, svfloat16_t op)
84 {
85   // CHECK-LABEL: test_svlogb_f16_x
86   // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg)
87   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.flogb.nxv8f16(<vscale x 8 x i16> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op)
88   // CHECK: ret <vscale x 8 x i16> %[[INTRINSIC]]
89   // overload-warning@+2 {{implicit declaration of function 'svlogb_x'}}
90   // expected-warning@+1 {{implicit declaration of function 'svlogb_f16_x'}}
91   return SVE_ACLE_FUNC(svlogb,_f16,_x,)(pg, op);
92 }
93 
test_svlogb_f32_x(svbool_t pg,svfloat32_t op)94 svint32_t test_svlogb_f32_x(svbool_t pg, svfloat32_t op)
95 {
96   // CHECK-LABEL: test_svlogb_f32_x
97   // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg)
98   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.flogb.nxv4f32(<vscale x 4 x i32> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op)
99   // CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
100   // overload-warning@+2 {{implicit declaration of function 'svlogb_x'}}
101   // expected-warning@+1 {{implicit declaration of function 'svlogb_f32_x'}}
102   return SVE_ACLE_FUNC(svlogb,_f32,_x,)(pg, op);
103 }
104 
test_svlogb_f64_x(svbool_t pg,svfloat64_t op)105 svint64_t test_svlogb_f64_x(svbool_t pg, svfloat64_t op)
106 {
107   // CHECK-LABEL: test_svlogb_f64_x
108   // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
109   // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.flogb.nxv2f64(<vscale x 2 x i64> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op)
110   // CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
111   // overload-warning@+2 {{implicit declaration of function 'svlogb_x'}}
112   // expected-warning@+1 {{implicit declaration of function 'svlogb_f64_x'}}
113   return SVE_ACLE_FUNC(svlogb,_f64,_x,)(pg, op);
114 }
115