Home
last modified time | relevance | path

Searched refs:SubLoops (Results 1 – 3 of 3) sorted by relevance

/external/llvm/include/llvm/Analysis/
DLoopInfo.h66 std::vector<LoopT *> SubLoops; variable
78 for (size_t i = 0, e = SubLoops.size(); i != e; ++i) in ~LoopBase()
79 delete SubLoops[i]; in ~LoopBase() local
122 const std::vector<LoopT *> &getSubLoops() const { return SubLoops; } in getSubLoops()
123 std::vector<LoopT *> &getSubLoopsVector() { return SubLoops; } in getSubLoopsVector()
127 iterator begin() const { return SubLoops.begin(); } in begin()
128 iterator end() const { return SubLoops.end(); } in end()
129 reverse_iterator rbegin() const { return SubLoops.rbegin(); } in rbegin()
130 reverse_iterator rend() const { return SubLoops.rend(); } in rend()
131 bool empty() const { return SubLoops.empty(); } in empty()
[all …]
DLoopInfoImpl.h228 std::find(SubLoops.begin(), SubLoops.end(), OldChild); in replaceChildLoopWith()
229 assert(I != SubLoops.end() && "OldChild not in loop!"); in replaceChildLoopWith()
/external/llvm/lib/Transforms/Utils/
DLoopSimplify.cpp622 const std::vector<Loop*> &SubLoops = L->getSubLoops(); in SeparateNestedLoop() local
623 for (size_t I = 0; I != SubLoops.size(); ) in SeparateNestedLoop()
624 if (BlocksInL.count(SubLoops[I]->getHeader())) in SeparateNestedLoop()
627 NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I)); in SeparateNestedLoop()