[PATCH] D113767: [IR] Change CreateStepVector to work with element types smaller than i8
David Sherwood via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 17 02:48:14 PST 2021
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGca18fcc2c064: [IR] Change CreateStepVector to work with element types smaller than i8 (authored by david-arm).
Changed prior to commit:
https://reviews.llvm.org/D113767?vs=386833&id=387885#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D113767/new/
https://reviews.llvm.org/D113767
Files:
llvm/lib/IR/IRBuilder.cpp
llvm/unittests/IR/IRBuilderTest.cpp
Index: llvm/unittests/IR/IRBuilderTest.cpp
===================================================================
--- llvm/unittests/IR/IRBuilderTest.cpp
+++ llvm/unittests/IR/IRBuilderTest.cpp
@@ -214,6 +214,25 @@
EXPECT_EQ(Call->getIntrinsicID(), Intrinsic::experimental_stepvector);
}
+TEST_F(IRBuilderTest, CreateStepVectorI3) {
+ IRBuilder<> Builder(BB);
+
+ // Scalable vectors
+ Type *DstVecTy = VectorType::get(IntegerType::get(Ctx, 3), 2, true);
+ Type *VecI8Ty = VectorType::get(Builder.getInt8Ty(), 2, true);
+ Value *StepVec = Builder.CreateStepVector(DstVecTy);
+ EXPECT_TRUE(isa<TruncInst>(StepVec));
+ TruncInst *Trunc = cast<TruncInst>(StepVec);
+ EXPECT_EQ(Trunc->getDestTy(), DstVecTy);
+ EXPECT_EQ(Trunc->getSrcTy(), VecI8Ty);
+ EXPECT_TRUE(isa<CallInst>(Trunc->getOperand(0)));
+
+ CallInst *Call = cast<CallInst>(Trunc->getOperand(0));
+ FunctionType *FTy = Call->getFunctionType();
+ EXPECT_EQ(FTy->getReturnType(), VecI8Ty);
+ EXPECT_EQ(Call->getIntrinsicID(), Intrinsic::experimental_stepvector);
+}
+
TEST_F(IRBuilderTest, ConstrainedFP) {
IRBuilder<> Builder(BB);
Value *V;
Index: llvm/lib/IR/IRBuilder.cpp
===================================================================
--- llvm/lib/IR/IRBuilder.cpp
+++ llvm/lib/IR/IRBuilder.cpp
@@ -94,11 +94,22 @@
}
Value *IRBuilderBase::CreateStepVector(Type *DstType, const Twine &Name) {
- if (isa<ScalableVectorType>(DstType))
- return CreateIntrinsic(Intrinsic::experimental_stepvector, {DstType}, {},
- nullptr, Name);
-
Type *STy = DstType->getScalarType();
+ if (isa<ScalableVectorType>(DstType)) {
+ Type *StepVecType = DstType;
+ // TODO: We expect this special case (element type < 8 bits) to be
+ // temporary - once the intrinsic properly supports < 8 bits this code
+ // can be removed.
+ if (STy->getScalarSizeInBits() < 8)
+ StepVecType =
+ VectorType::get(getInt8Ty(), cast<ScalableVectorType>(DstType));
+ Value *Res = CreateIntrinsic(Intrinsic::experimental_stepvector,
+ {StepVecType}, {}, nullptr, Name);
+ if (StepVecType != DstType)
+ Res = CreateTrunc(Res, DstType);
+ return Res;
+ }
+
unsigned NumEls = cast<FixedVectorType>(DstType)->getNumElements();
// Create a vector of consecutive numbers from zero to VF.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D113767.387885.patch
Type: text/x-patch
Size: 2351 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20211117/31c66fef/attachment.bin>
More information about the llvm-commits
mailing list