blob: 1a34eca2c5db62c31ab2ea2f3f2346e5a2eac5d9 [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
Davide Italianofe7a3ee2016-12-26 18:26:19 +000075static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden,
76 cl::desc("Run the NewGVN 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
Karthik Bhat88db86d2015-03-06 10:11:25 +000097static cl::opt<bool> EnableLoopInterchange(
98 "enable-loopinterchange", cl::init(false), cl::Hidden,
99 cl::desc("Enable the new, experimental LoopInterchange Pass"));
100
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000101static cl::opt<bool> EnableNonLTOGlobalsModRef(
James Molloy40159252015-10-13 10:43:57 +0000102 "enable-non-lto-gmr", cl::init(true), cl::Hidden,
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000103 cl::desc(
104 "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline."));
105
Adam Nemete54a4fa2015-11-03 23:50:08 +0000106static cl::opt<bool> EnableLoopLoadElim(
Adam Nemetc979c6e2016-03-15 22:26:12 +0000107 "enable-loop-load-elim", cl::init(true), cl::Hidden,
108 cl::desc("Enable the LoopLoadElimination Pass"));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000109
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000110static cl::opt<bool>
111 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden,
112 cl::desc("Enable preparation for ThinLTO."));
113
Xinliang David Li92392452016-07-23 04:28:52 +0000114static cl::opt<bool> RunPGOInstrGen(
115 "profile-generate", cl::init(false), cl::Hidden,
116 cl::desc("Enable PGO instrumentation."));
117
118static cl::opt<std::string>
119 PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden,
120 cl::desc("Specify the path of profile data file."));
Rong Xu34abbfb2016-01-21 18:28:59 +0000121
122static cl::opt<std::string> RunPGOInstrUse(
123 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
124 cl::desc("Enable use phase of PGO instrumentation and specify the path "
125 "of profile data file"));
126
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000127static cl::opt<bool> UseLoopVersioningLICM(
128 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
129 cl::desc("Enable the experimental Loop Versioning LICM pass"));
130
Rong Xu96a19d32016-07-15 18:10:49 +0000131static cl::opt<bool>
132 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden,
133 cl::desc("Disable pre-instrumentation inliner"));
134
135static cl::opt<int> PreInlineThreshold(
136 "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore,
137 cl::desc("Control the amount of inlining in pre-instrumentation inliner "
138 "(default = 75)"));
139
Geoff Berry3cca1da2017-06-10 15:20:03 +0000140static cl::opt<bool> EnableEarlyCSEMemSSA(
141 "enable-earlycse-memssa", cl::init(false), cl::Hidden,
142 cl::desc("Enable the EarlyCSE w/ MemorySSA pass (default = off)"));
143
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000144static cl::opt<bool> EnableGVNHoist(
Chandler Carruthc246a4c2017-04-27 00:28:03 +0000145 "enable-gvn-hoist", cl::init(false), cl::Hidden,
146 cl::desc("Enable the GVN hoisting pass (default = off)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000147
Rong Xu1c0e9b92016-10-18 21:36:27 +0000148static cl::opt<bool>
149 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
150 cl::Hidden,
151 cl::desc("Disable shrink-wrap library calls"));
152
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000153static cl::opt<bool>
154 EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false),
155 cl::Hidden,
156 cl::desc("Enable the simple loop unswitch pass."));
157
James Molloya9290632017-05-25 12:51:11 +0000158static cl::opt<bool> EnableGVNSink(
159 "enable-gvn-sink", cl::init(false), cl::Hidden,
Davide Italiano1dd55582017-06-01 23:47:53 +0000160 cl::desc("Enable the GVN sinking pass (default = off)"));
James Molloya9290632017-05-25 12:51:11 +0000161
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000162PassManagerBuilder::PassManagerBuilder() {
163 OptLevel = 2;
164 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000165 LibraryInfo = nullptr;
166 Inliner = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000167 DisableUnitAtATime = false;
168 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000169 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000170 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000171 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000172 RerollLoops = RunLoopRerolling;
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000173 NewGVN = RunNewGVN;
Rafael Espindola208bc532014-08-21 13:13:17 +0000174 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000175 VerifyInput = false;
176 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000177 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000178 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000179 EnablePGOInstrGen = RunPGOInstrGen;
180 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000181 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000182 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000183 PerformThinLTO = false;
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000184 DivergentTarget = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000185}
186
187PassManagerBuilder::~PassManagerBuilder() {
188 delete LibraryInfo;
189 delete Inliner;
190}
191
David Chisnall719a72f2011-08-16 13:58:41 +0000192/// Set of global extensions, automatically added as part of the standard set.
193static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
194 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
195
Frederich Munch6391c7e2017-06-13 19:05:24 +0000196void PassManagerBuilder::addGlobalExtension(
197 PassManagerBuilder::ExtensionPointTy Ty,
198 PassManagerBuilder::ExtensionFn Fn) {
199 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000200}
201
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000202void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000203 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000204}
205
206void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000207 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000208 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
209 if ((*GlobalExtensions)[i].first == ETy)
210 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000211 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
212 if (Extensions[i].first == ETy)
213 Extensions[i].second(*this, PM);
214}
215
Chandler Carruth30d69c22015-02-13 10:01:29 +0000216void PassManagerBuilder::addInitialAliasAnalysisPasses(
217 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000218 switch (UseCFLAA) {
219 case CFLAAType::Steensgaard:
220 PM.add(createCFLSteensAAWrapperPass());
221 break;
222 case CFLAAType::Andersen:
223 PM.add(createCFLAndersAAWrapperPass());
224 break;
225 case CFLAAType::Both:
226 PM.add(createCFLSteensAAWrapperPass());
227 PM.add(createCFLAndersAAWrapperPass());
228 break;
229 default:
230 break;
231 }
232
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000233 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
234 // BasicAliasAnalysis wins if they disagree. This is intended to help
235 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000236 PM.add(createTypeBasedAAWrapperPass());
237 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000238}
239
Matthias Braunc31032d2016-03-09 18:47:11 +0000240void PassManagerBuilder::addInstructionCombiningPass(
241 legacy::PassManagerBase &PM) const {
242 bool ExpensiveCombines = OptLevel > 2;
243 PM.add(createInstructionCombiningPass(ExpensiveCombines));
244}
245
Chandler Carruth30d69c22015-02-13 10:01:29 +0000246void PassManagerBuilder::populateFunctionPassManager(
247 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000248 addExtensionsToPM(EP_EarlyAsPossible, FPM);
249
250 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000251 if (LibraryInfo)
252 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000253
254 if (OptLevel == 0) return;
255
256 addInitialAliasAnalysisPasses(FPM);
257
258 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000259 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000260 FPM.add(createEarlyCSEPass());
261 FPM.add(createLowerExpectIntrinsicPass());
262}
263
Rong Xu34abbfb2016-01-21 18:28:59 +0000264// Do PGO instrumentation generation or use pass as the option specified.
265void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
Dehao Chen66131662017-06-27 17:23:33 +0000266 if (!EnablePGOInstrGen && PGOInstrUse.empty() && PGOSampleUse.empty())
Rong Xu96a19d32016-07-15 18:10:49 +0000267 return;
268 // Perform the preinline and cleanup passes for O1 and above.
269 // And avoid doing them if optimizing for size.
Dehao Chen66131662017-06-27 17:23:33 +0000270 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner &&
271 PGOSampleUse.empty()) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000272 // Create preinline pass. We construct an InlineParams object and specify
273 // the threshold here to avoid the command line options of the regular
274 // inliner to influence pre-inlining. The only fields of InlineParams we
275 // care about are DefaultThreshold and HintThreshold.
276 InlineParams IP;
277 IP.DefaultThreshold = PreInlineThreshold;
278 // FIXME: The hint threshold has the same value used by the regular inliner.
279 // This should probably be lowered after performance testing.
280 IP.HintThreshold = 325;
281
282 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000283 MPM.add(createSROAPass());
284 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
285 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
286 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
287 addExtensionsToPM(EP_Peephole, MPM);
288 }
Xinliang David Li92392452016-07-23 04:28:52 +0000289 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000290 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000291 // Add the profile lowering pass.
292 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000293 if (!PGOInstrGen.empty())
294 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lib67530e2017-06-25 00:26:43 +0000295 Options.DoCounterPromotion = true;
296 MPM.add(createLoopRotatePass());
Xinliang David Lie6b89292016-04-18 17:47:38 +0000297 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000298 }
299 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000300 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Davide Italiano058abf1f2017-04-25 16:54:45 +0000301 // Indirect call promotion that promotes intra-module targets only.
302 // For ThinLTO this is done earlier due to interactions with globalopt
303 // for imported functions. We don't run this at -O0.
304 if (OptLevel > 0)
305 MPM.add(
306 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty()));
Rong Xu34abbfb2016-01-21 18:28:59 +0000307}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000308void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000309 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000310 // Start of function pass.
311 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000312 MPM.add(createSROAPass());
Geoff Berry3cca1da2017-06-10 15:20:03 +0000313 MPM.add(createEarlyCSEPass(EnableEarlyCSEMemSSA)); // Catch trivial redundancies
Geoff Berry85a530f2017-04-13 15:36:25 +0000314 if (EnableGVNHoist)
315 MPM.add(createGVNHoistPass());
James Molloya9290632017-05-25 12:51:11 +0000316 if (EnableGVNSink) {
317 MPM.add(createGVNSinkPass());
318 MPM.add(createCFGSimplificationPass());
319 }
320
Justin Lebarcf63b642016-04-15 00:32:12 +0000321 // Speculative execution if the target has divergent branches; otherwise nop.
322 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000323 MPM.add(createJumpThreadingPass()); // Thread jumps.
324 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
325 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000326 // Combine silly seq's
327 addInstructionCombiningPass(MPM);
Rong Xu1c0e9b92016-10-18 21:36:27 +0000328 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
329 MPM.add(createLibCallsShrinkWrapPass());
Peter Collingbourne0a437612014-05-25 10:27:02 +0000330 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000331
Rong Xu48596b62017-04-04 16:42:20 +0000332 // Optimize memory intrinsic calls based on the profiled size information.
333 if (SizeLevel == 0)
334 MPM.add(createPGOMemOPSizeOptLegacyPass());
335
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000336 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000337 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
338 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000339 // Rotate Loop - disable header duplication at -Oz
340 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000341 MPM.add(createLICMPass()); // Hoist loop invariants
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000342 if (EnableSimpleLoopUnswitch)
343 MPM.add(createSimpleLoopUnswitchLegacyPass());
344 else
345 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000346 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000347 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000348 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
349 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000350 addExtensionsToPM(EP_LateLoopOptimizations, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000351 MPM.add(createLoopDeletionPass()); // Delete dead loops
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000352
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000353 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000354 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000355 MPM.add(createCFGSimplificationPass());
356 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000357 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000358 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000359 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
360
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000361 if (OptLevel > 1) {
Davide Italiano9b8738d2017-01-28 23:45:37 +0000362 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000363 MPM.add(NewGVN ? createNewGVNPass()
364 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000365 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000366 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
367 MPM.add(createSCCPPass()); // Constant prop with SCCP
368
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000369 // Delete dead bit computations (instcombine runs after to fold away the dead
370 // computations, and then ADCE will run later to exploit any new DCE
371 // opportunities that creates).
372 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
373
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000374 // Run instcombine after redundancy elimination to exploit opportunities
375 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000376 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000377 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000378 MPM.add(createJumpThreadingPass()); // Thread jumps
379 MPM.add(createCorrelatedValuePropagationPass());
380 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000381 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000382
383 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
384
Hal Finkel29aeb202013-11-17 16:02:50 +0000385 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000386 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000387 if (!RunSLPAfterLoopVectorization) {
388 if (SLPVectorize)
389 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000390
James Molloy568da092014-08-06 12:56:19 +0000391 if (BBVectorize) {
392 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000393 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000394 addExtensionsToPM(EP_Peephole, MPM);
395 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000396 MPM.add(NewGVN
397 ? createNewGVNPass()
398 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000399 else
400 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000401
James Molloy568da092014-08-06 12:56:19 +0000402 // BBVectorize may have significantly shortened a loop body; unroll again.
403 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000404 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000405 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000406 }
407
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000408 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000409 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000410 // Clean up after everything.
411 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000412 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000413}
414
415void PassManagerBuilder::populateModulePassManager(
416 legacy::PassManagerBase &MPM) {
Dehao Chena99e0822016-12-14 21:40:47 +0000417 if (!PGOSampleUse.empty()) {
418 MPM.add(createPruneEHPass());
419 MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
420 }
421
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000422 // Allow forcing function attributes as a debugging and tuning aid.
423 MPM.add(createForceFunctionAttrsLegacyPass());
424
425 // If all optimizations are disabled, just run the always-inline pass and,
426 // if enabled, the function merging pass.
427 if (OptLevel == 0) {
428 addPGOInstrPasses(MPM);
429 if (Inliner) {
430 MPM.add(Inliner);
431 Inliner = nullptr;
432 }
433
434 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
435 // creates a CGSCC pass manager, but we don't want to add extensions into
436 // that pass manager. To prevent this we insert a no-op module pass to reset
437 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
438 // builds. The function merging pass is
439 if (MergeFunctions)
440 MPM.add(createMergeFunctionsPass());
441 else if (!GlobalExtensions->empty() || !Extensions.empty())
442 MPM.add(createBarrierNoopPass());
443
444 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
Davide Italiano5da70902017-04-23 04:49:34 +0000445
446 // Rename anon globals to be able to export them in the summary.
447 // This has to be done after we add the extensions to the pass manager
448 // as there could be passes (e.g. Adddress sanitizer) which introduce
449 // new unnamed globals.
450 if (PrepareForThinLTO)
451 MPM.add(createNameAnonGlobalPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000452 return;
453 }
454
455 // Add LibraryInfo if we have some.
456 if (LibraryInfo)
457 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
458
459 addInitialAliasAnalysisPasses(MPM);
460
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000461 // For ThinLTO there are two passes of indirect call promotion. The
462 // first is during the compile phase when PerformThinLTO=false and
463 // intra-module indirect call targets are promoted. The second is during
464 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
465 // inter-module indirect calls. For that we perform indirect call promotion
466 // earlier in the pass pipeline, here before globalopt. Otherwise imported
467 // available_externally functions look unreferenced and are removed.
468 if (PerformThinLTO)
Dehao Chencc75d242017-02-23 22:15:18 +0000469 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
470 !PGOSampleUse.empty()));
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000471
Dehao Chen8c886712017-03-23 21:20:05 +0000472 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
473 // as it will change the CFG too much to make the 2nd profile annotation
474 // in backend more difficult.
475 bool PrepareForThinLTOUsingPGOSampleProfile =
476 PrepareForThinLTO && !PGOSampleUse.empty();
477 if (PrepareForThinLTOUsingPGOSampleProfile)
478 DisableUnrollLoops = true;
479
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000480 if (!DisableUnitAtATime) {
481 // Infer attributes about declarations if possible.
482 MPM.add(createInferFunctionAttrsLegacyPass());
483
484 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
485
486 MPM.add(createIPSCCPPass()); // IP SCCP
487 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
488 // Promote any localized global vars.
489 MPM.add(createPromoteMemoryToRegisterPass());
490
491 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
492
Matthias Braunc31032d2016-03-09 18:47:11 +0000493 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000494 addExtensionsToPM(EP_Peephole, MPM);
495 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
496 }
497
Dehao Chen8c886712017-03-23 21:20:05 +0000498 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
499 // call promotion as it will change the CFG too much to make the 2nd
500 // profile annotation in backend more difficult.
Davide Italiano058abf1f2017-04-25 16:54:45 +0000501 // PGO instrumentation is added during the compile phase for ThinLTO, do
502 // not run it a second time
503 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile)
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000504 addPGOInstrPasses(MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000505
506 if (EnableNonLTOGlobalsModRef)
507 // We add a module alias analysis pass here. In part due to bugs in the
508 // analysis infrastructure this "works" in that the analysis stays alive
509 // for the entire SCC pass run below.
510 MPM.add(createGlobalsAAWrapperPass());
511
512 // Start of CallGraph SCC passes.
513 if (!DisableUnitAtATime)
514 MPM.add(createPruneEHPass()); // Remove dead EH info
515 if (Inliner) {
516 MPM.add(Inliner);
517 Inliner = nullptr;
518 }
519 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000520 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000521 if (OptLevel > 2)
522 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
523
David Majnemer6e9b47b2016-07-28 03:28:43 +0000524 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000525 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000526
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000527 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
528 // pass manager that we are specifically trying to avoid. To prevent this
529 // we must insert a no-op module pass to reset the pass manager.
530 MPM.add(createBarrierNoopPass());
Xinliang David Li126157c2017-05-22 16:41:57 +0000531 if (RunPartialInlining)
532 MPM.add(createPartialInliningPass());
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000533
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000534 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
535 !PrepareForThinLTO)
536 // Remove avail extern fns and globals definitions if we aren't
537 // compiling an object file for later LTO. For LTO we want to preserve
538 // these so they are eligible for inlining at link-time. Note if they
539 // are unreferenced they will be removed by GlobalDCE later, so
540 // this only impacts referenced available externally globals.
541 // Eventually they will be suppressed during codegen, but eliminating
542 // here enables more opportunity for GlobalDCE as it may make
543 // globals referenced by available external functions dead
544 // and saves running remaining passes on the eliminated functions.
545 MPM.add(createEliminateAvailableExternallyPass());
546
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000547 if (!DisableUnitAtATime)
548 MPM.add(createReversePostOrderFunctionAttrsPass());
549
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000550 // If we are planning to perform ThinLTO later, let's not bloat the code with
551 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
552 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000553 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000554 // Reduce the size of the IR as much as possible.
555 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000556 // Rename anon globals to be able to export them in the summary.
557 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000558 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000559 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000560
Mehdi Amini31407ba2016-05-06 18:17:03 +0000561 if (PerformThinLTO)
562 // Optimize globals now when performing ThinLTO, this enables more
563 // optimizations later.
564 MPM.add(createGlobalOptimizerPass());
565
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000566 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000567 // we may see more accurate aliasing. Reason to run this late is that too
568 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000569 // size. By placing it just after inlining other optimizations which runs
570 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000571 if (UseLoopVersioningLICM) {
572 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
573 MPM.add(createLICMPass()); // Hoist loop invariants
574 }
575
Chandler Carruth08eebe22015-07-23 09:34:01 +0000576 if (EnableNonLTOGlobalsModRef)
577 // We add a fresh GlobalsModRef run at this point. This is particularly
578 // useful as the above will have inlined, DCE'ed, and function-attr
579 // propagated everything. We should at this point have a reasonably minimal
580 // and richly annotated call graph. By computing aliasing and mod/ref
581 // information for all local globals here, the late loop passes and notably
582 // the vectorizer will be able to use them to help recognize vectorizable
583 // memory operations.
584 //
585 // Note that this relies on a bug in the pass manager which preserves
586 // a module analysis into a function pass pipeline (and throughout it) so
587 // long as the first function pass doesn't invalidate the module analysis.
588 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
589 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
590 // (doing nothing preserves it as it is required to be conservatively
591 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000592 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000593
Davide Italianob6725372017-01-02 17:49:18 +0000594 MPM.add(createFloat2IntPass());
James Molloy0cbb2a862015-03-27 10:36:57 +0000595
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000596 addExtensionsToPM(EP_VectorizerStart, MPM);
597
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000598 // Re-rotate loops in all our loop nests. These may have fallout out of
599 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000600 // on the rotated form. Disable header duplication at -Oz.
601 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000602
Adam Nemet938d3d62015-05-14 12:05:18 +0000603 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000604 // into separate loop that would otherwise inhibit vectorization. This is
605 // currently only performed for loops marked with the metadata
606 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Adam Nemet32e6a342016-12-21 04:07:40 +0000607 MPM.add(createLoopDistributePass());
Adam Nemet938d3d62015-05-14 12:05:18 +0000608
Renato Golin729a3ae2013-12-05 21:20:02 +0000609 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000610
611 // Eliminate loads by forwarding stores from the previous iteration to loads
612 // of the current iteration.
613 if (EnableLoopLoadElim)
614 MPM.add(createLoopLoadEliminationPass());
615
Renato Golin729a3ae2013-12-05 21:20:02 +0000616 // FIXME: Because of #pragma vectorize enable, the passes below are always
617 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
618 // on -O1 and no #pragma is found). Would be good to have these two passes
619 // as function calls, so that we can only pass them when the vectorizer
620 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000621 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000622 if (OptLevel > 1 && ExtraVectorizerPasses) {
623 // At higher optimization levels, try to clean up any runtime overlap and
624 // alignment checks inserted by the vectorizer. We want to track correllated
625 // runtime checks for two inner loops in the same outer loop, fold any
626 // common computations, hoist loop-invariant aspects out of any outer loop,
627 // and unswitch the runtime checks if possible. Once hoisted, we may have
628 // dead (or speculatable) control flows or more combining opportunities.
629 MPM.add(createEarlyCSEPass());
630 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000631 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000632 MPM.add(createLICMPass());
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000633 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000634 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000635 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000636 }
James Molloy568da092014-08-06 12:56:19 +0000637
638 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000639 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000640 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000641 if (OptLevel > 1 && ExtraVectorizerPasses) {
642 MPM.add(createEarlyCSEPass());
643 }
644 }
James Molloy568da092014-08-06 12:56:19 +0000645
646 if (BBVectorize) {
647 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000648 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000649 addExtensionsToPM(EP_Peephole, MPM);
650 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000651 MPM.add(NewGVN
652 ? createNewGVNPass()
653 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000654 else
655 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
656
657 // BBVectorize may have significantly shortened a loop body; unroll again.
658 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000659 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000660 }
661 }
662
Peter Collingbourne0a437612014-05-25 10:27:02 +0000663 addExtensionsToPM(EP_Peephole, MPM);
Joerg Sonnenbergerfa736742017-03-26 06:44:08 +0000664 MPM.add(createLateCFGSimplificationPass()); // Switches to lookup tables
Matthias Braunc31032d2016-03-09 18:47:11 +0000665 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000666
Kevin Qin49bc7642015-03-12 05:36:01 +0000667 if (!DisableUnrollLoops) {
Dehao Chen7d230322017-02-18 03:46:51 +0000668 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops
Hal Finkel86b30642014-03-31 23:23:51 +0000669
Wei Mibf727ba2015-05-14 22:02:54 +0000670 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000671 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000672
Kevin Qin49bc7642015-03-12 05:36:01 +0000673 // Runtime unrolling will introduce runtime check in loop prologue. If the
674 // unrolled loop is a inner loop, then the prologue will be inside the
675 // outer loop. LICM pass can help to promote the runtime check out if the
676 // checked value is loop invariant.
677 MPM.add(createLICMPass());
Dehao Chen947dbe122016-11-09 00:58:19 +0000678 }
Kevin Qin49bc7642015-03-12 05:36:01 +0000679
Hal Finkeld67e4632014-09-07 20:05:11 +0000680 // After vectorization and unrolling, assume intrinsics may tell us more
681 // about pointer alignments.
682 MPM.add(createAlignmentFromAssumptionsPass());
683
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000684 if (!DisableUnitAtATime) {
685 // FIXME: We shouldn't bother with this anymore.
686 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
687
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000688 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000689 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000690 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000691 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000692 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000693 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000694 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000695
696 if (MergeFunctions)
697 MPM.add(createMergeFunctionsPass());
698
Dehao Chen5492f862016-11-10 17:42:18 +0000699 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
700 // canonicalization pass that enables other optimizations. As a result,
701 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
702 // result too early.
Dehao Chen947dbe122016-11-09 00:58:19 +0000703 MPM.add(createLoopSinkPass());
704 // Get rid of LCSSA nodes.
705 MPM.add(createInstructionSimplifierPass());
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000706
707 // LoopSink (and other loop passes since the last simplifyCFG) might have
708 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
709 MPM.add(createCFGSimplificationPass());
710
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000711 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000712}
713
Chandler Carruth30d69c22015-02-13 10:01:29 +0000714void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000715 // Remove unused virtual tables to improve the quality of code generated by
716 // whole-program devirtualization and bitset lowering.
717 PM.add(createGlobalDCEPass());
718
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000719 // Provide AliasAnalysis services for optimizations.
720 addInitialAliasAnalysisPasses(PM);
721
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000722 // Allow forcing function attributes as a debugging and tuning aid.
723 PM.add(createForceFunctionAttrsLegacyPass());
724
Chandler Carruth3a040e62015-12-27 08:41:34 +0000725 // Infer attributes about declarations if possible.
726 PM.add(createInferFunctionAttrsLegacyPass());
727
Peter Collingbournefad596a2016-05-25 21:26:14 +0000728 if (OptLevel > 1) {
729 // Indirect call promotion. This should promote all the targets that are
730 // left by the earlier promotion pass that promotes intra-module targets.
731 // This two-step promotion is to save the compile time. For LTO, it should
732 // produce the same result as if we only do promotion here.
Dehao Chencc75d242017-02-23 22:15:18 +0000733 PM.add(
734 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty()));
Rong Xu6e34c492016-04-27 23:20:27 +0000735
Peter Collingbournefad596a2016-05-25 21:26:14 +0000736 // Propagate constants at call sites into the functions they call. This
737 // opens opportunities for globalopt (and inlining) by substituting function
738 // pointers passed as arguments to direct uses of functions.
739 PM.add(createIPSCCPPass());
740 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000741
Peter Collingbournefad596a2016-05-25 21:26:14 +0000742 // Infer attributes about definitions. The readnone attribute in particular is
743 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000744 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000745 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000746
Peter Collingbournef72a8d42016-11-16 23:40:26 +0000747 // Split globals using inrange annotations on GEP indices. This can help
748 // improve the quality of generated code when virtual constant propagation or
749 // control flow integrity are enabled.
750 PM.add(createGlobalSplitPass());
751
Peter Collingbournefad596a2016-05-25 21:26:14 +0000752 // Apply whole-program devirtualization and virtual constant propagation.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000753 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
Peter Collingbournefad596a2016-05-25 21:26:14 +0000754
755 // That's all we need at opt level 1.
756 if (OptLevel == 1)
757 return;
758
759 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000760 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000761 // Promote any localized global vars.
762 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000763
764 // Linking modules together can lead to duplicated global constants, only
765 // keep one copy of each constant.
766 PM.add(createConstantMergePass());
767
768 // Remove unused arguments from functions.
769 PM.add(createDeadArgEliminationPass());
770
771 // Reduce the code after globalopt and ipsccp. Both can open up significant
772 // simplification opportunities, and both can propagate functions through
773 // function pointers. When this happens, we often have to resolve varargs
774 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000775 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000776 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000777
778 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000779 bool RunInliner = Inliner;
780 if (RunInliner) {
781 PM.add(Inliner);
782 Inliner = nullptr;
783 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000784
785 PM.add(createPruneEHPass()); // Remove dead EH info.
786
787 // Optimize globals again if we ran the inliner.
788 if (RunInliner)
789 PM.add(createGlobalOptimizerPass());
790 PM.add(createGlobalDCEPass()); // Remove dead functions.
791
792 // If we didn't decide to inline a function, check to see if we can
793 // transform it to pass arguments by value instead of by reference.
794 PM.add(createArgumentPromotionPass());
795
796 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000797 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000798 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000799 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000800
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000801 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000802 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000803
804 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000805 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000806 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000807
Bill Wendling932b9922012-04-02 22:16:50 +0000808 PM.add(createLICMPass()); // Hoist loop invariants.
Davide Italiano9b8738d2017-01-28 23:45:37 +0000809 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000810 PM.add(NewGVN ? createNewGVNPass()
811 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
Bill Wendling932b9922012-04-02 22:16:50 +0000812 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000813
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000814 // Nuke dead stores.
815 PM.add(createDeadStoreEliminationPass());
816
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000817 // More loops are countable; try to optimize them.
818 PM.add(createIndVarSimplifyPass());
819 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000820 if (EnableLoopInterchange)
821 PM.add(createLoopInterchangePass());
822
James Molloy31f3ddd2016-01-14 15:00:09 +0000823 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000824 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000825 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000826 // The vectorizer may have significantly shortened a loop body; unroll again.
827 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000828 PM.add(createLoopUnrollPass(OptLevel));
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000829
James Molloy6045cc82015-12-15 09:24:01 +0000830 // Now that we've optimized loops (in particular loop induction variables),
831 // we may have exposed more scalar opportunities. Run parts of the scalar
832 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000833 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000834 PM.add(createCFGSimplificationPass()); // if-convert
835 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000836 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000837 PM.add(createBitTrackingDCEPass());
838
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000839 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000840 if (RunSLPAfterLoopVectorization)
841 if (SLPVectorize)
842 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000843
Hal Finkeld67e4632014-09-07 20:05:11 +0000844 // After vectorization, assume intrinsics may tell us more about pointer
845 // alignments.
846 PM.add(createAlignmentFromAssumptionsPass());
847
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000848 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000849 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000850 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000851
852 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000853}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000854
Peter Collingbourne070843d2015-03-19 22:01:00 +0000855void PassManagerBuilder::addLateLTOOptimizationPasses(
856 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000857 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000858 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000859
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000860 // Drop bodies of available externally objects to improve GlobalDCE.
861 PM.add(createEliminateAvailableExternallyPass());
862
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000863 // Now that we have optimized the program, discard unreachable functions.
864 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000865
866 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
867 // currently it damages debug info.
868 if (MergeFunctions)
869 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000870}
Rafael Espindola07f609152011-08-09 22:17:34 +0000871
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000872void PassManagerBuilder::populateThinLTOPassManager(
873 legacy::PassManagerBase &PM) {
874 PerformThinLTO = true;
875
876 if (VerifyInput)
877 PM.add(createVerifierPass());
878
Peter Collingbournef7691d82017-03-22 18:22:59 +0000879 if (ImportSummary) {
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000880 // These passes import type identifier resolutions for whole-program
881 // devirtualization and CFI. They must run early because other passes may
882 // disturb the specific instruction patterns that these passes look for,
883 // creating dependencies on resolutions that may not appear in the summary.
884 //
885 // For example, GVN may transform the pattern assume(type.test) appearing in
886 // two basic blocks into assume(phi(type.test, type.test)), which would
887 // transform a dependency on a WPD resolution into a dependency on a type
888 // identifier resolution for CFI.
889 //
890 // Also, WPD has access to more precise information than ICP and can
891 // devirtualize more effectively, so it should operate on the IR first.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000892 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary));
893 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary));
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000894 }
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000895
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000896 populateModulePassManager(PM);
897
898 if (VerifyOutput)
899 PM.add(createVerifierPass());
900 PerformThinLTO = false;
901}
902
Chandler Carruth30d69c22015-02-13 10:01:29 +0000903void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000904 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000905 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000906
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000907 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000908 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000909
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000910 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000911 addLTOOptimizationPasses(PM);
Peter Collingbourne7730b242017-05-26 18:27:13 +0000912 else {
913 // The whole-program-devirt pass needs to run at -O0 because only it knows
914 // about the llvm.type.checked.load intrinsic: it needs to both lower the
915 // intrinsic itself and handle it in the summary.
916 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
917 }
Rafael Espindola7cebf362014-08-21 20:03:44 +0000918
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000919 // Create a function that performs CFI checks for cross-DSO calls with targets
920 // in the current module.
921 PM.add(createCrossDSOCFIPass());
922
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000923 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
924 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
925 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000926 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr));
Peter Collingbourne070843d2015-03-19 22:01:00 +0000927
928 if (OptLevel != 0)
929 addLateLTOOptimizationPasses(PM);
930
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000931 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000932 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000933}
934
Eric Christopher04d4e932013-04-22 22:47:22 +0000935inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
936 return reinterpret_cast<PassManagerBuilder*>(P);
937}
938
939inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
940 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
941}
942
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000943LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000944 PassManagerBuilder *PMB = new PassManagerBuilder();
945 return wrap(PMB);
946}
947
948void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
949 PassManagerBuilder *Builder = unwrap(PMB);
950 delete Builder;
951}
952
953void
954LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
955 unsigned OptLevel) {
956 PassManagerBuilder *Builder = unwrap(PMB);
957 Builder->OptLevel = OptLevel;
958}
959
960void
961LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
962 unsigned SizeLevel) {
963 PassManagerBuilder *Builder = unwrap(PMB);
964 Builder->SizeLevel = SizeLevel;
965}
966
967void
968LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
969 LLVMBool Value) {
970 PassManagerBuilder *Builder = unwrap(PMB);
971 Builder->DisableUnitAtATime = Value;
972}
973
974void
975LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
976 LLVMBool Value) {
977 PassManagerBuilder *Builder = unwrap(PMB);
978 Builder->DisableUnrollLoops = Value;
979}
980
981void
982LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
983 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000984 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000985}
986
987void
988LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
989 unsigned Threshold) {
990 PassManagerBuilder *Builder = unwrap(PMB);
991 Builder->Inliner = createFunctionInliningPass(Threshold);
992}
993
994void
995LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
996 LLVMPassManagerRef PM) {
997 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000998 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000999 Builder->populateFunctionPassManager(*FPM);
1000}
1001
1002void
1003LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
1004 LLVMPassManagerRef PM) {
1005 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +00001006 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001007 Builder->populateModulePassManager(*MPM);
1008}
1009
1010void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
1011 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +00001012 LLVMBool Internalize,
1013 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +00001014 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +00001015 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +00001016
1017 // A small backwards compatibility hack. populateLTOPassManager used to take
1018 // an RunInliner option.
1019 if (RunInliner && !Builder->Inliner)
1020 Builder->Inliner = createFunctionInliningPass();
1021
1022 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001023}