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