Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp287 static void populateWorklist(Loop &L, LoopVector &LoopList) { in populateWorklist() argument
291 assert(LoopList.empty() && "LoopList should initially be empty!"); in populateWorklist()
299 LoopList = {}; in populateWorklist()
303 LoopList.push_back(CurrentLoop); in populateWorklist()
307 LoopList.push_back(CurrentLoop); in populateWorklist()
310 static bool hasSupportedLoopDepth(ArrayRef<Loop *> LoopList, in hasSupportedLoopDepth() argument
312 unsigned LoopNestDepth = LoopList.size(); in hasSupportedLoopDepth()
317 Loop *OuterLoop = LoopList.front(); in hasSupportedLoopDepth()
332 ArrayRef<Loop *> LoopList) { in isComputableLoopNest() argument
333 for (Loop *L : LoopList) { in isComputableLoopNest()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp920 SmallVector<Loop *, 16> LoopList(LI->begin(), LI->end()); in eliminateMostlyEmptyBlocks() local
921 while (!LoopList.empty()) { in eliminateMostlyEmptyBlocks()
922 Loop *L = LoopList.pop_back_val(); in eliminateMostlyEmptyBlocks()
923 llvm::append_range(LoopList, *L); in eliminateMostlyEmptyBlocks()