| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | ShrinkWrap.cpp | 409 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) { in updateSaveRestorePoints() 431 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore)) in updateSaveRestorePoints()
|
| H A D | MachineSink.cpp | 532 if (LI->getLoopDepth(MBB) > LI->getLoopDepth(SuccToSinkTo)) in isProfitableToSinkTo() 595 : LI->getLoopDepth(L) < LI->getLoopDepth(R); in GetAllSortedSuccessors()
|
| H A D | MachineBlockPlacement.cpp | 1896 SuccLoopDepth = ExitLoop->getLoopDepth(); in findBestLoopExit()
|
| H A D | SplitKit.cpp | 926 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
|
| H A D | RegisterCoalescer.cpp | 3593 MBBs.push_back(MBBPriorityInfo(MBB, Loops->getLoopDepth(MBB), in joinAllIntervals()
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MachineLoopInfo.h | 126 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 D | LoopInfoImpl.h | 398 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 D | LoopInfo.h | 92 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 D | R600ControlFlowFinalizer.cpp | 72 unsigned getLoopDepth(); 83 unsigned CFStack::getLoopDepth() { in getLoopDepth() function in __anonf80183fd0111::CFStack 98 getLoopDepth() > 1) in requiresWorkAroundForInst()
|
| H A D | AMDGPUTargetTransformInfo.cpp | 168 if (LocalGEPsSeen > 1 || L->getLoopDepth() > 2 || in getUnrollingPreferences()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/ |
| H A D | LoopSimplifyCFG.cpp | 363 BBL->getLoopDepth() > StillReachable->getLoopDepth()) in handleDeadExits()
|
| H A D | StructurizeCFG.cpp | 322 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 D | LoopVersioningLICM.cpp | 281 if (CurLoop->getLoopDepth() > LoopDepthThreshold) { in legalLoopStructure()
|
| H A D | SimpleLoopUnswitch.cpp | 1338 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 D | LoopStrengthReduce.cpp | 4944 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 D | AsmPrinter.cpp | 2799 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 D | BasicBlockUtils.cpp | 429 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
|
| H A D | LoopUnrollAndJam.cpp | 674 unsigned LoopDepth = L->getLoopDepth(); in checkDependencies()
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | DependenceAnalysis.cpp | 733 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 D | ScalarEvolution.cpp | 605 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 D | HexagonMachineScheduler.cpp | 194 << " at loop depth " << MLI->getLoopDepth(BB) << " \n"); in schedule()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | InstrProfiling.cpp | 280 << L.getLoopDepth() << ")\n"); in run()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.cpp | 762 if (L->getLoopDepth() > 1) in getUnrollingPreferences()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/ |
| H A D | LoopVectorize.cpp | 5030 if (!Legal->getReductionVars()->empty() && TheLoop->getLoopDepth() > 1) { in selectInterleaveCount()
|