Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 1 | //===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file defines the PassManagerBuilder class, which is used to set up a |
| 11 | // "standard" optimization sequence suitable for languages like C and C++. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/IPO/PassManagerBuilder.h" |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 16 | #include "llvm-c/Transforms/PassManagerBuilder.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/SmallVector.h" |
Chandler Carruth | 17e0bc3 | 2015-08-06 07:33:15 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
George Burgess IV | bfa401e | 2016-07-06 00:26:41 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/CFLAndersAliasAnalysis.h" |
| 20 | #include "llvm/Analysis/CFLSteensAliasAnalysis.h" |
Chandler Carruth | 21dcff7 | 2015-08-14 03:48:20 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/GlobalsModRef.h" |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/Passes.h" |
Chandler Carruth | 42ff448 | 2015-08-14 02:55:50 +0000 | [diff] [blame] | 23 | #include "llvm/Analysis/ScopedNoAliasAA.h" |
Chandler Carruth | 62d4215 | 2015-01-15 02:16:27 +0000 | [diff] [blame] | 24 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | 1db2282 | 2015-08-14 03:33:48 +0000 | [diff] [blame] | 25 | #include "llvm/Analysis/TypeBasedAliasAnalysis.h" |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 26 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 27 | #include "llvm/IR/LegacyPassManager.h" |
Teresa Johnson | 26ab577 | 2016-03-15 00:04:37 +0000 | [diff] [blame] | 28 | #include "llvm/IR/ModuleSummaryIndex.h" |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 29 | #include "llvm/IR/Verifier.h" |
| 30 | #include "llvm/Support/CommandLine.h" |
| 31 | #include "llvm/Support/ManagedStatic.h" |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 32 | #include "llvm/Target/TargetMachine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 33 | #include "llvm/Transforms/IPO.h" |
Chandler Carruth | f49f1a87 | 2015-12-27 08:13:45 +0000 | [diff] [blame] | 34 | #include "llvm/Transforms/IPO/ForceFunctionAttrs.h" |
Chandler Carruth | 9c4ed17 | 2016-02-18 11:03:11 +0000 | [diff] [blame] | 35 | #include "llvm/Transforms/IPO/FunctionAttrs.h" |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 36 | #include "llvm/Transforms/IPO/InferFunctionAttrs.h" |
Teresa Johnson | 26ab577 | 2016-03-15 00:04:37 +0000 | [diff] [blame] | 37 | #include "llvm/Transforms/Instrumentation.h" |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 38 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | 89c45a1 | 2016-03-11 08:50:55 +0000 | [diff] [blame] | 39 | #include "llvm/Transforms/Scalar/GVN.h" |
Hal Finkel | c34e511 | 2012-02-01 03:51:43 +0000 | [diff] [blame] | 40 | #include "llvm/Transforms/Vectorize.h" |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 41 | |
| 42 | using namespace llvm; |
| 43 | |
Hal Finkel | c34e511 | 2012-02-01 03:51:43 +0000 | [diff] [blame] | 44 | static cl::opt<bool> |
Nadav Rotem | 7f27e0b | 2013-10-18 23:38:13 +0000 | [diff] [blame] | 45 | RunLoopVectorization("vectorize-loops", cl::Hidden, |
Nadav Rotem | d3df665 | 2012-10-30 18:37:43 +0000 | [diff] [blame] | 46 | cl::desc("Run the Loop vectorization passes")); |
Nadav Rotem | c59ae20 | 2012-10-29 16:36:25 +0000 | [diff] [blame] | 47 | |
| 48 | static cl::opt<bool> |
Nadav Rotem | 7f27e0b | 2013-10-18 23:38:13 +0000 | [diff] [blame] | 49 | RunSLPVectorization("vectorize-slp", cl::Hidden, |
Nadav Rotem | d4dcc00 | 2013-04-15 05:39:58 +0000 | [diff] [blame] | 50 | cl::desc("Run the SLP vectorization passes")); |
| 51 | |
| 52 | static cl::opt<bool> |
Nadav Rotem | 7f27e0b | 2013-10-18 23:38:13 +0000 | [diff] [blame] | 53 | RunBBVectorization("vectorize-slp-aggressive", cl::Hidden, |
Nadav Rotem | d4dcc00 | 2013-04-15 05:39:58 +0000 | [diff] [blame] | 54 | cl::desc("Run the BB vectorization passes")); |
Hal Finkel | c34e511 | 2012-02-01 03:51:43 +0000 | [diff] [blame] | 55 | |
Hal Finkel | 204bf53 | 2012-04-13 17:15:33 +0000 | [diff] [blame] | 56 | static cl::opt<bool> |
| 57 | UseGVNAfterVectorization("use-gvn-after-vectorization", |
| 58 | cl::init(false), cl::Hidden, |
| 59 | cl::desc("Run GVN instead of Early CSE after vectorization passes")); |
| 60 | |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 61 | static cl::opt<bool> ExtraVectorizerPasses( |
| 62 | "extra-vectorizer-passes", cl::init(false), cl::Hidden, |
| 63 | cl::desc("Run cleanup optimization passes after vectorization.")); |
| 64 | |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 65 | static cl::opt<bool> |
| 66 | RunLoopRerolling("reroll-loops", cl::Hidden, |
| 67 | cl::desc("Run the loop rerolling pass")); |
| 68 | |
James Molloy | 0cbb2a86 | 2015-03-27 10:36:57 +0000 | [diff] [blame] | 69 | static cl::opt<bool> |
| 70 | RunFloat2Int("float-to-int", cl::Hidden, cl::init(true), |
| 71 | cl::desc("Run the float2int (float demotion) pass")); |
| 72 | |
Michael J. Spencer | 289067c | 2014-05-29 01:55:07 +0000 | [diff] [blame] | 73 | static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false), |
| 74 | cl::Hidden, |
| 75 | cl::desc("Run the load combining pass")); |
| 76 | |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 77 | static cl::opt<bool> |
| 78 | RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization", |
James Molloy | 6b95d8e | 2014-09-04 13:23:08 +0000 | [diff] [blame] | 79 | cl::init(true), cl::Hidden, |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 80 | cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop " |
| 81 | "vectorizer instead of before")); |
| 82 | |
George Burgess IV | bfa401e | 2016-07-06 00:26:41 +0000 | [diff] [blame] | 83 | // Experimental option to use CFL-AA |
| 84 | enum class CFLAAType { None, Steensgaard, Andersen, Both }; |
| 85 | static cl::opt<CFLAAType> |
| 86 | UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden, |
| 87 | cl::desc("Enable the new, experimental CFL alias analysis"), |
| 88 | cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"), |
| 89 | clEnumValN(CFLAAType::Steensgaard, "steens", |
| 90 | "Enable unification-based CFL-AA"), |
| 91 | clEnumValN(CFLAAType::Andersen, "anders", |
| 92 | "Enable inclusion-based CFL-AA"), |
| 93 | clEnumValN(CFLAAType::Both, "both", |
George Burgess IV | f84bb6fa | 2016-07-20 23:14:29 +0000 | [diff] [blame] | 94 | "Enable both variants of CFL-AA"), |
George Burgess IV | bfa401e | 2016-07-06 00:26:41 +0000 | [diff] [blame] | 95 | clEnumValEnd)); |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 96 | |
Gerolf Hoflehner | 24815d9 | 2014-09-10 19:55:29 +0000 | [diff] [blame] | 97 | static cl::opt<bool> |
Gerolf Hoflehner | 008e5cd | 2014-09-10 20:24:03 +0000 | [diff] [blame] | 98 | EnableMLSM("mlsm", cl::init(true), cl::Hidden, |
| 99 | cl::desc("Enable motion of merged load and store")); |
Gerolf Hoflehner | 24815d9 | 2014-09-10 19:55:29 +0000 | [diff] [blame] | 100 | |
Karthik Bhat | 88db86d | 2015-03-06 10:11:25 +0000 | [diff] [blame] | 101 | static cl::opt<bool> EnableLoopInterchange( |
| 102 | "enable-loopinterchange", cl::init(false), cl::Hidden, |
| 103 | cl::desc("Enable the new, experimental LoopInterchange Pass")); |
| 104 | |
Chandler Carruth | e9ea5a6 | 2015-07-22 11:57:28 +0000 | [diff] [blame] | 105 | static cl::opt<bool> EnableNonLTOGlobalsModRef( |
James Molloy | 4015925 | 2015-10-13 10:43:57 +0000 | [diff] [blame] | 106 | "enable-non-lto-gmr", cl::init(true), cl::Hidden, |
Chandler Carruth | e9ea5a6 | 2015-07-22 11:57:28 +0000 | [diff] [blame] | 107 | cl::desc( |
| 108 | "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline.")); |
| 109 | |
Adam Nemet | e54a4fa | 2015-11-03 23:50:08 +0000 | [diff] [blame] | 110 | static cl::opt<bool> EnableLoopLoadElim( |
Adam Nemet | c979c6e | 2016-03-15 22:26:12 +0000 | [diff] [blame] | 111 | "enable-loop-load-elim", cl::init(true), cl::Hidden, |
| 112 | cl::desc("Enable the LoopLoadElimination Pass")); |
Adam Nemet | e54a4fa | 2015-11-03 23:50:08 +0000 | [diff] [blame] | 113 | |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 114 | static cl::opt<std::string> RunPGOInstrGen( |
| 115 | "profile-generate", cl::init(""), cl::Hidden, |
| 116 | cl::desc("Enable generation phase of PGO instrumentation and specify the " |
| 117 | "path of profile data file")); |
| 118 | |
| 119 | static cl::opt<std::string> RunPGOInstrUse( |
| 120 | "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"), |
| 121 | cl::desc("Enable use phase of PGO instrumentation and specify the path " |
| 122 | "of profile data file")); |
| 123 | |
Ashutosh Nema | df6763a | 2016-02-06 07:47:48 +0000 | [diff] [blame] | 124 | static cl::opt<bool> UseLoopVersioningLICM( |
| 125 | "enable-loop-versioning-licm", cl::init(false), cl::Hidden, |
| 126 | cl::desc("Enable the experimental Loop Versioning LICM pass")); |
| 127 | |
Rong Xu | 96a19d3 | 2016-07-15 18:10:49 +0000 | [diff] [blame] | 128 | static cl::opt<bool> |
| 129 | DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden, |
| 130 | cl::desc("Disable pre-instrumentation inliner")); |
| 131 | |
| 132 | static cl::opt<int> PreInlineThreshold( |
| 133 | "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore, |
| 134 | cl::desc("Control the amount of inlining in pre-instrumentation inliner " |
| 135 | "(default = 75)")); |
| 136 | |
Alina Sbirlea | ba21ffe | 2016-07-22 22:02:19 +0000 | [diff] [blame^] | 137 | static cl::opt<bool> EnableGVNHoist( |
| 138 | "enable-gvn-hoist", cl::init(false), cl::Hidden, |
| 139 | cl::desc("Enable the experimental GVN Hoisting pass")); |
| 140 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 141 | PassManagerBuilder::PassManagerBuilder() { |
| 142 | OptLevel = 2; |
| 143 | SizeLevel = 0; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 144 | LibraryInfo = nullptr; |
| 145 | Inliner = nullptr; |
Teresa Johnson | 26ab577 | 2016-03-15 00:04:37 +0000 | [diff] [blame] | 146 | ModuleSummary = nullptr; |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 147 | DisableUnitAtATime = false; |
| 148 | DisableUnrollLoops = false; |
Nadav Rotem | d4dcc00 | 2013-04-15 05:39:58 +0000 | [diff] [blame] | 149 | BBVectorize = RunBBVectorization; |
Nadav Rotem | a1e5e44 | 2013-04-15 04:54:42 +0000 | [diff] [blame] | 150 | SLPVectorize = RunSLPVectorization; |
Nadav Rotem | c59ae20 | 2012-10-29 16:36:25 +0000 | [diff] [blame] | 151 | LoopVectorize = RunLoopVectorization; |
Hal Finkel | 29aeb20 | 2013-11-17 16:02:50 +0000 | [diff] [blame] | 152 | RerollLoops = RunLoopRerolling; |
Michael J. Spencer | 289067c | 2014-05-29 01:55:07 +0000 | [diff] [blame] | 153 | LoadCombine = RunLoadCombine; |
Rafael Espindola | 208bc53 | 2014-08-21 13:13:17 +0000 | [diff] [blame] | 154 | DisableGVNLoadPRE = false; |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 155 | VerifyInput = false; |
| 156 | VerifyOutput = false; |
Nick Lewycky | 9e6d184 | 2014-09-13 21:46:00 +0000 | [diff] [blame] | 157 | MergeFunctions = false; |
Teresa Johnson | d3a33a1 | 2015-07-06 16:22:42 +0000 | [diff] [blame] | 158 | PrepareForLTO = false; |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 159 | PGOInstrGen = RunPGOInstrGen; |
| 160 | PGOInstrUse = RunPGOInstrUse; |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 161 | PrepareForThinLTO = false; |
| 162 | PerformThinLTO = false; |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | PassManagerBuilder::~PassManagerBuilder() { |
| 166 | delete LibraryInfo; |
| 167 | delete Inliner; |
| 168 | } |
| 169 | |
David Chisnall | 719a72f | 2011-08-16 13:58:41 +0000 | [diff] [blame] | 170 | /// Set of global extensions, automatically added as part of the standard set. |
| 171 | static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy, |
| 172 | PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions; |
| 173 | |
| 174 | void PassManagerBuilder::addGlobalExtension( |
| 175 | PassManagerBuilder::ExtensionPointTy Ty, |
| 176 | PassManagerBuilder::ExtensionFn Fn) { |
Justin Lebar | 2fe1323 | 2016-03-30 20:39:29 +0000 | [diff] [blame] | 177 | GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn))); |
David Chisnall | 719a72f | 2011-08-16 13:58:41 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 180 | void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) { |
Justin Lebar | 2fe1323 | 2016-03-30 20:39:29 +0000 | [diff] [blame] | 181 | Extensions.push_back(std::make_pair(Ty, std::move(Fn))); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy, |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 185 | legacy::PassManagerBase &PM) const { |
David Chisnall | 719a72f | 2011-08-16 13:58:41 +0000 | [diff] [blame] | 186 | for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i) |
| 187 | if ((*GlobalExtensions)[i].first == ETy) |
| 188 | (*GlobalExtensions)[i].second(*this, PM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 189 | for (unsigned i = 0, e = Extensions.size(); i != e; ++i) |
| 190 | if (Extensions[i].first == ETy) |
| 191 | Extensions[i].second(*this, PM); |
| 192 | } |
| 193 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 194 | void PassManagerBuilder::addInitialAliasAnalysisPasses( |
| 195 | legacy::PassManagerBase &PM) const { |
George Burgess IV | bfa401e | 2016-07-06 00:26:41 +0000 | [diff] [blame] | 196 | switch (UseCFLAA) { |
| 197 | case CFLAAType::Steensgaard: |
| 198 | PM.add(createCFLSteensAAWrapperPass()); |
| 199 | break; |
| 200 | case CFLAAType::Andersen: |
| 201 | PM.add(createCFLAndersAAWrapperPass()); |
| 202 | break; |
| 203 | case CFLAAType::Both: |
| 204 | PM.add(createCFLSteensAAWrapperPass()); |
| 205 | PM.add(createCFLAndersAAWrapperPass()); |
| 206 | break; |
| 207 | default: |
| 208 | break; |
| 209 | } |
| 210 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 211 | // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that |
| 212 | // BasicAliasAnalysis wins if they disagree. This is intended to help |
| 213 | // support "obvious" type-punning idioms. |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 214 | PM.add(createTypeBasedAAWrapperPass()); |
| 215 | PM.add(createScopedNoAliasAAWrapperPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 216 | } |
| 217 | |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 218 | void PassManagerBuilder::addInstructionCombiningPass( |
| 219 | legacy::PassManagerBase &PM) const { |
| 220 | bool ExpensiveCombines = OptLevel > 2; |
| 221 | PM.add(createInstructionCombiningPass(ExpensiveCombines)); |
| 222 | } |
| 223 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 224 | void PassManagerBuilder::populateFunctionPassManager( |
| 225 | legacy::FunctionPassManager &FPM) { |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 226 | addExtensionsToPM(EP_EarlyAsPossible, FPM); |
| 227 | |
| 228 | // Add LibraryInfo if we have some. |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 229 | if (LibraryInfo) |
| 230 | FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 231 | |
| 232 | if (OptLevel == 0) return; |
| 233 | |
| 234 | addInitialAliasAnalysisPasses(FPM); |
| 235 | |
| 236 | FPM.add(createCFGSimplificationPass()); |
David Majnemer | cbf614a | 2016-06-15 00:19:09 +0000 | [diff] [blame] | 237 | FPM.add(createSROAPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 238 | FPM.add(createEarlyCSEPass()); |
Alina Sbirlea | ba21ffe | 2016-07-22 22:02:19 +0000 | [diff] [blame^] | 239 | if(EnableGVNHoist) |
| 240 | FPM.add(createGVNHoistPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 241 | FPM.add(createLowerExpectIntrinsicPass()); |
| 242 | } |
| 243 | |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 244 | // Do PGO instrumentation generation or use pass as the option specified. |
| 245 | void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) { |
Rong Xu | 96a19d3 | 2016-07-15 18:10:49 +0000 | [diff] [blame] | 246 | if (PGOInstrGen.empty() && PGOInstrUse.empty()) |
| 247 | return; |
| 248 | // Perform the preinline and cleanup passes for O1 and above. |
| 249 | // And avoid doing them if optimizing for size. |
| 250 | if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner) { |
| 251 | // Create preinline pass. |
| 252 | MPM.add(createFunctionInliningPass(PreInlineThreshold)); |
| 253 | MPM.add(createSROAPass()); |
| 254 | MPM.add(createEarlyCSEPass()); // Catch trivial redundancies |
| 255 | MPM.add(createCFGSimplificationPass()); // Merge & remove BBs |
| 256 | MPM.add(createInstructionCombiningPass()); // Combine silly seq's |
| 257 | addExtensionsToPM(EP_Peephole, MPM); |
| 258 | } |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 259 | if (!PGOInstrGen.empty()) { |
Xinliang David Li | 8aebf44 | 2016-05-06 05:49:19 +0000 | [diff] [blame] | 260 | MPM.add(createPGOInstrumentationGenLegacyPass()); |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 261 | // Add the profile lowering pass. |
| 262 | InstrProfOptions Options; |
| 263 | Options.InstrProfileOutput = PGOInstrGen; |
Xinliang David Li | e6b8929 | 2016-04-18 17:47:38 +0000 | [diff] [blame] | 264 | MPM.add(createInstrProfilingLegacyPass(Options)); |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 265 | } |
| 266 | if (!PGOInstrUse.empty()) |
Xinliang David Li | d55827f | 2016-05-07 05:39:12 +0000 | [diff] [blame] | 267 | MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse)); |
Rong Xu | 34abbfb | 2016-01-21 18:28:59 +0000 | [diff] [blame] | 268 | } |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 269 | void PassManagerBuilder::addFunctionSimplificationPasses( |
Mehdi Amini | 9c1c3ac | 2016-02-11 22:09:11 +0000 | [diff] [blame] | 270 | legacy::PassManagerBase &MPM) { |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 271 | // Start of function pass. |
| 272 | // Break up aggregate allocas, using SSAUpdater. |
David Majnemer | cbf614a | 2016-06-15 00:19:09 +0000 | [diff] [blame] | 273 | MPM.add(createSROAPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 274 | MPM.add(createEarlyCSEPass()); // Catch trivial redundancies |
Justin Lebar | cf63b64 | 2016-04-15 00:32:12 +0000 | [diff] [blame] | 275 | // Speculative execution if the target has divergent branches; otherwise nop. |
| 276 | MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 277 | MPM.add(createJumpThreadingPass()); // Thread jumps. |
| 278 | MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals |
| 279 | MPM.add(createCFGSimplificationPass()); // Merge & remove BBs |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 280 | // Combine silly seq's |
| 281 | addInstructionCombiningPass(MPM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 282 | addExtensionsToPM(EP_Peephole, MPM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 283 | |
Akira Hatanaka | d9699bc | 2015-06-09 19:07:19 +0000 | [diff] [blame] | 284 | MPM.add(createTailCallEliminationPass()); // Eliminate tail calls |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 285 | MPM.add(createCFGSimplificationPass()); // Merge & remove BBs |
| 286 | MPM.add(createReassociatePass()); // Reassociate expressions |
Roman Divacky | d2b9a1b | 2014-11-21 19:53:24 +0000 | [diff] [blame] | 287 | // Rotate Loop - disable header duplication at -Oz |
| 288 | MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 289 | MPM.add(createLICMPass()); // Hoist loop invariants |
| 290 | MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3)); |
Michael Zolotukhin | 74621cc | 2015-09-24 03:50:17 +0000 | [diff] [blame] | 291 | MPM.add(createCFGSimplificationPass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 292 | addInstructionCombiningPass(MPM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 293 | MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars |
| 294 | MPM.add(createLoopIdiomPass()); // Recognize idioms like memset. |
| 295 | MPM.add(createLoopDeletionPass()); // Delete dead loops |
Karthik Bhat | 8210fdf | 2015-04-23 04:51:44 +0000 | [diff] [blame] | 296 | if (EnableLoopInterchange) { |
Karthik Bhat | 88db86d | 2015-03-06 10:11:25 +0000 | [diff] [blame] | 297 | MPM.add(createLoopInterchangePass()); // Interchange loops |
Karthik Bhat | 8210fdf | 2015-04-23 04:51:44 +0000 | [diff] [blame] | 298 | MPM.add(createCFGSimplificationPass()); |
| 299 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 300 | if (!DisableUnrollLoops) |
Hal Finkel | 86b3064 | 2014-03-31 23:23:51 +0000 | [diff] [blame] | 301 | MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 302 | addExtensionsToPM(EP_LoopOptimizerEnd, MPM); |
| 303 | |
Gerolf Hoflehner | f27ae6c | 2014-07-18 19:13:09 +0000 | [diff] [blame] | 304 | if (OptLevel > 1) { |
Gerolf Hoflehner | 24815d9 | 2014-09-10 19:55:29 +0000 | [diff] [blame] | 305 | if (EnableMLSM) |
| 306 | MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds |
Rafael Espindola | 208bc53 | 2014-08-21 13:13:17 +0000 | [diff] [blame] | 307 | MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies |
Gerolf Hoflehner | f27ae6c | 2014-07-18 19:13:09 +0000 | [diff] [blame] | 308 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 309 | MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset |
| 310 | MPM.add(createSCCPPass()); // Constant prop with SCCP |
| 311 | |
Hal Finkel | 2bb61ba | 2015-02-17 01:36:59 +0000 | [diff] [blame] | 312 | // Delete dead bit computations (instcombine runs after to fold away the dead |
| 313 | // computations, and then ADCE will run later to exploit any new DCE |
| 314 | // opportunities that creates). |
| 315 | MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations |
| 316 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 317 | // Run instcombine after redundancy elimination to exploit opportunities |
| 318 | // opened up by them. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 319 | addInstructionCombiningPass(MPM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 320 | addExtensionsToPM(EP_Peephole, MPM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 321 | MPM.add(createJumpThreadingPass()); // Thread jumps |
| 322 | MPM.add(createCorrelatedValuePropagationPass()); |
| 323 | MPM.add(createDeadStoreEliminationPass()); // Delete dead stores |
James Molloy | 8357024 | 2015-02-16 18:59:54 +0000 | [diff] [blame] | 324 | MPM.add(createLICMPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 325 | |
| 326 | addExtensionsToPM(EP_ScalarOptimizerLate, MPM); |
| 327 | |
Hal Finkel | 29aeb20 | 2013-11-17 16:02:50 +0000 | [diff] [blame] | 328 | if (RerollLoops) |
Hal Finkel | bf45efd | 2013-11-16 23:59:05 +0000 | [diff] [blame] | 329 | MPM.add(createLoopRerollPass()); |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 330 | if (!RunSLPAfterLoopVectorization) { |
| 331 | if (SLPVectorize) |
| 332 | MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. |
Nadav Rotem | d4dcc00 | 2013-04-15 05:39:58 +0000 | [diff] [blame] | 333 | |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 334 | if (BBVectorize) { |
| 335 | MPM.add(createBBVectorizePass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 336 | addInstructionCombiningPass(MPM); |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 337 | addExtensionsToPM(EP_Peephole, MPM); |
| 338 | if (OptLevel > 1 && UseGVNAfterVectorization) |
Rafael Espindola | 208bc53 | 2014-08-21 13:13:17 +0000 | [diff] [blame] | 339 | MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 340 | else |
| 341 | MPM.add(createEarlyCSEPass()); // Catch trivial redundancies |
Hal Finkel | bf4db4f | 2013-01-29 00:22:49 +0000 | [diff] [blame] | 342 | |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 343 | // BBVectorize may have significantly shortened a loop body; unroll again. |
| 344 | if (!DisableUnrollLoops) |
| 345 | MPM.add(createLoopUnrollPass()); |
| 346 | } |
Hal Finkel | c34e511 | 2012-02-01 03:51:43 +0000 | [diff] [blame] | 347 | } |
| 348 | |
Michael J. Spencer | 289067c | 2014-05-29 01:55:07 +0000 | [diff] [blame] | 349 | if (LoadCombine) |
| 350 | MPM.add(createLoadCombinePass()); |
| 351 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 352 | MPM.add(createAggressiveDCEPass()); // Delete dead instructions |
Tom Stellard | aa664d9 | 2013-08-06 02:43:45 +0000 | [diff] [blame] | 353 | MPM.add(createCFGSimplificationPass()); // Merge & remove BBs |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 354 | // Clean up after everything. |
| 355 | addInstructionCombiningPass(MPM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 356 | addExtensionsToPM(EP_Peephole, MPM); |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | void PassManagerBuilder::populateModulePassManager( |
| 360 | legacy::PassManagerBase &MPM) { |
| 361 | // Allow forcing function attributes as a debugging and tuning aid. |
| 362 | MPM.add(createForceFunctionAttrsLegacyPass()); |
| 363 | |
| 364 | // If all optimizations are disabled, just run the always-inline pass and, |
| 365 | // if enabled, the function merging pass. |
| 366 | if (OptLevel == 0) { |
| 367 | addPGOInstrPasses(MPM); |
| 368 | if (Inliner) { |
| 369 | MPM.add(Inliner); |
| 370 | Inliner = nullptr; |
| 371 | } |
| 372 | |
| 373 | // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly |
| 374 | // creates a CGSCC pass manager, but we don't want to add extensions into |
| 375 | // that pass manager. To prevent this we insert a no-op module pass to reset |
| 376 | // the pass manager to get the same behavior as EP_OptimizerLast in non-O0 |
| 377 | // builds. The function merging pass is |
| 378 | if (MergeFunctions) |
| 379 | MPM.add(createMergeFunctionsPass()); |
| 380 | else if (!GlobalExtensions->empty() || !Extensions.empty()) |
| 381 | MPM.add(createBarrierNoopPass()); |
| 382 | |
| 383 | addExtensionsToPM(EP_EnabledOnOptLevel0, MPM); |
| 384 | return; |
| 385 | } |
| 386 | |
| 387 | // Add LibraryInfo if we have some. |
| 388 | if (LibraryInfo) |
| 389 | MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); |
| 390 | |
| 391 | addInitialAliasAnalysisPasses(MPM); |
| 392 | |
| 393 | if (!DisableUnitAtATime) { |
| 394 | // Infer attributes about declarations if possible. |
| 395 | MPM.add(createInferFunctionAttrsLegacyPass()); |
| 396 | |
| 397 | addExtensionsToPM(EP_ModuleOptimizerEarly, MPM); |
| 398 | |
| 399 | MPM.add(createIPSCCPPass()); // IP SCCP |
| 400 | MPM.add(createGlobalOptimizerPass()); // Optimize out global vars |
| 401 | // Promote any localized global vars. |
| 402 | MPM.add(createPromoteMemoryToRegisterPass()); |
| 403 | |
| 404 | MPM.add(createDeadArgEliminationPass()); // Dead argument elimination |
| 405 | |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 406 | addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 407 | addExtensionsToPM(EP_Peephole, MPM); |
| 408 | MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE |
| 409 | } |
| 410 | |
Rong Xu | 6e34c49 | 2016-04-27 23:20:27 +0000 | [diff] [blame] | 411 | if (!PerformThinLTO) { |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 412 | /// PGO instrumentation is added during the compile phase for ThinLTO, do |
| 413 | /// not run it a second time |
| 414 | addPGOInstrPasses(MPM); |
Rong Xu | 6e34c49 | 2016-04-27 23:20:27 +0000 | [diff] [blame] | 415 | } |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 416 | |
Teresa Johnson | cd21a64 | 2016-07-17 14:47:01 +0000 | [diff] [blame] | 417 | // Indirect call promotion that promotes intra-module targets only. |
| 418 | MPM.add(createPGOIndirectCallPromotionLegacyPass()); |
| 419 | |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 420 | if (EnableNonLTOGlobalsModRef) |
| 421 | // We add a module alias analysis pass here. In part due to bugs in the |
| 422 | // analysis infrastructure this "works" in that the analysis stays alive |
| 423 | // for the entire SCC pass run below. |
| 424 | MPM.add(createGlobalsAAWrapperPass()); |
| 425 | |
| 426 | // Start of CallGraph SCC passes. |
| 427 | if (!DisableUnitAtATime) |
| 428 | MPM.add(createPruneEHPass()); // Remove dead EH info |
| 429 | if (Inliner) { |
| 430 | MPM.add(Inliner); |
| 431 | Inliner = nullptr; |
| 432 | } |
| 433 | if (!DisableUnitAtATime) |
Chandler Carruth | 9c4ed17 | 2016-02-18 11:03:11 +0000 | [diff] [blame] | 434 | MPM.add(createPostOrderFunctionAttrsLegacyPass()); |
Mehdi Amini | ec8bee1 | 2016-02-16 22:54:27 +0000 | [diff] [blame] | 435 | if (OptLevel > 2) |
| 436 | MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args |
| 437 | |
| 438 | addFunctionSimplificationPasses(MPM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 439 | |
Mehdi Amini | 45c7b3e | 2016-05-02 16:53:16 +0000 | [diff] [blame] | 440 | // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC |
| 441 | // pass manager that we are specifically trying to avoid. To prevent this |
| 442 | // we must insert a no-op module pass to reset the pass manager. |
| 443 | MPM.add(createBarrierNoopPass()); |
| 444 | |
Mehdi Amini | 7f7d8be | 2016-05-03 15:46:00 +0000 | [diff] [blame] | 445 | if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO && |
| 446 | !PrepareForThinLTO) |
| 447 | // Remove avail extern fns and globals definitions if we aren't |
| 448 | // compiling an object file for later LTO. For LTO we want to preserve |
| 449 | // these so they are eligible for inlining at link-time. Note if they |
| 450 | // are unreferenced they will be removed by GlobalDCE later, so |
| 451 | // this only impacts referenced available externally globals. |
| 452 | // Eventually they will be suppressed during codegen, but eliminating |
| 453 | // here enables more opportunity for GlobalDCE as it may make |
| 454 | // globals referenced by available external functions dead |
| 455 | // and saves running remaining passes on the eliminated functions. |
| 456 | MPM.add(createEliminateAvailableExternallyPass()); |
| 457 | |
Mehdi Amini | 45c7b3e | 2016-05-02 16:53:16 +0000 | [diff] [blame] | 458 | if (!DisableUnitAtATime) |
| 459 | MPM.add(createReversePostOrderFunctionAttrsPass()); |
| 460 | |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 461 | // If we are planning to perform ThinLTO later, let's not bloat the code with |
| 462 | // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes |
| 463 | // during ThinLTO and perform the rest of the optimizations afterward. |
Mehdi Amini | f72ca86b | 2016-04-25 08:47:37 +0000 | [diff] [blame] | 464 | if (PrepareForThinLTO) { |
Mehdi Amini | bf4513b | 2016-04-25 08:47:49 +0000 | [diff] [blame] | 465 | // Reduce the size of the IR as much as possible. |
| 466 | MPM.add(createGlobalOptimizerPass()); |
Mehdi Amini | f72ca86b | 2016-04-25 08:47:37 +0000 | [diff] [blame] | 467 | // Rename anon function to be able to export them in the summary. |
| 468 | MPM.add(createNameAnonFunctionPass()); |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 469 | return; |
Mehdi Amini | f72ca86b | 2016-04-25 08:47:37 +0000 | [diff] [blame] | 470 | } |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 471 | |
Mehdi Amini | 31407ba | 2016-05-06 18:17:03 +0000 | [diff] [blame] | 472 | if (PerformThinLTO) |
| 473 | // Optimize globals now when performing ThinLTO, this enables more |
| 474 | // optimizations later. |
| 475 | MPM.add(createGlobalOptimizerPass()); |
| 476 | |
Ashutosh Nema | 2260a3a | 2016-02-11 09:23:53 +0000 | [diff] [blame] | 477 | // Scheduling LoopVersioningLICM when inlining is over, because after that |
Ashutosh Nema | df6763a | 2016-02-06 07:47:48 +0000 | [diff] [blame] | 478 | // we may see more accurate aliasing. Reason to run this late is that too |
| 479 | // early versioning may prevent further inlining due to increase of code |
Mehdi Amini | 31407ba | 2016-05-06 18:17:03 +0000 | [diff] [blame] | 480 | // size. By placing it just after inlining other optimizations which runs |
| 481 | // later might get benefit of no-alias assumption in clone loop. |
Ashutosh Nema | df6763a | 2016-02-06 07:47:48 +0000 | [diff] [blame] | 482 | if (UseLoopVersioningLICM) { |
| 483 | MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM |
| 484 | MPM.add(createLICMPass()); // Hoist loop invariants |
| 485 | } |
| 486 | |
Chandler Carruth | 08eebe2 | 2015-07-23 09:34:01 +0000 | [diff] [blame] | 487 | if (EnableNonLTOGlobalsModRef) |
| 488 | // We add a fresh GlobalsModRef run at this point. This is particularly |
| 489 | // useful as the above will have inlined, DCE'ed, and function-attr |
| 490 | // propagated everything. We should at this point have a reasonably minimal |
| 491 | // and richly annotated call graph. By computing aliasing and mod/ref |
| 492 | // information for all local globals here, the late loop passes and notably |
| 493 | // the vectorizer will be able to use them to help recognize vectorizable |
| 494 | // memory operations. |
| 495 | // |
| 496 | // Note that this relies on a bug in the pass manager which preserves |
| 497 | // a module analysis into a function pass pipeline (and throughout it) so |
| 498 | // long as the first function pass doesn't invalidate the module analysis. |
| 499 | // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for |
| 500 | // this to work. Fortunately, it is trivial to preserve AliasAnalysis |
| 501 | // (doing nothing preserves it as it is required to be conservatively |
| 502 | // correct in the face of IR changes). |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 503 | MPM.add(createGlobalsAAWrapperPass()); |
Chandler Carruth | 08eebe2 | 2015-07-23 09:34:01 +0000 | [diff] [blame] | 504 | |
James Molloy | 0cbb2a86 | 2015-03-27 10:36:57 +0000 | [diff] [blame] | 505 | if (RunFloat2Int) |
| 506 | MPM.add(createFloat2IntPass()); |
| 507 | |
Tobias Grosser | 39a7bd1 | 2015-07-16 08:20:37 +0000 | [diff] [blame] | 508 | addExtensionsToPM(EP_VectorizerStart, MPM); |
| 509 | |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 510 | // Re-rotate loops in all our loop nests. These may have fallout out of |
| 511 | // rotated form due to GVN or other transformations, and the vectorizer relies |
Alexey Bataev | da33d80 | 2015-07-10 10:37:09 +0000 | [diff] [blame] | 512 | // on the rotated form. Disable header duplication at -Oz. |
| 513 | MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1)); |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 514 | |
Adam Nemet | 938d3d6 | 2015-05-14 12:05:18 +0000 | [diff] [blame] | 515 | // Distribute loops to allow partial vectorization. I.e. isolate dependences |
Adam Nemet | d2fa414 | 2016-04-27 05:28:18 +0000 | [diff] [blame] | 516 | // into separate loop that would otherwise inhibit vectorization. This is |
| 517 | // currently only performed for loops marked with the metadata |
| 518 | // llvm.loop.distribute=true or when -enable-loop-distribute is specified. |
| 519 | MPM.add(createLoopDistributePass(/*ProcessAllLoopsByDefault=*/false)); |
Adam Nemet | 938d3d6 | 2015-05-14 12:05:18 +0000 | [diff] [blame] | 520 | |
Renato Golin | 729a3ae | 2013-12-05 21:20:02 +0000 | [diff] [blame] | 521 | MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize)); |
Adam Nemet | e54a4fa | 2015-11-03 23:50:08 +0000 | [diff] [blame] | 522 | |
| 523 | // Eliminate loads by forwarding stores from the previous iteration to loads |
| 524 | // of the current iteration. |
| 525 | if (EnableLoopLoadElim) |
| 526 | MPM.add(createLoopLoadEliminationPass()); |
| 527 | |
Renato Golin | 729a3ae | 2013-12-05 21:20:02 +0000 | [diff] [blame] | 528 | // FIXME: Because of #pragma vectorize enable, the passes below are always |
| 529 | // inserted in the pipeline, even when the vectorizer doesn't run (ex. when |
| 530 | // on -O1 and no #pragma is found). Would be good to have these two passes |
| 531 | // as function calls, so that we can only pass them when the vectorizer |
| 532 | // changed the code. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 533 | addInstructionCombiningPass(MPM); |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 534 | if (OptLevel > 1 && ExtraVectorizerPasses) { |
| 535 | // At higher optimization levels, try to clean up any runtime overlap and |
| 536 | // alignment checks inserted by the vectorizer. We want to track correllated |
| 537 | // runtime checks for two inner loops in the same outer loop, fold any |
| 538 | // common computations, hoist loop-invariant aspects out of any outer loop, |
| 539 | // and unswitch the runtime checks if possible. Once hoisted, we may have |
| 540 | // dead (or speculatable) control flows or more combining opportunities. |
| 541 | MPM.add(createEarlyCSEPass()); |
| 542 | MPM.add(createCorrelatedValuePropagationPass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 543 | addInstructionCombiningPass(MPM); |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 544 | MPM.add(createLICMPass()); |
| 545 | MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3)); |
| 546 | MPM.add(createCFGSimplificationPass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 547 | addInstructionCombiningPass(MPM); |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 548 | } |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 549 | |
| 550 | if (RunSLPAfterLoopVectorization) { |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 551 | if (SLPVectorize) { |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 552 | MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. |
Chandler Carruth | 7b8297a | 2014-10-14 00:31:29 +0000 | [diff] [blame] | 553 | if (OptLevel > 1 && ExtraVectorizerPasses) { |
| 554 | MPM.add(createEarlyCSEPass()); |
| 555 | } |
| 556 | } |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 557 | |
| 558 | if (BBVectorize) { |
| 559 | MPM.add(createBBVectorizePass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 560 | addInstructionCombiningPass(MPM); |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 561 | addExtensionsToPM(EP_Peephole, MPM); |
| 562 | if (OptLevel > 1 && UseGVNAfterVectorization) |
Rafael Espindola | 208bc53 | 2014-08-21 13:13:17 +0000 | [diff] [blame] | 563 | MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies |
James Molloy | 568da09 | 2014-08-06 12:56:19 +0000 | [diff] [blame] | 564 | else |
| 565 | MPM.add(createEarlyCSEPass()); // Catch trivial redundancies |
| 566 | |
| 567 | // BBVectorize may have significantly shortened a loop body; unroll again. |
| 568 | if (!DisableUnrollLoops) |
| 569 | MPM.add(createLoopUnrollPass()); |
| 570 | } |
| 571 | } |
| 572 | |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 573 | addExtensionsToPM(EP_Peephole, MPM); |
Renato Golin | 729a3ae | 2013-12-05 21:20:02 +0000 | [diff] [blame] | 574 | MPM.add(createCFGSimplificationPass()); |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 575 | addInstructionCombiningPass(MPM); |
Chandler Carruth | 08e1b87 | 2013-06-24 07:21:47 +0000 | [diff] [blame] | 576 | |
Kevin Qin | 49bc764 | 2015-03-12 05:36:01 +0000 | [diff] [blame] | 577 | if (!DisableUnrollLoops) { |
Hal Finkel | 86b3064 | 2014-03-31 23:23:51 +0000 | [diff] [blame] | 578 | MPM.add(createLoopUnrollPass()); // Unroll small loops |
| 579 | |
Wei Mi | bf727ba | 2015-05-14 22:02:54 +0000 | [diff] [blame] | 580 | // LoopUnroll may generate some redundency to cleanup. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 581 | addInstructionCombiningPass(MPM); |
Wei Mi | bf727ba | 2015-05-14 22:02:54 +0000 | [diff] [blame] | 582 | |
Kevin Qin | 49bc764 | 2015-03-12 05:36:01 +0000 | [diff] [blame] | 583 | // Runtime unrolling will introduce runtime check in loop prologue. If the |
| 584 | // unrolled loop is a inner loop, then the prologue will be inside the |
| 585 | // outer loop. LICM pass can help to promote the runtime check out if the |
| 586 | // checked value is loop invariant. |
| 587 | MPM.add(createLICMPass()); |
Manuel Jacob | a485984 | 2016-06-02 22:14:26 +0000 | [diff] [blame] | 588 | |
| 589 | // Get rid of LCSSA nodes. |
| 590 | MPM.add(createInstructionSimplifierPass()); |
Kevin Qin | 49bc764 | 2015-03-12 05:36:01 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Hal Finkel | d67e463 | 2014-09-07 20:05:11 +0000 | [diff] [blame] | 593 | // After vectorization and unrolling, assume intrinsics may tell us more |
| 594 | // about pointer alignments. |
| 595 | MPM.add(createAlignmentFromAssumptionsPass()); |
| 596 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 597 | if (!DisableUnitAtATime) { |
| 598 | // FIXME: We shouldn't bother with this anymore. |
| 599 | MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes |
| 600 | |
Evan Cheng | 8c6b06d | 2012-09-28 21:23:26 +0000 | [diff] [blame] | 601 | // GlobalOpt already deletes dead functions and globals, at -O2 try a |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 602 | // late pass of GlobalDCE. It is capable of deleting dead cycles. |
Evan Cheng | 8c6b06d | 2012-09-28 21:23:26 +0000 | [diff] [blame] | 603 | if (OptLevel > 1) { |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 604 | MPM.add(createGlobalDCEPass()); // Remove dead fns and globals. |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 605 | MPM.add(createConstantMergePass()); // Merge dup global constants |
Evan Cheng | 8c6b06d | 2012-09-28 21:23:26 +0000 | [diff] [blame] | 606 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 607 | } |
Nick Lewycky | 9e6d184 | 2014-09-13 21:46:00 +0000 | [diff] [blame] | 608 | |
| 609 | if (MergeFunctions) |
| 610 | MPM.add(createMergeFunctionsPass()); |
| 611 | |
Kostya Serebryany | e505a5a | 2012-03-23 23:22:59 +0000 | [diff] [blame] | 612 | addExtensionsToPM(EP_OptimizerLast, MPM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 615 | void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) { |
Peter Collingbourne | fad596a | 2016-05-25 21:26:14 +0000 | [diff] [blame] | 616 | // Remove unused virtual tables to improve the quality of code generated by |
| 617 | // whole-program devirtualization and bitset lowering. |
| 618 | PM.add(createGlobalDCEPass()); |
| 619 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 620 | // Provide AliasAnalysis services for optimizations. |
| 621 | addInitialAliasAnalysisPasses(PM); |
| 622 | |
Teresa Johnson | 26ab577 | 2016-03-15 00:04:37 +0000 | [diff] [blame] | 623 | if (ModuleSummary) |
| 624 | PM.add(createFunctionImportPass(ModuleSummary)); |
Teresa Johnson | 5fcbdb7 | 2015-12-07 19:21:11 +0000 | [diff] [blame] | 625 | |
Chandler Carruth | f49f1a87 | 2015-12-27 08:13:45 +0000 | [diff] [blame] | 626 | // Allow forcing function attributes as a debugging and tuning aid. |
| 627 | PM.add(createForceFunctionAttrsLegacyPass()); |
| 628 | |
Chandler Carruth | 3a040e6 | 2015-12-27 08:41:34 +0000 | [diff] [blame] | 629 | // Infer attributes about declarations if possible. |
| 630 | PM.add(createInferFunctionAttrsLegacyPass()); |
| 631 | |
Peter Collingbourne | fad596a | 2016-05-25 21:26:14 +0000 | [diff] [blame] | 632 | if (OptLevel > 1) { |
| 633 | // Indirect call promotion. This should promote all the targets that are |
| 634 | // left by the earlier promotion pass that promotes intra-module targets. |
| 635 | // This two-step promotion is to save the compile time. For LTO, it should |
| 636 | // produce the same result as if we only do promotion here. |
| 637 | PM.add(createPGOIndirectCallPromotionLegacyPass(true)); |
Rong Xu | 6e34c49 | 2016-04-27 23:20:27 +0000 | [diff] [blame] | 638 | |
Peter Collingbourne | fad596a | 2016-05-25 21:26:14 +0000 | [diff] [blame] | 639 | // Propagate constants at call sites into the functions they call. This |
| 640 | // opens opportunities for globalopt (and inlining) by substituting function |
| 641 | // pointers passed as arguments to direct uses of functions. |
| 642 | PM.add(createIPSCCPPass()); |
| 643 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 644 | |
Peter Collingbourne | fad596a | 2016-05-25 21:26:14 +0000 | [diff] [blame] | 645 | // Infer attributes about definitions. The readnone attribute in particular is |
| 646 | // required for virtual constant propagation. |
Chandler Carruth | 9c4ed17 | 2016-02-18 11:03:11 +0000 | [diff] [blame] | 647 | PM.add(createPostOrderFunctionAttrsLegacyPass()); |
Chandler Carruth | 1926b70 | 2016-01-08 10:55:52 +0000 | [diff] [blame] | 648 | PM.add(createReversePostOrderFunctionAttrsPass()); |
Peter Collingbourne | fad596a | 2016-05-25 21:26:14 +0000 | [diff] [blame] | 649 | |
| 650 | // Apply whole-program devirtualization and virtual constant propagation. |
| 651 | PM.add(createWholeProgramDevirtPass()); |
| 652 | |
| 653 | // That's all we need at opt level 1. |
| 654 | if (OptLevel == 1) |
| 655 | return; |
| 656 | |
| 657 | // Now that we internalized some globals, see if we can hack on them! |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 658 | PM.add(createGlobalOptimizerPass()); |
James Molloy | 6045cc8 | 2015-12-15 09:24:01 +0000 | [diff] [blame] | 659 | // Promote any localized global vars. |
| 660 | PM.add(createPromoteMemoryToRegisterPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 661 | |
| 662 | // Linking modules together can lead to duplicated global constants, only |
| 663 | // keep one copy of each constant. |
| 664 | PM.add(createConstantMergePass()); |
| 665 | |
| 666 | // Remove unused arguments from functions. |
| 667 | PM.add(createDeadArgEliminationPass()); |
| 668 | |
| 669 | // Reduce the code after globalopt and ipsccp. Both can open up significant |
| 670 | // simplification opportunities, and both can propagate functions through |
| 671 | // function pointers. When this happens, we often have to resolve varargs |
| 672 | // calls, etc, so let instcombine do this. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 673 | addInstructionCombiningPass(PM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 674 | addExtensionsToPM(EP_Peephole, PM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 675 | |
| 676 | // Inline small functions |
Rafael Espindola | e07caad | 2014-08-21 13:35:30 +0000 | [diff] [blame] | 677 | bool RunInliner = Inliner; |
| 678 | if (RunInliner) { |
| 679 | PM.add(Inliner); |
| 680 | Inliner = nullptr; |
| 681 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 682 | |
| 683 | PM.add(createPruneEHPass()); // Remove dead EH info. |
| 684 | |
| 685 | // Optimize globals again if we ran the inliner. |
| 686 | if (RunInliner) |
| 687 | PM.add(createGlobalOptimizerPass()); |
| 688 | PM.add(createGlobalDCEPass()); // Remove dead functions. |
| 689 | |
| 690 | // If we didn't decide to inline a function, check to see if we can |
| 691 | // transform it to pass arguments by value instead of by reference. |
| 692 | PM.add(createArgumentPromotionPass()); |
| 693 | |
| 694 | // The IPO passes may leave cruft around. Clean up after them. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 695 | addInstructionCombiningPass(PM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 696 | addExtensionsToPM(EP_Peephole, PM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 697 | PM.add(createJumpThreadingPass()); |
Bill Wendling | 4c0d9ad | 2013-08-30 00:48:37 +0000 | [diff] [blame] | 698 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 699 | // Break up allocas |
David Majnemer | cbf614a | 2016-06-15 00:19:09 +0000 | [diff] [blame] | 700 | PM.add(createSROAPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 701 | |
| 702 | // Run a few AA driven optimizations here and now, to cleanup the code. |
Chandler Carruth | 9c4ed17 | 2016-02-18 11:03:11 +0000 | [diff] [blame] | 703 | PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture. |
Chandler Carruth | 7b560d4 | 2015-09-09 17:55:00 +0000 | [diff] [blame] | 704 | PM.add(createGlobalsAAWrapperPass()); // IP alias analysis. |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 705 | |
Bill Wendling | 932b992 | 2012-04-02 22:16:50 +0000 | [diff] [blame] | 706 | PM.add(createLICMPass()); // Hoist loop invariants. |
Gerolf Hoflehner | 24815d9 | 2014-09-10 19:55:29 +0000 | [diff] [blame] | 707 | if (EnableMLSM) |
| 708 | PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds. |
Bill Wendling | 932b992 | 2012-04-02 22:16:50 +0000 | [diff] [blame] | 709 | PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies. |
| 710 | PM.add(createMemCpyOptPass()); // Remove dead memcpys. |
Bill Wendling | 4c0d9ad | 2013-08-30 00:48:37 +0000 | [diff] [blame] | 711 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 712 | // Nuke dead stores. |
| 713 | PM.add(createDeadStoreEliminationPass()); |
| 714 | |
Duncan P. N. Exon Smith | 2b69189 | 2014-04-15 17:48:15 +0000 | [diff] [blame] | 715 | // More loops are countable; try to optimize them. |
| 716 | PM.add(createIndVarSimplifyPass()); |
| 717 | PM.add(createLoopDeletionPass()); |
Karthik Bhat | 88db86d | 2015-03-06 10:11:25 +0000 | [diff] [blame] | 718 | if (EnableLoopInterchange) |
| 719 | PM.add(createLoopInterchangePass()); |
| 720 | |
James Molloy | 31f3ddd | 2016-01-14 15:00:09 +0000 | [diff] [blame] | 721 | if (!DisableUnrollLoops) |
| 722 | PM.add(createSimpleLoopUnrollPass()); // Unroll small loops |
Arnold Schwaighofer | eb1a38f | 2014-10-26 21:50:58 +0000 | [diff] [blame] | 723 | PM.add(createLoopVectorizePass(true, LoopVectorize)); |
James Molloy | 31f3ddd | 2016-01-14 15:00:09 +0000 | [diff] [blame] | 724 | // The vectorizer may have significantly shortened a loop body; unroll again. |
| 725 | if (!DisableUnrollLoops) |
| 726 | PM.add(createLoopUnrollPass()); |
Arnold Schwaighofer | 6ccda92 | 2014-02-24 18:19:31 +0000 | [diff] [blame] | 727 | |
James Molloy | 6045cc8 | 2015-12-15 09:24:01 +0000 | [diff] [blame] | 728 | // Now that we've optimized loops (in particular loop induction variables), |
| 729 | // we may have exposed more scalar opportunities. Run parts of the scalar |
| 730 | // optimizer again at this point. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 731 | addInstructionCombiningPass(PM); // Initial cleanup |
James Molloy | 6045cc8 | 2015-12-15 09:24:01 +0000 | [diff] [blame] | 732 | PM.add(createCFGSimplificationPass()); // if-convert |
| 733 | PM.add(createSCCPPass()); // Propagate exposed constants |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 734 | addInstructionCombiningPass(PM); // Clean up again |
James Molloy | 6045cc8 | 2015-12-15 09:24:01 +0000 | [diff] [blame] | 735 | PM.add(createBitTrackingDCEPass()); |
| 736 | |
Yi Jiang | 79eb0aa | 2014-05-05 23:14:46 +0000 | [diff] [blame] | 737 | // More scalar chains could be vectorized due to more alias information |
JF Bastien | f42a6ea | 2014-10-21 23:18:21 +0000 | [diff] [blame] | 738 | if (RunSLPAfterLoopVectorization) |
| 739 | if (SLPVectorize) |
| 740 | PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains. |
Yi Jiang | 79eb0aa | 2014-05-05 23:14:46 +0000 | [diff] [blame] | 741 | |
Hal Finkel | d67e463 | 2014-09-07 20:05:11 +0000 | [diff] [blame] | 742 | // After vectorization, assume intrinsics may tell us more about pointer |
| 743 | // alignments. |
| 744 | PM.add(createAlignmentFromAssumptionsPass()); |
| 745 | |
Michael J. Spencer | 289067c | 2014-05-29 01:55:07 +0000 | [diff] [blame] | 746 | if (LoadCombine) |
| 747 | PM.add(createLoadCombinePass()); |
| 748 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 749 | // Cleanup and simplify the code after the scalar optimizations. |
Matthias Braun | c31032d | 2016-03-09 18:47:11 +0000 | [diff] [blame] | 750 | addInstructionCombiningPass(PM); |
Peter Collingbourne | 0a43761 | 2014-05-25 10:27:02 +0000 | [diff] [blame] | 751 | addExtensionsToPM(EP_Peephole, PM); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 752 | |
| 753 | PM.add(createJumpThreadingPass()); |
Peter Collingbourne | 070843d | 2015-03-19 22:01:00 +0000 | [diff] [blame] | 754 | } |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 755 | |
Peter Collingbourne | 070843d | 2015-03-19 22:01:00 +0000 | [diff] [blame] | 756 | void PassManagerBuilder::addLateLTOOptimizationPasses( |
| 757 | legacy::PassManagerBase &PM) { |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 758 | // Delete basic blocks, which optimization passes may have killed. |
Tom Stellard | aa664d9 | 2013-08-06 02:43:45 +0000 | [diff] [blame] | 759 | PM.add(createCFGSimplificationPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 760 | |
Teresa Johnson | c4279a7 | 2015-08-11 16:26:41 +0000 | [diff] [blame] | 761 | // Drop bodies of available externally objects to improve GlobalDCE. |
| 762 | PM.add(createEliminateAvailableExternallyPass()); |
| 763 | |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 764 | // Now that we have optimized the program, discard unreachable functions. |
| 765 | PM.add(createGlobalDCEPass()); |
Nick Lewycky | 9e6d184 | 2014-09-13 21:46:00 +0000 | [diff] [blame] | 766 | |
| 767 | // FIXME: this is profitable (for compiler time) to do at -O0 too, but |
| 768 | // currently it damages debug info. |
| 769 | if (MergeFunctions) |
| 770 | PM.add(createMergeFunctionsPass()); |
Rafael Espindola | 3ea478b | 2011-08-02 21:50:27 +0000 | [diff] [blame] | 771 | } |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 772 | |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 773 | void PassManagerBuilder::populateThinLTOPassManager( |
| 774 | legacy::PassManagerBase &PM) { |
| 775 | PerformThinLTO = true; |
| 776 | |
| 777 | if (VerifyInput) |
| 778 | PM.add(createVerifierPass()); |
| 779 | |
Teresa Johnson | 26ab577 | 2016-03-15 00:04:37 +0000 | [diff] [blame] | 780 | if (ModuleSummary) |
| 781 | PM.add(createFunctionImportPass(ModuleSummary)); |
Mehdi Amini | 1db10ac | 2016-02-16 23:02:29 +0000 | [diff] [blame] | 782 | |
| 783 | populateModulePassManager(PM); |
| 784 | |
| 785 | if (VerifyOutput) |
| 786 | PM.add(createVerifierPass()); |
| 787 | PerformThinLTO = false; |
| 788 | } |
| 789 | |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 790 | void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) { |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 791 | if (LibraryInfo) |
Chandler Carruth | b98f63d | 2015-01-15 10:41:28 +0000 | [diff] [blame] | 792 | PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo)); |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 793 | |
Duncan P. N. Exon Smith | ab58a56 | 2015-03-19 22:24:17 +0000 | [diff] [blame] | 794 | if (VerifyInput) |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 795 | PM.add(createVerifierPass()); |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 796 | |
Peter Collingbourne | df49d1b | 2016-02-09 22:50:34 +0000 | [diff] [blame] | 797 | if (OptLevel != 0) |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 798 | addLTOOptimizationPasses(PM); |
| 799 | |
Evgeniy Stepanov | 67849d5 | 2015-12-15 23:00:08 +0000 | [diff] [blame] | 800 | // Create a function that performs CFI checks for cross-DSO calls with targets |
| 801 | // in the current module. |
| 802 | PM.add(createCrossDSOCFIPass()); |
| 803 | |
Peter Collingbourne | 7efd750 | 2016-06-24 21:21:32 +0000 | [diff] [blame] | 804 | // Lower type metadata and the type.test intrinsic. This pass supports Clang's |
| 805 | // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at |
| 806 | // link time if CFI is enabled. The pass does nothing if CFI is disabled. |
| 807 | PM.add(createLowerTypeTestsPass()); |
Peter Collingbourne | 070843d | 2015-03-19 22:01:00 +0000 | [diff] [blame] | 808 | |
| 809 | if (OptLevel != 0) |
| 810 | addLateLTOOptimizationPasses(PM); |
| 811 | |
Duncan P. N. Exon Smith | ab58a56 | 2015-03-19 22:24:17 +0000 | [diff] [blame] | 812 | if (VerifyOutput) |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 813 | PM.add(createVerifierPass()); |
Rafael Espindola | 7cebf36 | 2014-08-21 20:03:44 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Eric Christopher | 04d4e93 | 2013-04-22 22:47:22 +0000 | [diff] [blame] | 816 | inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) { |
| 817 | return reinterpret_cast<PassManagerBuilder*>(P); |
| 818 | } |
| 819 | |
| 820 | inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) { |
| 821 | return reinterpret_cast<LLVMPassManagerBuilderRef>(P); |
| 822 | } |
| 823 | |
Dmitri Gribenko | 0011bbf | 2012-11-15 16:51:49 +0000 | [diff] [blame] | 824 | LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() { |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 825 | PassManagerBuilder *PMB = new PassManagerBuilder(); |
| 826 | return wrap(PMB); |
| 827 | } |
| 828 | |
| 829 | void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) { |
| 830 | PassManagerBuilder *Builder = unwrap(PMB); |
| 831 | delete Builder; |
| 832 | } |
| 833 | |
| 834 | void |
| 835 | LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB, |
| 836 | unsigned OptLevel) { |
| 837 | PassManagerBuilder *Builder = unwrap(PMB); |
| 838 | Builder->OptLevel = OptLevel; |
| 839 | } |
| 840 | |
| 841 | void |
| 842 | LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB, |
| 843 | unsigned SizeLevel) { |
| 844 | PassManagerBuilder *Builder = unwrap(PMB); |
| 845 | Builder->SizeLevel = SizeLevel; |
| 846 | } |
| 847 | |
| 848 | void |
| 849 | LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB, |
| 850 | LLVMBool Value) { |
| 851 | PassManagerBuilder *Builder = unwrap(PMB); |
| 852 | Builder->DisableUnitAtATime = Value; |
| 853 | } |
| 854 | |
| 855 | void |
| 856 | LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB, |
| 857 | LLVMBool Value) { |
| 858 | PassManagerBuilder *Builder = unwrap(PMB); |
| 859 | Builder->DisableUnrollLoops = Value; |
| 860 | } |
| 861 | |
| 862 | void |
| 863 | LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB, |
| 864 | LLVMBool Value) { |
Meador Inge | dfb08a2 | 2013-06-20 19:48:07 +0000 | [diff] [blame] | 865 | // NOTE: The simplify-libcalls pass has been removed. |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 866 | } |
| 867 | |
| 868 | void |
| 869 | LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB, |
| 870 | unsigned Threshold) { |
| 871 | PassManagerBuilder *Builder = unwrap(PMB); |
| 872 | Builder->Inliner = createFunctionInliningPass(Threshold); |
| 873 | } |
| 874 | |
| 875 | void |
| 876 | LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB, |
| 877 | LLVMPassManagerRef PM) { |
| 878 | PassManagerBuilder *Builder = unwrap(PMB); |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 879 | legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM); |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 880 | Builder->populateFunctionPassManager(*FPM); |
| 881 | } |
| 882 | |
| 883 | void |
| 884 | LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB, |
| 885 | LLVMPassManagerRef PM) { |
| 886 | PassManagerBuilder *Builder = unwrap(PMB); |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 887 | legacy::PassManagerBase *MPM = unwrap(PM); |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 888 | Builder->populateModulePassManager(*MPM); |
| 889 | } |
| 890 | |
| 891 | void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB, |
| 892 | LLVMPassManagerRef PM, |
Nick Lewycky | 5f50854 | 2013-03-10 21:58:22 +0000 | [diff] [blame] | 893 | LLVMBool Internalize, |
| 894 | LLVMBool RunInliner) { |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 895 | PassManagerBuilder *Builder = unwrap(PMB); |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 896 | legacy::PassManagerBase *LPM = unwrap(PM); |
Rafael Espindola | e07caad | 2014-08-21 13:35:30 +0000 | [diff] [blame] | 897 | |
| 898 | // A small backwards compatibility hack. populateLTOPassManager used to take |
| 899 | // an RunInliner option. |
| 900 | if (RunInliner && !Builder->Inliner) |
| 901 | Builder->Inliner = createFunctionInliningPass(); |
| 902 | |
| 903 | Builder->populateLTOPassManager(*LPM); |
Rafael Espindola | 07f60915 | 2011-08-09 22:17:34 +0000 | [diff] [blame] | 904 | } |