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_svmaxnmp_f16_m(svbool_t pg,svfloat16_t op1,svfloat16_t op2)17 svfloat16_t test_svmaxnmp_f16_m(svbool_t pg, svfloat16_t op1, svfloat16_t op2)
18 {
19   // CHECK-LABEL: test_svmaxnmp_f16_m
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 half> @llvm.aarch64.sve.fmaxnmp.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %op2)
22   // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]]
23   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_m'}}
24   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f16_m'}}
25   return SVE_ACLE_FUNC(svmaxnmp,_f16,_m,)(pg, op1, op2);
26 }
27 
test_svmaxnmp_f32_m(svbool_t pg,svfloat32_t op1,svfloat32_t op2)28 svfloat32_t test_svmaxnmp_f32_m(svbool_t pg, svfloat32_t op1, svfloat32_t op2)
29 {
30   // CHECK-LABEL: test_svmaxnmp_f32_m
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 float> @llvm.aarch64.sve.fmaxnmp.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %op2)
33   // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
34   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_m'}}
35   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f32_m'}}
36   return SVE_ACLE_FUNC(svmaxnmp,_f32,_m,)(pg, op1, op2);
37 }
38 
test_svmaxnmp_f64_m(svbool_t pg,svfloat64_t op1,svfloat64_t op2)39 svfloat64_t test_svmaxnmp_f64_m(svbool_t pg, svfloat64_t op1, svfloat64_t op2)
40 {
41   // CHECK-LABEL: test_svmaxnmp_f64_m
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 double> @llvm.aarch64.sve.fmaxnmp.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %op2)
44   // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]]
45   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_m'}}
46   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f64_m'}}
47   return SVE_ACLE_FUNC(svmaxnmp,_f64,_m,)(pg, op1, op2);
48 }
49 
test_svmaxnmp_f16_x(svbool_t pg,svfloat16_t op1,svfloat16_t op2)50 svfloat16_t test_svmaxnmp_f16_x(svbool_t pg, svfloat16_t op1, svfloat16_t op2)
51 {
52   // CHECK-LABEL: test_svmaxnmp_f16_x
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 half> @llvm.aarch64.sve.fmaxnmp.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %op2)
55   // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]]
56   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_x'}}
57   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f16_x'}}
58   return SVE_ACLE_FUNC(svmaxnmp,_f16,_x,)(pg, op1, op2);
59 }
60 
test_svmaxnmp_f32_x(svbool_t pg,svfloat32_t op1,svfloat32_t op2)61 svfloat32_t test_svmaxnmp_f32_x(svbool_t pg, svfloat32_t op1, svfloat32_t op2)
62 {
63   // CHECK-LABEL: test_svmaxnmp_f32_x
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 float> @llvm.aarch64.sve.fmaxnmp.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %op2)
66   // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]]
67   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_x'}}
68   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f32_x'}}
69   return SVE_ACLE_FUNC(svmaxnmp,_f32,_x,)(pg, op1, op2);
70 }
71 
test_svmaxnmp_f64_x(svbool_t pg,svfloat64_t op1,svfloat64_t op2)72 svfloat64_t test_svmaxnmp_f64_x(svbool_t pg, svfloat64_t op1, svfloat64_t op2)
73 {
74   // CHECK-LABEL: test_svmaxnmp_f64_x
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 double> @llvm.aarch64.sve.fmaxnmp.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %op2)
77   // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]]
78   // overload-warning@+2 {{implicit declaration of function 'svmaxnmp_x'}}
79   // expected-warning@+1 {{implicit declaration of function 'svmaxnmp_f64_x'}}
80   return SVE_ACLE_FUNC(svmaxnmp,_f64,_x,)(pg, op1, op2);
81 }
82