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 92 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
95 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
96 return LI.getLoopFor(BB);
99 /// operator[] - same as getLoopFor...
102 return LI.getLoopFor(BB);
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 157 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
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)) {
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(TBI.Succ)
    [all...]
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 555 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
558 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
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(NewBB)
    [all...]

Completed in 65 milliseconds