Searched refs:SubLoops (Results 1 – 3 of 3) sorted by relevance
66 std::vector<LoopT *> SubLoops; variable78 for (size_t i = 0, e = SubLoops.size(); i != e; ++i) in ~LoopBase()79 delete SubLoops[i]; in ~LoopBase() local122 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 …]
228 std::find(SubLoops.begin(), SubLoops.end(), OldChild); in replaceChildLoopWith()229 assert(I != SubLoops.end() && "OldChild not in loop!"); in replaceChildLoopWith()
622 const std::vector<Loop*> &SubLoops = L->getSubLoops(); in SeparateNestedLoop() local623 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()