[llvm] 281ae49 - [Pipelines] Guard a few more usages of GlobalsAA under the EnableGlobalAnalyses flag
Nuno Lopes via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 7 05:59:04 PDT 2023
Author: Nuno Lopes
Date: 2023-09-07T13:58:28+01:00
New Revision: 281ae4903d6b93d49783115dbbbb2f6bb0112e78
URL: https://github.com/llvm/llvm-project/commit/281ae4903d6b93d49783115dbbbb2f6bb0112e78
DIFF: https://github.com/llvm/llvm-project/commit/281ae4903d6b93d49783115dbbbb2f6bb0112e78.diff
LOG: [Pipelines] Guard a few more usages of GlobalsAA under the EnableGlobalAnalyses flag
Added:
Modified:
llvm/lib/Passes/PassBuilderPipelines.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Passes/PassBuilderPipelines.cpp b/llvm/lib/Passes/PassBuilderPipelines.cpp
index aa42fb3771141a5..b12b4ee3e0e59fd 100644
--- a/llvm/lib/Passes/PassBuilderPipelines.cpp
+++ b/llvm/lib/Passes/PassBuilderPipelines.cpp
@@ -856,11 +856,13 @@ PassBuilder::buildInlinerPipeline(OptimizationLevel Level,
// Require the GlobalsAA analysis for the module so we can query it within
// the CGSCC pipeline.
- MIWP.addModulePass(RequireAnalysisPass<GlobalsAA, Module>());
- // Invalidate AAManager so it can be recreated and pick up the newly available
- // GlobalsAA.
- MIWP.addModulePass(
- createModuleToFunctionPassAdaptor(InvalidateAnalysisPass<AAManager>()));
+ if (EnableGlobalAnalyses) {
+ MIWP.addModulePass(RequireAnalysisPass<GlobalsAA, Module>());
+ // Invalidate AAManager so it can be recreated and pick up the newly
+ // available GlobalsAA.
+ MIWP.addModulePass(
+ createModuleToFunctionPassAdaptor(InvalidateAnalysisPass<AAManager>()));
+ }
// Require the ProfileSummaryAnalysis for the module so we can query it within
// the inliner pass.
@@ -1328,7 +1330,8 @@ PassBuilder::buildModuleOptimizationPipeline(OptimizationLevel Level,
// information for all local globals here, the late loop passes and notably
// the vectorizer will be able to use them to help recognize vectorizable
// memory operations.
- MPM.addPass(RecomputeGlobalsAAPass());
+ if (EnableGlobalAnalyses)
+ MPM.addPass(RecomputeGlobalsAAPass());
invokeOptimizerEarlyEPCallbacks(MPM, Level);
@@ -1820,11 +1823,13 @@ PassBuilder::buildLTODefaultPipeline(OptimizationLevel Level,
// Require the GlobalsAA analysis for the module so we can query it within
// MainFPM.
- MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
- // Invalidate AAManager so it can be recreated and pick up the newly available
- // GlobalsAA.
- MPM.addPass(
- createModuleToFunctionPassAdaptor(InvalidateAnalysisPass<AAManager>()));
+ if (EnableGlobalAnalyses) {
+ MPM.addPass(RequireAnalysisPass<GlobalsAA, Module>());
+ // Invalidate AAManager so it can be recreated and pick up the newly
+ // available GlobalsAA.
+ MPM.addPass(
+ createModuleToFunctionPassAdaptor(InvalidateAnalysisPass<AAManager>()));
+ }
FunctionPassManager MainFPM;
MainFPM.addPass(createFunctionToLoopPassAdaptor(
More information about the llvm-commits
mailing list