blob: c6feb133bd1e8bb3dd9c62a9b38a90591795e4cd [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"
Chandler Carruth3a040e62015-12-27 08:41:34 +000022#include "llvm/Analysis/Passes.h"
Chandler Carruth42ff4482015-08-14 02:55:50 +000023#include "llvm/Analysis/ScopedNoAliasAA.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000024#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruth1db22822015-08-14 03:33:48 +000025#include "llvm/Analysis/TypeBasedAliasAnalysis.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000026#include "llvm/IR/DataLayout.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000027#include "llvm/IR/LegacyPassManager.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000028#include "llvm/IR/ModuleSummaryIndex.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000029#include "llvm/IR/Verifier.h"
30#include "llvm/Support/CommandLine.h"
31#include "llvm/Support/ManagedStatic.h"
Rafael Espindola7cebf362014-08-21 20:03:44 +000032#include "llvm/Target/TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Transforms/IPO.h"
Chandler Carruthf49f1a872015-12-27 08:13:45 +000034#include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
Chandler Carruth9c4ed172016-02-18 11:03:11 +000035#include "llvm/Transforms/IPO/FunctionAttrs.h"
Chandler Carruth3a040e62015-12-27 08:41:34 +000036#include "llvm/Transforms/IPO/InferFunctionAttrs.h"
Teresa Johnson26ab5772016-03-15 00:04:37 +000037#include "llvm/Transforms/Instrumentation.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000038#include "llvm/Transforms/Scalar.h"
Chandler Carruth89c45a12016-03-11 08:50:55 +000039#include "llvm/Transforms/Scalar/GVN.h"
Hal Finkelc34e5112012-02-01 03:51:43 +000040#include "llvm/Transforms/Vectorize.h"
Rafael Espindola3ea478b2011-08-02 21:50:27 +000041
42using namespace llvm;
43
Hal Finkelc34e5112012-02-01 03:51:43 +000044static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000045RunLoopVectorization("vectorize-loops", cl::Hidden,
Nadav Rotemd3df6652012-10-30 18:37:43 +000046 cl::desc("Run the Loop vectorization passes"));
Nadav Rotemc59ae202012-10-29 16:36:25 +000047
48static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000049RunSLPVectorization("vectorize-slp", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000050 cl::desc("Run the SLP vectorization passes"));
51
52static cl::opt<bool>
Nadav Rotem7f27e0b2013-10-18 23:38:13 +000053RunBBVectorization("vectorize-slp-aggressive", cl::Hidden,
Nadav Rotemd4dcc002013-04-15 05:39:58 +000054 cl::desc("Run the BB vectorization passes"));
Hal Finkelc34e5112012-02-01 03:51:43 +000055
Hal Finkel204bf532012-04-13 17:15:33 +000056static cl::opt<bool>
57UseGVNAfterVectorization("use-gvn-after-vectorization",
58 cl::init(false), cl::Hidden,
59 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
60
Chandler Carruth7b8297a2014-10-14 00:31:29 +000061static cl::opt<bool> ExtraVectorizerPasses(
62 "extra-vectorizer-passes", cl::init(false), cl::Hidden,
63 cl::desc("Run cleanup optimization passes after vectorization."));
64
Hal Finkelbf45efd2013-11-16 23:59:05 +000065static cl::opt<bool>
66RunLoopRerolling("reroll-loops", cl::Hidden,
67 cl::desc("Run the loop rerolling pass"));
68
James Molloy0cbb2a862015-03-27 10:36:57 +000069static cl::opt<bool>
70RunFloat2Int("float-to-int", cl::Hidden, cl::init(true),
71 cl::desc("Run the float2int (float demotion) pass"));
72
Michael J. Spencer289067c2014-05-29 01:55:07 +000073static cl::opt<bool> RunLoadCombine("combine-loads", cl::init(false),
74 cl::Hidden,
75 cl::desc("Run the load combining pass"));
76
James Molloy568da092014-08-06 12:56:19 +000077static cl::opt<bool>
78RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
James Molloy6b95d8e2014-09-04 13:23:08 +000079 cl::init(true), cl::Hidden,
James Molloy568da092014-08-06 12:56:19 +000080 cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
81 "vectorizer instead of before"));
82
George Burgess IVbfa401e2016-07-06 00:26:41 +000083// Experimental option to use CFL-AA
84enum class CFLAAType { None, Steensgaard, Andersen, Both };
85static cl::opt<CFLAAType>
86 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
87 cl::desc("Enable the new, experimental CFL alias analysis"),
88 cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
89 clEnumValN(CFLAAType::Steensgaard, "steens",
90 "Enable unification-based CFL-AA"),
91 clEnumValN(CFLAAType::Andersen, "anders",
92 "Enable inclusion-based CFL-AA"),
93 clEnumValN(CFLAAType::Both, "both",
94 "Enable both variants of CFL-aa"),
95 clEnumValEnd));
James Molloy568da092014-08-06 12:56:19 +000096
Gerolf Hoflehner24815d92014-09-10 19:55:29 +000097static cl::opt<bool>
Gerolf Hoflehner008e5cd2014-09-10 20:24:03 +000098EnableMLSM("mlsm", cl::init(true), cl::Hidden,
99 cl::desc("Enable motion of merged load and store"));
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000100
Karthik Bhat88db86d2015-03-06 10:11:25 +0000101static cl::opt<bool> EnableLoopInterchange(
102 "enable-loopinterchange", cl::init(false), cl::Hidden,
103 cl::desc("Enable the new, experimental LoopInterchange Pass"));
104
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000105static cl::opt<bool> EnableNonLTOGlobalsModRef(
James Molloy40159252015-10-13 10:43:57 +0000106 "enable-non-lto-gmr", cl::init(true), cl::Hidden,
Chandler Carruthe9ea5a62015-07-22 11:57:28 +0000107 cl::desc(
108 "Enable the GlobalsModRef AliasAnalysis outside of the LTO pipeline."));
109
Adam Nemete54a4fa2015-11-03 23:50:08 +0000110static cl::opt<bool> EnableLoopLoadElim(
Adam Nemetc979c6e2016-03-15 22:26:12 +0000111 "enable-loop-load-elim", cl::init(true), cl::Hidden,
112 cl::desc("Enable the LoopLoadElimination Pass"));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000113
Rong Xu34abbfb2016-01-21 18:28:59 +0000114static cl::opt<std::string> RunPGOInstrGen(
115 "profile-generate", cl::init(""), cl::Hidden,
116 cl::desc("Enable generation phase of PGO instrumentation and specify the "
117 "path of profile data file"));
118
119static cl::opt<std::string> RunPGOInstrUse(
120 "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
121 cl::desc("Enable use phase of PGO instrumentation and specify the path "
122 "of profile data file"));
123
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000124static cl::opt<bool> UseLoopVersioningLICM(
125 "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
126 cl::desc("Enable the experimental Loop Versioning LICM pass"));
127
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000128PassManagerBuilder::PassManagerBuilder() {
129 OptLevel = 2;
130 SizeLevel = 0;
Craig Topperf40110f2014-04-25 05:29:35 +0000131 LibraryInfo = nullptr;
132 Inliner = nullptr;
Teresa Johnson26ab5772016-03-15 00:04:37 +0000133 ModuleSummary = nullptr;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000134 DisableUnitAtATime = false;
135 DisableUnrollLoops = false;
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000136 BBVectorize = RunBBVectorization;
Nadav Rotema1e5e442013-04-15 04:54:42 +0000137 SLPVectorize = RunSLPVectorization;
Nadav Rotemc59ae202012-10-29 16:36:25 +0000138 LoopVectorize = RunLoopVectorization;
Hal Finkel29aeb202013-11-17 16:02:50 +0000139 RerollLoops = RunLoopRerolling;
Michael J. Spencer289067c2014-05-29 01:55:07 +0000140 LoadCombine = RunLoadCombine;
Rafael Espindola208bc532014-08-21 13:13:17 +0000141 DisableGVNLoadPRE = false;
Rafael Espindola7cebf362014-08-21 20:03:44 +0000142 VerifyInput = false;
143 VerifyOutput = false;
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000144 MergeFunctions = false;
Teresa Johnsond3a33a12015-07-06 16:22:42 +0000145 PrepareForLTO = false;
Rong Xu34abbfb2016-01-21 18:28:59 +0000146 PGOInstrGen = RunPGOInstrGen;
147 PGOInstrUse = RunPGOInstrUse;
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000148 PrepareForThinLTO = false;
149 PerformThinLTO = false;
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000150}
151
152PassManagerBuilder::~PassManagerBuilder() {
153 delete LibraryInfo;
154 delete Inliner;
155}
156
David Chisnall719a72f2011-08-16 13:58:41 +0000157/// Set of global extensions, automatically added as part of the standard set.
158static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
159 PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
160
161void PassManagerBuilder::addGlobalExtension(
162 PassManagerBuilder::ExtensionPointTy Ty,
163 PassManagerBuilder::ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000164 GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
David Chisnall719a72f2011-08-16 13:58:41 +0000165}
166
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000167void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
Justin Lebar2fe13232016-03-30 20:39:29 +0000168 Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000169}
170
171void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
Chandler Carruth30d69c22015-02-13 10:01:29 +0000172 legacy::PassManagerBase &PM) const {
David Chisnall719a72f2011-08-16 13:58:41 +0000173 for (unsigned i = 0, e = GlobalExtensions->size(); i != e; ++i)
174 if ((*GlobalExtensions)[i].first == ETy)
175 (*GlobalExtensions)[i].second(*this, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000176 for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
177 if (Extensions[i].first == ETy)
178 Extensions[i].second(*this, PM);
179}
180
Chandler Carruth30d69c22015-02-13 10:01:29 +0000181void PassManagerBuilder::addInitialAliasAnalysisPasses(
182 legacy::PassManagerBase &PM) const {
George Burgess IVbfa401e2016-07-06 00:26:41 +0000183 switch (UseCFLAA) {
184 case CFLAAType::Steensgaard:
185 PM.add(createCFLSteensAAWrapperPass());
186 break;
187 case CFLAAType::Andersen:
188 PM.add(createCFLAndersAAWrapperPass());
189 break;
190 case CFLAAType::Both:
191 PM.add(createCFLSteensAAWrapperPass());
192 PM.add(createCFLAndersAAWrapperPass());
193 break;
194 default:
195 break;
196 }
197
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000198 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
199 // BasicAliasAnalysis wins if they disagree. This is intended to help
200 // support "obvious" type-punning idioms.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000201 PM.add(createTypeBasedAAWrapperPass());
202 PM.add(createScopedNoAliasAAWrapperPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000203}
204
Matthias Braunc31032d2016-03-09 18:47:11 +0000205void PassManagerBuilder::addInstructionCombiningPass(
206 legacy::PassManagerBase &PM) const {
207 bool ExpensiveCombines = OptLevel > 2;
208 PM.add(createInstructionCombiningPass(ExpensiveCombines));
209}
210
Chandler Carruth30d69c22015-02-13 10:01:29 +0000211void PassManagerBuilder::populateFunctionPassManager(
212 legacy::FunctionPassManager &FPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000213 addExtensionsToPM(EP_EarlyAsPossible, FPM);
214
215 // Add LibraryInfo if we have some.
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000216 if (LibraryInfo)
217 FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000218
219 if (OptLevel == 0) return;
220
221 addInitialAliasAnalysisPasses(FPM);
222
223 FPM.add(createCFGSimplificationPass());
David Majnemercbf614a2016-06-15 00:19:09 +0000224 FPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000225 FPM.add(createEarlyCSEPass());
Sebastian Pop41774802016-07-15 13:45:20 +0000226 FPM.add(createGVNHoistPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000227 FPM.add(createLowerExpectIntrinsicPass());
228}
229
Rong Xu34abbfb2016-01-21 18:28:59 +0000230// Do PGO instrumentation generation or use pass as the option specified.
231void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
232 if (!PGOInstrGen.empty()) {
Xinliang David Li8aebf442016-05-06 05:49:19 +0000233 MPM.add(createPGOInstrumentationGenLegacyPass());
Rong Xu34abbfb2016-01-21 18:28:59 +0000234 // Add the profile lowering pass.
235 InstrProfOptions Options;
236 Options.InstrProfileOutput = PGOInstrGen;
Xinliang David Lie6b89292016-04-18 17:47:38 +0000237 MPM.add(createInstrProfilingLegacyPass(Options));
Rong Xu34abbfb2016-01-21 18:28:59 +0000238 }
239 if (!PGOInstrUse.empty())
Xinliang David Lid55827f2016-05-07 05:39:12 +0000240 MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
Rong Xu34abbfb2016-01-21 18:28:59 +0000241}
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000242void PassManagerBuilder::addFunctionSimplificationPasses(
Mehdi Amini9c1c3ac2016-02-11 22:09:11 +0000243 legacy::PassManagerBase &MPM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000244 // Start of function pass.
245 // Break up aggregate allocas, using SSAUpdater.
David Majnemercbf614a2016-06-15 00:19:09 +0000246 MPM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000247 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Justin Lebarcf63b642016-04-15 00:32:12 +0000248 // Speculative execution if the target has divergent branches; otherwise nop.
249 MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000250 MPM.add(createJumpThreadingPass()); // Thread jumps.
251 MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
252 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000253 // Combine silly seq's
254 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000255 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000256
Akira Hatanakad9699bc2015-06-09 19:07:19 +0000257 MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000258 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
259 MPM.add(createReassociatePass()); // Reassociate expressions
Roman Divackyd2b9a1b2014-11-21 19:53:24 +0000260 // Rotate Loop - disable header duplication at -Oz
261 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000262 MPM.add(createLICMPass()); // Hoist loop invariants
263 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
Michael Zolotukhin74621cc2015-09-24 03:50:17 +0000264 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000265 addInstructionCombiningPass(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000266 MPM.add(createIndVarSimplifyPass()); // Canonicalize indvars
267 MPM.add(createLoopIdiomPass()); // Recognize idioms like memset.
268 MPM.add(createLoopDeletionPass()); // Delete dead loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000269 if (EnableLoopInterchange) {
Karthik Bhat88db86d2015-03-06 10:11:25 +0000270 MPM.add(createLoopInterchangePass()); // Interchange loops
Karthik Bhat8210fdf2015-04-23 04:51:44 +0000271 MPM.add(createCFGSimplificationPass());
272 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000273 if (!DisableUnrollLoops)
Hal Finkel86b30642014-03-31 23:23:51 +0000274 MPM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000275 addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
276
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000277 if (OptLevel > 1) {
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000278 if (EnableMLSM)
279 MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
Rafael Espindola208bc532014-08-21 13:13:17 +0000280 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
Gerolf Hoflehnerf27ae6c2014-07-18 19:13:09 +0000281 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000282 MPM.add(createMemCpyOptPass()); // Remove memcpy / form memset
283 MPM.add(createSCCPPass()); // Constant prop with SCCP
284
Hal Finkel2bb61ba2015-02-17 01:36:59 +0000285 // Delete dead bit computations (instcombine runs after to fold away the dead
286 // computations, and then ADCE will run later to exploit any new DCE
287 // opportunities that creates).
288 MPM.add(createBitTrackingDCEPass()); // Delete dead bit computations
289
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000290 // Run instcombine after redundancy elimination to exploit opportunities
291 // opened up by them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000292 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000293 addExtensionsToPM(EP_Peephole, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000294 MPM.add(createJumpThreadingPass()); // Thread jumps
295 MPM.add(createCorrelatedValuePropagationPass());
296 MPM.add(createDeadStoreEliminationPass()); // Delete dead stores
James Molloy83570242015-02-16 18:59:54 +0000297 MPM.add(createLICMPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000298
299 addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
300
Hal Finkel29aeb202013-11-17 16:02:50 +0000301 if (RerollLoops)
Hal Finkelbf45efd2013-11-16 23:59:05 +0000302 MPM.add(createLoopRerollPass());
James Molloy568da092014-08-06 12:56:19 +0000303 if (!RunSLPAfterLoopVectorization) {
304 if (SLPVectorize)
305 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Nadav Rotemd4dcc002013-04-15 05:39:58 +0000306
James Molloy568da092014-08-06 12:56:19 +0000307 if (BBVectorize) {
308 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000309 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000310 addExtensionsToPM(EP_Peephole, MPM);
311 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000312 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000313 else
314 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
Hal Finkelbf4db4f2013-01-29 00:22:49 +0000315
James Molloy568da092014-08-06 12:56:19 +0000316 // BBVectorize may have significantly shortened a loop body; unroll again.
317 if (!DisableUnrollLoops)
318 MPM.add(createLoopUnrollPass());
319 }
Hal Finkelc34e5112012-02-01 03:51:43 +0000320 }
321
Michael J. Spencer289067c2014-05-29 01:55:07 +0000322 if (LoadCombine)
323 MPM.add(createLoadCombinePass());
324
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000325 MPM.add(createAggressiveDCEPass()); // Delete dead instructions
Tom Stellardaa664d92013-08-06 02:43:45 +0000326 MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
Matthias Braunc31032d2016-03-09 18:47:11 +0000327 // Clean up after everything.
328 addInstructionCombiningPass(MPM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000329 addExtensionsToPM(EP_Peephole, MPM);
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000330}
331
332void PassManagerBuilder::populateModulePassManager(
333 legacy::PassManagerBase &MPM) {
334 // Allow forcing function attributes as a debugging and tuning aid.
335 MPM.add(createForceFunctionAttrsLegacyPass());
336
337 // If all optimizations are disabled, just run the always-inline pass and,
338 // if enabled, the function merging pass.
339 if (OptLevel == 0) {
340 addPGOInstrPasses(MPM);
341 if (Inliner) {
342 MPM.add(Inliner);
343 Inliner = nullptr;
344 }
345
346 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
347 // creates a CGSCC pass manager, but we don't want to add extensions into
348 // that pass manager. To prevent this we insert a no-op module pass to reset
349 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
350 // builds. The function merging pass is
351 if (MergeFunctions)
352 MPM.add(createMergeFunctionsPass());
353 else if (!GlobalExtensions->empty() || !Extensions.empty())
354 MPM.add(createBarrierNoopPass());
355
356 addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
357 return;
358 }
359
360 // Add LibraryInfo if we have some.
361 if (LibraryInfo)
362 MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
363
364 addInitialAliasAnalysisPasses(MPM);
365
366 if (!DisableUnitAtATime) {
367 // Infer attributes about declarations if possible.
368 MPM.add(createInferFunctionAttrsLegacyPass());
369
370 addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
371
372 MPM.add(createIPSCCPPass()); // IP SCCP
373 MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
374 // Promote any localized global vars.
375 MPM.add(createPromoteMemoryToRegisterPass());
376
377 MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
378
Matthias Braunc31032d2016-03-09 18:47:11 +0000379 addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000380 addExtensionsToPM(EP_Peephole, MPM);
381 MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
382 }
383
Rong Xu6e34c492016-04-27 23:20:27 +0000384 if (!PerformThinLTO) {
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000385 /// PGO instrumentation is added during the compile phase for ThinLTO, do
386 /// not run it a second time
387 addPGOInstrPasses(MPM);
Rong Xu6e34c492016-04-27 23:20:27 +0000388 // Indirect call promotion that promotes intra-module targets only.
Xinliang David Li72616182016-05-15 01:04:24 +0000389 MPM.add(createPGOIndirectCallPromotionLegacyPass());
Rong Xu6e34c492016-04-27 23:20:27 +0000390 }
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000391
392 if (EnableNonLTOGlobalsModRef)
393 // We add a module alias analysis pass here. In part due to bugs in the
394 // analysis infrastructure this "works" in that the analysis stays alive
395 // for the entire SCC pass run below.
396 MPM.add(createGlobalsAAWrapperPass());
397
398 // Start of CallGraph SCC passes.
399 if (!DisableUnitAtATime)
400 MPM.add(createPruneEHPass()); // Remove dead EH info
401 if (Inliner) {
402 MPM.add(Inliner);
403 Inliner = nullptr;
404 }
405 if (!DisableUnitAtATime)
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000406 MPM.add(createPostOrderFunctionAttrsLegacyPass());
Mehdi Aminiec8bee12016-02-16 22:54:27 +0000407 if (OptLevel > 2)
408 MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
409
410 addFunctionSimplificationPasses(MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000411
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000412 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
413 // pass manager that we are specifically trying to avoid. To prevent this
414 // we must insert a no-op module pass to reset the pass manager.
415 MPM.add(createBarrierNoopPass());
416
Mehdi Amini7f7d8be2016-05-03 15:46:00 +0000417 if (!DisableUnitAtATime && OptLevel > 1 && !PrepareForLTO &&
418 !PrepareForThinLTO)
419 // Remove avail extern fns and globals definitions if we aren't
420 // compiling an object file for later LTO. For LTO we want to preserve
421 // these so they are eligible for inlining at link-time. Note if they
422 // are unreferenced they will be removed by GlobalDCE later, so
423 // this only impacts referenced available externally globals.
424 // Eventually they will be suppressed during codegen, but eliminating
425 // here enables more opportunity for GlobalDCE as it may make
426 // globals referenced by available external functions dead
427 // and saves running remaining passes on the eliminated functions.
428 MPM.add(createEliminateAvailableExternallyPass());
429
Mehdi Amini45c7b3e2016-05-02 16:53:16 +0000430 if (!DisableUnitAtATime)
431 MPM.add(createReversePostOrderFunctionAttrsPass());
432
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000433 // If we are planning to perform ThinLTO later, let's not bloat the code with
434 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
435 // during ThinLTO and perform the rest of the optimizations afterward.
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000436 if (PrepareForThinLTO) {
Mehdi Aminibf4513b2016-04-25 08:47:49 +0000437 // Reduce the size of the IR as much as possible.
438 MPM.add(createGlobalOptimizerPass());
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000439 // Rename anon function to be able to export them in the summary.
440 MPM.add(createNameAnonFunctionPass());
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000441 return;
Mehdi Aminif72ca86b2016-04-25 08:47:37 +0000442 }
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000443
Mehdi Amini31407ba2016-05-06 18:17:03 +0000444 if (PerformThinLTO)
445 // Optimize globals now when performing ThinLTO, this enables more
446 // optimizations later.
447 MPM.add(createGlobalOptimizerPass());
448
Ashutosh Nema2260a3a2016-02-11 09:23:53 +0000449 // Scheduling LoopVersioningLICM when inlining is over, because after that
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000450 // we may see more accurate aliasing. Reason to run this late is that too
451 // early versioning may prevent further inlining due to increase of code
Mehdi Amini31407ba2016-05-06 18:17:03 +0000452 // size. By placing it just after inlining other optimizations which runs
453 // later might get benefit of no-alias assumption in clone loop.
Ashutosh Nemadf6763a2016-02-06 07:47:48 +0000454 if (UseLoopVersioningLICM) {
455 MPM.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
456 MPM.add(createLICMPass()); // Hoist loop invariants
457 }
458
Chandler Carruth08eebe22015-07-23 09:34:01 +0000459 if (EnableNonLTOGlobalsModRef)
460 // We add a fresh GlobalsModRef run at this point. This is particularly
461 // useful as the above will have inlined, DCE'ed, and function-attr
462 // propagated everything. We should at this point have a reasonably minimal
463 // and richly annotated call graph. By computing aliasing and mod/ref
464 // information for all local globals here, the late loop passes and notably
465 // the vectorizer will be able to use them to help recognize vectorizable
466 // memory operations.
467 //
468 // Note that this relies on a bug in the pass manager which preserves
469 // a module analysis into a function pass pipeline (and throughout it) so
470 // long as the first function pass doesn't invalidate the module analysis.
471 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
472 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
473 // (doing nothing preserves it as it is required to be conservatively
474 // correct in the face of IR changes).
Chandler Carruth7b560d42015-09-09 17:55:00 +0000475 MPM.add(createGlobalsAAWrapperPass());
Chandler Carruth08eebe22015-07-23 09:34:01 +0000476
James Molloy0cbb2a862015-03-27 10:36:57 +0000477 if (RunFloat2Int)
478 MPM.add(createFloat2IntPass());
479
Tobias Grosser39a7bd12015-07-16 08:20:37 +0000480 addExtensionsToPM(EP_VectorizerStart, MPM);
481
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000482 // Re-rotate loops in all our loop nests. These may have fallout out of
483 // rotated form due to GVN or other transformations, and the vectorizer relies
Alexey Bataevda33d802015-07-10 10:37:09 +0000484 // on the rotated form. Disable header duplication at -Oz.
485 MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000486
Adam Nemet938d3d62015-05-14 12:05:18 +0000487 // Distribute loops to allow partial vectorization. I.e. isolate dependences
Adam Nemetd2fa4142016-04-27 05:28:18 +0000488 // into separate loop that would otherwise inhibit vectorization. This is
489 // currently only performed for loops marked with the metadata
490 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
491 MPM.add(createLoopDistributePass(/*ProcessAllLoopsByDefault=*/false));
Adam Nemet938d3d62015-05-14 12:05:18 +0000492
Renato Golin729a3ae2013-12-05 21:20:02 +0000493 MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
Adam Nemete54a4fa2015-11-03 23:50:08 +0000494
495 // Eliminate loads by forwarding stores from the previous iteration to loads
496 // of the current iteration.
497 if (EnableLoopLoadElim)
498 MPM.add(createLoopLoadEliminationPass());
499
Renato Golin729a3ae2013-12-05 21:20:02 +0000500 // FIXME: Because of #pragma vectorize enable, the passes below are always
501 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
502 // on -O1 and no #pragma is found). Would be good to have these two passes
503 // as function calls, so that we can only pass them when the vectorizer
504 // changed the code.
Matthias Braunc31032d2016-03-09 18:47:11 +0000505 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000506 if (OptLevel > 1 && ExtraVectorizerPasses) {
507 // At higher optimization levels, try to clean up any runtime overlap and
508 // alignment checks inserted by the vectorizer. We want to track correllated
509 // runtime checks for two inner loops in the same outer loop, fold any
510 // common computations, hoist loop-invariant aspects out of any outer loop,
511 // and unswitch the runtime checks if possible. Once hoisted, we may have
512 // dead (or speculatable) control flows or more combining opportunities.
513 MPM.add(createEarlyCSEPass());
514 MPM.add(createCorrelatedValuePropagationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000515 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000516 MPM.add(createLICMPass());
517 MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3));
518 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000519 addInstructionCombiningPass(MPM);
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000520 }
James Molloy568da092014-08-06 12:56:19 +0000521
522 if (RunSLPAfterLoopVectorization) {
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000523 if (SLPVectorize) {
James Molloy568da092014-08-06 12:56:19 +0000524 MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Chandler Carruth7b8297a2014-10-14 00:31:29 +0000525 if (OptLevel > 1 && ExtraVectorizerPasses) {
526 MPM.add(createEarlyCSEPass());
527 }
528 }
James Molloy568da092014-08-06 12:56:19 +0000529
530 if (BBVectorize) {
531 MPM.add(createBBVectorizePass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000532 addInstructionCombiningPass(MPM);
James Molloy568da092014-08-06 12:56:19 +0000533 addExtensionsToPM(EP_Peephole, MPM);
534 if (OptLevel > 1 && UseGVNAfterVectorization)
Rafael Espindola208bc532014-08-21 13:13:17 +0000535 MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
James Molloy568da092014-08-06 12:56:19 +0000536 else
537 MPM.add(createEarlyCSEPass()); // Catch trivial redundancies
538
539 // BBVectorize may have significantly shortened a loop body; unroll again.
540 if (!DisableUnrollLoops)
541 MPM.add(createLoopUnrollPass());
542 }
543 }
544
Peter Collingbourne0a437612014-05-25 10:27:02 +0000545 addExtensionsToPM(EP_Peephole, MPM);
Renato Golin729a3ae2013-12-05 21:20:02 +0000546 MPM.add(createCFGSimplificationPass());
Matthias Braunc31032d2016-03-09 18:47:11 +0000547 addInstructionCombiningPass(MPM);
Chandler Carruth08e1b872013-06-24 07:21:47 +0000548
Kevin Qin49bc7642015-03-12 05:36:01 +0000549 if (!DisableUnrollLoops) {
Hal Finkel86b30642014-03-31 23:23:51 +0000550 MPM.add(createLoopUnrollPass()); // Unroll small loops
551
Wei Mibf727ba2015-05-14 22:02:54 +0000552 // LoopUnroll may generate some redundency to cleanup.
Matthias Braunc31032d2016-03-09 18:47:11 +0000553 addInstructionCombiningPass(MPM);
Wei Mibf727ba2015-05-14 22:02:54 +0000554
Kevin Qin49bc7642015-03-12 05:36:01 +0000555 // Runtime unrolling will introduce runtime check in loop prologue. If the
556 // unrolled loop is a inner loop, then the prologue will be inside the
557 // outer loop. LICM pass can help to promote the runtime check out if the
558 // checked value is loop invariant.
559 MPM.add(createLICMPass());
Manuel Jacoba4859842016-06-02 22:14:26 +0000560
561 // Get rid of LCSSA nodes.
562 MPM.add(createInstructionSimplifierPass());
Kevin Qin49bc7642015-03-12 05:36:01 +0000563 }
564
Hal Finkeld67e4632014-09-07 20:05:11 +0000565 // After vectorization and unrolling, assume intrinsics may tell us more
566 // about pointer alignments.
567 MPM.add(createAlignmentFromAssumptionsPass());
568
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000569 if (!DisableUnitAtATime) {
570 // FIXME: We shouldn't bother with this anymore.
571 MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
572
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000573 // GlobalOpt already deletes dead functions and globals, at -O2 try a
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000574 // late pass of GlobalDCE. It is capable of deleting dead cycles.
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000575 if (OptLevel > 1) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000576 MPM.add(createGlobalDCEPass()); // Remove dead fns and globals.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000577 MPM.add(createConstantMergePass()); // Merge dup global constants
Evan Cheng8c6b06d2012-09-28 21:23:26 +0000578 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000579 }
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000580
581 if (MergeFunctions)
582 MPM.add(createMergeFunctionsPass());
583
Kostya Serebryanye505a5a2012-03-23 23:22:59 +0000584 addExtensionsToPM(EP_OptimizerLast, MPM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000585}
586
Chandler Carruth30d69c22015-02-13 10:01:29 +0000587void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
Peter Collingbournefad596a2016-05-25 21:26:14 +0000588 // Remove unused virtual tables to improve the quality of code generated by
589 // whole-program devirtualization and bitset lowering.
590 PM.add(createGlobalDCEPass());
591
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000592 // Provide AliasAnalysis services for optimizations.
593 addInitialAliasAnalysisPasses(PM);
594
Teresa Johnson26ab5772016-03-15 00:04:37 +0000595 if (ModuleSummary)
596 PM.add(createFunctionImportPass(ModuleSummary));
Teresa Johnson5fcbdb72015-12-07 19:21:11 +0000597
Chandler Carruthf49f1a872015-12-27 08:13:45 +0000598 // Allow forcing function attributes as a debugging and tuning aid.
599 PM.add(createForceFunctionAttrsLegacyPass());
600
Chandler Carruth3a040e62015-12-27 08:41:34 +0000601 // Infer attributes about declarations if possible.
602 PM.add(createInferFunctionAttrsLegacyPass());
603
Peter Collingbournefad596a2016-05-25 21:26:14 +0000604 if (OptLevel > 1) {
605 // Indirect call promotion. This should promote all the targets that are
606 // left by the earlier promotion pass that promotes intra-module targets.
607 // This two-step promotion is to save the compile time. For LTO, it should
608 // produce the same result as if we only do promotion here.
609 PM.add(createPGOIndirectCallPromotionLegacyPass(true));
Rong Xu6e34c492016-04-27 23:20:27 +0000610
Peter Collingbournefad596a2016-05-25 21:26:14 +0000611 // Propagate constants at call sites into the functions they call. This
612 // opens opportunities for globalopt (and inlining) by substituting function
613 // pointers passed as arguments to direct uses of functions.
614 PM.add(createIPSCCPPass());
615 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000616
Peter Collingbournefad596a2016-05-25 21:26:14 +0000617 // Infer attributes about definitions. The readnone attribute in particular is
618 // required for virtual constant propagation.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000619 PM.add(createPostOrderFunctionAttrsLegacyPass());
Chandler Carruth1926b702016-01-08 10:55:52 +0000620 PM.add(createReversePostOrderFunctionAttrsPass());
Peter Collingbournefad596a2016-05-25 21:26:14 +0000621
622 // Apply whole-program devirtualization and virtual constant propagation.
623 PM.add(createWholeProgramDevirtPass());
624
625 // That's all we need at opt level 1.
626 if (OptLevel == 1)
627 return;
628
629 // Now that we internalized some globals, see if we can hack on them!
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000630 PM.add(createGlobalOptimizerPass());
James Molloy6045cc82015-12-15 09:24:01 +0000631 // Promote any localized global vars.
632 PM.add(createPromoteMemoryToRegisterPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000633
634 // Linking modules together can lead to duplicated global constants, only
635 // keep one copy of each constant.
636 PM.add(createConstantMergePass());
637
638 // Remove unused arguments from functions.
639 PM.add(createDeadArgEliminationPass());
640
641 // Reduce the code after globalopt and ipsccp. Both can open up significant
642 // simplification opportunities, and both can propagate functions through
643 // function pointers. When this happens, we often have to resolve varargs
644 // calls, etc, so let instcombine do this.
Matthias Braunc31032d2016-03-09 18:47:11 +0000645 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000646 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000647
648 // Inline small functions
Rafael Espindolae07caad2014-08-21 13:35:30 +0000649 bool RunInliner = Inliner;
650 if (RunInliner) {
651 PM.add(Inliner);
652 Inliner = nullptr;
653 }
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000654
655 PM.add(createPruneEHPass()); // Remove dead EH info.
656
657 // Optimize globals again if we ran the inliner.
658 if (RunInliner)
659 PM.add(createGlobalOptimizerPass());
660 PM.add(createGlobalDCEPass()); // Remove dead functions.
661
662 // If we didn't decide to inline a function, check to see if we can
663 // transform it to pass arguments by value instead of by reference.
664 PM.add(createArgumentPromotionPass());
665
666 // The IPO passes may leave cruft around. Clean up after them.
Matthias Braunc31032d2016-03-09 18:47:11 +0000667 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000668 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000669 PM.add(createJumpThreadingPass());
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000670
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000671 // Break up allocas
David Majnemercbf614a2016-06-15 00:19:09 +0000672 PM.add(createSROAPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000673
674 // Run a few AA driven optimizations here and now, to cleanup the code.
Chandler Carruth9c4ed172016-02-18 11:03:11 +0000675 PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
Chandler Carruth7b560d42015-09-09 17:55:00 +0000676 PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000677
Bill Wendling932b9922012-04-02 22:16:50 +0000678 PM.add(createLICMPass()); // Hoist loop invariants.
Gerolf Hoflehner24815d92014-09-10 19:55:29 +0000679 if (EnableMLSM)
680 PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
Bill Wendling932b9922012-04-02 22:16:50 +0000681 PM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
682 PM.add(createMemCpyOptPass()); // Remove dead memcpys.
Bill Wendling4c0d9ad2013-08-30 00:48:37 +0000683
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000684 // Nuke dead stores.
685 PM.add(createDeadStoreEliminationPass());
686
Duncan P. N. Exon Smith2b691892014-04-15 17:48:15 +0000687 // More loops are countable; try to optimize them.
688 PM.add(createIndVarSimplifyPass());
689 PM.add(createLoopDeletionPass());
Karthik Bhat88db86d2015-03-06 10:11:25 +0000690 if (EnableLoopInterchange)
691 PM.add(createLoopInterchangePass());
692
James Molloy31f3ddd2016-01-14 15:00:09 +0000693 if (!DisableUnrollLoops)
694 PM.add(createSimpleLoopUnrollPass()); // Unroll small loops
Arnold Schwaighofereb1a38f2014-10-26 21:50:58 +0000695 PM.add(createLoopVectorizePass(true, LoopVectorize));
James Molloy31f3ddd2016-01-14 15:00:09 +0000696 // The vectorizer may have significantly shortened a loop body; unroll again.
697 if (!DisableUnrollLoops)
698 PM.add(createLoopUnrollPass());
Arnold Schwaighofer6ccda922014-02-24 18:19:31 +0000699
James Molloy6045cc82015-12-15 09:24:01 +0000700 // Now that we've optimized loops (in particular loop induction variables),
701 // we may have exposed more scalar opportunities. Run parts of the scalar
702 // optimizer again at this point.
Matthias Braunc31032d2016-03-09 18:47:11 +0000703 addInstructionCombiningPass(PM); // Initial cleanup
James Molloy6045cc82015-12-15 09:24:01 +0000704 PM.add(createCFGSimplificationPass()); // if-convert
705 PM.add(createSCCPPass()); // Propagate exposed constants
Matthias Braunc31032d2016-03-09 18:47:11 +0000706 addInstructionCombiningPass(PM); // Clean up again
James Molloy6045cc82015-12-15 09:24:01 +0000707 PM.add(createBitTrackingDCEPass());
708
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000709 // More scalar chains could be vectorized due to more alias information
JF Bastienf42a6ea2014-10-21 23:18:21 +0000710 if (RunSLPAfterLoopVectorization)
711 if (SLPVectorize)
712 PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
Yi Jiang79eb0aa2014-05-05 23:14:46 +0000713
Hal Finkeld67e4632014-09-07 20:05:11 +0000714 // After vectorization, assume intrinsics may tell us more about pointer
715 // alignments.
716 PM.add(createAlignmentFromAssumptionsPass());
717
Michael J. Spencer289067c2014-05-29 01:55:07 +0000718 if (LoadCombine)
719 PM.add(createLoadCombinePass());
720
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000721 // Cleanup and simplify the code after the scalar optimizations.
Matthias Braunc31032d2016-03-09 18:47:11 +0000722 addInstructionCombiningPass(PM);
Peter Collingbourne0a437612014-05-25 10:27:02 +0000723 addExtensionsToPM(EP_Peephole, PM);
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000724
725 PM.add(createJumpThreadingPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000726}
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000727
Peter Collingbourne070843d2015-03-19 22:01:00 +0000728void PassManagerBuilder::addLateLTOOptimizationPasses(
729 legacy::PassManagerBase &PM) {
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000730 // Delete basic blocks, which optimization passes may have killed.
Tom Stellardaa664d92013-08-06 02:43:45 +0000731 PM.add(createCFGSimplificationPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000732
Teresa Johnsonc4279a72015-08-11 16:26:41 +0000733 // Drop bodies of available externally objects to improve GlobalDCE.
734 PM.add(createEliminateAvailableExternallyPass());
735
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000736 // Now that we have optimized the program, discard unreachable functions.
737 PM.add(createGlobalDCEPass());
Nick Lewycky9e6d1842014-09-13 21:46:00 +0000738
739 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
740 // currently it damages debug info.
741 if (MergeFunctions)
742 PM.add(createMergeFunctionsPass());
Rafael Espindola3ea478b2011-08-02 21:50:27 +0000743}
Rafael Espindola07f609152011-08-09 22:17:34 +0000744
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000745void PassManagerBuilder::populateThinLTOPassManager(
746 legacy::PassManagerBase &PM) {
747 PerformThinLTO = true;
748
749 if (VerifyInput)
750 PM.add(createVerifierPass());
751
Teresa Johnson26ab5772016-03-15 00:04:37 +0000752 if (ModuleSummary)
753 PM.add(createFunctionImportPass(ModuleSummary));
Mehdi Amini1db10ac2016-02-16 23:02:29 +0000754
755 populateModulePassManager(PM);
756
757 if (VerifyOutput)
758 PM.add(createVerifierPass());
759 PerformThinLTO = false;
760}
761
Chandler Carruth30d69c22015-02-13 10:01:29 +0000762void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
Rafael Espindola7cebf362014-08-21 20:03:44 +0000763 if (LibraryInfo)
Chandler Carruthb98f63d2015-01-15 10:41:28 +0000764 PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
Rafael Espindola7cebf362014-08-21 20:03:44 +0000765
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000766 if (VerifyInput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000767 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000768
Peter Collingbournedf49d1b2016-02-09 22:50:34 +0000769 if (OptLevel != 0)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000770 addLTOOptimizationPasses(PM);
771
Evgeniy Stepanov67849d52015-12-15 23:00:08 +0000772 // Create a function that performs CFI checks for cross-DSO calls with targets
773 // in the current module.
774 PM.add(createCrossDSOCFIPass());
775
Peter Collingbourne7efd7502016-06-24 21:21:32 +0000776 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
777 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
778 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
779 PM.add(createLowerTypeTestsPass());
Peter Collingbourne070843d2015-03-19 22:01:00 +0000780
781 if (OptLevel != 0)
782 addLateLTOOptimizationPasses(PM);
783
Duncan P. N. Exon Smithab58a562015-03-19 22:24:17 +0000784 if (VerifyOutput)
Rafael Espindola7cebf362014-08-21 20:03:44 +0000785 PM.add(createVerifierPass());
Rafael Espindola7cebf362014-08-21 20:03:44 +0000786}
787
Eric Christopher04d4e932013-04-22 22:47:22 +0000788inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
789 return reinterpret_cast<PassManagerBuilder*>(P);
790}
791
792inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
793 return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
794}
795
Dmitri Gribenko0011bbf2012-11-15 16:51:49 +0000796LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
Rafael Espindola07f609152011-08-09 22:17:34 +0000797 PassManagerBuilder *PMB = new PassManagerBuilder();
798 return wrap(PMB);
799}
800
801void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
802 PassManagerBuilder *Builder = unwrap(PMB);
803 delete Builder;
804}
805
806void
807LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
808 unsigned OptLevel) {
809 PassManagerBuilder *Builder = unwrap(PMB);
810 Builder->OptLevel = OptLevel;
811}
812
813void
814LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
815 unsigned SizeLevel) {
816 PassManagerBuilder *Builder = unwrap(PMB);
817 Builder->SizeLevel = SizeLevel;
818}
819
820void
821LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
822 LLVMBool Value) {
823 PassManagerBuilder *Builder = unwrap(PMB);
824 Builder->DisableUnitAtATime = Value;
825}
826
827void
828LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
829 LLVMBool Value) {
830 PassManagerBuilder *Builder = unwrap(PMB);
831 Builder->DisableUnrollLoops = Value;
832}
833
834void
835LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
836 LLVMBool Value) {
Meador Ingedfb08a22013-06-20 19:48:07 +0000837 // NOTE: The simplify-libcalls pass has been removed.
Rafael Espindola07f609152011-08-09 22:17:34 +0000838}
839
840void
841LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
842 unsigned Threshold) {
843 PassManagerBuilder *Builder = unwrap(PMB);
844 Builder->Inliner = createFunctionInliningPass(Threshold);
845}
846
847void
848LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
849 LLVMPassManagerRef PM) {
850 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000851 legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000852 Builder->populateFunctionPassManager(*FPM);
853}
854
855void
856LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
857 LLVMPassManagerRef PM) {
858 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000859 legacy::PassManagerBase *MPM = unwrap(PM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000860 Builder->populateModulePassManager(*MPM);
861}
862
863void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
864 LLVMPassManagerRef PM,
Nick Lewycky5f508542013-03-10 21:58:22 +0000865 LLVMBool Internalize,
866 LLVMBool RunInliner) {
Rafael Espindola07f609152011-08-09 22:17:34 +0000867 PassManagerBuilder *Builder = unwrap(PMB);
Chandler Carruth30d69c22015-02-13 10:01:29 +0000868 legacy::PassManagerBase *LPM = unwrap(PM);
Rafael Espindolae07caad2014-08-21 13:35:30 +0000869
870 // A small backwards compatibility hack. populateLTOPassManager used to take
871 // an RunInliner option.
872 if (RunInliner && !Builder->Inliner)
873 Builder->Inliner = createFunctionInliningPass();
874
875 Builder->populateLTOPassManager(*LPM);
Rafael Espindola07f609152011-08-09 22:17:34 +0000876}