HomeSort by: relevance | last modified time | path
    Searched defs:getLoopFor (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 124 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
125 return LI.getLoopFor(BB);
128 /// Same as getLoopFor.
130 return LI.getLoopFor(BB);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 169 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
170 return MTM.Loops->getLoopFor(MBB);
329 const MachineLoop *CurLoop = getLoopFor(MBB);
357 const MachineLoop *CurLoop = getLoopFor(MBB);
365 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
460 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(*From)) {
465 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
597 const MachineLoop *Loop = getLoopFor(MBB);
605 const MachineLoop *Loop = getLoopFor(MBB);
606 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopInfo.h 964 LoopT *getLoopFor(const BlockT *BB) const { return BBMap.lookup(BB); }
966 /// Same as getLoopFor.
967 const LoopT *operator[](const BlockT *BB) const { return getLoopFor(BB); }
972 const LoopT *L = getLoopFor(BB);
978 const LoopT *L = getLoopFor(BB);
1124 Loop *ToLoop = getLoopFor(I->getParent());
1130 return ToLoop->contains(getLoopFor(From->getParent()));
1150 auto *OldLoop = getLoopFor(OldBB);
1151 auto *NewLoop = getLoopFor(NewBB);
1174 if (UBB != NewBB && getLoopFor(UBB) != NewLoop
    [all...]

Completed in 121 milliseconds