Searched refs:CurrentLoop (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopPass.cpp74 CurrentLoop = nullptr;
113 assert((&L == CurrentLoop || CurrentLoop->contains(&L)) &&
118 assert(LQ.back() == CurrentLoop && "Loop queue back isn't the current loop!");
121 if (&L == CurrentLoop) {
176 CurrentLoop = LQ.back();
185 CurrentLoop->getHeader()->getName());
192 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader());
194 LocalChanged = P->runOnLoop(CurrentLoop, *this);
214 : CurrentLoop
[all...]
H A DLoopNestAnalysis.cpp186 const Loop *CurrentLoop = &Root; local
187 const auto *SubLoops = &CurrentLoop->getSubLoops();
192 if (!arePerfectlyNested(*CurrentLoop, *InnerLoop, SE)) {
194 dbgs() << "Not a perfect nest: loop '" << CurrentLoop->getName()
201 CurrentLoop = InnerLoop;
202 SubLoops = &CurrentLoop->getSubLoops();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp184 Loop *CurrentLoop = nullptr; member in class:__anon4677::LoopUnswitch
232 void releaseMemory() override { BranchesInfo.forgetLoop(CurrentLoop); }
235 LoopHeader = CurrentLoop->getHeader();
236 LoopPreheader = CurrentLoop->getLoopPreheader();
531 CurrentLoop = L;
532 Function *F = CurrentLoop->getHeader()->getParent();
543 assert(CurrentLoop->isLCSSAForm(*DT));
561 while (CurrentLoop->contains(DomBB)) {
638 if (!CurrentLoop->isSafeToClone())
642 if (!CurrentLoop
[all...]
H A DLoopInterchange.cpp279 Loop *CurrentLoop = &L; local
280 const std::vector<Loop *> *Vec = &CurrentLoop->getSubLoops();
288 LoopList.push_back(CurrentLoop);
289 CurrentLoop = Vec->front();
290 Vec = &CurrentLoop->getSubLoops();
292 LoopList.push_back(CurrentLoop);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h439 void setPoint(const SCEV *X, const SCEV *Y, const Loop *CurrentLoop);
443 const SCEV *C, const Loop *CurrentLoop);
446 void setDistance(const SCEV *D, const Loop *CurrentLoop);
654 const Loop *CurrentLoop,
672 const Loop *CurrentLoop,
691 const Loop *CurrentLoop,
709 const Loop *CurrentLoop,
727 const Loop *CurrentLoop,
H A DLoopPass.h116 Loop *CurrentLoop;

Completed in 169 milliseconds