forked from OSchip/llvm-project
[SveEmitter] Add builtins for address calculations.
This patch adds builtins for: - svadrb, svadrh, svadrw, svadrd
This commit is contained in:
parent
827c8b06d3
commit
dbc6a07bcc
|
@ -611,6 +611,14 @@ def SVPRFH_GATHER_BASES_OFFSET : MInst<"svprfh_gather[_{2}base]_index", "vPdlJ"
|
|||
def SVPRFW_GATHER_BASES_OFFSET : MInst<"svprfw_gather[_{2}base]_index", "vPdlJ", "UiUl", [IsGatherPrefetch], MemEltTyInt32, "aarch64_sve_prfw_gather_scalar_offset">;
|
||||
def SVPRFD_GATHER_BASES_OFFSET : MInst<"svprfd_gather[_{2}base]_index", "vPdlJ", "UiUl", [IsGatherPrefetch], MemEltTyInt64, "aarch64_sve_prfd_gather_scalar_offset">;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Address calculations
|
||||
|
||||
def SVADRB : SInst<"svadrb[_{0}base]_[{2}]offset", "uud", "ilUiUl", MergeNone, "aarch64_sve_adrb">;
|
||||
def SVADRH : SInst<"svadrh[_{0}base]_[{2}]index", "uud", "ilUiUl", MergeNone, "aarch64_sve_adrh">;
|
||||
def SVADRW : SInst<"svadrw[_{0}base]_[{2}]index", "uud", "ilUiUl", MergeNone, "aarch64_sve_adrw">;
|
||||
def SVADRD : SInst<"svadrd[_{0}base]_[{2}]index", "uud", "ilUiUl", MergeNone, "aarch64_sve_adrd">;
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
// Scalar to vector
|
||||
|
||||
|
|
|
@ -0,0 +1,43 @@
|
|||
// 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
|
||||
|
||||
svuint32_t test_svadrb_u32base_s32offset(svuint32_t bases, svint32_t offsets)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrb_u32base_s32offset
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrb.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %offsets)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrb_,u32base_s32,offset,)(bases, offsets);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrb_u64base_s64offset(svuint64_t bases, svint64_t offsets)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrb_u64base_s64offset
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrb.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %offsets)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrb_,u64base_s64,offset,)(bases, offsets);
|
||||
}
|
||||
|
||||
svuint32_t test_svadrb_u32base_u32offset(svuint32_t bases, svuint32_t offsets)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrb_u32base_u32offset
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrb.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %offsets)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrb_,u32base_u32,offset,)(bases, offsets);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrb_u64base_u64offset(svuint64_t bases, svuint64_t offsets)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrb_u64base_u64offset
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrb.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %offsets)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrb_,u64base_u64,offset,)(bases, offsets);
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
// 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
|
||||
|
||||
svuint32_t test_svadrd_u32base_s32index(svuint32_t bases, svint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrd_u32base_s32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrd.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrd_,u32base_s32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrd_u64base_s64index(svuint64_t bases, svint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrd_u64base_s64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrd.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrd_,u64base_s64,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint32_t test_svadrd_u32base_u32index(svuint32_t bases, svuint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrd_u32base_u32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrd.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrd_,u32base_u32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrd_u64base_u64index(svuint64_t bases, svuint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrd_u64base_u64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrd.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrd_,u64base_u64,index,)(bases, indices);
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
// 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
|
||||
|
||||
svuint32_t test_svadrh_u32base_s32index(svuint32_t bases, svint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrh_u32base_s32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrh.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrh_,u32base_s32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrh_u64base_s64index(svuint64_t bases, svint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrh_u64base_s64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrh.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrh_,u64base_s64,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint32_t test_svadrh_u32base_u32index(svuint32_t bases, svuint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrh_u32base_u32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrh.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrh_,u32base_u32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrh_u64base_u64index(svuint64_t bases, svuint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrh_u64base_u64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrh.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrh_,u64base_u64,index,)(bases, indices);
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
// 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
|
||||
|
||||
svuint32_t test_svadrw_u32base_s32index(svuint32_t bases, svint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrw_u32base_s32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrw.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrw_,u32base_s32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrw_u64base_s64index(svuint64_t bases, svint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrw_u64base_s64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrw.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrw_,u64base_s64,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint32_t test_svadrw_u32base_u32index(svuint32_t bases, svuint32_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrw_u32base_u32index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 4 x i32> @llvm.aarch64.sve.adrw.nxv4i32(<vscale x 4 x i32> %bases, <vscale x 4 x i32> %indices)
|
||||
// CHECK: ret <vscale x 4 x i32> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrw_,u32base_u32,index,)(bases, indices);
|
||||
}
|
||||
|
||||
svuint64_t test_svadrw_u64base_u64index(svuint64_t bases, svuint64_t indices)
|
||||
{
|
||||
// CHECK-LABEL: test_svadrw_u64base_u64index
|
||||
// CHECK: %[[INTRINSIC:.*]] = call <vscale x 2 x i64> @llvm.aarch64.sve.adrw.nxv2i64(<vscale x 2 x i64> %bases, <vscale x 2 x i64> %indices)
|
||||
// CHECK: ret <vscale x 2 x i64> %[[INTRINSIC]]
|
||||
return SVE_ACLE_FUNC(svadrw_,u64base_u64,index,)(bases, indices);
|
||||
}
|
Loading…
Reference in New Issue