Searched refs:SubLoops (Results 1 – 5 of 5) sorted by relevance
71 std::vector<LoopT *> SubLoops; variable84 for (size_t i = 0, e = SubLoops.size(); i != e; ++i) in ~LoopBase()85 delete SubLoops[i]; in ~LoopBase() local125 const std::vector<LoopT *> &getSubLoops() const { return SubLoops; } in getSubLoops()127 iterator begin() const { return SubLoops.begin(); } in begin()128 iterator end() const { return SubLoops.end(); } in end()129 bool empty() const { return SubLoops.empty(); } in empty()357 std::find(SubLoops.begin(), SubLoops.end(), OldChild); in replaceChildLoopWith()358 assert(I != SubLoops.end() && "OldChild not in loop!"); in replaceChildLoopWith()370 SubLoops.push_back(NewChild); in addChildLoop()[all …]
71 std::vector<LoopT *> SubLoops; variable88 for (size_t i = 0, e = SubLoops.size(); i != e; ++i) in ~LoopBase()89 delete SubLoops[i]; in ~LoopBase() local127 const std::vector<LoopT *> &getSubLoops() const { return SubLoops; } in getSubLoops()128 std::vector<LoopT *> &getSubLoopsVector() { return SubLoops; } in getSubLoopsVector()132 iterator begin() const { return SubLoops.begin(); } in begin()133 iterator end() const { return SubLoops.end(); } in end()134 reverse_iterator rbegin() const { return SubLoops.rbegin(); } in rbegin()135 reverse_iterator rend() const { return SubLoops.rend(); } in rend()136 bool empty() const { return SubLoops.empty(); } in empty()[all …]
215 std::find(SubLoops.begin(), SubLoops.end(), OldChild); in replaceChildLoopWith()216 assert(I != SubLoops.end() && "OldChild not in loop!"); in replaceChildLoopWith()
601 const std::vector<Loop*> &SubLoops = L->getSubLoops(); in SeparateNestedLoop() local602 for (size_t I = 0; I != SubLoops.size(); ) in SeparateNestedLoop()603 if (BlocksInL.count(SubLoops[I]->getHeader())) in SeparateNestedLoop()606 NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I)); in SeparateNestedLoop()
323 const std::vector<Loop*> &SubLoops = L->getSubLoops(); in separateNestedLoop() local324 for (size_t I = 0; I != SubLoops.size(); ) in separateNestedLoop()325 if (BlocksInL.count(SubLoops[I]->getHeader())) in separateNestedLoop()328 NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I)); in separateNestedLoop()