Home
last modified time | relevance | path

Searched refs:VPBlendRecipe (Results 1 – 9 of 9) sorted by relevance

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DVPRecipeBuilder.h111 VPBlendRecipe *tryToBlend(Instruction *I, VPlanPtr &Plan);
DVPlan.h840 class VPBlendRecipe : public VPRecipeBase {
848 VPBlendRecipe(PHINode *Phi, ArrayRef<VPValue *> Masks) in VPBlendRecipe() function
DVPlan.cpp704 void VPBlendRecipe::print(raw_ostream &O, const Twine &Indent) const { in print()
DLoopVectorize.cpp6840 VPBlendRecipe *VPRecipeBuilder::tryToBlend(Instruction *I, VPlanPtr &Plan) { in tryToBlend()
6861 return new VPBlendRecipe(Phi, Masks); in tryToBlend()
7374 void VPBlendRecipe::execute(VPTransformState &State) { in execute()
/external/llvm-project/llvm/lib/Transforms/Vectorize/
DVPRecipeBuilder.h79 VPBlendRecipe *tryToBlend(PHINode *Phi, VPlanPtr &Plan);
DVPlan.cpp104 if (auto *U = dyn_cast<VPBlendRecipe>(this)) in toVPUser()
933 void VPBlendRecipe::print(raw_ostream &O, const Twine &Indent, in print()
DVPlan.h998 class VPBlendRecipe : public VPRecipeBase, public VPUser {
1005 VPBlendRecipe(PHINode *Phi, ArrayRef<VPValue *> Operands) in VPBlendRecipe() function
DLoopVectorize.cpp8035 VPBlendRecipe *VPRecipeBuilder::tryToBlend(PHINode *Phi, VPlanPtr &Plan) { in tryToBlend()
8053 return new VPBlendRecipe(Phi, Operands); in tryToBlend()
8654 void VPBlendRecipe::execute(VPTransformState &State) { in execute()
/external/llvm-project/llvm/unittests/Transforms/Vectorize/
DVPlanTest.cpp461 VPBlendRecipe Recipe(Phi, Args); in TEST()