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

  /external/llvm/lib/Analysis/
LoopInfo.cpp 634 Loop *ParentLoop = Unloop->getParentLoop();
635 for (Loop::iterator I = ParentLoop->begin();; ++I) {
636 assert(I != ParentLoop->end() && "Couldn't find loop");
638 ParentLoop->removeChildLoop(I);
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 64 LoopT *ParentLoop;
76 LoopBase() : ParentLoop(0) {}
87 for (const LoopT *CurLoop = ParentLoop; CurLoop;
88 CurLoop = CurLoop->ParentLoop)
93 LoopT *getParentLoop() const { return ParentLoop; }
96 void setParentLoop(LoopT *L) { ParentLoop = L; }
251 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
252 NewChild->ParentLoop = static_cast<LoopT *>(this);
262 assert(Child->ParentLoop == this && "Child is not a child of this loop!");
264 Child->ParentLoop = 0
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 306 milliseconds