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 114 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
115 return MTM.Loops->getLoopFor(MBB);
224 const MachineLoop *CurLoop = getLoopFor(MBB);
252 const MachineLoop *CurLoop = getLoopFor(MBB);
262 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
348 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
353 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
491 const MachineLoop *Loop = getLoopFor(MBB);
499 const MachineLoop *Loop = getLoopFor(MBB);
500 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 446 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
449 LoopT *getLoopFor(const BlockT *BB) const {
453 /// operator[] - same as getLoopFor...
456 return getLoopFor(BB);
463 const LoopT *L = getLoopFor(BB);
469 const LoopT *L = getLoopFor(BB);
575 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
578 inline Loop *getLoopFor(const BasicBlock *BB) const {
579 return LI.getLoopFor(BB);
582 /// operator[] - same as getLoopFor..
    [all...]

Completed in 207 milliseconds