// 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 -DSVE_OVERLOADED_FORMS -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 #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 svfloat16_t test_svsqrt_f16_z(svbool_t pg, svfloat16_t op) { // CHECK-LABEL: test_svsqrt_f16_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv8i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv8f16( zeroinitializer, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f16,_z,)(pg, op); } svfloat32_t test_svsqrt_f32_z(svbool_t pg, svfloat32_t op) { // CHECK-LABEL: test_svsqrt_f32_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv4f32( zeroinitializer, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f32,_z,)(pg, op); } svfloat64_t test_svsqrt_f64_z(svbool_t pg, svfloat64_t op) { // CHECK-LABEL: test_svsqrt_f64_z // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv2f64( zeroinitializer, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f64,_z,)(pg, op); } svfloat16_t test_svsqrt_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) { // CHECK-LABEL: test_svsqrt_f16_m // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv8i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv8f16( %inactive, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f16,_m,)(inactive, pg, op); } svfloat32_t test_svsqrt_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) { // CHECK-LABEL: test_svsqrt_f32_m // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv4f32( %inactive, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f32,_m,)(inactive, pg, op); } svfloat64_t test_svsqrt_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) { // CHECK-LABEL: test_svsqrt_f64_m // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv2f64( %inactive, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f64,_m,)(inactive, pg, op); } svfloat16_t test_svsqrt_f16_x(svbool_t pg, svfloat16_t op) { // CHECK-LABEL: test_svsqrt_f16_x // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv8i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv8f16( undef, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f16,_x,)(pg, op); } svfloat32_t test_svsqrt_f32_x(svbool_t pg, svfloat32_t op) { // CHECK-LABEL: test_svsqrt_f32_x // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv4i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv4f32( undef, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f32,_x,)(pg, op); } svfloat64_t test_svsqrt_f64_x(svbool_t pg, svfloat64_t op) { // CHECK-LABEL: test_svsqrt_f64_x // CHECK: %[[PG:.*]] = call @llvm.aarch64.sve.convert.from.svbool.nxv2i1( %pg) // CHECK: %[[INTRINSIC:.*]] = call @llvm.aarch64.sve.fsqrt.nxv2f64( undef, %[[PG]], %op) // CHECK: ret %[[INTRINSIC]] return SVE_ACLE_FUNC(svsqrt,_f64,_x,)(pg, op); }