1 //===- PassManagerBuilder.cpp - Build Standard Pass -----------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file defines the PassManagerBuilder class, which is used to set up a
10 // "standard" optimization sequence suitable for languages like C and C++.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/Transforms/IPO/PassManagerBuilder.h"
15 #include "llvm-c/Transforms/PassManagerBuilder.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/Analysis/BasicAliasAnalysis.h"
18 #include "llvm/Analysis/CFLAndersAliasAnalysis.h"
19 #include "llvm/Analysis/CFLSteensAliasAnalysis.h"
20 #include "llvm/Analysis/GlobalsModRef.h"
21 #include "llvm/Analysis/InlineCost.h"
22 #include "llvm/Analysis/Passes.h"
23 #include "llvm/Analysis/ScopedNoAliasAA.h"
24 #include "llvm/Analysis/TargetLibraryInfo.h"
25 #include "llvm/Analysis/TypeBasedAliasAnalysis.h"
26 #include "llvm/IR/DataLayout.h"
27 #include "llvm/IR/LegacyPassManager.h"
28 #include "llvm/IR/Verifier.h"
29 #include "llvm/Support/CommandLine.h"
30 #include "llvm/Support/ManagedStatic.h"
31 #include "llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h"
32 #include "llvm/Transforms/IPO.h"
33 #include "llvm/Transforms/IPO/Attributor.h"
34 #include "llvm/Transforms/IPO/ForceFunctionAttrs.h"
35 #include "llvm/Transforms/IPO/FunctionAttrs.h"
36 #include "llvm/Transforms/IPO/InferFunctionAttrs.h"
37 #include "llvm/Transforms/InstCombine/InstCombine.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/InstSimplifyPass.h"
42 #include "llvm/Transforms/Scalar/LICM.h"
43 #include "llvm/Transforms/Scalar/LoopUnrollPass.h"
44 #include "llvm/Transforms/Scalar/SimpleLoopUnswitch.h"
45 #include "llvm/Transforms/Utils.h"
46 #include "llvm/Transforms/Vectorize.h"
47 #include "llvm/Transforms/Vectorize/LoopVectorize.h"
48 #include "llvm/Transforms/Vectorize/SLPVectorizer.h"
53 RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden
,
54 cl::ZeroOrMore
, cl::desc("Run Partial inlinining pass"));
57 UseGVNAfterVectorization("use-gvn-after-vectorization",
58 cl::init(false), cl::Hidden
,
59 cl::desc("Run GVN instead of Early CSE after vectorization passes"));
61 static cl::opt
<bool> ExtraVectorizerPasses(
62 "extra-vectorizer-passes", cl::init(false), cl::Hidden
,
63 cl::desc("Run cleanup optimization passes after vectorization."));
66 RunLoopRerolling("reroll-loops", cl::Hidden
,
67 cl::desc("Run the loop rerolling pass"));
69 static cl::opt
<bool> RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden
,
70 cl::desc("Run the NewGVN pass"));
72 // Experimental option to use CFL-AA
73 enum class CFLAAType
{ None
, Steensgaard
, Andersen
, Both
};
74 static cl::opt
<CFLAAType
>
75 UseCFLAA("use-cfl-aa", cl::init(CFLAAType::None
), cl::Hidden
,
76 cl::desc("Enable the new, experimental CFL alias analysis"),
77 cl::values(clEnumValN(CFLAAType::None
, "none", "Disable CFL-AA"),
78 clEnumValN(CFLAAType::Steensgaard
, "steens",
79 "Enable unification-based CFL-AA"),
80 clEnumValN(CFLAAType::Andersen
, "anders",
81 "Enable inclusion-based CFL-AA"),
82 clEnumValN(CFLAAType::Both
, "both",
83 "Enable both variants of CFL-AA")));
85 static cl::opt
<bool> EnableLoopInterchange(
86 "enable-loopinterchange", cl::init(false), cl::Hidden
,
87 cl::desc("Enable the new, experimental LoopInterchange Pass"));
89 static cl::opt
<bool> EnableUnrollAndJam("enable-unroll-and-jam",
90 cl::init(false), cl::Hidden
,
91 cl::desc("Enable Unroll And Jam Pass"));
94 EnablePrepareForThinLTO("prepare-for-thinlto", cl::init(false), cl::Hidden
,
95 cl::desc("Enable preparation for ThinLTO."));
98 EnablePerformThinLTO("perform-thinlto", cl::init(false), cl::Hidden
,
99 cl::desc("Enable performing ThinLTO."));
101 cl::opt
<bool> EnableHotColdSplit("hot-cold-split", cl::init(false), cl::Hidden
,
102 cl::desc("Enable hot-cold splitting pass"));
104 static cl::opt
<bool> UseLoopVersioningLICM(
105 "enable-loop-versioning-licm", cl::init(false), cl::Hidden
,
106 cl::desc("Enable the experimental Loop Versioning LICM pass"));
109 DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden
,
110 cl::desc("Disable pre-instrumentation inliner"));
112 static cl::opt
<int> PreInlineThreshold(
113 "preinline-threshold", cl::Hidden
, cl::init(75), cl::ZeroOrMore
,
114 cl::desc("Control the amount of inlining in pre-instrumentation inliner "
117 static cl::opt
<bool> EnableGVNHoist(
118 "enable-gvn-hoist", cl::init(false), cl::Hidden
,
119 cl::desc("Enable the GVN hoisting pass (default = off)"));
122 DisableLibCallsShrinkWrap("disable-libcalls-shrinkwrap", cl::init(false),
124 cl::desc("Disable shrink-wrap library calls"));
126 static cl::opt
<bool> EnableSimpleLoopUnswitch(
127 "enable-simple-loop-unswitch", cl::init(false), cl::Hidden
,
128 cl::desc("Enable the simple loop unswitch pass. Also enables independent "
129 "cleanup passes integrated into the loop pass manager pipeline."));
131 static cl::opt
<bool> EnableGVNSink(
132 "enable-gvn-sink", cl::init(false), cl::Hidden
,
133 cl::desc("Enable the GVN sinking pass (default = off)"));
135 // This option is used in simplifying testing SampleFDO optimizations for
138 EnableCHR("enable-chr", cl::init(true), cl::Hidden
,
139 cl::desc("Enable control height reduction optimization (CHR)"));
141 cl::opt
<bool> FlattenedProfileUsed(
142 "flattened-profile-used", cl::init(false), cl::Hidden
,
143 cl::desc("Indicate the sample profile being used is flattened, i.e., "
144 "no inline hierachy exists in the profile. "));
146 cl::opt
<bool> EnableOrderFileInstrumentation(
147 "enable-order-file-instrumentation", cl::init(false), cl::Hidden
,
148 cl::desc("Enable order file instrumentation (default = off)"));
150 PassManagerBuilder::PassManagerBuilder() {
153 LibraryInfo
= nullptr;
155 DisableUnrollLoops
= false;
156 SLPVectorize
= RunSLPVectorization
;
157 LoopVectorize
= EnableLoopVectorization
;
158 LoopsInterleaved
= EnableLoopInterleaving
;
159 RerollLoops
= RunLoopRerolling
;
161 LicmMssaOptCap
= SetLicmMssaOptCap
;
162 LicmMssaNoAccForPromotionCap
= SetLicmMssaNoAccForPromotionCap
;
163 DisableGVNLoadPRE
= false;
164 ForgetAllSCEVInLoopUnroll
= ForgetSCEVInLoopUnroll
;
166 VerifyOutput
= false;
167 MergeFunctions
= false;
168 PrepareForLTO
= false;
169 EnablePGOInstrGen
= false;
170 EnablePGOCSInstrGen
= false;
171 EnablePGOCSInstrUse
= false;
175 PrepareForThinLTO
= EnablePrepareForThinLTO
;
176 PerformThinLTO
= EnablePerformThinLTO
;
177 DivergentTarget
= false;
180 PassManagerBuilder::~PassManagerBuilder() {
185 /// Set of global extensions, automatically added as part of the standard set.
186 static ManagedStatic
<SmallVector
<std::pair
<PassManagerBuilder::ExtensionPointTy
,
187 PassManagerBuilder::ExtensionFn
>, 8> > GlobalExtensions
;
189 /// Check if GlobalExtensions is constructed and not empty.
190 /// Since GlobalExtensions is a managed static, calling 'empty()' will trigger
191 /// the construction of the object.
192 static bool GlobalExtensionsNotEmpty() {
193 return GlobalExtensions
.isConstructed() && !GlobalExtensions
->empty();
196 void PassManagerBuilder::addGlobalExtension(
197 PassManagerBuilder::ExtensionPointTy Ty
,
198 PassManagerBuilder::ExtensionFn Fn
) {
199 GlobalExtensions
->push_back(std::make_pair(Ty
, std::move(Fn
)));
202 void PassManagerBuilder::addExtension(ExtensionPointTy Ty
, ExtensionFn Fn
) {
203 Extensions
.push_back(std::make_pair(Ty
, std::move(Fn
)));
206 void PassManagerBuilder::addExtensionsToPM(ExtensionPointTy ETy
,
207 legacy::PassManagerBase
&PM
) const {
208 if (GlobalExtensionsNotEmpty()) {
209 for (auto &Ext
: *GlobalExtensions
) {
210 if (Ext
.first
== ETy
)
211 Ext
.second(*this, PM
);
214 for (unsigned i
= 0, e
= Extensions
.size(); i
!= e
; ++i
)
215 if (Extensions
[i
].first
== ETy
)
216 Extensions
[i
].second(*this, PM
);
219 void PassManagerBuilder::addInitialAliasAnalysisPasses(
220 legacy::PassManagerBase
&PM
) const {
222 case CFLAAType::Steensgaard
:
223 PM
.add(createCFLSteensAAWrapperPass());
225 case CFLAAType::Andersen
:
226 PM
.add(createCFLAndersAAWrapperPass());
228 case CFLAAType::Both
:
229 PM
.add(createCFLSteensAAWrapperPass());
230 PM
.add(createCFLAndersAAWrapperPass());
236 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
237 // BasicAliasAnalysis wins if they disagree. This is intended to help
238 // support "obvious" type-punning idioms.
239 PM
.add(createTypeBasedAAWrapperPass());
240 PM
.add(createScopedNoAliasAAWrapperPass());
243 void PassManagerBuilder::addInstructionCombiningPass(
244 legacy::PassManagerBase
&PM
) const {
245 bool ExpensiveCombines
= OptLevel
> 2;
246 PM
.add(createInstructionCombiningPass(ExpensiveCombines
));
249 void PassManagerBuilder::populateFunctionPassManager(
250 legacy::FunctionPassManager
&FPM
) {
251 addExtensionsToPM(EP_EarlyAsPossible
, FPM
);
252 FPM
.add(createEntryExitInstrumenterPass());
254 // Add LibraryInfo if we have some.
256 FPM
.add(new TargetLibraryInfoWrapperPass(*LibraryInfo
));
258 if (OptLevel
== 0) return;
260 addInitialAliasAnalysisPasses(FPM
);
262 FPM
.add(createCFGSimplificationPass());
263 FPM
.add(createSROAPass());
264 FPM
.add(createEarlyCSEPass());
265 FPM
.add(createLowerExpectIntrinsicPass());
268 // Do PGO instrumentation generation or use pass as the option specified.
269 void PassManagerBuilder::addPGOInstrPasses(legacy::PassManagerBase
&MPM
,
272 if (!EnablePGOCSInstrGen
&& !EnablePGOCSInstrUse
)
274 } else if (!EnablePGOInstrGen
&& PGOInstrUse
.empty() && PGOSampleUse
.empty())
277 // Perform the preinline and cleanup passes for O1 and above.
278 // And avoid doing them if optimizing for size.
279 // We will not do this inline for context sensitive PGO (when IsCS is true).
280 if (OptLevel
> 0 && SizeLevel
== 0 && !DisablePreInliner
&&
281 PGOSampleUse
.empty() && !IsCS
) {
282 // Create preinline pass. We construct an InlineParams object and specify
283 // the threshold here to avoid the command line options of the regular
284 // inliner to influence pre-inlining. The only fields of InlineParams we
285 // care about are DefaultThreshold and HintThreshold.
287 IP
.DefaultThreshold
= PreInlineThreshold
;
288 // FIXME: The hint threshold has the same value used by the regular inliner.
289 // This should probably be lowered after performance testing.
290 IP
.HintThreshold
= 325;
292 MPM
.add(createFunctionInliningPass(IP
));
293 MPM
.add(createSROAPass());
294 MPM
.add(createEarlyCSEPass()); // Catch trivial redundancies
295 MPM
.add(createCFGSimplificationPass()); // Merge & remove BBs
296 MPM
.add(createInstructionCombiningPass()); // Combine silly seq's
297 addExtensionsToPM(EP_Peephole
, MPM
);
299 if ((EnablePGOInstrGen
&& !IsCS
) || (EnablePGOCSInstrGen
&& IsCS
)) {
300 MPM
.add(createPGOInstrumentationGenLegacyPass(IsCS
));
301 // Add the profile lowering pass.
302 InstrProfOptions Options
;
303 if (!PGOInstrGen
.empty())
304 Options
.InstrProfileOutput
= PGOInstrGen
;
305 Options
.DoCounterPromotion
= true;
306 Options
.UseBFIInPromotion
= IsCS
;
307 MPM
.add(createLoopRotatePass());
308 MPM
.add(createInstrProfilingLegacyPass(Options
, IsCS
));
310 if (!PGOInstrUse
.empty())
311 MPM
.add(createPGOInstrumentationUseLegacyPass(PGOInstrUse
, IsCS
));
312 // Indirect call promotion that promotes intra-module targets only.
313 // For ThinLTO this is done earlier due to interactions with globalopt
314 // for imported functions. We don't run this at -O0.
315 if (OptLevel
> 0 && !IsCS
)
317 createPGOIndirectCallPromotionLegacyPass(false, !PGOSampleUse
.empty()));
319 void PassManagerBuilder::addFunctionSimplificationPasses(
320 legacy::PassManagerBase
&MPM
) {
321 // Start of function pass.
322 // Break up aggregate allocas, using SSAUpdater.
323 MPM
.add(createSROAPass());
324 MPM
.add(createEarlyCSEPass(true /* Enable mem-ssa. */)); // Catch trivial redundancies
326 MPM
.add(createGVNHoistPass());
328 MPM
.add(createGVNSinkPass());
329 MPM
.add(createCFGSimplificationPass());
332 // Speculative execution if the target has divergent branches; otherwise nop.
333 MPM
.add(createSpeculativeExecutionIfHasBranchDivergencePass());
334 MPM
.add(createJumpThreadingPass()); // Thread jumps.
335 MPM
.add(createCorrelatedValuePropagationPass()); // Propagate conditionals
336 MPM
.add(createCFGSimplificationPass()); // Merge & remove BBs
337 // Combine silly seq's
339 MPM
.add(createAggressiveInstCombinerPass());
340 addInstructionCombiningPass(MPM
);
341 if (SizeLevel
== 0 && !DisableLibCallsShrinkWrap
)
342 MPM
.add(createLibCallsShrinkWrapPass());
343 addExtensionsToPM(EP_Peephole
, MPM
);
345 // Optimize memory intrinsic calls based on the profiled size information.
347 MPM
.add(createPGOMemOPSizeOptLegacyPass());
349 MPM
.add(createTailCallEliminationPass()); // Eliminate tail calls
350 MPM
.add(createCFGSimplificationPass()); // Merge & remove BBs
351 MPM
.add(createReassociatePass()); // Reassociate expressions
353 // Begin the loop pass pipeline.
354 if (EnableSimpleLoopUnswitch
) {
355 // The simple loop unswitch pass relies on separate cleanup passes. Schedule
356 // them first so when we re-process a loop they run before other loop
358 MPM
.add(createLoopInstSimplifyPass());
359 MPM
.add(createLoopSimplifyCFGPass());
361 // Rotate Loop - disable header duplication at -Oz
362 MPM
.add(createLoopRotatePass(SizeLevel
== 2 ? 0 : -1));
363 MPM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
364 if (EnableSimpleLoopUnswitch
)
365 MPM
.add(createSimpleLoopUnswitchLegacyPass());
367 MPM
.add(createLoopUnswitchPass(SizeLevel
|| OptLevel
< 3, DivergentTarget
));
368 // FIXME: We break the loop pass pipeline here in order to do full
369 // simplify-cfg. Eventually loop-simplifycfg should be enhanced to replace the
371 MPM
.add(createCFGSimplificationPass());
372 addInstructionCombiningPass(MPM
);
373 // We resume loop passes creating a second loop pipeline here.
374 MPM
.add(createIndVarSimplifyPass()); // Canonicalize indvars
375 MPM
.add(createLoopIdiomPass()); // Recognize idioms like memset.
376 addExtensionsToPM(EP_LateLoopOptimizations
, MPM
);
377 MPM
.add(createLoopDeletionPass()); // Delete dead loops
379 if (EnableLoopInterchange
)
380 MPM
.add(createLoopInterchangePass()); // Interchange loops
382 // Unroll small loops
383 MPM
.add(createSimpleLoopUnrollPass(OptLevel
, DisableUnrollLoops
,
384 ForgetAllSCEVInLoopUnroll
));
385 addExtensionsToPM(EP_LoopOptimizerEnd
, MPM
);
386 // This ends the loop pass pipelines.
389 MPM
.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
390 MPM
.add(NewGVN
? createNewGVNPass()
391 : createGVNPass(DisableGVNLoadPRE
)); // Remove redundancies
393 MPM
.add(createMemCpyOptPass()); // Remove memcpy / form memset
394 MPM
.add(createSCCPPass()); // Constant prop with SCCP
396 // Delete dead bit computations (instcombine runs after to fold away the dead
397 // computations, and then ADCE will run later to exploit any new DCE
398 // opportunities that creates).
399 MPM
.add(createBitTrackingDCEPass()); // Delete dead bit computations
401 // Run instcombine after redundancy elimination to exploit opportunities
402 // opened up by them.
403 addInstructionCombiningPass(MPM
);
404 addExtensionsToPM(EP_Peephole
, MPM
);
405 MPM
.add(createJumpThreadingPass()); // Thread jumps
406 MPM
.add(createCorrelatedValuePropagationPass());
407 MPM
.add(createDeadStoreEliminationPass()); // Delete dead stores
408 MPM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
410 addExtensionsToPM(EP_ScalarOptimizerLate
, MPM
);
413 MPM
.add(createLoopRerollPass());
415 MPM
.add(createAggressiveDCEPass()); // Delete dead instructions
416 MPM
.add(createCFGSimplificationPass()); // Merge & remove BBs
417 // Clean up after everything.
418 addInstructionCombiningPass(MPM
);
419 addExtensionsToPM(EP_Peephole
, MPM
);
421 if (EnableCHR
&& OptLevel
>= 3 &&
422 (!PGOInstrUse
.empty() || !PGOSampleUse
.empty() || EnablePGOCSInstrGen
))
423 MPM
.add(createControlHeightReductionLegacyPass());
426 void PassManagerBuilder::populateModulePassManager(
427 legacy::PassManagerBase
&MPM
) {
428 // Whether this is a default or *LTO pre-link pipeline. The FullLTO post-link
429 // is handled separately, so just check this is not the ThinLTO post-link.
430 bool DefaultOrPreLinkPipeline
= !PerformThinLTO
;
432 if (!PGOSampleUse
.empty()) {
433 MPM
.add(createPruneEHPass());
434 // In ThinLTO mode, when flattened profile is used, all the available
435 // profile information will be annotated in PreLink phase so there is
436 // no need to load the profile again in PostLink.
437 if (!(FlattenedProfileUsed
&& PerformThinLTO
))
438 MPM
.add(createSampleProfileLoaderPass(PGOSampleUse
));
441 // Allow forcing function attributes as a debugging and tuning aid.
442 MPM
.add(createForceFunctionAttrsLegacyPass());
444 // If all optimizations are disabled, just run the always-inline pass and,
445 // if enabled, the function merging pass.
447 addPGOInstrPasses(MPM
);
453 // FIXME: The BarrierNoopPass is a HACK! The inliner pass above implicitly
454 // creates a CGSCC pass manager, but we don't want to add extensions into
455 // that pass manager. To prevent this we insert a no-op module pass to reset
456 // the pass manager to get the same behavior as EP_OptimizerLast in non-O0
457 // builds. The function merging pass is
459 MPM
.add(createMergeFunctionsPass());
460 else if (GlobalExtensionsNotEmpty() || !Extensions
.empty())
461 MPM
.add(createBarrierNoopPass());
463 if (PerformThinLTO
) {
464 // Drop available_externally and unreferenced globals. This is necessary
465 // with ThinLTO in order to avoid leaving undefined references to dead
466 // globals in the object file.
467 MPM
.add(createEliminateAvailableExternallyPass());
468 MPM
.add(createGlobalDCEPass());
471 addExtensionsToPM(EP_EnabledOnOptLevel0
, MPM
);
473 if (PrepareForLTO
|| PrepareForThinLTO
) {
474 MPM
.add(createCanonicalizeAliasesPass());
475 // Rename anon globals to be able to export them in the summary.
476 // This has to be done after we add the extensions to the pass manager
477 // as there could be passes (e.g. Adddress sanitizer) which introduce
478 // new unnamed globals.
479 MPM
.add(createNameAnonGlobalPass());
484 // Add LibraryInfo if we have some.
486 MPM
.add(new TargetLibraryInfoWrapperPass(*LibraryInfo
));
488 addInitialAliasAnalysisPasses(MPM
);
490 // For ThinLTO there are two passes of indirect call promotion. The
491 // first is during the compile phase when PerformThinLTO=false and
492 // intra-module indirect call targets are promoted. The second is during
493 // the ThinLTO backend when PerformThinLTO=true, when we promote imported
494 // inter-module indirect calls. For that we perform indirect call promotion
495 // earlier in the pass pipeline, here before globalopt. Otherwise imported
496 // available_externally functions look unreferenced and are removed.
498 MPM
.add(createPGOIndirectCallPromotionLegacyPass(/*InLTO = */ true,
499 !PGOSampleUse
.empty()));
501 // For SamplePGO in ThinLTO compile phase, we do not want to unroll loops
502 // as it will change the CFG too much to make the 2nd profile annotation
503 // in backend more difficult.
504 bool PrepareForThinLTOUsingPGOSampleProfile
=
505 PrepareForThinLTO
&& !PGOSampleUse
.empty();
506 if (PrepareForThinLTOUsingPGOSampleProfile
)
507 DisableUnrollLoops
= true;
509 // Infer attributes about declarations if possible.
510 MPM
.add(createInferFunctionAttrsLegacyPass());
512 addExtensionsToPM(EP_ModuleOptimizerEarly
, MPM
);
515 MPM
.add(createCallSiteSplittingPass());
517 MPM
.add(createIPSCCPPass()); // IP SCCP
518 MPM
.add(createCalledValuePropagationPass());
520 // Infer attributes on declarations, call sites, arguments, etc.
521 MPM
.add(createAttributorLegacyPass());
523 MPM
.add(createGlobalOptimizerPass()); // Optimize out global vars
524 // Promote any localized global vars.
525 MPM
.add(createPromoteMemoryToRegisterPass());
527 MPM
.add(createDeadArgEliminationPass()); // Dead argument elimination
529 addInstructionCombiningPass(MPM
); // Clean up after IPCP & DAE
530 addExtensionsToPM(EP_Peephole
, MPM
);
531 MPM
.add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
533 // For SamplePGO in ThinLTO compile phase, we do not want to do indirect
534 // call promotion as it will change the CFG too much to make the 2nd
535 // profile annotation in backend more difficult.
536 // PGO instrumentation is added during the compile phase for ThinLTO, do
537 // not run it a second time
538 if (DefaultOrPreLinkPipeline
&& !PrepareForThinLTOUsingPGOSampleProfile
)
539 addPGOInstrPasses(MPM
);
541 // Create profile COMDAT variables. Lld linker wants to see all variables
542 // before the LTO/ThinLTO link since it needs to resolve symbols/comdats.
543 if (!PerformThinLTO
&& EnablePGOCSInstrGen
)
544 MPM
.add(createPGOInstrumentationGenCreateVarLegacyPass(PGOInstrGen
));
546 // We add a module alias analysis pass here. In part due to bugs in the
547 // analysis infrastructure this "works" in that the analysis stays alive
548 // for the entire SCC pass run below.
549 MPM
.add(createGlobalsAAWrapperPass());
551 // Start of CallGraph SCC passes.
552 MPM
.add(createPruneEHPass()); // Remove dead EH info
553 bool RunInliner
= false;
560 MPM
.add(createPostOrderFunctionAttrsLegacyPass());
562 MPM
.add(createArgumentPromotionPass()); // Scalarize uninlined fn args
564 addExtensionsToPM(EP_CGSCCOptimizerLate
, MPM
);
565 addFunctionSimplificationPasses(MPM
);
567 // FIXME: This is a HACK! The inliner pass above implicitly creates a CGSCC
568 // pass manager that we are specifically trying to avoid. To prevent this
569 // we must insert a no-op module pass to reset the pass manager.
570 MPM
.add(createBarrierNoopPass());
572 if (RunPartialInlining
)
573 MPM
.add(createPartialInliningPass());
575 if (OptLevel
> 1 && !PrepareForLTO
&& !PrepareForThinLTO
)
576 // Remove avail extern fns and globals definitions if we aren't
577 // compiling an object file for later LTO. For LTO we want to preserve
578 // these so they are eligible for inlining at link-time. Note if they
579 // are unreferenced they will be removed by GlobalDCE later, so
580 // this only impacts referenced available externally globals.
581 // Eventually they will be suppressed during codegen, but eliminating
582 // here enables more opportunity for GlobalDCE as it may make
583 // globals referenced by available external functions dead
584 // and saves running remaining passes on the eliminated functions.
585 MPM
.add(createEliminateAvailableExternallyPass());
587 // CSFDO instrumentation and use pass. Don't invoke this for Prepare pass
588 // for LTO and ThinLTO -- The actual pass will be called after all inlines
590 // Need to do this after COMDAT variables have been eliminated,
591 // (i.e. after EliminateAvailableExternallyPass).
592 if (!(PrepareForLTO
|| PrepareForThinLTO
))
593 addPGOInstrPasses(MPM
, /* IsCS */ true);
595 if (EnableOrderFileInstrumentation
)
596 MPM
.add(createInstrOrderFilePass());
598 MPM
.add(createReversePostOrderFunctionAttrsPass());
600 // The inliner performs some kind of dead code elimination as it goes,
601 // but there are cases that are not really caught by it. We might
602 // at some point consider teaching the inliner about them, but it
603 // is OK for now to run GlobalOpt + GlobalDCE in tandem as their
604 // benefits generally outweight the cost, making the whole pipeline
607 MPM
.add(createGlobalOptimizerPass());
608 MPM
.add(createGlobalDCEPass());
611 // If we are planning to perform ThinLTO later, let's not bloat the code with
612 // unrolling/vectorization/... now. We'll first run the inliner + CGSCC passes
613 // during ThinLTO and perform the rest of the optimizations afterward.
614 if (PrepareForThinLTO
) {
615 // Ensure we perform any last passes, but do so before renaming anonymous
616 // globals in case the passes add any.
617 addExtensionsToPM(EP_OptimizerLast
, MPM
);
618 MPM
.add(createCanonicalizeAliasesPass());
619 // Rename anon globals to be able to export them in the summary.
620 MPM
.add(createNameAnonGlobalPass());
625 // Optimize globals now when performing ThinLTO, this enables more
626 // optimizations later.
627 MPM
.add(createGlobalOptimizerPass());
629 // Scheduling LoopVersioningLICM when inlining is over, because after that
630 // we may see more accurate aliasing. Reason to run this late is that too
631 // early versioning may prevent further inlining due to increase of code
632 // size. By placing it just after inlining other optimizations which runs
633 // later might get benefit of no-alias assumption in clone loop.
634 if (UseLoopVersioningLICM
) {
635 MPM
.add(createLoopVersioningLICMPass()); // Do LoopVersioningLICM
636 MPM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
639 // We add a fresh GlobalsModRef run at this point. This is particularly
640 // useful as the above will have inlined, DCE'ed, and function-attr
641 // propagated everything. We should at this point have a reasonably minimal
642 // and richly annotated call graph. By computing aliasing and mod/ref
643 // information for all local globals here, the late loop passes and notably
644 // the vectorizer will be able to use them to help recognize vectorizable
645 // memory operations.
647 // Note that this relies on a bug in the pass manager which preserves
648 // a module analysis into a function pass pipeline (and throughout it) so
649 // long as the first function pass doesn't invalidate the module analysis.
650 // Thus both Float2Int and LoopRotate have to preserve AliasAnalysis for
651 // this to work. Fortunately, it is trivial to preserve AliasAnalysis
652 // (doing nothing preserves it as it is required to be conservatively
653 // correct in the face of IR changes).
654 MPM
.add(createGlobalsAAWrapperPass());
656 MPM
.add(createFloat2IntPass());
657 MPM
.add(createLowerConstantIntrinsicsPass());
659 addExtensionsToPM(EP_VectorizerStart
, MPM
);
661 // Re-rotate loops in all our loop nests. These may have fallout out of
662 // rotated form due to GVN or other transformations, and the vectorizer relies
663 // on the rotated form. Disable header duplication at -Oz.
664 MPM
.add(createLoopRotatePass(SizeLevel
== 2 ? 0 : -1));
666 // Distribute loops to allow partial vectorization. I.e. isolate dependences
667 // into separate loop that would otherwise inhibit vectorization. This is
668 // currently only performed for loops marked with the metadata
669 // llvm.loop.distribute=true or when -enable-loop-distribute is specified.
670 MPM
.add(createLoopDistributePass());
672 MPM
.add(createLoopVectorizePass(!LoopsInterleaved
, !LoopVectorize
));
674 // Eliminate loads by forwarding stores from the previous iteration to loads
675 // of the current iteration.
676 MPM
.add(createLoopLoadEliminationPass());
678 // FIXME: Because of #pragma vectorize enable, the passes below are always
679 // inserted in the pipeline, even when the vectorizer doesn't run (ex. when
680 // on -O1 and no #pragma is found). Would be good to have these two passes
681 // as function calls, so that we can only pass them when the vectorizer
683 addInstructionCombiningPass(MPM
);
684 if (OptLevel
> 1 && ExtraVectorizerPasses
) {
685 // At higher optimization levels, try to clean up any runtime overlap and
686 // alignment checks inserted by the vectorizer. We want to track correllated
687 // runtime checks for two inner loops in the same outer loop, fold any
688 // common computations, hoist loop-invariant aspects out of any outer loop,
689 // and unswitch the runtime checks if possible. Once hoisted, we may have
690 // dead (or speculatable) control flows or more combining opportunities.
691 MPM
.add(createEarlyCSEPass());
692 MPM
.add(createCorrelatedValuePropagationPass());
693 addInstructionCombiningPass(MPM
);
694 MPM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
695 MPM
.add(createLoopUnswitchPass(SizeLevel
|| OptLevel
< 3, DivergentTarget
));
696 MPM
.add(createCFGSimplificationPass());
697 addInstructionCombiningPass(MPM
);
700 // Cleanup after loop vectorization, etc. Simplification passes like CVP and
701 // GVN, loop transforms, and others have already run, so it's now better to
702 // convert to more optimized IR using more aggressive simplify CFG options.
703 // The extra sinking transform can create larger basic blocks, so do this
704 // before SLP vectorization.
705 MPM
.add(createCFGSimplificationPass(1, true, true, false, true));
708 MPM
.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
709 if (OptLevel
> 1 && ExtraVectorizerPasses
) {
710 MPM
.add(createEarlyCSEPass());
714 addExtensionsToPM(EP_Peephole
, MPM
);
715 addInstructionCombiningPass(MPM
);
717 if (EnableUnrollAndJam
&& !DisableUnrollLoops
) {
718 // Unroll and Jam. We do this before unroll but need to be in a separate
719 // loop pass manager in order for the outer loop to be processed by
720 // unroll and jam before the inner loop is unrolled.
721 MPM
.add(createLoopUnrollAndJamPass(OptLevel
));
724 // Unroll small loops
725 MPM
.add(createLoopUnrollPass(OptLevel
, DisableUnrollLoops
,
726 ForgetAllSCEVInLoopUnroll
));
728 if (!DisableUnrollLoops
) {
729 // LoopUnroll may generate some redundency to cleanup.
730 addInstructionCombiningPass(MPM
);
732 // Runtime unrolling will introduce runtime check in loop prologue. If the
733 // unrolled loop is a inner loop, then the prologue will be inside the
734 // outer loop. LICM pass can help to promote the runtime check out if the
735 // checked value is loop invariant.
736 MPM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
739 MPM
.add(createWarnMissedTransformationsPass());
741 // After vectorization and unrolling, assume intrinsics may tell us more
742 // about pointer alignments.
743 MPM
.add(createAlignmentFromAssumptionsPass());
745 // FIXME: We shouldn't bother with this anymore.
746 MPM
.add(createStripDeadPrototypesPass()); // Get rid of dead prototypes
748 // GlobalOpt already deletes dead functions and globals, at -O2 try a
749 // late pass of GlobalDCE. It is capable of deleting dead cycles.
751 MPM
.add(createGlobalDCEPass()); // Remove dead fns and globals.
752 MPM
.add(createConstantMergePass()); // Merge dup global constants
755 // See comment in the new PM for justification of scheduling splitting at
756 // this stage (\ref buildModuleSimplificationPipeline).
757 if (EnableHotColdSplit
&& !(PrepareForLTO
|| PrepareForThinLTO
))
758 MPM
.add(createHotColdSplittingPass());
761 MPM
.add(createMergeFunctionsPass());
763 // LoopSink pass sinks instructions hoisted by LICM, which serves as a
764 // canonicalization pass that enables other optimizations. As a result,
765 // LoopSink pass needs to be a very late IR pass to avoid undoing LICM
767 MPM
.add(createLoopSinkPass());
768 // Get rid of LCSSA nodes.
769 MPM
.add(createInstSimplifyLegacyPass());
771 // This hoists/decomposes div/rem ops. It should run after other sink/hoist
772 // passes to avoid re-sinking, but before SimplifyCFG because it can allow
773 // flattening of blocks.
774 MPM
.add(createDivRemPairsPass());
776 // LoopSink (and other loop passes since the last simplifyCFG) might have
777 // resulted in single-entry-single-exit or empty blocks. Clean up the CFG.
778 MPM
.add(createCFGSimplificationPass());
780 addExtensionsToPM(EP_OptimizerLast
, MPM
);
783 MPM
.add(createCanonicalizeAliasesPass());
784 // Rename anon globals to be able to handle them in the summary
785 MPM
.add(createNameAnonGlobalPass());
789 void PassManagerBuilder::addLTOOptimizationPasses(legacy::PassManagerBase
&PM
) {
790 // Load sample profile before running the LTO optimization pipeline.
791 if (!PGOSampleUse
.empty()) {
792 PM
.add(createPruneEHPass());
793 PM
.add(createSampleProfileLoaderPass(PGOSampleUse
));
796 // Remove unused virtual tables to improve the quality of code generated by
797 // whole-program devirtualization and bitset lowering.
798 PM
.add(createGlobalDCEPass());
800 // Provide AliasAnalysis services for optimizations.
801 addInitialAliasAnalysisPasses(PM
);
803 // Allow forcing function attributes as a debugging and tuning aid.
804 PM
.add(createForceFunctionAttrsLegacyPass());
806 // Infer attributes about declarations if possible.
807 PM
.add(createInferFunctionAttrsLegacyPass());
810 // Split call-site with more constrained arguments.
811 PM
.add(createCallSiteSplittingPass());
813 // Indirect call promotion. This should promote all the targets that are
814 // left by the earlier promotion pass that promotes intra-module targets.
815 // This two-step promotion is to save the compile time. For LTO, it should
816 // produce the same result as if we only do promotion here.
818 createPGOIndirectCallPromotionLegacyPass(true, !PGOSampleUse
.empty()));
820 // Propagate constants at call sites into the functions they call. This
821 // opens opportunities for globalopt (and inlining) by substituting function
822 // pointers passed as arguments to direct uses of functions.
823 PM
.add(createIPSCCPPass());
825 // Attach metadata to indirect call sites indicating the set of functions
826 // they may target at run-time. This should follow IPSCCP.
827 PM
.add(createCalledValuePropagationPass());
829 // Infer attributes on declarations, call sites, arguments, etc.
830 PM
.add(createAttributorLegacyPass());
833 // Infer attributes about definitions. The readnone attribute in particular is
834 // required for virtual constant propagation.
835 PM
.add(createPostOrderFunctionAttrsLegacyPass());
836 PM
.add(createReversePostOrderFunctionAttrsPass());
838 // Split globals using inrange annotations on GEP indices. This can help
839 // improve the quality of generated code when virtual constant propagation or
840 // control flow integrity are enabled.
841 PM
.add(createGlobalSplitPass());
843 // Apply whole-program devirtualization and virtual constant propagation.
844 PM
.add(createWholeProgramDevirtPass(ExportSummary
, nullptr));
846 // That's all we need at opt level 1.
850 // Now that we internalized some globals, see if we can hack on them!
851 PM
.add(createGlobalOptimizerPass());
852 // Promote any localized global vars.
853 PM
.add(createPromoteMemoryToRegisterPass());
855 // Linking modules together can lead to duplicated global constants, only
856 // keep one copy of each constant.
857 PM
.add(createConstantMergePass());
859 // Remove unused arguments from functions.
860 PM
.add(createDeadArgEliminationPass());
862 // Reduce the code after globalopt and ipsccp. Both can open up significant
863 // simplification opportunities, and both can propagate functions through
864 // function pointers. When this happens, we often have to resolve varargs
865 // calls, etc, so let instcombine do this.
867 PM
.add(createAggressiveInstCombinerPass());
868 addInstructionCombiningPass(PM
);
869 addExtensionsToPM(EP_Peephole
, PM
);
871 // Inline small functions
872 bool RunInliner
= Inliner
;
878 PM
.add(createPruneEHPass()); // Remove dead EH info.
880 // CSFDO instrumentation and use pass.
881 addPGOInstrPasses(PM
, /* IsCS */ true);
883 // Optimize globals again if we ran the inliner.
885 PM
.add(createGlobalOptimizerPass());
886 PM
.add(createGlobalDCEPass()); // Remove dead functions.
888 // If we didn't decide to inline a function, check to see if we can
889 // transform it to pass arguments by value instead of by reference.
890 PM
.add(createArgumentPromotionPass());
892 // The IPO passes may leave cruft around. Clean up after them.
893 addInstructionCombiningPass(PM
);
894 addExtensionsToPM(EP_Peephole
, PM
);
895 PM
.add(createJumpThreadingPass());
898 PM
.add(createSROAPass());
900 // LTO provides additional opportunities for tailcall elimination due to
901 // link-time inlining, and visibility of nocapture attribute.
902 PM
.add(createTailCallEliminationPass());
904 // Infer attributes on declarations, call sites, arguments, etc.
905 PM
.add(createPostOrderFunctionAttrsLegacyPass()); // Add nocapture.
906 // Run a few AA driven optimizations here and now, to cleanup the code.
907 PM
.add(createGlobalsAAWrapperPass()); // IP alias analysis.
909 PM
.add(createLICMPass(LicmMssaOptCap
, LicmMssaNoAccForPromotionCap
));
910 PM
.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds.
911 PM
.add(NewGVN
? createNewGVNPass()
912 : createGVNPass(DisableGVNLoadPRE
)); // Remove redundancies.
913 PM
.add(createMemCpyOptPass()); // Remove dead memcpys.
916 PM
.add(createDeadStoreEliminationPass());
918 // More loops are countable; try to optimize them.
919 PM
.add(createIndVarSimplifyPass());
920 PM
.add(createLoopDeletionPass());
921 if (EnableLoopInterchange
)
922 PM
.add(createLoopInterchangePass());
924 // Unroll small loops
925 PM
.add(createSimpleLoopUnrollPass(OptLevel
, DisableUnrollLoops
,
926 ForgetAllSCEVInLoopUnroll
));
927 PM
.add(createLoopVectorizePass(true, !LoopVectorize
));
928 // The vectorizer may have significantly shortened a loop body; unroll again.
929 PM
.add(createLoopUnrollPass(OptLevel
, DisableUnrollLoops
,
930 ForgetAllSCEVInLoopUnroll
));
932 PM
.add(createWarnMissedTransformationsPass());
934 // Now that we've optimized loops (in particular loop induction variables),
935 // we may have exposed more scalar opportunities. Run parts of the scalar
936 // optimizer again at this point.
937 addInstructionCombiningPass(PM
); // Initial cleanup
938 PM
.add(createCFGSimplificationPass()); // if-convert
939 PM
.add(createSCCPPass()); // Propagate exposed constants
940 addInstructionCombiningPass(PM
); // Clean up again
941 PM
.add(createBitTrackingDCEPass());
943 // More scalar chains could be vectorized due to more alias information
945 PM
.add(createSLPVectorizerPass()); // Vectorize parallel scalar chains.
947 // After vectorization, assume intrinsics may tell us more about pointer
949 PM
.add(createAlignmentFromAssumptionsPass());
951 // Cleanup and simplify the code after the scalar optimizations.
952 addInstructionCombiningPass(PM
);
953 addExtensionsToPM(EP_Peephole
, PM
);
955 PM
.add(createJumpThreadingPass());
958 void PassManagerBuilder::addLateLTOOptimizationPasses(
959 legacy::PassManagerBase
&PM
) {
960 // See comment in the new PM for justification of scheduling splitting at
961 // this stage (\ref buildLTODefaultPipeline).
962 if (EnableHotColdSplit
)
963 PM
.add(createHotColdSplittingPass());
965 // Delete basic blocks, which optimization passes may have killed.
966 PM
.add(createCFGSimplificationPass());
968 // Drop bodies of available externally objects to improve GlobalDCE.
969 PM
.add(createEliminateAvailableExternallyPass());
971 // Now that we have optimized the program, discard unreachable functions.
972 PM
.add(createGlobalDCEPass());
974 // FIXME: this is profitable (for compiler time) to do at -O0 too, but
975 // currently it damages debug info.
977 PM
.add(createMergeFunctionsPass());
980 void PassManagerBuilder::populateThinLTOPassManager(
981 legacy::PassManagerBase
&PM
) {
982 PerformThinLTO
= true;
984 PM
.add(new TargetLibraryInfoWrapperPass(*LibraryInfo
));
987 PM
.add(createVerifierPass());
990 // These passes import type identifier resolutions for whole-program
991 // devirtualization and CFI. They must run early because other passes may
992 // disturb the specific instruction patterns that these passes look for,
993 // creating dependencies on resolutions that may not appear in the summary.
995 // For example, GVN may transform the pattern assume(type.test) appearing in
996 // two basic blocks into assume(phi(type.test, type.test)), which would
997 // transform a dependency on a WPD resolution into a dependency on a type
998 // identifier resolution for CFI.
1000 // Also, WPD has access to more precise information than ICP and can
1001 // devirtualize more effectively, so it should operate on the IR first.
1002 PM
.add(createWholeProgramDevirtPass(nullptr, ImportSummary
));
1003 PM
.add(createLowerTypeTestsPass(nullptr, ImportSummary
));
1006 populateModulePassManager(PM
);
1009 PM
.add(createVerifierPass());
1010 PerformThinLTO
= false;
1013 void PassManagerBuilder::populateLTOPassManager(legacy::PassManagerBase
&PM
) {
1015 PM
.add(new TargetLibraryInfoWrapperPass(*LibraryInfo
));
1018 PM
.add(createVerifierPass());
1020 addExtensionsToPM(EP_FullLinkTimeOptimizationEarly
, PM
);
1023 addLTOOptimizationPasses(PM
);
1025 // The whole-program-devirt pass needs to run at -O0 because only it knows
1026 // about the llvm.type.checked.load intrinsic: it needs to both lower the
1027 // intrinsic itself and handle it in the summary.
1028 PM
.add(createWholeProgramDevirtPass(ExportSummary
, nullptr));
1031 // Create a function that performs CFI checks for cross-DSO calls with targets
1032 // in the current module.
1033 PM
.add(createCrossDSOCFIPass());
1035 // Lower type metadata and the type.test intrinsic. This pass supports Clang's
1036 // control flow integrity mechanisms (-fsanitize=cfi*) and needs to run at
1037 // link time if CFI is enabled. The pass does nothing if CFI is disabled.
1038 PM
.add(createLowerTypeTestsPass(ExportSummary
, nullptr));
1041 addLateLTOOptimizationPasses(PM
);
1043 addExtensionsToPM(EP_FullLinkTimeOptimizationLast
, PM
);
1046 PM
.add(createVerifierPass());
1049 inline PassManagerBuilder
*unwrap(LLVMPassManagerBuilderRef P
) {
1050 return reinterpret_cast<PassManagerBuilder
*>(P
);
1053 inline LLVMPassManagerBuilderRef
wrap(PassManagerBuilder
*P
) {
1054 return reinterpret_cast<LLVMPassManagerBuilderRef
>(P
);
1057 LLVMPassManagerBuilderRef
LLVMPassManagerBuilderCreate() {
1058 PassManagerBuilder
*PMB
= new PassManagerBuilder();
1062 void LLVMPassManagerBuilderDispose(LLVMPassManagerBuilderRef PMB
) {
1063 PassManagerBuilder
*Builder
= unwrap(PMB
);
1068 LLVMPassManagerBuilderSetOptLevel(LLVMPassManagerBuilderRef PMB
,
1069 unsigned OptLevel
) {
1070 PassManagerBuilder
*Builder
= unwrap(PMB
);
1071 Builder
->OptLevel
= OptLevel
;
1075 LLVMPassManagerBuilderSetSizeLevel(LLVMPassManagerBuilderRef PMB
,
1076 unsigned SizeLevel
) {
1077 PassManagerBuilder
*Builder
= unwrap(PMB
);
1078 Builder
->SizeLevel
= SizeLevel
;
1082 LLVMPassManagerBuilderSetDisableUnitAtATime(LLVMPassManagerBuilderRef PMB
,
1084 // NOTE: The DisableUnitAtATime switch has been removed.
1088 LLVMPassManagerBuilderSetDisableUnrollLoops(LLVMPassManagerBuilderRef PMB
,
1090 PassManagerBuilder
*Builder
= unwrap(PMB
);
1091 Builder
->DisableUnrollLoops
= Value
;
1095 LLVMPassManagerBuilderSetDisableSimplifyLibCalls(LLVMPassManagerBuilderRef PMB
,
1097 // NOTE: The simplify-libcalls pass has been removed.
1101 LLVMPassManagerBuilderUseInlinerWithThreshold(LLVMPassManagerBuilderRef PMB
,
1102 unsigned Threshold
) {
1103 PassManagerBuilder
*Builder
= unwrap(PMB
);
1104 Builder
->Inliner
= createFunctionInliningPass(Threshold
);
1108 LLVMPassManagerBuilderPopulateFunctionPassManager(LLVMPassManagerBuilderRef PMB
,
1109 LLVMPassManagerRef PM
) {
1110 PassManagerBuilder
*Builder
= unwrap(PMB
);
1111 legacy::FunctionPassManager
*FPM
= unwrap
<legacy::FunctionPassManager
>(PM
);
1112 Builder
->populateFunctionPassManager(*FPM
);
1116 LLVMPassManagerBuilderPopulateModulePassManager(LLVMPassManagerBuilderRef PMB
,
1117 LLVMPassManagerRef PM
) {
1118 PassManagerBuilder
*Builder
= unwrap(PMB
);
1119 legacy::PassManagerBase
*MPM
= unwrap(PM
);
1120 Builder
->populateModulePassManager(*MPM
);
1123 void LLVMPassManagerBuilderPopulateLTOPassManager(LLVMPassManagerBuilderRef PMB
,
1124 LLVMPassManagerRef PM
,
1125 LLVMBool Internalize
,
1126 LLVMBool RunInliner
) {
1127 PassManagerBuilder
*Builder
= unwrap(PMB
);
1128 legacy::PassManagerBase
*LPM
= unwrap(PM
);
1130 // A small backwards compatibility hack. populateLTOPassManager used to take
1131 // an RunInliner option.
1132 if (RunInliner
&& !Builder
->Inliner
)
1133 Builder
->Inliner
= createFunctionInliningPass();
1135 Builder
->populateLTOPassManager(*LPM
);