HomeSort by relevance Sort by last modified time
    Searched refs:getLoopFor (Results 1 - 25 of 35) 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 303 const MachineLoop *getLoopFor(const MachineBasicBlock*) const;
  /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...]
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 670 if (LI->getLoopFor(*I) == L)
    [all...]
IndVarSimplify.cpp 523 if (LI->getLoopFor(PN->getIncomingBlock(i)) != L)
691 L(LI->getLoopFor(OrigPhi->getParent())),
735 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) {
LoopInfo.cpp 425 Loop *L = LI->getLoopFor(*POI);
453 Loop *L = LI->getLoopFor(*POI);
472 Loop *OuterParent = LI->getLoopFor(*BI);
536 Loop *L = LI->getLoopFor(*I);
598 if (getLoopFor(*I) != Unloop)
DependenceAnalysis.cpp 716 const Loop *SrcLoop = LI->getLoopFor(SrcBlock);
717 const Loop *DstLoop = LI->getLoopFor(DstBlock);
    [all...]
ScalarEvolutionExpander.cpp 183 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
556 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
581 while (const Loop *L = SE.LI->getLoopFor(Builder.GetInsertBlock())) {
648 return Pair.first->second = SE.LI->getLoopFor(I->getParent());
    [all...]
BranchProbabilityInfo.cpp 232 Loop *L = LI->getLoopFor(BB);
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);
BasicBlockUtils.cpp 296 if (Loop *L = LI->getLoopFor(Old))
325 Loop *L = LI ? LI->getLoopFor(OldBB) : 0;
340 if (Loop *PL = LI->getLoopFor(Pred))
370 if (Loop *PredLoop = LI->getLoopFor(Pred)) {
BreakCriticalEdges.cpp 311 if (Loop *TIL = LI->getLoopFor(TIBB)) {
314 if (Loop *DestLoop = LI->getLoopFor(DestBB)) {
LoopUnroll.cpp 100 if (Loop *L = 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...]
MachineSink.cpp 334 if (LI->getLoopFor(FromBB) == LI->getLoopFor(ToBB) &&
CalcSpillWeights.cpp 142 loop = Loops.getLoopFor(mbb);
PHIElimination.cpp 546 const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : 0;
563 const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : 0;
MachineBasicBlock.cpp 885 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
888 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
    [all...]

Completed in 422 milliseconds

1 2