HomeSort by: relevance | last modified time | path
    Searched refs:Subloop (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopInfoImpl.h 355 // Each block in each subloop should be contained within this loop.
359 "Loop does not contain all the blocks of a subloop!");
365 "Loop is not a subloop of its parent!");
424 /// Discover a subloop with the specified backedges such that: All blocks within
425 /// this loop are mapped to this loop or a subloop. And all subloops within this
426 /// loop have their parent loop set to this loop or a subloop.
442 LoopT *Subloop = LI->getLoopFor(PredBB);
443 if (!Subloop) {
458 while (LoopT *Parent = Subloop->getParentLoop())
459 Subloop = Parent
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
LoopInfo.cpp 691 // subloop's new parent will be the nearest loop reachable from either its own
732 // Or the current block is part of a subloop, in which case its parent
787 Loop *Subloop = *std::prev(Unloop.end());
790 assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop");
791 if (Loop *Parent = SubloopParents[Subloop])
792 Parent->addChildLoop(Subloop);
794 LI->addTopLevelLoop(Subloop);
799 /// is a subloop header, consider its parent to be the nearest parent of the
800 /// subloop's exits
    [all...]

Completed in 17 milliseconds