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

  /external/llvm/lib/Analysis/
LoopInfo.cpp 671 Loop *ParentLoop = Unloop->getParentLoop();
672 for (Loop::iterator I = ParentLoop->begin();; ++I) {
673 assert(I != ParentLoop->end() && "Couldn't find loop");
675 ParentLoop->removeChildLoop(I);
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 68 LoopT *ParentLoop;
82 LoopBase() : ParentLoop(nullptr) {}
93 for (const LoopT *CurLoop = ParentLoop; CurLoop;
94 CurLoop = CurLoop->ParentLoop)
99 LoopT *getParentLoop() const { return ParentLoop; }
102 void setParentLoop(LoopT *L) { ParentLoop = L; }
268 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
269 NewChild->ParentLoop = static_cast<LoopT *>(this);
279 assert(Child->ParentLoop == this && "Child is not a child of this loop!");
281 Child->ParentLoop = nullptr
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopUnswitch.cpp 833 Loop *ParentLoop = L->getParentLoop();
834 if (ParentLoop) {
    [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]

Completed in 213 milliseconds