/external/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 529 LoopT *getLoopFor(const BlockT *BB) const { in getLoopFor() function 536 return getLoopFor(BB); 543 const LoopT *L = getLoopFor(BB); in getLoopDepth() 549 const LoopT *L = getLoopFor(BB); in isLoopHeader() 658 inline Loop *getLoopFor(const BasicBlock *BB) const { in getLoopFor() function 659 return LI.getLoopFor(BB); in getLoopFor() 665 return LI.getLoopFor(BB); 742 Loop *ToLoop = getLoopFor(I->getParent()); in replacementPreservesLCSSAForm() 747 return ToLoop->contains(getLoopFor(From->getParent())); in replacementPreservesLCSSAForm()
|
D | LoopInfoImpl.h | 360 LoopT *Subloop = LI->getLoopFor(PredBB); in discoverAndMapSubloop() 396 if (LI->getLoopFor(*PI) != Subloop) in discoverAndMapSubloop() 462 LoopT *Subloop = LI->getLoopFor(Block); in insertIntoLoop()
|
D | LoopIterator.h | 154 if (!DFS.L->contains(LI->getLoopFor(BB))) in visitPreorder()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineLoopInfo.h | 100 inline MachineLoop *getLoopFor(const MachineBasicBlock *BB) const { in getLoopFor() function 101 return LI.getLoopFor(BB); in getLoopFor() 107 return LI.getLoopFor(BB);
|
D | MachineTraceMetrics.h | 315 const MachineLoop *getLoopFor(const MachineBasicBlock*) const;
|
/external/llvm/lib/Transforms/Utils/ |
D | BreakCriticalEdges.cpp | 279 if (Loop *TIL = LI->getLoopFor(TIBB)) { in SplitCriticalEdge() 282 if (Loop *DestLoop = LI->getLoopFor(DestBB)) { in SplitCriticalEdge() 329 if (LI->getLoopFor(P) != TIL) { in SplitCriticalEdge()
|
D | SimplifyIndVar.cpp | 172 const Loop *ICmpLoop = LI->getLoopFor(ICmp->getParent()); in eliminateIVComparison() 206 const Loop *ICmpLoop = LI->getLoopFor(Rem->getParent()); in eliminateIVRemainder() 455 SimplifyIndvar SIV(LI->getLoopFor(CurrIV->getParent()), SE, LPM, Dead); in simplifyUsersOfIV()
|
D | BasicBlockUtils.cpp | 282 if (Loop *L = LI->getLoopFor(Old)) in SplitBlock() 313 Loop *L = LI ? LI->getLoopFor(OldBB) : nullptr; in UpdateAnalysisInformation() 328 if (Loop *PL = LI->getLoopFor(Pred)) in UpdateAnalysisInformation() 358 if (Loop *PredLoop = LI->getLoopFor(Pred)) { in UpdateAnalysisInformation()
|
D | LoopUnroll.cpp | 107 if (Loop *L = LI->getLoopFor(BB)) in FoldBlockIntoPredecessor() 501 Loop *LatchLoop = LI->getLoopFor(Latches.back()); in UnrollLoop()
|
/external/llvm/lib/Analysis/ |
D | LoopInfo.cpp | 462 Loop *L = LI->getLoopFor(*POI); in updateBlockParents() 490 Loop *L = LI->getLoopFor(*POI); in updateBlockParents() 509 Loop *OuterParent = LI->getLoopFor(*BI); in removeBlocksFromAncestors() 573 Loop *L = LI->getLoopFor(*I); in getNearestLoop() 635 if (getLoopFor(*I) != Unloop) in updateUnloop()
|
D | IVUsers.cpp | 58 SE->getSCEVAtScope(AR, LI->getLoopFor(I->getParent())) != AR); in isInteresting() 92 Loop *DomLoop = LI->getLoopFor(DomBB); in isSimplifiedLoopNest() 174 if (LI->getLoopFor(User->getParent()) != L) { in AddUsersImpl()
|
D | CFG.cpp | 113 const Loop *L = LI->getLoopFor(BB); in getOutermostLoop() 203 if (LI && LI->getLoopFor(BB) != nullptr) in isPotentiallyReachable()
|
D | DependenceAnalysis.cpp | 721 const Loop *SrcLoop = LI->getLoopFor(SrcBlock); in establishNestingLevels() 722 const Loop *DstLoop = LI->getLoopFor(DstBlock); in establishNestingLevels() 3334 isLoopInvariant(SrcPtrSCEV, LI->getLoopFor(Src->getParent())) && in depends() 3335 isLoopInvariant(DstPtrSCEV, LI->getLoopFor(Dst->getParent())); in depends() 3373 classifyPair(Pair[P].Src, LI->getLoopFor(Src->getParent()), in depends() 3374 Pair[P].Dst, LI->getLoopFor(Dst->getParent()), in depends() 3451 LI->getLoopFor(Src->getParent()), in depends() 3454 LI->getLoopFor(Dst->getParent()), in depends() 3585 classifyPair(Pair[SJ].Src, LI->getLoopFor(Src->getParent()), in depends() 3586 Pair[SJ].Dst, LI->getLoopFor(Dst->getParent()), in depends() [all …]
|
D | Delinearization.cpp | 96 for (Loop *L = LI->getLoopFor(BB); L != nullptr; L = L->getParentLoop()) { in print()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopInstSimplify.cpp | 154 const Loop *SuccLoop = LI->getLoopFor(SuccBB); in runOnLoop() 164 if (LI->getLoopFor(ExitBB) == L && Visited.insert(ExitBB)) in runOnLoop()
|
D | Sink.cpp | 209 Loop *succ = LI->getLoopFor(SuccToSinkTo); in IsAcceptableTarget() 210 Loop *cur = LI->getLoopFor(Inst->getParent()); in IsAcceptableTarget()
|
D | LICM.cpp | 154 return LI->getLoopFor(BB) != CurLoop; in inSubLoop() 269 if (LI->getLoopFor(BB) == L) // Ignore blocks in subloops. in runOnLoop() 559 if (Loop *OLoop = LI->getLoopFor(OInst->getParent())) in CloneInstructionInExitBlock() 697 if (Loop *L = LI.getLoopFor(I->getParent())) in maybeInsertLCSSAPHI()
|
D | IndVarSimplify.cpp | 514 (!L->getParentLoop() || L->getParentLoop() == LI->getLoopFor(ExitBB)); in RewriteLoopExitValues() 542 if (LI->getLoopFor(PN->getIncomingBlock(i)) != L) in RewriteLoopExitValues() 738 L(LI->getLoopFor(OrigPhi->getParent())), in WidenIV() 782 for (const Loop *L = LI->getLoopFor(Use->getParent()); in getExtend() 917 if (LI->getLoopFor(UsePhi->getParent()) != L) { in WidenIVUse()
|
/external/llvm/lib/CodeGen/ |
D | MachineTraceMetrics.cpp | 159 MachineTraceMetrics::Ensemble::getLoopFor(const MachineBasicBlock *MBB) const { in getLoopFor() function in MachineTraceMetrics::Ensemble 160 return MTM.Loops->getLoopFor(MBB); in getLoopFor() 320 const MachineLoop *CurLoop = getLoopFor(MBB); in pickTracePred() 348 const MachineLoop *CurLoop = getLoopFor(MBB); in pickTraceSucc() 358 if (isExitingLoop(CurLoop, getLoopFor(Succ))) in pickTraceSucc() 444 if (const MachineLoop *FromLoop = LB.Loops->getLoopFor(From)) { in insertEdge() 449 if (isExitingLoop(FromLoop, LB.Loops->getLoopFor(To))) in insertEdge() 586 const MachineLoop *Loop = getLoopFor(MBB); in verify() 594 const MachineLoop *Loop = getLoopFor(MBB); in verify() 595 const MachineLoop *SuccLoop = getLoopFor(TBI.Succ); in verify() [all …]
|
D | CalcSpillWeights.cpp | 129 loop = Loops.getLoopFor(mbb); in calculateSpillWeightAndHint()
|
D | MachineSink.cpp | 343 if (LI->getLoopFor(FromBB) == LI->getLoopFor(ToBB) && in SplitCriticalEdge()
|
D | PHIElimination.cpp | 551 const MachineLoop *CurLoop = MLI ? MLI->getLoopFor(&MBB) : nullptr; in SplitPHIEdges() 568 const MachineLoop *PreLoop = MLI ? MLI->getLoopFor(PreMBB) : nullptr; in SplitPHIEdges()
|
/external/llvm/lib/Target/R600/ |
D | AMDILCFGStructurizer.cpp | 369 MachineLoop *LoopRep = MLI->getLoopFor(MBB); in hasBackEdge() 388 MachineLoop *LoopRep = MLI->getLoopFor(MBB); in isActiveLoophead() 1157 handleLoopcontBlock(MBB, MLI->getLoopFor(MBB), in loopcontPatternMatch() 1178 MachineLoop *LoopRep = MLI->getLoopFor(Src1MBB); in isSameloopDetachedContbreak() 1179 if (LoopRep&& LoopRep == MLI->getLoopFor(Src2MBB)) { in isSameloopDetachedContbreak()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
D | AMDILCFGStructurizer.cpp | 880 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in loopendPatternMatch() 925 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in loopPatternMatch() 1111 LoopT *exitingLoop = loopInfo->getLoopFor(exitingBlk); in loopbreakPatternMatch() 1132 handleLoopcontBlock(curBlk, loopInfo->getLoopFor(curBlk), in loopcontPatternMatch() 1159 LoopT *loopRep = loopInfo->getLoopFor(src1Blk); in isSameloopDetachedContbreak() 1160 if (loopRep != NULL && loopRep == loopInfo->getLoopFor(src2Blk)) { in isSameloopDetachedContbreak() 2333 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in isActiveLoophead() 2538 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in hasBackEdge()
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILCFGStructurizer.cpp | 880 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in loopendPatternMatch() 925 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in loopPatternMatch() 1111 LoopT *exitingLoop = loopInfo->getLoopFor(exitingBlk); in loopbreakPatternMatch() 1132 handleLoopcontBlock(curBlk, loopInfo->getLoopFor(curBlk), in loopcontPatternMatch() 1159 LoopT *loopRep = loopInfo->getLoopFor(src1Blk); in isSameloopDetachedContbreak() 1160 if (loopRep != NULL && loopRep == loopInfo->getLoopFor(src2Blk)) { in isSameloopDetachedContbreak() 2333 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in isActiveLoophead() 2538 LoopT *loopRep = loopInfo->getLoopFor(curBlk); in hasBackEdge()
|