// 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 // 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 // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -fallow-half-arguments-and-returns -fsyntax-only -verify -verify-ignore-unexpected=error %s // 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 #include #ifdef SVE_OVERLOADED_FORMS // A simple used,unused... macro, long enough to represent any SVE builtin. #define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3 #else #define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4 #endif svuint32_t test_svhistcnt_s32_z(svbool_t pg, svint32_t op1, svint32_t op2) { // CHECK-LABEL: test_svhistcnt_s32_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.histcnt.nxv4i32( %[[PG]], %op1, %op2) // CHECK: ret %[[INTRINSIC]] // overload-warning@+2 {{implicit declaration of function 'svhistcnt_z'}} // expected-warning@+1 {{implicit declaration of function 'svhistcnt_s32_z'}} return SVE_ACLE_FUNC(svhistcnt,_s32,_z,)(pg, op1, op2); } svuint64_t test_svhistcnt_s64_z(svbool_t pg, svint64_t op1, svint64_t op2) { // CHECK-LABEL: test_svhistcnt_s64_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.histcnt.nxv2i64( %[[PG]], %op1, %op2) // CHECK: ret %[[INTRINSIC]] // overload-warning@+2 {{implicit declaration of function 'svhistcnt_z'}} // expected-warning@+1 {{implicit declaration of function 'svhistcnt_s64_z'}} return SVE_ACLE_FUNC(svhistcnt,_s64,_z,)(pg, op1, op2); } svuint32_t test_svhistcnt_u32_z(svbool_t pg, svuint32_t op1, svuint32_t op2) { // CHECK-LABEL: test_svhistcnt_u32_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.histcnt.nxv4i32( %[[PG]], %op1, %op2) // CHECK: ret %[[INTRINSIC]] // overload-warning@+2 {{implicit declaration of function 'svhistcnt_z'}} // expected-warning@+1 {{implicit declaration of function 'svhistcnt_u32_z'}} return SVE_ACLE_FUNC(svhistcnt,_u32,_z,)(pg, op1, op2); } svuint64_t test_svhistcnt_u64_z(svbool_t pg, svuint64_t op1, svuint64_t op2) { // CHECK-LABEL: test_svhistcnt_u64_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.histcnt.nxv2i64( %[[PG]], %op1, %op2) // CHECK: ret %[[INTRINSIC]] // overload-warning@+2 {{implicit declaration of function 'svhistcnt_z'}} // expected-warning@+1 {{implicit declaration of function 'svhistcnt_u64_z'}} return SVE_ACLE_FUNC(svhistcnt,_u64,_z,)(pg, op1, op2); }