HomeSort by relevance Sort by last modified time
    Searched defs:getLoopFor (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 96 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
99 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
100 return LI.getLoopFor(BB);
103 /// operator[] - same as getLoopFor...
106 return LI.getLoopFor(BB);
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 159 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
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)) {
449 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
587 const MachineLoop *Loop = getLoopFor(MBB);
595 const MachineLoop *Loop = getLoopFor(MBB);
596 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 472 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
475 LoopT *getLoopFor(const BlockT *BB) const {
479 /// operator[] - same as getLoopFor...
482 return getLoopFor(BB);
489 const LoopT *L = getLoopFor(BB);
495 const LoopT *L = getLoopFor(BB);
601 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
604 inline Loop *getLoopFor(const BasicBlock *BB) const {
605 return LI.getLoopFor(BB);
608 /// operator[] - same as getLoopFor..
    [all...]

Completed in 407 milliseconds