blob: 90a18d76d6923d4131022dc5f61e36771696a694 [file] [log] [blame]
Rafael Espindola3ea478b2011-08-02 21:50:27 +00001//===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the PassManagerBuilder class, which is used to set up a
11// "standard" optimization sequence suitable for languages like C and C++.
12//
13//===----------------------------------------------------------------------===//
14
Rafael Espindola3ea478b2011-08-02 21:50:27 +000015#include "llvm/Transforms/IPO/PassManagerBuilder.h"
Rafael Espindola07f609152011-08-09 22:17:34 +000016#include "llvm-c/Transforms/PassManagerBuilder.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/SmallVector.h"
Chandler Carruth17e0bc32015-08-06 07:33:15 +000018#include "llvm/Analysis/BasicAliasAnalysis.h"
George Burgess IVbfa401e2016-07-06 00:26:41 +000019#include "llvm/Analysis/CFLAndersAliasAnalysis.h"
20#include "llvm/Analysis/CFLSteensAliasAnalysis.h"
Chandler Carruth21dcff72015-08-14 03:48:20 +000021#include "llvm/Analysis/GlobalsModRef.h"
Easwaran Raman61edc102016-08-11 18:24:08 +000022#include "llvm/Analysis/InlineCost.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000023#include "llvm/Analysis/Passes.h"
Chandler Carruth42ff4482015-08-14 02:55:50 +000024#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000025#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth1db22822015-08-14 03:33:48 +000026#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000027#include "llvm/IR/DataLayout.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000028#include "llvm/IR/LegacyPassManager.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000029#include "llvm/IR/ModuleSummaryIndex.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000030#include "llvm/IR/Verifier.h"
31#include "llvm/Support/CommandLine.h"
32#include "llvm/Support/ManagedStatic.h"
Rafael Espindola7cebf362014-08-21 20:03:44 +000033#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Transforms/IPO.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000035#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000036#include "llvm/Transforms/IPO/FunctionAttrs.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000037#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000038#include "llvm/Transforms/Instrumentation.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000039#include "llvm/Transforms/Scalar.h"
Chandler Carruth89c45a12016-03-11 08:50:55 +000040#include "llvm/Transforms/Scalar/GVN.h"
Chandler Carruth1353f9a2017-04-27 18:45:20 +000041#include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
Hal Finkelc34e5112012-02-01 03:51:43 +000042#include "llvm/Transforms/Vectorize.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000043
44using namespace llvm;
45
Hal Finkelc34e5112012-02-01 03:51:43 +000046static cl::opt<bool>
Xinliang David Li126157c2017-05-22 16:41:57 +000047 RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden,
48 cl::ZeroOrMore, cl::desc("Run Partial inlinining pass"));
49
50static cl::opt<bool>
51 RunLoopVectorization("vectorize-loops", cl::Hidden,
52 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000053
54static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000055RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000056 cl::desc("Run the SLP vectorization passes"));
57
58static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000059RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000060 cl::desc("Run the BB vectorization passes"));
Hal Finkelc34e5112012-02-01 03:51:43 +000061
Hal Finkel204bf532012-04-13 17:15:33 +000062static cl::opt<bool>
63UseGVNAfterVectorization("use-gvn-after-vectorization",
64 cl::init(false), cl::Hidden,
65 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
66
Chandler Carruth7b8297a2014-10-14 00:31:29 +000067static cl::opt<bool> ExtraVectorizerPasses(
68 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
69 cl::desc("Run cleanup optimization passes after vectorization."));
70
Hal Finkelbf45efd2013-11-16 23:59:05 +000071static cl::opt<bool>
72RunLoopRerolling("reroll-loops", cl::Hidden,
73 cl::desc("Run the loop rerolling pass"));
74
Michael J. Spencer289067c2014-05-29 01:55:07 +000075static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
76 cl::Hidden,
77 cl::desc("Run the load combining pass"));
78
Davide Italianofe7a3ee2016-12-26 18:26:19 +000079static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden,
80 cl::desc("Run the NewGVN pass"));
81
James Molloy568da092014-08-06 12:56:19 +000082static cl::opt<bool>
83RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000084 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000085 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
86 "vectorizer instead of before"));
87
George Burgess IVbfa401e2016-07-06 00:26:41 +000088// Experimental option to use CFL-AA
89enum class CFLAAType { None, Steensgaard, Andersen, Both };
90static cl::opt<CFLAAType>
91 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
92 cl::desc("Enable the new, experimental CFL alias analysis"),
93 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
94 clEnumValN(CFLAAType::Steensgaard, "steens",
95 "Enable unification-based CFL-AA"),
96 clEnumValN(CFLAAType::Andersen, "anders",
97 "Enable inclusion-based CFL-AA"),
98 clEnumValN(CFLAAType::Both, "both",
Mehdi Amini732afdd2016-10-08 19:41:06 +000099 "Enable both variants of CFL-AA")));
James Molloy568da092014-08-06 12:56:19 +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
Geoff Berry3cca1da2017-06-10 15:20:03 +0000144static cl::opt<bool> EnableEarlyCSEMemSSA(
145 "enable-earlycse-memssa", cl::init(false), cl::Hidden,
146 cl::desc("Enable the EarlyCSE w/ MemorySSA pass (default = off)"));
147
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000148static cl::opt<bool> EnableGVNHoist(
Chandler Carruthc246a4c2017-04-27 00:28:03 +0000149 "enable-gvn-hoist", cl::init(false), cl::Hidden,
150 cl::desc("Enable the GVN hoisting pass (default = off)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000151
Rong Xu1c0e9b92016-10-18 21:36:27 +0000152static cl::opt<bool>
153 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
154 cl::Hidden,
155 cl::desc("Disable shrink-wrap library calls"));
156
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000157static cl::opt<bool>
158 EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false),
159 cl::Hidden,
160 cl::desc("Enable the simple loop unswitch pass."));
161
James Molloya9290632017-05-25 12:51:11 +0000162static cl::opt<bool> EnableGVNSink(
163 "enable-gvn-sink", cl::init(false), cl::Hidden,
Davide Italiano1dd55582017-06-01 23:47:53 +0000164 cl::desc("Enable the GVN sinking pass (default = off)"));
James Molloya9290632017-05-25 12:51:11 +0000165
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000166PassManagerBuilder::PassManagerBuilder() {
167 OptLevel = 2;
168 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000169 LibraryInfo = nullptr;
170 Inliner = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000171 DisableUnitAtATime = false;
172 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000173 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000174 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000175 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000176 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000177 LoadCombine = RunLoadCombine;
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000178 NewGVN = RunNewGVN;
Rafael Espindola208bc532014-08-21 13:13:17 +0000179 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000180 VerifyInput = false;
181 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000182 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000183 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000184 EnablePGOInstrGen = RunPGOInstrGen;
185 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000186 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000187 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000188 PerformThinLTO = false;
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000189 DivergentTarget = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000190}
191
192PassManagerBuilder::~PassManagerBuilder() {
193 delete LibraryInfo;
194 delete Inliner;
195}
196
David Chisnall719a72f2011-08-16 13:58:41 +0000197/// Set of global extensions, automatically added as part of the standard set.
198static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
199 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
200
Frederich Munch4c73b402017-06-13 16:48:41 +0000201void PassManagerBuilder::addGlobalExtension(ExtensionPointTy Ty,
202 ExtensionProc Fn) {
203 GlobalExtensions->push_back(std::make_pair(Ty, Fn));
David Chisnall719a72f2011-08-16 13:58:41 +0000204}
205
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000206void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000207 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000208}
209
210void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000211 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000212 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
213 if ((*GlobalExtensions)[i].first == ETy)
214 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000215 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
216 if (Extensions[i].first == ETy)
217 Extensions[i].second(*this, PM);
218}
219
Chandler Carruth30d69c22015-02-13 10:01:29 +0000220void PassManagerBuilder::addInitialAliasAnalysisPasses(
221 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000222 switch (UseCFLAA) {
223 case CFLAAType::Steensgaard:
224 PM.add(createCFLSteensAAWrapperPass());
225 break;
226 case CFLAAType::Andersen:
227 PM.add(createCFLAndersAAWrapperPass());
228 break;
229 case CFLAAType::Both:
230 PM.add(createCFLSteensAAWrapperPass());
231 PM.add(createCFLAndersAAWrapperPass());
232 break;
233 default:
234 break;
235 }
236
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000237 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
238 // BasicAliasAnalysis wins if they disagree. This is intended to help
239 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000240 PM.add(createTypeBasedAAWrapperPass());
241 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000242}
243
Matthias Braunc31032d2016-03-09 18:47:11 +0000244void PassManagerBuilder::addInstructionCombiningPass(
245 legacy::PassManagerBase &PM) const {
246 bool ExpensiveCombines = OptLevel > 2;
247 PM.add(createInstructionCombiningPass(ExpensiveCombines));
248}
249
Chandler Carruth30d69c22015-02-13 10:01:29 +0000250void PassManagerBuilder::populateFunctionPassManager(
251 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000252 addExtensionsToPM(EP_EarlyAsPossible, FPM);
253
254 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000255 if (LibraryInfo)
256 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000257
258 if (OptLevel == 0) return;
259
260 addInitialAliasAnalysisPasses(FPM);
261
262 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000263 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000264 FPM.add(createEarlyCSEPass());
265 FPM.add(createLowerExpectIntrinsicPass());
266}
267
Rong Xu34abbfb2016-01-21 18:28:59 +0000268// Do PGO instrumentation generation or use pass as the option specified.
269void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
Xinliang David Li92392452016-07-23 04:28:52 +0000270 if (!EnablePGOInstrGen && PGOInstrUse.empty())
Rong Xu96a19d32016-07-15 18:10:49 +0000271 return;
272 // Perform the preinline and cleanup passes for O1 and above.
273 // And avoid doing them if optimizing for size.
274 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000275 // Create preinline pass. We construct an InlineParams object and specify
276 // the threshold here to avoid the command line options of the regular
277 // inliner to influence pre-inlining. The only fields of InlineParams we
278 // care about are DefaultThreshold and HintThreshold.
279 InlineParams IP;
280 IP.DefaultThreshold = PreInlineThreshold;
281 // FIXME: The hint threshold has the same value used by the regular inliner.
282 // This should probably be lowered after performance testing.
283 IP.HintThreshold = 325;
284
285 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000286 MPM.add(createSROAPass());
287 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
288 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
289 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
290 addExtensionsToPM(EP_Peephole, MPM);
291 }
Xinliang David Li92392452016-07-23 04:28:52 +0000292 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000293 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000294 // Add the profile lowering pass.
295 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000296 if (!PGOInstrGen.empty())
297 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lie6b89292016-04-18 17:47:38 +0000298 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000299 }
300 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000301 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Davide Italiano058abf1f2017-04-25 16:54:45 +0000302 // Indirect call promotion that promotes intra-module targets only.
303 // For ThinLTO this is done earlier due to interactions with globalopt
304 // for imported functions. We don't run this at -O0.
305 if (OptLevel > 0)
306 MPM.add(
307 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty()));
Rong Xu34abbfb2016-01-21 18:28:59 +0000308}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000309void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000310 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000311 // Start of function pass.
312 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000313 MPM.add(createSROAPass());
Geoff Berry3cca1da2017-06-10 15:20:03 +0000314 MPM.add(createEarlyCSEPass(EnableEarlyCSEMemSSA)); // Catch trivial redundancies
Geoff Berry85a530f2017-04-13 15:36:25 +0000315 if (EnableGVNHoist)
316 MPM.add(createGVNHoistPass());
James Molloya9290632017-05-25 12:51:11 +0000317 if (EnableGVNSink) {
318 MPM.add(createGVNSinkPass());
319 MPM.add(createCFGSimplificationPass());
320 }
321
Justin Lebarcf63b642016-04-15 00:32:12 +0000322 // Speculative execution if the target has divergent branches; otherwise nop.
323 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000324 MPM.add(createJumpThreadingPass()); // Thread jumps.
325 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
326 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000327 // Combine silly seq's
328 addInstructionCombiningPass(MPM);
Rong Xu1c0e9b92016-10-18 21:36:27 +0000329 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
330 MPM.add(createLibCallsShrinkWrapPass());
Peter Collingbourne0a437612014-05-25 10:27:02 +0000331 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000332
Rong Xu48596b62017-04-04 16:42:20 +0000333 // Optimize memory intrinsic calls based on the profiled size information.
334 if (SizeLevel == 0)
335 MPM.add(createPGOMemOPSizeOptLegacyPass());
336
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000337 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000338 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
339 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000340 // Rotate Loop - disable header duplication at -Oz
341 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000342 MPM.add(createLICMPass()); // Hoist loop invariants
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000343 if (EnableSimpleLoopUnswitch)
344 MPM.add(createSimpleLoopUnswitchLegacyPass());
345 else
346 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000347 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000348 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000349 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
350 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000351 addExtensionsToPM(EP_LateLoopOptimizations, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000352 MPM.add(createLoopDeletionPass()); // Delete dead loops
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000353
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000354 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000355 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000356 MPM.add(createCFGSimplificationPass());
357 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000358 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000359 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000360 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
361
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000362 if (OptLevel > 1) {
Davide Italiano9b8738d2017-01-28 23:45:37 +0000363 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000364 MPM.add(NewGVN ? createNewGVNPass()
365 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000366 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000367 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
368 MPM.add(createSCCPPass()); // Constant prop with SCCP
369
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000370 // Delete dead bit computations (instcombine runs after to fold away the dead
371 // computations, and then ADCE will run later to exploit any new DCE
372 // opportunities that creates).
373 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
374
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000375 // Run instcombine after redundancy elimination to exploit opportunities
376 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000377 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000378 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000379 MPM.add(createJumpThreadingPass()); // Thread jumps
380 MPM.add(createCorrelatedValuePropagationPass());
381 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000382 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000383
384 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
385
Hal Finkel29aeb202013-11-17 16:02:50 +0000386 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000387 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000388 if (!RunSLPAfterLoopVectorization) {
389 if (SLPVectorize)
390 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000391
James Molloy568da092014-08-06 12:56:19 +0000392 if (BBVectorize) {
393 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000394 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000395 addExtensionsToPM(EP_Peephole, MPM);
396 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000397 MPM.add(NewGVN
398 ? createNewGVNPass()
399 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000400 else
401 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000402
James Molloy568da092014-08-06 12:56:19 +0000403 // BBVectorize may have significantly shortened a loop body; unroll again.
404 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000405 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000406 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000407 }
408
Michael J. Spencer289067c2014-05-29 01:55:07 +0000409 if (LoadCombine)
410 MPM.add(createLoadCombinePass());
411
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000412 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000413 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000414 // Clean up after everything.
415 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000416 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000417}
418
419void PassManagerBuilder::populateModulePassManager(
420 legacy::PassManagerBase &MPM) {
Dehao Chena99e0822016-12-14 21:40:47 +0000421 if (!PGOSampleUse.empty()) {
422 MPM.add(createPruneEHPass());
423 MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
424 }
425
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000426 // Allow forcing function attributes as a debugging and tuning aid.
427 MPM.add(createForceFunctionAttrsLegacyPass());
428
429 // If all optimizations are disabled, just run the always-inline pass and,
430 // if enabled, the function merging pass.
431 if (OptLevel == 0) {
432 addPGOInstrPasses(MPM);
433 if (Inliner) {
434 MPM.add(Inliner);
435 Inliner = nullptr;
436 }
437
438 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
439 // creates a CGSCC pass manager, but we don't want to add extensions into
440 // that pass manager. To prevent this we insert a no-op module pass to reset
441 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
442 // builds. The function merging pass is
443 if (MergeFunctions)
444 MPM.add(createMergeFunctionsPass());
445 else if (!GlobalExtensions->empty() || !Extensions.empty())
446 MPM.add(createBarrierNoopPass());
447
448 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
Davide Italiano5da70902017-04-23 04:49:34 +0000449
450 // Rename anon globals to be able to export them in the summary.
451 // This has to be done after we add the extensions to the pass manager
452 // as there could be passes (e.g. Adddress sanitizer) which introduce
453 // new unnamed globals.
454 if (PrepareForThinLTO)
455 MPM.add(createNameAnonGlobalPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000456 return;
457 }
458
459 // Add LibraryInfo if we have some.
460 if (LibraryInfo)
461 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
462
463 addInitialAliasAnalysisPasses(MPM);
464
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000465 // For ThinLTO there are two passes of indirect call promotion. The
466 // first is during the compile phase when PerformThinLTO=false and
467 // intra-module indirect call targets are promoted. The second is during
468 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
469 // inter-module indirect calls. For that we perform indirect call promotion
470 // earlier in the pass pipeline, here before globalopt. Otherwise imported
471 // available_externally functions look unreferenced and are removed.
472 if (PerformThinLTO)
Dehao Chencc75d242017-02-23 22:15:18 +0000473 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
474 !PGOSampleUse.empty()));
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000475
Dehao Chen8c886712017-03-23 21:20:05 +0000476 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
477 // as it will change the CFG too much to make the 2nd profile annotation
478 // in backend more difficult.
479 bool PrepareForThinLTOUsingPGOSampleProfile =
480 PrepareForThinLTO && !PGOSampleUse.empty();
481 if (PrepareForThinLTOUsingPGOSampleProfile)
482 DisableUnrollLoops = true;
483
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000484 if (!DisableUnitAtATime) {
485 // Infer attributes about declarations if possible.
486 MPM.add(createInferFunctionAttrsLegacyPass());
487
488 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
489
490 MPM.add(createIPSCCPPass()); // IP SCCP
491 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
492 // Promote any localized global vars.
493 MPM.add(createPromoteMemoryToRegisterPass());
494
495 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
496
Matthias Braunc31032d2016-03-09 18:47:11 +0000497 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000498 addExtensionsToPM(EP_Peephole, MPM);
499 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
500 }
501
Dehao Chen8c886712017-03-23 21:20:05 +0000502 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
503 // call promotion as it will change the CFG too much to make the 2nd
504 // profile annotation in backend more difficult.
Davide Italiano058abf1f2017-04-25 16:54:45 +0000505 // PGO instrumentation is added during the compile phase for ThinLTO, do
506 // not run it a second time
507 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile)
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000508 addPGOInstrPasses(MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000509
510 if (EnableNonLTOGlobalsModRef)
511 // We add a module alias analysis pass here. In part due to bugs in the
512 // analysis infrastructure this "works" in that the analysis stays alive
513 // for the entire SCC pass run below.
514 MPM.add(createGlobalsAAWrapperPass());
515
516 // Start of CallGraph SCC passes.
517 if (!DisableUnitAtATime)
518 MPM.add(createPruneEHPass()); // Remove dead EH info
519 if (Inliner) {
520 MPM.add(Inliner);
521 Inliner = nullptr;
522 }
523 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000524 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000525 if (OptLevel > 2)
526 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
527
David Majnemer6e9b47b2016-07-28 03:28:43 +0000528 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000529 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000530
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000531 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
532 // pass manager that we are specifically trying to avoid. To prevent this
533 // we must insert a no-op module pass to reset the pass manager.
534 MPM.add(createBarrierNoopPass());
Xinliang David Li126157c2017-05-22 16:41:57 +0000535 if (RunPartialInlining)
536 MPM.add(createPartialInliningPass());
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000537
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000538 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
539 !PrepareForThinLTO)
540 // Remove avail extern fns and globals definitions if we aren't
541 // compiling an object file for later LTO. For LTO we want to preserve
542 // these so they are eligible for inlining at link-time. Note if they
543 // are unreferenced they will be removed by GlobalDCE later, so
544 // this only impacts referenced available externally globals.
545 // Eventually they will be suppressed during codegen, but eliminating
546 // here enables more opportunity for GlobalDCE as it may make
547 // globals referenced by available external functions dead
548 // and saves running remaining passes on the eliminated functions.
549 MPM.add(createEliminateAvailableExternallyPass());
550
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000551 if (!DisableUnitAtATime)
552 MPM.add(createReversePostOrderFunctionAttrsPass());
553
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000554 // If we are planning to perform ThinLTO later, let's not bloat the code with
555 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
556 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000557 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000558 // Reduce the size of the IR as much as possible.
559 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000560 // Rename anon globals to be able to export them in the summary.
561 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000562 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000563 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000564
Mehdi Amini31407ba2016-05-06 18:17:03 +0000565 if (PerformThinLTO)
566 // Optimize globals now when performing ThinLTO, this enables more
567 // optimizations later.
568 MPM.add(createGlobalOptimizerPass());
569
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000570 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000571 // we may see more accurate aliasing. Reason to run this late is that too
572 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000573 // size. By placing it just after inlining other optimizations which runs
574 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000575 if (UseLoopVersioningLICM) {
576 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
577 MPM.add(createLICMPass()); // Hoist loop invariants
578 }
579
Chandler Carruth08eebe22015-07-23 09:34:01 +0000580 if (EnableNonLTOGlobalsModRef)
581 // We add a fresh GlobalsModRef run at this point. This is particularly
582 // useful as the above will have inlined, DCE'ed, and function-attr
583 // propagated everything. We should at this point have a reasonably minimal
584 // and richly annotated call graph. By computing aliasing and mod/ref
585 // information for all local globals here, the late loop passes and notably
586 // the vectorizer will be able to use them to help recognize vectorizable
587 // memory operations.
588 //
589 // Note that this relies on a bug in the pass manager which preserves
590 // a module analysis into a function pass pipeline (and throughout it) so
591 // long as the first function pass doesn't invalidate the module analysis.
592 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
593 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
594 // (doing nothing preserves it as it is required to be conservatively
595 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000596 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000597
Davide Italianob6725372017-01-02 17:49:18 +0000598 MPM.add(createFloat2IntPass());
James Molloy0cbb2a862015-03-27 10:36:57 +0000599
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000600 addExtensionsToPM(EP_VectorizerStart, MPM);
601
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000602 // Re-rotate loops in all our loop nests. These may have fallout out of
603 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000604 // on the rotated form. Disable header duplication at -Oz.
605 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000606
Adam Nemet938d3d62015-05-14 12:05:18 +0000607 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000608 // into separate loop that would otherwise inhibit vectorization. This is
609 // currently only performed for loops marked with the metadata
610 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Adam Nemet32e6a342016-12-21 04:07:40 +0000611 MPM.add(createLoopDistributePass());
Adam Nemet938d3d62015-05-14 12:05:18 +0000612
Renato Golin729a3ae2013-12-05 21:20:02 +0000613 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000614
615 // Eliminate loads by forwarding stores from the previous iteration to loads
616 // of the current iteration.
617 if (EnableLoopLoadElim)
618 MPM.add(createLoopLoadEliminationPass());
619
Renato Golin729a3ae2013-12-05 21:20:02 +0000620 // FIXME: Because of #pragma vectorize enable, the passes below are always
621 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
622 // on -O1 and no #pragma is found). Would be good to have these two passes
623 // as function calls, so that we can only pass them when the vectorizer
624 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000625 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000626 if (OptLevel > 1 && ExtraVectorizerPasses) {
627 // At higher optimization levels, try to clean up any runtime overlap and
628 // alignment checks inserted by the vectorizer. We want to track correllated
629 // runtime checks for two inner loops in the same outer loop, fold any
630 // common computations, hoist loop-invariant aspects out of any outer loop,
631 // and unswitch the runtime checks if possible. Once hoisted, we may have
632 // dead (or speculatable) control flows or more combining opportunities.
633 MPM.add(createEarlyCSEPass());
634 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000635 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000636 MPM.add(createLICMPass());
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000637 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000638 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000639 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000640 }
James Molloy568da092014-08-06 12:56:19 +0000641
642 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000643 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000644 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000645 if (OptLevel > 1 && ExtraVectorizerPasses) {
646 MPM.add(createEarlyCSEPass());
647 }
648 }
James Molloy568da092014-08-06 12:56:19 +0000649
650 if (BBVectorize) {
651 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000652 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000653 addExtensionsToPM(EP_Peephole, MPM);
654 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000655 MPM.add(NewGVN
656 ? createNewGVNPass()
657 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000658 else
659 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
660
661 // BBVectorize may have significantly shortened a loop body; unroll again.
662 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000663 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000664 }
665 }
666
Peter Collingbourne0a437612014-05-25 10:27:02 +0000667 addExtensionsToPM(EP_Peephole, MPM);
Joerg Sonnenbergerfa736742017-03-26 06:44:08 +0000668 MPM.add(createLateCFGSimplificationPass()); // Switches to lookup tables
Matthias Braunc31032d2016-03-09 18:47:11 +0000669 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000670
Kevin Qin49bc7642015-03-12 05:36:01 +0000671 if (!DisableUnrollLoops) {
Dehao Chen7d230322017-02-18 03:46:51 +0000672 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops
Hal Finkel86b30642014-03-31 23:23:51 +0000673
Wei Mibf727ba2015-05-14 22:02:54 +0000674 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000675 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000676
Kevin Qin49bc7642015-03-12 05:36:01 +0000677 // Runtime unrolling will introduce runtime check in loop prologue. If the
678 // unrolled loop is a inner loop, then the prologue will be inside the
679 // outer loop. LICM pass can help to promote the runtime check out if the
680 // checked value is loop invariant.
681 MPM.add(createLICMPass());
Dehao Chen947dbe122016-11-09 00:58:19 +0000682 }
Kevin Qin49bc7642015-03-12 05:36:01 +0000683
Hal Finkeld67e4632014-09-07 20:05:11 +0000684 // After vectorization and unrolling, assume intrinsics may tell us more
685 // about pointer alignments.
686 MPM.add(createAlignmentFromAssumptionsPass());
687
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000688 if (!DisableUnitAtATime) {
689 // FIXME: We shouldn't bother with this anymore.
690 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
691
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000692 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000693 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000694 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000695 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000696 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000697 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000698 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000699
700 if (MergeFunctions)
701 MPM.add(createMergeFunctionsPass());
702
Dehao Chen5492f862016-11-10 17:42:18 +0000703 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
704 // canonicalization pass that enables other optimizations. As a result,
705 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
706 // result too early.
Dehao Chen947dbe122016-11-09 00:58:19 +0000707 MPM.add(createLoopSinkPass());
708 // Get rid of LCSSA nodes.
709 MPM.add(createInstructionSimplifierPass());
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000710
711 // LoopSink (and other loop passes since the last simplifyCFG) might have
712 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
713 MPM.add(createCFGSimplificationPass());
714
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000715 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000716}
717
Chandler Carruth30d69c22015-02-13 10:01:29 +0000718void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000719 // Remove unused virtual tables to improve the quality of code generated by
720 // whole-program devirtualization and bitset lowering.
721 PM.add(createGlobalDCEPass());
722
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000723 // Provide AliasAnalysis services for optimizations.
724 addInitialAliasAnalysisPasses(PM);
725
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000726 // Allow forcing function attributes as a debugging and tuning aid.
727 PM.add(createForceFunctionAttrsLegacyPass());
728
Chandler Carruth3a040e62015-12-27 08:41:34 +0000729 // Infer attributes about declarations if possible.
730 PM.add(createInferFunctionAttrsLegacyPass());
731
Peter Collingbournefad596a2016-05-25 21:26:14 +0000732 if (OptLevel > 1) {
733 // Indirect call promotion. This should promote all the targets that are
734 // left by the earlier promotion pass that promotes intra-module targets.
735 // This two-step promotion is to save the compile time. For LTO, it should
736 // produce the same result as if we only do promotion here.
Dehao Chencc75d242017-02-23 22:15:18 +0000737 PM.add(
738 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty()));
Rong Xu6e34c492016-04-27 23:20:27 +0000739
Peter Collingbournefad596a2016-05-25 21:26:14 +0000740 // Propagate constants at call sites into the functions they call. This
741 // opens opportunities for globalopt (and inlining) by substituting function
742 // pointers passed as arguments to direct uses of functions.
743 PM.add(createIPSCCPPass());
744 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000745
Peter Collingbournefad596a2016-05-25 21:26:14 +0000746 // Infer attributes about definitions. The readnone attribute in particular is
747 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000748 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000749 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000750
Peter Collingbournef72a8d42016-11-16 23:40:26 +0000751 // Split globals using inrange annotations on GEP indices. This can help
752 // improve the quality of generated code when virtual constant propagation or
753 // control flow integrity are enabled.
754 PM.add(createGlobalSplitPass());
755
Peter Collingbournefad596a2016-05-25 21:26:14 +0000756 // Apply whole-program devirtualization and virtual constant propagation.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000757 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
Peter Collingbournefad596a2016-05-25 21:26:14 +0000758
759 // That's all we need at opt level 1.
760 if (OptLevel == 1)
761 return;
762
763 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000764 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000765 // Promote any localized global vars.
766 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000767
768 // Linking modules together can lead to duplicated global constants, only
769 // keep one copy of each constant.
770 PM.add(createConstantMergePass());
771
772 // Remove unused arguments from functions.
773 PM.add(createDeadArgEliminationPass());
774
775 // Reduce the code after globalopt and ipsccp. Both can open up significant
776 // simplification opportunities, and both can propagate functions through
777 // function pointers. When this happens, we often have to resolve varargs
778 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000779 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000780 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000781
782 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000783 bool RunInliner = Inliner;
784 if (RunInliner) {
785 PM.add(Inliner);
786 Inliner = nullptr;
787 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000788
789 PM.add(createPruneEHPass()); // Remove dead EH info.
790
791 // Optimize globals again if we ran the inliner.
792 if (RunInliner)
793 PM.add(createGlobalOptimizerPass());
794 PM.add(createGlobalDCEPass()); // Remove dead functions.
795
796 // If we didn't decide to inline a function, check to see if we can
797 // transform it to pass arguments by value instead of by reference.
798 PM.add(createArgumentPromotionPass());
799
800 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000801 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000802 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000803 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000804
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000805 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000806 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000807
808 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000809 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000810 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000811
Bill Wendling932b9922012-04-02 22:16:50 +0000812 PM.add(createLICMPass()); // Hoist loop invariants.
Davide Italiano9b8738d2017-01-28 23:45:37 +0000813 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000814 PM.add(NewGVN ? createNewGVNPass()
815 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
Bill Wendling932b9922012-04-02 22:16:50 +0000816 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000817
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000818 // Nuke dead stores.
819 PM.add(createDeadStoreEliminationPass());
820
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000821 // More loops are countable; try to optimize them.
822 PM.add(createIndVarSimplifyPass());
823 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000824 if (EnableLoopInterchange)
825 PM.add(createLoopInterchangePass());
826
James Molloy31f3ddd2016-01-14 15:00:09 +0000827 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000828 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000829 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000830 // The vectorizer may have significantly shortened a loop body; unroll again.
831 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000832 PM.add(createLoopUnrollPass(OptLevel));
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000833
James Molloy6045cc82015-12-15 09:24:01 +0000834 // Now that we've optimized loops (in particular loop induction variables),
835 // we may have exposed more scalar opportunities. Run parts of the scalar
836 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000837 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000838 PM.add(createCFGSimplificationPass()); // if-convert
839 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000840 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000841 PM.add(createBitTrackingDCEPass());
842
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000843 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000844 if (RunSLPAfterLoopVectorization)
845 if (SLPVectorize)
846 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000847
Hal Finkeld67e4632014-09-07 20:05:11 +0000848 // After vectorization, assume intrinsics may tell us more about pointer
849 // alignments.
850 PM.add(createAlignmentFromAssumptionsPass());
851
Michael J. Spencer289067c2014-05-29 01:55:07 +0000852 if (LoadCombine)
853 PM.add(createLoadCombinePass());
854
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000855 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000856 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000857 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000858
859 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000860}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000861
Peter Collingbourne070843d2015-03-19 22:01:00 +0000862void PassManagerBuilder::addLateLTOOptimizationPasses(
863 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000864 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000865 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000866
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000867 // Drop bodies of available externally objects to improve GlobalDCE.
868 PM.add(createEliminateAvailableExternallyPass());
869
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000870 // Now that we have optimized the program, discard unreachable functions.
871 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000872
873 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
874 // currently it damages debug info.
875 if (MergeFunctions)
876 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000877}
Rafael Espindola07f609152011-08-09 22:17:34 +0000878
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000879void PassManagerBuilder::populateThinLTOPassManager(
880 legacy::PassManagerBase &PM) {
881 PerformThinLTO = true;
882
883 if (VerifyInput)
884 PM.add(createVerifierPass());
885
Peter Collingbournef7691d82017-03-22 18:22:59 +0000886 if (ImportSummary) {
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000887 // These passes import type identifier resolutions for whole-program
888 // devirtualization and CFI. They must run early because other passes may
889 // disturb the specific instruction patterns that these passes look for,
890 // creating dependencies on resolutions that may not appear in the summary.
891 //
892 // For example, GVN may transform the pattern assume(type.test) appearing in
893 // two basic blocks into assume(phi(type.test, type.test)), which would
894 // transform a dependency on a WPD resolution into a dependency on a type
895 // identifier resolution for CFI.
896 //
897 // Also, WPD has access to more precise information than ICP and can
898 // devirtualize more effectively, so it should operate on the IR first.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000899 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary));
900 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary));
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000901 }
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000902
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000903 populateModulePassManager(PM);
904
905 if (VerifyOutput)
906 PM.add(createVerifierPass());
907 PerformThinLTO = false;
908}
909
Chandler Carruth30d69c22015-02-13 10:01:29 +0000910void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000911 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000912 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000913
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000914 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000915 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000916
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000917 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000918 addLTOOptimizationPasses(PM);
Peter Collingbourne7730b242017-05-26 18:27:13 +0000919 else {
920 // The whole-program-devirt pass needs to run at -O0 because only it knows
921 // about the llvm.type.checked.load intrinsic: it needs to both lower the
922 // intrinsic itself and handle it in the summary.
923 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
924 }
Rafael Espindola7cebf362014-08-21 20:03:44 +0000925
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000926 // Create a function that performs CFI checks for cross-DSO calls with targets
927 // in the current module.
928 PM.add(createCrossDSOCFIPass());
929
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000930 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
931 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
932 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000933 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr));
Peter Collingbourne070843d2015-03-19 22:01:00 +0000934
935 if (OptLevel != 0)
936 addLateLTOOptimizationPasses(PM);
937
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000938 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000939 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000940}
941
Eric Christopher04d4e932013-04-22 22:47:22 +0000942inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
943 return reinterpret_cast<PassManagerBuilder*>(P);
944}
945
946inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
947 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
948}
949
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000950LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000951 PassManagerBuilder *PMB = new PassManagerBuilder();
952 return wrap(PMB);
953}
954
955void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
956 PassManagerBuilder *Builder = unwrap(PMB);
957 delete Builder;
958}
959
960void
961LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
962 unsigned OptLevel) {
963 PassManagerBuilder *Builder = unwrap(PMB);
964 Builder->OptLevel = OptLevel;
965}
966
967void
968LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
969 unsigned SizeLevel) {
970 PassManagerBuilder *Builder = unwrap(PMB);
971 Builder->SizeLevel = SizeLevel;
972}
973
974void
975LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
976 LLVMBool Value) {
977 PassManagerBuilder *Builder = unwrap(PMB);
978 Builder->DisableUnitAtATime = Value;
979}
980
981void
982LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
983 LLVMBool Value) {
984 PassManagerBuilder *Builder = unwrap(PMB);
985 Builder->DisableUnrollLoops = Value;
986}
987
988void
989LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
990 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000991 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000992}
993
994void
995LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
996 unsigned Threshold) {
997 PassManagerBuilder *Builder = unwrap(PMB);
998 Builder->Inliner = createFunctionInliningPass(Threshold);
999}
1000
1001void
1002LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
1003 LLVMPassManagerRef PM) {
1004 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +00001005 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001006 Builder->populateFunctionPassManager(*FPM);
1007}
1008
1009void
1010LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
1011 LLVMPassManagerRef PM) {
1012 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +00001013 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001014 Builder->populateModulePassManager(*MPM);
1015}
1016
1017void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
1018 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +00001019 LLVMBool Internalize,
1020 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +00001021 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +00001022 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +00001023
1024 // A small backwards compatibility hack. populateLTOPassManager used to take
1025 // an RunInliner option.
1026 if (RunInliner && !Builder->Inliner)
1027 Builder->Inliner = createFunctionInliningPass();
1028
1029 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001030}