Lines Matching refs:LoopList
278 LoopVector LoopList; in populateWorklist() local
288 LoopList.push_back(CurrentLoop); in populateWorklist()
292 LoopList.push_back(CurrentLoop); in populateWorklist()
293 return LoopList; in populateWorklist()
468 bool isComputableLoopNest(LoopVector LoopList) { in isComputableLoopNest()
469 for (Loop *L : LoopList) { in isComputableLoopNest()
487 unsigned selectLoopForInterchange(const LoopVector &LoopList) { in selectLoopForInterchange()
490 return LoopList.size() - 1; in selectLoopForInterchange()
493 bool processLoopList(LoopVector LoopList) { in processLoopList()
495 unsigned LoopNestDepth = LoopList.size(); in processLoopList()
505 if (!isComputableLoopNest(LoopList)) { in processLoopList()
514 Loop *OuterMostLoop = *(LoopList.begin()); in processLoopList()
532 unsigned SelecLoopId = selectLoopForInterchange(LoopList); in processLoopList()
536 processLoop(LoopList, i, i - 1, LoopNestExit, DependencyMatrix); in processLoopList()
540 std::swap(LoopList[i - 1], LoopList[i]); in processLoopList()
553 bool processLoop(LoopVector LoopList, unsigned InnerLoopId, in processLoop()
558 Loop *InnerLoop = LoopList[InnerLoopId]; in processLoop()
559 Loop *OuterLoop = LoopList[OuterLoopId]; in processLoop()