Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DLoopPass.cpp73 CurrentLoop = nullptr; in LPPassManager()
144 assert((&L == CurrentLoop || CurrentLoop->contains(&L)) && in markLoopAsDeleted()
152 if (&L == CurrentLoop) { in markLoopAsDeleted()
207 CurrentLoop = LQ.back(); in runOnFunction()
214 CurrentLoop->getHeader()->getName()); in runOnFunction()
221 PassManagerPrettyStackEntry X(P, *CurrentLoop->getHeader()); in runOnFunction()
223 LocalChanged = P->runOnLoop(CurrentLoop, *this); in runOnFunction()
243 : CurrentLoop->getName()); in runOnFunction()
248 deleteSimpleAnalysisLoop(CurrentLoop); in runOnFunction()
257 CurrentLoop->verifyLoop(); in runOnFunction()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h435 void setPoint(const SCEV *X, const SCEV *Y, const Loop *CurrentLoop);
439 const SCEV *C, const Loop *CurrentLoop);
442 void setDistance(const SCEV *D, const Loop *CurrentLoop);
650 const Loop *CurrentLoop,
668 const Loop *CurrentLoop,
687 const Loop *CurrentLoop,
705 const Loop *CurrentLoop,
723 const Loop *CurrentLoop,
H A DLoopPass.h157 Loop *CurrentLoop; variable
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DStructurizeCFG.cpp342 Loop *CurrentLoop = nullptr; in orderNodes() local
355 while (unsigned &BlockCount = LoopBlocks[CurrentLoop]) { in orderNodes()
357 if (getAdjustedLoop(cast<RegionNode>(*LoopI)) == CurrentLoop) { in orderNodes()
364 CurrentLoop = getAdjustedLoop(RN); in orderNodes()
365 if (CurrentLoop) in orderNodes()
366 LoopBlocks[CurrentLoop]--; in orderNodes()
H A DLoopInterchange.cpp279 Loop *CurrentLoop = &L; in populateWorklist() local
280 const std::vector<Loop *> *Vec = &CurrentLoop->getSubLoops(); in populateWorklist()
288 LoopList.push_back(CurrentLoop); in populateWorklist()
289 CurrentLoop = Vec->front(); in populateWorklist()
290 Vec = &CurrentLoop->getSubLoops(); in populateWorklist()
292 LoopList.push_back(CurrentLoop); in populateWorklist()