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