1 //===- 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 
15 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
16 #include "llvm-c/Transforms/PassManagerBuilder.h"
17 #include "llvm/ADT/SmallVector.h"
18 #include "llvm/Analysis/BasicAliasAnalysis.h"
19 #include "llvm/Analysis/CFLAndersAliasAnalysis.h"
20 #include "llvm/Analysis/CFLSteensAliasAnalysis.h"
21 #include "llvm/Analysis/GlobalsModRef.h"
22 #include "llvm/Analysis/InlineCost.h"
23 #include "llvm/Analysis/Passes.h"
24 #include "llvm/Analysis/ScopedNoAliasAA.h"
25 #include "llvm/Analysis/TargetLibraryInfo.h"
26 #include "llvm/Analysis/TypeBasedAliasAnalysis.h"
27 #include "llvm/IR/DataLayout.h"
28 #include "llvm/IR/LegacyPassManager.h"
29 #include "llvm/IR/ModuleSummaryIndex.h"
30 #include "llvm/IR/Verifier.h"
31 #include "llvm/Support/CommandLine.h"
32 #include "llvm/Support/ManagedStatic.h"
33 #include "llvm/Target/TargetMachine.h"
34 #include "llvm/Transforms/IPO.h"
35 #include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
36 #include "llvm/Transforms/IPO/FunctionAttrs.h"
37 #include "llvm/Transforms/IPO/InferFunctionAttrs.h"
38 #include "llvm/Transforms/Instrumentation.h"
39 #include "llvm/Transforms/Scalar.h"
40 #include "llvm/Transforms/Scalar/GVN.h"
41 #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
42 #include "llvm/Transforms/Vectorize.h"
43 
44 using namespace llvm;
45 
46 static cl::opt<bool>
47     RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden,
48                        cl::ZeroOrMore, cl::desc("Run Partial inlinining pass"));
49 
50 static cl::opt<bool>
51     RunLoopVectorization("vectorize-loops", cl::Hidden,
52                          cl::desc("Run the Loop vectorization passes"));
53 
54 static cl::opt<bool>
55 RunSLPVectorization("vectorize-slp", cl::Hidden,
56                     cl::desc("Run the SLP vectorization passes"));
57 
58 static cl::opt<bool>
59 UseGVNAfterVectorization("use-gvn-after-vectorization",
60   cl::init(false), cl::Hidden,
61   cl::desc("Run GVN instead of Early CSE after vectorization passes"));
62 
63 static cl::opt<bool> ExtraVectorizerPasses(
64     "extra-vectorizer-passes", cl::init(false), cl::Hidden,
65     cl::desc("Run cleanup optimization passes after vectorization."));
66 
67 static cl::opt<bool>
68 RunLoopRerolling("reroll-loops", cl::Hidden,
69                  cl::desc("Run the loop rerolling pass"));
70 
71 static cl::opt<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden,
72                                cl::desc("Run the NewGVN pass"));
73 
74 static cl::opt<bool>
75 RunSLPAfterLoopVectorization("run-slp-after-loop-vectorization",
76   cl::init(true), cl::Hidden,
77   cl::desc("Run the SLP vectorizer (and BB vectorizer) after the Loop "
78            "vectorizer instead of before"));
79 
80 // Experimental option to use CFL-AA
81 enum class CFLAAType { None, Steensgaard, Andersen, Both };
82 static cl::opt<CFLAAType>
83     UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None), cl::Hidden,
84              cl::desc("Enable the new, experimental CFL alias analysis"),
85              cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
86                         clEnumValN(CFLAAType::Steensgaard, "steens",
87                                    "Enable unification-based CFL-AA"),
88                         clEnumValN(CFLAAType::Andersen, "anders",
89                                    "Enable inclusion-based CFL-AA"),
90                         clEnumValN(CFLAAType::Both, "both",
91                                    "Enable both variants of CFL-AA")));
92 
93 static cl::opt<bool> EnableLoopInterchange(
94     "enable-loopinterchange", cl::init(false), cl::Hidden,
95     cl::desc("Enable the new, experimental LoopInterchange Pass"));
96 
97 static cl::opt<bool>
98     EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden,
99                             cl::desc("Enable preparation for ThinLTO."));
100 
101 static cl::opt<bool> RunPGOInstrGen(
102     "profile-generate", cl::init(false), cl::Hidden,
103     cl::desc("Enable PGO instrumentation."));
104 
105 static cl::opt<std::string>
106     PGOOutputFile("profile-generate-file", cl::init(""), cl::Hidden,
107                       cl::desc("Specify the path of profile data file."));
108 
109 static cl::opt<std::string> RunPGOInstrUse(
110     "profile-use", cl::init(""), cl::Hidden, cl::value_desc("filename"),
111     cl::desc("Enable use phase of PGO instrumentation and specify the path "
112              "of profile data file"));
113 
114 static cl::opt<bool> UseLoopVersioningLICM(
115     "enable-loop-versioning-licm", cl::init(false), cl::Hidden,
116     cl::desc("Enable the experimental Loop Versioning LICM pass"));
117 
118 static cl::opt<bool>
119     DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden,
120                       cl::desc("Disable pre-instrumentation inliner"));
121 
122 static cl::opt<int> PreInlineThreshold(
123     "preinline-threshold", cl::Hidden, cl::init(75), cl::ZeroOrMore,
124     cl::desc("Control the amount of inlining in pre-instrumentation inliner "
125              "(default = 75)"));
126 
127 static cl::opt<bool> EnableEarlyCSEMemSSA(
128     "enable-earlycse-memssa", cl::init(true), cl::Hidden,
129     cl::desc("Enable the EarlyCSE w/ MemorySSA pass (default = on)"));
130 
131 static cl::opt<bool> EnableGVNHoist(
132     "enable-gvn-hoist", cl::init(false), cl::Hidden,
133     cl::desc("Enable the GVN hoisting pass (default = off)"));
134 
135 static cl::opt<bool>
136     DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
137                               cl::Hidden,
138                               cl::desc("Disable shrink-wrap library calls"));
139 
140 static cl::opt<bool>
141     EnableSimpleLoopUnswitch("enable-simple-loop-unswitch", cl::init(false),
142                              cl::Hidden,
143                              cl::desc("Enable the simple loop unswitch pass."));
144 
145 static cl::opt<bool> EnableGVNSink(
146     "enable-gvn-sink", cl::init(false), cl::Hidden,
147     cl::desc("Enable the GVN sinking pass (default = off)"));
148 
149 PassManagerBuilder::PassManagerBuilder() {
150     OptLevel = 2;
151     SizeLevel = 0;
152     LibraryInfo = nullptr;
153     Inliner = nullptr;
154     DisableUnrollLoops = false;
155     SLPVectorize = RunSLPVectorization;
156     LoopVectorize = RunLoopVectorization;
157     RerollLoops = RunLoopRerolling;
158     NewGVN = RunNewGVN;
159     DisableGVNLoadPRE = false;
160     VerifyInput = false;
161     VerifyOutput = false;
162     MergeFunctions = false;
163     PrepareForLTO = false;
164     EnablePGOInstrGen = RunPGOInstrGen;
165     PGOInstrGen = PGOOutputFile;
166     PGOInstrUse = RunPGOInstrUse;
167     PrepareForThinLTO = EnablePrepareForThinLTO;
168     PerformThinLTO = false;
169     DivergentTarget = false;
170 }
171 
172 PassManagerBuilder::~PassManagerBuilder() {
173   delete LibraryInfo;
174   delete Inliner;
175 }
176 
177 /// Set of global extensions, automatically added as part of the standard set.
178 static ManagedStatic<SmallVector<std::pair<PassManagerBuilder::ExtensionPointTy,
179    PassManagerBuilder::ExtensionFn>, 8> > GlobalExtensions;
180 
181 /// Check if GlobalExtensions is constructed and not empty.
182 /// Since GlobalExtensions is a managed static, calling 'empty()' will trigger
183 /// the construction of the object.
184 static bool GlobalExtensionsNotEmpty() {
185   return GlobalExtensions.isConstructed() && !GlobalExtensions->empty();
186 }
187 
188 void PassManagerBuilder::addGlobalExtension(
189     PassManagerBuilder::ExtensionPointTy Ty,
190     PassManagerBuilder::ExtensionFn Fn) {
191   GlobalExtensions->push_back(std::make_pair(Ty, std::move(Fn)));
192 }
193 
194 void PassManagerBuilder::addExtension(ExtensionPointTy Ty, ExtensionFn Fn) {
195   Extensions.push_back(std::make_pair(Ty, std::move(Fn)));
196 }
197 
198 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy,
199                                            legacy::PassManagerBase &PM) const {
200   if (GlobalExtensionsNotEmpty()) {
201     for (auto &Ext : *GlobalExtensions) {
202       if (Ext.first == ETy)
203         Ext.second(*this, PM);
204     }
205   }
206   for (unsigned i = 0, e = Extensions.size(); i != e; ++i)
207     if (Extensions[i].first == ETy)
208       Extensions[i].second(*this, PM);
209 }
210 
211 void PassManagerBuilder::addInitialAliasAnalysisPasses(
212     legacy::PassManagerBase &PM) const {
213   switch (UseCFLAA) {
214   case CFLAAType::Steensgaard:
215     PM.add(createCFLSteensAAWrapperPass());
216     break;
217   case CFLAAType::Andersen:
218     PM.add(createCFLAndersAAWrapperPass());
219     break;
220   case CFLAAType::Both:
221     PM.add(createCFLSteensAAWrapperPass());
222     PM.add(createCFLAndersAAWrapperPass());
223     break;
224   default:
225     break;
226   }
227 
228   // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
229   // BasicAliasAnalysis wins if they disagree. This is intended to help
230   // support "obvious" type-punning idioms.
231   PM.add(createTypeBasedAAWrapperPass());
232   PM.add(createScopedNoAliasAAWrapperPass());
233 }
234 
235 void PassManagerBuilder::addInstructionCombiningPass(
236     legacy::PassManagerBase &PM) const {
237   bool ExpensiveCombines = OptLevel > 2;
238   PM.add(createInstructionCombiningPass(ExpensiveCombines));
239 }
240 
241 void PassManagerBuilder::populateFunctionPassManager(
242     legacy::FunctionPassManager &FPM) {
243   addExtensionsToPM(EP_EarlyAsPossible, FPM);
244 
245   // Add LibraryInfo if we have some.
246   if (LibraryInfo)
247     FPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
248 
249   if (OptLevel == 0) return;
250 
251   addInitialAliasAnalysisPasses(FPM);
252 
253   FPM.add(createCFGSimplificationPass());
254   FPM.add(createSROAPass());
255   FPM.add(createEarlyCSEPass());
256   FPM.add(createLowerExpectIntrinsicPass());
257 }
258 
259 // Do PGO instrumentation generation or use pass as the option specified.
260 void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase &MPM) {
261   if (!EnablePGOInstrGen && PGOInstrUse.empty() && PGOSampleUse.empty())
262     return;
263   // Perform the preinline and cleanup passes for O1 and above.
264   // And avoid doing them if optimizing for size.
265   if (OptLevel > 0 && SizeLevel == 0 && !DisablePreInliner &&
266       PGOSampleUse.empty()) {
267     // Create preinline pass. We construct an InlineParams object and specify
268     // the threshold here to avoid the command line options of the regular
269     // inliner to influence pre-inlining. The only fields of InlineParams we
270     // care about are DefaultThreshold and HintThreshold.
271     InlineParams IP;
272     IP.DefaultThreshold = PreInlineThreshold;
273     // FIXME: The hint threshold has the same value used by the regular inliner.
274     // This should probably be lowered after performance testing.
275     IP.HintThreshold = 325;
276 
277     MPM.add(createFunctionInliningPass(IP));
278     MPM.add(createSROAPass());
279     MPM.add(createEarlyCSEPass());             // Catch trivial redundancies
280     MPM.add(createCFGSimplificationPass());    // Merge & remove BBs
281     MPM.add(createInstructionCombiningPass()); // Combine silly seq's
282     addExtensionsToPM(EP_Peephole, MPM);
283   }
284   if (EnablePGOInstrGen) {
285     MPM.add(createPGOInstrumentationGenLegacyPass());
286     // Add the profile lowering pass.
287     InstrProfOptions Options;
288     if (!PGOInstrGen.empty())
289       Options.InstrProfileOutput = PGOInstrGen;
290     Options.DoCounterPromotion = true;
291     MPM.add(createLoopRotatePass());
292     MPM.add(createInstrProfilingLegacyPass(Options));
293   }
294   if (!PGOInstrUse.empty())
295     MPM.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse));
296   // Indirect call promotion that promotes intra-module targets only.
297   // For ThinLTO this is done earlier due to interactions with globalopt
298   // for imported functions. We don't run this at -O0.
299   if (OptLevel > 0)
300     MPM.add(
301         createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse.empty()));
302 }
303 void PassManagerBuilder::addFunctionSimplificationPasses(
304     legacy::PassManagerBase &MPM) {
305   // Start of function pass.
306   // Break up aggregate allocas, using SSAUpdater.
307   MPM.add(createSROAPass());
308   MPM.add(createEarlyCSEPass(EnableEarlyCSEMemSSA)); // Catch trivial redundancies
309   if (EnableGVNHoist)
310     MPM.add(createGVNHoistPass());
311   if (EnableGVNSink) {
312     MPM.add(createGVNSinkPass());
313     MPM.add(createCFGSimplificationPass());
314   }
315 
316   // Speculative execution if the target has divergent branches; otherwise nop.
317   MPM.add(createSpeculativeExecutionIfHasBranchDivergencePass());
318   MPM.add(createJumpThreadingPass());         // Thread jumps.
319   MPM.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
320   MPM.add(createCFGSimplificationPass());     // Merge & remove BBs
321   // Combine silly seq's
322   addInstructionCombiningPass(MPM);
323   if (SizeLevel == 0 && !DisableLibCallsShrinkWrap)
324     MPM.add(createLibCallsShrinkWrapPass());
325   addExtensionsToPM(EP_Peephole, MPM);
326 
327   // Optimize memory intrinsic calls based on the profiled size information.
328   if (SizeLevel == 0)
329     MPM.add(createPGOMemOPSizeOptLegacyPass());
330 
331   MPM.add(createTailCallEliminationPass()); // Eliminate tail calls
332   MPM.add(createCFGSimplificationPass());     // Merge & remove BBs
333   MPM.add(createReassociatePass());           // Reassociate expressions
334   // Rotate Loop - disable header duplication at -Oz
335   MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
336   MPM.add(createLICMPass());                  // Hoist loop invariants
337   if (EnableSimpleLoopUnswitch)
338     MPM.add(createSimpleLoopUnswitchLegacyPass());
339   else
340     MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
341   MPM.add(createCFGSimplificationPass());
342   addInstructionCombiningPass(MPM);
343   MPM.add(createIndVarSimplifyPass());        // Canonicalize indvars
344   MPM.add(createLoopIdiomPass());             // Recognize idioms like memset.
345   addExtensionsToPM(EP_LateLoopOptimizations, MPM);
346   MPM.add(createLoopDeletionPass());          // Delete dead loops
347 
348   if (EnableLoopInterchange) {
349     MPM.add(createLoopInterchangePass()); // Interchange loops
350     MPM.add(createCFGSimplificationPass());
351   }
352   if (!DisableUnrollLoops)
353     MPM.add(createSimpleLoopUnrollPass(OptLevel));    // Unroll small loops
354   addExtensionsToPM(EP_LoopOptimizerEnd, MPM);
355 
356   if (OptLevel > 1) {
357     MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
358     MPM.add(NewGVN ? createNewGVNPass()
359                    : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
360   }
361   MPM.add(createMemCpyOptPass());             // Remove memcpy / form memset
362   MPM.add(createSCCPPass());                  // Constant prop with SCCP
363 
364   // Delete dead bit computations (instcombine runs after to fold away the dead
365   // computations, and then ADCE will run later to exploit any new DCE
366   // opportunities that creates).
367   MPM.add(createBitTrackingDCEPass());        // Delete dead bit computations
368 
369   // Run instcombine after redundancy elimination to exploit opportunities
370   // opened up by them.
371   addInstructionCombiningPass(MPM);
372   addExtensionsToPM(EP_Peephole, MPM);
373   MPM.add(createJumpThreadingPass());         // Thread jumps
374   MPM.add(createCorrelatedValuePropagationPass());
375   MPM.add(createDeadStoreEliminationPass());  // Delete dead stores
376   MPM.add(createLICMPass());
377 
378   addExtensionsToPM(EP_ScalarOptimizerLate, MPM);
379 
380   if (RerollLoops)
381     MPM.add(createLoopRerollPass());
382   if (!RunSLPAfterLoopVectorization && SLPVectorize)
383     MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
384 
385   MPM.add(createAggressiveDCEPass());         // Delete dead instructions
386   MPM.add(createCFGSimplificationPass()); // Merge & remove BBs
387   // Clean up after everything.
388   addInstructionCombiningPass(MPM);
389   addExtensionsToPM(EP_Peephole, MPM);
390 }
391 
392 void PassManagerBuilder::populateModulePassManager(
393     legacy::PassManagerBase &MPM) {
394   if (!PGOSampleUse.empty()) {
395     MPM.add(createPruneEHPass());
396     MPM.add(createSampleProfileLoaderPass(PGOSampleUse));
397   }
398 
399   // Allow forcing function attributes as a debugging and tuning aid.
400   MPM.add(createForceFunctionAttrsLegacyPass());
401 
402   // If all optimizations are disabled, just run the always-inline pass and,
403   // if enabled, the function merging pass.
404   if (OptLevel == 0) {
405     addPGOInstrPasses(MPM);
406     if (Inliner) {
407       MPM.add(Inliner);
408       Inliner = nullptr;
409     }
410 
411     // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
412     // creates a CGSCC pass manager, but we don't want to add extensions into
413     // that pass manager. To prevent this we insert a no-op module pass to reset
414     // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
415     // builds. The function merging pass is
416     if (MergeFunctions)
417       MPM.add(createMergeFunctionsPass());
418     else if (GlobalExtensionsNotEmpty() || !Extensions.empty())
419       MPM.add(createBarrierNoopPass());
420 
421     addExtensionsToPM(EP_EnabledOnOptLevel0, MPM);
422 
423     // Rename anon globals to be able to export them in the summary.
424     // This has to be done after we add the extensions to the pass manager
425     // as there could be passes (e.g. Adddress sanitizer) which introduce
426     // new unnamed globals.
427     if (PrepareForThinLTO)
428       MPM.add(createNameAnonGlobalPass());
429     return;
430   }
431 
432   // Add LibraryInfo if we have some.
433   if (LibraryInfo)
434     MPM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
435 
436   addInitialAliasAnalysisPasses(MPM);
437 
438   // For ThinLTO there are two passes of indirect call promotion. The
439   // first is during the compile phase when PerformThinLTO=false and
440   // intra-module indirect call targets are promoted. The second is during
441   // the ThinLTO backend when PerformThinLTO=true, when we promote imported
442   // inter-module indirect calls. For that we perform indirect call promotion
443   // earlier in the pass pipeline, here before globalopt. Otherwise imported
444   // available_externally functions look unreferenced and are removed.
445   if (PerformThinLTO)
446     MPM.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
447                                                      !PGOSampleUse.empty()));
448 
449   // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
450   // as it will change the CFG too much to make the 2nd profile annotation
451   // in backend more difficult.
452   bool PrepareForThinLTOUsingPGOSampleProfile =
453       PrepareForThinLTO && !PGOSampleUse.empty();
454   if (PrepareForThinLTOUsingPGOSampleProfile)
455     DisableUnrollLoops = true;
456 
457   // Infer attributes about declarations if possible.
458   MPM.add(createInferFunctionAttrsLegacyPass());
459 
460   addExtensionsToPM(EP_ModuleOptimizerEarly, MPM);
461 
462   MPM.add(createIPSCCPPass());          // IP SCCP
463   MPM.add(createGlobalOptimizerPass()); // Optimize out global vars
464   // Promote any localized global vars.
465   MPM.add(createPromoteMemoryToRegisterPass());
466 
467   MPM.add(createDeadArgEliminationPass()); // Dead argument elimination
468 
469   addInstructionCombiningPass(MPM); // Clean up after IPCP & DAE
470   addExtensionsToPM(EP_Peephole, MPM);
471   MPM.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
472 
473   // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
474   // call promotion as it will change the CFG too much to make the 2nd
475   // profile annotation in backend more difficult.
476   // PGO instrumentation is added during the compile phase for ThinLTO, do
477   // not run it a second time
478   if (!PerformThinLTO && !PrepareForThinLTOUsingPGOSampleProfile)
479     addPGOInstrPasses(MPM);
480 
481   // We add a module alias analysis pass here. In part due to bugs in the
482   // analysis infrastructure this "works" in that the analysis stays alive
483   // for the entire SCC pass run below.
484   MPM.add(createGlobalsAAWrapperPass());
485 
486   // Start of CallGraph SCC passes.
487   MPM.add(createPruneEHPass()); // Remove dead EH info
488   bool RunInliner = false;
489   if (Inliner) {
490     MPM.add(Inliner);
491     Inliner = nullptr;
492     RunInliner = true;
493   }
494 
495   MPM.add(createPostOrderFunctionAttrsLegacyPass());
496   if (OptLevel > 2)
497     MPM.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
498 
499   addExtensionsToPM(EP_CGSCCOptimizerLate, MPM);
500   addFunctionSimplificationPasses(MPM);
501 
502   // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
503   // pass manager that we are specifically trying to avoid. To prevent this
504   // we must insert a no-op module pass to reset the pass manager.
505   MPM.add(createBarrierNoopPass());
506 
507   if (RunPartialInlining)
508     MPM.add(createPartialInliningPass());
509 
510   if (OptLevel > 1 && !PrepareForLTO && !PrepareForThinLTO)
511     // Remove avail extern fns and globals definitions if we aren't
512     // compiling an object file for later LTO. For LTO we want to preserve
513     // these so they are eligible for inlining at link-time. Note if they
514     // are unreferenced they will be removed by GlobalDCE later, so
515     // this only impacts referenced available externally globals.
516     // Eventually they will be suppressed during codegen, but eliminating
517     // here enables more opportunity for GlobalDCE as it may make
518     // globals referenced by available external functions dead
519     // and saves running remaining passes on the eliminated functions.
520     MPM.add(createEliminateAvailableExternallyPass());
521 
522   MPM.add(createReversePostOrderFunctionAttrsPass());
523 
524   // The inliner performs some kind of dead code elimination as it goes,
525   // but there are cases that are not really caught by it. We might
526   // at some point consider teaching the inliner about them, but it
527   // is OK for now to run GlobalOpt + GlobalDCE in tandem as their
528   // benefits generally outweight the cost, making the whole pipeline
529   // faster.
530   if (RunInliner) {
531     MPM.add(createGlobalOptimizerPass());
532     MPM.add(createGlobalDCEPass());
533   }
534 
535   // If we are planning to perform ThinLTO later, let's not bloat the code with
536   // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
537   // during ThinLTO and perform the rest of the optimizations afterward.
538   if (PrepareForThinLTO) {
539     // Rename anon globals to be able to export them in the summary.
540     MPM.add(createNameAnonGlobalPass());
541     return;
542   }
543 
544   if (PerformThinLTO)
545     // Optimize globals now when performing ThinLTO, this enables more
546     // optimizations later.
547     MPM.add(createGlobalOptimizerPass());
548 
549   // Scheduling LoopVersioningLICM when inlining is over, because after that
550   // we may see more accurate aliasing. Reason to run this late is that too
551   // early versioning may prevent further inlining due to increase of code
552   // size. By placing it just after inlining other optimizations which runs
553   // later might get benefit of no-alias assumption in clone loop.
554   if (UseLoopVersioningLICM) {
555     MPM.add(createLoopVersioningLICMPass());    // Do LoopVersioningLICM
556     MPM.add(createLICMPass());                  // Hoist loop invariants
557   }
558 
559   // We add a fresh GlobalsModRef run at this point. This is particularly
560   // useful as the above will have inlined, DCE'ed, and function-attr
561   // propagated everything. We should at this point have a reasonably minimal
562   // and richly annotated call graph. By computing aliasing and mod/ref
563   // information for all local globals here, the late loop passes and notably
564   // the vectorizer will be able to use them to help recognize vectorizable
565   // memory operations.
566   //
567   // Note that this relies on a bug in the pass manager which preserves
568   // a module analysis into a function pass pipeline (and throughout it) so
569   // long as the first function pass doesn't invalidate the module analysis.
570   // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
571   // this to work. Fortunately, it is trivial to preserve AliasAnalysis
572   // (doing nothing preserves it as it is required to be conservatively
573   // correct in the face of IR changes).
574   MPM.add(createGlobalsAAWrapperPass());
575 
576   MPM.add(createFloat2IntPass());
577 
578   addExtensionsToPM(EP_VectorizerStart, MPM);
579 
580   // Re-rotate loops in all our loop nests. These may have fallout out of
581   // rotated form due to GVN or other transformations, and the vectorizer relies
582   // on the rotated form. Disable header duplication at -Oz.
583   MPM.add(createLoopRotatePass(SizeLevel == 2 ? 0 : -1));
584 
585   // Distribute loops to allow partial vectorization.  I.e. isolate dependences
586   // into separate loop that would otherwise inhibit vectorization.  This is
587   // currently only performed for loops marked with the metadata
588   // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
589   MPM.add(createLoopDistributePass());
590 
591   MPM.add(createLoopVectorizePass(DisableUnrollLoops, LoopVectorize));
592 
593   // Eliminate loads by forwarding stores from the previous iteration to loads
594   // of the current iteration.
595   MPM.add(createLoopLoadEliminationPass());
596 
597   // FIXME: Because of #pragma vectorize enable, the passes below are always
598   // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
599   // on -O1 and no #pragma is found). Would be good to have these two passes
600   // as function calls, so that we can only pass them when the vectorizer
601   // changed the code.
602   addInstructionCombiningPass(MPM);
603   if (OptLevel > 1 && ExtraVectorizerPasses) {
604     // At higher optimization levels, try to clean up any runtime overlap and
605     // alignment checks inserted by the vectorizer. We want to track correllated
606     // runtime checks for two inner loops in the same outer loop, fold any
607     // common computations, hoist loop-invariant aspects out of any outer loop,
608     // and unswitch the runtime checks if possible. Once hoisted, we may have
609     // dead (or speculatable) control flows or more combining opportunities.
610     MPM.add(createEarlyCSEPass());
611     MPM.add(createCorrelatedValuePropagationPass());
612     addInstructionCombiningPass(MPM);
613     MPM.add(createLICMPass());
614     MPM.add(createLoopUnswitchPass(SizeLevel || OptLevel < 3, DivergentTarget));
615     MPM.add(createCFGSimplificationPass());
616     addInstructionCombiningPass(MPM);
617   }
618 
619   if (RunSLPAfterLoopVectorization && SLPVectorize) {
620     MPM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
621     if (OptLevel > 1 && ExtraVectorizerPasses) {
622       MPM.add(createEarlyCSEPass());
623     }
624   }
625 
626   addExtensionsToPM(EP_Peephole, MPM);
627   MPM.add(createLateCFGSimplificationPass()); // Switches to lookup tables
628   addInstructionCombiningPass(MPM);
629 
630   if (!DisableUnrollLoops) {
631     MPM.add(createLoopUnrollPass(OptLevel));    // Unroll small loops
632 
633     // LoopUnroll may generate some redundency to cleanup.
634     addInstructionCombiningPass(MPM);
635 
636     // Runtime unrolling will introduce runtime check in loop prologue. If the
637     // unrolled loop is a inner loop, then the prologue will be inside the
638     // outer loop. LICM pass can help to promote the runtime check out if the
639     // checked value is loop invariant.
640     MPM.add(createLICMPass());
641  }
642 
643   // After vectorization and unrolling, assume intrinsics may tell us more
644   // about pointer alignments.
645   MPM.add(createAlignmentFromAssumptionsPass());
646 
647   // FIXME: We shouldn't bother with this anymore.
648   MPM.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
649 
650   // GlobalOpt already deletes dead functions and globals, at -O2 try a
651   // late pass of GlobalDCE.  It is capable of deleting dead cycles.
652   if (OptLevel > 1) {
653     MPM.add(createGlobalDCEPass());         // Remove dead fns and globals.
654     MPM.add(createConstantMergePass());     // Merge dup global constants
655   }
656 
657   if (MergeFunctions)
658     MPM.add(createMergeFunctionsPass());
659 
660   // LoopSink pass sinks instructions hoisted by LICM, which serves as a
661   // canonicalization pass that enables other optimizations. As a result,
662   // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
663   // result too early.
664   MPM.add(createLoopSinkPass());
665   // Get rid of LCSSA nodes.
666   MPM.add(createInstructionSimplifierPass());
667 
668   // This hoists/decomposes div/rem ops. It should run after other sink/hoist
669   // passes to avoid re-sinking, but before SimplifyCFG because it can allow
670   // flattening of blocks.
671   MPM.add(createDivRemPairsPass());
672 
673   // LoopSink (and other loop passes since the last simplifyCFG) might have
674   // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
675   MPM.add(createCFGSimplificationPass());
676 
677   addExtensionsToPM(EP_OptimizerLast, MPM);
678 }
679 
680 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase &PM) {
681   // Remove unused virtual tables to improve the quality of code generated by
682   // whole-program devirtualization and bitset lowering.
683   PM.add(createGlobalDCEPass());
684 
685   // Provide AliasAnalysis services for optimizations.
686   addInitialAliasAnalysisPasses(PM);
687 
688   // Allow forcing function attributes as a debugging and tuning aid.
689   PM.add(createForceFunctionAttrsLegacyPass());
690 
691   // Infer attributes about declarations if possible.
692   PM.add(createInferFunctionAttrsLegacyPass());
693 
694   if (OptLevel > 1) {
695     // Indirect call promotion. This should promote all the targets that are
696     // left by the earlier promotion pass that promotes intra-module targets.
697     // This two-step promotion is to save the compile time. For LTO, it should
698     // produce the same result as if we only do promotion here.
699     PM.add(
700         createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse.empty()));
701 
702     // Propagate constants at call sites into the functions they call.  This
703     // opens opportunities for globalopt (and inlining) by substituting function
704     // pointers passed as arguments to direct uses of functions.
705     PM.add(createIPSCCPPass());
706   }
707 
708   // Infer attributes about definitions. The readnone attribute in particular is
709   // required for virtual constant propagation.
710   PM.add(createPostOrderFunctionAttrsLegacyPass());
711   PM.add(createReversePostOrderFunctionAttrsPass());
712 
713   // Split globals using inrange annotations on GEP indices. This can help
714   // improve the quality of generated code when virtual constant propagation or
715   // control flow integrity are enabled.
716   PM.add(createGlobalSplitPass());
717 
718   // Apply whole-program devirtualization and virtual constant propagation.
719   PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
720 
721   // That's all we need at opt level 1.
722   if (OptLevel == 1)
723     return;
724 
725   // Now that we internalized some globals, see if we can hack on them!
726   PM.add(createGlobalOptimizerPass());
727   // Promote any localized global vars.
728   PM.add(createPromoteMemoryToRegisterPass());
729 
730   // Linking modules together can lead to duplicated global constants, only
731   // keep one copy of each constant.
732   PM.add(createConstantMergePass());
733 
734   // Remove unused arguments from functions.
735   PM.add(createDeadArgEliminationPass());
736 
737   // Reduce the code after globalopt and ipsccp.  Both can open up significant
738   // simplification opportunities, and both can propagate functions through
739   // function pointers.  When this happens, we often have to resolve varargs
740   // calls, etc, so let instcombine do this.
741   addInstructionCombiningPass(PM);
742   addExtensionsToPM(EP_Peephole, PM);
743 
744   // Inline small functions
745   bool RunInliner = Inliner;
746   if (RunInliner) {
747     PM.add(Inliner);
748     Inliner = nullptr;
749   }
750 
751   PM.add(createPruneEHPass());   // Remove dead EH info.
752 
753   // Optimize globals again if we ran the inliner.
754   if (RunInliner)
755     PM.add(createGlobalOptimizerPass());
756   PM.add(createGlobalDCEPass()); // Remove dead functions.
757 
758   // If we didn't decide to inline a function, check to see if we can
759   // transform it to pass arguments by value instead of by reference.
760   PM.add(createArgumentPromotionPass());
761 
762   // The IPO passes may leave cruft around.  Clean up after them.
763   addInstructionCombiningPass(PM);
764   addExtensionsToPM(EP_Peephole, PM);
765   PM.add(createJumpThreadingPass());
766 
767   // Break up allocas
768   PM.add(createSROAPass());
769 
770   // Run a few AA driven optimizations here and now, to cleanup the code.
771   PM.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
772   PM.add(createGlobalsAAWrapperPass()); // IP alias analysis.
773 
774   PM.add(createLICMPass());                 // Hoist loop invariants.
775   PM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
776   PM.add(NewGVN ? createNewGVNPass()
777                 : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies.
778   PM.add(createMemCpyOptPass());            // Remove dead memcpys.
779 
780   // Nuke dead stores.
781   PM.add(createDeadStoreEliminationPass());
782 
783   // More loops are countable; try to optimize them.
784   PM.add(createIndVarSimplifyPass());
785   PM.add(createLoopDeletionPass());
786   if (EnableLoopInterchange)
787     PM.add(createLoopInterchangePass());
788 
789   if (!DisableUnrollLoops)
790     PM.add(createSimpleLoopUnrollPass(OptLevel));   // Unroll small loops
791   PM.add(createLoopVectorizePass(true, LoopVectorize));
792   // The vectorizer may have significantly shortened a loop body; unroll again.
793   if (!DisableUnrollLoops)
794     PM.add(createLoopUnrollPass(OptLevel));
795 
796   // Now that we've optimized loops (in particular loop induction variables),
797   // we may have exposed more scalar opportunities. Run parts of the scalar
798   // optimizer again at this point.
799   addInstructionCombiningPass(PM); // Initial cleanup
800   PM.add(createCFGSimplificationPass()); // if-convert
801   PM.add(createSCCPPass()); // Propagate exposed constants
802   addInstructionCombiningPass(PM); // Clean up again
803   PM.add(createBitTrackingDCEPass());
804 
805   // More scalar chains could be vectorized due to more alias information
806   if (RunSLPAfterLoopVectorization)
807     if (SLPVectorize)
808       PM.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
809 
810   // After vectorization, assume intrinsics may tell us more about pointer
811   // alignments.
812   PM.add(createAlignmentFromAssumptionsPass());
813 
814   // Cleanup and simplify the code after the scalar optimizations.
815   addInstructionCombiningPass(PM);
816   addExtensionsToPM(EP_Peephole, PM);
817 
818   PM.add(createJumpThreadingPass());
819 }
820 
821 void PassManagerBuilder::addLateLTOOptimizationPasses(
822     legacy::PassManagerBase &PM) {
823   // Delete basic blocks, which optimization passes may have killed.
824   PM.add(createCFGSimplificationPass());
825 
826   // Drop bodies of available externally objects to improve GlobalDCE.
827   PM.add(createEliminateAvailableExternallyPass());
828 
829   // Now that we have optimized the program, discard unreachable functions.
830   PM.add(createGlobalDCEPass());
831 
832   // FIXME: this is profitable (for compiler time) to do at -O0 too, but
833   // currently it damages debug info.
834   if (MergeFunctions)
835     PM.add(createMergeFunctionsPass());
836 }
837 
838 void PassManagerBuilder::populateThinLTOPassManager(
839     legacy::PassManagerBase &PM) {
840   PerformThinLTO = true;
841 
842   if (VerifyInput)
843     PM.add(createVerifierPass());
844 
845   if (ImportSummary) {
846     // These passes import type identifier resolutions for whole-program
847     // devirtualization and CFI. They must run early because other passes may
848     // disturb the specific instruction patterns that these passes look for,
849     // creating dependencies on resolutions that may not appear in the summary.
850     //
851     // For example, GVN may transform the pattern assume(type.test) appearing in
852     // two basic blocks into assume(phi(type.test, type.test)), which would
853     // transform a dependency on a WPD resolution into a dependency on a type
854     // identifier resolution for CFI.
855     //
856     // Also, WPD has access to more precise information than ICP and can
857     // devirtualize more effectively, so it should operate on the IR first.
858     PM.add(createWholeProgramDevirtPass(nullptr, ImportSummary));
859     PM.add(createLowerTypeTestsPass(nullptr, ImportSummary));
860   }
861 
862   populateModulePassManager(PM);
863 
864   if (VerifyOutput)
865     PM.add(createVerifierPass());
866   PerformThinLTO = false;
867 }
868 
869 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase &PM) {
870   if (LibraryInfo)
871     PM.add(new TargetLibraryInfoWrapperPass(*LibraryInfo));
872 
873   if (VerifyInput)
874     PM.add(createVerifierPass());
875 
876   if (OptLevel != 0)
877     addLTOOptimizationPasses(PM);
878   else {
879     // The whole-program-devirt pass needs to run at -O0 because only it knows
880     // about the llvm.type.checked.load intrinsic: it needs to both lower the
881     // intrinsic itself and handle it in the summary.
882     PM.add(createWholeProgramDevirtPass(ExportSummary, nullptr));
883   }
884 
885   // Create a function that performs CFI checks for cross-DSO calls with targets
886   // in the current module.
887   PM.add(createCrossDSOCFIPass());
888 
889   // Lower type metadata and the type.test intrinsic. This pass supports Clang's
890   // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
891   // link time if CFI is enabled. The pass does nothing if CFI is disabled.
892   PM.add(createLowerTypeTestsPass(ExportSummary, nullptr));
893 
894   if (OptLevel != 0)
895     addLateLTOOptimizationPasses(PM);
896 
897   if (VerifyOutput)
898     PM.add(createVerifierPass());
899 }
900 
901 inline PassManagerBuilder *unwrap(LLVMPassManagerBuilderRef P) {
902     return reinterpret_cast<PassManagerBuilder*>(P);
903 }
904 
905 inline LLVMPassManagerBuilderRef wrap(PassManagerBuilder *P) {
906   return reinterpret_cast<LLVMPassManagerBuilderRef>(P);
907 }
908 
909 LLVMPassManagerBuilderRef LLVMPassManagerBuilderCreate() {
910   PassManagerBuilder *PMB = new PassManagerBuilder();
911   return wrap(PMB);
912 }
913 
914 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB) {
915   PassManagerBuilder *Builder = unwrap(PMB);
916   delete Builder;
917 }
918 
919 void
920 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB,
921                                   unsigned OptLevel) {
922   PassManagerBuilder *Builder = unwrap(PMB);
923   Builder->OptLevel = OptLevel;
924 }
925 
926 void
927 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB,
928                                    unsigned SizeLevel) {
929   PassManagerBuilder *Builder = unwrap(PMB);
930   Builder->SizeLevel = SizeLevel;
931 }
932 
933 void
934 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB,
935                                             LLVMBool Value) {
936   // NOTE: The DisableUnitAtATime switch has been removed.
937 }
938 
939 void
940 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB,
941                                             LLVMBool Value) {
942   PassManagerBuilder *Builder = unwrap(PMB);
943   Builder->DisableUnrollLoops = Value;
944 }
945 
946 void
947 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB,
948                                                  LLVMBool Value) {
949   // NOTE: The simplify-libcalls pass has been removed.
950 }
951 
952 void
953 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB,
954                                               unsigned Threshold) {
955   PassManagerBuilder *Builder = unwrap(PMB);
956   Builder->Inliner = createFunctionInliningPass(Threshold);
957 }
958 
959 void
960 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB,
961                                                   LLVMPassManagerRef PM) {
962   PassManagerBuilder *Builder = unwrap(PMB);
963   legacy::FunctionPassManager *FPM = unwrap<legacy::FunctionPassManager>(PM);
964   Builder->populateFunctionPassManager(*FPM);
965 }
966 
967 void
968 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB,
969                                                 LLVMPassManagerRef PM) {
970   PassManagerBuilder *Builder = unwrap(PMB);
971   legacy::PassManagerBase *MPM = unwrap(PM);
972   Builder->populateModulePassManager(*MPM);
973 }
974 
975 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB,
976                                                   LLVMPassManagerRef PM,
977                                                   LLVMBool Internalize,
978                                                   LLVMBool RunInliner) {
979   PassManagerBuilder *Builder = unwrap(PMB);
980   legacy::PassManagerBase *LPM = unwrap(PM);
981 
982   // A small backwards compatibility hack. populateLTOPassManager used to take
983   // an RunInliner option.
984   if (RunInliner && !Builder->Inliner)
985     Builder->Inliner = createFunctionInliningPass();
986 
987   Builder->populateLTOPassManager(*LPM);
988 }
989