blob: 235e13024a33cefb3254c4dcc53e7583598d9d05 [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
James Molloy568da092014-08-06 12:56:19 +000078static cl::opt<bool>
79RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000080 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000081 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
82 "vectorizer instead of before"));
83
George Burgess IVbfa401e2016-07-06 00:26:41 +000084// Experimental option to use CFL-AA
85enum class CFLAAType { None, Steensgaard, Andersen, Both };
86static cl::opt<CFLAAType>
87 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
88 cl::desc("Enable the new, experimental CFL alias analysis"),
89 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
90 clEnumValN(CFLAAType::Steensgaard, "steens",
91 "Enable unification-based CFL-AA"),
92 clEnumValN(CFLAAType::Andersen, "anders",
93 "Enable inclusion-based CFL-AA"),
94 clEnumValN(CFLAAType::Both, "both",
Mehdi Amini732afdd2016-10-08 19:41:06 +000095 "Enable both variants of CFL-AA")));
James Molloy568da092014-08-06 12:56:19 +000096
Gerolf Hoflehner24815d92014-09-10 19:55:29 +000097static cl::opt<bool>
Gerolf Hoflehner008e5cd2014-09-10 20:24:03 +000098EnableMLSM("mlsm", cl::init(true), cl::Hidden,
99 cl::desc("Enable motion of merged load and store"));
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000100
Karthik Bhat88db86d2015-03-06 10:11:25 +0000101static cl::opt<bool> EnableLoopInterchange(
102 "enable-loopinterchange", cl::init(false), cl::Hidden,
103 cl::desc("Enable the new, experimental LoopInterchange Pass"));
104
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000105static cl::opt<bool> EnableNonLTOGlobalsModRef(
James Molloy40159252015-10-13 10:43:57 +0000106 "enable-non-lto-gmr", cl::init(true), cl::Hidden,
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000107 cl::desc(
108 "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline."));
109
Adam Nemete54a4fa2015-11-03 23:50:08 +0000110static cl::opt<bool> EnableLoopLoadElim(
Adam Nemetc979c6e2016-03-15 22:26:12 +0000111 "enable-loop-load-elim", cl::init(true), cl::Hidden,
112 cl::desc("Enable the LoopLoadElimination Pass"));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000113
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000114static cl::opt<bool>
115 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden,
116 cl::desc("Enable preparation for ThinLTO."));
117
Xinliang David Li92392452016-07-23 04:28:52 +0000118static cl::opt<bool> RunPGOInstrGen(
119 "profile-generate", cl::init(false), cl::Hidden,
120 cl::desc("Enable PGO instrumentation."));
121
122static cl::opt<std::string>
123 PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden,
124 cl::desc("Specify the path of profile data file."));
Rong Xu34abbfb2016-01-21 18:28:59 +0000125
126static cl::opt<std::string> RunPGOInstrUse(
127 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
128 cl::desc("Enable use phase of PGO instrumentation and specify the path "
129 "of profile data file"));
130
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000131static cl::opt<bool> UseLoopVersioningLICM(
132 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
133 cl::desc("Enable the experimental Loop Versioning LICM pass"));
134
Rong Xu96a19d32016-07-15 18:10:49 +0000135static cl::opt<bool>
136 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden,
137 cl::desc("Disable pre-instrumentation inliner"));
138
139static cl::opt<int> PreInlineThreshold(
140 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore,
141 cl::desc("Control the amount of inlining in pre-instrumentation inliner "
142 "(default = 75)"));
143
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000144static cl::opt<bool> EnableGVNHoist(
Sebastian Popbfb96c52016-08-08 14:46:15 +0000145 "enable-gvn-hoist", cl::init(true), cl::Hidden,
146 cl::desc("Enable the GVN hoisting pass (default = on)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000147
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000148PassManagerBuilder::PassManagerBuilder() {
149 OptLevel = 2;
150 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000151 LibraryInfo = nullptr;
152 Inliner = nullptr;
Teresa Johnson26ab5772016-03-15 00:04:37 +0000153 ModuleSummary = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000154 DisableUnitAtATime = false;
155 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000156 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000157 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000158 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000159 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000160 LoadCombine = RunLoadCombine;
Rafael Espindola208bc532014-08-21 13:13:17 +0000161 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000162 VerifyInput = false;
163 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000164 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000165 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000166 EnablePGOInstrGen = RunPGOInstrGen;
167 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000168 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000169 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000170 PerformThinLTO = 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
182void PassManagerBuilder::addGlobalExtension(
183 PassManagerBuilder::ExtensionPointTy Ty,
184 PassManagerBuilder::ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000185 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000186}
187
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000188void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000189 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000190}
191
192void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000193 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000194 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
195 if ((*GlobalExtensions)[i].first == ETy)
196 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000197 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
198 if (Extensions[i].first == ETy)
199 Extensions[i].second(*this, PM);
200}
201
Chandler Carruth30d69c22015-02-13 10:01:29 +0000202void PassManagerBuilder::addInitialAliasAnalysisPasses(
203 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000204 switch (UseCFLAA) {
205 case CFLAAType::Steensgaard:
206 PM.add(createCFLSteensAAWrapperPass());
207 break;
208 case CFLAAType::Andersen:
209 PM.add(createCFLAndersAAWrapperPass());
210 break;
211 case CFLAAType::Both:
212 PM.add(createCFLSteensAAWrapperPass());
213 PM.add(createCFLAndersAAWrapperPass());
214 break;
215 default:
216 break;
217 }
218
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000219 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
220 // BasicAliasAnalysis wins if they disagree. This is intended to help
221 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000222 PM.add(createTypeBasedAAWrapperPass());
223 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000224}
225
Matthias Braunc31032d2016-03-09 18:47:11 +0000226void PassManagerBuilder::addInstructionCombiningPass(
227 legacy::PassManagerBase &PM) const {
228 bool ExpensiveCombines = OptLevel > 2;
229 PM.add(createInstructionCombiningPass(ExpensiveCombines));
230}
231
Chandler Carruth30d69c22015-02-13 10:01:29 +0000232void PassManagerBuilder::populateFunctionPassManager(
233 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000234 addExtensionsToPM(EP_EarlyAsPossible, FPM);
235
236 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000237 if (LibraryInfo)
238 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000239
240 if (OptLevel == 0) return;
241
242 addInitialAliasAnalysisPasses(FPM);
243
244 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000245 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000246 FPM.add(createEarlyCSEPass());
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000247 if(EnableGVNHoist)
248 FPM.add(createGVNHoistPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000249 FPM.add(createLowerExpectIntrinsicPass());
250}
251
Rong Xu34abbfb2016-01-21 18:28:59 +0000252// Do PGO instrumentation generation or use pass as the option specified.
253void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
Xinliang David Li92392452016-07-23 04:28:52 +0000254 if (!EnablePGOInstrGen && PGOInstrUse.empty())
Rong Xu96a19d32016-07-15 18:10:49 +0000255 return;
256 // Perform the preinline and cleanup passes for O1 and above.
257 // And avoid doing them if optimizing for size.
258 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000259 // Create preinline pass. We construct an InlineParams object and specify
260 // the threshold here to avoid the command line options of the regular
261 // inliner to influence pre-inlining. The only fields of InlineParams we
262 // care about are DefaultThreshold and HintThreshold.
263 InlineParams IP;
264 IP.DefaultThreshold = PreInlineThreshold;
265 // FIXME: The hint threshold has the same value used by the regular inliner.
266 // This should probably be lowered after performance testing.
267 IP.HintThreshold = 325;
268
269 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000270 MPM.add(createSROAPass());
271 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
272 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
273 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
274 addExtensionsToPM(EP_Peephole, MPM);
275 }
Xinliang David Li92392452016-07-23 04:28:52 +0000276 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000277 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000278 // Add the profile lowering pass.
279 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000280 if (!PGOInstrGen.empty())
281 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lie6b89292016-04-18 17:47:38 +0000282 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000283 }
284 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000285 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Rong Xu34abbfb2016-01-21 18:28:59 +0000286}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000287void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000288 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000289 // Start of function pass.
290 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000291 MPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000292 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Justin Lebarcf63b642016-04-15 00:32:12 +0000293 // Speculative execution if the target has divergent branches; otherwise nop.
294 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000295 MPM.add(createJumpThreadingPass()); // Thread jumps.
296 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
297 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000298 // Combine silly seq's
299 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000300 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000301
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000302 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000303 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
304 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000305 // Rotate Loop - disable header duplication at -Oz
306 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000307 MPM.add(createLICMPass()); // Hoist loop invariants
308 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000309 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000310 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000311 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
312 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
313 MPM.add(createLoopDeletionPass()); // Delete dead loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000314 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000315 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000316 MPM.add(createCFGSimplificationPass());
317 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000318 if (!DisableUnrollLoops)
Hal Finkel86b30642014-03-31 23:23:51 +0000319 MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000320 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
321
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000322 if (OptLevel > 1) {
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000323 if (EnableMLSM)
324 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Rafael Espindola208bc532014-08-21 13:13:17 +0000325 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000326 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000327 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
328 MPM.add(createSCCPPass()); // Constant prop with SCCP
329
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000330 // Delete dead bit computations (instcombine runs after to fold away the dead
331 // computations, and then ADCE will run later to exploit any new DCE
332 // opportunities that creates).
333 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
334
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000335 // Run instcombine after redundancy elimination to exploit opportunities
336 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000337 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000338 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000339 MPM.add(createJumpThreadingPass()); // Thread jumps
340 MPM.add(createCorrelatedValuePropagationPass());
341 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000342 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000343
344 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
345
Hal Finkel29aeb202013-11-17 16:02:50 +0000346 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000347 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000348 if (!RunSLPAfterLoopVectorization) {
349 if (SLPVectorize)
350 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000351
James Molloy568da092014-08-06 12:56:19 +0000352 if (BBVectorize) {
353 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000354 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000355 addExtensionsToPM(EP_Peephole, MPM);
356 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000357 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000358 else
359 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000360
James Molloy568da092014-08-06 12:56:19 +0000361 // BBVectorize may have significantly shortened a loop body; unroll again.
362 if (!DisableUnrollLoops)
363 MPM.add(createLoopUnrollPass());
364 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000365 }
366
Michael J. Spencer289067c2014-05-29 01:55:07 +0000367 if (LoadCombine)
368 MPM.add(createLoadCombinePass());
369
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000370 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000371 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000372 // Clean up after everything.
373 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000374 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000375}
376
377void PassManagerBuilder::populateModulePassManager(
378 legacy::PassManagerBase &MPM) {
379 // Allow forcing function attributes as a debugging and tuning aid.
380 MPM.add(createForceFunctionAttrsLegacyPass());
381
382 // If all optimizations are disabled, just run the always-inline pass and,
383 // if enabled, the function merging pass.
384 if (OptLevel == 0) {
385 addPGOInstrPasses(MPM);
386 if (Inliner) {
387 MPM.add(Inliner);
388 Inliner = nullptr;
389 }
390
391 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
392 // creates a CGSCC pass manager, but we don't want to add extensions into
393 // that pass manager. To prevent this we insert a no-op module pass to reset
394 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
395 // builds. The function merging pass is
396 if (MergeFunctions)
397 MPM.add(createMergeFunctionsPass());
398 else if (!GlobalExtensions->empty() || !Extensions.empty())
399 MPM.add(createBarrierNoopPass());
400
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000401 if (PrepareForThinLTO)
402 // Rename anon globals to be able to export them in the summary.
403 MPM.add(createNameAnonGlobalPass());
404
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000405 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
406 return;
407 }
408
409 // Add LibraryInfo if we have some.
410 if (LibraryInfo)
411 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
412
413 addInitialAliasAnalysisPasses(MPM);
414
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000415 // For ThinLTO there are two passes of indirect call promotion. The
416 // first is during the compile phase when PerformThinLTO=false and
417 // intra-module indirect call targets are promoted. The second is during
418 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
419 // inter-module indirect calls. For that we perform indirect call promotion
420 // earlier in the pass pipeline, here before globalopt. Otherwise imported
421 // available_externally functions look unreferenced and are removed.
422 if (PerformThinLTO)
423 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true));
424
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000425 if (!DisableUnitAtATime) {
426 // Infer attributes about declarations if possible.
427 MPM.add(createInferFunctionAttrsLegacyPass());
428
429 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
430
431 MPM.add(createIPSCCPPass()); // IP SCCP
432 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
433 // Promote any localized global vars.
434 MPM.add(createPromoteMemoryToRegisterPass());
435
436 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
437
Matthias Braunc31032d2016-03-09 18:47:11 +0000438 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000439 addExtensionsToPM(EP_Peephole, MPM);
440 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
441 }
442
Rong Xu6e34c492016-04-27 23:20:27 +0000443 if (!PerformThinLTO) {
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000444 /// PGO instrumentation is added during the compile phase for ThinLTO, do
445 /// not run it a second time
446 addPGOInstrPasses(MPM);
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000447 // Indirect call promotion that promotes intra-module targets only.
448 // For ThinLTO this is done earlier due to interactions with globalopt
449 // for imported functions.
450 MPM.add(createPGOIndirectCallPromotionLegacyPass());
Rong Xu6e34c492016-04-27 23:20:27 +0000451 }
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000452
453 if (EnableNonLTOGlobalsModRef)
454 // We add a module alias analysis pass here. In part due to bugs in the
455 // analysis infrastructure this "works" in that the analysis stays alive
456 // for the entire SCC pass run below.
457 MPM.add(createGlobalsAAWrapperPass());
458
459 // Start of CallGraph SCC passes.
460 if (!DisableUnitAtATime)
461 MPM.add(createPruneEHPass()); // Remove dead EH info
462 if (Inliner) {
463 MPM.add(Inliner);
464 Inliner = nullptr;
465 }
466 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000467 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000468 if (OptLevel > 2)
469 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
470
David Majnemer6e9b47b2016-07-28 03:28:43 +0000471 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000472 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000473
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000474 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
475 // pass manager that we are specifically trying to avoid. To prevent this
476 // we must insert a no-op module pass to reset the pass manager.
477 MPM.add(createBarrierNoopPass());
478
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000479 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
480 !PrepareForThinLTO)
481 // Remove avail extern fns and globals definitions if we aren't
482 // compiling an object file for later LTO. For LTO we want to preserve
483 // these so they are eligible for inlining at link-time. Note if they
484 // are unreferenced they will be removed by GlobalDCE later, so
485 // this only impacts referenced available externally globals.
486 // Eventually they will be suppressed during codegen, but eliminating
487 // here enables more opportunity for GlobalDCE as it may make
488 // globals referenced by available external functions dead
489 // and saves running remaining passes on the eliminated functions.
490 MPM.add(createEliminateAvailableExternallyPass());
491
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000492 if (!DisableUnitAtATime)
493 MPM.add(createReversePostOrderFunctionAttrsPass());
494
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000495 // If we are planning to perform ThinLTO later, let's not bloat the code with
496 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
497 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000498 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000499 // Reduce the size of the IR as much as possible.
500 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000501 // Rename anon globals to be able to export them in the summary.
502 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000503 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000504 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000505
Mehdi Amini31407ba2016-05-06 18:17:03 +0000506 if (PerformThinLTO)
507 // Optimize globals now when performing ThinLTO, this enables more
508 // optimizations later.
509 MPM.add(createGlobalOptimizerPass());
510
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000511 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000512 // we may see more accurate aliasing. Reason to run this late is that too
513 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000514 // size. By placing it just after inlining other optimizations which runs
515 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000516 if (UseLoopVersioningLICM) {
517 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
518 MPM.add(createLICMPass()); // Hoist loop invariants
519 }
520
Chandler Carruth08eebe22015-07-23 09:34:01 +0000521 if (EnableNonLTOGlobalsModRef)
522 // We add a fresh GlobalsModRef run at this point. This is particularly
523 // useful as the above will have inlined, DCE'ed, and function-attr
524 // propagated everything. We should at this point have a reasonably minimal
525 // and richly annotated call graph. By computing aliasing and mod/ref
526 // information for all local globals here, the late loop passes and notably
527 // the vectorizer will be able to use them to help recognize vectorizable
528 // memory operations.
529 //
530 // Note that this relies on a bug in the pass manager which preserves
531 // a module analysis into a function pass pipeline (and throughout it) so
532 // long as the first function pass doesn't invalidate the module analysis.
533 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
534 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
535 // (doing nothing preserves it as it is required to be conservatively
536 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000537 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000538
James Molloy0cbb2a862015-03-27 10:36:57 +0000539 if (RunFloat2Int)
540 MPM.add(createFloat2IntPass());
541
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000542 addExtensionsToPM(EP_VectorizerStart, MPM);
543
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000544 // Re-rotate loops in all our loop nests. These may have fallout out of
545 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000546 // on the rotated form. Disable header duplication at -Oz.
547 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000548
Adam Nemet938d3d62015-05-14 12:05:18 +0000549 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000550 // into separate loop that would otherwise inhibit vectorization. This is
551 // currently only performed for loops marked with the metadata
552 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
553 MPM.add(createLoopDistributePass(/*ProcessAllLoopsByDefault=*/false));
Adam Nemet938d3d62015-05-14 12:05:18 +0000554
Renato Golin729a3ae2013-12-05 21:20:02 +0000555 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000556
557 // Eliminate loads by forwarding stores from the previous iteration to loads
558 // of the current iteration.
559 if (EnableLoopLoadElim)
560 MPM.add(createLoopLoadEliminationPass());
561
Renato Golin729a3ae2013-12-05 21:20:02 +0000562 // FIXME: Because of #pragma vectorize enable, the passes below are always
563 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
564 // on -O1 and no #pragma is found). Would be good to have these two passes
565 // as function calls, so that we can only pass them when the vectorizer
566 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000567 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000568 if (OptLevel > 1 && ExtraVectorizerPasses) {
569 // At higher optimization levels, try to clean up any runtime overlap and
570 // alignment checks inserted by the vectorizer. We want to track correllated
571 // runtime checks for two inner loops in the same outer loop, fold any
572 // common computations, hoist loop-invariant aspects out of any outer loop,
573 // and unswitch the runtime checks if possible. Once hoisted, we may have
574 // dead (or speculatable) control flows or more combining opportunities.
575 MPM.add(createEarlyCSEPass());
576 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000577 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000578 MPM.add(createLICMPass());
579 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
580 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000581 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000582 }
James Molloy568da092014-08-06 12:56:19 +0000583
584 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000585 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000586 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000587 if (OptLevel > 1 && ExtraVectorizerPasses) {
588 MPM.add(createEarlyCSEPass());
589 }
590 }
James Molloy568da092014-08-06 12:56:19 +0000591
592 if (BBVectorize) {
593 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000594 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000595 addExtensionsToPM(EP_Peephole, MPM);
596 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000597 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000598 else
599 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
600
601 // BBVectorize may have significantly shortened a loop body; unroll again.
602 if (!DisableUnrollLoops)
603 MPM.add(createLoopUnrollPass());
604 }
605 }
606
Peter Collingbourne0a437612014-05-25 10:27:02 +0000607 addExtensionsToPM(EP_Peephole, MPM);
Renato Golin729a3ae2013-12-05 21:20:02 +0000608 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000609 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000610
Kevin Qin49bc7642015-03-12 05:36:01 +0000611 if (!DisableUnrollLoops) {
Hal Finkel86b30642014-03-31 23:23:51 +0000612 MPM.add(createLoopUnrollPass()); // Unroll small loops
613
Wei Mibf727ba2015-05-14 22:02:54 +0000614 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000615 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000616
Kevin Qin49bc7642015-03-12 05:36:01 +0000617 // Runtime unrolling will introduce runtime check in loop prologue. If the
618 // unrolled loop is a inner loop, then the prologue will be inside the
619 // outer loop. LICM pass can help to promote the runtime check out if the
620 // checked value is loop invariant.
621 MPM.add(createLICMPass());
Manuel Jacoba4859842016-06-02 22:14:26 +0000622
623 // Get rid of LCSSA nodes.
624 MPM.add(createInstructionSimplifierPass());
Kevin Qin49bc7642015-03-12 05:36:01 +0000625 }
626
Hal Finkeld67e4632014-09-07 20:05:11 +0000627 // After vectorization and unrolling, assume intrinsics may tell us more
628 // about pointer alignments.
629 MPM.add(createAlignmentFromAssumptionsPass());
630
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000631 if (!DisableUnitAtATime) {
632 // FIXME: We shouldn't bother with this anymore.
633 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
634
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000635 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000636 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000637 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000638 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000639 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000640 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000641 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000642
643 if (MergeFunctions)
644 MPM.add(createMergeFunctionsPass());
645
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000646 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000647}
648
Chandler Carruth30d69c22015-02-13 10:01:29 +0000649void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000650 // Remove unused virtual tables to improve the quality of code generated by
651 // whole-program devirtualization and bitset lowering.
652 PM.add(createGlobalDCEPass());
653
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000654 // Provide AliasAnalysis services for optimizations.
655 addInitialAliasAnalysisPasses(PM);
656
Teresa Johnson26ab5772016-03-15 00:04:37 +0000657 if (ModuleSummary)
658 PM.add(createFunctionImportPass(ModuleSummary));
Teresa Johnson5fcbdb72015-12-07 19:21:11 +0000659
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000660 // Allow forcing function attributes as a debugging and tuning aid.
661 PM.add(createForceFunctionAttrsLegacyPass());
662
Chandler Carruth3a040e62015-12-27 08:41:34 +0000663 // Infer attributes about declarations if possible.
664 PM.add(createInferFunctionAttrsLegacyPass());
665
Peter Collingbournefad596a2016-05-25 21:26:14 +0000666 if (OptLevel > 1) {
667 // Indirect call promotion. This should promote all the targets that are
668 // left by the earlier promotion pass that promotes intra-module targets.
669 // This two-step promotion is to save the compile time. For LTO, it should
670 // produce the same result as if we only do promotion here.
671 PM.add(createPGOIndirectCallPromotionLegacyPass(true));
Rong Xu6e34c492016-04-27 23:20:27 +0000672
Peter Collingbournefad596a2016-05-25 21:26:14 +0000673 // Propagate constants at call sites into the functions they call. This
674 // opens opportunities for globalopt (and inlining) by substituting function
675 // pointers passed as arguments to direct uses of functions.
676 PM.add(createIPSCCPPass());
677 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000678
Peter Collingbournefad596a2016-05-25 21:26:14 +0000679 // Infer attributes about definitions. The readnone attribute in particular is
680 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000681 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000682 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000683
684 // Apply whole-program devirtualization and virtual constant propagation.
685 PM.add(createWholeProgramDevirtPass());
686
687 // That's all we need at opt level 1.
688 if (OptLevel == 1)
689 return;
690
691 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000692 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000693 // Promote any localized global vars.
694 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000695
696 // Linking modules together can lead to duplicated global constants, only
697 // keep one copy of each constant.
698 PM.add(createConstantMergePass());
699
700 // Remove unused arguments from functions.
701 PM.add(createDeadArgEliminationPass());
702
703 // Reduce the code after globalopt and ipsccp. Both can open up significant
704 // simplification opportunities, and both can propagate functions through
705 // function pointers. When this happens, we often have to resolve varargs
706 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000707 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000708 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000709
710 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000711 bool RunInliner = Inliner;
712 if (RunInliner) {
713 PM.add(Inliner);
714 Inliner = nullptr;
715 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000716
717 PM.add(createPruneEHPass()); // Remove dead EH info.
718
719 // Optimize globals again if we ran the inliner.
720 if (RunInliner)
721 PM.add(createGlobalOptimizerPass());
722 PM.add(createGlobalDCEPass()); // Remove dead functions.
723
724 // If we didn't decide to inline a function, check to see if we can
725 // transform it to pass arguments by value instead of by reference.
726 PM.add(createArgumentPromotionPass());
727
728 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000729 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000730 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000731 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000732
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000733 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000734 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000735
736 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000737 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000738 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000739
Bill Wendling932b9922012-04-02 22:16:50 +0000740 PM.add(createLICMPass()); // Hoist loop invariants.
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000741 if (EnableMLSM)
742 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Bill Wendling932b9922012-04-02 22:16:50 +0000743 PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
744 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000745
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000746 // Nuke dead stores.
747 PM.add(createDeadStoreEliminationPass());
748
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000749 // More loops are countable; try to optimize them.
750 PM.add(createIndVarSimplifyPass());
751 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000752 if (EnableLoopInterchange)
753 PM.add(createLoopInterchangePass());
754
James Molloy31f3ddd2016-01-14 15:00:09 +0000755 if (!DisableUnrollLoops)
756 PM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000757 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000758 // The vectorizer may have significantly shortened a loop body; unroll again.
759 if (!DisableUnrollLoops)
760 PM.add(createLoopUnrollPass());
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000761
James Molloy6045cc82015-12-15 09:24:01 +0000762 // Now that we've optimized loops (in particular loop induction variables),
763 // we may have exposed more scalar opportunities. Run parts of the scalar
764 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000765 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000766 PM.add(createCFGSimplificationPass()); // if-convert
767 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000768 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000769 PM.add(createBitTrackingDCEPass());
770
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000771 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000772 if (RunSLPAfterLoopVectorization)
773 if (SLPVectorize)
774 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000775
Hal Finkeld67e4632014-09-07 20:05:11 +0000776 // After vectorization, assume intrinsics may tell us more about pointer
777 // alignments.
778 PM.add(createAlignmentFromAssumptionsPass());
779
Michael J. Spencer289067c2014-05-29 01:55:07 +0000780 if (LoadCombine)
781 PM.add(createLoadCombinePass());
782
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000783 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000784 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000785 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000786
787 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000788}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000789
Peter Collingbourne070843d2015-03-19 22:01:00 +0000790void PassManagerBuilder::addLateLTOOptimizationPasses(
791 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000792 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000793 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000794
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000795 // Drop bodies of available externally objects to improve GlobalDCE.
796 PM.add(createEliminateAvailableExternallyPass());
797
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000798 // Now that we have optimized the program, discard unreachable functions.
799 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000800
801 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
802 // currently it damages debug info.
803 if (MergeFunctions)
804 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000805}
Rafael Espindola07f609152011-08-09 22:17:34 +0000806
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000807void PassManagerBuilder::populateThinLTOPassManager(
808 legacy::PassManagerBase &PM) {
809 PerformThinLTO = true;
810
811 if (VerifyInput)
812 PM.add(createVerifierPass());
813
Teresa Johnson26ab5772016-03-15 00:04:37 +0000814 if (ModuleSummary)
815 PM.add(createFunctionImportPass(ModuleSummary));
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000816
817 populateModulePassManager(PM);
818
819 if (VerifyOutput)
820 PM.add(createVerifierPass());
821 PerformThinLTO = false;
822}
823
Chandler Carruth30d69c22015-02-13 10:01:29 +0000824void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000825 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000826 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000827
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000828 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000829 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000830
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000831 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000832 addLTOOptimizationPasses(PM);
833
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000834 // Create a function that performs CFI checks for cross-DSO calls with targets
835 // in the current module.
836 PM.add(createCrossDSOCFIPass());
837
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000838 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
839 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
840 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
841 PM.add(createLowerTypeTestsPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000842
843 if (OptLevel != 0)
844 addLateLTOOptimizationPasses(PM);
845
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000846 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000847 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000848}
849
Eric Christopher04d4e932013-04-22 22:47:22 +0000850inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
851 return reinterpret_cast<PassManagerBuilder*>(P);
852}
853
854inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
855 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
856}
857
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000858LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000859 PassManagerBuilder *PMB = new PassManagerBuilder();
860 return wrap(PMB);
861}
862
863void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
864 PassManagerBuilder *Builder = unwrap(PMB);
865 delete Builder;
866}
867
868void
869LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
870 unsigned OptLevel) {
871 PassManagerBuilder *Builder = unwrap(PMB);
872 Builder->OptLevel = OptLevel;
873}
874
875void
876LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
877 unsigned SizeLevel) {
878 PassManagerBuilder *Builder = unwrap(PMB);
879 Builder->SizeLevel = SizeLevel;
880}
881
882void
883LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
884 LLVMBool Value) {
885 PassManagerBuilder *Builder = unwrap(PMB);
886 Builder->DisableUnitAtATime = Value;
887}
888
889void
890LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
891 LLVMBool Value) {
892 PassManagerBuilder *Builder = unwrap(PMB);
893 Builder->DisableUnrollLoops = Value;
894}
895
896void
897LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
898 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000899 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000900}
901
902void
903LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
904 unsigned Threshold) {
905 PassManagerBuilder *Builder = unwrap(PMB);
906 Builder->Inliner = createFunctionInliningPass(Threshold);
907}
908
909void
910LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
911 LLVMPassManagerRef PM) {
912 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000913 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000914 Builder->populateFunctionPassManager(*FPM);
915}
916
917void
918LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
919 LLVMPassManagerRef PM) {
920 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000921 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000922 Builder->populateModulePassManager(*MPM);
923}
924
925void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
926 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000927 LLVMBool Internalize,
928 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000929 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000930 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000931
932 // A small backwards compatibility hack. populateLTOPassManager used to take
933 // an RunInliner option.
934 if (RunInliner && !Builder->Inliner)
935 Builder->Inliner = createFunctionInliningPass();
936
937 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000938}