| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,188 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svmulx_f16_z(svbool_t pg, svfloat16_t op1, svfloat16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f16_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.sel.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %[[SEL]], <vscale x 8 x half> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f16,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_f32_z(svbool_t pg, svfloat32_t op1, svfloat32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f32_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.sel.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %[[SEL]], <vscale x 4 x float> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f32,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_f64_z(svbool_t pg, svfloat64_t op1, svfloat64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f64_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.sel.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %[[SEL]], <vscale x 2 x double> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f64,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svmulx_f16_m(svbool_t pg, svfloat16_t op1, svfloat16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f16,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_f32_m(svbool_t pg, svfloat32_t op1, svfloat32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f32,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_f64_m(svbool_t pg, svfloat64_t op1, svfloat64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f64,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svmulx_f16_x(svbool_t pg, svfloat16_t op1, svfloat16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f16,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_f32_x(svbool_t pg, svfloat32_t op1, svfloat32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f32,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_f64_x(svbool_t pg, svfloat64_t op1, svfloat64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_f64,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svmulx_n_f16_z(svbool_t pg, svfloat16_t op1, float16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f16_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.dup.x.nxv8f16(half %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.sel.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %[[SEL]], <vscale x 8 x half> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f16,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_n_f32_z(svbool_t pg, svfloat32_t op1, float32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f32_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.dup.x.nxv4f32(float %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.sel.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %[[SEL]], <vscale x 4 x float> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f32,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_n_f64_z(svbool_t pg, svfloat64_t op1, float64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f64_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.dup.x.nxv2f64(double %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.sel.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %[[SEL]], <vscale x 2 x double> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f64,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svmulx_n_f16_m(svbool_t pg, svfloat16_t op1, float16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f16_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.dup.x.nxv8f16(half %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f16,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_n_f32_m(svbool_t pg, svfloat32_t op1, float32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f32_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.dup.x.nxv4f32(float %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f32,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_n_f64_m(svbool_t pg, svfloat64_t op1, float64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f64_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.dup.x.nxv2f64(double %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f64,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svmulx_n_f16_x(svbool_t pg, svfloat16_t op1, float16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f16_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.dup.x.nxv8f16(half %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fmulx.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f16,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svmulx_n_f32_x(svbool_t pg, svfloat32_t op1, float32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f32_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.dup.x.nxv4f32(float %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fmulx.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f32,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svmulx_n_f64_x(svbool_t pg, svfloat64_t op1, float64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svmulx_n_f64_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.dup.x.nxv2f64(double %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fmulx.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svmulx,_n_f64,_x,)(pg, op1, op2); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrecpe_f16(svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpe_f16 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frecpe.x.nxv8f16(<vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpe,_f16,,)(op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrecpe_f32(svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpe_f32 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frecpe.x.nxv4f32(<vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpe,_f32,,)(op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrecpe_f64(svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpe_f64 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frecpe.x.nxv2f64(<vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpe,_f64,,)(op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrecps_f16(svfloat16_t op1, svfloat16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrecps_f16 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frecps.x.nxv8f16(<vscale x 8 x half> %op1, <vscale x 8 x half> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecps,_f16,,)(op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svrecps_f32(svfloat32_t op1, svfloat32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrecps_f32 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frecps.x.nxv4f32(<vscale x 4 x float> %op1, <vscale x 4 x float> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecps,_f32,,)(op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svrecps_f64(svfloat64_t op1, svfloat64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrecps_f64 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frecps.x.nxv2f64(<vscale x 2 x double> %op1, <vscale x 2 x double> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecps,_f64,,)(op1, op2); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrecpx_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frecpx.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrecpx_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frecpx.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrecpx_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frecpx.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrecpx_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frecpx.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrecpx_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frecpx.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrecpx_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frecpx.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrecpx_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frecpx.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrecpx_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frecpx.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrecpx_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrecpx_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frecpx.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrecpx,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrinta_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinta.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinta_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinta.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinta_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinta.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrinta_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinta.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinta_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinta.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinta_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinta.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrinta_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinta.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinta_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinta.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinta_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinta_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinta.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinta,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrinti_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinti.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinti_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinti.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinti_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinti.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrinti_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinti.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinti_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinti.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinti_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinti.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrinti_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frinti.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrinti_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frinti.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrinti_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrinti_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frinti.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrinti,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrintm_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintm.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintm_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintm.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintm_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintm.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintm_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintm.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintm_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintm.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintm_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintm.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintm_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintm.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintm_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintm.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintm_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintm_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintm.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintm,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrintn_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintn.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintn_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintn.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintn_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintn.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintn_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintn.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintn_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintn.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintn_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintn.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintn_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintn.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintn_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintn.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintn_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintn_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintn.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintn,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrintp_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintp.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintp_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintp.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintp_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintp.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintp_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintp.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintp_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintp.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintp_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintp.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintp_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintp.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintp_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintp.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintp_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintp_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintp.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintp,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrintx_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintx.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintx_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintx.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintx_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintx.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintx_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintx.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintx_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintx.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintx_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintx.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintx_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintx.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintx_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintx.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintx_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintx_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintx.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintx,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrintz_f16_z(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f16_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintz.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f16,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintz_f32_z(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f32_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintz.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f32,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintz_f64_z(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f64_z | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintz.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f64,_z,)(pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintz_f16_m(svfloat16_t inactive, svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintz.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f16,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintz_f32_m(svfloat32_t inactive, svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintz.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f32,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintz_f64_m(svfloat64_t inactive, svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintz.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f64,_m,)(inactive, pg, op); | ||
| } | ||
|
|
||
| svfloat16_t test_svrintz_f16_x(svbool_t pg, svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frintz.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f16,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrintz_f32_x(svbool_t pg, svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frintz.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f32,_x,)(pg, op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrintz_f64_x(svbool_t pg, svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrintz_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frintz.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrintz,_f64,_x,)(pg, op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrsqrte_f16(svfloat16_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrte_f16 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frsqrte.x.nxv8f16(<vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrte,_f16,,)(op); | ||
| } | ||
|
|
||
| svfloat32_t test_svrsqrte_f32(svfloat32_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrte_f32 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frsqrte.x.nxv4f32(<vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrte,_f32,,)(op); | ||
| } | ||
|
|
||
| svfloat64_t test_svrsqrte_f64(svfloat64_t op) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrte_f64 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frsqrte.x.nxv2f64(<vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrte,_f64,,)(op); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svrsqrts_f16(svfloat16_t op1, svfloat16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrts_f16 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.frsqrts.x.nxv8f16(<vscale x 8 x half> %op1, <vscale x 8 x half> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrts,_f16,,)(op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svrsqrts_f32(svfloat32_t op1, svfloat32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrts_f32 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.frsqrts.x.nxv4f32(<vscale x 4 x float> %op1, <vscale x 4 x float> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrts,_f32,,)(op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svrsqrts_f64(svfloat64_t op1, svfloat64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svrsqrts_f64 | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.frsqrts.x.nxv2f64(<vscale x 2 x double> %op1, <vscale x 2 x double> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svrsqrts,_f64,,)(op1, op2); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,188 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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_svscale_f16_z(svbool_t pg, svfloat16_t op1, svint16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f16_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.sel.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %[[SEL]], <vscale x 8 x i16> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f16,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_f32_z(svbool_t pg, svfloat32_t op1, svint32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f32_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.sel.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %[[SEL]], <vscale x 4 x i32> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f32,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_f64_z(svbool_t pg, svfloat64_t op1, svint64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f64_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.sel.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %[[SEL]], <vscale x 2 x i64> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f64,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svscale_f16_m(svbool_t pg, svfloat16_t op1, svint16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f16_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x i16> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f16,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_f32_m(svbool_t pg, svfloat32_t op1, svint32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f32_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x i32> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f32,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_f64_m(svbool_t pg, svfloat64_t op1, svint64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f64_m | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x i64> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f64,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svscale_f16_x(svbool_t pg, svfloat16_t op1, svint16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f16_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x i16> %op2) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f16,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_f32_x(svbool_t pg, svfloat32_t op1, svint32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f32_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x i32> %op2) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f32,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_f64_x(svbool_t pg, svfloat64_t op1, svint64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_f64_x | ||
| // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x i64> %op2) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_f64,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svscale_n_f16_z(svbool_t pg, svfloat16_t op1, int16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f16_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.sel.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x half> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %[[SEL]], <vscale x 8 x i16> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f16,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_n_f32_z(svbool_t pg, svfloat32_t op1, int32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f32_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.sel.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x float> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %[[SEL]], <vscale x 4 x i32> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f32,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_n_f64_z(svbool_t pg, svfloat64_t op1, int64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f64_z | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2) | ||
| // CHECK-DAG: %[[SEL:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.sel.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x double> zeroinitializer) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %[[SEL]], <vscale x 2 x i64> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f64,_z,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svscale_n_f16_m(svbool_t pg, svfloat16_t op1, int16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f16_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x i16> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f16,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_n_f32_m(svbool_t pg, svfloat32_t op1, int32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f32_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x i32> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f32,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_n_f64_m(svbool_t pg, svfloat64_t op1, int64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f64_m | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x i64> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f64,_m,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat16_t test_svscale_n_f16_x(svbool_t pg, svfloat16_t op1, int16_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f16_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 8 x i16> @llvm.aarch64.sve.dup.x.nxv8i16(i16 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fscale.nxv8f16(<vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op1, <vscale x 8 x i16> %[[DUP]]) | ||
| // CHECK: ret <vscale x 8 x half> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f16,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat32_t test_svscale_n_f32_x(svbool_t pg, svfloat32_t op1, int32_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f32_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.dup.x.nxv4i32(i32 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fscale.nxv4f32(<vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op1, <vscale x 4 x i32> %[[DUP]]) | ||
| // CHECK: ret <vscale x 4 x float> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f32,_x,)(pg, op1, op2); | ||
| } | ||
|
|
||
| svfloat64_t test_svscale_n_f64_x(svbool_t pg, svfloat64_t op1, int64_t op2) | ||
| { | ||
| // CHECK-LABEL: test_svscale_n_f64_x | ||
| // CHECK-DAG: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK-DAG: %[[DUP:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.dup.x.nxv2i64(i64 %op2) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fscale.nxv2f64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op1, <vscale x 2 x i64> %[[DUP]]) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svscale,_n_f64,_x,)(pg, op1, op2); | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| // RUN: %clang_cc1 -D__ARM_FEATURE_SVE -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 -D__ARM_FEATURE_SVE -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 | ||
|
|
||
| #include <arm_sve.h> | ||
|
|
||
| #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 <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fsqrt.nxv8f16(<vscale x 8 x half> zeroinitializer, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[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 <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fsqrt.nxv4f32(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[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 <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fsqrt.nxv2f64(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[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 <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fsqrt.nxv8f16(<vscale x 8 x half> %inactive, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[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 <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fsqrt.nxv4f32(<vscale x 4 x float> %inactive, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[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 <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fsqrt.nxv2f64(<vscale x 2 x double> %inactive, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[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 <vscale x 8 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv8i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 8 x half> @llvm.aarch64.sve.fsqrt.nxv8f16(<vscale x 8 x half> undef, <vscale x 8 x i1> %[[PG]], <vscale x 8 x half> %op) | ||
| // CHECK: ret <vscale x 8 x half> %[[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 <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x float> @llvm.aarch64.sve.fsqrt.nxv4f32(<vscale x 4 x float> undef, <vscale x 4 x i1> %[[PG]], <vscale x 4 x float> %op) | ||
| // CHECK: ret <vscale x 4 x float> %[[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 <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg) | ||
| // CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x double> @llvm.aarch64.sve.fsqrt.nxv2f64(<vscale x 2 x double> undef, <vscale x 2 x i1> %[[PG]], <vscale x 2 x double> %op) | ||
| // CHECK: ret <vscale x 2 x double> %[[INTRINSIC]] | ||
| return SVE_ACLE_FUNC(svsqrt,_f64,_x,)(pg, op); | ||
| } |