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 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...]
LoopInfoImpl.h 212 assert(OldChild->ParentLoop == this && "This loop is already broken!");
213 assert(!NewChild->ParentLoop && "NewChild already has a parent!");
218 OldChild->ParentLoop = nullptr;
219 NewChild->ParentLoop = static_cast<LoopT *>(this);
298 if (ParentLoop) {
299 assert(std::find(ParentLoop->begin(), ParentLoop->end(), this) !=
300 ParentLoop->end() &&
LoopPass.h 130 void insertLoop(Loop *L, Loop *ParentLoop);
  /external/llvm/lib/Transforms/Utils/
LoopUnrollRuntime.cpp 159 if (Loop *ParentLoop = L->getParentLoop())
160 ParentLoop->addBasicBlockToLoop(NewBB, LI->getBase());
266 if (Loop *ParentLoop = L->getParentLoop())
267 SE->forgetLoop(ParentLoop);
341 if (Loop *ParentLoop = L->getParentLoop()) {
343 ParentLoop->addBasicBlockToLoop(NewBB, LI->getBase());
  /external/llvm/lib/Analysis/
LoopPass.cpp 100 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) {
105 if (ParentLoop)
106 ParentLoop->addChildLoop(L);
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/lib/Transforms/Scalar/
LoopUnswitch.cpp 833 Loop *ParentLoop = L->getParentLoop();
834 if (ParentLoop) {
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp     [all...]

Completed in 957 milliseconds