Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DShrinkWrap.cpp409 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) { in updateSaveRestorePoints()
431 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore)) in updateSaveRestorePoints()
H A DMachineSink.cpp532 if (LI->getLoopDepth(MBB) > LI->getLoopDepth(SuccToSinkTo)) in isProfitableToSinkTo()
595 : LI->getLoopDepth(L) < LI->getLoopDepth(R); in GetAllSortedSuccessors()
H A DMachineBlockPlacement.cpp1896 SuccLoopDepth = ExitLoop->getLoopDepth(); in findBestLoopExit()
H A DSplitKit.cpp926 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
H A DRegisterCoalescer.cpp3593 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB), in joinAllIntervals()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h126 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { in getLoopDepth() function
127 return LI.getLoopDepth(BB); in getLoopDepth()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h398 OS << "Loop at depth " << getLoopDepth() << " containing: "; in print()
640 << I->second->getLoopDepth() << "\n"; in print()
669 assert(L->getLoopDepth() == OtherL->getLoopDepth() && in compareLoops()
H A DLoopInfo.h92 unsigned getLoopDepth() const { in getLoopDepth() function
697 unsigned getLoopDepth(const BlockT *BB) const { in getLoopDepth() function
699 return L ? L->getLoopDepth() : 0; in getLoopDepth()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp72 unsigned getLoopDepth();
83 unsigned CFStack::getLoopDepth() { in getLoopDepth() function in __anonf80183fd0111::CFStack
98 getLoopDepth() > 1) in requiresWorkAroundForInst()
H A DAMDGPUTargetTransformInfo.cpp168 if (LocalGEPsSeen > 1 || L->getLoopDepth() > 2 || in getUnrollingPreferences()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp363 BBL->getLoopDepth() > StillReachable->getLoopDepth()) in handleDeadExits()
H A DStructurizeCFG.cpp322 return LI->getLoopDepth(SubR->getExit()); in getAdjustedLoopDepth()
325 return LI->getLoopDepth(RN->getEntry()); in getAdjustedLoopDepth()
518 << LI->getLoopDepth(RN->getEntry()) << "\n"); in collectInfos()
H A DLoopVersioningLICM.cpp281 if (CurLoop->getLoopDepth() > LoopDepthThreshold) { in legalLoopStructure()
H A DSimpleLoopUnswitch.cpp1338 return ExitLoopMap.lookup(LHS)->getLoopDepth() < in buildClonedLoops()
1339 ExitLoopMap.lookup(RHS)->getLoopDepth(); in buildClonedLoops()
1717 return LI.getLoopDepth(LHS) < LI.getLoopDepth(RHS); in rebuildLoopAfterUnswitch()
H A DLoopStrengthReduce.cpp4944 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; in HoistInsertPosition()
4955 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; in HoistInsertPosition()
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp2799 OS.indent(Loop->getLoopDepth()*2) in PrintParentLoopComment()
2802 << " Depth=" << Loop->getLoopDepth() << '\n'; in PrintParentLoopComment()
2811 OS.indent(CL->getLoopDepth()*2) in PrintChildLoopComment()
2813 << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth() in PrintChildLoopComment()
2836 " Depth="+Twine(Loop->getLoopDepth())); in emitBasicBlockLoopComments()
2847 OS.indent(Loop->getLoopDepth()*2-2); in emitBasicBlockLoopComments()
2852 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; in emitBasicBlockLoopComments()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp429 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
H A DLoopUnrollAndJam.cpp674 unsigned LoopDepth = L->getLoopDepth(); in checkDependencies()
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp733 unsigned SrcLevel = LI->getLoopDepth(SrcBlock); in establishNestingLevels()
734 unsigned DstLevel = LI->getLoopDepth(DstBlock); in establishNestingLevels()
760 return SrcLoop->getLoopDepth(); in mapSrcLoop()
767 unsigned D = DstLoop->getLoopDepth(); in mapDstLoop()
792 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops()
H A DScalarEvolution.cpp605 unsigned LDepth = LI->getLoopDepth(LParent), in CompareValueComplexity()
606 RDepth = LI->getLoopDepth(RParent); in CompareValueComplexity()
3399 ? (L->getLoopDepth() < NestedLoop->getLoopDepth()) in getAddRecExpr()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonMachineScheduler.cpp194 << " at loop depth " << MLI->getLoopDepth(BB) << " \n"); in schedule()
/freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp280 << L.getLoopDepth() << ")\n"); in run()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp762 if (L->getLoopDepth() > 1) in getUnrollingPreferences()
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp5030 if (!Legal->getReductionVars()->empty() && TheLoop->getLoopDepth() > 1) { in selectInterleaveCount()