Home
last modified time | relevance | path

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

/trueos/contrib/llvm/include/llvm/Analysis/
HDLoopInfo.h88 unsigned getLoopDepth() const { in getLoopDepth() function
502 unsigned getLoopDepth(const BlockT *BB) const { in getLoopDepth() function
504 return L ? L->getLoopDepth() : 0; in getLoopDepth()
631 inline unsigned getLoopDepth(const BasicBlock *BB) const { in getLoopDepth() function
632 return LI.getLoopDepth(BB); in getLoopDepth()
HDLoopInfoImpl.h319 OS.indent(Depth*2) << "Loop at depth " << getLoopDepth() in print()
543 << I->second->getLoopDepth() << "\n"; in print()
/trueos/contrib/llvm/include/llvm/CodeGen/
HDMachineLoopInfo.h111 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { in getLoopDepth() function
112 return LI.getLoopDepth(BB); in getLoopDepth()
/trueos/contrib/llvm/lib/CodeGen/
HDMachineSink.cpp107 return LI->getLoopDepth(LHS) < LI->getLoopDepth(RHS); in operator ()()
HDInlineSpiller.cpp436 SpillDepth = Loops.getLoopDepth(SV.SpillMBB); in propagateSiblingValue()
441 if ((Loops.getLoopDepth(DepSV.SpillMBB) > SpillDepth) && in propagateSiblingValue()
HDMachineBlockPlacement.cpp684 SuccLoopDepth = ExitLoop->getLoopDepth(); in findBestLoopExit()
HDSplitKit.cpp712 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
HDRegisterCoalescer.cpp2162 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB), in joinAllIntervals()
/trueos/contrib/llvm/lib/CodeGen/AsmPrinter/
HDAsmPrinter.cpp2067 OS.indent(Loop->getLoopDepth()*2) in PrintParentLoopComment()
2070 << " Depth=" << Loop->getLoopDepth() << '\n'; in PrintParentLoopComment()
2080 OS.indent((*CL)->getLoopDepth()*2) in PrintChildLoopComment()
2082 << (*CL)->getHeader()->getNumber() << " Depth " << (*CL)->getLoopDepth() in PrintChildLoopComment()
2105 " Depth="+Twine(Loop->getLoopDepth())); in emitBasicBlockLoopComments()
2116 OS.indent(Loop->getLoopDepth()*2-2); in emitBasicBlockLoopComments()
2121 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; in emitBasicBlockLoopComments()
/trueos/contrib/llvm/lib/Target/R600/
HDAMDILCFGStructurizer.cpp209 static unsigned getLoopDepth(MachineLoop *LoopRep);
372 unsigned AMDGPUCFGStructurizer::getLoopDepth(MachineLoop *LoopRep) { in getLoopDepth() function in __anonc25714d30311::AMDGPUCFGStructurizer
373 return LoopRep ? LoopRep->getLoopDepth() : 0; in getLoopDepth()
1477 << getLoopDepth(ContLoop) in handleLoopcontBlock()
1478 << " from loop-depth = " << getLoopDepth(ContingLoop) << "\n";); in handleLoopcontBlock()
/trueos/contrib/llvm/lib/Transforms/Utils/
HDBasicBlockUtils.cpp363 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
/trueos/contrib/llvm/lib/Target/Hexagon/
HDHexagonMachineScheduler.cpp148 << " at loop depth " << MLI.getLoopDepth(BB) in schedule()
/trueos/contrib/llvm/lib/Analysis/
HDDependenceAnalysis.cpp719 unsigned SrcLevel = LI->getLoopDepth(SrcBlock); in establishNestingLevels()
720 unsigned DstLevel = LI->getLoopDepth(DstBlock); in establishNestingLevels()
746 return SrcLoop->getLoopDepth(); in mapSrcLoop()
753 unsigned D = DstLoop->getLoopDepth(); in mapDstLoop()
778 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops()
HDScalarEvolution.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()
2307 (L->getLoopDepth() < NestedLoop->getLoopDepth()) : in getAddRecExpr()
/trueos/contrib/llvm/lib/Transforms/Scalar/
HDLoopStrengthReduce.cpp4265 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; in HoistInsertPosition()
4276 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; in HoistInsertPosition()