HomeSort by relevance Sort by last modified time
    Searched defs:Subloop (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Analysis/
LoopInfoImpl.h 290 // Each block in each subloop should be contained within this loop.
294 "Loop does not contain all the blocks of a subloop!");
301 "Loop is not a subloop of its parent!");
342 /// Discover a subloop with the specified backedges such that: All blocks within
343 /// this loop are mapped to this loop or a subloop. And all subloops within this
344 /// loop have their parent loop set to this loop or a subloop.
360 LoopT *Subloop = LI->getLoopFor(PredBB);
361 if (!Subloop) {
377 while (LoopT *Parent = Subloop->getParentLoop())
378 Subloop = Parent
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
LoopInfo.cpp 404 // subloop's new parent will be the nearest loop reachable from either its own
447 // Or the current block is part of a subloop, in which case its parent
484 // If this block is an immediate subloop, remove all blocks (including
486 // Otherwise, if this block is in a nested subloop, skip it.
506 Loop *Subloop = *llvm::prior(Unloop->end());
509 assert(SubloopParents.count(Subloop) && "DFS failed to visit subloop");
510 if (SubloopParents[Subloop])
511 SubloopParents[Subloop]->addChildLoop(Subloop);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
LoopInfoImpl.h 364 // Each block in each subloop should be contained within this loop.
368 "Loop does not contain all the blocks of a subloop!");
374 "Loop is not a subloop of its parent!");
427 /// Discover a subloop with the specified backedges such that: All blocks within
428 /// this loop are mapped to this loop or a subloop. And all subloops within this
429 /// loop have their parent loop set to this loop or a subloop.
445 LoopT *Subloop = LI->getLoopFor(PredBB);
446 if (!Subloop) {
461 while (LoopT *Parent = Subloop->getParentLoop())
462 Subloop = Parent
    [all...]

Completed in 70 milliseconds