Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
HDVPlanTransforms.cpp187 !isa<VPBranchOnMaskRecipe>(EntryBB->begin())) in getPredicatedMask()
190 return cast<VPBranchOnMaskRecipe>(&*EntryBB->begin())->getOperand(0); in getPredicatedMask()
310 auto *BOMRecipe = new VPBranchOnMaskRecipe(BlockInMask); in createReplicateRegion()
HDVPlan.h2361 class VPBranchOnMaskRecipe : public VPRecipeBase {
2363 VPBranchOnMaskRecipe(VPValue *BlockInMask) in VPBranchOnMaskRecipe() function
2369 VPBranchOnMaskRecipe *clone() override { in clone()
2370 return new VPBranchOnMaskRecipe(getOperand(0)); in clone()
HDVPlan.cpp594 bool IsCondBranch = isa<VPBranchOnMaskRecipe>(R) || in hasConditionalTerminator()
HDVPlanRecipes.cpp1930 void VPBranchOnMaskRecipe::execute(VPTransformState &State) { in execute()