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