Home
last modified time | relevance | path

Searched refs:getLoopDepth (Results 1 – 20 of 20) sorted by relevance

/external/llvm/include/llvm/CodeGen/
DMachineLoopInfo.h111 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { in getLoopDepth() function
112 return LI.getLoopDepth(BB); in getLoopDepth()
/external/llvm/include/llvm/Analysis/
DLoopInfo.h85 unsigned getLoopDepth() const { in getLoopDepth() function
471 unsigned getLoopDepth(const BlockT *BB) const { in getLoopDepth() function
473 return L ? L->getLoopDepth() : 0; in getLoopDepth()
600 inline unsigned getLoopDepth(const BasicBlock *BB) const { in getLoopDepth() function
601 return LI.getLoopDepth(BB); in getLoopDepth()
DLoopInfoImpl.h339 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth() in print()
564 << I->second->getLoopDepth() << "\n"; in print()
/external/llvm/lib/CodeGen/
DCalcSpillWeights.cpp143 loopDepth = loop ? loop->getLoopDepth() : 0; in CalculateWeightAndHint()
DMachineSink.cpp107 return LI->getLoopDepth(LHS) < LI->getLoopDepth(RHS); in operator ()()
DSpillPlacement.cpp182 loops->getLoopDepth(I)); in runOnMachineFunction()
DStackSlotColoring.cpp142 unsigned loopDepth = loopInfo->getLoopDepth(MBB); in ScanForSpillSlotRefs()
DRegAllocPBQP.cpp354 loopInfo->getLoopDepth(mbb)); in build()
DInlineSpiller.cpp433 SpillDepth = Loops.getLoopDepth(SV.SpillMBB); in propagateSiblingValue()
438 if ((Loops.getLoopDepth(DepSV.SpillMBB) > SpillDepth) && in propagateSiblingValue()
DShrinkWrapping.cpp456 if (LP->getLoopDepth() > 1) { in calculateSets()
DMachineBlockPlacement.cpp678 SuccLoopDepth = ExitLoop->getLoopDepth(); in findBestLoopExit()
DSplitKit.cpp709 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
DRegisterCoalescer.cpp2103 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB), in joinAllIntervals()
/external/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp1972 OS.indent(Loop->getLoopDepth()*2) in PrintParentLoopComment()
1975 << " Depth=" << Loop->getLoopDepth() << '\n'; in PrintParentLoopComment()
1985 OS.indent((*CL)->getLoopDepth()*2) in PrintChildLoopComment()
1987 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth() in PrintChildLoopComment()
2010 " Depth="+Twine(Loop->getLoopDepth())); in emitBasicBlockLoopComments()
2021 OS.indent(Loop->getLoopDepth()*2-2); in emitBasicBlockLoopComments()
2026 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; in emitBasicBlockLoopComments()
/external/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp379 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
/external/llvm/lib/Target/R600/
DAMDILCFGStructurizer.cpp289 unsigned getLoopDepth (LoopT *LoopRep);
1287 errs() << "Trying to break loop-depth = " << getLoopDepth(exitLoop) in handleLoopbreak()
1288 << " from loop-depth = " << getLoopDepth(exitingLoop) << "\n"; in handleLoopbreak()
1319 << getLoopDepth(contLoop) in handleLoopcontBlock()
1320 << " from loop-depth = " << getLoopDepth(contingLoop) << "\n"; in handleLoopcontBlock()
2364 unsigned CFGStructurizer<PassT>::getLoopDepth(LoopT *loopRep) { in getLoopDepth() function in llvmCFGStruct::CFGStructurizer
2365 return loopRep ? loopRep->getLoopDepth() : 0; in getLoopDepth()
/external/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp148 << " at loop depth " << MLI.getLoopDepth(BB) in schedule()
/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp714 unsigned SrcLevel = LI->getLoopDepth(SrcBlock); in establishNestingLevels()
715 unsigned DstLevel = LI->getLoopDepth(DstBlock); in establishNestingLevels()
741 return SrcLoop->getLoopDepth(); in mapSrcLoop()
748 unsigned D = DstLoop->getLoopDepth(); in mapDstLoop()
773 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops()
DScalarEvolution.cpp523 unsigned LDepth = LI->getLoopDepth(LParent), in compare()
524 RDepth = LI->getLoopDepth(RParent); in compare()
558 unsigned LDepth = LLoop->getLoopDepth(), in compare()
559 RDepth = RLoop->getLoopDepth(); in compare()
2304 (L->getLoopDepth() < NestedLoop->getLoopDepth()) : in getAddRecExpr()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp4152 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; in HoistInsertPosition()
4163 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; in HoistInsertPosition()