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

1 2

  /external/llvm/include/llvm/CodeGen/
MachineLoopInfo.h 84 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
87 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const {
88 return LI.getLoopFor(BB);
91 /// operator[] - same as getLoopFor...
94 return LI.getLoopFor(BB);
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 145 if (!DFS.L->contains(LI->getLoopFor(BB)))
166 return !DFS.L->contains(LI->getLoopFor(BB)) || DFS.PostNumbers.count(BB);
LoopInfo.h 657 /// getLoopFor - Return the inner most loop that BB lives in. If a basic
660 LoopT *getLoopFor(const BlockT *BB) const {
664 /// operator[] - same as getLoopFor...
667 return getLoopFor(BB);
674 const LoopT *L = getLoopFor(BB);
680 const LoopT *L = getLoopFor(BB);
792 const_cast<LoopT *>(getLoopFor(X)))
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 139 const Loop *SuccLoop = LI->getLoopFor(SuccBB);
149 if (LI->getLoopFor(ExitBB) == L && Visited.insert(ExitBB))
LICM.cpp 141 return LI->getLoopFor(BB) != CurLoop;
237 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops.
LoopUnswitch.cpp 668 if (LI->getLoopFor(*I) == L)
    [all...]
IndVarSimplify.cpp 523 if (LI->getLoopFor(PN->getIncomingBlock(i)) != L)
689 L(LI->getLoopFor(OrigPhi->getParent())),
733 for (const Loop *L = LI->getLoopFor(Use->getParent());
    [all...]
LoopIdiomRecognize.cpp 214 if (LI.getLoopFor(*BI) != CurLoop)
  /external/llvm/lib/Analysis/
LoopInfo.cpp 356 Loop *L = LI->getLoopFor(*POI);
384 Loop *L = LI->getLoopFor(*POI);
403 Loop *OuterParent = LI->getLoopFor(*BI);
468 Loop *L = LI->getLoopFor(*I);
530 if (getLoopFor(*I) != Unloop)
IVUsers.cpp 57 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR);
91 Loop *DomLoop = LI->getLoopFor(DomBB);
168 if (LI->getLoopFor(User->getParent()) != L) {
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 220 Loop *L = LI->getLoopFor(BB);
ProfileEstimatorPass.cpp 126 Loop* BBLoop = LI->getLoopFor(BB);
RegionInfo.cpp 132 Loop *L = LI->getLoopFor(BB);
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 166 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent());
200 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent());
379 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 305 if (Loop *TIL = LI->getLoopFor(TIBB)) {
308 if (Loop *DestLoop = LI->getLoopFor(DestBB)) {
LoopUnroll.cpp 99 if (Loop *L = LI->getLoopFor(BB))
  /external/llvm/lib/CodeGen/
CalcSpillWeights.cpp 121 loop = Loops.getLoopFor(mbb);
MachineSink.cpp 326 if (LI->getLoopFor(FromBB) == LI->getLoopFor(ToBB) &&
PHIElimination.cpp 429 !(MLI->getLoopFor(PreMBB) == MLI->getLoopFor(&MBB) &&
MachineBasicBlock.cpp 723 if (MachineLoop *TIL = MLI->getLoopFor(this)) {
726 if (MachineLoop *DestLoop = MLI->getLoopFor(Succ)) {
    [all...]
MachineLICM.cpp 511 const MachineLoop *ML = MLI->getLoopFor(BB);
705 const MachineLoop *ML = MLI->getLoopFor(BB);
    [all...]
SplitKit.cpp 679 const MachineLoop *DefLoop = Loops.getLoopFor(DefMBB);
687 const MachineLoop *Loop = Loops.getLoopFor(MBB);
    [all...]
MachineBlockPlacement.cpp 681 if (MachineLoop *ExitLoop = MLI->getLoopFor(*SI)) {
    [all...]

Completed in 346 milliseconds

1 2