// REQUIRES: aarch64-registered-target // RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -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 -S -O1 -Werror -Wall -o - %s >/dev/null 2>%t // RUN: FileCheck --check-prefix=ASM --allow-empty %s <%t // If this check fails please read test/CodeGen/aarch64-sve-intrinsics/README for instructions on how to resolve it. // ASM-NOT: warning #include uint64_t test_svcntp_b8(svbool_t pg, svbool_t op) { // CHECK-LABEL: test_svcntp_b8 // CHECK: %[[INTRINSIC:.*]] = call i64 @llvm.aarch64.sve.cntp.nxv16i1( %pg, %op) // CHECK: ret i64 %[[INTRINSIC]] return svcntp_b8(pg, op); } uint64_t test_svcntp_b16(svbool_t pg, svbool_t op) { // CHECK-LABEL: test_svcntp_b16 // CHECK-DAG: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv8i1( %pg) // CHECK-DAG: %[[OP:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv8i1( %op) // CHECK: %[[INTRINSIC:.*]] = call i64 @llvm.aarch64.sve.cntp.nxv8i1( %[[PG]], %[[OP]]) // CHECK: ret i64 %[[INTRINSIC]] return svcntp_b16(pg, op); } uint64_t test_svcntp_b32(svbool_t pg, svbool_t op) { // CHECK-LABEL: test_svcntp_b32 // CHECK-DAG: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK-DAG: %[[OP:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %op) // CHECK: %[[INTRINSIC:.*]] = call i64 @llvm.aarch64.sve.cntp.nxv4i1( %[[PG]], %[[OP]]) // CHECK: ret i64 %[[INTRINSIC]] return svcntp_b32(pg, op); } uint64_t test_svcntp_b64(svbool_t pg, svbool_t op) { // CHECK-LABEL: test_svcntp_b64 // CHECK-DAG: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK-DAG: %[[OP:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %op) // CHECK: %[[INTRINSIC:.*]] = call i64 @llvm.aarch64.sve.cntp.nxv2i1( %[[PG]], %[[OP]]) // CHECK: ret i64 %[[INTRINSIC]] return svcntp_b64(pg, op); }