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

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h97 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
100 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
101 return LI.getLoopFor(BB);
104 /// operator[] - same as getLoopFor...
107 return LI.getLoopFor(BB);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp159 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const { function in class:MachineTraceMetrics::Ensemble
160 return MTM.Loops->getLoopFor(MBB);
320 const MachineLoop *CurLoop = getLoopFor(MBB);
348 const MachineLoop *CurLoop = getLoopFor(MBB);
358 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) { function
449 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
586 const MachineLoop *Loop = getLoopFor(MBB);
594 const MachineLoop *Loop = getLoopFor(MBB);
595 const MachineLoop *SuccLoop = getLoopFor(TB
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h526 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
529 LoopT *getLoopFor(const BlockT *BB) const { function in class:llvm::LoopInfoBase
533 /// operator[] - same as getLoopFor...
536 return getLoopFor(BB);
543 const LoopT *L = getLoopFor(BB);
549 const LoopT *L = getLoopFor(BB);
655 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
658 inline Loop *getLoopFor(const BasicBlock *BB) const { function in class:llvm::LoopInfo
659 return LI.getLoopFor(BB);
662 /// operator[] - same as getLoopFor
[all...]

Completed in 912 milliseconds