Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DLoopNestAnalysis.h94 return (LastLoop->getLoopDepth() == (*SecondLastLoopIter)->getLoopDepth()) in getInnermostLoop()
121 assert(Depth >= Loops.front()->getLoopDepth() && in getLoopsAtDepth()
122 Depth <= Loops.back()->getLoopDepth() && "Invalid depth"); in getLoopsAtDepth()
126 if (L->getLoopDepth() == Depth) in getLoopsAtDepth()
128 else if (L->getLoopDepth() > Depth) in getLoopsAtDepth()
157 Loops.back()->getLoopDepth() - Loops.front()->getLoopDepth() + 1; in getNestDepth()
H A DLoopInfoImpl.h399 OS << "Loop at depth " << getLoopDepth() << " containing: "; in print()
637 << I->second->getLoopDepth() << "\n"; in print()
666 assert(L->getLoopDepth() == OtherL->getLoopDepth() && in compareLoops()
H A DLoopInfo.h97 unsigned getLoopDepth() const { in getLoopDepth() function
999 unsigned getLoopDepth(const BlockT *BB) const { in getLoopDepth() function
1001 return L ? L->getLoopDepth() : 0; in getLoopDepth()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DShrinkWrap.cpp420 if (MLI->getLoopDepth(Save) > MLI->getLoopDepth(Restore)) { in updateSaveRestorePoints()
442 if (IPdom && MLI->getLoopDepth(IPdom) < MLI->getLoopDepth(Restore)) in updateSaveRestorePoints()
H A DVLIWMachineScheduler.cpp205 << " at loop depth " << MLI->getLoopDepth(BB) << " \n"); in schedule()
H A DSplitKit.cpp926 unsigned Depth = Loop->getLoopDepth(); in findShallowDominator()
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h136 inline unsigned getLoopDepth(const MachineBasicBlock *BB) const { in getLoopDepth() function
137 return LI.getLoopDepth(BB); in getLoopDepth()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DDivergenceAnalysis.cpp253 ExitLevelLoop ? ExitLevelLoop->getLoopDepth() : 0; in propagateLoopExitDivergence()
254 while (DivLoop && DivLoop->getLoopDepth() > LoopExitDepth) { in propagateLoopExitDivergence()
H A DLoopCacheAnalysis.cpp75 return L1->getLoopDepth() < L2->getLoopDepth(); in getInnerMostLoop()
242 int LoopDepth = L.getLoopDepth(); in hasTemporalReuse()
H A DFunctionPropertiesAnalysis.cpp78 std::max(MaxLoopDepth, static_cast<int64_t>(L->getLoopDepth())); in updateAggregateStats()
H A DInlineSizeEstimatorAnalysis.cpp200 static_cast<int32_t>(L->getLoopDepth())); in getFunctionFeatures()
H A DDependenceAnalysis.cpp813 unsigned SrcLevel = LI->getLoopDepth(SrcBlock); in establishNestingLevels()
814 unsigned DstLevel = LI->getLoopDepth(DstBlock); in establishNestingLevels()
840 return SrcLoop->getLoopDepth(); in mapSrcLoop()
847 unsigned D = DstLoop->getLoopDepth(); in mapDstLoop()
880 unsigned Level = LoopNest->getLoopDepth(); in collectCommonLoops()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DR600ControlFlowFinalizer.cpp47 unsigned getLoopDepth();
58 unsigned CFStack::getLoopDepth() { in getLoopDepth() function in __anon74108a6f0111::CFStack
68 getLoopDepth() > 1) in requiresWorkAroundForInst()
H A DAMDGPUTargetTransformInfo.cpp211 if (LocalGEPsSeen > 1 || L->getLoopDepth() > 2 || in getUnrollingPreferences()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLoopUnrollAndJam.cpp767 unsigned LoopDepth = Root.getLoopDepth(); in checkDependencies()
776 unsigned CurLoopDepth = CurLoop->getLoopDepth(); in checkDependencies()
780 unsigned EarlierDepth = EarlierLoop->getLoopDepth(); in checkDependencies()
H A DUnifyLoopExits.cpp225 << LI.getLoopDepth(L->getHeader()) << ")\n"); in runImpl()
H A DBasicBlockUtils.cpp1094 InnermostPredLoop->getLoopDepth() < PredLoop->getLoopDepth())) in UpdateAnalysisInformation()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DLoopSimplifyCFG.cpp103 if (!Innermost || BBL->getLoopDepth() > Innermost->getLoopDepth()) in getInnermostLoopFor()
H A DLoopVersioningLICM.cpp241 if (CurLoop->getLoopDepth() > LoopDepthThreshold) { in legalLoopStructure()
H A DSimpleLoopUnswitch.cpp1524 return ExitLoopMap.lookup(LHS)->getLoopDepth() < in buildClonedLoops()
1525 ExitLoopMap.lookup(RHS)->getLoopDepth(); in buildClonedLoops()
1914 return LI.getLoopDepth(LHS) < LI.getLoopDepth(RHS); in rebuildLoopAfterUnswitch()
H A DLoopFuse.cpp1379 assert(FC0.L->getLoopDepth() == FC1.L->getLoopDepth()); in dependencesAllowFusion()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DAsmPrinter.cpp3634 OS.indent(Loop->getLoopDepth()*2) in PrintParentLoopComment()
3637 << " Depth=" << Loop->getLoopDepth() << '\n'; in PrintParentLoopComment()
3646 OS.indent(CL->getLoopDepth()*2) in PrintChildLoopComment()
3648 << CL->getHeader()->getNumber() << " Depth " << CL->getLoopDepth() in PrintChildLoopComment()
3671 " Depth="+Twine(Loop->getLoopDepth())); in emitBasicBlockLoopComments()
3682 OS.indent(Loop->getLoopDepth()*2-2); in emitBasicBlockLoopComments()
3687 OS << "Loop Header: Depth=" + Twine(Loop->getLoopDepth()) << '\n'; in emitBasicBlockLoopComments()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DFunctionSpecialization.cpp576 unsigned LoopDepth = LI.getLoopDepth(I->getParent()); in getUserBonus()
/openbsd-src/gnu/llvm/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp501 unsigned LoopDepth = MLI.getLoopDepth(MBB); in getGadgetGraph()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp305 << L.getLoopDepth() << ")\n"); in run()

12