HomeSort by relevance Sort by last modified time
    Searched refs:getLoopFor (Results 1 - 25 of 39) sorted by null

1 2

  /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);
MachineTraceMetrics.h 315 const MachineLoop *getLoopFor(const MachineBasicBlock*) const;
  /external/llvm/include/llvm/Analysis/
LoopInfo.h 472 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
475 LoopT *getLoopFor(const BlockT *BB) const {
479 /// operator[] - same as getLoopFor...
482 return getLoopFor(BB);
489 const LoopT *L = getLoopFor(BB);
495 const LoopT *L = getLoopFor(BB);
601 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
604 inline Loop *getLoopFor(const BasicBlock *BB) const {
605 return LI.getLoopFor(BB);
608 /// operator[] - same as getLoopFor..
    [all...]
LoopIterator.h 154 if (!DFS.L->contains(LI->getLoopFor(BB)))
LoopInfoImpl.h 379 LoopT *Subloop = LI->getLoopFor(PredBB);
415 if (LI->getLoopFor(*PI) != Subloop)
481 LoopT *Subloop = LI->getLoopFor(Block);
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 140 const Loop *SuccLoop = LI->getLoopFor(SuccBB);
150 if (LI->getLoopFor(ExitBB) == L && Visited.insert(ExitBB))
Sink.cpp 206 Loop *succ = LI->getLoopFor(SuccToSinkTo);
207 Loop *cur = LI->getLoopFor(Inst->getParent());
LICM.cpp 147 return LI->getLoopFor(BB) != CurLoop;
245 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
    [all...]
LoopUnswitch.cpp 671 if (LI->getLoopFor(*I) == L)
    [all...]
IndVarSimplify.cpp 523 if (LI->getLoopFor(PN->getIncomingBlock(i)) != L)
730 L(LI->getLoopFor(OrigPhi->getParent())),
774 for (const Loop *L = LI->getLoopFor(Use->getParent());
    [all...]
  /external/llvm/lib/Analysis/
IVUsers.cpp 58 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
92 Loop *DomLoop = LI->getLoopFor(DomBB);
175 if (LI->getLoopFor(User->getParent()) != L) {
CFG.cpp 120 const Loop *L = LI->getLoopFor(BB);
155 HasLoop = LI->getLoopFor(BB) != 0;
LoopInfo.cpp 476 Loop *L = LI->getLoopFor(*POI);
504 Loop *L = LI->getLoopFor(*POI);
523 Loop *OuterParent = LI->getLoopFor(*BI);
587 Loop *L = LI->getLoopFor(*I);
649 if (getLoopFor(*I) != Unloop)
DependenceAnalysis.cpp 716 const Loop *SrcLoop = LI->getLoopFor(SrcBlock);
717 const Loop *DstLoop = LI->getLoopFor(DstBlock);
    [all...]
ProfileEstimatorPass.cpp 126 Loop* BBLoop = LI->getLoopFor(BB);
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 164 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent());
198 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent());
377 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead);
BreakCriticalEdges.cpp 279 if (Loop *TIL = LI->getLoopFor(TIBB)) {
282 if (Loop *DestLoop = LI->getLoopFor(DestBB)) {
BasicBlockUtils.cpp 281 if (Loop *L = LI->getLoopFor(Old))
310 Loop *L = LI ? LI->getLoopFor(OldBB) : 0;
325 if (Loop *PL = LI->getLoopFor(Pred))
355 if (Loop *PredLoop = LI->getLoopFor(Pred)) {
LoopUnroll.cpp 100 if (Loop *L = LI->getLoopFor(BB))
  /external/llvm/lib/CodeGen/
MachineTraceMetrics.cpp 159 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const {
160 return MTM.Loops->getLoopFor(MBB);
320 const MachineLoop *CurLoop = getLoopFor(MBB);
348 const MachineLoop *CurLoop = getLoopFor(MBB);
358 if (isExitingLoop(CurLoop, getLoopFor(Succ)))
444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) {
449 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To)))
587 const MachineLoop *Loop = getLoopFor(MBB);
595 const MachineLoop *Loop = getLoopFor(MBB);
596 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ)
    [all...]
MachineSink.cpp 334 if (LI->getLoopFor(FromBB) == LI->getLoopFor(ToBB) &&
CalcSpillWeights.cpp 145 loop = Loops.getLoopFor(mbb);
PHIElimination.cpp 550 const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : 0;
567 const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : 0;
  /external/llvm/lib/Target/R600/
AMDILCFGStructurizer.cpp 365 MachineLoop *LoopRep = MLI->getLoopFor(MBB);
384 MachineLoop *LoopRep = MLI->getLoopFor(MBB);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILCFGStructurizer.cpp 880 LoopT *loopRep = loopInfo->getLoopFor(curBlk);
925 LoopT *loopRep = loopInfo->getLoopFor(curBlk);
    [all...]

Completed in 778 milliseconds

1 2