blob: 6a67a721dadcb37e28e7e4a3db81f9b18cb9667c [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"
Hal Finkelc34e5112012-02-01 03:51:43 +000041#include "llvm/Transforms/Vectorize.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000042
43using namespace llvm;
44
Hal Finkelc34e5112012-02-01 03:51:43 +000045static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000046RunLoopVectorization("vectorize-loops", cl::Hidden,
Nadav Rotemd3df6652012-10-30 18:37:43 +000047 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000048
49static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000050RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000051 cl::desc("Run the SLP vectorization passes"));
52
53static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000054RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000055 cl::desc("Run the BB vectorization passes"));
Hal Finkelc34e5112012-02-01 03:51:43 +000056
Hal Finkel204bf532012-04-13 17:15:33 +000057static cl::opt<bool>
58UseGVNAfterVectorization("use-gvn-after-vectorization",
59 cl::init(false), cl::Hidden,
60 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
61
Chandler Carruth7b8297a2014-10-14 00:31:29 +000062static cl::opt<bool> ExtraVectorizerPasses(
63 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
64 cl::desc("Run cleanup optimization passes after vectorization."));
65
Hal Finkelbf45efd2013-11-16 23:59:05 +000066static cl::opt<bool>
67RunLoopRerolling("reroll-loops", cl::Hidden,
68 cl::desc("Run the loop rerolling pass"));
69
James Molloy0cbb2a862015-03-27 10:36:57 +000070static cl::opt<bool>
71RunFloat2Int("float-to-int", cl::Hidden, cl::init(true),
72 cl::desc("Run the float2int (float demotion) pass"));
73
Michael J. Spencer289067c2014-05-29 01:55:07 +000074static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
75 cl::Hidden,
76 cl::desc("Run the load combining pass"));
77
Davide Italianofe7a3ee2016-12-26 18:26:19 +000078static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden,
79 cl::desc("Run the NewGVN pass"));
80
James Molloy568da092014-08-06 12:56:19 +000081static cl::opt<bool>
82RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000083 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000084 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
85 "vectorizer instead of before"));
86
George Burgess IVbfa401e2016-07-06 00:26:41 +000087// Experimental option to use CFL-AA
88enum class CFLAAType { None, Steensgaard, Andersen, Both };
89static cl::opt<CFLAAType>
90 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
91 cl::desc("Enable the new, experimental CFL alias analysis"),
92 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
93 clEnumValN(CFLAAType::Steensgaard, "steens",
94 "Enable unification-based CFL-AA"),
95 clEnumValN(CFLAAType::Andersen, "anders",
96 "Enable inclusion-based CFL-AA"),
97 clEnumValN(CFLAAType::Both, "both",
Mehdi Amini732afdd2016-10-08 19:41:06 +000098 "Enable both variants of CFL-AA")));
James Molloy568da092014-08-06 12:56:19 +000099
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000100static cl::opt<bool>
Gerolf Hoflehner008e5cd2014-09-10 20:24:03 +0000101EnableMLSM("mlsm", cl::init(true), cl::Hidden,
102 cl::desc("Enable motion of merged load and store"));
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000103
Karthik Bhat88db86d2015-03-06 10:11:25 +0000104static cl::opt<bool> EnableLoopInterchange(
105 "enable-loopinterchange", cl::init(false), cl::Hidden,
106 cl::desc("Enable the new, experimental LoopInterchange Pass"));
107
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000108static cl::opt<bool> EnableNonLTOGlobalsModRef(
James Molloy40159252015-10-13 10:43:57 +0000109 "enable-non-lto-gmr", cl::init(true), cl::Hidden,
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000110 cl::desc(
111 "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline."));
112
Adam Nemete54a4fa2015-11-03 23:50:08 +0000113static cl::opt<bool> EnableLoopLoadElim(
Adam Nemetc979c6e2016-03-15 22:26:12 +0000114 "enable-loop-load-elim", cl::init(true), cl::Hidden,
115 cl::desc("Enable the LoopLoadElimination Pass"));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000116
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000117static cl::opt<bool>
118 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden,
119 cl::desc("Enable preparation for ThinLTO."));
120
Xinliang David Li92392452016-07-23 04:28:52 +0000121static cl::opt<bool> RunPGOInstrGen(
122 "profile-generate", cl::init(false), cl::Hidden,
123 cl::desc("Enable PGO instrumentation."));
124
125static cl::opt<std::string>
126 PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden,
127 cl::desc("Specify the path of profile data file."));
Rong Xu34abbfb2016-01-21 18:28:59 +0000128
129static cl::opt<std::string> RunPGOInstrUse(
130 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
131 cl::desc("Enable use phase of PGO instrumentation and specify the path "
132 "of profile data file"));
133
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000134static cl::opt<bool> UseLoopVersioningLICM(
135 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
136 cl::desc("Enable the experimental Loop Versioning LICM pass"));
137
Rong Xu96a19d32016-07-15 18:10:49 +0000138static cl::opt<bool>
139 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden,
140 cl::desc("Disable pre-instrumentation inliner"));
141
142static cl::opt<int> PreInlineThreshold(
143 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore,
144 cl::desc("Control the amount of inlining in pre-instrumentation inliner "
145 "(default = 75)"));
146
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000147static cl::opt<bool> EnableGVNHoist(
Sebastian Popbfb96c52016-08-08 14:46:15 +0000148 "enable-gvn-hoist", cl::init(true), cl::Hidden,
149 cl::desc("Enable the GVN hoisting pass (default = on)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000150
Rong Xu1c0e9b92016-10-18 21:36:27 +0000151static cl::opt<bool>
152 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
153 cl::Hidden,
154 cl::desc("Disable shrink-wrap library calls"));
155
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000156PassManagerBuilder::PassManagerBuilder() {
157 OptLevel = 2;
158 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000159 LibraryInfo = nullptr;
160 Inliner = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000161 DisableUnitAtATime = false;
162 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000163 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000164 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000165 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000166 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000167 LoadCombine = RunLoadCombine;
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000168 NewGVN = RunNewGVN;
Rafael Espindola208bc532014-08-21 13:13:17 +0000169 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000170 VerifyInput = false;
171 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000172 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000173 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000174 EnablePGOInstrGen = RunPGOInstrGen;
175 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000176 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000177 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000178 PerformThinLTO = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000179}
180
181PassManagerBuilder::~PassManagerBuilder() {
182 delete LibraryInfo;
183 delete Inliner;
184}
185
David Chisnall719a72f2011-08-16 13:58:41 +0000186/// Set of global extensions, automatically added as part of the standard set.
187static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
188 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
189
190void PassManagerBuilder::addGlobalExtension(
191 PassManagerBuilder::ExtensionPointTy Ty,
192 PassManagerBuilder::ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000193 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000194}
195
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000196void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000197 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000198}
199
200void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000201 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000202 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
203 if ((*GlobalExtensions)[i].first == ETy)
204 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000205 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
206 if (Extensions[i].first == ETy)
207 Extensions[i].second(*this, PM);
208}
209
Chandler Carruth30d69c22015-02-13 10:01:29 +0000210void PassManagerBuilder::addInitialAliasAnalysisPasses(
211 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000212 switch (UseCFLAA) {
213 case CFLAAType::Steensgaard:
214 PM.add(createCFLSteensAAWrapperPass());
215 break;
216 case CFLAAType::Andersen:
217 PM.add(createCFLAndersAAWrapperPass());
218 break;
219 case CFLAAType::Both:
220 PM.add(createCFLSteensAAWrapperPass());
221 PM.add(createCFLAndersAAWrapperPass());
222 break;
223 default:
224 break;
225 }
226
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000227 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
228 // BasicAliasAnalysis wins if they disagree. This is intended to help
229 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000230 PM.add(createTypeBasedAAWrapperPass());
231 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000232}
233
Matthias Braunc31032d2016-03-09 18:47:11 +0000234void PassManagerBuilder::addInstructionCombiningPass(
235 legacy::PassManagerBase &PM) const {
236 bool ExpensiveCombines = OptLevel > 2;
237 PM.add(createInstructionCombiningPass(ExpensiveCombines));
238}
239
Chandler Carruth30d69c22015-02-13 10:01:29 +0000240void PassManagerBuilder::populateFunctionPassManager(
241 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000242 addExtensionsToPM(EP_EarlyAsPossible, FPM);
243
244 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000245 if (LibraryInfo)
246 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000247
248 if (OptLevel == 0) return;
249
250 addInitialAliasAnalysisPasses(FPM);
251
252 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000253 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000254 FPM.add(createEarlyCSEPass());
Evgeniy Stepanov95294122016-12-17 01:53:15 +0000255 if(EnableGVNHoist)
256 FPM.add(createGVNHoistPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000257 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) {
Xinliang David Li92392452016-07-23 04:28:52 +0000262 if (!EnablePGOInstrGen && PGOInstrUse.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.
266 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000267 // Create preinline pass. We construct an InlineParams object and specify
268 // the threshold here to avoid the command line options of the regular
269 // inliner to influence pre-inlining. The only fields of InlineParams we
270 // care about are DefaultThreshold and HintThreshold.
271 InlineParams IP;
272 IP.DefaultThreshold = PreInlineThreshold;
273 // FIXME: The hint threshold has the same value used by the regular inliner.
274 // This should probably be lowered after performance testing.
275 IP.HintThreshold = 325;
276
277 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000278 MPM.add(createSROAPass());
279 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
280 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
281 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
282 addExtensionsToPM(EP_Peephole, MPM);
283 }
Xinliang David Li92392452016-07-23 04:28:52 +0000284 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000285 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000286 // Add the profile lowering pass.
287 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000288 if (!PGOInstrGen.empty())
289 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lie6b89292016-04-18 17:47:38 +0000290 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000291 }
292 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000293 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Rong Xu34abbfb2016-01-21 18:28:59 +0000294}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000295void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000296 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000297 // Start of function pass.
298 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000299 MPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000300 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Justin Lebarcf63b642016-04-15 00:32:12 +0000301 // Speculative execution if the target has divergent branches; otherwise nop.
302 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000303 MPM.add(createJumpThreadingPass()); // Thread jumps.
304 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
305 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000306 // Combine silly seq's
307 addInstructionCombiningPass(MPM);
Rong Xu1c0e9b92016-10-18 21:36:27 +0000308 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
309 MPM.add(createLibCallsShrinkWrapPass());
Peter Collingbourne0a437612014-05-25 10:27:02 +0000310 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000311
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000312 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000313 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
314 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000315 // Rotate Loop - disable header duplication at -Oz
316 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000317 MPM.add(createLICMPass()); // Hoist loop invariants
318 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000319 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000320 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000321 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
322 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
323 MPM.add(createLoopDeletionPass()); // Delete dead loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000324 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000325 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000326 MPM.add(createCFGSimplificationPass());
327 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000328 if (!DisableUnrollLoops)
Hal Finkel86b30642014-03-31 23:23:51 +0000329 MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000330 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
331
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000332 if (OptLevel > 1) {
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000333 if (EnableMLSM)
334 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000335 MPM.add(NewGVN ? createNewGVNPass()
336 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000337 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000338 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
339 MPM.add(createSCCPPass()); // Constant prop with SCCP
340
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000341 // Delete dead bit computations (instcombine runs after to fold away the dead
342 // computations, and then ADCE will run later to exploit any new DCE
343 // opportunities that creates).
344 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
345
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000346 // Run instcombine after redundancy elimination to exploit opportunities
347 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000348 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000349 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000350 MPM.add(createJumpThreadingPass()); // Thread jumps
351 MPM.add(createCorrelatedValuePropagationPass());
352 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000353 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000354
355 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
356
Hal Finkel29aeb202013-11-17 16:02:50 +0000357 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000358 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000359 if (!RunSLPAfterLoopVectorization) {
360 if (SLPVectorize)
361 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000362
James Molloy568da092014-08-06 12:56:19 +0000363 if (BBVectorize) {
364 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000365 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000366 addExtensionsToPM(EP_Peephole, MPM);
367 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000368 MPM.add(NewGVN
369 ? createNewGVNPass()
370 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000371 else
372 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000373
James Molloy568da092014-08-06 12:56:19 +0000374 // BBVectorize may have significantly shortened a loop body; unroll again.
375 if (!DisableUnrollLoops)
376 MPM.add(createLoopUnrollPass());
377 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000378 }
379
Michael J. Spencer289067c2014-05-29 01:55:07 +0000380 if (LoadCombine)
381 MPM.add(createLoadCombinePass());
382
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000383 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000384 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000385 // Clean up after everything.
386 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000387 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000388}
389
390void PassManagerBuilder::populateModulePassManager(
391 legacy::PassManagerBase &MPM) {
Dehao Chena99e0822016-12-14 21:40:47 +0000392 if (!PGOSampleUse.empty()) {
393 MPM.add(createPruneEHPass());
394 MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
395 }
396
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000397 // Allow forcing function attributes as a debugging and tuning aid.
398 MPM.add(createForceFunctionAttrsLegacyPass());
399
400 // If all optimizations are disabled, just run the always-inline pass and,
401 // if enabled, the function merging pass.
402 if (OptLevel == 0) {
403 addPGOInstrPasses(MPM);
404 if (Inliner) {
405 MPM.add(Inliner);
406 Inliner = nullptr;
407 }
408
409 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
410 // creates a CGSCC pass manager, but we don't want to add extensions into
411 // that pass manager. To prevent this we insert a no-op module pass to reset
412 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
413 // builds. The function merging pass is
414 if (MergeFunctions)
415 MPM.add(createMergeFunctionsPass());
416 else if (!GlobalExtensions->empty() || !Extensions.empty())
417 MPM.add(createBarrierNoopPass());
418
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000419 if (PrepareForThinLTO)
420 // Rename anon globals to be able to export them in the summary.
421 MPM.add(createNameAnonGlobalPass());
422
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000423 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
424 return;
425 }
426
427 // Add LibraryInfo if we have some.
428 if (LibraryInfo)
429 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
430
431 addInitialAliasAnalysisPasses(MPM);
432
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000433 // For ThinLTO there are two passes of indirect call promotion. The
434 // first is during the compile phase when PerformThinLTO=false and
435 // intra-module indirect call targets are promoted. The second is during
436 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
437 // inter-module indirect calls. For that we perform indirect call promotion
438 // earlier in the pass pipeline, here before globalopt. Otherwise imported
439 // available_externally functions look unreferenced and are removed.
440 if (PerformThinLTO)
441 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true));
442
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000443 if (!DisableUnitAtATime) {
444 // Infer attributes about declarations if possible.
445 MPM.add(createInferFunctionAttrsLegacyPass());
446
447 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
448
449 MPM.add(createIPSCCPPass()); // IP SCCP
450 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
451 // Promote any localized global vars.
452 MPM.add(createPromoteMemoryToRegisterPass());
453
454 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
455
Matthias Braunc31032d2016-03-09 18:47:11 +0000456 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000457 addExtensionsToPM(EP_Peephole, MPM);
458 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
459 }
460
Rong Xu6e34c492016-04-27 23:20:27 +0000461 if (!PerformThinLTO) {
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000462 /// PGO instrumentation is added during the compile phase for ThinLTO, do
463 /// not run it a second time
464 addPGOInstrPasses(MPM);
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000465 // Indirect call promotion that promotes intra-module targets only.
466 // For ThinLTO this is done earlier due to interactions with globalopt
467 // for imported functions.
468 MPM.add(createPGOIndirectCallPromotionLegacyPass());
Rong Xu6e34c492016-04-27 23:20:27 +0000469 }
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000470
471 if (EnableNonLTOGlobalsModRef)
472 // We add a module alias analysis pass here. In part due to bugs in the
473 // analysis infrastructure this "works" in that the analysis stays alive
474 // for the entire SCC pass run below.
475 MPM.add(createGlobalsAAWrapperPass());
476
477 // Start of CallGraph SCC passes.
478 if (!DisableUnitAtATime)
479 MPM.add(createPruneEHPass()); // Remove dead EH info
480 if (Inliner) {
481 MPM.add(Inliner);
482 Inliner = nullptr;
483 }
484 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000485 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000486 if (OptLevel > 2)
487 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
488
David Majnemer6e9b47b2016-07-28 03:28:43 +0000489 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000490 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000491
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000492 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
493 // pass manager that we are specifically trying to avoid. To prevent this
494 // we must insert a no-op module pass to reset the pass manager.
495 MPM.add(createBarrierNoopPass());
496
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000497 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
498 !PrepareForThinLTO)
499 // Remove avail extern fns and globals definitions if we aren't
500 // compiling an object file for later LTO. For LTO we want to preserve
501 // these so they are eligible for inlining at link-time. Note if they
502 // are unreferenced they will be removed by GlobalDCE later, so
503 // this only impacts referenced available externally globals.
504 // Eventually they will be suppressed during codegen, but eliminating
505 // here enables more opportunity for GlobalDCE as it may make
506 // globals referenced by available external functions dead
507 // and saves running remaining passes on the eliminated functions.
508 MPM.add(createEliminateAvailableExternallyPass());
509
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000510 if (!DisableUnitAtATime)
511 MPM.add(createReversePostOrderFunctionAttrsPass());
512
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000513 // If we are planning to perform ThinLTO later, let's not bloat the code with
514 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
515 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000516 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000517 // Reduce the size of the IR as much as possible.
518 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000519 // Rename anon globals to be able to export them in the summary.
520 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000521 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000522 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000523
Mehdi Amini31407ba2016-05-06 18:17:03 +0000524 if (PerformThinLTO)
525 // Optimize globals now when performing ThinLTO, this enables more
526 // optimizations later.
527 MPM.add(createGlobalOptimizerPass());
528
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000529 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000530 // we may see more accurate aliasing. Reason to run this late is that too
531 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000532 // size. By placing it just after inlining other optimizations which runs
533 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000534 if (UseLoopVersioningLICM) {
535 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
536 MPM.add(createLICMPass()); // Hoist loop invariants
537 }
538
Chandler Carruth08eebe22015-07-23 09:34:01 +0000539 if (EnableNonLTOGlobalsModRef)
540 // We add a fresh GlobalsModRef run at this point. This is particularly
541 // useful as the above will have inlined, DCE'ed, and function-attr
542 // propagated everything. We should at this point have a reasonably minimal
543 // and richly annotated call graph. By computing aliasing and mod/ref
544 // information for all local globals here, the late loop passes and notably
545 // the vectorizer will be able to use them to help recognize vectorizable
546 // memory operations.
547 //
548 // Note that this relies on a bug in the pass manager which preserves
549 // a module analysis into a function pass pipeline (and throughout it) so
550 // long as the first function pass doesn't invalidate the module analysis.
551 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
552 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
553 // (doing nothing preserves it as it is required to be conservatively
554 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000555 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000556
James Molloy0cbb2a862015-03-27 10:36:57 +0000557 if (RunFloat2Int)
558 MPM.add(createFloat2IntPass());
559
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000560 addExtensionsToPM(EP_VectorizerStart, MPM);
561
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000562 // Re-rotate loops in all our loop nests. These may have fallout out of
563 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000564 // on the rotated form. Disable header duplication at -Oz.
565 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000566
Adam Nemet938d3d62015-05-14 12:05:18 +0000567 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000568 // into separate loop that would otherwise inhibit vectorization. This is
569 // currently only performed for loops marked with the metadata
570 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Adam Nemet32e6a342016-12-21 04:07:40 +0000571 MPM.add(createLoopDistributePass());
Adam Nemet938d3d62015-05-14 12:05:18 +0000572
Renato Golin729a3ae2013-12-05 21:20:02 +0000573 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000574
575 // Eliminate loads by forwarding stores from the previous iteration to loads
576 // of the current iteration.
577 if (EnableLoopLoadElim)
578 MPM.add(createLoopLoadEliminationPass());
579
Renato Golin729a3ae2013-12-05 21:20:02 +0000580 // FIXME: Because of #pragma vectorize enable, the passes below are always
581 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
582 // on -O1 and no #pragma is found). Would be good to have these two passes
583 // as function calls, so that we can only pass them when the vectorizer
584 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000585 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000586 if (OptLevel > 1 && ExtraVectorizerPasses) {
587 // At higher optimization levels, try to clean up any runtime overlap and
588 // alignment checks inserted by the vectorizer. We want to track correllated
589 // runtime checks for two inner loops in the same outer loop, fold any
590 // common computations, hoist loop-invariant aspects out of any outer loop,
591 // and unswitch the runtime checks if possible. Once hoisted, we may have
592 // dead (or speculatable) control flows or more combining opportunities.
593 MPM.add(createEarlyCSEPass());
594 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000595 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000596 MPM.add(createLICMPass());
597 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
598 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000599 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000600 }
James Molloy568da092014-08-06 12:56:19 +0000601
602 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000603 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000604 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000605 if (OptLevel > 1 && ExtraVectorizerPasses) {
606 MPM.add(createEarlyCSEPass());
607 }
608 }
James Molloy568da092014-08-06 12:56:19 +0000609
610 if (BBVectorize) {
611 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000612 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000613 addExtensionsToPM(EP_Peephole, MPM);
614 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000615 MPM.add(NewGVN
616 ? createNewGVNPass()
617 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000618 else
619 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
620
621 // BBVectorize may have significantly shortened a loop body; unroll again.
622 if (!DisableUnrollLoops)
623 MPM.add(createLoopUnrollPass());
624 }
625 }
626
Peter Collingbourne0a437612014-05-25 10:27:02 +0000627 addExtensionsToPM(EP_Peephole, MPM);
Renato Golin729a3ae2013-12-05 21:20:02 +0000628 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000629 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000630
Kevin Qin49bc7642015-03-12 05:36:01 +0000631 if (!DisableUnrollLoops) {
Hal Finkel86b30642014-03-31 23:23:51 +0000632 MPM.add(createLoopUnrollPass()); // Unroll small loops
633
Wei Mibf727ba2015-05-14 22:02:54 +0000634 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000635 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000636
Kevin Qin49bc7642015-03-12 05:36:01 +0000637 // Runtime unrolling will introduce runtime check in loop prologue. If the
638 // unrolled loop is a inner loop, then the prologue will be inside the
639 // outer loop. LICM pass can help to promote the runtime check out if the
640 // checked value is loop invariant.
641 MPM.add(createLICMPass());
Dehao Chen947dbe122016-11-09 00:58:19 +0000642 }
Kevin Qin49bc7642015-03-12 05:36:01 +0000643
Hal Finkeld67e4632014-09-07 20:05:11 +0000644 // After vectorization and unrolling, assume intrinsics may tell us more
645 // about pointer alignments.
646 MPM.add(createAlignmentFromAssumptionsPass());
647
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000648 if (!DisableUnitAtATime) {
649 // FIXME: We shouldn't bother with this anymore.
650 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
651
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000652 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000653 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000654 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000655 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000656 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000657 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000658 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000659
660 if (MergeFunctions)
661 MPM.add(createMergeFunctionsPass());
662
Dehao Chen5492f862016-11-10 17:42:18 +0000663 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
664 // canonicalization pass that enables other optimizations. As a result,
665 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
666 // result too early.
Dehao Chen947dbe122016-11-09 00:58:19 +0000667 MPM.add(createLoopSinkPass());
668 // Get rid of LCSSA nodes.
669 MPM.add(createInstructionSimplifierPass());
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000670 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000671}
672
Chandler Carruth30d69c22015-02-13 10:01:29 +0000673void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000674 // Remove unused virtual tables to improve the quality of code generated by
675 // whole-program devirtualization and bitset lowering.
676 PM.add(createGlobalDCEPass());
677
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000678 // Provide AliasAnalysis services for optimizations.
679 addInitialAliasAnalysisPasses(PM);
680
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000681 // Allow forcing function attributes as a debugging and tuning aid.
682 PM.add(createForceFunctionAttrsLegacyPass());
683
Chandler Carruth3a040e62015-12-27 08:41:34 +0000684 // Infer attributes about declarations if possible.
685 PM.add(createInferFunctionAttrsLegacyPass());
686
Peter Collingbournefad596a2016-05-25 21:26:14 +0000687 if (OptLevel > 1) {
688 // Indirect call promotion. This should promote all the targets that are
689 // left by the earlier promotion pass that promotes intra-module targets.
690 // This two-step promotion is to save the compile time. For LTO, it should
691 // produce the same result as if we only do promotion here.
692 PM.add(createPGOIndirectCallPromotionLegacyPass(true));
Rong Xu6e34c492016-04-27 23:20:27 +0000693
Peter Collingbournefad596a2016-05-25 21:26:14 +0000694 // Propagate constants at call sites into the functions they call. This
695 // opens opportunities for globalopt (and inlining) by substituting function
696 // pointers passed as arguments to direct uses of functions.
697 PM.add(createIPSCCPPass());
698 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000699
Peter Collingbournefad596a2016-05-25 21:26:14 +0000700 // Infer attributes about definitions. The readnone attribute in particular is
701 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000702 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000703 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000704
Peter Collingbournef72a8d42016-11-16 23:40:26 +0000705 // Split globals using inrange annotations on GEP indices. This can help
706 // improve the quality of generated code when virtual constant propagation or
707 // control flow integrity are enabled.
708 PM.add(createGlobalSplitPass());
709
Peter Collingbournefad596a2016-05-25 21:26:14 +0000710 // Apply whole-program devirtualization and virtual constant propagation.
711 PM.add(createWholeProgramDevirtPass());
712
713 // That's all we need at opt level 1.
714 if (OptLevel == 1)
715 return;
716
717 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000718 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000719 // Promote any localized global vars.
720 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000721
722 // Linking modules together can lead to duplicated global constants, only
723 // keep one copy of each constant.
724 PM.add(createConstantMergePass());
725
726 // Remove unused arguments from functions.
727 PM.add(createDeadArgEliminationPass());
728
729 // Reduce the code after globalopt and ipsccp. Both can open up significant
730 // simplification opportunities, and both can propagate functions through
731 // function pointers. When this happens, we often have to resolve varargs
732 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000733 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000734 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000735
736 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000737 bool RunInliner = Inliner;
738 if (RunInliner) {
739 PM.add(Inliner);
740 Inliner = nullptr;
741 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000742
743 PM.add(createPruneEHPass()); // Remove dead EH info.
744
745 // Optimize globals again if we ran the inliner.
746 if (RunInliner)
747 PM.add(createGlobalOptimizerPass());
748 PM.add(createGlobalDCEPass()); // Remove dead functions.
749
750 // If we didn't decide to inline a function, check to see if we can
751 // transform it to pass arguments by value instead of by reference.
752 PM.add(createArgumentPromotionPass());
753
754 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000755 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000756 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000757 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000758
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000759 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000760 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000761
762 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000763 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000764 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000765
Bill Wendling932b9922012-04-02 22:16:50 +0000766 PM.add(createLICMPass()); // Hoist loop invariants.
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000767 if (EnableMLSM)
768 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000769 PM.add(NewGVN ? createNewGVNPass()
770 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
Bill Wendling932b9922012-04-02 22:16:50 +0000771 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000772
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000773 // Nuke dead stores.
774 PM.add(createDeadStoreEliminationPass());
775
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000776 // More loops are countable; try to optimize them.
777 PM.add(createIndVarSimplifyPass());
778 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000779 if (EnableLoopInterchange)
780 PM.add(createLoopInterchangePass());
781
James Molloy31f3ddd2016-01-14 15:00:09 +0000782 if (!DisableUnrollLoops)
783 PM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000784 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000785 // The vectorizer may have significantly shortened a loop body; unroll again.
786 if (!DisableUnrollLoops)
787 PM.add(createLoopUnrollPass());
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000788
James Molloy6045cc82015-12-15 09:24:01 +0000789 // Now that we've optimized loops (in particular loop induction variables),
790 // we may have exposed more scalar opportunities. Run parts of the scalar
791 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000792 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000793 PM.add(createCFGSimplificationPass()); // if-convert
794 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000795 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000796 PM.add(createBitTrackingDCEPass());
797
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000798 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000799 if (RunSLPAfterLoopVectorization)
800 if (SLPVectorize)
801 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000802
Hal Finkeld67e4632014-09-07 20:05:11 +0000803 // After vectorization, assume intrinsics may tell us more about pointer
804 // alignments.
805 PM.add(createAlignmentFromAssumptionsPass());
806
Michael J. Spencer289067c2014-05-29 01:55:07 +0000807 if (LoadCombine)
808 PM.add(createLoadCombinePass());
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
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000841 populateModulePassManager(PM);
842
843 if (VerifyOutput)
844 PM.add(createVerifierPass());
845 PerformThinLTO = false;
846}
847
Chandler Carruth30d69c22015-02-13 10:01:29 +0000848void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000849 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000850 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000851
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000852 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000853 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000854
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000855 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000856 addLTOOptimizationPasses(PM);
857
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000858 // Create a function that performs CFI checks for cross-DSO calls with targets
859 // in the current module.
860 PM.add(createCrossDSOCFIPass());
861
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000862 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
863 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
864 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
865 PM.add(createLowerTypeTestsPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000866
867 if (OptLevel != 0)
868 addLateLTOOptimizationPasses(PM);
869
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000870 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000871 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000872}
873
Eric Christopher04d4e932013-04-22 22:47:22 +0000874inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
875 return reinterpret_cast<PassManagerBuilder*>(P);
876}
877
878inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
879 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
880}
881
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000882LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000883 PassManagerBuilder *PMB = new PassManagerBuilder();
884 return wrap(PMB);
885}
886
887void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
888 PassManagerBuilder *Builder = unwrap(PMB);
889 delete Builder;
890}
891
892void
893LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
894 unsigned OptLevel) {
895 PassManagerBuilder *Builder = unwrap(PMB);
896 Builder->OptLevel = OptLevel;
897}
898
899void
900LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
901 unsigned SizeLevel) {
902 PassManagerBuilder *Builder = unwrap(PMB);
903 Builder->SizeLevel = SizeLevel;
904}
905
906void
907LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
908 LLVMBool Value) {
909 PassManagerBuilder *Builder = unwrap(PMB);
910 Builder->DisableUnitAtATime = Value;
911}
912
913void
914LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
915 LLVMBool Value) {
916 PassManagerBuilder *Builder = unwrap(PMB);
917 Builder->DisableUnrollLoops = Value;
918}
919
920void
921LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
922 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000923 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000924}
925
926void
927LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
928 unsigned Threshold) {
929 PassManagerBuilder *Builder = unwrap(PMB);
930 Builder->Inliner = createFunctionInliningPass(Threshold);
931}
932
933void
934LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
935 LLVMPassManagerRef PM) {
936 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000937 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000938 Builder->populateFunctionPassManager(*FPM);
939}
940
941void
942LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
943 LLVMPassManagerRef PM) {
944 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000945 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000946 Builder->populateModulePassManager(*MPM);
947}
948
949void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
950 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000951 LLVMBool Internalize,
952 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000953 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000954 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000955
956 // A small backwards compatibility hack. populateLTOPassManager used to take
957 // an RunInliner option.
958 if (RunInliner && !Builder->Inliner)
959 Builder->Inliner = createFunctionInliningPass();
960
961 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000962}