167 cl::desc(
"Enable ML policy for inliner. Currently trained for -Oz only"),
169 "Heuristics-based inliner version"),
171 "Use development mode (runtime-loadable model)"),
173 "Use release mode (AOT-compiled model)")));
179 cl::desc(
"Enable inline deferral during PGO"));
187 cl::desc(
"Perform mandatory inlinings module-wide, before performing "
192 cl::desc(
"Eagerly invalidate more analyses in default pipelines"));
196 cl::desc(
"Enable function merging as part of the optimization pipeline"));
200 cl::desc(
"Run the loop rotation transformation after PGO instrumentation"));
204 cl::desc(
"Trigger crash in optimization pipeline"));
208 cl::desc(
"Enable inter-procedural analyses"));
212 cl::desc(
"Run Partial inlining pass"));
216 cl::desc(
"Run cleanup optimization passes after vectorization"));
223 cl::desc(
"Enable the LoopInterchange Pass"));
227 cl::desc(
"Enable Unroll And Jam Pass"));
231 cl::desc(
"Enable the LoopFlatten Pass"));
235 cl::desc(
"Enable the Instrumentor Pass"));
239 cl::desc(
"Enable DFA jump threading"),
244 cl::desc(
"Enable hot-cold splitting pass"));
248 cl::desc(
"Enable ir outliner pass"));
252 cl::desc(
"Disable pre-instrumentation inliner"));
256 cl::desc(
"Control the amount of inlining in pre-instrumentation inliner "
261 cl::desc(
"Enable the GVN hoisting pass (default = off)"));
265 cl::desc(
"Enable the GVN sinking pass (default = off)"));
268 "enable-jump-table-to-switch",
cl::init(
true),
269 cl::desc(
"Enable JumpTableToSwitch pass (default = true)"));
275 cl::desc(
"Enable control height reduction optimization (CHR)"));
279 cl::desc(
"Indicate the sample profile being used is flattened, i.e., "
280 "no inline hierarchy exists in the profile"));
284 cl::desc(
"Enable lowering of the matrix intrinsics"));
288 cl::desc(
"Enable MergeICmps pass in the optimization pipeline"));
293 "Enable pass to eliminate conditions based on linear constraints"));
297 cl::desc(
"Enable the attributor inter-procedural deduction pass"),
299 "enable all full attributor runs"),
301 "enable all attributor-light runs"),
303 "enable module-wide attributor runs"),
305 "enable module-wide attributor-light runs"),
307 "enable call graph SCC attributor runs"),
309 "enable call graph SCC attributor-light runs"),
311 "disable attributor runs")));
315 cl::desc(
"Enable profile instrumentation sampling (default = off)"));
318 cl::desc(
"Enable the experimental Loop Versioning LICM pass"));
321 "instrument-cold-function-only-path",
cl::init(
""),
322 cl::desc(
"File path for cold function only instrumentation(requires use "
323 "with --pgo-instrument-cold-function-only)"),
329 "enable-devirtualize-speculatively",
330 cl::desc(
"Enable speculative devirtualization optimization"),
363 for (
auto &
C : PeepholeEPCallbacks)
368 for (
auto &
C : LateLoopOptimizationsEPCallbacks)
373 for (
auto &
C : LoopOptimizerEndEPCallbacks)
378 for (
auto &
C : ScalarOptimizerLateEPCallbacks)
383 for (
auto &
C : CGSCCOptimizerLateEPCallbacks)
388 for (
auto &
C : VectorizerStartEPCallbacks)
393 for (
auto &
C : VectorizerEndEPCallbacks)
399 for (
auto &
C : OptimizerEarlyEPCallbacks)
405 for (
auto &
C : OptimizerLastEPCallbacks)
410 for (
auto &
C : FullLinkTimeOptimizationEarlyEPCallbacks)
415 for (
auto &
C : FullLinkTimeOptimizationLastEPCallbacks)
420 for (
auto &
C : PipelineStartEPCallbacks)
425 for (
auto &
C : PipelineEarlySimplificationEPCallbacks)
431 bool IsPreOptimization) {
498 FPM.
addPass(CountVisitsPass());
505 FPM.
addPass(EarlyCSEPass(
true ));
509 SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
true)));
510 FPM.
addPass(InstCombinePass());
512 FPM.
addPass(LibCallsShrinkWrapPass());
517 SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
true)));
522 FPM.
addPass(ReassociatePass());
538 LPM1.addPass(LoopInstSimplifyPass());
539 LPM1.addPass(LoopSimplifyCFGPass());
547 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
553 LPM1.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
555 LPM1.addPass(SimpleLoopUnswitchPass());
557 LPM1.addPass(LoopFlattenPass());
559 LPM2.addPass(LoopIdiomRecognizePass());
560 LPM2.addPass(IndVarSimplifyPass());
564 LPM2.addPass(LoopDeletionPass());
573 LPM2.addPass(LoopFullUnrollPass(
Level.getSpeedupLevel(),
575 PTO.ForgetAllSCEVInLoopUnroll));
582 SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
true)));
583 FPM.
addPass(InstCombinePass());
607 FPM.
addPass(InstCombinePass());
619 SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
true)));
620 FPM.
addPass(InstCombinePass());
633 if (Level.getSpeedupLevel() == 1)
634 return buildO1FunctionSimplificationPipeline(Level,
Phase);
686 isInstrumentedPGOUse()));
721 LPM1.addPass(
LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
727 LPM1.addPass(
LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
741 LPM2.addPass(std::move(ExtraPasses));
757 PTO.ForgetAllSCEVInLoopUnroll));
821 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
830 .convertSwitchRangeToICmp(
true)
831 .convertSwitchToArithmetic(
true)
832 .hoistCommonInsts(
true)
833 .sinkCommonInsts(
true)));
870 FPM.
addPass(SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
872 FPM.
addPass(InstCombinePass());
876 std::move(FPM), PTO.EagerlyInvalidateAnalyses));
893 PTO.EagerlyInvalidateAnalyses));
899 bool IsCS,
bool AtomicCounterUpdate,
900 std::string ProfileFile,
901 std::string ProfileRemappingFile) {
904 if (!RunProfileGen) {
905 assert(!ProfileFile.empty() &&
"Profile use expecting a profile file!");
907 PGOInstrumentationUse(ProfileFile, ProfileRemappingFile, IsCS, FS));
910 MPM.
addPass(RequireAnalysisPass<ProfileSummaryAnalysis, Module>());
918 addPostPGOLoopRotation(MPM, Level);
921 if (!ProfileFile.empty())
922 Options.InstrProfileOutput = ProfileFile;
924 Options.DoCounterPromotion =
true;
925 Options.UseBFIInPromotion = IsCS;
930 Options.DoCounterPromotion =
false;
932 Options.Atomic = AtomicCounterUpdate;
937 bool RunProfileGen,
bool IsCS,
938 bool AtomicCounterUpdate,
939 std::string ProfileFile,
940 std::string ProfileRemappingFile) {
941 if (!RunProfileGen) {
942 assert(!ProfileFile.empty() &&
"Profile use expecting a profile file!");
956 if (!ProfileFile.empty())
957 Options.InstrProfileOutput = ProfileFile;
959 Options.DoCounterPromotion =
false;
960 Options.UseBFIInPromotion = IsCS;
961 Options.Atomic = AtomicCounterUpdate;
973 if (PTO.InlinerThreshold == -1)
1046 PTO.EagerlyInvalidateAnalyses,
true));
1107 PTO.EagerlyInvalidateAnalyses));
1123 "Should not be used for O0 pipeline");
1126 "FullLTOPostLink shouldn't call buildModuleSimplificationPipeline!");
1140 bool LoadSampleProfile =
1181 std::move(EarlyFPM), PTO.EagerlyInvalidateAnalyses));
1184 if (LoadSampleProfile) {
1188 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile,
Phase, FS));
1244 PTO.EagerlyInvalidateAnalyses));
1249 const bool IsCtxProfGen =
1251 const bool IsPGOPreLink = !IsCtxProfGen && PGOOpt && IsPreLink;
1252 const bool IsPGOInstrGen =
1254 const bool IsPGOInstrUse =
1256 const bool IsMemprofUse = IsPGOPreLink && !PGOOpt->MemoryProfile.empty();
1260 "Enabling both instrumented PGO and contextual instrumentation is not "
1266 "--instrument-cold-function-only-path is provided but "
1267 "--pgo-instrument-cold-function-only is not enabled");
1272 if (IsPGOInstrGen || IsPGOInstrUse || IsMemprofUse || IsCtxProfGen ||
1273 IsCtxProfUse || IsColdFuncOnlyInstrGen)
1274 addPreInlinerPasses(MPM, Level,
Phase);
1277 if (IsPGOInstrGen || IsPGOInstrUse) {
1278 addPGOInstrPasses(MPM, Level,
1280 false, PGOOpt->AtomicCounterUpdate,
1281 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile);
1282 }
else if (IsCtxProfGen || IsCtxProfUse) {
1299 addPostPGOLoopRotation(MPM, Level);
1302 }
else if (IsColdFuncOnlyInstrGen) {
1303 addPGOInstrPasses(MPM, Level,
true,
false,
1309 if (IsPGOInstrGen || IsPGOInstrUse || IsCtxProfGen)
1400 FPM.
addPass(InstCombinePass());
1403 ExtraFunctionPassManager<ShouldRunExtraVectorPasses> ExtraPasses;
1410 ExtraPasses.
addPass(EarlyCSEPass());
1411 ExtraPasses.
addPass(CorrelatedValuePropagationPass());
1412 ExtraPasses.
addPass(InstCombinePass());
1414 LPM.addPass(LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
1416 LPM.addPass(SimpleLoopUnswitchPass( Level ==
1421 SimplifyCFGPass(SimplifyCFGOptions().convertSwitchRangeToICmp(
true)));
1422 ExtraPasses.
addPass(InstCombinePass());
1423 FPM.
addPass(std::move(ExtraPasses));
1435 FPM.
addPass(SimplifyCFGPass(SimplifyCFGOptions()
1436 .forwardSwitchCondToPhi(
true)
1437 .convertSwitchRangeToICmp(
true)
1438 .convertSwitchToArithmetic(
true)
1439 .convertSwitchToLookupTable(
true)
1440 .needCanonicalLoops(
false)
1441 .hoistCommonInsts(
true)
1442 .sinkCommonInsts(
true)));
1446 FPM.
addPass(InstCombinePass());
1451 if (PTO.SLPVectorization) {
1452 FPM.
addPass(SLPVectorizerPass());
1458 FPM.
addPass(VectorCombinePass());
1461 FPM.
addPass(InstCombinePass());
1471 LoopUnrollAndJamPass(
Level.getSpeedupLevel())));
1473 FPM.
addPass(LoopUnrollPass(LoopUnrollOptions(
1474 Level.getSpeedupLevel(), !PTO.LoopUnrolling,
1475 PTO.ForgetAllSCEVInLoopUnroll)));
1476 FPM.
addPass(WarnMissedTransformationsPass());
1495 FPM.
addPass(InferAlignmentPass());
1496 FPM.
addPass(InstCombinePass());
1505 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
1511 FPM.
addPass(AlignmentFromAssumptionsPass());
1547 addPGOInstrPasses(MPM, Level,
true,
1548 true, PGOOpt->AtomicCounterUpdate,
1549 PGOOpt->CSProfileGenFile, PGOOpt->ProfileRemappingFile);
1551 addPGOInstrPasses(MPM, Level,
false,
1552 true, PGOOpt->AtomicCounterUpdate,
1553 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile);
1586 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
1625 if (PTO.LoopInterchange)
1646 addVectorPasses(Level, OptimizePM, LTOPhase);
1678 .convertSwitchRangeToICmp(
true)
1679 .convertSwitchToArithmetic(
true)
1680 .speculateUnpredictables(
true)
1681 .hoistLoadsStoresWithCondFaulting(
true)));
1685 PTO.EagerlyInvalidateAnalyses));
1720 if (PTO.MergeFunctions)
1740 PTO.DevirtualizeSpeculatively));
1793 if (PGOOpt && PGOOpt->DebugInfoForProfiling)
1805 if (PGOOpt && PGOOpt->PseudoProbeForProfiling &&
1813 addRequiredLTOPreLinkPasses(MPM);
1821 bool EmitSummary,
bool Verify) {
1895 if (PGOOpt && PGOOpt->DebugInfoForProfiling)
1910 addRequiredLTOPreLinkPasses(MPM);
1924 if (PGOOpt && PGOOpt->PseudoProbeForProfiling &&
1942 addRequiredLTOPreLinkPasses(MPM);
1961 if (ImportSummary) {
2076 PGOOpt->ProfileRemappingFile,
2094 if (Level.getSpeedupLevel() > 1) {
2185 if (Level.getSpeedupLevel() > 1)
2190 PTO.EagerlyInvalidateAnalyses));
2252 addPGOInstrPasses(MPM, Level,
true,
2253 true, PGOOpt->AtomicCounterUpdate,
2254 PGOOpt->CSProfileGenFile, PGOOpt->ProfileRemappingFile);
2256 addPGOInstrPasses(MPM, Level,
false,
2257 true, PGOOpt->AtomicCounterUpdate,
2258 PGOOpt->ProfileFile, PGOOpt->ProfileRemappingFile);
2271 PTO.EagerlyInvalidateAnalyses));
2288 LICMPass(PTO.LicmMssaOptCap, PTO.LicmMssaNoAccForPromotionCap,
2317 PTO.ForgetAllSCEVInLoopUnroll));
2336 PTO.EagerlyInvalidateAnalyses));
2367 .convertSwitchRangeToICmp(
true)
2368 .convertSwitchToArithmetic(
true)
2369 .hoistCommonInsts(
true)
2370 .speculateUnpredictables(
true)));
2379 if (PTO.MergeFunctions)
2384 if (PTO.CallGraphProfile)
2407 "buildO0DefaultPipeline should only be used with O0");
2417 if (PGOOpt && PGOOpt->PseudoProbeForProfiling)
2425 false, PGOOpt->AtomicCounterUpdate, PGOOpt->ProfileFile,
2426 PGOOpt->ProfileRemappingFile);
2434 if (PGOOpt && PGOOpt->DebugInfoForProfiling)
2441 PGOOpt->ProfileRemappingFile,
2459 if (PTO.MergeFunctions)
2466 if (!CGSCCOptimizerLateEPCallbacks.empty()) {
2472 if (!LateLoopOptimizationsEPCallbacks.empty()) {
2475 if (!LPM.isEmpty()) {
2480 if (!LoopOptimizerEndEPCallbacks.empty()) {
2483 if (!LPM.isEmpty()) {
2488 if (!ScalarOptimizerLateEPCallbacks.empty()) {
2497 if (!VectorizerStartEPCallbacks.empty()) {
2504 if (!VectorizerEndEPCallbacks.empty()) {
2527 addRequiredLTOPreLinkPasses(MPM);
2545 TM->registerEarlyDefaultAliasAnalyses(
AA);
2566 TM->registerDefaultAliasAnalyses(
AA);
2571bool PassBuilder::isInstrumentedPGOUse()
const {
aarch64 falkor hwpf fix Falkor HW Prefetch Fix Late Phase
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AggressiveInstCombiner - Combine expression patterns to form expressions with fewer,...
Provides passes to inlining "always_inline" functions.
This is the interface for LLVM's primary stateless and local alias analysis.
This file provides the interface for LLVM's Call Graph Profile pass.
This header provides classes for managing passes over SCCs of the call graph.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file provides the interface for a simple, fast CSE pass.
This file provides a pass which clones the current module and runs the provided pass pipeline on the ...
Super simple passes to force specific function attrs from the commandline into the IR for debugging p...
Provides passes for computing function attributes based on interprocedural analyses.
This file provides the interface for LLVM's Global Value Numbering pass which eliminates fully redund...
This is the interface for a simple mod/ref and alias analysis over globals.
AcceleratorCodeSelection - Identify all functions reachable from a kernel, removing those that are un...
This header defines various interfaces for pass management in LLVM.
Interfaces for passes which infer implicit function attributes from the name and signature of functio...
This file provides the primary interface to the instcombine pass.
Defines passes for running instruction simplification across chunks of IR.
This file provides the interface for LLVM's PGO Instrumentation lowering pass.
See the comments on JumpThreadingPass.
This file implements the Loop Fusion pass.
This header defines the LoopLoadEliminationPass object.
This header provides classes for managing a pipeline of passes over loops in LLVM IR.
The header file for the LowerConstantIntrinsics pass as used by the new pass manager.
The header file for the LowerExpectIntrinsic pass as used by the new pass manager.
This pass performs merges of loads and stores on both sides of a.
This file provides the interface for LLVM's Global Value Numbering pass.
This header enumerates the LLVM-provided high-level optimization levels.
This file provides the interface for IR based instrumentation passes ( (profile-gen,...
Define option tunables for PGO.
ppc ctr loops PowerPC CTR Loops Verify
static bool isThinLTOPostLink(ThinOrFullLTOPhase Phase)
static void addAnnotationRemarksPass(ModulePassManager &MPM)
static CoroConditionalWrapper buildCoroWrapper(ThinOrFullLTOPhase Phase)
static bool isFullLTOPostLink(ThinOrFullLTOPhase Phase)
static bool isThinLTOPreLink(ThinOrFullLTOPhase Phase)
static bool isLTOPreLink(ThinOrFullLTOPhase Phase)
static void instructionCountersPass(ModulePassManager &MPM, bool IsPreOptimization)
static bool isFullLTOPreLink(ThinOrFullLTOPhase Phase)
static bool isLTOPostLink(ThinOrFullLTOPhase Phase)
This file implements relative lookup table converter that converts lookup tables to relative lookup t...
This file provides the interface for LLVM's Scalar Replacement of Aggregates pass.
This file provides the interface for the pseudo probe implementation for AutoFDO.
This file provides the interface for the sampled PGO loader pass.
This is the interface for a metadata-based scoped no-alias analysis.
This file provides the interface for the pass responsible for both simplifying and canonicalizing the...
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
This is the interface for a metadata-based TBAA.
Defines the virtual file system interface vfs::FileSystem.
A manager for alias analyses.
A module pass that rewrites heap allocations to use token-enabled allocation functions based on vario...
Inlines functions marked as "always_inline".
Analysis pass providing a never-invalidated alias analysis result.
Simple pass that canonicalizes aliases.
A pass that merges duplicate global constants into a single constant.
This class implements a trivial dead store elimination.
Eliminate dead arguments (and return values) from functions.
A pass that transforms external global definitions into declarations.
Pass embeds a copy of the module optimized with the provided pass pipeline into a global variable.
Statistics pass for the FunctionPropertiesAnalysis results.
The core GVN pass object.
Pass to remove unused function declarations.
Optimize globals that never have their address taken.
Pass to perform split of global variables.
Analysis pass providing a never-invalidated alias analysis result.
Pass to outline cold regions.
Pass to perform interprocedural constant propagation.
Pass to outline similar regions.
Run instruction simplification across each instruction in the function.
Instrumentation based profiling lowering pass.
This pass performs 'jump threading', which looks at blocks that have multiple predecessors and multip...
Performs Loop Invariant Code Motion Pass.
Loop unroll pass that only does full loop unrolling and peeling.
Performs Loop Idiom Recognize Pass.
Performs Loop Inst Simplify Pass.
A simple loop rotation transformation.
Performs basic CFG simplifications to assist other loop passes.
A pass that does profile-guided sinking of instructions into loops.
A simple loop rotation transformation.
Loop unroll pass that will support both full and partial unrolling.
Strips MemProf attributes and metadata.
Merge identical functions.
The module inliner pass for the new pass manager.
Module pass, wrapping the inliner pass.
void addModulePass(T Pass)
Add a module pass that runs before the CGSCC passes.
Class to hold module path string table and global value map, and encapsulate methods for operating on...
bool withSupportsHotColdNew() const
Simple pass that provides a name to every anonymous globals.
Additional 'norecurse' attribute deduction during postlink LTO phase.
OpenMP optimizations pass.
static LLVM_ABI const OptimizationLevel O3
Optimize for fast execution as much as possible.
static LLVM_ABI const OptimizationLevel O0
Disable as many optimizations as possible.
static LLVM_ABI const OptimizationLevel O2
Optimize for fast execution as much as possible without triggering significant incremental compile ti...
static LLVM_ABI const OptimizationLevel O1
Optimize quickly without destroying debuggability.
static LLVM_ABI bool isCtxIRPGOInstrEnabled()
The instrumentation (profile-instr-gen) pass for IR based PGO.
The instrumentation (profile-instr-gen) pass for IR based PGO.
The profile annotation (profile-instr-use) pass for IR based PGO.
The profile size based optimization pass for memory intrinsics.
Pass to remove unused function declarations.
LLVM_ABI void invokeFullLinkTimeOptimizationLastEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level)
LLVM_ABI ModuleInlinerWrapperPass buildInlinerPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase)
Construct the module pipeline that performs inlining as well as the inlining-driven cleanups.
LLVM_ABI void invokeOptimizerEarlyEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level, ThinOrFullLTOPhase Phase)
LLVM_ABI ModulePassManager buildFatLTODefaultPipeline(OptimizationLevel Level, bool ThinLTO, bool EmitSummary, bool Verify=true)
Build a fat object default optimization pipeline.
LLVM_ABI void invokeVectorizerStartEPCallbacks(FunctionPassManager &FPM, OptimizationLevel Level)
LLVM_ABI AAManager buildDefaultAAPipeline()
Build the default AAManager with the default alias analysis pipeline registered.
LLVM_ABI void invokeCGSCCOptimizerLateEPCallbacks(CGSCCPassManager &CGPM, OptimizationLevel Level)
LLVM_ABI ModulePassManager buildThinLTOPreLinkDefaultPipeline(OptimizationLevel Level)
Build a pre-link, ThinLTO-targeting default optimization pipeline to a pass manager.
LLVM_ABI void addPGOInstrPassesForO0(ModulePassManager &MPM, bool RunProfileGen, bool IsCS, bool AtomicCounterUpdate, std::string ProfileFile, std::string ProfileRemappingFile)
Add PGOInstrumenation passes for O0 only.
LLVM_ABI void invokeScalarOptimizerLateEPCallbacks(FunctionPassManager &FPM, OptimizationLevel Level)
LLVM_ABI ModulePassManager buildPerModuleDefaultPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase=ThinOrFullLTOPhase::None)
Build a per-module default optimization pipeline.
LLVM_ABI void invokePipelineStartEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level)
LLVM_ABI void invokeVectorizerEndEPCallbacks(FunctionPassManager &FPM, OptimizationLevel Level)
LLVM_ABI ModulePassManager buildO0DefaultPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase=ThinOrFullLTOPhase::None)
Build an O0 pipeline with the minimal semantically required passes.
LLVM_ABI FunctionPassManager buildFunctionSimplificationPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase)
Construct the core LLVM function canonicalization and simplification pipeline.
LLVM_ABI void invokePeepholeEPCallbacks(FunctionPassManager &FPM, OptimizationLevel Level)
LLVM_ABI void invokePipelineEarlySimplificationEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level, ThinOrFullLTOPhase Phase)
LLVM_ABI void invokeLoopOptimizerEndEPCallbacks(LoopPassManager &LPM, OptimizationLevel Level)
LLVM_ABI ModulePassManager buildLTODefaultPipeline(OptimizationLevel Level, ModuleSummaryIndex *ExportSummary)
Build an LTO default optimization pipeline to a pass manager.
LLVM_ABI ModulePassManager buildModuleInlinerPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase)
Construct the module pipeline that performs inlining with module inliner pass.
LLVM_ABI ModulePassManager buildThinLTODefaultPipeline(OptimizationLevel Level, const ModuleSummaryIndex *ImportSummary)
Build a ThinLTO default optimization pipeline to a pass manager.
LLVM_ABI void invokeLateLoopOptimizationsEPCallbacks(LoopPassManager &LPM, OptimizationLevel Level)
LLVM_ABI void invokeFullLinkTimeOptimizationEarlyEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level)
LLVM_ABI ModulePassManager buildModuleSimplificationPipeline(OptimizationLevel Level, ThinOrFullLTOPhase Phase)
Construct the core LLVM module canonicalization and simplification pipeline.
LLVM_ABI ModulePassManager buildModuleOptimizationPipeline(OptimizationLevel Level, ThinOrFullLTOPhase LTOPhase)
Construct the core LLVM module optimization pipeline.
LLVM_ABI void invokeOptimizerLastEPCallbacks(ModulePassManager &MPM, OptimizationLevel Level, ThinOrFullLTOPhase Phase)
LLVM_ABI ModulePassManager buildLTOPreLinkDefaultPipeline(OptimizationLevel Level)
Build a pre-link, LTO-targeting default optimization pipeline to a pass manager.
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t<!std::is_same_v< PassT, PassManager > > addPass(PassT &&Pass)
bool isEmpty() const
Returns if the pass manager contains any passes.
unsigned LicmMssaNoAccForPromotionCap
Tuning option to disable promotion to scalars in LICM with MemorySSA, if the number of access is too ...
bool SLPVectorization
Tuning option to enable/disable slp loop vectorization, set based on opt level.
bool DevirtualizeSpeculatively
int InlinerThreshold
Tuning option to override the default inliner threshold.
bool LoopFusion
Tuning option to enable/disable loop fusion. Its default value is false.
bool EagerlyInvalidateAnalyses
bool CallGraphProfile
Tuning option to enable/disable call graph profile.
bool MergeFunctions
Tuning option to enable/disable function merging.
bool ForgetAllSCEVInLoopUnroll
Tuning option to forget all SCEV loops in LoopUnroll.
unsigned LicmMssaOptCap
Tuning option to cap the number of calls to retrive clobbering accesses in MemorySSA,...
bool LoopInterleaving
Tuning option to set loop interleaving on/off, set based on opt level.
LLVM_ABI PipelineTuningOptions()
Constructor sets pipeline tuning defaults based on cl::opts.
bool LoopUnrolling
Tuning option to enable/disable loop unrolling. Its default value is true.
bool LoopInterchange
Tuning option to enable/disable loop interchange.
bool LoopVectorization
Tuning option to enable/disable loop vectorization, set based on opt level.
Reassociate commutative expressions.
A pass to do RPO deduction and propagation of function attributes.
This pass performs function-level constant propagation and merging.
The sample profiler data loader pass.
Analysis pass providing a never-invalidated alias analysis result.
This pass transforms loops that contain branches or switches on loop- invariant conditions to have mu...
A pass to simplify and canonicalize the CFG of a function.
Analysis pass providing a never-invalidated alias analysis result.
Optimize scalar/vector interactions in IR using target cost models.
Interfaces for registering analysis passes, producing common pass manager configurations,...
Abstract Attribute helper functions.
@ C
The default llvm calling convention, compatible with C.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
@ All
Drop only llvm.assumes using type test value.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI cl::opt< bool > EnableKnowledgeRetention
static cl::opt< bool > RunNewGVN("enable-newgvn", cl::init(false), cl::Hidden, cl::desc("Run the NewGVN pass"))
static cl::opt< bool > DisablePreInliner("disable-preinline", cl::init(false), cl::Hidden, cl::desc("Disable pre-instrumentation inliner"))
static cl::opt< bool > EnableDFAJumpThreading("enable-dfa-jump-thread", cl::desc("Enable DFA jump threading"), cl::init(true), cl::Hidden)
static cl::opt< bool > PerformMandatoryInliningsFirst("mandatory-inlining-first", cl::init(false), cl::Hidden, cl::desc("Perform mandatory inlinings module-wide, before performing " "inlining"))
static cl::opt< bool > RunPartialInlining("enable-partial-inlining", cl::init(false), cl::Hidden, cl::desc("Run Partial inlining pass"))
static cl::opt< bool > EnableGVNSink("enable-gvn-sink", cl::desc("Enable the GVN sinking pass (default = off)"))
static cl::opt< bool > EnableModuleInliner("enable-module-inliner", cl::init(false), cl::Hidden, cl::desc("Enable module inliner"))
static cl::opt< bool > EnableEagerlyInvalidateAnalyses("eagerly-invalidate-analyses", cl::init(true), cl::Hidden, cl::desc("Eagerly invalidate more analyses in default pipelines"))
static cl::opt< bool > EnableMatrix("enable-matrix", cl::init(false), cl::Hidden, cl::desc("Enable lowering of the matrix intrinsics"))
ModuleToFunctionPassAdaptor createModuleToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
cl::opt< std::string > UseCtxProfile("use-ctx-profile", cl::init(""), cl::Hidden, cl::desc("Use the specified contextual profile file"))
static cl::opt< bool > EnableSampledInstr("enable-sampled-instrumentation", cl::init(false), cl::Hidden, cl::desc("Enable profile instrumentation sampling (default = off)"))
static cl::opt< bool > EnableLoopFlatten("enable-loop-flatten", cl::init(false), cl::Hidden, cl::desc("Enable the LoopFlatten Pass"))
static cl::opt< InliningAdvisorMode > UseInlineAdvisor("enable-ml-inliner", cl::init(InliningAdvisorMode::Default), cl::Hidden, cl::desc("Enable ML policy for inliner. Currently trained for -Oz only"), cl::values(clEnumValN(InliningAdvisorMode::Default, "default", "Heuristics-based inliner version"), clEnumValN(InliningAdvisorMode::Development, "development", "Use development mode (runtime-loadable model)"), clEnumValN(InliningAdvisorMode::Release, "release", "Use release mode (AOT-compiled model)")))
static cl::opt< bool > EnableJumpTableToSwitch("enable-jump-table-to-switch", cl::init(true), cl::desc("Enable JumpTableToSwitch pass (default = true)"))
PassManager< LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult & > CGSCCPassManager
The CGSCC pass manager.
static cl::opt< bool > EnableUnrollAndJam("enable-unroll-and-jam", cl::init(false), cl::Hidden, cl::desc("Enable Unroll And Jam Pass"))
ThinOrFullLTOPhase
This enumerates the LLVM full LTO or ThinLTO optimization phases.
@ FullLTOPreLink
Full LTO prelink phase.
@ ThinLTOPostLink
ThinLTO postlink (backend compile) phase.
@ None
No LTO/ThinLTO behavior needed.
@ FullLTOPostLink
Full LTO postlink (backend compile) phase.
@ ThinLTOPreLink
ThinLTO prelink (summary) phase.
PassManager< Loop, LoopAnalysisManager, LoopStandardAnalysisResults &, LPMUpdater & > LoopPassManager
The Loop pass manager.
static cl::opt< bool > EnableConstraintElimination("enable-constraint-elimination", cl::init(true), cl::Hidden, cl::desc("Enable pass to eliminate conditions based on linear constraints"))
ModuleToPostOrderCGSCCPassAdaptor createModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT &&Pass)
A function to deduce a function pass type and wrap it in the templated adaptor.
static cl::opt< bool > EnablePGOInlineDeferral("enable-npm-pgo-inline-deferral", cl::init(true), cl::Hidden, cl::desc("Enable inline deferral during PGO"))
Flag to enable inline deferral during PGO.
FunctionToLoopPassAdaptor createFunctionToLoopPassAdaptor(LoopPassT &&Pass, bool UseMemorySSA=false)
A function to deduce a loop pass type and wrap it in the templated adaptor.
CGSCCToFunctionPassAdaptor createCGSCCToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false, bool NoRerun=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
LLVM_ABI cl::opt< bool > ForgetSCEVInLoopUnroll
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
static cl::opt< bool > EnablePostPGOLoopRotation("enable-post-pgo-loop-rotation", cl::init(true), cl::Hidden, cl::desc("Run the loop rotation transformation after PGO instrumentation"))
LLVM_ABI bool AreStatisticsEnabled()
Check if statistics are enabled.
static cl::opt< std::string > InstrumentColdFuncOnlyPath("instrument-cold-function-only-path", cl::init(""), cl::desc("File path for cold function only instrumentation(requires use " "with --pgo-instrument-cold-function-only)"), cl::Hidden)
static cl::opt< bool > EnableGlobalAnalyses("enable-global-analyses", cl::init(true), cl::Hidden, cl::desc("Enable inter-procedural analyses"))
static cl::opt< bool > FlattenedProfileUsed("flattened-profile-used", cl::init(false), cl::Hidden, cl::desc("Indicate the sample profile being used is flattened, i.e., " "no inline hierarchy exists in the profile"))
static cl::opt< AttributorRunOption > AttributorRun("attributor-enable", cl::Hidden, cl::init(AttributorRunOption::NONE), cl::desc("Enable the attributor inter-procedural deduction pass"), cl::values(clEnumValN(AttributorRunOption::FULL, "full", "enable all full attributor runs"), clEnumValN(AttributorRunOption::LIGHT, "light", "enable all attributor-light runs"), clEnumValN(AttributorRunOption::MODULE, "module", "enable module-wide attributor runs"), clEnumValN(AttributorRunOption::MODULE_LIGHT, "module-light", "enable module-wide attributor-light runs"), clEnumValN(AttributorRunOption::CGSCC, "cgscc", "enable call graph SCC attributor runs"), clEnumValN(AttributorRunOption::CGSCC_LIGHT, "cgscc-light", "enable call graph SCC attributor-light runs"), clEnumValN(AttributorRunOption::NONE, "none", "disable attributor runs")))
static cl::opt< bool > EnableLoopInterchange("enable-loopinterchange", cl::init(true), cl::Hidden, cl::desc("Enable the LoopInterchange Pass"))
static cl::opt< bool > ExtraVectorizerPasses("extra-vectorizer-passes", cl::init(false), cl::Hidden, cl::desc("Run cleanup optimization passes after vectorization"))
static cl::opt< bool > EnableHotColdSplit("hot-cold-split", cl::desc("Enable hot-cold splitting pass"))
cl::opt< bool > EnableMemProfContextDisambiguation
Enable MemProf context disambiguation for thin link.
static cl::opt< bool > TriggerCrash("opt-pipeline-trigger-crash", cl::init(false), cl::Hidden, cl::desc("Trigger crash in optimization pipeline"))
PassManager< Function > FunctionPassManager
Convenience typedef for a pass manager over functions.
LLVM_ABI InlineParams getInlineParams()
Generate the parameters to tune the inline cost analysis based only on the commandline options.
cl::opt< bool > PGOInstrumentColdFunctionOnly
static cl::opt< bool > EnableCHR("enable-chr", cl::init(true), cl::Hidden, cl::desc("Enable control height reduction optimization (CHR)"))
static cl::opt< bool > EnableMergeFunctions("enable-merge-functions", cl::init(false), cl::Hidden, cl::desc("Enable function merging as part of the optimization pipeline"))
static cl::opt< bool > EnableDevirtualizeSpeculatively("enable-devirtualize-speculatively", cl::desc("Enable speculative devirtualization optimization"), cl::init(false))
static cl::opt< bool > EnableGVNHoist("enable-gvn-hoist", cl::desc("Enable the GVN hoisting pass (default = off)"))
LLVM_ABI cl::opt< unsigned > SetLicmMssaNoAccForPromotionCap
LLVM_ABI InlineParams getInlineParamsFromOptLevel(unsigned OptLevel)
Generate the parameters to tune the inline cost analysis based on command line options.
static cl::opt< bool > EnableIROutliner("ir-outliner", cl::init(false), cl::Hidden, cl::desc("Enable ir outliner pass"))
static cl::opt< int > PreInlineThreshold("preinline-threshold", cl::Hidden, cl::init(75), cl::desc("Control the amount of inlining in pre-instrumentation inliner " "(default = 75)"))
static cl::opt< bool > UseLoopVersioningLICM("enable-loop-versioning-licm", cl::init(false), cl::Hidden, cl::desc("Enable the experimental Loop Versioning LICM pass"))
cl::opt< unsigned > MaxDevirtIterations("max-devirt-iterations", cl::ReallyHidden, cl::init(4))
LLVM_ABI cl::opt< unsigned > SetLicmMssaOptCap
static cl::opt< bool > EnableInstrumentor("enable-instrumentor", cl::init(false), cl::Hidden, cl::desc("Enable the Instrumentor Pass"))
static cl::opt< bool > EnableMergeICmps("enable-mergeicmps", cl::init(true), cl::Hidden, cl::desc("Enable MergeICmps pass in the optimization pipeline"))
A DCE pass that assumes instructions are dead until proven otherwise.
This pass attempts to minimize the number of assume without loosing any information.
A more lightweight version of the Attributor which only runs attribute inference but no simplificatio...
A more lightweight version of the Attributor which only runs attribute inference but no simplificatio...
Hoist/decompose integer division and remainder instructions to enable CFG improvements and better cod...
A simple and fast domtree-based CSE pass.
Pass which forces specific function attributes into the IR, primarily as a debugging tool.
A simple and fast domtree-based GVN pass to hoist common expressions from sibling branches.
Uses an "inverted" value numbering to decide the similarity of expressions and sinks similar expressi...
A set of parameters to control various transforms performed by IPSCCP pass.
A pass which infers function attributes from the names and signatures of function declarations in a m...
Provides context on when an inline advisor is constructed in the pipeline (e.g., link phase,...
Thresholds to tune inline cost analysis.
std::optional< int > OptSizeHintThreshold
Threshold to use for callees with inline hint, when the caller is optimized for size.
std::optional< int > HotCallSiteThreshold
Threshold to use when the callsite is considered hot.
int DefaultThreshold
The default threshold to start with for a callee.
std::optional< bool > EnableDeferral
Indicate whether we should allow inline deferral.
std::optional< int > HintThreshold
Threshold to use for callees with inline hint.
Options for the frontend instrumentation based profiling pass.
A no-op pass template which simply forces a specific analysis result to be invalidated.
Pass to forward loads in a loop around the backedge to subsequent iterations.
A set of parameters used to control various transforms performed by the LoopUnroll pass.
Computes function attributes in post-order over the call graph.
A utility pass template to force an analysis result to be available.