408 "Print string describing the pipeline (best-effort only).\n"
409 " - =text\tPrint a '-passes' compatible string describing the "
411 " - =tree\tPrint a tree-like structure describing the pipeline."));
415 std::optional<PrintPipelinePassesFormat> &Val) {
416 std::optional<PrintPipelinePassesFormat>
Format =
425 "'{0}' value invalid for print-pipeline-passes argument!", Arg));
439 for (
char C : Pipeline) {
447 assert(IndentLevel >= 0 &&
"Invalid pipeline string!");
477 return MFA ? &MFA->
getMF() :
nullptr;
483class TriggerVerifierErrorPass
489 auto *PtrTy = PointerType::getUnqual(
M.getContext());
491 GlobalValue::LinkageTypes::InternalLinkage,
492 "__bad_alias",
nullptr, &M);
512 static StringRef
name() {
return "TriggerVerifierErrorPass"; }
517class RequireAllMachineFunctionPropertiesPass
525 static MachineFunctionProperties getRequiredProperties() {
526 return MachineFunctionProperties()
528 .setFailsVerification()
533 .setRegBankSelected()
535 .setTiedOpsRewritten()
536 .setTracksDebugUserValues()
537 .setTracksLiveness();
539 static StringRef
name() {
return "RequireAllMachineFunctionPropertiesPass"; }
545 if (S ==
"Os" || S ==
"Oz")
547 Twine(
"The optimization level \"") + S +
548 "\" is no longer supported. Use O2 in conjunction with the " +
549 (S ==
"Os" ?
"optsize" :
"minsize") +
" attribute instead.");
560 std::optional<OptimizationLevel> OptLevel =
parseOptLevel(S);
564 formatv(
"invalid optimization level '{}'", S).str(),
569 std::optional<PGOOptions> PGOOpt,
572 : TM(TM), PTO(PTO), PGOOpt(PGOOpt), PIC(PIC), FS(
std::
move(FS)) {
574 TM->registerPassBuilderCallbacks(*
this);
576 PIC->registerClassToPassNameCallback([
this, PIC]() {
580#define MODULE_PASS(NAME, CREATE_PASS) \
581 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
582#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
583 PIC->addClassToPassName(CLASS, NAME);
584#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
585 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
586#define FUNCTION_PASS(NAME, CREATE_PASS) \
587 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
588#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
589 PIC->addClassToPassName(CLASS, NAME);
590#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
591 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
592#define LOOPNEST_PASS(NAME, CREATE_PASS) \
593 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
594#define LOOP_PASS(NAME, CREATE_PASS) \
595 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
596#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
597 PIC->addClassToPassName(CLASS, NAME);
598#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
599 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
600#define CGSCC_PASS(NAME, CREATE_PASS) \
601 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
602#define CGSCC_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
603 PIC->addClassToPassName(CLASS, NAME);
604#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
605 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
606#include "PassRegistry.def"
608#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
609 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
610#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) \
611 PIC->addClassToPassName(decltype(CREATE_PASS)::name(), NAME);
612#define MACHINE_FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, \
614 PIC->addClassToPassName(CLASS, NAME);
615#include "llvm/Passes/MachinePassRegistry.def"
623#define MODULE_CALLBACK(NAME, INVOKE) \
624 if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
625 auto L = PassBuilder::parsePassParameters(parseOptLevelParam, Name, NAME); \
627 errs() << NAME ": " << toString(L.takeError()) << '\n'; \
630 INVOKE(PM, L.get()); \
633#include "PassRegistry.def"
641#define MODULE_LTO_CALLBACK(NAME, INVOKE) \
642 if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
643 auto L = PassBuilder::parsePassParameters(parseOptLevelParam, Name, NAME); \
645 errs() << NAME ": " << toString(L.takeError()) << '\n'; \
648 INVOKE(PM, L.get(), ThinOrFullLTOPhase::None); \
651#include "PassRegistry.def"
659#define FUNCTION_CALLBACK(NAME, INVOKE) \
660 if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
661 auto L = PassBuilder::parsePassParameters(parseOptLevelParam, Name, NAME); \
663 errs() << NAME ": " << toString(L.takeError()) << '\n'; \
666 INVOKE(PM, L.get()); \
669#include "PassRegistry.def"
677#define CGSCC_CALLBACK(NAME, INVOKE) \
678 if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
679 auto L = PassBuilder::parsePassParameters(parseOptLevelParam, Name, NAME); \
681 errs() << NAME ": " << toString(L.takeError()) << '\n'; \
684 INVOKE(PM, L.get()); \
687#include "PassRegistry.def"
695#define LOOP_CALLBACK(NAME, INVOKE) \
696 if (PassBuilder::checkParametrizedPassName(Name, NAME)) { \
697 auto L = PassBuilder::parsePassParameters(parseOptLevelParam, Name, NAME); \
699 errs() << NAME ": " << toString(L.takeError()) << '\n'; \
702 INVOKE(PM, L.get()); \
705#include "PassRegistry.def"
711#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
712 MAM.registerPass([&] { return CREATE_PASS; });
713#include "PassRegistry.def"
715 for (
auto &
C : ModuleAnalysisRegistrationCallbacks)
720#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
721 CGAM.registerPass([&] { return CREATE_PASS; });
722#include "PassRegistry.def"
724 for (
auto &
C : CGSCCAnalysisRegistrationCallbacks)
734#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
735 if constexpr (std::is_constructible_v< \
736 std::remove_reference_t<decltype(CREATE_PASS)>, \
737 const TargetMachine &>) { \
739 FAM.registerPass([&] { return CREATE_PASS; }); \
741 FAM.registerPass([&] { return CREATE_PASS; }); \
743#include "PassRegistry.def"
745 for (
auto &
C : FunctionAnalysisRegistrationCallbacks)
752#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
753 MFAM.registerPass([&] { return CREATE_PASS; });
754#include "llvm/Passes/MachinePassRegistry.def"
756 for (
auto &
C : MachineFunctionAnalysisRegistrationCallbacks)
761#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
762 LAM.registerPass([&] { return CREATE_PASS; });
763#include "PassRegistry.def"
765 for (
auto &
C : LoopAnalysisRegistrationCallbacks)
769static std::optional<std::pair<bool, bool>>
771 std::pair<bool, bool> Params;
772 if (!Name.consume_front(
"function"))
776 if (!Name.consume_front(
"<") || !Name.consume_back(
">"))
778 while (!Name.empty()) {
779 auto [Front, Back] = Name.split(
';');
781 if (Front ==
"eager-inv")
783 else if (Front ==
"no-rerun")
784 Params.second =
true;
792 if (!Name.consume_front(
"devirt<") || !Name.consume_back(
">"))
804 while (!Params.
empty()) {
806 std::tie(ParamName, Params) = Params.
split(
';');
808 if (ParamName == OptionName) {
825 while (!Params.
empty()) {
827 std::tie(ParamName, Params) = Params.
split(
';');
832 formatv(
"invalid HardwareLoopPass parameter '{}'", ParamName).str(),
837 if (ParamName.
consume_front(
"hardware-loop-counter-bitwidth=")) {
841 formatv(
"invalid HardwareLoopPass parameter '{}'", ParamName).str(),
846 if (ParamName ==
"force-hardware-loops") {
848 }
else if (ParamName ==
"force-hardware-loop-phi") {
850 }
else if (ParamName ==
"force-nested-hardware-loop") {
852 }
else if (ParamName ==
"force-hardware-loop-guard") {
856 formatv(
"invalid HardwarePass parameter '{}'", ParamName).str(),
860 return HardwareLoopOpts;
872 "FunctionPropertiesStatisticsPass");
883 while (!Params.
empty()) {
885 std::tie(ParamName, Params) = Params.
split(
';');
886 std::optional<OptimizationLevel> OptLevel =
parseOptLevel(ParamName);
888 UnrollOpts.
setOptLevel(OptLevel->getSpeedupLevel());
895 formatv(
"invalid LoopUnrollPass parameter '{}'", ParamName).str(),
902 if (ParamName ==
"partial") {
904 }
else if (ParamName ==
"peeling") {
906 }
else if (ParamName ==
"profile-peeling") {
908 }
else if (ParamName ==
"runtime") {
910 }
else if (ParamName ==
"upperbound") {
914 formatv(
"invalid LoopUnrollPass parameter '{}'", ParamName).str(),
923 Params,
"vfe-linkage-unit-visibility",
"GlobalDCE");
943 Params,
"skip-non-recursive-function-attrs",
"PostOrderFunctionAttrs");
952 "EntryExitInstrumenter");
957 "DropUnnecessaryAssumes");
966 "LowerMatrixIntrinsics");
971 while (!Params.
empty()) {
973 std::tie(ParamName, Params) = Params.
split(
';');
976 if (ParamName ==
"preserve-order")
978 else if (ParamName ==
"rename-all")
980 else if (ParamName ==
"fold-all")
982 else if (ParamName ==
"reorder-operands")
986 formatv(
"invalid normalize pass parameter '{}'", ParamName).str(),
996 while (!Params.
empty()) {
998 std::tie(ParamName, Params) = Params.
split(
';');
1000 if (ParamName ==
"kernel") {
1001 Result.CompileKernel =
true;
1002 }
else if (ParamName ==
"use-after-scope") {
1003 Result.UseAfterScope =
true;
1006 formatv(
"invalid AddressSanitizer pass parameter '{}'", ParamName)
1016 while (!Params.
empty()) {
1018 std::tie(ParamName, Params) = Params.
split(
';');
1020 if (ParamName ==
"recover") {
1022 }
else if (ParamName ==
"kernel") {
1023 Result.CompileKernel =
true;
1026 formatv(
"invalid HWAddressSanitizer pass parameter '{}'", ParamName)
1035parseDropTypeTestsPassOptions(
StringRef Params) {
1037 while (!Params.
empty()) {
1039 std::tie(ParamName, Params) = Params.
split(
';');
1041 if (ParamName ==
"all") {
1043 }
else if (ParamName ==
"assume") {
1047 formatv(
"invalid DropTypeTestsPass parameter '{}'", ParamName).str(),
1056 while (!Params.
empty()) {
1058 std::tie(ParamName, Params) = Params.
split(
';');
1060 if (ParamName ==
"thinlto") {
1062 }
else if (ParamName ==
"emit-summary") {
1063 Result.EmitLTOSummary =
true;
1066 formatv(
"invalid EmbedBitcode pass parameter '{}'", ParamName).str(),
1074parseLowerAllowCheckPassOptions(
StringRef Params) {
1076 while (!Params.
empty()) {
1078 std::tie(ParamName, Params) = Params.
split(
';');
1089 std::tie(IndicesStr, CutoffStr) = ParamName.
split(
"]=");
1096 formatv(
"invalid LowerAllowCheck pass cutoffs parameter '{}' ({})",
1101 if (!IndicesStr.
consume_front(
"cutoffs[") || IndicesStr ==
"")
1103 formatv(
"invalid LowerAllowCheck pass index parameter '{}' ({})",
1104 IndicesStr, CutoffStr)
1108 while (IndicesStr !=
"") {
1110 std::tie(firstIndexStr, IndicesStr) = IndicesStr.
split(
'|');
1116 "invalid LowerAllowCheck pass index parameter '{}' ({}) {}",
1117 firstIndexStr, IndicesStr)
1124 if (index >=
Result.cutoffs.size())
1125 Result.cutoffs.resize(index + 1, 0);
1127 Result.cutoffs[index] = cutoff;
1129 }
else if (ParamName.
starts_with(
"runtime_check")) {
1131 std::tie(std::ignore, ValueString) = ParamName.
split(
"=");
1135 formatv(
"invalid LowerAllowCheck pass runtime_check parameter '{}' "
1137 ValueString, Params)
1141 Result.runtime_check = runtime_check;
1144 formatv(
"invalid LowerAllowCheck pass parameter '{}'", ParamName)
1155 while (!Params.
empty()) {
1157 std::tie(ParamName, Params) = Params.
split(
';');
1159 if (ParamName ==
"recover") {
1161 }
else if (ParamName ==
"kernel") {
1166 formatv(
"invalid argument to MemorySanitizer pass track-origins "
1171 }
else if (ParamName ==
"eager-checks") {
1172 Result.EagerChecks =
true;
1175 formatv(
"invalid MemorySanitizer pass parameter '{}'", ParamName)
1185 while (!Params.
empty()) {
1187 std::tie(ParamName, Params) = Params.
split(
';');
1194 formatv(
"invalid argument to AllocToken pass mode "
1201 formatv(
"invalid AllocToken pass parameter '{}'", ParamName).str(),
1211 while (!Params.
empty()) {
1213 std::tie(ParamName, Params) = Params.
split(
';');
1216 if (ParamName ==
"speculate-blocks") {
1218 }
else if (ParamName ==
"simplify-cond-branch") {
1220 }
else if (ParamName ==
"forward-switch-cond") {
1222 }
else if (ParamName ==
"switch-range-to-icmp") {
1224 }
else if (ParamName ==
"switch-to-arithmetic") {
1226 }
else if (ParamName ==
"switch-to-lookup") {
1228 }
else if (ParamName ==
"keep-loops") {
1230 }
else if (ParamName ==
"hoist-common-insts") {
1232 }
else if (ParamName ==
"hoist-loads-stores-with-cond-faulting") {
1234 }
else if (ParamName ==
"sink-common-insts") {
1236 }
else if (ParamName ==
"speculate-unpredictables") {
1239 APInt BonusInstThreshold;
1242 formatv(
"invalid argument to SimplifyCFG pass bonus-threshold "
1250 formatv(
"invalid SimplifyCFG pass parameter '{}'", ParamName).str(),
1261 Result.setVerifyFixpoint(
true);
1262 while (!Params.
empty()) {
1264 std::tie(ParamName, Params) = Params.
split(
';');
1267 if (ParamName ==
"verify-fixpoint") {
1270 APInt MaxIterations;
1273 formatv(
"invalid argument to InstCombine pass max-iterations "
1281 formatv(
"invalid InstCombine pass parameter '{}'", ParamName).str(),
1291 while (!Params.
empty()) {
1293 std::tie(ParamName, Params) = Params.
split(
';');
1296 if (ParamName ==
"interleave-forced-only") {
1298 }
else if (ParamName ==
"vectorize-forced-only") {
1302 formatv(
"invalid LoopVectorize parameter '{}'", ParamName).str(),
1310 std::pair<bool, bool>
Result = {
false,
true};
1311 while (!Params.
empty()) {
1313 std::tie(ParamName, Params) = Params.
split(
';');
1316 if (ParamName ==
"nontrivial") {
1318 }
else if (ParamName ==
"trivial") {
1322 formatv(
"invalid LoopUnswitch pass parameter '{}'", ParamName).str(),
1331 while (!Params.
empty()) {
1333 std::tie(ParamName, Params) = Params.
split(
';');
1336 if (ParamName ==
"allowspeculation") {
1340 formatv(
"invalid LICM pass parameter '{}'", ParamName).str(),
1347struct LoopRotateOptions {
1348 bool EnableHeaderDuplication =
true;
1349 bool PrepareForLTO =
false;
1350 bool CheckExitCount =
false;
1354 LoopRotateOptions
Result;
1355 while (!Params.
empty()) {
1357 std::tie(ParamName, Params) = Params.
split(
';');
1360 if (ParamName ==
"header-duplication") {
1362 }
else if (ParamName ==
"prepare-for-lto") {
1364 }
else if (ParamName ==
"check-exit-count") {
1368 formatv(
"invalid LoopRotate pass parameter '{}'", ParamName).str(),
1377 while (!Params.
empty()) {
1379 std::tie(ParamName, Params) = Params.
split(
';');
1382 if (ParamName ==
"split-footer-bb") {
1386 formatv(
"invalid MergedLoadStoreMotion pass parameter '{}'",
1397 while (!Params.
empty()) {
1399 std::tie(ParamName, Params) = Params.
split(
';');
1402 if (ParamName ==
"scalar-pre") {
1404 }
else if (ParamName ==
"load-pre") {
1406 }
else if (ParamName ==
"split-backedge-load-pre") {
1408 }
else if (ParamName ==
"memdep") {
1412 }
else if (ParamName ==
"memoryssa") {
1418 formatv(
"invalid GVN pass parameter '{}'", ParamName).str(),
1427 while (!Params.
empty()) {
1429 std::tie(ParamName, Params) = Params.
split(
';');
1432 if (ParamName ==
"func-spec")
1436 formatv(
"invalid IPSCCP pass parameter '{}'", ParamName).str(),
1444 while (!Params.
empty()) {
1446 std::tie(ParamName, Params) = Params.
split(
';');
1451 formatv(
"invalid argument to Scalarizer pass min-bits "
1462 if (ParamName ==
"load-store")
1464 else if (ParamName ==
"variable-insert-extract")
1468 formatv(
"invalid Scalarizer pass parameter '{}'", ParamName).str(),
1478 bool SawCFGOption =
false;
1479 while (!Params.
empty()) {
1481 std::tie(ParamName, Params) = Params.
split(
';');
1483 if (ParamName ==
"modify-cfg") {
1488 SawCFGOption =
true;
1489 }
else if (ParamName ==
"preserve-cfg") {
1494 SawCFGOption =
true;
1495 }
else if (ParamName ==
"aggregate-to-vector") {
1496 Result.AggregateToVector =
true;
1499 formatv(
"invalid SROA pass parameter '{}' (expected preserve-cfg, "
1500 "modify-cfg, or aggregate-to-vector)",
1510parseStackLifetimeOptions(
StringRef Params) {
1512 while (!Params.
empty()) {
1514 std::tie(ParamName, Params) = Params.
split(
';');
1516 if (ParamName ==
"may") {
1518 }
else if (ParamName ==
"must") {
1522 formatv(
"invalid StackLifetime parameter '{}'", ParamName).str(),
1531 "DependenceAnalysisPrinter");
1536 "SeparateConstOffsetFromGEP");
1545parseFunctionSimplificationPipelineOptions(
StringRef Params) {
1549 formatv(
"invalid function-simplification parameter '{}'", Params).str(),
1557 "MemorySSAPrinterPass");
1562 "SpeculativeExecutionPass");
1567 while (!Params.
empty()) {
1569 std::tie(ParamName, Params) = Params.
split(
';');
1575 formatv(
"invalid MemProfUse pass parameter '{}'", ParamName).str(),
1583parseStructuralHashPrinterPassOptions(
StringRef Params) {
1586 if (Params ==
"detailed")
1588 if (Params ==
"call-target-ignored")
1591 formatv(
"invalid structural hash printer parameter '{}'", Params).str(),
1597 "WinEHPreparePass");
1602 while (!Params.
empty()) {
1604 std::tie(ParamName, Params) = Params.
split(
';');
1607 if (ParamName ==
"group-by-use")
1609 else if (ParamName ==
"ignore-single-use")
1611 else if (ParamName ==
"merge-const")
1613 else if (ParamName ==
"merge-const-aggressive")
1615 else if (ParamName ==
"merge-external")
1620 formatv(
"invalid GlobalMergePass parameter '{}'", ParamName).str(),
1624 formatv(
"invalid global-merge pass parameter '{}'", Params).str(),
1633 while (!Params.
empty()) {
1635 std::tie(ParamName, Params) = Params.
split(
';');
1641 formatv(
"invalid Internalize pass parameter '{}'", ParamName).str(),
1652 while (!Params.
empty()) {
1654 std::tie(ParamName, Params) = Params.
split(
';');
1657 std::optional<RegAllocFilterFunc>
Filter =
1661 formatv(
"invalid regallocfast register filter '{}'", ParamName)
1670 if (ParamName ==
"no-clear-vregs") {
1676 formatv(
"invalid regallocfast pass parameter '{}'", ParamName).str(),
1683parseBoundsCheckingOptions(
StringRef Params) {
1685 while (!Params.
empty()) {
1687 std::tie(ParamName, Params) = Params.
split(
';');
1688 if (ParamName ==
"trap") {
1690 }
else if (ParamName ==
"rt") {
1696 }
else if (ParamName ==
"rt-abort") {
1702 }
else if (ParamName ==
"min-rt") {
1708 }
else if (ParamName ==
"min-rt-abort") {
1714 }
else if (ParamName ==
"merge") {
1716 }
else if (ParamName ==
"handler-preserve-all-regs") {
1718 Options.Rt->HandlerPreserveAllRegs =
true;
1722 std::tie(ParamEQ, Val) = ParamName.
split(
'=');
1728 formatv(
"invalid BoundsChecking pass parameter '{}'", ParamName)
1745 if (!
Prefix.empty() || Digit.getAsInteger(10,
N))
1747 Param.str().c_str());
1750 if (!
Level.has_value())
1752 "invalid optimization level for expand-ir-insts pass: %s",
1753 Digit.str().c_str());
1760 if (Params.
empty() || Params ==
"all")
1761 return RAGreedyPass::Options();
1765 return RAGreedyPass::Options{*
Filter, Params};
1768 formatv(
"invalid regallocgreedy register filter '{}'", Params).str(),
1774 "MachineSinkingPass");
1778 bool AllowTailMerge =
true;
1779 if (!Params.
empty()) {
1781 if (Params !=
"tail-merge")
1783 formatv(
"invalid MachineBlockPlacementPass parameter '{}'", Params)
1787 return AllowTailMerge;
1791 bool ClearVirtRegs =
true;
1792 if (!Params.
empty()) {
1794 if (Params !=
"clear-vregs")
1796 formatv(
"invalid VirtRegRewriter pass parameter '{}'", Params).str(),
1799 return ClearVirtRegs;
1802struct FatLTOOptions {
1803 OptimizationLevel OptLevel;
1804 bool ThinLTO =
false;
1805 bool EmitSummary =
false;
1810 bool HaveOptLevel =
false;
1811 while (!Params.
empty()) {
1813 std::tie(ParamName, Params) = Params.
split(
';');
1815 if (ParamName ==
"thinlto") {
1817 }
else if (ParamName ==
"emit-summary") {
1818 Result.EmitSummary =
true;
1819 }
else if (std::optional<OptimizationLevel> OptLevel =
1821 Result.OptLevel = *OptLevel;
1822 HaveOptLevel =
true;
1825 formatv(
"invalid fatlto-pre-link pass parameter '{}'", ParamName)
1832 "missing optimization level for fatlto-pre-link pipeline",
1847template <
typename PassManagerT,
typename CallbacksT>
1849 if (!Callbacks.empty()) {
1850 PassManagerT DummyPM;
1851 for (
auto &CB : Callbacks)
1852 if (CB(Name, DummyPM, {}))
1858template <
typename CallbacksT>
1860 StringRef NameNoBracket = Name.take_until([](
char C) {
return C ==
'<'; });
1863 if (Name ==
"module")
1865 if (Name ==
"cgscc")
1867 if (NameNoBracket ==
"function")
1869 if (Name ==
"coro-cond")
1872#define MODULE_PASS(NAME, CREATE_PASS) \
1875#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
1876 if (PassBuilder::checkParametrizedPassName(Name, NAME)) \
1878#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
1879 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1881#include "PassRegistry.def"
1886template <
typename CallbacksT>
1889 StringRef NameNoBracket = Name.take_until([](
char C) {
return C ==
'<'; });
1890 if (Name ==
"cgscc")
1892 if (NameNoBracket ==
"function")
1899#define CGSCC_PASS(NAME, CREATE_PASS) \
1902#define CGSCC_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
1903 if (PassBuilder::checkParametrizedPassName(Name, NAME)) \
1905#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
1906 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1908#include "PassRegistry.def"
1913template <
typename CallbacksT>
1916 StringRef NameNoBracket = Name.take_until([](
char C) {
return C ==
'<'; });
1917 if (NameNoBracket ==
"function")
1919 if (Name ==
"loop" || Name ==
"loop-mssa" || Name ==
"machine-function")
1922#define FUNCTION_PASS(NAME, CREATE_PASS) \
1925#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
1926 if (PassBuilder::checkParametrizedPassName(Name, NAME)) \
1928#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
1929 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1931#include "PassRegistry.def"
1936template <
typename CallbacksT>
1939 if (Name ==
"machine-function")
1942#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) \
1945#define MACHINE_FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, \
1947 if (PassBuilder::checkParametrizedPassName(Name, NAME)) \
1950#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
1951 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1954#include "llvm/Passes/MachinePassRegistry.def"
1959template <
typename CallbacksT>
1961 bool &UseMemorySSA) {
1962 UseMemorySSA =
false;
1965 UseMemorySSA =
true;
1969#define LOOPNEST_PASS(NAME, CREATE_PASS) \
1972#include "PassRegistry.def"
1977template <
typename CallbacksT>
1979 bool &UseMemorySSA) {
1980 UseMemorySSA =
false;
1983 UseMemorySSA =
true;
1987#define LOOP_PASS(NAME, CREATE_PASS) \
1990#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
1991 if (PassBuilder::checkParametrizedPassName(Name, NAME)) \
1993#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
1994 if (Name == "require<" NAME ">" || Name == "invalidate<" NAME ">") \
1996#include "PassRegistry.def"
2001std::optional<std::vector<PassBuilder::PipelineElement>>
2003 std::vector<PipelineElement> ResultPipeline;
2008 std::vector<PipelineElement> &Pipeline = *PipelineStack.
back();
2009 size_t Pos =
Text.find_first_of(
",()");
2010 Pipeline.push_back({
Text.substr(0, Pos), {}});
2013 if (Pos ==
Text.npos)
2016 char Sep =
Text[Pos];
2024 PipelineStack.
push_back(&Pipeline.back().InnerPipeline);
2028 assert(Sep ==
')' &&
"Bogus separator!");
2033 if (PipelineStack.
size() == 1)
2034 return std::nullopt;
2037 }
while (
Text.consume_front(
")"));
2045 if (!
Text.consume_front(
","))
2046 return std::nullopt;
2049 if (PipelineStack.
size() > 1)
2051 return std::nullopt;
2053 assert(PipelineStack.
back() == &ResultPipeline &&
2054 "Wrong pipeline at the bottom of the stack!");
2055 return {std::move(ResultPipeline)};
2065 const PipelineElement &
E) {
2066 auto &
Name =
E.Name;
2067 auto &InnerPipeline =
E.InnerPipeline;
2070 if (!InnerPipeline.empty()) {
2071 if (Name ==
"module") {
2073 if (
auto Err = parseModulePassPipeline(NestedMPM, InnerPipeline))
2075 MPM.
addPass(std::move(NestedMPM));
2078 if (Name ==
"coro-cond") {
2080 if (
auto Err = parseModulePassPipeline(NestedMPM, InnerPipeline))
2082 MPM.
addPass(CoroConditionalWrapper(std::move(NestedMPM)));
2085 if (Name ==
"cgscc") {
2087 if (
auto Err = parseCGSCCPassPipeline(CGPM, InnerPipeline))
2095 "cannot have a no-rerun module to function adaptor",
2098 if (
auto Err = parseFunctionPassPipeline(FPM, InnerPipeline))
2105 for (
auto &
C : ModulePipelineParsingCallbacks)
2106 if (
C(Name, MPM, InnerPipeline))
2111 formatv(
"invalid use of '{}' pass as module pipeline", Name).str(),
2117#define MODULE_PASS(NAME, CREATE_PASS) \
2118 if (Name == NAME) { \
2119 MPM.addPass(CREATE_PASS); \
2120 return Error::success(); \
2122#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2123 if (checkParametrizedPassName(Name, NAME)) { \
2124 auto Params = parsePassParameters(PARSER, Name, NAME); \
2126 return Params.takeError(); \
2127 MPM.addPass(CREATE_PASS(Params.get())); \
2128 return Error::success(); \
2130#define MODULE_ANALYSIS(NAME, CREATE_PASS) \
2131 if (Name == "require<" NAME ">") { \
2133 RequireAnalysisPass< \
2134 std::remove_reference_t<decltype(CREATE_PASS)>, Module>()); \
2135 return Error::success(); \
2137 if (Name == "invalidate<" NAME ">") { \
2138 MPM.addPass(InvalidateAnalysisPass< \
2139 std::remove_reference_t<decltype(CREATE_PASS)>>()); \
2140 return Error::success(); \
2142#define CGSCC_PASS(NAME, CREATE_PASS) \
2143 if (Name == NAME) { \
2144 MPM.addPass(createModuleToPostOrderCGSCCPassAdaptor(CREATE_PASS)); \
2145 return Error::success(); \
2147#define CGSCC_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2148 if (checkParametrizedPassName(Name, NAME)) { \
2149 auto Params = parsePassParameters(PARSER, Name, NAME); \
2151 return Params.takeError(); \
2153 createModuleToPostOrderCGSCCPassAdaptor(CREATE_PASS(Params.get()))); \
2154 return Error::success(); \
2156#define FUNCTION_PASS(NAME, CREATE_PASS) \
2157 if (Name == NAME) { \
2158 if constexpr (std::is_constructible_v< \
2159 std::remove_reference_t<decltype(CREATE_PASS)>, \
2160 const TargetMachine &>) { \
2162 return make_error<StringError>( \
2163 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2164 inconvertibleErrorCode()); \
2166 MPM.addPass(createModuleToFunctionPassAdaptor(CREATE_PASS)); \
2167 return Error::success(); \
2169#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2170 if (checkParametrizedPassName(Name, NAME)) { \
2171 auto Params = parsePassParameters(PARSER, Name, NAME); \
2173 return Params.takeError(); \
2174 auto CreatePass = CREATE_PASS; \
2175 if constexpr (std::is_constructible_v< \
2176 std::remove_reference_t<decltype(CreatePass( \
2178 const TargetMachine &, \
2179 std::remove_reference_t<decltype(Params.get())>>) { \
2181 return make_error<StringError>( \
2182 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2183 inconvertibleErrorCode()); \
2186 MPM.addPass(createModuleToFunctionPassAdaptor(CREATE_PASS(Params.get()))); \
2187 return Error::success(); \
2189#define LOOPNEST_PASS(NAME, CREATE_PASS) \
2190 if (Name == NAME) { \
2191 MPM.addPass(createModuleToFunctionPassAdaptor( \
2192 createFunctionToLoopPassAdaptor(CREATE_PASS, false))); \
2193 return Error::success(); \
2195#define LOOP_PASS(NAME, CREATE_PASS) \
2196 if (Name == NAME) { \
2197 MPM.addPass(createModuleToFunctionPassAdaptor( \
2198 createFunctionToLoopPassAdaptor(CREATE_PASS, false))); \
2199 return Error::success(); \
2201#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2202 if (checkParametrizedPassName(Name, NAME)) { \
2203 auto Params = parsePassParameters(PARSER, Name, NAME); \
2205 return Params.takeError(); \
2206 MPM.addPass(createModuleToFunctionPassAdaptor( \
2207 createFunctionToLoopPassAdaptor(CREATE_PASS(Params.get()), false))); \
2208 return Error::success(); \
2210#include "PassRegistry.def"
2212 for (
auto &
C : ModulePipelineParsingCallbacks)
2213 if (
C(Name, MPM, InnerPipeline))
2216 formatv(
"unknown module pass '{}'", Name).str(),
2221 const PipelineElement &
E) {
2222 auto &
Name =
E.Name;
2223 auto &InnerPipeline =
E.InnerPipeline;
2226 if (!InnerPipeline.empty()) {
2227 if (Name ==
"cgscc") {
2229 if (
auto Err = parseCGSCCPassPipeline(NestedCGPM, InnerPipeline))
2232 CGPM.
addPass(std::move(NestedCGPM));
2237 if (
auto Err = parseFunctionPassPipeline(FPM, InnerPipeline))
2241 std::move(FPM), Params->first, Params->second));
2246 if (
auto Err = parseCGSCCPassPipeline(NestedCGPM, InnerPipeline))
2253 for (
auto &
C : CGSCCPipelineParsingCallbacks)
2254 if (
C(Name, CGPM, InnerPipeline))
2259 formatv(
"invalid use of '{}' pass as cgscc pipeline", Name).str(),
2264#define CGSCC_PASS(NAME, CREATE_PASS) \
2265 if (Name == NAME) { \
2266 CGPM.addPass(CREATE_PASS); \
2267 return Error::success(); \
2269#define CGSCC_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2270 if (checkParametrizedPassName(Name, NAME)) { \
2271 auto Params = parsePassParameters(PARSER, Name, NAME); \
2273 return Params.takeError(); \
2274 CGPM.addPass(CREATE_PASS(Params.get())); \
2275 return Error::success(); \
2277#define CGSCC_ANALYSIS(NAME, CREATE_PASS) \
2278 if (Name == "require<" NAME ">") { \
2279 CGPM.addPass(RequireAnalysisPass< \
2280 std::remove_reference_t<decltype(CREATE_PASS)>, \
2281 LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, \
2282 CGSCCUpdateResult &>()); \
2283 return Error::success(); \
2285 if (Name == "invalidate<" NAME ">") { \
2286 CGPM.addPass(InvalidateAnalysisPass< \
2287 std::remove_reference_t<decltype(CREATE_PASS)>>()); \
2288 return Error::success(); \
2290#define FUNCTION_PASS(NAME, CREATE_PASS) \
2291 if (Name == NAME) { \
2292 if constexpr (std::is_constructible_v< \
2293 std::remove_reference_t<decltype(CREATE_PASS)>, \
2294 const TargetMachine &>) { \
2296 return make_error<StringError>( \
2297 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2298 inconvertibleErrorCode()); \
2300 CGPM.addPass(createCGSCCToFunctionPassAdaptor(CREATE_PASS)); \
2301 return Error::success(); \
2303#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2304 if (checkParametrizedPassName(Name, NAME)) { \
2305 auto Params = parsePassParameters(PARSER, Name, NAME); \
2307 return Params.takeError(); \
2308 auto CreatePass = CREATE_PASS; \
2309 if constexpr (std::is_constructible_v< \
2310 std::remove_reference_t<decltype(CreatePass( \
2312 const TargetMachine &, \
2313 std::remove_reference_t<decltype(Params.get())>>) { \
2315 return make_error<StringError>( \
2316 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2317 inconvertibleErrorCode()); \
2320 CGPM.addPass(createCGSCCToFunctionPassAdaptor(CREATE_PASS(Params.get()))); \
2321 return Error::success(); \
2323#define LOOPNEST_PASS(NAME, CREATE_PASS) \
2324 if (Name == NAME) { \
2325 CGPM.addPass(createCGSCCToFunctionPassAdaptor( \
2326 createFunctionToLoopPassAdaptor(CREATE_PASS, false))); \
2327 return Error::success(); \
2329#define LOOP_PASS(NAME, CREATE_PASS) \
2330 if (Name == NAME) { \
2331 CGPM.addPass(createCGSCCToFunctionPassAdaptor( \
2332 createFunctionToLoopPassAdaptor(CREATE_PASS, false))); \
2333 return Error::success(); \
2335#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2336 if (checkParametrizedPassName(Name, NAME)) { \
2337 auto Params = parsePassParameters(PARSER, Name, NAME); \
2339 return Params.takeError(); \
2340 CGPM.addPass(createCGSCCToFunctionPassAdaptor( \
2341 createFunctionToLoopPassAdaptor(CREATE_PASS(Params.get()), false))); \
2342 return Error::success(); \
2344#include "PassRegistry.def"
2346 for (
auto &
C : CGSCCPipelineParsingCallbacks)
2347 if (
C(Name, CGPM, InnerPipeline))
2354 const PipelineElement &
E) {
2355 auto &
Name =
E.Name;
2356 auto &InnerPipeline =
E.InnerPipeline;
2359 if (!InnerPipeline.empty()) {
2360 if (Name ==
"function") {
2362 if (
auto Err = parseFunctionPassPipeline(NestedFPM, InnerPipeline))
2365 FPM.
addPass(std::move(NestedFPM));
2368 if (Name ==
"loop" || Name ==
"loop-mssa") {
2370 if (
auto Err = parseLoopPassPipeline(LPM, InnerPipeline))
2373 bool UseMemorySSA = (
Name ==
"loop-mssa");
2378 if (Name ==
"machine-function") {
2380 if (
auto Err = parseMachinePassPipeline(MFPM, InnerPipeline))
2386 for (
auto &
C : FunctionPipelineParsingCallbacks)
2387 if (
C(Name, FPM, InnerPipeline))
2392 formatv(
"invalid use of '{}' pass as function pipeline", Name).str(),
2397#define FUNCTION_PASS(NAME, CREATE_PASS) \
2398 if (Name == NAME) { \
2399 if constexpr (std::is_constructible_v< \
2400 std::remove_reference_t<decltype(CREATE_PASS)>, \
2401 const TargetMachine &>) { \
2403 return make_error<StringError>( \
2404 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2405 inconvertibleErrorCode()); \
2407 FPM.addPass(CREATE_PASS); \
2408 return Error::success(); \
2410#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2411 if (checkParametrizedPassName(Name, NAME)) { \
2412 auto Params = parsePassParameters(PARSER, Name, NAME); \
2414 return Params.takeError(); \
2415 auto CreatePass = CREATE_PASS; \
2416 if constexpr (std::is_constructible_v< \
2417 std::remove_reference_t<decltype(CreatePass( \
2419 const TargetMachine &, \
2420 std::remove_reference_t<decltype(Params.get())>>) { \
2422 return make_error<StringError>( \
2423 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2424 inconvertibleErrorCode()); \
2427 FPM.addPass(CREATE_PASS(Params.get())); \
2428 return Error::success(); \
2430#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
2431 if (Name == "require<" NAME ">") { \
2432 if constexpr (std::is_constructible_v< \
2433 std::remove_reference_t<decltype(CREATE_PASS)>, \
2434 const TargetMachine &>) { \
2436 return make_error<StringError>( \
2437 formatv("pass '{0}' requires TargetMachine", Name).str(), \
2438 inconvertibleErrorCode()); \
2441 RequireAnalysisPass<std::remove_reference_t<decltype(CREATE_PASS)>, \
2443 return Error::success(); \
2445 if (Name == "invalidate<" NAME ">") { \
2446 FPM.addPass(InvalidateAnalysisPass< \
2447 std::remove_reference_t<decltype(CREATE_PASS)>>()); \
2448 return Error::success(); \
2454#define LOOPNEST_PASS(NAME, CREATE_PASS) \
2455 if (Name == NAME) { \
2456 FPM.addPass(createFunctionToLoopPassAdaptor(CREATE_PASS, false)); \
2457 return Error::success(); \
2459#define LOOP_PASS(NAME, CREATE_PASS) \
2460 if (Name == NAME) { \
2461 FPM.addPass(createFunctionToLoopPassAdaptor(CREATE_PASS, false)); \
2462 return Error::success(); \
2464#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2465 if (checkParametrizedPassName(Name, NAME)) { \
2466 auto Params = parsePassParameters(PARSER, Name, NAME); \
2468 return Params.takeError(); \
2470 createFunctionToLoopPassAdaptor(CREATE_PASS(Params.get()), false)); \
2471 return Error::success(); \
2473#include "PassRegistry.def"
2475 for (
auto &
C : FunctionPipelineParsingCallbacks)
2476 if (
C(Name, FPM, InnerPipeline))
2479 formatv(
"unknown function pass '{}'", Name).str(),
2484 const PipelineElement &
E) {
2485 StringRef
Name =
E.Name;
2486 auto &InnerPipeline =
E.InnerPipeline;
2489 if (!InnerPipeline.empty()) {
2490 if (Name ==
"loop") {
2492 if (
auto Err = parseLoopPassPipeline(NestedLPM, InnerPipeline))
2495 LPM.addPass(std::move(NestedLPM));
2499 for (
auto &
C : LoopPipelineParsingCallbacks)
2500 if (
C(Name, LPM, InnerPipeline))
2505 formatv(
"invalid use of '{}' pass as loop pipeline", Name).str(),
2510#define LOOPNEST_PASS(NAME, CREATE_PASS) \
2511 if (Name == NAME) { \
2512 LPM.addPass(CREATE_PASS); \
2513 return Error::success(); \
2515#define LOOP_PASS(NAME, CREATE_PASS) \
2516 if (Name == NAME) { \
2517 LPM.addPass(CREATE_PASS); \
2518 return Error::success(); \
2520#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2521 if (checkParametrizedPassName(Name, NAME)) { \
2522 auto Params = parsePassParameters(PARSER, Name, NAME); \
2524 return Params.takeError(); \
2525 LPM.addPass(CREATE_PASS(Params.get())); \
2526 return Error::success(); \
2528#define LOOP_ANALYSIS(NAME, CREATE_PASS) \
2529 if (Name == "require<" NAME ">") { \
2530 LPM.addPass(RequireAnalysisPass< \
2531 std::remove_reference_t<decltype(CREATE_PASS)>, Loop, \
2532 LoopAnalysisManager, LoopStandardAnalysisResults &, \
2534 return Error::success(); \
2536 if (Name == "invalidate<" NAME ">") { \
2537 LPM.addPass(InvalidateAnalysisPass< \
2538 std::remove_reference_t<decltype(CREATE_PASS)>>()); \
2539 return Error::success(); \
2541#include "PassRegistry.def"
2543 for (
auto &
C : LoopPipelineParsingCallbacks)
2544 if (
C(Name, LPM, InnerPipeline))
2551 const PipelineElement &
E) {
2552 StringRef
Name =
E.Name;
2554 if (!
E.InnerPipeline.empty()) {
2555 if (
E.Name ==
"machine-function") {
2557 if (
auto Err = parseMachinePassPipeline(NestedPM,
E.InnerPipeline))
2559 MFPM.
addPass(std::move(NestedPM));
2566#define MACHINE_MODULE_PASS(NAME, CREATE_PASS) \
2567 if (Name == NAME) { \
2568 MFPM.addPass(CREATE_PASS); \
2569 return Error::success(); \
2571#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) \
2572 if (Name == NAME) { \
2573 MFPM.addPass(CREATE_PASS); \
2574 return Error::success(); \
2576#define MACHINE_FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, \
2578 if (checkParametrizedPassName(Name, NAME)) { \
2579 auto Params = parsePassParameters(PARSER, Name, NAME); \
2581 return Params.takeError(); \
2582 MFPM.addPass(CREATE_PASS(Params.get())); \
2583 return Error::success(); \
2585#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \
2586 if (Name == "require<" NAME ">") { \
2588 RequireAnalysisPass<std::remove_reference_t<decltype(CREATE_PASS)>, \
2589 MachineFunction>()); \
2590 return Error::success(); \
2592 if (Name == "invalidate<" NAME ">") { \
2593 MFPM.addPass(InvalidateAnalysisPass< \
2594 std::remove_reference_t<decltype(CREATE_PASS)>>()); \
2595 return Error::success(); \
2597#include "llvm/Passes/MachinePassRegistry.def"
2599 for (
auto &
C : MachineFunctionPipelineParsingCallbacks)
2600 if (
C(Name, MFPM,
E.InnerPipeline))
2603 formatv(
"unknown machine pass '{}'", Name).str(),
2608#define MODULE_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
2609 if (Name == NAME) { \
2610 AA.registerModuleAnalysis< \
2611 std::remove_reference_t<decltype(CREATE_PASS)>>(); \
2614#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) \
2615 if (Name == NAME) { \
2616 AA.registerFunctionAnalysis< \
2617 std::remove_reference_t<decltype(CREATE_PASS)>>(); \
2620#include "PassRegistry.def"
2622 for (
auto &
C : AAParsingCallbacks)
2628Error PassBuilder::parseMachinePassPipeline(
2630 for (
const auto &Element : Pipeline) {
2631 if (
auto Err = parseMachinePass(MFPM, Element))
2639 for (
const auto &Element : Pipeline) {
2640 if (
auto Err = parseLoopPass(LPM, Element))
2646Error PassBuilder::parseFunctionPassPipeline(
2648 for (
const auto &Element : Pipeline) {
2649 if (
auto Err = parseFunctionPass(FPM, Element))
2657 for (
const auto &Element : Pipeline) {
2658 if (
auto Err = parseCGSCCPass(CGPM, Element))
2690 for (
const auto &Element : Pipeline) {
2691 if (
auto Err = parseModulePass(MPM, Element))
2702 auto Pipeline = parsePipelineText(PipelineText);
2703 if (!Pipeline || Pipeline->empty())
2705 formatv(
"invalid pipeline '{}'", PipelineText).str(),
2715 Pipeline = {{
"cgscc", std::move(*Pipeline)}};
2717 FunctionPipelineParsingCallbacks)) {
2718 Pipeline = {{
"function", std::move(*Pipeline)}};
2721 Pipeline = {{
"function", {{UseMemorySSA ?
"loop-mssa" :
"loop",
2722 std::move(*Pipeline)}}}};
2723 }
else if (
isLoopPassName(FirstName, LoopPipelineParsingCallbacks,
2725 Pipeline = {{
"function", {{UseMemorySSA ?
"loop-mssa" :
"loop",
2726 std::move(*Pipeline)}}}};
2728 FirstName, MachineFunctionPipelineParsingCallbacks)) {
2729 Pipeline = {{
"function", {{
"machine-function", std::move(*Pipeline)}}}};
2731 for (
auto &
C : TopLevelPipelineParsingCallbacks)
2732 if (
C(MPM, *Pipeline))
2736 auto &InnerPipeline = Pipeline->front().InnerPipeline;
2738 formatv(
"unknown {} name '{}'",
2739 (InnerPipeline.empty() ?
"pass" :
"pipeline"), FirstName)
2745 if (
auto Err = parseModulePassPipeline(MPM, *Pipeline))
2753 auto Pipeline = parsePipelineText(PipelineText);
2754 if (!Pipeline || Pipeline->empty())
2756 formatv(
"invalid pipeline '{}'", PipelineText).str(),
2762 formatv(
"unknown cgscc pass '{}' in pipeline '{}'", FirstName,
2767 if (
auto Err = parseCGSCCPassPipeline(CGPM, *Pipeline))
2776 auto Pipeline = parsePipelineText(PipelineText);
2777 if (!Pipeline || Pipeline->empty())
2779 formatv(
"invalid pipeline '{}'", PipelineText).str(),
2785 formatv(
"unknown function pass '{}' in pipeline '{}'", FirstName,
2790 if (
auto Err = parseFunctionPassPipeline(FPM, *Pipeline))
2798 auto Pipeline = parsePipelineText(PipelineText);
2799 if (!Pipeline || Pipeline->empty())
2801 formatv(
"invalid pipeline '{}'", PipelineText).str(),
2804 if (
auto Err = parseLoopPassPipeline(CGPM, *Pipeline))
2812 auto Pipeline = parsePipelineText(PipelineText);
2813 if (!Pipeline || Pipeline->empty())
2815 formatv(
"invalid machine pass pipeline '{}'", PipelineText).str(),
2818 if (
auto Err = parseMachinePassPipeline(MFPM, *Pipeline))
2827 if (PipelineText ==
"default") {
2832 while (!PipelineText.
empty()) {
2834 std::tie(Name, PipelineText) = PipelineText.
split(
',');
2835 if (!parseAAPassName(
AA, Name))
2837 formatv(
"unknown alias analysis name '{}'", Name).str(),
2844std::optional<RegAllocFilterFunc>
2846 if (FilterName ==
"all")
2848 for (
auto &
C : RegClassFilterParsingCallbacks)
2849 if (
auto F =
C(FilterName))
2851 return std::nullopt;
2862 auto I = PassNames.
begin();
2863 auto End = PassNames.
end();
2871 OS <<
" " << Name <<
'<' << Params <<
">\n";
2878 OS <<
"Module passes:\n";
2879 static constexpr char ModulePassNames[] = {
"\0"
2880#define MODULE_PASS(NAME, CREATE_PASS) NAME "\0"
2881#include "PassRegistry.def"
2885 OS <<
"Module passes with params:\n";
2886 static constexpr char ModulePassNamesWithParams[] = {
"\0"
2887#define MODULE_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2888 NAME "\0" PARAMS "\0"
2889#include "PassRegistry.def"
2893 OS <<
"Module analyses:\n";
2894 static constexpr char ModuleAnalysisNames[] = {
"\0"
2895#define MODULE_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2896#include "PassRegistry.def"
2900 OS <<
"Module alias analyses:\n";
2901 static constexpr char ModuleAliasAnalysisNames[] = {
"\0"
2902#define MODULE_ALIAS_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2903#include "PassRegistry.def"
2907 OS <<
"CGSCC passes:\n";
2908 static constexpr char CGSCCPassNames[] = {
"\0"
2909#define CGSCC_PASS(NAME, CREATE_PASS) NAME "\0"
2910#include "PassRegistry.def"
2914 OS <<
"CGSCC passes with params:\n";
2915 static constexpr char CGSCCPassNamesWithParams[] = {
"\0"
2916#define CGSCC_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2917 NAME "\0" PARAMS "\0"
2918#include "PassRegistry.def"
2922 OS <<
"CGSCC analyses:\n";
2923 static constexpr char CGSCCAnalysisNames[] = {
"\0"
2924#define CGSCC_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2925#include "PassRegistry.def"
2929 OS <<
"Function passes:\n";
2930 static constexpr char FunctionPassNames[] = {
"\0"
2931#define FUNCTION_PASS(NAME, CREATE_PASS) NAME "\0"
2932#include "PassRegistry.def"
2936 OS <<
"Function passes with params:\n";
2937 static constexpr char FunctionPassNamesWithParams[] = {
"\0"
2938#define FUNCTION_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2939 NAME "\0" PARAMS "\0"
2940#include "PassRegistry.def"
2944 OS <<
"Function analyses:\n";
2945 static constexpr char FunctionAnalysisNames[] = {
"\0"
2946#define FUNCTION_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2947#include "PassRegistry.def"
2951 OS <<
"Function alias analyses:\n";
2952 static constexpr char FunctionAliasAnalysisNames[] = {
"\0"
2953#define FUNCTION_ALIAS_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2954#include "PassRegistry.def"
2958 OS <<
"LoopNest passes:\n";
2959 static constexpr char LoopNestPassNames[] = {
"\0"
2960#define LOOPNEST_PASS(NAME, CREATE_PASS) NAME "\0"
2961#include "PassRegistry.def"
2965 OS <<
"Loop passes:\n";
2966 static constexpr char LoopPassNames[] = {
"\0"
2967#define LOOP_PASS(NAME, CREATE_PASS) NAME "\0"
2968#include "PassRegistry.def"
2972 OS <<
"Loop passes with params:\n";
2973 static constexpr char LoopPassNamesWithParams[] = {
"\0"
2974#define LOOP_PASS_WITH_PARAMS(NAME, CLASS, CREATE_PASS, PARSER, PARAMS) \
2975 NAME "\0" PARAMS "\0"
2976#include "PassRegistry.def"
2980 OS <<
"Loop analyses:\n";
2981 static constexpr char LoopAnalysisNames[] = {
"\0"
2982#define LOOP_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
2983#include "PassRegistry.def"
2987 OS <<
"Machine module passes (WIP):\n";
2988 static constexpr char MachineModulePassNames[] = {
"\0"
2989#define MACHINE_MODULE_PASS(NAME, CREATE_PASS) NAME "\0"
2990#include "llvm/Passes/MachinePassRegistry.def"
2994 OS <<
"Machine function passes (WIP):\n";
2995 static constexpr char MachineFunctionPassNames[] = {
"\0"
2996#define MACHINE_FUNCTION_PASS(NAME, CREATE_PASS) NAME "\0"
2997#include "llvm/Passes/MachinePassRegistry.def"
3001 OS <<
"Machine function analyses (WIP):\n";
3002 static constexpr char MachineFunctionAnalysisNames[] = {
"\0"
3003#define MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) NAME "\0"
3004#include "llvm/Passes/MachinePassRegistry.def"
3012 TopLevelPipelineParsingCallbacks.push_back(
C);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AggressiveInstCombiner - Combine expression patterns to form expressions with fewer,...
This file implements a simple N^2 alias analysis accuracy evaluator.
Provides passes to inlining "always_inline" functions.
This is the interface for LLVM's primary stateless and local alias analysis.
This file contains the declaration of the BreakFalseDepsPass class, used to identify and avoid false ...
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
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.
Provides analysis for continuously CSEing during GISel passes.
This file provides interfaces used to build and manipulate a call graph, which is a very useful tool ...
Defines an IR pass for CodeGen Prepare.
This file contains the declaration of the MachineKCFI class, which is a Machine Pass that implements ...
#define LLVM_ATTRIBUTE_NOINLINE
LLVM_ATTRIBUTE_NOINLINE - On compilers where we have a directive to do so, mark a method "not for inl...
This file declares an analysis pass that computes CycleInfo for LLVM IR, specialized from GenericCycl...
Analysis that tracks defined/used subregister lanes across COPY instructions and instructions that ge...
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 the GCOV style profiler pass.
Provides analysis for querying information about KnownBits during GISel passes.
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.
Defines an IR pass for the creation of hardware loops.
AcceleratorCodeSelection - Identify all functions reachable from a kernel, removing those that are un...
This file defines the IR2Vec vocabulary analysis(IR2VecVocabAnalysis), the core ir2vec::Embedder inte...
This file defines passes to print out IR in various granularities.
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.
This file contains the declaration of the InterleavedAccessPass class, its corresponding pass name is...
See the comments on JumpThreadingPass.
Implements a lazy call graph analysis and related passes for the new pass manager.
This file defines the interface for the loop cache analysis.
This file provides the interface for LLVM's Loop Data Prefetching Pass.
This file implements the Loop Fusion pass.
This header defines the LoopLoadEliminationPass object.
This file defines the interface for the loop nest analysis.
This header provides classes for managing a pipeline of passes over loops in LLVM IR.
This file provides the interface for the pass responsible for removing expensive ubsan checks.
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.
Machine Check Debug Module
This file exposes an interface to building/using memory SSA to walk memory instructions using a use/d...
This pass performs merges of loads and stores on both sides of a.
This is the interface to build a ModuleSummaryIndex for a module.
Contains a collection of routines for determining if a given instruction is guaranteed to execute if ...
This file provides the interface for LLVM's Global Value Numbering pass.
This file declares a simple ARC-aware AliasAnalysis using special knowledge of Objective C to enhance...
This header enumerates the LLVM-provided high-level optimization levels.
This file provides the interface for IR based instrumentation passes ( (profile-gen,...
CGSCCAnalysisManager CGAM
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
static bool isModulePassName(StringRef Name, CallbacksT &Callbacks)
static bool callbacksAcceptPassName(StringRef Name, CallbacksT &Callbacks)
Tests whether registered callbacks will accept a given pass name.
static std::optional< int > parseDevirtPassName(StringRef Name)
static LLVM_ATTRIBUTE_NOINLINE void printPassNameList(StringTable PassNames, raw_ostream &OS)
static bool isLoopNestPassName(StringRef Name, CallbacksT &Callbacks, bool &UseMemorySSA)
static bool isMachineFunctionPassName(StringRef Name, CallbacksT &Callbacks)
static Expected< OptimizationLevel > parseOptLevelParam(StringRef S)
static std::optional< OptimizationLevel > parseOptLevel(StringRef S)
static bool isLoopPassName(StringRef Name, CallbacksT &Callbacks, bool &UseMemorySSA)
static std::optional< std::pair< bool, bool > > parseFunctionPipelineName(StringRef Name)
static bool isCGSCCPassName(StringRef Name, CallbacksT &Callbacks)
static LLVM_ATTRIBUTE_NOINLINE void printPassNameListWithParams(StringTable PassNames, raw_ostream &OS)
static bool isFunctionPassName(StringRef Name, CallbacksT &Callbacks)
static void setupOptionsForPipelineAlias(PipelineTuningOptions &PTO, OptimizationLevel L)
This file implements the PredicateInfo analysis, which creates an Extended SSA form for operations us...
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
This pass is required to take advantage of the interprocedural register allocation infrastructure.
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 SCEV-based alias analysis.
This pass converts vector operations into scalar operations (or, optionally, operations on smaller ve...
This is the interface for a metadata-based scoped no-alias analysis.
This file contains the declaration of the SelectOptimizePass class, its corresponding pass name is se...
This file provides the interface for the pass responsible for both simplifying and canonicalizing the...
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
This pass strips convergence intrinsics and operand bundles as those are only useful when modifying t...
Target-Independent Code Generator Pass Configuration Options pass.
This is the interface for a metadata-based TBAA.
static const char PassName[]
A manager for alias analyses.
Class for arbitrary precision integers.
uint64_t getZExtValue() const
Get zero extended value.
int64_t getSExtValue() const
Get sign extended value.
bool registerPass(PassBuilderT &&PassBuilder)
Register an analysis pass with the manager.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
static LLVM_ABI GlobalAlias * create(Type *Ty, unsigned AddressSpace, LinkageTypes Linkage, const Twine &Name, Constant *Aliasee, Module *Parent)
If a parent module is specified, the alias is automatically inserted into the end of the specified mo...
A smart pointer to a reference-counted object that inherits from RefCountedBase or ThreadSafeRefCount...
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
MachineFunction & getMF()
This analysis create MachineFunction for given Function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
const MachineFunctionProperties & getProperties() const
Get the function properties.
LLVM_ABI Register createGenericVirtualRegister(LLT Ty, StringRef Name="")
Create and return a new generic virtual register with low-level type Ty.
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.
This class provides access to building LLVM's passes.
LLVM_ABI void printPassNames(raw_ostream &OS)
Print pass names.
static bool checkParametrizedPassName(StringRef Name, StringRef PassName)
LLVM_ABI AAManager buildDefaultAAPipeline()
Build the default AAManager with the default alias analysis pipeline registered.
LLVM_ABI Error parseAAPipeline(AAManager &AA, StringRef PipelineText)
Parse a textual alias analysis pipeline into the provided AA manager.
LLVM_ABI void registerLoopAnalyses(LoopAnalysisManager &LAM)
Registers all available loop analysis passes.
LLVM_ABI std::optional< RegAllocFilterFunc > parseRegAllocFilter(StringRef RegAllocFilterName)
Parse RegAllocFilterName to get RegAllocFilterFunc.
LLVM_ABI void crossRegisterProxies(LoopAnalysisManager &LAM, FunctionAnalysisManager &FAM, CGSCCAnalysisManager &CGAM, ModuleAnalysisManager &MAM, MachineFunctionAnalysisManager *MFAM=nullptr)
Cross register the analysis managers through their proxies.
LLVM_ABI PassBuilder(TargetMachine *TM=nullptr, PipelineTuningOptions PTO=PipelineTuningOptions(), std::optional< PGOOptions > PGOOpt=std::nullopt, PassInstrumentationCallbacks *PIC=nullptr, IntrusiveRefCntPtr< vfs::FileSystem > FS=vfs::getRealFileSystem())
LLVM_ABI Error parsePassPipeline(ModulePassManager &MPM, StringRef PipelineText)
Parse a textual pass pipeline description into a ModulePassManager.
void registerPipelineParsingCallback(const std::function< bool(StringRef Name, CGSCCPassManager &, ArrayRef< PipelineElement >)> &C)
{{@ Register pipeline parsing callbacks with this pass builder instance.
LLVM_ABI void registerModuleAnalyses(ModuleAnalysisManager &MAM)
Registers all available module analysis passes.
LLVM_ABI void registerCGSCCAnalyses(CGSCCAnalysisManager &CGAM)
Registers all available CGSCC analysis passes.
static LLVM_ABI Expected< bool > parseSinglePassOption(StringRef Params, StringRef OptionName, StringRef PassName)
Handle passes only accept one bool-valued parameter.
LLVM_ABI void registerMachineFunctionAnalyses(MachineFunctionAnalysisManager &MFAM)
Registers all available machine function analysis passes.
LLVM_ABI void registerParseTopLevelPipelineCallback(const std::function< bool(ModulePassManager &, ArrayRef< PipelineElement >)> &C)
Register a callback for a top-level pipeline entry.
LLVM_ABI void registerFunctionAnalyses(FunctionAnalysisManager &FAM)
Registers all available function analysis passes.
This class manages callbacks registration, as well as provides a way for PassInstrumentation to pass ...
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t<!std::is_same_v< PassT, PassManager > > addPass(PassT &&Pass)
Tunable parameters for passes in the default pipelines.
bool SLPVectorization
Tuning option to enable/disable slp loop vectorization, set based on opt level.
bool LoopVectorization
Tuning option to enable/disable loop vectorization, set based on opt level.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
std::string str() const
Get the contents as an std::string.
bool starts_with(StringRef Prefix) const
Check if this string starts with the given Prefix.
constexpr bool empty() const
Check if the string is empty.
char front() const
Get the first character in the string.
bool consume_front(char Prefix)
Returns true if this StringRef has the given prefix and removes that prefix.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
A table of densely packed, null-terminated strings indexed by offset.
constexpr Iterator begin() const
constexpr Iterator end() const
Primary interface to the complete machine description for the target machine.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
self_iterator getIterator()
This class implements an extremely fast bulk output stream that can only output to a stream.
Interfaces for registering analysis passes, producing common pass manager configurations,...
Abstract Attribute helper functions.
@ C
The default llvm calling convention, compatible with C.
std::optional< CodeGenOptLevel > getLevel(int OL)
Get the Level identified by the integer OL.
@ BasicBlock
Various leaf nodes.
DXILDebugInfoMap run(Module &M)
DropTestKind
Specifies how to drop type tests.
@ All
Drop only llvm.assumes using type test value.
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
OuterAnalysisManagerProxy< CGSCCAnalysisManager, Function > CGSCCAnalysisManagerFunctionProxy
A proxy from a CGSCCAnalysisManager to a Function.
OuterAnalysisManagerProxy< ModuleAnalysisManager, MachineFunction > ModuleAnalysisManagerMachineFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI cl::opt< std::optional< PrintPipelinePassesFormat >, false, PrintPipelinePassesFormatParser > PrintPipelinePasses
Common option used by multiple tools to print pipeline passes.
ModuleToFunctionPassAdaptor createModuleToFunctionPassAdaptor(FunctionPassT &&Pass, bool EagerlyInvalidate=false)
A function to deduce a function pass type and wrap it in the templated adaptor.
DevirtSCCRepeatedPass createDevirtSCCRepeatedPass(CGSCCPassT &&Pass, int MaxIterations)
A function to deduce a function pass type and wrap it in the templated adaptor.
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
InnerAnalysisManagerProxy< LoopAnalysisManager, Function > LoopAnalysisManagerFunctionProxy
A proxy from a LoopAnalysisManager to a Function.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
PassManager< LazyCallGraph::SCC, CGSCCAnalysisManager, LazyCallGraph &, CGSCCUpdateResult & > CGSCCPassManager
The CGSCC pass manager.
AnalysisManager< LazyCallGraph::SCC, LazyCallGraph & > CGSCCAnalysisManager
The CGSCC analysis manager.
AnalysisManager< Loop, LoopStandardAnalysisResults & > LoopAnalysisManager
The loop analysis manager.
PassManager< Loop, LoopAnalysisManager, LoopStandardAnalysisResults &, LPMUpdater & > LoopPassManager
The Loop pass manager.
ModuleToPostOrderCGSCCPassAdaptor createModuleToPostOrderCGSCCPassAdaptor(CGSCCPassT &&Pass)
A function to deduce a function pass type and wrap it in the templated adaptor.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
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.
FunctionToMachineFunctionPassAdaptor createFunctionToMachineFunctionPassAdaptor(MachineFunctionPassT &&Pass)
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
FunctionAddr VTableAddr Count
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
InnerAnalysisManagerProxy< MachineFunctionAnalysisManager, Function > MachineFunctionAnalysisManagerFunctionProxy
OuterAnalysisManagerProxy< FunctionAnalysisManager, Loop, LoopStandardAnalysisResults & > FunctionAnalysisManagerLoopProxy
A proxy from a FunctionAnalysisManager to a Loop.
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
support::detail::RepeatAdapter< T > fmt_repeat(T &&Item, size_t Count)
OuterAnalysisManagerProxy< ModuleAnalysisManager, LazyCallGraph::SCC, LazyCallGraph & > ModuleAnalysisManagerCGSCCProxy
A proxy from a ModuleAnalysisManager to an SCC.
InnerAnalysisManagerProxy< MachineFunctionAnalysisManager, Module > MachineFunctionAnalysisManagerModuleProxy
InnerAnalysisManagerProxy< CGSCCAnalysisManager, Module > CGSCCAnalysisManagerModuleProxy
A proxy from a CGSCCAnalysisManager to a Module.
PassManager< Function > FunctionPassManager
Convenience typedef for a pass manager over functions.
MFPropsModifier(PassT &P, MachineFunction &MF) -> MFPropsModifier< PassT >
LLVM_ABI void printFormattedPipelinePasses(raw_ostream &OS, StringRef Pipeline, PrintPipelinePassesFormat Format=PrintPipelinePassesFormat::Text)
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
PassManager< MachineFunction > MachineFunctionPassManager
Convenience typedef for a pass manager over functions.
LLVM_ABI bool applyDebugifyMetadataToMachineFunction(DIBuilder &DIB, Function &F, llvm::function_ref< MachineFunction *(Function &)> GetMF)
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
LLVM_ABI std::optional< AllocTokenMode > getAllocTokenModeFromString(StringRef Name)
Returns the AllocTokenMode from its canonical string name; if an invalid name was provided returns nu...
PrintPipelinePassesFormat
@ Detailed
Hash with opcode only.
@ CallTargetIgnored
Hash with opcode and operands.
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Implement std::hash so that hash_code can be used in STL containers.
A special type used by analysis passes to provide an address that identifies that particular analysis...
A set of parameters to control various transforms performed by GVN pass.
HardwareLoopOptions & setForceNested(bool Force)
HardwareLoopOptions & setDecrement(unsigned Count)
HardwareLoopOptions & setForceGuard(bool Force)
HardwareLoopOptions & setForce(bool Force)
HardwareLoopOptions & setCounterBitwidth(unsigned Width)
HardwareLoopOptions & setForcePhi(bool Force)
A set of parameters to control various transforms performed by IPSCCP pass.
A set of parameters used to control various transforms performed by the LoopUnroll pass.
LoopUnrollOptions & setPeeling(bool Peeling)
Enables or disables loop peeling.
LoopUnrollOptions & setOptLevel(int O)
LoopUnrollOptions & setPartial(bool Partial)
Enables or disables partial unrolling.
LoopUnrollOptions & setFullUnrollMaxCount(unsigned O)
LoopUnrollOptions & setUpperBound(bool UpperBound)
Enables or disables the use of trip count upper bound in loop unrolling.
LoopUnrollOptions & setRuntime(bool Runtime)
Enables or disables unrolling of loops with runtime trip count.
LoopUnrollOptions & setProfileBasedPeeling(int O)
LoopVectorizeOptions & setVectorizeOnlyWhenForced(bool Value)
LoopVectorizeOptions & setInterleaveOnlyWhenForced(bool Value)
A CRTP mix-in for passes that can be skipped.
RegAllocFilterFunc Filter