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