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

  /external/llvm/include/llvm/Analysis/
LoopInfo.h 65 LoopT *ParentLoop;
77 LoopBase() : ParentLoop(0) {}
88 for (const LoopT *CurLoop = ParentLoop; CurLoop;
89 CurLoop = CurLoop->ParentLoop)
94 LoopT *getParentLoop() const { return ParentLoop; }
97 void setParentLoop(LoopT *L) { ParentLoop = L; }
252 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
253 NewChild->ParentLoop = static_cast<LoopT *>(this);
263 assert(Child->ParentLoop == this && "Child is not a child of this loop!");
265 Child->ParentLoop = 0
    [all...]
LoopInfoImpl.h 225 assert(OldChild->ParentLoop == this && "This loop is already broken!");
226 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
231 OldChild->ParentLoop = 0;
232 NewChild->ParentLoop = static_cast<LoopT *>(this);
317 if (ParentLoop) {
318 assert(std::find(ParentLoop->begin(), ParentLoop->end(), this) !=
319 ParentLoop->end() &&
LoopPass.h 125 void insertLoop(Loop *L, Loop *ParentLoop);
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 158 if (Loop *ParentLoop = L->getParentLoop())
159 ParentLoop->addBasicBlockToLoop(NewBB, LI->getBase());
265 if (Loop *ParentLoop = L->getParentLoop())
266 SE->forgetLoop(ParentLoop);
340 if (Loop *ParentLoop = L->getParentLoop()) {
342 ParentLoop->addBasicBlockToLoop(NewBB, LI->getBase());
  /external/llvm/lib/Analysis/
LoopPass.cpp 94 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
99 if (ParentLoop)
100 ParentLoop->addChildLoop(L);
LoopInfo.cpp 685 Loop *ParentLoop = Unloop->getParentLoop();
686 for (Loop::iterator I = ParentLoop->begin();; ++I) {
687 assert(I != ParentLoop->end() && "Couldn't find loop");
689 ParentLoop->removeChildLoop(I);
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp     [all...]

Completed in 195 milliseconds