Home
last modified time | relevance | path

Searched refs:NewVTy (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULateCodeGenPrepare.cpp248 FixedVectorType *NewVTy = cast<FixedVectorType>(ConvertType); in convertFromOptType() local
251 TypeSize NewSize = DL.getTypeSizeInBits(NewVTy); in convertFromOptType()
256 return Builder.CreateBitCast(V, NewVTy, V->getName() + ".bc"); in convertFromOptType()
265 return cast<Instruction>(Builder.CreateBitCast(Trunc, NewVTy)); in convertFromOptType()
271 Type::getIntNTy(Mod.getContext(), NewVTy->getScalarSizeInBits()), in convertFromOptType()
272 (OriginalSize / NewVTy->getScalarSizeInBits()), false); in convertFromOptType()
276 unsigned NarrowElementCount = NewVTy->getElementCount().getFixedValue(); in convertFromOptType()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DComplexDeinterleavingPass.cpp1089 auto *NewVTy = VectorType::getDoubleElementsVectorType(VTy); in identifyNode() local
1092 ComplexDeinterleavingOperation::CMulPartial, NewVTy); in identifyNode()
1094 ComplexDeinterleavingOperation::CAdd, NewVTy); in identifyNode()
2210 auto *NewVTy = VectorType::getDoubleElementsVectorType(VTy); in replaceNode() local
2211 auto *NewPHI = PHINode::Create(NewVTy, 0, "", BackEdge->getFirstNonPHIIt()); in replaceNode()
2250 auto *NewVTy = VectorType::getDoubleElementsVectorType(VTy); in processReductionSingle() local
2259 NewInit = Constant::getNullValue(NewVTy); in processReductionSingle()
2263 NewInit = Builder.CreateIntrinsic(Intrinsic::vector_interleave2, NewVTy, in processReductionSingle()
2285 auto *NewVTy = VectorType::getDoubleElementsVectorType(VTy); in processReductionOperation() local
2292 auto *NewInit = Builder.CreateIntrinsic(Intrinsic::vector_interleave2, NewVTy, in processReductionOperation()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp1961 auto NewVTy = NewTy->isPtrOrPtrVectorTy() ? DL.getIntPtrType(NewTy) : NewTy; in canConvertValue() local
1964 if (!VectorType::getWithSizeAndScalar(cast<VectorType>(NewVTy), OldVTy)) in canConvertValue()
1969 if (!VectorType::getWithSizeAndScalar(cast<VectorType>(OldVTy), NewVTy)) in canConvertValue()
2328 VectorType *NewVTy = VectorType::get(Ty, VectorSize / TypeSize, false); in createAndCheckVectorTypesForPromotion() local
2329 CheckCandidateType(NewVTy); in createAndCheckVectorTypesForPromotion()
H A DLowerMatrixIntrinsics.cpp2358 auto *NewVTy = VectorType::get(OrigVTy->getElementType(), in VisitCastInstruction() local
2362 Result.addVector(Builder.CreateCast(Inst->getOpcode(), Vector, NewVTy)); in VisitCastInstruction()