Searched refs:VPWidenCastRecipe (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanTransforms.cpp | 86 NewRecipe = new VPWidenCastRecipe( in VPInstructionsToVPRecipes() 1021 new VPWidenCastRecipe(Instruction::CastOps(ExtOpcode), A, TruncTy); in simplifyRecipe() 1029 auto *VPC = new VPWidenCastRecipe(Instruction::Trunc, A, TruncTy); in simplifyRecipe() 1092 DenseMap<VPValue *, VPWidenCastRecipe *> ProcessedTruncs; in truncateToMinimalBitwidths() 1098 if (!isa<VPWidenRecipe, VPWidenCastRecipe, VPReplicateRecipe, in truncateToMinimalBitwidths() 1115 if (isa<VPReplicateRecipe, VPWidenCastRecipe>(&R)) { in truncateToMinimalBitwidths() 1160 new VPWidenCastRecipe(Instruction::ZExt, ResultVPV, OldResTy); in truncateToMinimalBitwidths() 1185 VPWidenCastRecipe *NewOp = in truncateToMinimalBitwidths() 1187 ? new VPWidenCastRecipe(Instruction::Trunc, Op, NewResTy) in truncateToMinimalBitwidths()
|
H A D | VPlanAnalysis.cpp | 271 .Case<VPWidenCastRecipe>( in inferScalarType() 272 [](const VPWidenCastRecipe *R) { return R->getResultType(); }) in inferScalarType()
|
H A D | VPlanPatternMatch.h | 158 VPWidenCastRecipe, VPInstruction>; 198 VPReplicateRecipe, VPWidenCastRecipe, VPInstruction>;
|
H A D | VPlan.h | 1439 class VPWidenCastRecipe : public VPRecipeWithIRFlags { 1447 VPWidenCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy, in VPWidenCastRecipe() function 1455 VPWidenCastRecipe(Instruction::CastOps Opcode, VPValue *Op, Type *ResultTy) in VPWidenCastRecipe() function 1459 ~VPWidenCastRecipe() override = default; 1461 VPWidenCastRecipe *clone() override { in clone() 1463 return new VPWidenCastRecipe(Opcode, getOperand(0), ResultTy, in clone() 1466 return new VPWidenCastRecipe(Opcode, getOperand(0), ResultTy); in clone()
|
H A D | VPlanRecipes.cpp | 1154 void VPWidenCastRecipe::execute(VPTransformState &State) { in execute() 1175 void VPWidenCastRecipe::print(raw_ostream &O, const Twine &Indent, in print()
|
H A D | LoopVectorize.cpp | 8315 return new VPWidenCastRecipe(CI->getOpcode(), Operands[0], CI->getType(), in tryToCreateWidenRecipe() 9017 new VPWidenCastRecipe(Instruction::Trunc, NewExitingVPV, RdxTy); in adjustRecipesForReductions() 9020 ? new VPWidenCastRecipe(Instruction::SExt, Trunc, PhiTy) in adjustRecipesForReductions() 9021 : new VPWidenCastRecipe(Instruction::ZExt, Trunc, PhiTy); in adjustRecipesForReductions()
|