blob: d23892292c32f755d8f3e0e69f2e40ad35924ab7 [file] [log] [blame]
Rafael Espindola3ea478b2011-08-02 21:50:27 +00001//===- 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 Espindola3ea478b2011-08-02 21:50:27 +000015#include "llvm/Transforms/IPO/PassManagerBuilder.h"
Rafael Espindola07f609152011-08-09 22:17:34 +000016#include "llvm-c/Transforms/PassManagerBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/SmallVector.h"
Chandler Carruth17e0bc32015-08-06 07:33:15 +000018#include "llvm/Analysis/BasicAliasAnalysis.h"
George Burgess IVbfa401e2016-07-06 00:26:41 +000019#include "llvm/Analysis/CFLAndersAliasAnalysis.h"
20#include "llvm/Analysis/CFLSteensAliasAnalysis.h"
Chandler Carruth21dcff72015-08-14 03:48:20 +000021#include "llvm/Analysis/GlobalsModRef.h"
Easwaran Raman61edc102016-08-11 18:24:08 +000022#include "llvm/Analysis/InlineCost.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000023#include "llvm/Analysis/Passes.h"
Chandler Carruth42ff4482015-08-14 02:55:50 +000024#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000025#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth1db22822015-08-14 03:33:48 +000026#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000027#include "llvm/IR/DataLayout.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000028#include "llvm/IR/LegacyPassManager.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000029#include "llvm/IR/ModuleSummaryIndex.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000030#include "llvm/IR/Verifier.h"
31#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/ManagedStatic.h"
Rafael Espindola7cebf362014-08-21 20:03:44 +000033#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Transforms/IPO.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000035#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000036#include "llvm/Transforms/IPO/FunctionAttrs.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000037#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000038#include "llvm/Transforms/Instrumentation.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000039#include "llvm/Transforms/Scalar.h"
Chandler Carruth89c45a12016-03-11 08:50:55 +000040#include "llvm/Transforms/Scalar/GVN.h"
Chandler Carruth1353f9a2017-04-27 18:45:20 +000041#include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
Hal Finkelc34e5112012-02-01 03:51:43 +000042#include "llvm/Transforms/Vectorize.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000043
44using namespace llvm;
45
Hal Finkelc34e5112012-02-01 03:51:43 +000046static cl::opt<bool>
Xinliang David Li126157c2017-05-22 16:41:57 +000047 RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden,
48 cl::ZeroOrMore, cl::desc("Run Partial inlinining pass"));
49
50static cl::opt<bool>
51 RunLoopVectorization("vectorize-loops", cl::Hidden,
52 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000053
54static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000055RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000056 cl::desc("Run the SLP vectorization passes"));
57
58static cl::opt<bool>
Hal Finkel204bf532012-04-13 17:15:33 +000059UseGVNAfterVectorization("use-gvn-after-vectorization",
60 cl::init(false), cl::Hidden,
61 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
62
Chandler Carruth7b8297a2014-10-14 00:31:29 +000063static cl::opt<bool> ExtraVectorizerPasses(
64 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
65 cl::desc("Run cleanup optimization passes after vectorization."));
66
Hal Finkelbf45efd2013-11-16 23:59:05 +000067static cl::opt<bool>
68RunLoopRerolling("reroll-loops", cl::Hidden,
69 cl::desc("Run the loop rerolling pass"));
70
Davide Italianofe7a3ee2016-12-26 18:26:19 +000071static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden,
72 cl::desc("Run the NewGVN pass"));
73
James Molloy568da092014-08-06 12:56:19 +000074static cl::opt<bool>
75RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000076 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000077 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
78 "vectorizer instead of before"));
79
George Burgess IVbfa401e2016-07-06 00:26:41 +000080// Experimental option to use CFL-AA
81enum class CFLAAType { None, Steensgaard, Andersen, Both };
82static cl::opt<CFLAAType>
83 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
84 cl::desc("Enable the new, experimental CFL alias analysis"),
85 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
86 clEnumValN(CFLAAType::Steensgaard, "steens",
87 "Enable unification-based CFL-AA"),
88 clEnumValN(CFLAAType::Andersen, "anders",
89 "Enable inclusion-based CFL-AA"),
90 clEnumValN(CFLAAType::Both, "both",
Mehdi Amini732afdd2016-10-08 19:41:06 +000091 "Enable both variants of CFL-AA")));
James Molloy568da092014-08-06 12:56:19 +000092
Karthik Bhat88db86d2015-03-06 10:11:25 +000093static cl::opt<bool> EnableLoopInterchange(
94 "enable-loopinterchange", cl::init(false), cl::Hidden,
95 cl::desc("Enable the new, experimental LoopInterchange Pass"));
96
Teresa Johnsonfbb431b2016-09-17 20:40:16 +000097static cl::opt<bool>
98 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden,
99 cl::desc("Enable preparation for ThinLTO."));
100
Xinliang David Li92392452016-07-23 04:28:52 +0000101static cl::opt<bool> RunPGOInstrGen(
102 "profile-generate", cl::init(false), cl::Hidden,
103 cl::desc("Enable PGO instrumentation."));
104
105static cl::opt<std::string>
106 PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden,
107 cl::desc("Specify the path of profile data file."));
Rong Xu34abbfb2016-01-21 18:28:59 +0000108
109static cl::opt<std::string> RunPGOInstrUse(
110 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
111 cl::desc("Enable use phase of PGO instrumentation and specify the path "
112 "of profile data file"));
113
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000114static cl::opt<bool> UseLoopVersioningLICM(
115 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
116 cl::desc("Enable the experimental Loop Versioning LICM pass"));
117
Rong Xu96a19d32016-07-15 18:10:49 +0000118static cl::opt<bool>
119 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden,
120 cl::desc("Disable pre-instrumentation inliner"));
121
122static cl::opt<int> PreInlineThreshold(
123 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore,
124 cl::desc("Control the amount of inlining in pre-instrumentation inliner "
125 "(default = 75)"));
126
Geoff Berry3cca1da2017-06-10 15:20:03 +0000127static cl::opt<bool> EnableEarlyCSEMemSSA(
Geoff Berry2573a192017-06-27 22:25:02 +0000128 "enable-earlycse-memssa", cl::init(true), cl::Hidden,
129 cl::desc("Enable the EarlyCSE w/ MemorySSA pass (default = on)"));
Geoff Berry3cca1da2017-06-10 15:20:03 +0000130
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000131static cl::opt<bool> EnableGVNHoist(
Chandler Carruthc246a4c2017-04-27 00:28:03 +0000132 "enable-gvn-hoist", cl::init(false), cl::Hidden,
133 cl::desc("Enable the GVN hoisting pass (default = off)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000134
Rong Xu1c0e9b92016-10-18 21:36:27 +0000135static cl::opt<bool>
136 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
137 cl::Hidden,
138 cl::desc("Disable shrink-wrap library calls"));
139
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000140static cl::opt<bool>
141 EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false),
142 cl::Hidden,
143 cl::desc("Enable the simple loop unswitch pass."));
144
James Molloya9290632017-05-25 12:51:11 +0000145static cl::opt<bool> EnableGVNSink(
146 "enable-gvn-sink", cl::init(false), cl::Hidden,
Davide Italiano1dd55582017-06-01 23:47:53 +0000147 cl::desc("Enable the GVN sinking pass (default = off)"));
James Molloya9290632017-05-25 12:51:11 +0000148
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000149PassManagerBuilder::PassManagerBuilder() {
150 OptLevel = 2;
151 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000152 LibraryInfo = nullptr;
153 Inliner = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000154 DisableUnitAtATime = false;
155 DisableUnrollLoops = false;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000156 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000157 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000158 RerollLoops = RunLoopRerolling;
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000159 NewGVN = RunNewGVN;
Rafael Espindola208bc532014-08-21 13:13:17 +0000160 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000161 VerifyInput = false;
162 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000163 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000164 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000165 EnablePGOInstrGen = RunPGOInstrGen;
166 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000167 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000168 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000169 PerformThinLTO = false;
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000170 DivergentTarget = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000171}
172
173PassManagerBuilder::~PassManagerBuilder() {
174 delete LibraryInfo;
175 delete Inliner;
176}
177
David Chisnall719a72f2011-08-16 13:58:41 +0000178/// Set of global extensions, automatically added as part of the standard set.
179static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
180 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
181
Frederich Munch52dfcd12017-07-06 00:09:09 +0000182/// Check if GlobalExtensions is constructed and not empty.
183/// Since GlobalExtensions is a managed static, calling 'empty()' will trigger
184/// the construction of the object.
185static bool GlobalExtensionsNotEmpty() {
186 return GlobalExtensions.isConstructed() && !GlobalExtensions->empty();
187}
188
Frederich Munch6391c7e2017-06-13 19:05:24 +0000189void PassManagerBuilder::addGlobalExtension(
190 PassManagerBuilder::ExtensionPointTy Ty,
191 PassManagerBuilder::ExtensionFn Fn) {
192 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000193}
194
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000195void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000196 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000197}
198
199void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000200 legacy::PassManagerBase &PM) const {
Frederich Munch52dfcd12017-07-06 00:09:09 +0000201 if (GlobalExtensionsNotEmpty()) {
202 for (auto &Ext : *GlobalExtensions) {
203 if (Ext.first == ETy)
204 Ext.second(*this, PM);
205 }
206 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000207 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
208 if (Extensions[i].first == ETy)
209 Extensions[i].second(*this, PM);
210}
211
Chandler Carruth30d69c22015-02-13 10:01:29 +0000212void PassManagerBuilder::addInitialAliasAnalysisPasses(
213 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000214 switch (UseCFLAA) {
215 case CFLAAType::Steensgaard:
216 PM.add(createCFLSteensAAWrapperPass());
217 break;
218 case CFLAAType::Andersen:
219 PM.add(createCFLAndersAAWrapperPass());
220 break;
221 case CFLAAType::Both:
222 PM.add(createCFLSteensAAWrapperPass());
223 PM.add(createCFLAndersAAWrapperPass());
224 break;
225 default:
226 break;
227 }
228
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000229 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
230 // BasicAliasAnalysis wins if they disagree. This is intended to help
231 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000232 PM.add(createTypeBasedAAWrapperPass());
233 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000234}
235
Matthias Braunc31032d2016-03-09 18:47:11 +0000236void PassManagerBuilder::addInstructionCombiningPass(
237 legacy::PassManagerBase &PM) const {
238 bool ExpensiveCombines = OptLevel > 2;
239 PM.add(createInstructionCombiningPass(ExpensiveCombines));
240}
241
Chandler Carruth30d69c22015-02-13 10:01:29 +0000242void PassManagerBuilder::populateFunctionPassManager(
243 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000244 addExtensionsToPM(EP_EarlyAsPossible, FPM);
245
246 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000247 if (LibraryInfo)
248 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000249
250 if (OptLevel == 0) return;
251
252 addInitialAliasAnalysisPasses(FPM);
253
254 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000255 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000256 FPM.add(createEarlyCSEPass());
257 FPM.add(createLowerExpectIntrinsicPass());
258}
259
Rong Xu34abbfb2016-01-21 18:28:59 +0000260// Do PGO instrumentation generation or use pass as the option specified.
261void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
Dehao Chen66131662017-06-27 17:23:33 +0000262 if (!EnablePGOInstrGen && PGOInstrUse.empty() && PGOSampleUse.empty())
Rong Xu96a19d32016-07-15 18:10:49 +0000263 return;
264 // Perform the preinline and cleanup passes for O1 and above.
265 // And avoid doing them if optimizing for size.
Dehao Chen66131662017-06-27 17:23:33 +0000266 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner &&
267 PGOSampleUse.empty()) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000268 // Create preinline pass. We construct an InlineParams object and specify
269 // the threshold here to avoid the command line options of the regular
270 // inliner to influence pre-inlining. The only fields of InlineParams we
271 // care about are DefaultThreshold and HintThreshold.
272 InlineParams IP;
273 IP.DefaultThreshold = PreInlineThreshold;
274 // FIXME: The hint threshold has the same value used by the regular inliner.
275 // This should probably be lowered after performance testing.
276 IP.HintThreshold = 325;
277
278 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000279 MPM.add(createSROAPass());
280 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
281 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
282 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
283 addExtensionsToPM(EP_Peephole, MPM);
284 }
Xinliang David Li92392452016-07-23 04:28:52 +0000285 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000286 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000287 // Add the profile lowering pass.
288 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000289 if (!PGOInstrGen.empty())
290 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lib67530e2017-06-25 00:26:43 +0000291 Options.DoCounterPromotion = true;
292 MPM.add(createLoopRotatePass());
Xinliang David Lie6b89292016-04-18 17:47:38 +0000293 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000294 }
295 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000296 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Davide Italiano058abf1f2017-04-25 16:54:45 +0000297 // Indirect call promotion that promotes intra-module targets only.
298 // For ThinLTO this is done earlier due to interactions with globalopt
299 // for imported functions. We don't run this at -O0.
300 if (OptLevel > 0)
301 MPM.add(
302 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty()));
Rong Xu34abbfb2016-01-21 18:28:59 +0000303}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000304void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000305 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000306 // Start of function pass.
307 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000308 MPM.add(createSROAPass());
Geoff Berry3cca1da2017-06-10 15:20:03 +0000309 MPM.add(createEarlyCSEPass(EnableEarlyCSEMemSSA)); // Catch trivial redundancies
Geoff Berry85a530f2017-04-13 15:36:25 +0000310 if (EnableGVNHoist)
311 MPM.add(createGVNHoistPass());
James Molloya9290632017-05-25 12:51:11 +0000312 if (EnableGVNSink) {
313 MPM.add(createGVNSinkPass());
314 MPM.add(createCFGSimplificationPass());
315 }
316
Justin Lebarcf63b642016-04-15 00:32:12 +0000317 // Speculative execution if the target has divergent branches; otherwise nop.
318 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000319 MPM.add(createJumpThreadingPass()); // Thread jumps.
320 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
321 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000322 // Combine silly seq's
323 addInstructionCombiningPass(MPM);
Rong Xu1c0e9b92016-10-18 21:36:27 +0000324 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
325 MPM.add(createLibCallsShrinkWrapPass());
Peter Collingbourne0a437612014-05-25 10:27:02 +0000326 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000327
Rong Xu48596b62017-04-04 16:42:20 +0000328 // Optimize memory intrinsic calls based on the profiled size information.
329 if (SizeLevel == 0)
330 MPM.add(createPGOMemOPSizeOptLegacyPass());
331
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000332 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000333 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
334 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000335 // Rotate Loop - disable header duplication at -Oz
336 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000337 MPM.add(createLICMPass()); // Hoist loop invariants
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000338 if (EnableSimpleLoopUnswitch)
339 MPM.add(createSimpleLoopUnswitchLegacyPass());
340 else
341 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000342 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000343 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000344 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
345 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000346 addExtensionsToPM(EP_LateLoopOptimizations, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000347 MPM.add(createLoopDeletionPass()); // Delete dead loops
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000348
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000349 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000350 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000351 MPM.add(createCFGSimplificationPass());
352 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000353 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000354 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000355 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
356
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000357 if (OptLevel > 1) {
Davide Italiano9b8738d2017-01-28 23:45:37 +0000358 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000359 MPM.add(NewGVN ? createNewGVNPass()
360 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000361 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000362 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
363 MPM.add(createSCCPPass()); // Constant prop with SCCP
364
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000365 // Delete dead bit computations (instcombine runs after to fold away the dead
366 // computations, and then ADCE will run later to exploit any new DCE
367 // opportunities that creates).
368 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
369
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000370 // Run instcombine after redundancy elimination to exploit opportunities
371 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000372 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000373 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000374 MPM.add(createJumpThreadingPass()); // Thread jumps
375 MPM.add(createCorrelatedValuePropagationPass());
376 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000377 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000378
379 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
380
Hal Finkel29aeb202013-11-17 16:02:50 +0000381 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000382 MPM.add(createLoopRerollPass());
Chandler Carruth3545a9e2017-06-30 07:09:08 +0000383 if (!RunSLPAfterLoopVectorization && SLPVectorize)
384 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Hal Finkelc34e5112012-02-01 03:51:43 +0000385
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000386 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000387 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000388 // Clean up after everything.
389 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000390 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000391}
392
393void PassManagerBuilder::populateModulePassManager(
394 legacy::PassManagerBase &MPM) {
Dehao Chena99e0822016-12-14 21:40:47 +0000395 if (!PGOSampleUse.empty()) {
396 MPM.add(createPruneEHPass());
397 MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
398 }
399
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000400 // Allow forcing function attributes as a debugging and tuning aid.
401 MPM.add(createForceFunctionAttrsLegacyPass());
402
403 // If all optimizations are disabled, just run the always-inline pass and,
404 // if enabled, the function merging pass.
405 if (OptLevel == 0) {
406 addPGOInstrPasses(MPM);
407 if (Inliner) {
408 MPM.add(Inliner);
409 Inliner = nullptr;
410 }
411
412 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
413 // creates a CGSCC pass manager, but we don't want to add extensions into
414 // that pass manager. To prevent this we insert a no-op module pass to reset
415 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
416 // builds. The function merging pass is
417 if (MergeFunctions)
418 MPM.add(createMergeFunctionsPass());
Frederich Munch52dfcd12017-07-06 00:09:09 +0000419 else if (GlobalExtensionsNotEmpty() || !Extensions.empty())
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000420 MPM.add(createBarrierNoopPass());
421
422 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
Davide Italiano5da70902017-04-23 04:49:34 +0000423
424 // Rename anon globals to be able to export them in the summary.
425 // This has to be done after we add the extensions to the pass manager
426 // as there could be passes (e.g. Adddress sanitizer) which introduce
427 // new unnamed globals.
428 if (PrepareForThinLTO)
429 MPM.add(createNameAnonGlobalPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000430 return;
431 }
432
433 // Add LibraryInfo if we have some.
434 if (LibraryInfo)
435 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
436
437 addInitialAliasAnalysisPasses(MPM);
438
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000439 // For ThinLTO there are two passes of indirect call promotion. The
440 // first is during the compile phase when PerformThinLTO=false and
441 // intra-module indirect call targets are promoted. The second is during
442 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
443 // inter-module indirect calls. For that we perform indirect call promotion
444 // earlier in the pass pipeline, here before globalopt. Otherwise imported
445 // available_externally functions look unreferenced and are removed.
446 if (PerformThinLTO)
Dehao Chencc75d242017-02-23 22:15:18 +0000447 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
448 !PGOSampleUse.empty()));
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000449
Dehao Chen8c886712017-03-23 21:20:05 +0000450 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
451 // as it will change the CFG too much to make the 2nd profile annotation
452 // in backend more difficult.
453 bool PrepareForThinLTOUsingPGOSampleProfile =
454 PrepareForThinLTO && !PGOSampleUse.empty();
455 if (PrepareForThinLTOUsingPGOSampleProfile)
456 DisableUnrollLoops = true;
457
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000458 if (!DisableUnitAtATime) {
459 // Infer attributes about declarations if possible.
460 MPM.add(createInferFunctionAttrsLegacyPass());
461
462 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
463
464 MPM.add(createIPSCCPPass()); // IP SCCP
465 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
466 // Promote any localized global vars.
467 MPM.add(createPromoteMemoryToRegisterPass());
468
469 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
470
Matthias Braunc31032d2016-03-09 18:47:11 +0000471 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000472 addExtensionsToPM(EP_Peephole, MPM);
473 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
474 }
475
Dehao Chen8c886712017-03-23 21:20:05 +0000476 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
477 // call promotion as it will change the CFG too much to make the 2nd
478 // profile annotation in backend more difficult.
Davide Italiano058abf1f2017-04-25 16:54:45 +0000479 // PGO instrumentation is added during the compile phase for ThinLTO, do
480 // not run it a second time
481 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile)
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000482 addPGOInstrPasses(MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000483
Davide Italianoc48d1c82017-10-02 23:39:20 +0000484 // We add a module alias analysis pass here. In part due to bugs in the
485 // analysis infrastructure this "works" in that the analysis stays alive
486 // for the entire SCC pass run below.
487 MPM.add(createGlobalsAAWrapperPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000488
489 // Start of CallGraph SCC passes.
490 if (!DisableUnitAtATime)
491 MPM.add(createPruneEHPass()); // Remove dead EH info
492 if (Inliner) {
493 MPM.add(Inliner);
494 Inliner = nullptr;
495 }
496 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000497 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000498 if (OptLevel > 2)
499 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
500
David Majnemer6e9b47b2016-07-28 03:28:43 +0000501 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000502 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000503
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000504 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
505 // pass manager that we are specifically trying to avoid. To prevent this
506 // we must insert a no-op module pass to reset the pass manager.
507 MPM.add(createBarrierNoopPass());
Xinliang David Li126157c2017-05-22 16:41:57 +0000508 if (RunPartialInlining)
509 MPM.add(createPartialInliningPass());
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000510
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000511 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
512 !PrepareForThinLTO)
513 // Remove avail extern fns and globals definitions if we aren't
514 // compiling an object file for later LTO. For LTO we want to preserve
515 // these so they are eligible for inlining at link-time. Note if they
516 // are unreferenced they will be removed by GlobalDCE later, so
517 // this only impacts referenced available externally globals.
518 // Eventually they will be suppressed during codegen, but eliminating
519 // here enables more opportunity for GlobalDCE as it may make
520 // globals referenced by available external functions dead
521 // and saves running remaining passes on the eliminated functions.
522 MPM.add(createEliminateAvailableExternallyPass());
523
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000524 if (!DisableUnitAtATime)
525 MPM.add(createReversePostOrderFunctionAttrsPass());
526
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000527 // If we are planning to perform ThinLTO later, let's not bloat the code with
528 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
529 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000530 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000531 // Reduce the size of the IR as much as possible.
532 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000533 // Rename anon globals to be able to export them in the summary.
534 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000535 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000536 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000537
Mehdi Amini31407ba2016-05-06 18:17:03 +0000538 if (PerformThinLTO)
539 // Optimize globals now when performing ThinLTO, this enables more
540 // optimizations later.
541 MPM.add(createGlobalOptimizerPass());
542
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000543 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000544 // we may see more accurate aliasing. Reason to run this late is that too
545 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000546 // size. By placing it just after inlining other optimizations which runs
547 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000548 if (UseLoopVersioningLICM) {
549 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
550 MPM.add(createLICMPass()); // Hoist loop invariants
551 }
552
Davide Italianoc48d1c82017-10-02 23:39:20 +0000553 // We add a fresh GlobalsModRef run at this point. This is particularly
554 // useful as the above will have inlined, DCE'ed, and function-attr
555 // propagated everything. We should at this point have a reasonably minimal
556 // and richly annotated call graph. By computing aliasing and mod/ref
557 // information for all local globals here, the late loop passes and notably
558 // the vectorizer will be able to use them to help recognize vectorizable
559 // memory operations.
560 //
561 // Note that this relies on a bug in the pass manager which preserves
562 // a module analysis into a function pass pipeline (and throughout it) so
563 // long as the first function pass doesn't invalidate the module analysis.
564 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
565 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
566 // (doing nothing preserves it as it is required to be conservatively
567 // correct in the face of IR changes).
568 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000569
Davide Italianob6725372017-01-02 17:49:18 +0000570 MPM.add(createFloat2IntPass());
James Molloy0cbb2a862015-03-27 10:36:57 +0000571
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000572 addExtensionsToPM(EP_VectorizerStart, MPM);
573
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000574 // Re-rotate loops in all our loop nests. These may have fallout out of
575 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000576 // on the rotated form. Disable header duplication at -Oz.
577 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000578
Adam Nemet938d3d62015-05-14 12:05:18 +0000579 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000580 // into separate loop that would otherwise inhibit vectorization. This is
581 // currently only performed for loops marked with the metadata
582 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Adam Nemet32e6a342016-12-21 04:07:40 +0000583 MPM.add(createLoopDistributePass());
Adam Nemet938d3d62015-05-14 12:05:18 +0000584
Renato Golin729a3ae2013-12-05 21:20:02 +0000585 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000586
587 // Eliminate loads by forwarding stores from the previous iteration to loads
588 // of the current iteration.
Davide Italianoc48d1c82017-10-02 23:39:20 +0000589 MPM.add(createLoopLoadEliminationPass());
Adam Nemete54a4fa2015-11-03 23:50:08 +0000590
Renato Golin729a3ae2013-12-05 21:20:02 +0000591 // FIXME: Because of #pragma vectorize enable, the passes below are always
592 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
593 // on -O1 and no #pragma is found). Would be good to have these two passes
594 // as function calls, so that we can only pass them when the vectorizer
595 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000596 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000597 if (OptLevel > 1 && ExtraVectorizerPasses) {
598 // At higher optimization levels, try to clean up any runtime overlap and
599 // alignment checks inserted by the vectorizer. We want to track correllated
600 // runtime checks for two inner loops in the same outer loop, fold any
601 // common computations, hoist loop-invariant aspects out of any outer loop,
602 // and unswitch the runtime checks if possible. Once hoisted, we may have
603 // dead (or speculatable) control flows or more combining opportunities.
604 MPM.add(createEarlyCSEPass());
605 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000606 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000607 MPM.add(createLICMPass());
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000608 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000609 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000610 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000611 }
James Molloy568da092014-08-06 12:56:19 +0000612
Chandler Carruth3545a9e2017-06-30 07:09:08 +0000613 if (RunSLPAfterLoopVectorization && SLPVectorize) {
614 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
615 if (OptLevel > 1 && ExtraVectorizerPasses) {
616 MPM.add(createEarlyCSEPass());
James Molloy568da092014-08-06 12:56:19 +0000617 }
618 }
619
Peter Collingbourne0a437612014-05-25 10:27:02 +0000620 addExtensionsToPM(EP_Peephole, MPM);
Joerg Sonnenbergerfa736742017-03-26 06:44:08 +0000621 MPM.add(createLateCFGSimplificationPass()); // Switches to lookup tables
Matthias Braunc31032d2016-03-09 18:47:11 +0000622 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000623
Kevin Qin49bc7642015-03-12 05:36:01 +0000624 if (!DisableUnrollLoops) {
Dehao Chen7d230322017-02-18 03:46:51 +0000625 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops
Hal Finkel86b30642014-03-31 23:23:51 +0000626
Wei Mibf727ba2015-05-14 22:02:54 +0000627 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000628 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000629
Kevin Qin49bc7642015-03-12 05:36:01 +0000630 // Runtime unrolling will introduce runtime check in loop prologue. If the
631 // unrolled loop is a inner loop, then the prologue will be inside the
632 // outer loop. LICM pass can help to promote the runtime check out if the
633 // checked value is loop invariant.
634 MPM.add(createLICMPass());
Dehao Chen947dbe122016-11-09 00:58:19 +0000635 }
Kevin Qin49bc7642015-03-12 05:36:01 +0000636
Hal Finkeld67e4632014-09-07 20:05:11 +0000637 // After vectorization and unrolling, assume intrinsics may tell us more
638 // about pointer alignments.
639 MPM.add(createAlignmentFromAssumptionsPass());
640
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000641 if (!DisableUnitAtATime) {
642 // FIXME: We shouldn't bother with this anymore.
643 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
644
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000645 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000646 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000647 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000648 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000649 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000650 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000651 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000652
653 if (MergeFunctions)
654 MPM.add(createMergeFunctionsPass());
655
Dehao Chen5492f862016-11-10 17:42:18 +0000656 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
657 // canonicalization pass that enables other optimizations. As a result,
658 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
659 // result too early.
Dehao Chen947dbe122016-11-09 00:58:19 +0000660 MPM.add(createLoopSinkPass());
661 // Get rid of LCSSA nodes.
662 MPM.add(createInstructionSimplifierPass());
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000663
Sanjay Patel6fd43912017-09-09 13:38:18 +0000664 // This hoists/decomposes div/rem ops. It should run after other sink/hoist
665 // passes to avoid re-sinking, but before SimplifyCFG because it can allow
666 // flattening of blocks.
667 MPM.add(createDivRemPairsPass());
668
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000669 // LoopSink (and other loop passes since the last simplifyCFG) might have
670 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
671 MPM.add(createCFGSimplificationPass());
672
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000673 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000674}
675
Chandler Carruth30d69c22015-02-13 10:01:29 +0000676void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000677 // Remove unused virtual tables to improve the quality of code generated by
678 // whole-program devirtualization and bitset lowering.
679 PM.add(createGlobalDCEPass());
680
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000681 // Provide AliasAnalysis services for optimizations.
682 addInitialAliasAnalysisPasses(PM);
683
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000684 // Allow forcing function attributes as a debugging and tuning aid.
685 PM.add(createForceFunctionAttrsLegacyPass());
686
Chandler Carruth3a040e62015-12-27 08:41:34 +0000687 // Infer attributes about declarations if possible.
688 PM.add(createInferFunctionAttrsLegacyPass());
689
Peter Collingbournefad596a2016-05-25 21:26:14 +0000690 if (OptLevel > 1) {
691 // Indirect call promotion. This should promote all the targets that are
692 // left by the earlier promotion pass that promotes intra-module targets.
693 // This two-step promotion is to save the compile time. For LTO, it should
694 // produce the same result as if we only do promotion here.
Dehao Chencc75d242017-02-23 22:15:18 +0000695 PM.add(
696 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty()));
Rong Xu6e34c492016-04-27 23:20:27 +0000697
Peter Collingbournefad596a2016-05-25 21:26:14 +0000698 // Propagate constants at call sites into the functions they call. This
699 // opens opportunities for globalopt (and inlining) by substituting function
700 // pointers passed as arguments to direct uses of functions.
701 PM.add(createIPSCCPPass());
702 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000703
Peter Collingbournefad596a2016-05-25 21:26:14 +0000704 // Infer attributes about definitions. The readnone attribute in particular is
705 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000706 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000707 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000708
Peter Collingbournef72a8d42016-11-16 23:40:26 +0000709 // Split globals using inrange annotations on GEP indices. This can help
710 // improve the quality of generated code when virtual constant propagation or
711 // control flow integrity are enabled.
712 PM.add(createGlobalSplitPass());
713
Peter Collingbournefad596a2016-05-25 21:26:14 +0000714 // Apply whole-program devirtualization and virtual constant propagation.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000715 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
Peter Collingbournefad596a2016-05-25 21:26:14 +0000716
717 // That's all we need at opt level 1.
718 if (OptLevel == 1)
719 return;
720
721 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000722 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000723 // Promote any localized global vars.
724 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000725
726 // Linking modules together can lead to duplicated global constants, only
727 // keep one copy of each constant.
728 PM.add(createConstantMergePass());
729
730 // Remove unused arguments from functions.
731 PM.add(createDeadArgEliminationPass());
732
733 // Reduce the code after globalopt and ipsccp. Both can open up significant
734 // simplification opportunities, and both can propagate functions through
735 // function pointers. When this happens, we often have to resolve varargs
736 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000737 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000738 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000739
740 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000741 bool RunInliner = Inliner;
742 if (RunInliner) {
743 PM.add(Inliner);
744 Inliner = nullptr;
745 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000746
747 PM.add(createPruneEHPass()); // Remove dead EH info.
748
749 // Optimize globals again if we ran the inliner.
750 if (RunInliner)
751 PM.add(createGlobalOptimizerPass());
752 PM.add(createGlobalDCEPass()); // Remove dead functions.
753
754 // If we didn't decide to inline a function, check to see if we can
755 // transform it to pass arguments by value instead of by reference.
756 PM.add(createArgumentPromotionPass());
757
758 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000759 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000760 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000761 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000762
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000763 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000764 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000765
766 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000767 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000768 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000769
Bill Wendling932b9922012-04-02 22:16:50 +0000770 PM.add(createLICMPass()); // Hoist loop invariants.
Davide Italiano9b8738d2017-01-28 23:45:37 +0000771 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000772 PM.add(NewGVN ? createNewGVNPass()
773 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
Bill Wendling932b9922012-04-02 22:16:50 +0000774 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000775
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000776 // Nuke dead stores.
777 PM.add(createDeadStoreEliminationPass());
778
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000779 // More loops are countable; try to optimize them.
780 PM.add(createIndVarSimplifyPass());
781 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000782 if (EnableLoopInterchange)
783 PM.add(createLoopInterchangePass());
784
James Molloy31f3ddd2016-01-14 15:00:09 +0000785 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000786 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000787 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000788 // The vectorizer may have significantly shortened a loop body; unroll again.
789 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000790 PM.add(createLoopUnrollPass(OptLevel));
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000791
James Molloy6045cc82015-12-15 09:24:01 +0000792 // Now that we've optimized loops (in particular loop induction variables),
793 // we may have exposed more scalar opportunities. Run parts of the scalar
794 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000795 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000796 PM.add(createCFGSimplificationPass()); // if-convert
797 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000798 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000799 PM.add(createBitTrackingDCEPass());
800
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000801 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000802 if (RunSLPAfterLoopVectorization)
803 if (SLPVectorize)
804 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000805
Hal Finkeld67e4632014-09-07 20:05:11 +0000806 // After vectorization, assume intrinsics may tell us more about pointer
807 // alignments.
808 PM.add(createAlignmentFromAssumptionsPass());
809
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000810 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000811 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000812 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000813
814 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000815}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000816
Peter Collingbourne070843d2015-03-19 22:01:00 +0000817void PassManagerBuilder::addLateLTOOptimizationPasses(
818 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000819 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000820 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000821
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000822 // Drop bodies of available externally objects to improve GlobalDCE.
823 PM.add(createEliminateAvailableExternallyPass());
824
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000825 // Now that we have optimized the program, discard unreachable functions.
826 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000827
828 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
829 // currently it damages debug info.
830 if (MergeFunctions)
831 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000832}
Rafael Espindola07f609152011-08-09 22:17:34 +0000833
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000834void PassManagerBuilder::populateThinLTOPassManager(
835 legacy::PassManagerBase &PM) {
836 PerformThinLTO = true;
837
838 if (VerifyInput)
839 PM.add(createVerifierPass());
840
Peter Collingbournef7691d82017-03-22 18:22:59 +0000841 if (ImportSummary) {
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000842 // These passes import type identifier resolutions for whole-program
843 // devirtualization and CFI. They must run early because other passes may
844 // disturb the specific instruction patterns that these passes look for,
845 // creating dependencies on resolutions that may not appear in the summary.
846 //
847 // For example, GVN may transform the pattern assume(type.test) appearing in
848 // two basic blocks into assume(phi(type.test, type.test)), which would
849 // transform a dependency on a WPD resolution into a dependency on a type
850 // identifier resolution for CFI.
851 //
852 // Also, WPD has access to more precise information than ICP and can
853 // devirtualize more effectively, so it should operate on the IR first.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000854 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary));
855 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary));
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000856 }
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000857
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000858 populateModulePassManager(PM);
859
860 if (VerifyOutput)
861 PM.add(createVerifierPass());
862 PerformThinLTO = false;
863}
864
Chandler Carruth30d69c22015-02-13 10:01:29 +0000865void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000866 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000867 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000868
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000869 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000870 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000871
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000872 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000873 addLTOOptimizationPasses(PM);
Peter Collingbourne7730b242017-05-26 18:27:13 +0000874 else {
875 // The whole-program-devirt pass needs to run at -O0 because only it knows
876 // about the llvm.type.checked.load intrinsic: it needs to both lower the
877 // intrinsic itself and handle it in the summary.
878 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
879 }
Rafael Espindola7cebf362014-08-21 20:03:44 +0000880
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000881 // Create a function that performs CFI checks for cross-DSO calls with targets
882 // in the current module.
883 PM.add(createCrossDSOCFIPass());
884
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000885 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
886 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
887 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000888 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr));
Peter Collingbourne070843d2015-03-19 22:01:00 +0000889
890 if (OptLevel != 0)
891 addLateLTOOptimizationPasses(PM);
892
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000893 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000894 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000895}
896
Eric Christopher04d4e932013-04-22 22:47:22 +0000897inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
898 return reinterpret_cast<PassManagerBuilder*>(P);
899}
900
901inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
902 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
903}
904
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000905LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000906 PassManagerBuilder *PMB = new PassManagerBuilder();
907 return wrap(PMB);
908}
909
910void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
911 PassManagerBuilder *Builder = unwrap(PMB);
912 delete Builder;
913}
914
915void
916LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
917 unsigned OptLevel) {
918 PassManagerBuilder *Builder = unwrap(PMB);
919 Builder->OptLevel = OptLevel;
920}
921
922void
923LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
924 unsigned SizeLevel) {
925 PassManagerBuilder *Builder = unwrap(PMB);
926 Builder->SizeLevel = SizeLevel;
927}
928
929void
930LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
931 LLVMBool Value) {
932 PassManagerBuilder *Builder = unwrap(PMB);
933 Builder->DisableUnitAtATime = Value;
934}
935
936void
937LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
938 LLVMBool Value) {
939 PassManagerBuilder *Builder = unwrap(PMB);
940 Builder->DisableUnrollLoops = Value;
941}
942
943void
944LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
945 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000946 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000947}
948
949void
950LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
951 unsigned Threshold) {
952 PassManagerBuilder *Builder = unwrap(PMB);
953 Builder->Inliner = createFunctionInliningPass(Threshold);
954}
955
956void
957LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
958 LLVMPassManagerRef PM) {
959 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000960 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000961 Builder->populateFunctionPassManager(*FPM);
962}
963
964void
965LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
966 LLVMPassManagerRef PM) {
967 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000968 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000969 Builder->populateModulePassManager(*MPM);
970}
971
972void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
973 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000974 LLVMBool Internalize,
975 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000976 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000977 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000978
979 // A small backwards compatibility hack. populateLTOPassManager used to take
980 // an RunInliner option.
981 if (RunInliner && !Builder->Inliner)
982 Builder->Inliner = createFunctionInliningPass();
983
984 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000985}