|
| 1 | +// NOTE: Assertions have been autogenerated by utils/update_cc_test_checks.py |
| 2 | +// RUN: %clang_cc1 -triple aarch64 -target-feature +sve -target-feature +sve2p2 -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s |
| 3 | +// RUN: %clang_cc1 -triple aarch64 -target-feature +sve -target-feature +sve2p2 -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s -check-prefix=CPP-CHECK |
| 4 | +// RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64 -target-feature +sve -target-feature +sve2p2 -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s |
| 5 | +// RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64 -target-feature +sve -target-feature +sve2p2 -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s -check-prefix=CPP-CHECK |
| 6 | + |
| 7 | +// RUN: %clang_cc1 -triple aarch64 -target-feature +sme -target-feature +sme2p2 -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s |
| 8 | +// RUN: %clang_cc1 -triple aarch64 -target-feature +sme -target-feature +sme2p2 -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s -check-prefix=CPP-CHECK |
| 9 | +// RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64 -target-feature +sme -target-feature +sme2p2 -O1 -Werror -Wall -emit-llvm -o - %s | FileCheck %s |
| 10 | +// RUN: %clang_cc1 -DSVE_OVERLOADED_FORMS -triple aarch64 -target-feature +sme -target-feature +sme2p2 -O1 -Werror -Wall -emit-llvm -o - -x c++ %s | FileCheck %s -check-prefix=CPP-CHECK |
| 11 | + |
| 12 | +// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sve -target-feature +sve2p2 -target-feature +sve2p2 \ |
| 13 | +// RUN: -S -disable-O0-optnone -Werror -Wall -o /dev/null %s |
| 14 | +// RUN: %clang_cc1 -triple aarch64-none-linux-gnu -target-feature +sme -target-feature +sme2p2 -target-feature +sve2p2 \ |
| 15 | +// RUN: -S -disable-O0-optnone -Werror -Wall -o /dev/null %s |
| 16 | +// |
| 17 | +// REQUIRES: aarch64-registered-target |
| 18 | + |
| 19 | +#include <arm_sve.h> |
| 20 | + |
| 21 | +#ifdef SVE_OVERLOADED_FORMS |
| 22 | +// A simple used,unused... macro, long enough to represent any SVE builtin. |
| 23 | +#define SVE_ACLE_FUNC(A1,A2_UNUSED,A3,A4_UNUSED) A1##A3 |
| 24 | +#else |
| 25 | +#define SVE_ACLE_FUNC(A1,A2,A3,A4) A1##A2##A3##A4 |
| 26 | +#endif |
| 27 | + |
| 28 | +#if defined __ARM_FEATURE_SME |
| 29 | +#define MODE_ATTR __arm_streaming |
| 30 | +#else |
| 31 | +#define MODE_ATTR |
| 32 | +#endif |
| 33 | + |
| 34 | + |
| 35 | +// CHECK-LABEL: @test_svcvtnt_f16_f32_z( |
| 36 | +// CHECK-NEXT: entry: |
| 37 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 38 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 8 x half> @llvm.aarch64.sve.fcvtnt.z.f16f32(<vscale x 8 x half> [[INACTIVE:%.*]], <vscale x 4 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 39 | +// CHECK-NEXT: ret <vscale x 8 x half> [[TMP1]] |
| 40 | +// |
| 41 | +// CPP-CHECK-LABEL: @_Z22test_svcvtnt_f16_f32_zu13__SVFloat16_tu10__SVBool_tu13__SVFloat32_t( |
| 42 | +// CPP-CHECK-NEXT: entry: |
| 43 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 44 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 8 x half> @llvm.aarch64.sve.fcvtnt.z.f16f32(<vscale x 8 x half> [[INACTIVE:%.*]], <vscale x 4 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 45 | +// CPP-CHECK-NEXT: ret <vscale x 8 x half> [[TMP1]] |
| 46 | +// |
| 47 | +svfloat16_t test_svcvtnt_f16_f32_z(svfloat16_t inactive, svbool_t pg, svfloat32_t op) MODE_ATTR |
| 48 | +{ |
| 49 | + return SVE_ACLE_FUNC(svcvtnt_f16,_f32,_z,)(inactive, pg, op); |
| 50 | +} |
| 51 | + |
| 52 | +// CHECK-LABEL: @test_svcvtnt_bf16_f32_z( |
| 53 | +// CHECK-NEXT: entry: |
| 54 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 55 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 8 x bfloat> @llvm.aarch64.sve.fcvtnt.z.bf16f32(<vscale x 8 x bfloat> [[INACTIVE:%.*]], <vscale x 4 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 56 | +// CHECK-NEXT: ret <vscale x 8 x bfloat> [[TMP1]] |
| 57 | +// |
| 58 | +// CPP-CHECK-LABEL: @_Z23test_svcvtnt_bf16_f32_zu14__SVBfloat16_tu10__SVBool_tu13__SVFloat32_t( |
| 59 | +// CPP-CHECK-NEXT: entry: |
| 60 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 61 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 8 x bfloat> @llvm.aarch64.sve.fcvtnt.z.bf16f32(<vscale x 8 x bfloat> [[INACTIVE:%.*]], <vscale x 4 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 62 | +// CPP-CHECK-NEXT: ret <vscale x 8 x bfloat> [[TMP1]] |
| 63 | +// |
| 64 | +svbfloat16_t test_svcvtnt_bf16_f32_z(svbfloat16_t inactive, svbool_t pg, svfloat32_t op) MODE_ATTR |
| 65 | +{ |
| 66 | + return SVE_ACLE_FUNC(svcvtnt_bf16,_f32,_z,)(inactive, pg, op); |
| 67 | +} |
| 68 | + |
| 69 | +// CHECK-LABEL: @test_svcvtnt_f32_f64_z( |
| 70 | +// CHECK-NEXT: entry: |
| 71 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 72 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtnt.z.f32f64(<vscale x 4 x float> [[INACTIVE:%.*]], <vscale x 2 x i1> [[TMP0]], <vscale x 2 x double> [[OP:%.*]]) |
| 73 | +// CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 74 | +// |
| 75 | +// CPP-CHECK-LABEL: @_Z22test_svcvtnt_f32_f64_zu13__SVFloat32_tu10__SVBool_tu13__SVFloat64_t( |
| 76 | +// CPP-CHECK-NEXT: entry: |
| 77 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 78 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtnt.z.f32f64(<vscale x 4 x float> [[INACTIVE:%.*]], <vscale x 2 x i1> [[TMP0]], <vscale x 2 x double> [[OP:%.*]]) |
| 79 | +// CPP-CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 80 | +// |
| 81 | +svfloat32_t test_svcvtnt_f32_f64_z(svfloat32_t inactive, svbool_t pg, svfloat64_t op) MODE_ATTR |
| 82 | +{ |
| 83 | + return SVE_ACLE_FUNC(svcvtnt_f32,_f64,_z,)(inactive, pg, op); |
| 84 | +} |
| 85 | + |
| 86 | + |
| 87 | + |
| 88 | +// CHECK-LABEL: @test_svcvtxnt_f32_f64_z( |
| 89 | +// CHECK-NEXT: entry: |
| 90 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 91 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtxnt.z.f32f64(<vscale x 4 x float> [[INACTIVE:%.*]], <vscale x 2 x i1> [[TMP0]], <vscale x 2 x double> [[OP:%.*]]) |
| 92 | +// CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 93 | +// |
| 94 | +// CPP-CHECK-LABEL: @_Z23test_svcvtxnt_f32_f64_zu13__SVFloat32_tu10__SVBool_tu13__SVFloat64_t( |
| 95 | +// CPP-CHECK-NEXT: entry: |
| 96 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 97 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtxnt.z.f32f64(<vscale x 4 x float> [[INACTIVE:%.*]], <vscale x 2 x i1> [[TMP0]], <vscale x 2 x double> [[OP:%.*]]) |
| 98 | +// CPP-CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 99 | +// |
| 100 | +svfloat32_t test_svcvtxnt_f32_f64_z(svfloat32_t inactive, svbool_t pg, svfloat64_t op) MODE_ATTR |
| 101 | +{ |
| 102 | + return SVE_ACLE_FUNC(svcvtxnt_f32,_f64,_z,)(inactive, pg, op); |
| 103 | +} |
| 104 | + |
| 105 | +// CHECK-LABEL: @test_svcvtlt_f32_f16_z( |
| 106 | +// CHECK-NEXT: entry: |
| 107 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 108 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtlt.f32f16(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> [[TMP0]], <vscale x 8 x half> [[OP:%.*]]) |
| 109 | +// CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 110 | +// |
| 111 | +// CPP-CHECK-LABEL: @_Z22test_svcvtlt_f32_f16_zu10__SVBool_tu13__SVFloat16_t( |
| 112 | +// CPP-CHECK-NEXT: entry: |
| 113 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 4 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv4i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 114 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 4 x float> @llvm.aarch64.sve.fcvtlt.f32f16(<vscale x 4 x float> zeroinitializer, <vscale x 4 x i1> [[TMP0]], <vscale x 8 x half> [[OP:%.*]]) |
| 115 | +// CPP-CHECK-NEXT: ret <vscale x 4 x float> [[TMP1]] |
| 116 | +// |
| 117 | +svfloat32_t test_svcvtlt_f32_f16_z(svbool_t pg, svfloat16_t op) MODE_ATTR |
| 118 | +{ |
| 119 | + return SVE_ACLE_FUNC(svcvtlt_f32,_f16,_z,)(pg, op); |
| 120 | +} |
| 121 | + |
| 122 | +// CHECK-LABEL: @test_svcvtlt_f64_f32_z( |
| 123 | +// CHECK-NEXT: entry: |
| 124 | +// CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 125 | +// CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 2 x double> @llvm.aarch64.sve.fcvtlt.f64f32(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 126 | +// CHECK-NEXT: ret <vscale x 2 x double> [[TMP1]] |
| 127 | +// |
| 128 | +// CPP-CHECK-LABEL: @_Z22test_svcvtlt_f64_f32_zu10__SVBool_tu13__SVFloat32_t( |
| 129 | +// CPP-CHECK-NEXT: entry: |
| 130 | +// CPP-CHECK-NEXT: [[TMP0:%.*]] = tail call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> [[PG:%.*]]) |
| 131 | +// CPP-CHECK-NEXT: [[TMP1:%.*]] = tail call <vscale x 2 x double> @llvm.aarch64.sve.fcvtlt.f64f32(<vscale x 2 x double> zeroinitializer, <vscale x 2 x i1> [[TMP0]], <vscale x 4 x float> [[OP:%.*]]) |
| 132 | +// CPP-CHECK-NEXT: ret <vscale x 2 x double> [[TMP1]] |
| 133 | +// |
| 134 | +svfloat64_t test_svcvtlt_f64_f32_z(svbool_t pg, svfloat32_t op) MODE_ATTR |
| 135 | +{ |
| 136 | + return SVE_ACLE_FUNC(svcvtlt_f64,_f32,_z,)(pg, op); |
| 137 | +} |
| 138 | + |
0 commit comments