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

/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h92 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
93 return LI.getLoopFor(BB);
96 /// Same as getLoopFor.
98 return LI.getLoopFor(BB);
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DMachineLoopInfo.h84 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
87 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const { function in class:llvm::MachineLoopInfo
88 return LI.getLoopFor(BB);
91 /// operator[] - same as getLoopFor...
94 return LI.getLoopFor(BB);
/external/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp157 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const { function in class:MachineTraceMetrics::Ensemble
158 return MTM.Loops->getLoopFor(MBB);
316 const MachineLoop *CurLoop = getLoopFor(MBB);
344 const MachineLoop *CurLoop = getLoopFor(MBB);
352 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
440 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) { function
445 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
576 const MachineLoop *Loop = getLoopFor(MBB);
584 const MachineLoop *Loop = getLoopFor(MBB);
585 const MachineLoop *SuccLoop = getLoopFor(TB
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopInfo.h536 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); } function in class:llvm::LoopInfoBase
538 /// Same as getLoopFor.
540 return getLoopFor(BB);
546 const LoopT *L = getLoopFor(BB);
552 const LoopT *L = getLoopFor(BB);
667 Loop *ToLoop = getLoopFor(I->getParent());
672 return ToLoop->contains(getLoopFor(From->getParent()));
692 auto *OldLoop = getLoopFor(OldBB);
693 auto *NewLoop = getLoopFor(NewBB);
716 if (UBB != NewBB && getLoopFor(UB
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DLoopInfo.h670 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
673 LoopT *getLoopFor(const BlockT *BB) const { function in class:llvm::LoopInfoBase
679 /// operator[] - same as getLoopFor...
682 return getLoopFor(BB);
689 const LoopT *L = getLoopFor(BB);
695 const LoopT *L = getLoopFor(BB);
810 const_cast<LoopT *>(getLoopFor(X)))
973 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
976 inline Loop *getLoopFor(const BasicBlock *BB) const { function in class:llvm::LoopInfo
977 return LI.getLoopFor(B
[all...]

Completed in 210 milliseconds