Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFuse.cpp168 BranchInst *GuardBranch; member
190 GuardBranch(L->getLoopGuardBranch()), PP(PP), AbleToPeel(canPeel(L)), in FusionCandidate()
256 if (GuardBranch) in getEntryBlock()
257 return GuardBranch->getParent(); in getEntryBlock()
281 assert(GuardBranch && "Only valid on guarded loops."); in getNonLoopBlock()
282 assert(GuardBranch->isConditional() && in getNonLoopBlock()
285 return GuardBranch->getSuccessor(1); in getNonLoopBlock()
286 return (GuardBranch->getSuccessor(0) == Preheader) in getNonLoopBlock()
287 ? GuardBranch->getSuccessor(1) in getNonLoopBlock()
288 : GuardBranch->getSuccessor(0); in getNonLoopBlock()
[all …]