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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp278 LoopVector LoopList; local
288 LoopList.push_back(CurrentLoop);
292 LoopList.push_back(CurrentLoop);
293 return LoopList;
465 bool isComputableLoopNest(LoopVector LoopList) { argument
466 for (Loop *L : LoopList) {
484 unsigned selectLoopForInterchange(const LoopVector &LoopList) { argument
487 return LoopList.size() - 1;
490 bool processLoopList(LoopVector LoopList) { argument
492 unsigned LoopNestDepth = LoopList
550 processLoop(LoopVector LoopList, unsigned InnerLoopId, unsigned OuterLoopId, BasicBlock *LoopNestExit, std::vector<std::vector<char>> &DependencyMatrix) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp686 SmallVector<Loop *, 16> LoopList(LI->begin(), LI->end());
687 while (!LoopList.empty()) {
688 Loop *L = LoopList.pop_back_val();
689 LoopList.insert(LoopList.end(), L->begin(), L->end());

Completed in 72 milliseconds