Searched refs:ParentLoop (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Analysis/
H A DLoopInfo.h68 LoopT *ParentLoop; member in class:llvm::LoopBase
80 LoopBase() : ParentLoop(0) {}
91 for (const LoopT *CurLoop = ParentLoop; CurLoop;
92 CurLoop = CurLoop->ParentLoop)
97 LoopT *getParentLoop() const { return ParentLoop; }
100 void setParentLoop(LoopT *L) { ParentLoop = L; }
255 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
256 NewChild->ParentLoop = static_cast<LoopT *>(this);
266 assert(Child->ParentLoop == this && "Child is not a child of this loop!");
268 Child->ParentLoop
528 isNotAlreadyContainedIn(const LoopT *SubLoop, const LoopT *ParentLoop) argument
[all...]
H A DLoopInfoImpl.h224 assert(OldChild->ParentLoop == this && "This loop is already broken!");
225 assert(NewChild->ParentLoop == 0 && "NewChild already has a parent!");
230 OldChild->ParentLoop = 0;
231 NewChild->ParentLoop = static_cast<LoopT *>(this);
316 if (ParentLoop) {
317 assert(std::find(ParentLoop->begin(), ParentLoop->end(), this) !=
318 ParentLoop->end() &&
H A DLoopPass.h123 void insertLoop(Loop *L, Loop *ParentLoop);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Utils/
H A DLoopUnrollRuntime.cpp158 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());
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DLoopPass.cpp94 void LPPassManager::insertLoop(Loop *L, Loop *ParentLoop) { argument
99 if (ParentLoop)
100 ParentLoop->addChildLoop(L);
H A DLoopInfo.cpp572 Loop *ParentLoop = Unloop->getParentLoop(); local
573 for (Loop::iterator I = ParentLoop->begin();; ++I) {
574 assert(I != ParentLoop->end() && "Couldn't find loop");
576 ParentLoop->removeChildLoop(I);
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp826 Loop *ParentLoop = L->getParentLoop(); local
827 if (ParentLoop) {
830 ParentLoop->addBasicBlockToLoop(NewBlocks[0], LI->getBase());

Completed in 127 milliseconds