Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DShrinkWrap.cpp417 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) { in updateSaveRestorePoints()
439 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore)) in updateSaveRestorePoints()
DMachineSink.cpp579 if (LI->getLoopDepth(MBB) > LI->getLoopDepth(SuccToSinkTo)) in isProfitableToSinkTo()
641 : LI->getLoopDepth(L) < LI->getLoopDepth(R); in GetAllSortedSuccessors()
DSplitKit.cpp926 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
DMachineBlockPlacement.cpp2169 SuccLoopDepth = ExitLoop->getLoopDepth(); in findBestLoopExit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineLoopInfo.h128 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { in getLoopDepth() function
129 return LI.getLoopDepth(BB); in getLoopDepth()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DLoopInfoImpl.h382 OS << "Loop at depth " << getLoopDepth() << " containing: "; in print()
617 << I->second->getLoopDepth() << "\n"; in print()
646 assert(L->getLoopDepth() == OtherL->getLoopDepth() && in compareLoops()
DLoopInfo.h97 unsigned getLoopDepth() const { in getLoopDepth() function
946 unsigned getLoopDepth(const BlockT *BB) const { in getLoopDepth() function
948 return L ? L->getLoopDepth() : 0; in getLoopDepth()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DLoopCacheAnalysis.cpp69 return L1->getLoopDepth() < L2->getLoopDepth(); in getInnerMostLoop()
225 int LoopDepth = L.getLoopDepth(); in hasTemporalReuse()
DDependenceAnalysis.cpp746 unsigned SrcLevel = LI->getLoopDepth(SrcBlock); in establishNestingLevels()
747 unsigned DstLevel = LI->getLoopDepth(DstBlock); in establishNestingLevels()
773 return SrcLoop->getLoopDepth(); in mapSrcLoop()
780 unsigned D = DstLoop->getLoopDepth(); in mapDstLoop()
805 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops()
DScalarEvolution.cpp630 unsigned LDepth = LI->getLoopDepth(LParent), in CompareValueComplexity()
631 RDepth = LI->getLoopDepth(RParent); in CompareValueComplexity()
3447 ? (L->getLoopDepth() < NestedLoop->getLoopDepth()) in getAddRecExpr()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DR600ControlFlowFinalizer.cpp71 unsigned getLoopDepth();
82 unsigned CFStack::getLoopDepth() { in getLoopDepth() function in __anond665e5e30111::CFStack
97 getLoopDepth() > 1) in requiresWorkAroundForInst()
DGCNRegBankReassign.cpp553 Weight += MLI->getLoopDepth(MI.getParent()) * 10; in collectCandidates()
DAMDGPUTargetTransformInfo.cpp171 if (LocalGEPsSeen > 1 || L->getLoopDepth() > 2 || in getUnrollingPreferences()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DStructurizeCFG.cpp328 return LI->getLoopDepth(SubR->getExit()); in getAdjustedLoopDepth()
331 return LI->getLoopDepth(RN->getEntry()); in getAdjustedLoopDepth()
524 << LI->getLoopDepth(RN->getEntry()) << "\n"); in collectInfos()
DLoopSimplifyCFG.cpp108 if (!Innermost || BBL->getLoopDepth() > Innermost->getLoopDepth()) in getInnermostLoopFor()
DLoopVersioningLICM.cpp250 if (CurLoop->getLoopDepth() > LoopDepthThreshold) { in legalLoopStructure()
DSimpleLoopUnswitch.cpp1382 return ExitLoopMap.lookup(LHS)->getLoopDepth() < in buildClonedLoops()
1383 ExitLoopMap.lookup(RHS)->getLoopDepth(); in buildClonedLoops()
1760 return LI.getLoopDepth(LHS) < LI.getLoopDepth(RHS); in rebuildLoopAfterUnswitch()
DLoopFuse.cpp976 assert(FC0.L->getLoopDepth() == FC1.L->getLoopDepth()); in dependencesAllowFusion()
DLoopStrengthReduce.cpp5038 unsigned IPLoopDepth = IPLoop ? IPLoop->getLoopDepth() : 0; in HoistInsertPosition()
5049 unsigned IDomDepth = IDomLoop ? IDomLoop->getLoopDepth() : 0; in HoistInsertPosition()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp2902 OS.indent(Loop->getLoopDepth()*2) in PrintParentLoopComment()
2905 << " Depth=" << Loop->getLoopDepth() << '\n'; in PrintParentLoopComment()
2914 OS.indent(CL->getLoopDepth()*2) in PrintChildLoopComment()
2916 << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth() in PrintChildLoopComment()
2939 " Depth="+Twine(Loop->getLoopDepth())); in emitBasicBlockLoopComments()
2950 OS.indent(Loop->getLoopDepth()*2-2); in emitBasicBlockLoopComments()
2955 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; in emitBasicBlockLoopComments()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DBasicBlockUtils.cpp627 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
DLoopUnrollAndJam.cpp678 unsigned LoopDepth = L->getLoopDepth(); in checkDependencies()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonMachineScheduler.cpp195 << " at loop depth " << MLI->getLoopDepth(BB) << " \n"); in schedule()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64TargetTransformInfo.cpp784 if (L->getLoopDepth() > 1) in getUnrollingPreferences()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DInstrProfiling.cpp300 << L.getLoopDepth() << ")\n"); in run()

12