reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Analysis/LoopInfo.h
  100     for (const LoopT *CurLoop = ParentLoop; CurLoop;
  101          CurLoop = CurLoop->ParentLoop)
  106   LoopT *getParentLoop() const { return ParentLoop; }
  111     ParentLoop = L;
  377     assert(!NewChild->ParentLoop && "NewChild already has a parent!");
  378     NewChild->ParentLoop = static_cast<LoopT *>(this);
  388     assert(Child->ParentLoop == this && "Child is not a child of this loop!");
  390     Child->ParentLoop = nullptr;
  494     ParentLoop = nullptr;
  974     assert(!NewLoop->ParentLoop && !OldLoop->ParentLoop &&
  974     assert(!NewLoop->ParentLoop && !OldLoop->ParentLoop &&
include/llvm/Analysis/LoopInfoImpl.h
  268   assert(OldChild->ParentLoop == this && "This loop is already broken!");
  269   assert(!NewChild->ParentLoop && "NewChild already has a parent!");
  273   OldChild->ParentLoop = nullptr;
  274   NewChild->ParentLoop = static_cast<LoopT *>(this);
  356   if (ParentLoop) {
  357     assert(is_contained(*ParentLoop, this) &&