Searched refs:LoopList (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
D | LoopInterchange.cpp | 282 LoopVector LoopList; in populateWorklist() local 290 LoopList.clear(); in populateWorklist() 293 LoopList.push_back(CurrentLoop); in populateWorklist() 297 LoopList.push_back(CurrentLoop); in populateWorklist() 298 V.push_back(std::move(LoopList)); in populateWorklist() 467 LoopVector LoopList = Worklist.pop_back_val(); in runOnFunction() local 468 Changed = processLoopList(LoopList, F); in runOnFunction() 473 bool isComputableLoopNest(LoopVector LoopList) { in isComputableLoopNest() 474 for (Loop *L : LoopList) { in isComputableLoopNest() 492 unsigned selectLoopForInterchange(const LoopVector &LoopList) { in selectLoopForInterchange() [all …]
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | LoopInterchange.cpp | 280 LoopVector LoopList; in populateWorklist() local 290 LoopList.push_back(CurrentLoop); in populateWorklist() 294 LoopList.push_back(CurrentLoop); in populateWorklist() 295 return LoopList; in populateWorklist() 452 bool isComputableLoopNest(LoopVector LoopList) { in isComputableLoopNest() 453 for (Loop *L : LoopList) { in isComputableLoopNest() 471 unsigned selectLoopForInterchange(const LoopVector &LoopList) { in selectLoopForInterchange() 474 return LoopList.size() - 1; in selectLoopForInterchange() 477 bool processLoopList(LoopVector LoopList) { in processLoopList() 479 unsigned LoopNestDepth = LoopList.size(); in processLoopList() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | LoopInterchange.cpp | 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() 466 bool isComputableLoopNest(LoopVector LoopList) { in isComputableLoopNest() 467 for (Loop *L : LoopList) { in isComputableLoopNest() 485 unsigned selectLoopForInterchange(const LoopVector &LoopList) { in selectLoopForInterchange() 488 return LoopList.size() - 1; in selectLoopForInterchange() 491 bool processLoopList(LoopVector LoopList) { in processLoopList() 493 unsigned LoopNestDepth = LoopList.size(); in processLoopList() [all …]
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 373 SmallVector<Loop *, 16> LoopList(LI->begin(), LI->end()); in eliminateMostlyEmptyBlocks() local 374 while (!LoopList.empty()) { in eliminateMostlyEmptyBlocks() 375 Loop *L = LoopList.pop_back_val(); in eliminateMostlyEmptyBlocks() 376 LoopList.insert(LoopList.end(), L->begin(), L->end()); in eliminateMostlyEmptyBlocks()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 642 SmallVector<Loop *, 16> LoopList(LI->begin(), LI->end()); in eliminateMostlyEmptyBlocks() local 643 while (!LoopList.empty()) { in eliminateMostlyEmptyBlocks() 644 Loop *L = LoopList.pop_back_val(); in eliminateMostlyEmptyBlocks() 645 LoopList.insert(LoopList.end(), L->begin(), L->end()); in eliminateMostlyEmptyBlocks()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 729 SmallVector<Loop *, 16> LoopList(LI->begin(), LI->end()); in eliminateMostlyEmptyBlocks() local 730 while (!LoopList.empty()) { in eliminateMostlyEmptyBlocks() 731 Loop *L = LoopList.pop_back_val(); in eliminateMostlyEmptyBlocks() 732 LoopList.insert(LoopList.end(), L->begin(), L->end()); in eliminateMostlyEmptyBlocks()
|