Searched defs:getLoopFor (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h92 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
95 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
96 return LI.getLoopFor(BB);
99 /// operator[] - same as getLoopFor...
102 return LI.getLoopFor(BB);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp157 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const { function in class:MachineTraceMetrics::Ensemble
158 return MTM.Loops->getLoopFor(MBB);
316 const MachineLoop *CurLoop = getLoopFor(MBB);
342 const MachineLoop *CurLoop = getLoopFor(MBB);
350 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
436 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) { function
441 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
572 const MachineLoop *Loop = getLoopFor(MBB);
580 const MachineLoop *Loop = getLoopFor(MBB);
581 const MachineLoop *SuccLoop = getLoopFor(TB
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h555 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
558 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); } function in class:llvm::LoopInfoBase
560 /// operator[] - same as getLoopFor...
563 return getLoopFor(BB);
570 const LoopT *L = getLoopFor(BB);
576 const LoopT *L = getLoopFor(BB);
693 Loop *ToLoop = getLoopFor(I->getParent());
698 return ToLoop->contains(getLoopFor(From->getParent()));
719 auto *OldLoop = getLoopFor(OldBB);
720 auto *NewLoop = getLoopFor(NewB
[all...]

Completed in 119 milliseconds