/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | CGSCCPassManager.cpp | 79 AM.getCachedResult<FunctionAnalysisManagerCGSCCProxy>(*C)->getManager(); in run() 146 AM.getCachedResult<FunctionAnalysisManagerModuleProxy>(M)->getManager(); in run() 536 if (NoRerun && FAM.getCachedResult<ShouldNotRunFunctionPassesAnalysis>(F)) in run() 623 InnerAM->getCachedResult<ModuleAnalysisManagerCGSCCProxy>(C)) in invalidate() 726 FAM->getCachedResult<CGSCCAnalysisManagerFunctionProxy>(F)) in invalidate() 783 FAM.getCachedResult<CGSCCAnalysisManagerFunctionProxy>(F); in updateNewSCCFunctionAnalyses() 841 AM.getCachedResult<FunctionAnalysisManagerCGSCCProxy>(*OldC)) in incorporateNewSCCRange() 1106 AM.getCachedResult<FunctionAnalysisManagerCGSCCProxy>( in updateCGAndAnalysisManagerForPass()
|
H A D | LoopAnalysisManager.cpp | 100 InnerAM->getCachedResult<FunctionAnalysisManagerLoopProxy>(*L)) in invalidate()
|
H A D | InlineAdvisor.cpp | 140 .getCachedResult<ProfileSummaryAnalysis>( in getDefaultInlineAdvice() 631 const auto *IA = MAM.getCachedResult<InlineAdvisorAnalysis>(M); in run() 650 const auto *IA = MAMProxy.getCachedResult<InlineAdvisorAnalysis>(M); in run()
|
H A D | OptimizationRemarkEmitter.cpp | 140 MAMProxy.getCachedResult<ProfileSummaryAnalysis>(*F.getParent())) in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | ModuleInliner.cpp | 72 auto *IAA = MAM.getCachedResult<InlineAdvisorAnalysis>(M); in getAdvisor() 118 ProfileSummaryInfo *PSI = MAM.getCachedResult<ProfileSummaryAnalysis>(M); in run()
|
H A D | SCCP.cpp | 230 DominatorTree *DT = FAM->getCachedResult<DominatorTreeAnalysis>(F); in runIPSCCP() 231 PostDominatorTree *PDT = FAM->getCachedResult<PostDominatorTreeAnalysis>(F); in runIPSCCP()
|
H A D | Inliner.cpp | 168 auto *IAA = MAM.getCachedResult<InlineAdvisorAnalysis>(M); in getAdvisor() 217 ProfileSummaryInfo *PSI = MAMProxy.getCachedResult<ProfileSummaryAnalysis>(M); in run()
|
H A D | LoopExtractor.cpp | 270 return FAM.getCachedResult<AssumptionAnalysis>(F); in run()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | PassManagerImpl.h | 121 if (auto *PI = getCachedResult<PassInstrumentationAnalysis>(IR)) in clear() 217 if (auto *PI = getCachedResult<PassInstrumentationAnalysis>(IR)) in invalidate()
|
H A D | PassManager.h | 424 typename PassT::Result *getCachedResult(IRUnitT &IR) const { in getCachedResult() function 698 typename PassT::Result *getCachedResult(IRUnitTParam &IR) const { in getCachedResult() function 700 OuterAM->template getCachedResult<PassT>(IR); in getCachedResult() 710 OuterAM->template getCachedResult<PassT>(IR); in cachedResultExists()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFunctionAnalysis.cpp | 37 .getCachedResult<MachineModuleAnalysis>(*F.getParent()) in run()
|
H A D | PHIElimination.cpp | 131 : LV(AM.getCachedResult<LiveVariablesAnalysis>(MF)), in PHIEliminationImpl() 132 LIS(AM.getCachedResult<LiveIntervalsAnalysis>(MF)), in PHIEliminationImpl() 133 MLI(AM.getCachedResult<MachineLoopAnalysis>(MF)), in PHIEliminationImpl() 134 MDT(AM.getCachedResult<MachineDominatorTreeAnalysis>(MF)), MFAM(&AM) {} in PHIEliminationImpl()
|
H A D | GCMetadata.cpp | 66 MAMProxy.getCachedResult<CollectorMetadataAnalysis>(*F.getParent()) in run()
|
H A D | IndirectBrExpandPass.cpp | 79 auto *DT = FAM.getCachedResult<DominatorTreeAnalysis>(F); in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | JumpTableToSwitch.cpp | 149 DominatorTree *DT = AM.getCachedResult<DominatorTreeAnalysis>(F); in run() 150 PostDominatorTree *PDT = AM.getCachedResult<PostDominatorTreeAnalysis>(F); in run()
|
H A D | SCCP.cpp | 124 auto *DT = AM.getCachedResult<DominatorTreeAnalysis>(F); in run()
|
H A D | LowerConstantIntrinsics.cpp | 163 AM.getCachedResult<DominatorTreeAnalysis>(F))) { in run()
|
H A D | PartiallyInlineLibCalls.cpp | 162 auto *DT = AM.getCachedResult<DominatorTreeAnalysis>(F); in run()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/ |
H A D | SimpleLoopUnswitch.h | 49 if (AM.getCachedResult<ShouldRunExtraSimpleLoopUnswitch>(L)) in run()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | BreakCriticalEdges.cpp | 85 auto *DT = AM.getCachedResult<DominatorTreeAnalysis>(F); in run() 86 auto *LI = AM.getCachedResult<LoopAnalysis>(F); in run()
|
H A D | AssumeBundleBuilder.cpp | 569 AM.getCachedResult<DominatorTreeAnalysis>(F))) in run() 579 DominatorTree* DT = AM.getCachedResult<DominatorTreeAnalysis>(F); in run()
|
H A D | LoopSimplify.cpp | 831 ScalarEvolution *SE = AM.getCachedResult<ScalarEvolutionAnalysis>(F); in run() 833 auto *MSSAAnalysis = AM.getCachedResult<MemorySSAAnalysis>(F); in run()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Vectorize/ |
H A D | LoopVectorize.h | 108 if (AM.getCachedResult<ShouldRunExtraVectorPasses>(F)) in run()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | PassManager.cpp | 63 InnerAM->getCachedResult<ModuleAnalysisManagerFunctionProxy>(F)) in invalidate()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | LowerAllowCheckPass.cpp | 135 MAMProxy.getCachedResult<ProfileSummaryAnalysis>(*F.getParent()); in run()
|