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 117 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
118 return MTM.Loops->getLoopFor(MBB);
227 const MachineLoop *CurLoop = getLoopFor(MBB);
255 const MachineLoop *CurLoop = getLoopFor(MBB);
265 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
351 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
356 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
494 const MachineLoop *Loop = getLoopFor(MBB);
502 const MachineLoop *Loop = getLoopFor(MBB);
503 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 455 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
458 LoopT *getLoopFor(const BlockT *BB) const {
462 /// operator[] - same as getLoopFor...
465 return getLoopFor(BB);
472 const LoopT *L = getLoopFor(BB);
478 const LoopT *L = getLoopFor(BB);
584 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
587 inline Loop *getLoopFor(const BasicBlock *BB) const {
588 return LI.getLoopFor(BB);
591 /// operator[] - same as getLoopFor..
    [all...]

Completed in 6518 milliseconds