blob: 203594572618af740697d8db226c780c15379a8f [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>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000047RunLoopVectorization("vectorize-loops", cl::Hidden,
Nadav Rotemd3df6652012-10-30 18:37:43 +000048 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000049
50static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000051RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000052 cl::desc("Run the SLP vectorization passes"));
53
54static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000055RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000056 cl::desc("Run the BB vectorization passes"));
Hal Finkelc34e5112012-02-01 03:51:43 +000057
Hal Finkel204bf532012-04-13 17:15:33 +000058static cl::opt<bool>
59UseGVNAfterVectorization("use-gvn-after-vectorization",
60 cl::init(false), cl::Hidden,
61 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
62
Chandler Carruth7b8297a2014-10-14 00:31:29 +000063static cl::opt<bool> ExtraVectorizerPasses(
64 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
65 cl::desc("Run cleanup optimization passes after vectorization."));
66
Hal Finkelbf45efd2013-11-16 23:59:05 +000067static cl::opt<bool>
68RunLoopRerolling("reroll-loops", cl::Hidden,
69 cl::desc("Run the loop rerolling pass"));
70
Michael J. Spencer289067c2014-05-29 01:55:07 +000071static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
72 cl::Hidden,
73 cl::desc("Run the load combining 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
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000140static cl::opt<bool> EnableGVNHoist(
Chandler Carruthc246a4c2017-04-27 00:28:03 +0000141 "enable-gvn-hoist", cl::init(false), cl::Hidden,
142 cl::desc("Enable the GVN hoisting pass (default = off)"));
Alina Sbirleaba21ffe2016-07-22 22:02:19 +0000143
Rong Xu1c0e9b92016-10-18 21:36:27 +0000144static cl::opt<bool>
145 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
146 cl::Hidden,
147 cl::desc("Disable shrink-wrap library calls"));
148
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000149static cl::opt<bool>
150 EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false),
151 cl::Hidden,
152 cl::desc("Enable the simple loop unswitch pass."));
153
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000154PassManagerBuilder::PassManagerBuilder() {
155 OptLevel = 2;
156 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000157 LibraryInfo = nullptr;
158 Inliner = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000159 DisableUnitAtATime = false;
160 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000161 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000162 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000163 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000164 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000165 LoadCombine = RunLoadCombine;
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000166 NewGVN = RunNewGVN;
Rafael Espindola208bc532014-08-21 13:13:17 +0000167 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000168 VerifyInput = false;
169 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000170 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000171 PrepareForLTO = false;
Xinliang David Li92392452016-07-23 04:28:52 +0000172 EnablePGOInstrGen = RunPGOInstrGen;
173 PGOInstrGen = PGOOutputFile;
Rong Xu34abbfb2016-01-21 18:28:59 +0000174 PGOInstrUse = RunPGOInstrUse;
Teresa Johnsonfbb431b2016-09-17 20:40:16 +0000175 PrepareForThinLTO = EnablePrepareForThinLTO;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000176 PerformThinLTO = false;
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000177 DivergentTarget = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000178}
179
180PassManagerBuilder::~PassManagerBuilder() {
181 delete LibraryInfo;
182 delete Inliner;
183}
184
David Chisnall719a72f2011-08-16 13:58:41 +0000185/// Set of global extensions, automatically added as part of the standard set.
186static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
187 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
188
189void PassManagerBuilder::addGlobalExtension(
190 PassManagerBuilder::ExtensionPointTy Ty,
191 PassManagerBuilder::ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000192 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000193}
194
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000195void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000196 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000197}
198
199void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000200 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000201 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
202 if ((*GlobalExtensions)[i].first == ETy)
203 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000204 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
205 if (Extensions[i].first == ETy)
206 Extensions[i].second(*this, PM);
207}
208
Chandler Carruth30d69c22015-02-13 10:01:29 +0000209void PassManagerBuilder::addInitialAliasAnalysisPasses(
210 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000211 switch (UseCFLAA) {
212 case CFLAAType::Steensgaard:
213 PM.add(createCFLSteensAAWrapperPass());
214 break;
215 case CFLAAType::Andersen:
216 PM.add(createCFLAndersAAWrapperPass());
217 break;
218 case CFLAAType::Both:
219 PM.add(createCFLSteensAAWrapperPass());
220 PM.add(createCFLAndersAAWrapperPass());
221 break;
222 default:
223 break;
224 }
225
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000226 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
227 // BasicAliasAnalysis wins if they disagree. This is intended to help
228 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000229 PM.add(createTypeBasedAAWrapperPass());
230 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000231}
232
Matthias Braunc31032d2016-03-09 18:47:11 +0000233void PassManagerBuilder::addInstructionCombiningPass(
234 legacy::PassManagerBase &PM) const {
235 bool ExpensiveCombines = OptLevel > 2;
236 PM.add(createInstructionCombiningPass(ExpensiveCombines));
237}
238
Chandler Carruth30d69c22015-02-13 10:01:29 +0000239void PassManagerBuilder::populateFunctionPassManager(
240 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000241 addExtensionsToPM(EP_EarlyAsPossible, FPM);
242
243 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000244 if (LibraryInfo)
245 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000246
247 if (OptLevel == 0) return;
248
249 addInitialAliasAnalysisPasses(FPM);
250
251 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000252 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000253 FPM.add(createEarlyCSEPass());
254 FPM.add(createLowerExpectIntrinsicPass());
255}
256
Rong Xu34abbfb2016-01-21 18:28:59 +0000257// Do PGO instrumentation generation or use pass as the option specified.
258void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
Xinliang David Li92392452016-07-23 04:28:52 +0000259 if (!EnablePGOInstrGen && PGOInstrUse.empty())
Rong Xu96a19d32016-07-15 18:10:49 +0000260 return;
261 // Perform the preinline and cleanup passes for O1 and above.
262 // And avoid doing them if optimizing for size.
263 if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner) {
Easwaran Raman61edc102016-08-11 18:24:08 +0000264 // Create preinline pass. We construct an InlineParams object and specify
265 // the threshold here to avoid the command line options of the regular
266 // inliner to influence pre-inlining. The only fields of InlineParams we
267 // care about are DefaultThreshold and HintThreshold.
268 InlineParams IP;
269 IP.DefaultThreshold = PreInlineThreshold;
270 // FIXME: The hint threshold has the same value used by the regular inliner.
271 // This should probably be lowered after performance testing.
272 IP.HintThreshold = 325;
273
274 MPM.add(createFunctionInliningPass(IP));
Rong Xu96a19d32016-07-15 18:10:49 +0000275 MPM.add(createSROAPass());
276 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
277 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
278 MPM.add(createInstructionCombiningPass()); // Combine silly seq's
279 addExtensionsToPM(EP_Peephole, MPM);
280 }
Xinliang David Li92392452016-07-23 04:28:52 +0000281 if (EnablePGOInstrGen) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000282 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000283 // Add the profile lowering pass.
284 InstrProfOptions Options;
Xinliang David Li92392452016-07-23 04:28:52 +0000285 if (!PGOInstrGen.empty())
286 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lie6b89292016-04-18 17:47:38 +0000287 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000288 }
289 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000290 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Davide Italiano058abf1f2017-04-25 16:54:45 +0000291 // Indirect call promotion that promotes intra-module targets only.
292 // For ThinLTO this is done earlier due to interactions with globalopt
293 // for imported functions. We don't run this at -O0.
294 if (OptLevel > 0)
295 MPM.add(
296 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty()));
Rong Xu34abbfb2016-01-21 18:28:59 +0000297}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000298void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000299 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000300 // Start of function pass.
301 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000302 MPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000303 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Geoff Berry85a530f2017-04-13 15:36:25 +0000304 if (EnableGVNHoist)
305 MPM.add(createGVNHoistPass());
Justin Lebarcf63b642016-04-15 00:32:12 +0000306 // Speculative execution if the target has divergent branches; otherwise nop.
307 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000308 MPM.add(createJumpThreadingPass()); // Thread jumps.
309 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
310 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000311 // Combine silly seq's
312 addInstructionCombiningPass(MPM);
Rong Xu1c0e9b92016-10-18 21:36:27 +0000313 if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
314 MPM.add(createLibCallsShrinkWrapPass());
Peter Collingbourne0a437612014-05-25 10:27:02 +0000315 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000316
Rong Xu48596b62017-04-04 16:42:20 +0000317 // Optimize memory intrinsic calls based on the profiled size information.
318 if (SizeLevel == 0)
319 MPM.add(createPGOMemOPSizeOptLegacyPass());
320
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000321 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000322 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
323 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000324 // Rotate Loop - disable header duplication at -Oz
325 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000326 MPM.add(createLICMPass()); // Hoist loop invariants
Chandler Carruth1353f9a2017-04-27 18:45:20 +0000327 if (EnableSimpleLoopUnswitch)
328 MPM.add(createSimpleLoopUnswitchLegacyPass());
329 else
330 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000331 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000332 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000333 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
334 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000335 addExtensionsToPM(EP_LateLoopOptimizations, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000336 MPM.add(createLoopDeletionPass()); // Delete dead loops
Krzysztof Parzyszek0fd62962017-01-25 16:12:25 +0000337
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000338 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000339 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000340 MPM.add(createCFGSimplificationPass());
341 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000342 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000343 MPM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000344 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
345
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000346 if (OptLevel > 1) {
Davide Italiano9b8738d2017-01-28 23:45:37 +0000347 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000348 MPM.add(NewGVN ? createNewGVNPass()
349 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000350 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000351 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
352 MPM.add(createSCCPPass()); // Constant prop with SCCP
353
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000354 // Delete dead bit computations (instcombine runs after to fold away the dead
355 // computations, and then ADCE will run later to exploit any new DCE
356 // opportunities that creates).
357 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
358
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000359 // Run instcombine after redundancy elimination to exploit opportunities
360 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000361 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000362 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000363 MPM.add(createJumpThreadingPass()); // Thread jumps
364 MPM.add(createCorrelatedValuePropagationPass());
365 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000366 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000367
368 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
369
Hal Finkel29aeb202013-11-17 16:02:50 +0000370 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000371 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000372 if (!RunSLPAfterLoopVectorization) {
373 if (SLPVectorize)
374 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000375
James Molloy568da092014-08-06 12:56:19 +0000376 if (BBVectorize) {
377 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000378 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000379 addExtensionsToPM(EP_Peephole, MPM);
380 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000381 MPM.add(NewGVN
382 ? createNewGVNPass()
383 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000384 else
385 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000386
James Molloy568da092014-08-06 12:56:19 +0000387 // BBVectorize may have significantly shortened a loop body; unroll again.
388 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000389 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000390 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000391 }
392
Michael J. Spencer289067c2014-05-29 01:55:07 +0000393 if (LoadCombine)
394 MPM.add(createLoadCombinePass());
395
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000396 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000397 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000398 // Clean up after everything.
399 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000400 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000401}
402
403void PassManagerBuilder::populateModulePassManager(
404 legacy::PassManagerBase &MPM) {
Dehao Chena99e0822016-12-14 21:40:47 +0000405 if (!PGOSampleUse.empty()) {
406 MPM.add(createPruneEHPass());
407 MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
408 }
409
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000410 // Allow forcing function attributes as a debugging and tuning aid.
411 MPM.add(createForceFunctionAttrsLegacyPass());
412
413 // If all optimizations are disabled, just run the always-inline pass and,
414 // if enabled, the function merging pass.
415 if (OptLevel == 0) {
416 addPGOInstrPasses(MPM);
417 if (Inliner) {
418 MPM.add(Inliner);
419 Inliner = nullptr;
420 }
421
422 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
423 // creates a CGSCC pass manager, but we don't want to add extensions into
424 // that pass manager. To prevent this we insert a no-op module pass to reset
425 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
426 // builds. The function merging pass is
427 if (MergeFunctions)
428 MPM.add(createMergeFunctionsPass());
429 else if (!GlobalExtensions->empty() || !Extensions.empty())
430 MPM.add(createBarrierNoopPass());
431
432 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
Davide Italiano5da70902017-04-23 04:49:34 +0000433
434 // Rename anon globals to be able to export them in the summary.
435 // This has to be done after we add the extensions to the pass manager
436 // as there could be passes (e.g. Adddress sanitizer) which introduce
437 // new unnamed globals.
438 if (PrepareForThinLTO)
439 MPM.add(createNameAnonGlobalPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000440 return;
441 }
442
443 // Add LibraryInfo if we have some.
444 if (LibraryInfo)
445 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
446
447 addInitialAliasAnalysisPasses(MPM);
448
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000449 // For ThinLTO there are two passes of indirect call promotion. The
450 // first is during the compile phase when PerformThinLTO=false and
451 // intra-module indirect call targets are promoted. The second is during
452 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
453 // inter-module indirect calls. For that we perform indirect call promotion
454 // earlier in the pass pipeline, here before globalopt. Otherwise imported
455 // available_externally functions look unreferenced and are removed.
456 if (PerformThinLTO)
Dehao Chencc75d242017-02-23 22:15:18 +0000457 MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
458 !PGOSampleUse.empty()));
Teresa Johnson8c1bc982016-08-29 22:46:56 +0000459
Dehao Chen8c886712017-03-23 21:20:05 +0000460 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
461 // as it will change the CFG too much to make the 2nd profile annotation
462 // in backend more difficult.
463 bool PrepareForThinLTOUsingPGOSampleProfile =
464 PrepareForThinLTO && !PGOSampleUse.empty();
465 if (PrepareForThinLTOUsingPGOSampleProfile)
466 DisableUnrollLoops = true;
467
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000468 if (!DisableUnitAtATime) {
469 // Infer attributes about declarations if possible.
470 MPM.add(createInferFunctionAttrsLegacyPass());
471
472 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
473
474 MPM.add(createIPSCCPPass()); // IP SCCP
475 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
476 // Promote any localized global vars.
477 MPM.add(createPromoteMemoryToRegisterPass());
478
479 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
480
Matthias Braunc31032d2016-03-09 18:47:11 +0000481 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000482 addExtensionsToPM(EP_Peephole, MPM);
483 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
484 }
485
Dehao Chen8c886712017-03-23 21:20:05 +0000486 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
487 // call promotion as it will change the CFG too much to make the 2nd
488 // profile annotation in backend more difficult.
Davide Italiano058abf1f2017-04-25 16:54:45 +0000489 // PGO instrumentation is added during the compile phase for ThinLTO, do
490 // not run it a second time
491 if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile)
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000492 addPGOInstrPasses(MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000493
494 if (EnableNonLTOGlobalsModRef)
495 // We add a module alias analysis pass here. In part due to bugs in the
496 // analysis infrastructure this "works" in that the analysis stays alive
497 // for the entire SCC pass run below.
498 MPM.add(createGlobalsAAWrapperPass());
499
500 // Start of CallGraph SCC passes.
501 if (!DisableUnitAtATime)
502 MPM.add(createPruneEHPass()); // Remove dead EH info
503 if (Inliner) {
504 MPM.add(Inliner);
505 Inliner = nullptr;
506 }
507 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000508 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000509 if (OptLevel > 2)
510 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
511
David Majnemer6e9b47b2016-07-28 03:28:43 +0000512 addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000513 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000514
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000515 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
516 // pass manager that we are specifically trying to avoid. To prevent this
517 // we must insert a no-op module pass to reset the pass manager.
518 MPM.add(createBarrierNoopPass());
519
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000520 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
521 !PrepareForThinLTO)
522 // Remove avail extern fns and globals definitions if we aren't
523 // compiling an object file for later LTO. For LTO we want to preserve
524 // these so they are eligible for inlining at link-time. Note if they
525 // are unreferenced they will be removed by GlobalDCE later, so
526 // this only impacts referenced available externally globals.
527 // Eventually they will be suppressed during codegen, but eliminating
528 // here enables more opportunity for GlobalDCE as it may make
529 // globals referenced by available external functions dead
530 // and saves running remaining passes on the eliminated functions.
531 MPM.add(createEliminateAvailableExternallyPass());
532
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000533 if (!DisableUnitAtATime)
534 MPM.add(createReversePostOrderFunctionAttrsPass());
535
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000536 // If we are planning to perform ThinLTO later, let's not bloat the code with
537 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
538 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000539 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000540 // Reduce the size of the IR as much as possible.
541 MPM.add(createGlobalOptimizerPass());
Mehdi Amini27d23792016-09-16 16:56:30 +0000542 // Rename anon globals to be able to export them in the summary.
543 MPM.add(createNameAnonGlobalPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000544 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000545 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000546
Mehdi Amini31407ba2016-05-06 18:17:03 +0000547 if (PerformThinLTO)
548 // Optimize globals now when performing ThinLTO, this enables more
549 // optimizations later.
550 MPM.add(createGlobalOptimizerPass());
551
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000552 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000553 // we may see more accurate aliasing. Reason to run this late is that too
554 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000555 // size. By placing it just after inlining other optimizations which runs
556 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000557 if (UseLoopVersioningLICM) {
558 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
559 MPM.add(createLICMPass()); // Hoist loop invariants
560 }
561
Chandler Carruth08eebe22015-07-23 09:34:01 +0000562 if (EnableNonLTOGlobalsModRef)
563 // We add a fresh GlobalsModRef run at this point. This is particularly
564 // useful as the above will have inlined, DCE'ed, and function-attr
565 // propagated everything. We should at this point have a reasonably minimal
566 // and richly annotated call graph. By computing aliasing and mod/ref
567 // information for all local globals here, the late loop passes and notably
568 // the vectorizer will be able to use them to help recognize vectorizable
569 // memory operations.
570 //
571 // Note that this relies on a bug in the pass manager which preserves
572 // a module analysis into a function pass pipeline (and throughout it) so
573 // long as the first function pass doesn't invalidate the module analysis.
574 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
575 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
576 // (doing nothing preserves it as it is required to be conservatively
577 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000578 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000579
Davide Italianob6725372017-01-02 17:49:18 +0000580 MPM.add(createFloat2IntPass());
James Molloy0cbb2a862015-03-27 10:36:57 +0000581
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000582 addExtensionsToPM(EP_VectorizerStart, MPM);
583
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000584 // Re-rotate loops in all our loop nests. These may have fallout out of
585 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000586 // on the rotated form. Disable header duplication at -Oz.
587 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000588
Adam Nemet938d3d62015-05-14 12:05:18 +0000589 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000590 // into separate loop that would otherwise inhibit vectorization. This is
591 // currently only performed for loops marked with the metadata
592 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
Adam Nemet32e6a342016-12-21 04:07:40 +0000593 MPM.add(createLoopDistributePass());
Adam Nemet938d3d62015-05-14 12:05:18 +0000594
Renato Golin729a3ae2013-12-05 21:20:02 +0000595 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000596
597 // Eliminate loads by forwarding stores from the previous iteration to loads
598 // of the current iteration.
599 if (EnableLoopLoadElim)
600 MPM.add(createLoopLoadEliminationPass());
601
Renato Golin729a3ae2013-12-05 21:20:02 +0000602 // FIXME: Because of #pragma vectorize enable, the passes below are always
603 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
604 // on -O1 and no #pragma is found). Would be good to have these two passes
605 // as function calls, so that we can only pass them when the vectorizer
606 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000607 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000608 if (OptLevel > 1 && ExtraVectorizerPasses) {
609 // At higher optimization levels, try to clean up any runtime overlap and
610 // alignment checks inserted by the vectorizer. We want to track correllated
611 // runtime checks for two inner loops in the same outer loop, fold any
612 // common computations, hoist loop-invariant aspects out of any outer loop,
613 // and unswitch the runtime checks if possible. Once hoisted, we may have
614 // dead (or speculatable) control flows or more combining opportunities.
615 MPM.add(createEarlyCSEPass());
616 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000617 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000618 MPM.add(createLICMPass());
Stanislav Mekhanoshinee2dd782017-03-17 17:13:41 +0000619 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000620 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000621 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000622 }
James Molloy568da092014-08-06 12:56:19 +0000623
624 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000625 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000626 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000627 if (OptLevel > 1 && ExtraVectorizerPasses) {
628 MPM.add(createEarlyCSEPass());
629 }
630 }
James Molloy568da092014-08-06 12:56:19 +0000631
632 if (BBVectorize) {
633 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000634 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000635 addExtensionsToPM(EP_Peephole, MPM);
636 if (OptLevel > 1 && UseGVNAfterVectorization)
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000637 MPM.add(NewGVN
638 ? createNewGVNPass()
639 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000640 else
641 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
642
643 // BBVectorize may have significantly shortened a loop body; unroll again.
644 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000645 MPM.add(createLoopUnrollPass(OptLevel));
James Molloy568da092014-08-06 12:56:19 +0000646 }
647 }
648
Peter Collingbourne0a437612014-05-25 10:27:02 +0000649 addExtensionsToPM(EP_Peephole, MPM);
Joerg Sonnenbergerfa736742017-03-26 06:44:08 +0000650 MPM.add(createLateCFGSimplificationPass()); // Switches to lookup tables
Matthias Braunc31032d2016-03-09 18:47:11 +0000651 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000652
Kevin Qin49bc7642015-03-12 05:36:01 +0000653 if (!DisableUnrollLoops) {
Dehao Chen7d230322017-02-18 03:46:51 +0000654 MPM.add(createLoopUnrollPass(OptLevel)); // Unroll small loops
Hal Finkel86b30642014-03-31 23:23:51 +0000655
Wei Mibf727ba2015-05-14 22:02:54 +0000656 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000657 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000658
Kevin Qin49bc7642015-03-12 05:36:01 +0000659 // Runtime unrolling will introduce runtime check in loop prologue. If the
660 // unrolled loop is a inner loop, then the prologue will be inside the
661 // outer loop. LICM pass can help to promote the runtime check out if the
662 // checked value is loop invariant.
663 MPM.add(createLICMPass());
Dehao Chen947dbe122016-11-09 00:58:19 +0000664 }
Kevin Qin49bc7642015-03-12 05:36:01 +0000665
Hal Finkeld67e4632014-09-07 20:05:11 +0000666 // After vectorization and unrolling, assume intrinsics may tell us more
667 // about pointer alignments.
668 MPM.add(createAlignmentFromAssumptionsPass());
669
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000670 if (!DisableUnitAtATime) {
671 // FIXME: We shouldn't bother with this anymore.
672 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
673
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000674 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000675 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000676 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000677 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000678 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000679 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000680 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000681
682 if (MergeFunctions)
683 MPM.add(createMergeFunctionsPass());
684
Dehao Chen5492f862016-11-10 17:42:18 +0000685 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
686 // canonicalization pass that enables other optimizations. As a result,
687 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
688 // result too early.
Dehao Chen947dbe122016-11-09 00:58:19 +0000689 MPM.add(createLoopSinkPass());
690 // Get rid of LCSSA nodes.
691 MPM.add(createInstructionSimplifierPass());
Filipe Cabecinhas92dc3482017-04-26 12:02:41 +0000692
693 // LoopSink (and other loop passes since the last simplifyCFG) might have
694 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
695 MPM.add(createCFGSimplificationPass());
696
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000697 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000698}
699
Chandler Carruth30d69c22015-02-13 10:01:29 +0000700void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000701 // Remove unused virtual tables to improve the quality of code generated by
702 // whole-program devirtualization and bitset lowering.
703 PM.add(createGlobalDCEPass());
704
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000705 // Provide AliasAnalysis services for optimizations.
706 addInitialAliasAnalysisPasses(PM);
707
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000708 // Allow forcing function attributes as a debugging and tuning aid.
709 PM.add(createForceFunctionAttrsLegacyPass());
710
Chandler Carruth3a040e62015-12-27 08:41:34 +0000711 // Infer attributes about declarations if possible.
712 PM.add(createInferFunctionAttrsLegacyPass());
713
Peter Collingbournefad596a2016-05-25 21:26:14 +0000714 if (OptLevel > 1) {
715 // Indirect call promotion. This should promote all the targets that are
716 // left by the earlier promotion pass that promotes intra-module targets.
717 // This two-step promotion is to save the compile time. For LTO, it should
718 // produce the same result as if we only do promotion here.
Dehao Chencc75d242017-02-23 22:15:18 +0000719 PM.add(
720 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty()));
Rong Xu6e34c492016-04-27 23:20:27 +0000721
Peter Collingbournefad596a2016-05-25 21:26:14 +0000722 // Propagate constants at call sites into the functions they call. This
723 // opens opportunities for globalopt (and inlining) by substituting function
724 // pointers passed as arguments to direct uses of functions.
725 PM.add(createIPSCCPPass());
726 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000727
Peter Collingbournefad596a2016-05-25 21:26:14 +0000728 // Infer attributes about definitions. The readnone attribute in particular is
729 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000730 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000731 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000732
Peter Collingbournef72a8d42016-11-16 23:40:26 +0000733 // Split globals using inrange annotations on GEP indices. This can help
734 // improve the quality of generated code when virtual constant propagation or
735 // control flow integrity are enabled.
736 PM.add(createGlobalSplitPass());
737
Peter Collingbournefad596a2016-05-25 21:26:14 +0000738 // Apply whole-program devirtualization and virtual constant propagation.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000739 PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
Peter Collingbournefad596a2016-05-25 21:26:14 +0000740
741 // That's all we need at opt level 1.
742 if (OptLevel == 1)
743 return;
744
745 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000746 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000747 // Promote any localized global vars.
748 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000749
750 // Linking modules together can lead to duplicated global constants, only
751 // keep one copy of each constant.
752 PM.add(createConstantMergePass());
753
754 // Remove unused arguments from functions.
755 PM.add(createDeadArgEliminationPass());
756
757 // Reduce the code after globalopt and ipsccp. Both can open up significant
758 // simplification opportunities, and both can propagate functions through
759 // function pointers. When this happens, we often have to resolve varargs
760 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000761 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000762 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000763
764 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000765 bool RunInliner = Inliner;
766 if (RunInliner) {
767 PM.add(Inliner);
768 Inliner = nullptr;
769 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000770
771 PM.add(createPruneEHPass()); // Remove dead EH info.
772
773 // Optimize globals again if we ran the inliner.
774 if (RunInliner)
775 PM.add(createGlobalOptimizerPass());
776 PM.add(createGlobalDCEPass()); // Remove dead functions.
777
778 // If we didn't decide to inline a function, check to see if we can
779 // transform it to pass arguments by value instead of by reference.
780 PM.add(createArgumentPromotionPass());
781
782 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000783 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000784 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000785 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000786
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000787 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000788 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000789
790 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000791 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000792 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000793
Bill Wendling932b9922012-04-02 22:16:50 +0000794 PM.add(createLICMPass()); // Hoist loop invariants.
Davide Italiano9b8738d2017-01-28 23:45:37 +0000795 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Davide Italianofe7a3ee2016-12-26 18:26:19 +0000796 PM.add(NewGVN ? createNewGVNPass()
797 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
Bill Wendling932b9922012-04-02 22:16:50 +0000798 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000799
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000800 // Nuke dead stores.
801 PM.add(createDeadStoreEliminationPass());
802
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000803 // More loops are countable; try to optimize them.
804 PM.add(createIndVarSimplifyPass());
805 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000806 if (EnableLoopInterchange)
807 PM.add(createLoopInterchangePass());
808
James Molloy31f3ddd2016-01-14 15:00:09 +0000809 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000810 PM.add(createSimpleLoopUnrollPass(OptLevel)); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000811 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000812 // The vectorizer may have significantly shortened a loop body; unroll again.
813 if (!DisableUnrollLoops)
Dehao Chen7d230322017-02-18 03:46:51 +0000814 PM.add(createLoopUnrollPass(OptLevel));
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000815
James Molloy6045cc82015-12-15 09:24:01 +0000816 // Now that we've optimized loops (in particular loop induction variables),
817 // we may have exposed more scalar opportunities. Run parts of the scalar
818 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000819 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000820 PM.add(createCFGSimplificationPass()); // if-convert
821 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000822 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000823 PM.add(createBitTrackingDCEPass());
824
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000825 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000826 if (RunSLPAfterLoopVectorization)
827 if (SLPVectorize)
828 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000829
Hal Finkeld67e4632014-09-07 20:05:11 +0000830 // After vectorization, assume intrinsics may tell us more about pointer
831 // alignments.
832 PM.add(createAlignmentFromAssumptionsPass());
833
Michael J. Spencer289067c2014-05-29 01:55:07 +0000834 if (LoadCombine)
835 PM.add(createLoadCombinePass());
836
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000837 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000838 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000839 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000840
841 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000842}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000843
Peter Collingbourne070843d2015-03-19 22:01:00 +0000844void PassManagerBuilder::addLateLTOOptimizationPasses(
845 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000846 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000847 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000848
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000849 // Drop bodies of available externally objects to improve GlobalDCE.
850 PM.add(createEliminateAvailableExternallyPass());
851
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000852 // Now that we have optimized the program, discard unreachable functions.
853 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000854
855 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
856 // currently it damages debug info.
857 if (MergeFunctions)
858 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000859}
Rafael Espindola07f609152011-08-09 22:17:34 +0000860
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000861void PassManagerBuilder::populateThinLTOPassManager(
862 legacy::PassManagerBase &PM) {
863 PerformThinLTO = true;
864
865 if (VerifyInput)
866 PM.add(createVerifierPass());
867
Peter Collingbournef7691d82017-03-22 18:22:59 +0000868 if (ImportSummary) {
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000869 // These passes import type identifier resolutions for whole-program
870 // devirtualization and CFI. They must run early because other passes may
871 // disturb the specific instruction patterns that these passes look for,
872 // creating dependencies on resolutions that may not appear in the summary.
873 //
874 // For example, GVN may transform the pattern assume(type.test) appearing in
875 // two basic blocks into assume(phi(type.test, type.test)), which would
876 // transform a dependency on a WPD resolution into a dependency on a type
877 // identifier resolution for CFI.
878 //
879 // Also, WPD has access to more precise information than ICP and can
880 // devirtualize more effectively, so it should operate on the IR first.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000881 PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary));
882 PM.add(createLowerTypeTestsPass(nullptr, ImportSummary));
Peter Collingbourne08eb0812017-02-15 23:48:38 +0000883 }
Peter Collingbournee02b74e2017-01-20 22:18:52 +0000884
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000885 populateModulePassManager(PM);
886
887 if (VerifyOutput)
888 PM.add(createVerifierPass());
889 PerformThinLTO = false;
890}
891
Chandler Carruth30d69c22015-02-13 10:01:29 +0000892void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000893 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000894 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000895
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000896 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000897 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000898
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000899 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000900 addLTOOptimizationPasses(PM);
901
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000902 // Create a function that performs CFI checks for cross-DSO calls with targets
903 // in the current module.
904 PM.add(createCrossDSOCFIPass());
905
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000906 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
907 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
908 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
Peter Collingbournef7691d82017-03-22 18:22:59 +0000909 PM.add(createLowerTypeTestsPass(ExportSummary, nullptr));
Peter Collingbourne070843d2015-03-19 22:01:00 +0000910
911 if (OptLevel != 0)
912 addLateLTOOptimizationPasses(PM);
913
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000914 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000915 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000916}
917
Eric Christopher04d4e932013-04-22 22:47:22 +0000918inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
919 return reinterpret_cast<PassManagerBuilder*>(P);
920}
921
922inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
923 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
924}
925
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000926LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000927 PassManagerBuilder *PMB = new PassManagerBuilder();
928 return wrap(PMB);
929}
930
931void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
932 PassManagerBuilder *Builder = unwrap(PMB);
933 delete Builder;
934}
935
936void
937LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
938 unsigned OptLevel) {
939 PassManagerBuilder *Builder = unwrap(PMB);
940 Builder->OptLevel = OptLevel;
941}
942
943void
944LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
945 unsigned SizeLevel) {
946 PassManagerBuilder *Builder = unwrap(PMB);
947 Builder->SizeLevel = SizeLevel;
948}
949
950void
951LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
952 LLVMBool Value) {
953 PassManagerBuilder *Builder = unwrap(PMB);
954 Builder->DisableUnitAtATime = Value;
955}
956
957void
958LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
959 LLVMBool Value) {
960 PassManagerBuilder *Builder = unwrap(PMB);
961 Builder->DisableUnrollLoops = Value;
962}
963
964void
965LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
966 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000967 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000968}
969
970void
971LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
972 unsigned Threshold) {
973 PassManagerBuilder *Builder = unwrap(PMB);
974 Builder->Inliner = createFunctionInliningPass(Threshold);
975}
976
977void
978LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
979 LLVMPassManagerRef PM) {
980 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000981 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000982 Builder->populateFunctionPassManager(*FPM);
983}
984
985void
986LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
987 LLVMPassManagerRef PM) {
988 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000989 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000990 Builder->populateModulePassManager(*MPM);
991}
992
993void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
994 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000995 LLVMBool Internalize,
996 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000997 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000998 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000999
1000 // A small backwards compatibility hack. populateLTOPassManager used to take
1001 // an RunInliner option.
1002 if (RunInliner && !Builder->Inliner)
1003 Builder->Inliner = createFunctionInliningPass();
1004
1005 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +00001006}