2020-03-17 14:52:06 +01:00
|
|
|
//===- VPIntrinsicTest.cpp - VPIntrinsic unit tests ---------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/SmallVector.h"
|
|
|
|
#include "llvm/AsmParser/Parser.h"
|
2021-05-11 09:09:48 +02:00
|
|
|
#include "llvm/CodeGen/ISDOpcodes.h"
|
2020-03-17 14:52:06 +01:00
|
|
|
#include "llvm/IR/Constants.h"
|
|
|
|
#include "llvm/IR/IRBuilder.h"
|
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
|
|
|
#include "llvm/IR/LLVMContext.h"
|
|
|
|
#include "llvm/IR/Module.h"
|
|
|
|
#include "llvm/IR/Verifier.h"
|
|
|
|
#include "llvm/Support/SourceMgr.h"
|
|
|
|
#include "gtest/gtest.h"
|
2021-05-11 09:09:48 +02:00
|
|
|
#include <sstream>
|
2020-03-17 14:52:06 +01:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
class VPIntrinsicTest : public testing::Test {
|
|
|
|
protected:
|
|
|
|
LLVMContext Context;
|
|
|
|
|
|
|
|
VPIntrinsicTest() : Context() {}
|
|
|
|
|
|
|
|
LLVMContext C;
|
|
|
|
SMDiagnostic Err;
|
|
|
|
|
2021-06-21 10:50:27 +02:00
|
|
|
std::unique_ptr<Module> createVPDeclarationModule() {
|
2021-05-11 09:09:48 +02:00
|
|
|
const char *BinaryIntOpcodes[] = {"add", "sub", "mul", "sdiv", "srem",
|
|
|
|
"udiv", "urem", "and", "xor", "or",
|
|
|
|
"ashr", "lshr", "shl"};
|
|
|
|
std::stringstream Str;
|
|
|
|
for (const char *BinaryIntOpcode : BinaryIntOpcodes)
|
|
|
|
Str << " declare <8 x i32> @llvm.vp." << BinaryIntOpcode
|
|
|
|
<< ".v8i32(<8 x i32>, <8 x i32>, <8 x i1>, i32) ";
|
|
|
|
|
2021-06-14 08:51:24 +02:00
|
|
|
const char *BinaryFPOpcodes[] = {"fadd", "fsub", "fmul", "fdiv", "frem"};
|
|
|
|
for (const char *BinaryFPOpcode : BinaryFPOpcodes)
|
|
|
|
Str << " declare <8 x float> @llvm.vp." << BinaryFPOpcode
|
|
|
|
<< ".v8f32(<8 x float>, <8 x float>, <8 x i1>, i32) ";
|
|
|
|
|
2021-07-15 13:30:32 +02:00
|
|
|
Str << " declare void @llvm.vp.store.v8i32.p0v8i32(<8 x i32>, <8 x i32>*, "
|
|
|
|
"<8 x i1>, i32) ";
|
|
|
|
Str << " declare void @llvm.vp.scatter.v8i32.v8p0i32(<8 x i32>, <8 x "
|
|
|
|
"i32*>, <8 x i1>, i32) ";
|
|
|
|
Str << " declare <8 x i32> @llvm.vp.load.v8i32.p0v8i32(<8 x i32>*, <8 x "
|
|
|
|
"i1>, i32) ";
|
|
|
|
Str << " declare <8 x i32> @llvm.vp.gather.v8i32.v8p0i32(<8 x i32*>, <8 x "
|
|
|
|
"i1>, i32) ";
|
2021-07-01 11:30:49 +02:00
|
|
|
|
2021-05-11 09:09:48 +02:00
|
|
|
return parseAssemblyString(Str.str(), Err, C);
|
2020-03-17 14:52:06 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-05-11 09:09:48 +02:00
|
|
|
/// Check that the property scopes include/llvm/IR/VPIntrinsics.def are closed.
|
|
|
|
TEST_F(VPIntrinsicTest, VPIntrinsicsDefScopes) {
|
|
|
|
Optional<Intrinsic::ID> ScopeVPID;
|
|
|
|
#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) \
|
|
|
|
ASSERT_FALSE(ScopeVPID.hasValue()); \
|
|
|
|
ScopeVPID = Intrinsic::VPID;
|
|
|
|
#define END_REGISTER_VP_INTRINSIC(VPID) \
|
|
|
|
ASSERT_TRUE(ScopeVPID.hasValue()); \
|
|
|
|
ASSERT_EQ(ScopeVPID.getValue(), Intrinsic::VPID); \
|
|
|
|
ScopeVPID = None;
|
|
|
|
|
|
|
|
Optional<ISD::NodeType> ScopeOPC;
|
|
|
|
#define BEGIN_REGISTER_VP_SDNODE(SDOPC, ...) \
|
|
|
|
ASSERT_FALSE(ScopeOPC.hasValue()); \
|
|
|
|
ScopeOPC = ISD::SDOPC;
|
|
|
|
#define END_REGISTER_VP_SDNODE(SDOPC) \
|
|
|
|
ASSERT_TRUE(ScopeOPC.hasValue()); \
|
|
|
|
ASSERT_EQ(ScopeOPC.getValue(), ISD::SDOPC); \
|
|
|
|
ScopeOPC = None;
|
|
|
|
#include "llvm/IR/VPIntrinsics.def"
|
|
|
|
|
|
|
|
ASSERT_FALSE(ScopeVPID.hasValue());
|
|
|
|
ASSERT_FALSE(ScopeOPC.hasValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check that every VP intrinsic in the test module is recognized as a VP
|
|
|
|
/// intrinsic.
|
|
|
|
TEST_F(VPIntrinsicTest, VPModuleComplete) {
|
2021-06-21 10:50:27 +02:00
|
|
|
std::unique_ptr<Module> M = createVPDeclarationModule();
|
2021-05-11 09:09:48 +02:00
|
|
|
assert(M);
|
|
|
|
|
|
|
|
// Check that all @llvm.vp.* functions in the module are recognized vp
|
|
|
|
// intrinsics.
|
|
|
|
std::set<Intrinsic::ID> SeenIDs;
|
|
|
|
for (const auto &VPDecl : *M) {
|
|
|
|
ASSERT_TRUE(VPDecl.isIntrinsic());
|
2021-05-28 20:28:45 +02:00
|
|
|
ASSERT_TRUE(VPIntrinsic::isVPIntrinsic(VPDecl.getIntrinsicID()));
|
2021-05-11 09:09:48 +02:00
|
|
|
SeenIDs.insert(VPDecl.getIntrinsicID());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that every registered VP intrinsic has an instance in the test
|
|
|
|
// module.
|
|
|
|
#define BEGIN_REGISTER_VP_INTRINSIC(VPID, ...) \
|
|
|
|
ASSERT_TRUE(SeenIDs.count(Intrinsic::VPID));
|
|
|
|
#include "llvm/IR/VPIntrinsics.def"
|
|
|
|
}
|
|
|
|
|
2020-03-17 14:52:06 +01:00
|
|
|
/// Check that VPIntrinsic:canIgnoreVectorLengthParam() returns true
|
|
|
|
/// if the vector length parameter does not mask off any lanes.
|
|
|
|
TEST_F(VPIntrinsicTest, CanIgnoreVectorLength) {
|
|
|
|
LLVMContext C;
|
|
|
|
SMDiagnostic Err;
|
|
|
|
|
|
|
|
std::unique_ptr<Module> M =
|
|
|
|
parseAssemblyString(
|
|
|
|
"declare <256 x i64> @llvm.vp.mul.v256i64(<256 x i64>, <256 x i64>, <256 x i1>, i32)"
|
|
|
|
"declare <vscale x 2 x i64> @llvm.vp.mul.nxv2i64(<vscale x 2 x i64>, <vscale x 2 x i64>, <vscale x 2 x i1>, i32)"
|
2020-06-04 11:09:48 +02:00
|
|
|
"declare <vscale x 1 x i64> @llvm.vp.mul.nxv1i64(<vscale x 1 x i64>, <vscale x 1 x i64>, <vscale x 1 x i1>, i32)"
|
2020-03-17 14:52:06 +01:00
|
|
|
"declare i32 @llvm.vscale.i32()"
|
|
|
|
"define void @test_static_vlen( "
|
2020-06-04 11:09:48 +02:00
|
|
|
" <256 x i64> %i0, <vscale x 2 x i64> %si0x2, <vscale x 1 x i64> %si0x1,"
|
|
|
|
" <256 x i64> %i1, <vscale x 2 x i64> %si1x2, <vscale x 1 x i64> %si1x1,"
|
|
|
|
" <256 x i1> %m, <vscale x 2 x i1> %smx2, <vscale x 1 x i1> %smx1, i32 %vl) { "
|
2020-03-17 14:52:06 +01:00
|
|
|
" %r0 = call <256 x i64> @llvm.vp.mul.v256i64(<256 x i64> %i0, <256 x i64> %i1, <256 x i1> %m, i32 %vl)"
|
|
|
|
" %r1 = call <256 x i64> @llvm.vp.mul.v256i64(<256 x i64> %i0, <256 x i64> %i1, <256 x i1> %m, i32 256)"
|
|
|
|
" %r2 = call <256 x i64> @llvm.vp.mul.v256i64(<256 x i64> %i0, <256 x i64> %i1, <256 x i1> %m, i32 0)"
|
|
|
|
" %r3 = call <256 x i64> @llvm.vp.mul.v256i64(<256 x i64> %i0, <256 x i64> %i1, <256 x i1> %m, i32 7)"
|
|
|
|
" %r4 = call <256 x i64> @llvm.vp.mul.v256i64(<256 x i64> %i0, <256 x i64> %i1, <256 x i1> %m, i32 123)"
|
|
|
|
" %vs = call i32 @llvm.vscale.i32()"
|
2020-06-04 11:09:48 +02:00
|
|
|
" %vs.x2 = mul i32 %vs, 2"
|
|
|
|
" %r5 = call <vscale x 2 x i64> @llvm.vp.mul.nxv2i64(<vscale x 2 x i64> %si0x2, <vscale x 2 x i64> %si1x2, <vscale x 2 x i1> %smx2, i32 %vs.x2)"
|
|
|
|
" %r6 = call <vscale x 2 x i64> @llvm.vp.mul.nxv2i64(<vscale x 2 x i64> %si0x2, <vscale x 2 x i64> %si1x2, <vscale x 2 x i1> %smx2, i32 %vs)"
|
|
|
|
" %r7 = call <vscale x 2 x i64> @llvm.vp.mul.nxv2i64(<vscale x 2 x i64> %si0x2, <vscale x 2 x i64> %si1x2, <vscale x 2 x i1> %smx2, i32 99999)"
|
|
|
|
" %r8 = call <vscale x 1 x i64> @llvm.vp.mul.nxv1i64(<vscale x 1 x i64> %si0x1, <vscale x 1 x i64> %si1x1, <vscale x 1 x i1> %smx1, i32 %vs)"
|
|
|
|
" %r9 = call <vscale x 1 x i64> @llvm.vp.mul.nxv1i64(<vscale x 1 x i64> %si0x1, <vscale x 1 x i64> %si1x1, <vscale x 1 x i1> %smx1, i32 1)"
|
|
|
|
" %r10 = call <vscale x 1 x i64> @llvm.vp.mul.nxv1i64(<vscale x 1 x i64> %si0x1, <vscale x 1 x i64> %si1x1, <vscale x 1 x i1> %smx1, i32 %vs.x2)"
|
|
|
|
" %vs.wat = add i32 %vs, 2"
|
|
|
|
" %r11 = call <vscale x 2 x i64> @llvm.vp.mul.nxv2i64(<vscale x 2 x i64> %si0x2, <vscale x 2 x i64> %si1x2, <vscale x 2 x i1> %smx2, i32 %vs.wat)"
|
2020-03-17 14:52:06 +01:00
|
|
|
" ret void "
|
|
|
|
"}",
|
|
|
|
Err, C);
|
|
|
|
|
|
|
|
auto *F = M->getFunction("test_static_vlen");
|
|
|
|
assert(F);
|
|
|
|
|
2021-06-14 08:51:24 +02:00
|
|
|
const bool Expected[] = {false, true, false, false, false, true,
|
|
|
|
false, false, true, false, true, false};
|
2021-06-21 10:50:27 +02:00
|
|
|
const auto *ExpectedIt = std::begin(Expected);
|
2020-03-17 14:52:06 +01:00
|
|
|
for (auto &I : F->getEntryBlock()) {
|
|
|
|
VPIntrinsic *VPI = dyn_cast<VPIntrinsic>(&I);
|
|
|
|
if (!VPI)
|
|
|
|
continue;
|
|
|
|
|
2021-06-21 10:50:27 +02:00
|
|
|
ASSERT_NE(ExpectedIt, std::end(Expected));
|
|
|
|
ASSERT_EQ(*ExpectedIt, VPI->canIgnoreVectorLengthParam());
|
|
|
|
++ExpectedIt;
|
2020-03-17 14:52:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check that the argument returned by
|
2021-05-28 20:28:45 +02:00
|
|
|
/// VPIntrinsic::get<X>ParamPos(Intrinsic::ID) has the expected type.
|
2020-03-17 14:52:06 +01:00
|
|
|
TEST_F(VPIntrinsicTest, GetParamPos) {
|
2021-06-21 10:50:27 +02:00
|
|
|
std::unique_ptr<Module> M = createVPDeclarationModule();
|
2020-03-17 14:52:06 +01:00
|
|
|
assert(M);
|
|
|
|
|
|
|
|
for (Function &F : *M) {
|
|
|
|
ASSERT_TRUE(F.isIntrinsic());
|
2021-05-28 20:28:45 +02:00
|
|
|
Optional<unsigned> MaskParamPos =
|
|
|
|
VPIntrinsic::getMaskParamPos(F.getIntrinsicID());
|
2020-03-17 14:52:06 +01:00
|
|
|
if (MaskParamPos.hasValue()) {
|
|
|
|
Type *MaskParamType = F.getArg(MaskParamPos.getValue())->getType();
|
|
|
|
ASSERT_TRUE(MaskParamType->isVectorTy());
|
2021-06-14 08:51:24 +02:00
|
|
|
ASSERT_TRUE(
|
|
|
|
cast<VectorType>(MaskParamType)->getElementType()->isIntegerTy(1));
|
2020-03-17 14:52:06 +01:00
|
|
|
}
|
|
|
|
|
2021-05-28 20:28:45 +02:00
|
|
|
Optional<unsigned> VecLenParamPos =
|
|
|
|
VPIntrinsic::getVectorLengthParamPos(F.getIntrinsicID());
|
2020-03-17 14:52:06 +01:00
|
|
|
if (VecLenParamPos.hasValue()) {
|
|
|
|
Type *VecLenParamType = F.getArg(VecLenParamPos.getValue())->getType();
|
|
|
|
ASSERT_TRUE(VecLenParamType->isIntegerTy(32));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check that going from Opcode to VP intrinsic and back results in the same
|
|
|
|
/// Opcode.
|
|
|
|
TEST_F(VPIntrinsicTest, OpcodeRoundTrip) {
|
|
|
|
std::vector<unsigned> Opcodes;
|
|
|
|
Opcodes.reserve(100);
|
|
|
|
|
|
|
|
{
|
|
|
|
#define HANDLE_INST(OCNum, OCName, Class) Opcodes.push_back(OCNum);
|
|
|
|
#include "llvm/IR/Instruction.def"
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned FullTripCounts = 0;
|
|
|
|
for (unsigned OC : Opcodes) {
|
2021-05-28 20:28:45 +02:00
|
|
|
Intrinsic::ID VPID = VPIntrinsic::getForOpcode(OC);
|
2021-05-19 17:08:20 +02:00
|
|
|
// No equivalent VP intrinsic available.
|
2020-03-17 14:52:06 +01:00
|
|
|
if (VPID == Intrinsic::not_intrinsic)
|
|
|
|
continue;
|
|
|
|
|
2021-05-19 17:08:20 +02:00
|
|
|
Optional<unsigned> RoundTripOC =
|
2021-05-28 20:28:45 +02:00
|
|
|
VPIntrinsic::getFunctionalOpcodeForVP(VPID);
|
2021-05-19 17:08:20 +02:00
|
|
|
// No equivalent Opcode available.
|
|
|
|
if (!RoundTripOC)
|
2020-03-17 14:52:06 +01:00
|
|
|
continue;
|
|
|
|
|
2021-05-19 17:08:20 +02:00
|
|
|
ASSERT_EQ(*RoundTripOC, OC);
|
2020-03-17 14:52:06 +01:00
|
|
|
++FullTripCounts;
|
|
|
|
}
|
|
|
|
ASSERT_NE(FullTripCounts, 0u);
|
|
|
|
}
|
|
|
|
|
2021-05-11 09:09:48 +02:00
|
|
|
/// Check that going from VP intrinsic to Opcode and back results in the same
|
|
|
|
/// intrinsic id.
|
|
|
|
TEST_F(VPIntrinsicTest, IntrinsicIDRoundTrip) {
|
2021-06-21 10:50:27 +02:00
|
|
|
std::unique_ptr<Module> M = createVPDeclarationModule();
|
2021-05-11 09:09:48 +02:00
|
|
|
assert(M);
|
|
|
|
|
|
|
|
unsigned FullTripCounts = 0;
|
|
|
|
for (const auto &VPDecl : *M) {
|
|
|
|
auto VPID = VPDecl.getIntrinsicID();
|
2021-05-28 20:28:45 +02:00
|
|
|
Optional<unsigned> OC = VPIntrinsic::getFunctionalOpcodeForVP(VPID);
|
2021-05-11 09:09:48 +02:00
|
|
|
|
|
|
|
// no equivalent Opcode available
|
2021-05-19 17:08:20 +02:00
|
|
|
if (!OC)
|
2021-05-11 09:09:48 +02:00
|
|
|
continue;
|
|
|
|
|
2021-05-28 20:28:45 +02:00
|
|
|
Intrinsic::ID RoundTripVPID = VPIntrinsic::getForOpcode(*OC);
|
2021-05-11 09:09:48 +02:00
|
|
|
|
|
|
|
ASSERT_EQ(RoundTripVPID, VPID);
|
|
|
|
++FullTripCounts;
|
|
|
|
}
|
|
|
|
ASSERT_NE(FullTripCounts, 0u);
|
|
|
|
}
|
|
|
|
|
2021-06-08 13:51:10 +02:00
|
|
|
/// Check that VPIntrinsic::getDeclarationForParams works.
|
|
|
|
TEST_F(VPIntrinsicTest, VPIntrinsicDeclarationForParams) {
|
2021-06-21 10:50:27 +02:00
|
|
|
std::unique_ptr<Module> M = createVPDeclarationModule();
|
2021-06-08 13:51:10 +02:00
|
|
|
assert(M);
|
|
|
|
|
|
|
|
auto OutM = std::make_unique<Module>("", M->getContext());
|
|
|
|
|
|
|
|
for (auto &F : *M) {
|
|
|
|
auto *FuncTy = F.getFunctionType();
|
|
|
|
|
|
|
|
// Declare intrinsic anew with explicit types.
|
|
|
|
std::vector<Value *> Values;
|
|
|
|
for (auto *ParamTy : FuncTy->params())
|
|
|
|
Values.push_back(UndefValue::get(ParamTy));
|
|
|
|
|
|
|
|
ASSERT_NE(F.getIntrinsicID(), Intrinsic::not_intrinsic);
|
|
|
|
auto *NewDecl = VPIntrinsic::getDeclarationForParams(
|
|
|
|
OutM.get(), F.getIntrinsicID(), Values);
|
|
|
|
ASSERT_TRUE(NewDecl);
|
|
|
|
|
|
|
|
// Check that 'old decl' == 'new decl'.
|
|
|
|
ASSERT_EQ(F.getIntrinsicID(), NewDecl->getIntrinsicID());
|
2021-06-21 10:50:27 +02:00
|
|
|
FunctionType::param_iterator ItNewParams =
|
|
|
|
NewDecl->getFunctionType()->param_begin();
|
|
|
|
FunctionType::param_iterator EndItNewParams =
|
|
|
|
NewDecl->getFunctionType()->param_end();
|
2021-06-08 13:51:10 +02:00
|
|
|
for (auto *ParamTy : FuncTy->params()) {
|
|
|
|
ASSERT_NE(ItNewParams, EndItNewParams);
|
|
|
|
ASSERT_EQ(*ItNewParams, ParamTy);
|
|
|
|
++ItNewParams;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-14 08:51:24 +02:00
|
|
|
/// Check that the HANDLE_VP_TO_CONSTRAINEDFP maps to an existing intrinsic with
|
|
|
|
/// the right amount of metadata args.
|
|
|
|
TEST_F(VPIntrinsicTest, HandleToConstrainedFP) {
|
|
|
|
#define HANDLE_VP_TO_CONSTRAINEDFP(HASROUND, HASEXCEPT, CFPID) \
|
|
|
|
{ \
|
|
|
|
SmallVector<Intrinsic::IITDescriptor, 5> T; \
|
|
|
|
Intrinsic::getIntrinsicInfoTableEntries(Intrinsic::CFPID, T); \
|
|
|
|
unsigned NumMetadataArgs = 0; \
|
|
|
|
for (auto TD : T) \
|
|
|
|
NumMetadataArgs += (TD.Kind == Intrinsic::IITDescriptor::Metadata); \
|
|
|
|
ASSERT_EQ(NumMetadataArgs, (unsigned)(HASROUND + HASEXCEPT)); \
|
|
|
|
}
|
|
|
|
#include "llvm/IR/VPIntrinsics.def"
|
|
|
|
}
|
|
|
|
|
2020-03-17 14:52:06 +01:00
|
|
|
} // end anonymous namespace
|