[llvm] bcbc611 - [CGP] Add Pass Dependencies
Andrew Litteken via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 22 12:03:15 PDT 2020
Author: Andrew Litteken
Date: 2020-07-22T12:02:53-07:00
New Revision: bcbc6117b5d944bca8519dd34131cda1e83789fe
URL: https://github.com/llvm/llvm-project/commit/bcbc6117b5d944bca8519dd34131cda1e83789fe
DIFF: https://github.com/llvm/llvm-project/commit/bcbc6117b5d944bca8519dd34131cda1e83789fe.diff
LOG: [CGP] Add Pass Dependencies
Add pass dependecies:
- TargetTransformInfoWrapperPass
- TargetPassConfig
- LoopInfoWrapperPass
- TargetLibraryInfoWrapperPass
To fix inconsistencies when passes are added to the pipeline.
Reviewers: efriedma, kmclaughlin, paquette
Reviewed By: efriedma
Differential Revision: https://reviews.llvm.org/D84346
Added:
Modified:
llvm/lib/CodeGen/CodeGenPrepare.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp
index 465ba08dbfcd..42cffafbb1ce 100644
--- a/llvm/lib/CodeGen/CodeGenPrepare.cpp
+++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp
@@ -439,7 +439,11 @@ char CodeGenPrepare::ID = 0;
INITIALIZE_PASS_BEGIN(CodeGenPrepare, DEBUG_TYPE,
"Optimize for code generation", false, false)
+INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
INITIALIZE_PASS_DEPENDENCY(ProfileSummaryInfoWrapperPass)
+INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
+INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
+INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
INITIALIZE_PASS_END(CodeGenPrepare, DEBUG_TYPE,
"Optimize for code generation", false, false)
More information about the llvm-commits
mailing list