blob: a5399e5760e2184d003049a92e4f93e0b5bdec28 [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"
Chandler Carruth8b046a42015-08-14 02:42:20 +000019#include "llvm/Analysis/CFLAliasAnalysis.h"
Chandler Carruth21dcff72015-08-14 03:48:20 +000020#include "llvm/Analysis/GlobalsModRef.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000021#include "llvm/Analysis/Passes.h"
Chandler Carruth42ff4482015-08-14 02:55:50 +000022#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000023#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth1db22822015-08-14 03:33:48 +000024#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000025#include "llvm/IR/DataLayout.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000026#include "llvm/IR/LegacyPassManager.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000027#include "llvm/IR/ModuleSummaryIndex.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000028#include "llvm/IR/Verifier.h"
29#include "llvm/Support/CommandLine.h"
30#include "llvm/Support/ManagedStatic.h"
Rafael Espindola7cebf362014-08-21 20:03:44 +000031#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Transforms/IPO.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000033#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000034#include "llvm/Transforms/IPO/FunctionAttrs.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000035#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000036#include "llvm/Transforms/Instrumentation.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000037#include "llvm/Transforms/Scalar.h"
Chandler Carruth89c45a12016-03-11 08:50:55 +000038#include "llvm/Transforms/Scalar/GVN.h"
Hal Finkelc34e5112012-02-01 03:51:43 +000039#include "llvm/Transforms/Vectorize.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000040
41using namespace llvm;
42
Hal Finkelc34e5112012-02-01 03:51:43 +000043static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000044RunLoopVectorization("vectorize-loops", cl::Hidden,
Nadav Rotemd3df6652012-10-30 18:37:43 +000045 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000046
47static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000048RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000049 cl::desc("Run the SLP vectorization passes"));
50
51static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000052RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000053 cl::desc("Run the BB vectorization passes"));
Hal Finkelc34e5112012-02-01 03:51:43 +000054
Hal Finkel204bf532012-04-13 17:15:33 +000055static cl::opt<bool>
56UseGVNAfterVectorization("use-gvn-after-vectorization",
57 cl::init(false), cl::Hidden,
58 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
59
Chandler Carruth7b8297a2014-10-14 00:31:29 +000060static cl::opt<bool> ExtraVectorizerPasses(
61 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
62 cl::desc("Run cleanup optimization passes after vectorization."));
63
Chandler Carruth1b398ae2012-09-14 09:22:59 +000064static cl::opt<bool> UseNewSROA("use-new-sroa",
Chandler Carruth4e435992012-10-02 04:24:01 +000065 cl::init(true), cl::Hidden,
Chandler Carruth1b398ae2012-09-14 09:22:59 +000066 cl::desc("Enable the new, experimental SROA pass"));
67
Hal Finkelbf45efd2013-11-16 23:59:05 +000068static cl::opt<bool>
69RunLoopRerolling("reroll-loops", cl::Hidden,
70 cl::desc("Run the loop rerolling pass"));
71
James Molloy0cbb2a862015-03-27 10:36:57 +000072static cl::opt<bool>
73RunFloat2Int("float-to-int", cl::Hidden, cl::init(true),
74 cl::desc("Run the float2int (float demotion) pass"));
75
Michael J. Spencer289067c2014-05-29 01:55:07 +000076static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
77 cl::Hidden,
78 cl::desc("Run the load combining pass"));
79
James Molloy568da092014-08-06 12:56:19 +000080static cl::opt<bool>
81RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000082 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000083 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
84 "vectorizer instead of before"));
85
Hal Finkel445dda52014-09-02 22:12:54 +000086static cl::opt<bool> UseCFLAA("use-cfl-aa",
87 cl::init(false), cl::Hidden,
88 cl::desc("Enable the new, experimental CFL alias analysis"));
James Molloy568da092014-08-06 12:56:19 +000089
Gerolf Hoflehner24815d92014-09-10 19:55:29 +000090static cl::opt<bool>
Gerolf Hoflehner008e5cd2014-09-10 20:24:03 +000091EnableMLSM("mlsm", cl::init(true), cl::Hidden,
92 cl::desc("Enable motion of merged load and store"));
Gerolf Hoflehner24815d92014-09-10 19:55:29 +000093
Karthik Bhat88db86d2015-03-06 10:11:25 +000094static cl::opt<bool> EnableLoopInterchange(
95 "enable-loopinterchange", cl::init(false), cl::Hidden,
96 cl::desc("Enable the new, experimental LoopInterchange Pass"));
97
Adam Nemet938d3d62015-05-14 12:05:18 +000098static cl::opt<bool> EnableLoopDistribute(
99 "enable-loop-distribute", cl::init(false), cl::Hidden,
100 cl::desc("Enable the new, experimental LoopDistribution Pass"));
101
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000102static cl::opt<bool> EnableNonLTOGlobalsModRef(
James Molloy40159252015-10-13 10:43:57 +0000103 "enable-non-lto-gmr", cl::init(true), cl::Hidden,
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000104 cl::desc(
105 "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline."));
106
Adam Nemete54a4fa2015-11-03 23:50:08 +0000107static cl::opt<bool> EnableLoopLoadElim(
Adam Nemetbb458102016-03-14 20:38:55 +0000108 "enable-loop-load-elim", cl::init(false), cl::Hidden,
109 cl::desc("Enable the new, experimental LoopLoadElimination Pass"));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000110
Rong Xu34abbfb2016-01-21 18:28:59 +0000111static cl::opt<std::string> RunPGOInstrGen(
112 "profile-generate", cl::init(""), cl::Hidden,
113 cl::desc("Enable generation phase of PGO instrumentation and specify the "
114 "path of profile data file"));
115
116static cl::opt<std::string> RunPGOInstrUse(
117 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
118 cl::desc("Enable use phase of PGO instrumentation and specify the path "
119 "of profile data file"));
120
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000121static cl::opt<bool> UseLoopVersioningLICM(
122 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
123 cl::desc("Enable the experimental Loop Versioning LICM pass"));
124
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000125PassManagerBuilder::PassManagerBuilder() {
126 OptLevel = 2;
127 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000128 LibraryInfo = nullptr;
129 Inliner = nullptr;
Teresa Johnson26ab5772016-03-15 00:04:37 +0000130 ModuleSummary = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000131 DisableUnitAtATime = false;
132 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000133 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000134 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000135 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000136 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000137 LoadCombine = RunLoadCombine;
Rafael Espindola208bc532014-08-21 13:13:17 +0000138 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000139 VerifyInput = false;
140 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000141 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000142 PrepareForLTO = false;
Rong Xu34abbfb2016-01-21 18:28:59 +0000143 PGOInstrGen = RunPGOInstrGen;
144 PGOInstrUse = RunPGOInstrUse;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000145 PrepareForThinLTO = false;
146 PerformThinLTO = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000147}
148
149PassManagerBuilder::~PassManagerBuilder() {
150 delete LibraryInfo;
151 delete Inliner;
152}
153
David Chisnall719a72f2011-08-16 13:58:41 +0000154/// Set of global extensions, automatically added as part of the standard set.
155static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
156 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
157
158void PassManagerBuilder::addGlobalExtension(
159 PassManagerBuilder::ExtensionPointTy Ty,
160 PassManagerBuilder::ExtensionFn Fn) {
161 GlobalExtensions->push_back(std::make_pair(Ty, Fn));
162}
163
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000164void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
165 Extensions.push_back(std::make_pair(Ty, Fn));
166}
167
168void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000169 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000170 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
171 if ((*GlobalExtensions)[i].first == ETy)
172 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000173 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
174 if (Extensions[i].first == ETy)
175 Extensions[i].second(*this, PM);
176}
177
Chandler Carruth30d69c22015-02-13 10:01:29 +0000178void PassManagerBuilder::addInitialAliasAnalysisPasses(
179 legacy::PassManagerBase &PM) const {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000180 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
181 // BasicAliasAnalysis wins if they disagree. This is intended to help
182 // support "obvious" type-punning idioms.
Hal Finkel445dda52014-09-02 22:12:54 +0000183 if (UseCFLAA)
Chandler Carruth7b560d42015-09-09 17:55:00 +0000184 PM.add(createCFLAAWrapperPass());
185 PM.add(createTypeBasedAAWrapperPass());
186 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000187}
188
Matthias Braunc31032d2016-03-09 18:47:11 +0000189void PassManagerBuilder::addInstructionCombiningPass(
190 legacy::PassManagerBase &PM) const {
191 bool ExpensiveCombines = OptLevel > 2;
192 PM.add(createInstructionCombiningPass(ExpensiveCombines));
193}
194
Chandler Carruth30d69c22015-02-13 10:01:29 +0000195void PassManagerBuilder::populateFunctionPassManager(
196 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000197 addExtensionsToPM(EP_EarlyAsPossible, FPM);
198
199 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000200 if (LibraryInfo)
201 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000202
203 if (OptLevel == 0) return;
204
205 addInitialAliasAnalysisPasses(FPM);
206
207 FPM.add(createCFGSimplificationPass());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000208 if (UseNewSROA)
209 FPM.add(createSROAPass());
210 else
211 FPM.add(createScalarReplAggregatesPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000212 FPM.add(createEarlyCSEPass());
213 FPM.add(createLowerExpectIntrinsicPass());
214}
215
Rong Xu34abbfb2016-01-21 18:28:59 +0000216// Do PGO instrumentation generation or use pass as the option specified.
217void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
218 if (!PGOInstrGen.empty()) {
219 MPM.add(createPGOInstrumentationGenPass());
220 // Add the profile lowering pass.
221 InstrProfOptions Options;
222 Options.InstrProfileOutput = PGOInstrGen;
223 MPM.add(createInstrProfilingPass(Options));
224 }
225 if (!PGOInstrUse.empty())
226 MPM.add(createPGOInstrumentationUsePass(PGOInstrUse));
227}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000228void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000229 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000230 // Start of function pass.
231 // Break up aggregate allocas, using SSAUpdater.
Chandler Carruth70b44c52012-09-15 11:43:14 +0000232 if (UseNewSROA)
Mehdi Aminid134a672015-08-23 22:15:49 +0000233 MPM.add(createSROAPass());
Chandler Carruth70b44c52012-09-15 11:43:14 +0000234 else
235 MPM.add(createScalarReplAggregatesPass(-1, false));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000236 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000237 MPM.add(createJumpThreadingPass()); // Thread jumps.
238 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
239 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000240 // Combine silly seq's
241 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000242 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000243
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000244 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000245 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
246 MPM.add(createReassociatePass()); // Reassociate expressions
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000247 if (PrepareForThinLTO) {
248 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Matthias Braunc31032d2016-03-09 18:47:11 +0000249 addInstructionCombiningPass(MPM); // Combine silly seq's
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000250 return;
251 }
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000252 // Rotate Loop - disable header duplication at -Oz
253 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000254 MPM.add(createLICMPass()); // Hoist loop invariants
255 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000256 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000257 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000258 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
259 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
260 MPM.add(createLoopDeletionPass()); // Delete dead loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000261 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000262 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000263 MPM.add(createCFGSimplificationPass());
264 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000265 if (!DisableUnrollLoops)
Hal Finkel86b30642014-03-31 23:23:51 +0000266 MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000267 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
268
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000269 if (OptLevel > 1) {
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000270 if (EnableMLSM)
271 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Rafael Espindola208bc532014-08-21 13:13:17 +0000272 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000273 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000274 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
275 MPM.add(createSCCPPass()); // Constant prop with SCCP
276
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000277 // Delete dead bit computations (instcombine runs after to fold away the dead
278 // computations, and then ADCE will run later to exploit any new DCE
279 // opportunities that creates).
280 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
281
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000282 // Run instcombine after redundancy elimination to exploit opportunities
283 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000284 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000285 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000286 MPM.add(createJumpThreadingPass()); // Thread jumps
287 MPM.add(createCorrelatedValuePropagationPass());
288 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000289 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000290
291 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
292
Hal Finkel29aeb202013-11-17 16:02:50 +0000293 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000294 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000295 if (!RunSLPAfterLoopVectorization) {
296 if (SLPVectorize)
297 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000298
James Molloy568da092014-08-06 12:56:19 +0000299 if (BBVectorize) {
300 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000301 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000302 addExtensionsToPM(EP_Peephole, MPM);
303 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000304 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000305 else
306 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000307
James Molloy568da092014-08-06 12:56:19 +0000308 // BBVectorize may have significantly shortened a loop body; unroll again.
309 if (!DisableUnrollLoops)
310 MPM.add(createLoopUnrollPass());
311 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000312 }
313
Michael J. Spencer289067c2014-05-29 01:55:07 +0000314 if (LoadCombine)
315 MPM.add(createLoadCombinePass());
316
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000317 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000318 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000319 // Clean up after everything.
320 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000321 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000322}
323
324void PassManagerBuilder::populateModulePassManager(
325 legacy::PassManagerBase &MPM) {
326 // Allow forcing function attributes as a debugging and tuning aid.
327 MPM.add(createForceFunctionAttrsLegacyPass());
328
329 // If all optimizations are disabled, just run the always-inline pass and,
330 // if enabled, the function merging pass.
331 if (OptLevel == 0) {
332 addPGOInstrPasses(MPM);
333 if (Inliner) {
334 MPM.add(Inliner);
335 Inliner = nullptr;
336 }
337
338 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
339 // creates a CGSCC pass manager, but we don't want to add extensions into
340 // that pass manager. To prevent this we insert a no-op module pass to reset
341 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
342 // builds. The function merging pass is
343 if (MergeFunctions)
344 MPM.add(createMergeFunctionsPass());
345 else if (!GlobalExtensions->empty() || !Extensions.empty())
346 MPM.add(createBarrierNoopPass());
347
348 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
349 return;
350 }
351
352 // Add LibraryInfo if we have some.
353 if (LibraryInfo)
354 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
355
356 addInitialAliasAnalysisPasses(MPM);
357
358 if (!DisableUnitAtATime) {
359 // Infer attributes about declarations if possible.
360 MPM.add(createInferFunctionAttrsLegacyPass());
361
362 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
363
364 MPM.add(createIPSCCPPass()); // IP SCCP
365 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
366 // Promote any localized global vars.
367 MPM.add(createPromoteMemoryToRegisterPass());
368
369 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
370
Matthias Braunc31032d2016-03-09 18:47:11 +0000371 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000372 addExtensionsToPM(EP_Peephole, MPM);
373 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
374 }
375
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000376 if (!PerformThinLTO)
377 /// PGO instrumentation is added during the compile phase for ThinLTO, do
378 /// not run it a second time
379 addPGOInstrPasses(MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000380
381 if (EnableNonLTOGlobalsModRef)
382 // We add a module alias analysis pass here. In part due to bugs in the
383 // analysis infrastructure this "works" in that the analysis stays alive
384 // for the entire SCC pass run below.
385 MPM.add(createGlobalsAAWrapperPass());
386
387 // Start of CallGraph SCC passes.
388 if (!DisableUnitAtATime)
389 MPM.add(createPruneEHPass()); // Remove dead EH info
390 if (Inliner) {
391 MPM.add(Inliner);
392 Inliner = nullptr;
393 }
394 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000395 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000396 if (OptLevel > 2)
397 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
398
399 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000400
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000401 // If we are planning to perform ThinLTO later, let's not bloat the code with
402 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
403 // during ThinLTO and perform the rest of the optimizations afterward.
404 if (PrepareForThinLTO)
405 return;
406
Renato Golin729a3ae2013-12-05 21:20:02 +0000407 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
408 // pass manager that we are specifically trying to avoid. To prevent this
409 // we must insert a no-op module pass to reset the pass manager.
410 MPM.add(createBarrierNoopPass());
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000411
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000412 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000413 // we may see more accurate aliasing. Reason to run this late is that too
414 // early versioning may prevent further inlining due to increase of code
415 // size. By placing it just after inlining other optimizations which runs
416 // later might get benefit of no-alias assumption in clone loop.
417 if (UseLoopVersioningLICM) {
418 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
419 MPM.add(createLICMPass()); // Hoist loop invariants
420 }
421
Chandler Carruth1926b702016-01-08 10:55:52 +0000422 if (!DisableUnitAtATime)
423 MPM.add(createReversePostOrderFunctionAttrsPass());
424
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000425 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO)
Yaron Keren611c7cf2015-09-02 06:34:11 +0000426 // Remove avail extern fns and globals definitions if we aren't
427 // compiling an object file for later LTO. For LTO we want to preserve
428 // these so they are eligible for inlining at link-time. Note if they
429 // are unreferenced they will be removed by GlobalDCE later, so
430 // this only impacts referenced available externally globals.
431 // Eventually they will be suppressed during codegen, but eliminating
432 // here enables more opportunity for GlobalDCE as it may make
433 // globals referenced by available external functions dead
434 // and saves running remaining passes on the eliminated functions.
435 MPM.add(createEliminateAvailableExternallyPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000436
437 if (PerformThinLTO) {
438 // Remove dead fns and globals. Removing unreferenced functions could lead
439 // to more opportunities for globalopt.
440 MPM.add(createGlobalDCEPass());
441 MPM.add(createGlobalOptimizerPass());
442 // Remove dead fns and globals after globalopt.
443 MPM.add(createGlobalDCEPass());
444 addFunctionSimplificationPasses(MPM);
Yaron Keren611c7cf2015-09-02 06:34:11 +0000445 }
446
Chandler Carruth08eebe22015-07-23 09:34:01 +0000447 if (EnableNonLTOGlobalsModRef)
448 // We add a fresh GlobalsModRef run at this point. This is particularly
449 // useful as the above will have inlined, DCE'ed, and function-attr
450 // propagated everything. We should at this point have a reasonably minimal
451 // and richly annotated call graph. By computing aliasing and mod/ref
452 // information for all local globals here, the late loop passes and notably
453 // the vectorizer will be able to use them to help recognize vectorizable
454 // memory operations.
455 //
456 // Note that this relies on a bug in the pass manager which preserves
457 // a module analysis into a function pass pipeline (and throughout it) so
458 // long as the first function pass doesn't invalidate the module analysis.
459 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
460 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
461 // (doing nothing preserves it as it is required to be conservatively
462 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000463 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000464
James Molloy0cbb2a862015-03-27 10:36:57 +0000465 if (RunFloat2Int)
466 MPM.add(createFloat2IntPass());
467
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000468 addExtensionsToPM(EP_VectorizerStart, MPM);
469
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000470 // Re-rotate loops in all our loop nests. These may have fallout out of
471 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000472 // on the rotated form. Disable header duplication at -Oz.
473 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000474
Adam Nemet938d3d62015-05-14 12:05:18 +0000475 // Distribute loops to allow partial vectorization. I.e. isolate dependences
476 // into separate loop that would otherwise inhibit vectorization.
477 if (EnableLoopDistribute)
478 MPM.add(createLoopDistributePass());
479
Renato Golin729a3ae2013-12-05 21:20:02 +0000480 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000481
482 // Eliminate loads by forwarding stores from the previous iteration to loads
483 // of the current iteration.
484 if (EnableLoopLoadElim)
485 MPM.add(createLoopLoadEliminationPass());
486
Renato Golin729a3ae2013-12-05 21:20:02 +0000487 // FIXME: Because of #pragma vectorize enable, the passes below are always
488 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
489 // on -O1 and no #pragma is found). Would be good to have these two passes
490 // as function calls, so that we can only pass them when the vectorizer
491 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000492 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000493 if (OptLevel > 1 && ExtraVectorizerPasses) {
494 // At higher optimization levels, try to clean up any runtime overlap and
495 // alignment checks inserted by the vectorizer. We want to track correllated
496 // runtime checks for two inner loops in the same outer loop, fold any
497 // common computations, hoist loop-invariant aspects out of any outer loop,
498 // and unswitch the runtime checks if possible. Once hoisted, we may have
499 // dead (or speculatable) control flows or more combining opportunities.
500 MPM.add(createEarlyCSEPass());
501 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000502 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000503 MPM.add(createLICMPass());
504 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
505 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000506 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000507 }
James Molloy568da092014-08-06 12:56:19 +0000508
509 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000510 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000511 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000512 if (OptLevel > 1 && ExtraVectorizerPasses) {
513 MPM.add(createEarlyCSEPass());
514 }
515 }
James Molloy568da092014-08-06 12:56:19 +0000516
517 if (BBVectorize) {
518 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000519 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000520 addExtensionsToPM(EP_Peephole, MPM);
521 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000522 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000523 else
524 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
525
526 // BBVectorize may have significantly shortened a loop body; unroll again.
527 if (!DisableUnrollLoops)
528 MPM.add(createLoopUnrollPass());
529 }
530 }
531
Peter Collingbourne0a437612014-05-25 10:27:02 +0000532 addExtensionsToPM(EP_Peephole, MPM);
Renato Golin729a3ae2013-12-05 21:20:02 +0000533 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000534 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000535
Kevin Qin49bc7642015-03-12 05:36:01 +0000536 if (!DisableUnrollLoops) {
Hal Finkel86b30642014-03-31 23:23:51 +0000537 MPM.add(createLoopUnrollPass()); // Unroll small loops
538
Wei Mibf727ba2015-05-14 22:02:54 +0000539 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000540 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000541
Kevin Qin49bc7642015-03-12 05:36:01 +0000542 // Runtime unrolling will introduce runtime check in loop prologue. If the
543 // unrolled loop is a inner loop, then the prologue will be inside the
544 // outer loop. LICM pass can help to promote the runtime check out if the
545 // checked value is loop invariant.
546 MPM.add(createLICMPass());
547 }
548
Hal Finkeld67e4632014-09-07 20:05:11 +0000549 // After vectorization and unrolling, assume intrinsics may tell us more
550 // about pointer alignments.
551 MPM.add(createAlignmentFromAssumptionsPass());
552
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000553 if (!DisableUnitAtATime) {
554 // FIXME: We shouldn't bother with this anymore.
555 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
556
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000557 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000558 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000559 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000560 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000561 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000562 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000563 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000564
565 if (MergeFunctions)
566 MPM.add(createMergeFunctionsPass());
567
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000568 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000569}
570
Chandler Carruth30d69c22015-02-13 10:01:29 +0000571void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000572 // Provide AliasAnalysis services for optimizations.
573 addInitialAliasAnalysisPasses(PM);
574
Teresa Johnson26ab5772016-03-15 00:04:37 +0000575 if (ModuleSummary)
576 PM.add(createFunctionImportPass(ModuleSummary));
Teresa Johnson5fcbdb72015-12-07 19:21:11 +0000577
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000578 // Allow forcing function attributes as a debugging and tuning aid.
579 PM.add(createForceFunctionAttrsLegacyPass());
580
Chandler Carruth3a040e62015-12-27 08:41:34 +0000581 // Infer attributes about declarations if possible.
582 PM.add(createInferFunctionAttrsLegacyPass());
583
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000584 // Propagate constants at call sites into the functions they call. This
585 // opens opportunities for globalopt (and inlining) by substituting function
586 // pointers passed as arguments to direct uses of functions.
587 PM.add(createIPSCCPPass());
588
589 // Now that we internalized some globals, see if we can hack on them!
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000590 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000591 PM.add(createReversePostOrderFunctionAttrsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000592 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000593 // Promote any localized global vars.
594 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000595
596 // Linking modules together can lead to duplicated global constants, only
597 // keep one copy of each constant.
598 PM.add(createConstantMergePass());
599
600 // Remove unused arguments from functions.
601 PM.add(createDeadArgEliminationPass());
602
603 // Reduce the code after globalopt and ipsccp. Both can open up significant
604 // simplification opportunities, and both can propagate functions through
605 // function pointers. When this happens, we often have to resolve varargs
606 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000607 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000608 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000609
610 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000611 bool RunInliner = Inliner;
612 if (RunInliner) {
613 PM.add(Inliner);
614 Inliner = nullptr;
615 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000616
617 PM.add(createPruneEHPass()); // Remove dead EH info.
618
619 // Optimize globals again if we ran the inliner.
620 if (RunInliner)
621 PM.add(createGlobalOptimizerPass());
622 PM.add(createGlobalDCEPass()); // Remove dead functions.
623
624 // If we didn't decide to inline a function, check to see if we can
625 // transform it to pass arguments by value instead of by reference.
626 PM.add(createArgumentPromotionPass());
627
628 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000629 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000630 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000631 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000632
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000633 // Break up allocas
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000634 if (UseNewSROA)
635 PM.add(createSROAPass());
636 else
637 PM.add(createScalarReplAggregatesPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000638
639 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000640 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000641 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000642
Bill Wendling932b9922012-04-02 22:16:50 +0000643 PM.add(createLICMPass()); // Hoist loop invariants.
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000644 if (EnableMLSM)
645 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Bill Wendling932b9922012-04-02 22:16:50 +0000646 PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
647 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000648
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000649 // Nuke dead stores.
650 PM.add(createDeadStoreEliminationPass());
651
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000652 // More loops are countable; try to optimize them.
653 PM.add(createIndVarSimplifyPass());
654 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000655 if (EnableLoopInterchange)
656 PM.add(createLoopInterchangePass());
657
James Molloy31f3ddd2016-01-14 15:00:09 +0000658 if (!DisableUnrollLoops)
659 PM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000660 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000661 // The vectorizer may have significantly shortened a loop body; unroll again.
662 if (!DisableUnrollLoops)
663 PM.add(createLoopUnrollPass());
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000664
James Molloy6045cc82015-12-15 09:24:01 +0000665 // Now that we've optimized loops (in particular loop induction variables),
666 // we may have exposed more scalar opportunities. Run parts of the scalar
667 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000668 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000669 PM.add(createCFGSimplificationPass()); // if-convert
670 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000671 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000672 PM.add(createBitTrackingDCEPass());
673
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000674 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000675 if (RunSLPAfterLoopVectorization)
676 if (SLPVectorize)
677 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000678
Hal Finkeld67e4632014-09-07 20:05:11 +0000679 // After vectorization, assume intrinsics may tell us more about pointer
680 // alignments.
681 PM.add(createAlignmentFromAssumptionsPass());
682
Michael J. Spencer289067c2014-05-29 01:55:07 +0000683 if (LoadCombine)
684 PM.add(createLoadCombinePass());
685
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000686 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000687 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000688 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000689
690 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000691}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000692
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000693void PassManagerBuilder::addEarlyLTOOptimizationPasses(
694 legacy::PassManagerBase &PM) {
695 // Remove unused virtual tables to improve the quality of code generated by
696 // whole-program devirtualization and bitset lowering.
697 PM.add(createGlobalDCEPass());
698
699 // Apply whole-program devirtualization and virtual constant propagation.
700 PM.add(createWholeProgramDevirtPass());
701}
702
Peter Collingbourne070843d2015-03-19 22:01:00 +0000703void PassManagerBuilder::addLateLTOOptimizationPasses(
704 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000705 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000706 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000707
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000708 // Drop bodies of available externally objects to improve GlobalDCE.
709 PM.add(createEliminateAvailableExternallyPass());
710
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000711 // Now that we have optimized the program, discard unreachable functions.
712 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000713
714 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
715 // currently it damages debug info.
716 if (MergeFunctions)
717 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000718}
Rafael Espindola07f609152011-08-09 22:17:34 +0000719
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000720void PassManagerBuilder::populateThinLTOPassManager(
721 legacy::PassManagerBase &PM) {
722 PerformThinLTO = true;
723
724 if (VerifyInput)
725 PM.add(createVerifierPass());
726
Teresa Johnson26ab5772016-03-15 00:04:37 +0000727 if (ModuleSummary)
728 PM.add(createFunctionImportPass(ModuleSummary));
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000729
730 populateModulePassManager(PM);
731
732 if (VerifyOutput)
733 PM.add(createVerifierPass());
734 PerformThinLTO = false;
735}
736
Chandler Carruth30d69c22015-02-13 10:01:29 +0000737void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000738 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000739 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000740
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000741 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000742 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000743
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000744 if (OptLevel != 0)
745 addEarlyLTOOptimizationPasses(PM);
746
Peter Collingbourne070843d2015-03-19 22:01:00 +0000747 if (OptLevel > 1)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000748 addLTOOptimizationPasses(PM);
749
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000750 // Create a function that performs CFI checks for cross-DSO calls with targets
751 // in the current module.
752 PM.add(createCrossDSOCFIPass());
753
Peter Collingbourne070843d2015-03-19 22:01:00 +0000754 // Lower bit sets to globals. This pass supports Clang's control flow
755 // integrity mechanisms (-fsanitize=cfi*) and needs to run at link time if CFI
756 // is enabled. The pass does nothing if CFI is disabled.
757 PM.add(createLowerBitSetsPass());
758
759 if (OptLevel != 0)
760 addLateLTOOptimizationPasses(PM);
761
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000762 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000763 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000764}
765
Eric Christopher04d4e932013-04-22 22:47:22 +0000766inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
767 return reinterpret_cast<PassManagerBuilder*>(P);
768}
769
770inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
771 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
772}
773
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000774LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000775 PassManagerBuilder *PMB = new PassManagerBuilder();
776 return wrap(PMB);
777}
778
779void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
780 PassManagerBuilder *Builder = unwrap(PMB);
781 delete Builder;
782}
783
784void
785LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
786 unsigned OptLevel) {
787 PassManagerBuilder *Builder = unwrap(PMB);
788 Builder->OptLevel = OptLevel;
789}
790
791void
792LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
793 unsigned SizeLevel) {
794 PassManagerBuilder *Builder = unwrap(PMB);
795 Builder->SizeLevel = SizeLevel;
796}
797
798void
799LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
800 LLVMBool Value) {
801 PassManagerBuilder *Builder = unwrap(PMB);
802 Builder->DisableUnitAtATime = Value;
803}
804
805void
806LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
807 LLVMBool Value) {
808 PassManagerBuilder *Builder = unwrap(PMB);
809 Builder->DisableUnrollLoops = Value;
810}
811
812void
813LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
814 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000815 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000816}
817
818void
819LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
820 unsigned Threshold) {
821 PassManagerBuilder *Builder = unwrap(PMB);
822 Builder->Inliner = createFunctionInliningPass(Threshold);
823}
824
825void
826LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
827 LLVMPassManagerRef PM) {
828 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000829 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000830 Builder->populateFunctionPassManager(*FPM);
831}
832
833void
834LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
835 LLVMPassManagerRef PM) {
836 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000837 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000838 Builder->populateModulePassManager(*MPM);
839}
840
841void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
842 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000843 LLVMBool Internalize,
844 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000845 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000846 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000847
848 // A small backwards compatibility hack. populateLTOPassManager used to take
849 // an RunInliner option.
850 if (RunInliner && !Builder->Inliner)
851 Builder->Inliner = createFunctionInliningPass();
852
853 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000854}