HomeSort by relevance Sort by last modified time
    Searched refs:ParentLoop (Results 1 - 5 of 5) sorted by null

  /external/llvm/include/llvm/Analysis/
LoopInfo.h 69 LoopT *ParentLoop;
82 LoopBase() : ParentLoop(0) {}
93 for (const LoopT *CurLoop = ParentLoop; CurLoop;
94 CurLoop = CurLoop->ParentLoop)
99 LoopT *getParentLoop() const { return ParentLoop; }
354 assert(OldChild->ParentLoop == this && "This loop is already broken!");
355 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
360 OldChild->ParentLoop = 0;
361 NewChild->ParentLoop = static_cast<LoopT *>(this);
368 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!")
    [all...]
LoopPass.h 123 void insertLoop(Loop *L, Loop *ParentLoop);
  /external/llvm/lib/Analysis/
LoopPass.cpp 110 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
115 if (ParentLoop)
116 ParentLoop->addChildLoop(L);
LoopInfo.cpp 649 Loop *ParentLoop = Unloop->getParentLoop();
650 for (Loop::iterator I = ParentLoop->begin();; ++I) {
651 assert(I != ParentLoop->end() && "Couldn't find loop");
653 ParentLoop->removeChildLoop(I);
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 636 Loop *ParentLoop = L->getParentLoop();
637 if (ParentLoop) {
640 ParentLoop->addBasicBlockToLoop(NewBlocks[0], LI->getBase());
    [all...]

Completed in 1793 milliseconds