LLVM 23.0.0git
TargetPassConfig.cpp
Go to the documentation of this file.
1//===- TargetPassConfig.cpp - Target independent code generation passes ---===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines interfaces to access the target independent code
10// generation passes provided by the LLVM backend.
11//
12//===---------------------------------------------------------------------===//
13
15#include "llvm/ADT/DenseMap.h"
17#include "llvm/ADT/StringRef.h"
28#include "llvm/CodeGen/Passes.h"
33#include "llvm/IR/Verifier.h"
35#include "llvm/MC/MCAsmInfo.h"
37#include "llvm/Pass.h"
41#include "llvm/Support/Debug.h"
54#include <cassert>
55#include <optional>
56#include <string>
57
58using namespace llvm;
59
60static cl::opt<bool>
61 EnableIPRA("enable-ipra", cl::init(false), cl::Hidden,
62 cl::desc("Enable interprocedural register allocation "
63 "to reduce load/store at procedure calls."));
65 cl::desc("Disable Post Regalloc Scheduler"));
66static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
67 cl::desc("Disable branch folding"));
68static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
69 cl::desc("Disable tail duplication"));
70static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
71 cl::desc("Disable pre-register allocation tail duplication"));
72static cl::opt<bool> DisableBlockPlacement("disable-block-placement",
73 cl::Hidden, cl::desc("Disable probability-driven block placement"));
74static cl::opt<bool> EnableBlockPlacementStats("enable-block-placement-stats",
75 cl::Hidden, cl::desc("Collect probability-driven block placement stats"));
76static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
77 cl::desc("Disable Stack Slot Coloring"));
78static cl::opt<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden,
79 cl::desc("Disable Machine Dead Code Elimination"));
81 cl::desc("Disable Early If-conversion"));
82static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
83 cl::desc("Disable Machine LICM"));
84static cl::opt<bool> DisableMachineCSE("disable-machine-cse", cl::Hidden,
85 cl::desc("Disable Machine Common Subexpression Elimination"));
87 "optimize-regalloc", cl::Hidden,
88 cl::desc("Enable optimized register allocation compilation path."));
89static cl::opt<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
91 cl::desc("Disable Machine LICM"));
92static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
93 cl::desc("Disable Machine Sinking"));
94static cl::opt<bool> DisablePostRAMachineSink("disable-postra-machine-sink",
96 cl::desc("Disable PostRA Machine Sinking"));
97static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
98 cl::desc("Disable Loop Strength Reduction Pass"));
99static cl::opt<bool> DisableConstantHoisting("disable-constant-hoisting",
100 cl::Hidden, cl::desc("Disable ConstantHoisting"));
101static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
102 cl::desc("Disable Codegen Prepare"));
103
104static cl::opt<bool>
105 TriggerCrash("codegen-pipeline-trigger-crash", cl::init(false), cl::Hidden,
106 cl::desc("Trigger crash in codegen pipeline"));
107
108static cl::opt<bool> DisableCopyProp("disable-copyprop", cl::Hidden,
109 cl::desc("Disable Copy Propagation pass"));
110static cl::opt<bool> DisablePartialLibcallInlining("disable-partial-libcall-inlining",
111 cl::Hidden, cl::desc("Disable Partial Libcall Inlining"));
113 "disable-atexit-based-global-dtor-lowering", cl::Hidden,
114 cl::desc("For MachO, disable atexit()-based global destructor lowering"));
116 "enable-implicit-null-checks",
117 cl::desc("Fold null checks into faulting memory operations"),
118 cl::init(false), cl::Hidden);
119static cl::opt<bool>
120 PrintISelInput("print-isel-input", cl::Hidden,
121 cl::desc("Print LLVM IR input to isel pass"));
123 PrintRegUsage("print-regusage", cl::Hidden,
124 cl::desc("Print register usage details collected for IPRA"));
126 VerifyMachineCode("verify-machineinstrs", cl::Hidden,
127 cl::desc("Verify generated machine code"));
129 DebugifyAndStripAll("debugify-and-strip-all-safe", cl::Hidden,
130 cl::desc("Debugify MIR before and Strip debug after "
131 "each pass except those known to be unsafe "
132 "when debug info is present"));
134 "debugify-check-and-strip-all-safe", cl::Hidden,
135 cl::desc(
136 "Debugify MIR before, by checking and stripping the debug info after, "
137 "each pass except those known to be unsafe when debug info is "
138 "present"));
139// Enable or disable the MachineOutliner.
141 "enable-machine-outliner", cl::desc("Enable the machine outliner"),
145 "Run on all functions guaranteed to be beneficial"),
146 clEnumValN(RunOutliner::OptimisticPGO, "optimistic-pgo",
147 "Outline cold code only. If a code block does not have "
148 "profile data, optimistically assume it is cold."),
149 clEnumValN(RunOutliner::ConservativePGO, "conservative-pgo",
150 "Outline cold code only. If a code block does not have "
151 "profile, data, conservatively assume it is hot."),
152 clEnumValN(RunOutliner::NeverOutline, "never", "Disable all outlining"),
153 // Sentinel value for unspecified option.
156 "enable-global-merge-func", cl::Hidden,
157 cl::desc("Enable global merge functions that are based on hash function"));
158// Disable the pass to fix unwind information. Whether the pass is included in
159// the pipeline is controlled via the target options, this option serves as
160// manual override.
161static cl::opt<bool> DisableCFIFixup("disable-cfi-fixup", cl::Hidden,
162 cl::desc("Disable the CFI fixup pass"));
163// Enable or disable FastISel. Both options are needed, because
164// FastISel is enabled by default with -fast, and we wish to be
165// able to enable or disable fast-isel independently from -O0.
168 cl::desc("Enable the \"fast\" instruction selector"));
169
171 "global-isel", cl::Hidden,
172 cl::desc("Enable the \"global\" instruction selector"));
173
174// FIXME: remove this after switching to NPM or GlobalISel, whichever gets there
175// first...
176static cl::opt<bool>
177 PrintAfterISel("print-after-isel", cl::init(false), cl::Hidden,
178 cl::desc("Print machine instrs after ISel"));
179
181 "global-isel-abort", cl::Hidden,
182 cl::desc("Enable abort calls when \"global\" instruction selection "
183 "fails to lower/select an instruction"),
185 clEnumValN(GlobalISelAbortMode::Disable, "0", "Disable the abort"),
186 clEnumValN(GlobalISelAbortMode::Enable, "1", "Enable the abort"),
188 "Disable the abort but emit a diagnostic on failure")));
189
190// Disable MIRProfileLoader before RegAlloc. This is for for debugging and
191// tuning purpose.
193 "disable-ra-fsprofile-loader", cl::init(false), cl::Hidden,
194 cl::desc("Disable MIRProfileLoader before RegAlloc"));
195// Disable MIRProfileLoader before BloackPlacement. This is for for debugging
196// and tuning purpose.
198 "disable-layout-fsprofile-loader", cl::init(false), cl::Hidden,
199 cl::desc("Disable MIRProfileLoader before BlockPlacement"));
200// Specify FSProfile file name.
202 FSProfileFile("fs-profile-file", cl::init(""), cl::value_desc("filename"),
203 cl::desc("Flow Sensitive profile file name."), cl::Hidden);
204// Specify Remapping file for FSProfile.
206 "fs-remapping-file", cl::init(""), cl::value_desc("filename"),
207 cl::desc("Flow Sensitive profile remapping file name."), cl::Hidden);
208
209// Temporary option to allow experimenting with MachineScheduler as a post-RA
210// scheduler. Targets can "properly" enable this with
211// substitutePass(&PostRASchedulerID, &PostMachineSchedulerID).
212// Targets can return true in targetSchedulesPostRAScheduling() and
213// insert a PostRA scheduling pass wherever it wants.
215 "misched-postra", cl::Hidden,
216 cl::desc(
217 "Run MachineScheduler post regalloc (independent of preRA sched)"));
218
219// Experimental option to run live interval analysis early.
220static cl::opt<bool> EarlyLiveIntervals("early-live-intervals", cl::Hidden,
221 cl::desc("Run live interval analysis earlier in the pipeline"));
222
224 "disable-replace-with-vec-lib", cl::Hidden,
225 cl::desc("Disable replace with vector math call pass"));
226
227/// Option names for limiting the codegen pipeline.
228/// Those are used in error reporting and we didn't want
229/// to duplicate their names all over the place.
230static const char StartAfterOptName[] = "start-after";
231static const char StartBeforeOptName[] = "start-before";
232static const char StopAfterOptName[] = "stop-after";
233static const char StopBeforeOptName[] = "stop-before";
234
237 cl::desc("Resume compilation after a specific pass"),
238 cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
239
242 cl::desc("Resume compilation before a specific pass"),
243 cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
244
247 cl::desc("Stop compilation after a specific pass"),
248 cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
249
252 cl::desc("Stop compilation before a specific pass"),
253 cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
254
255/// Enable the machine function splitter pass.
257 "enable-split-machine-functions", cl::Hidden,
258 cl::desc("Split out cold blocks from machine functions based on profile "
259 "information."));
260
261/// Disable the expand reductions pass for testing.
263 "disable-expand-reductions", cl::init(false), cl::Hidden,
264 cl::desc("Disable the expand reduction intrinsics pass from running"));
265
266/// Disable the select optimization pass.
268 "disable-select-optimize", cl::init(true), cl::Hidden,
269 cl::desc("Disable the select-optimization pass from running"));
270
271/// Enable garbage-collecting empty basic blocks.
273 "enable-gc-empty-basic-blocks", cl::init(false), cl::Hidden,
274 cl::desc("Enable garbage-collecting empty basic blocks"));
275
276static cl::opt<bool>
277 SplitStaticData("split-static-data", cl::Hidden, cl::init(false),
278 cl::desc("Split static data sections into hot and cold "
279 "sections using profile information"));
280
281/// Enable matching and inference when using propeller.
283 "basic-block-section-match-infer",
284 cl::desc(
285 "Enable matching and inference when generating basic block sections"),
286 cl::init(false), cl::Optional);
287
289 "emit-bb-hash",
290 cl::desc(
291 "Emit the hash of basic block in the SHT_LLVM_BB_ADDR_MAP section."),
292 cl::init(false), cl::Optional);
293
294/// Allow standard passes to be disabled by command line options. This supports
295/// simple binary flags that either suppress the pass or do nothing.
296/// i.e. -disable-mypass=false has no effect.
297/// These should be converted to boolOrDefault in order to use applyOverride.
299 bool Override) {
300 if (Override)
301 return IdentifyingPassPtr();
302 return PassID;
303}
304
305/// Allow standard passes to be disabled by the command line, regardless of who
306/// is adding the pass.
307///
308/// StandardID is the pass identified in the standard pass pipeline and provided
309/// to addPass(). It may be a target-specific ID in the case that the target
310/// directly adds its own pass, but in that case we harmlessly fall through.
311///
312/// TargetID is the pass that the target has configured to override StandardID.
313///
314/// StandardID may be a pseudo ID. In that case TargetID is the name of the real
315/// pass to run. This allows multiple options to control a single pass depending
316/// on where in the pipeline that pass is added.
318 IdentifyingPassPtr TargetID) {
319 if (StandardID == &PostRASchedulerID)
320 return applyDisable(TargetID, DisablePostRASched);
321
322 if (StandardID == &BranchFolderPassID)
323 return applyDisable(TargetID, DisableBranchFold);
324
325 if (StandardID == &TailDuplicateLegacyID)
326 return applyDisable(TargetID, DisableTailDuplicate);
327
328 if (StandardID == &EarlyTailDuplicateLegacyID)
329 return applyDisable(TargetID, DisableEarlyTailDup);
330
331 if (StandardID == &MachineBlockPlacementID)
332 return applyDisable(TargetID, DisableBlockPlacement);
333
334 if (StandardID == &StackSlotColoringID)
335 return applyDisable(TargetID, DisableSSC);
336
337 if (StandardID == &DeadMachineInstructionElimID)
338 return applyDisable(TargetID, DisableMachineDCE);
339
340 if (StandardID == &EarlyIfConverterLegacyID)
341 return applyDisable(TargetID, DisableEarlyIfConversion);
342
343 if (StandardID == &EarlyMachineLICMID)
344 return applyDisable(TargetID, DisableMachineLICM);
345
346 if (StandardID == &MachineCSELegacyID)
347 return applyDisable(TargetID, DisableMachineCSE);
348
349 if (StandardID == &MachineLICMID)
350 return applyDisable(TargetID, DisablePostRAMachineLICM);
351
352 if (StandardID == &MachineSinkingLegacyID)
353 return applyDisable(TargetID, DisableMachineSink);
354
355 if (StandardID == &PostRAMachineSinkingID)
356 return applyDisable(TargetID, DisablePostRAMachineSink);
357
358 if (StandardID == &MachineCopyPropagationID)
359 return applyDisable(TargetID, DisableCopyProp);
360
361 return TargetID;
362}
363
364// Find the FSProfile file name. The internal option takes the precedence
365// before getting from TargetMachine.
366static std::string getFSProfileFile(const TargetMachine *TM) {
367 if (!FSProfileFile.empty())
368 return FSProfileFile.getValue();
369 const std::optional<PGOOptions> &PGOOpt = TM->getPGOOption();
370 if (PGOOpt == std::nullopt || PGOOpt->Action != PGOOptions::SampleUse)
371 return std::string();
372 return PGOOpt->ProfileFile;
373}
374
375// Find the Profile remapping file name. The internal option takes the
376// precedence before getting from TargetMachine.
377static std::string getFSRemappingFile(const TargetMachine *TM) {
378 if (!FSRemappingFile.empty())
379 return FSRemappingFile.getValue();
380 const std::optional<PGOOptions> &PGOOpt = TM->getPGOOption();
381 if (PGOOpt == std::nullopt || PGOOpt->Action != PGOOptions::SampleUse)
382 return std::string();
383 return PGOOpt->ProfileRemappingFile;
384}
385
386//===---------------------------------------------------------------------===//
387/// TargetPassConfig
388//===---------------------------------------------------------------------===//
389
390INITIALIZE_PASS(TargetPassConfig, "targetpassconfig",
391 "Target Pass Configuration", false, false)
393
394namespace {
395
399
402
404 assert(InsertedPassID.isValid() && "Illegal Pass ID!");
405 if (InsertedPassID.isInstance())
406 return InsertedPassID.getInstance();
407 Pass *NP = Pass::createPass(InsertedPassID.getID());
408 assert(NP && "Pass ID not registered");
409 return NP;
410 }
411};
412
413} // end anonymous namespace
414
415namespace llvm {
416
418public:
419 // List of passes explicitly substituted by this target. Normally this is
420 // empty, but it is a convenient way to suppress or replace specific passes
421 // that are part of a standard pass pipeline without overridding the entire
422 // pipeline. This mechanism allows target options to inherit a standard pass's
423 // user interface. For example, a target may disable a standard pass by
424 // default by substituting a pass ID of zero, and the user may still enable
425 // that standard pass with an explicit command line option.
427
428 /// Store the pairs of <AnalysisID, AnalysisID> of which the second pass
429 /// is inserted after each instance of the first one.
431};
432
433} // end namespace llvm
434
435// Out of line virtual method.
439
441 if (PassName.empty())
442 return nullptr;
443
445 const PassInfo *PI = PR.getPassInfo(PassName);
446 if (!PI)
448 Twine("\" pass is not registered."));
449 return PI;
450}
451
453 const PassInfo *PI = getPassInfo(PassName);
454 return PI ? PI->getTypeInfo() : nullptr;
455}
456
457static std::pair<StringRef, unsigned>
459 StringRef Name, InstanceNumStr;
460 std::tie(Name, InstanceNumStr) = PassName.split(',');
461
462 unsigned InstanceNum = 0;
463 if (!InstanceNumStr.empty() && InstanceNumStr.getAsInteger(10, InstanceNum))
464 reportFatalUsageError("invalid pass instance specifier " + PassName);
465
466 return std::make_pair(Name, InstanceNum);
467}
468
469void TargetPassConfig::setStartStopPasses() {
470 StringRef StartBeforeName;
471 std::tie(StartBeforeName, StartBeforeInstanceNum) =
473
474 StringRef StartAfterName;
475 std::tie(StartAfterName, StartAfterInstanceNum) =
477
478 StringRef StopBeforeName;
479 std::tie(StopBeforeName, StopBeforeInstanceNum)
481
482 StringRef StopAfterName;
483 std::tie(StopAfterName, StopAfterInstanceNum)
485
486 StartBefore = getPassIDFromName(StartBeforeName);
487 StartAfter = getPassIDFromName(StartAfterName);
488 StopBefore = getPassIDFromName(StopBeforeName);
489 StopAfter = getPassIDFromName(StopAfterName);
490 if (StartBefore && StartAfter)
491 reportFatalUsageError(Twine(StartBeforeOptName) + Twine(" and ") +
492 Twine(StartAfterOptName) + Twine(" specified!"));
493 if (StopBefore && StopAfter)
494 reportFatalUsageError(Twine(StopBeforeOptName) + Twine(" and ") +
495 Twine(StopAfterOptName) + Twine(" specified!"));
496 Started = (StartAfter == nullptr) && (StartBefore == nullptr);
497}
498
541
569
572 auto [StartBefore, StartBeforeInstanceNum] =
574 auto [StartAfter, StartAfterInstanceNum] =
576 auto [StopBefore, StopBeforeInstanceNum] =
578 auto [StopAfter, StopAfterInstanceNum] =
580
581 if (!StartBefore.empty() && !StartAfter.empty())
583 Twine(StartBeforeOptName) + " and " + StartAfterOptName + " specified!",
584 std::make_error_code(std::errc::invalid_argument));
585 if (!StopBefore.empty() && !StopAfter.empty())
587 Twine(StopBeforeOptName) + " and " + StopAfterOptName + " specified!",
588 std::make_error_code(std::errc::invalid_argument));
589
590 StartStopInfo Result;
591 Result.StartPass = StartBefore.empty() ? StartAfter : StartBefore;
592 Result.StopPass = StopBefore.empty() ? StopAfter : StopBefore;
593 Result.StartInstanceNum =
594 StartBefore.empty() ? StartAfterInstanceNum : StartBeforeInstanceNum;
595 Result.StopInstanceNum =
596 StopBefore.empty() ? StopAfterInstanceNum : StopBeforeInstanceNum;
597 Result.StartAfter = !StartAfter.empty();
598 Result.StopAfter = !StopAfter.empty();
599 Result.StartInstanceNum += Result.StartInstanceNum == 0;
600 Result.StopInstanceNum += Result.StopInstanceNum == 0;
601 return Result;
602}
603
604// Out of line constructor provides default values for pass options and
605// registers all common codegen passes.
607 : ImmutablePass(ID), PM(&PM), TM(&TM) {
608 Impl = new PassConfigImpl();
609
611 // Register all target independent codegen passes to activate their PassIDs,
612 // including this pass itself.
614
616
617 // Also register alias analysis passes required by codegen passes.
620
621 if (EnableIPRA.getNumOccurrences()) {
622 TM.Options.EnableIPRA = EnableIPRA;
623 } else {
624 // If not explicitly specified, use target default.
625 TM.Options.EnableIPRA |= TM.useIPRA();
626 }
627
628 if (TM.Options.EnableIPRA)
630
631 if (EnableGlobalISelAbort.getNumOccurrences())
632 TM.Options.GlobalISelAbort = EnableGlobalISelAbort;
633
634 setStartStopPasses();
635}
636
638 return TM->getOptLevel();
639}
640
641/// Insert InsertedPassID pass after TargetPassID.
643 IdentifyingPassPtr InsertedPassID) {
644 assert(((!InsertedPassID.isInstance() &&
645 TargetPassID != InsertedPassID.getID()) ||
646 (InsertedPassID.isInstance() &&
647 TargetPassID != InsertedPassID.getInstance()->getPassID())) &&
648 "Insert a pass after itself!");
649 Impl->InsertedPasses.emplace_back(TargetPassID, InsertedPassID);
650}
651
652/// createPassConfig - Create a pass configuration object to be used by
653/// addPassToEmitX methods for generating a pipeline of CodeGen passes.
654///
655/// Targets may override this to extend TargetPassConfig.
660
662 : ImmutablePass(ID) {
663 reportFatalUsageError("trying to construct TargetPassConfig without a target "
664 "machine. Scheduling a CodeGen pass without a target "
665 "triple set?");
666}
667
671
676
679 return std::string();
680 std::string Res;
681 static cl::opt<std::string> *PassNames[] = {&StartAfterOpt, &StartBeforeOpt,
683 static const char *OptNames[] = {StartAfterOptName, StartBeforeOptName,
685 bool IsFirst = true;
686 for (int Idx = 0; Idx < 4; ++Idx)
687 if (!PassNames[Idx]->empty()) {
688 if (!IsFirst)
689 Res += " and ";
690 IsFirst = false;
691 Res += OptNames[Idx];
692 }
693 return Res;
694}
695
696// Helper to verify the analysis is really immutable.
697void TargetPassConfig::setOpt(bool &Opt, bool Val) {
698 assert(!Initialized && "PassConfig is immutable");
699 Opt = Val;
700}
701
703 IdentifyingPassPtr TargetID) {
704 Impl->TargetPasses[StandardID] = TargetID;
705}
706
709 I = Impl->TargetPasses.find(ID);
710 if (I == Impl->TargetPasses.end())
711 return ID;
712 return I->second;
713}
714
717 IdentifyingPassPtr FinalPtr = overridePass(ID, TargetID);
718 return !FinalPtr.isValid() || FinalPtr.isInstance() ||
719 FinalPtr.getID() != ID;
720}
721
722/// Add a pass to the PassManager if that pass is supposed to be run. If the
723/// Started/Stopped flags indicate either that the compilation should start at
724/// a later pass or that it should stop after an earlier pass, then do not add
725/// the pass. Finally, compare the current pass against the StartAfter
726/// and StopAfter options and change the Started/Stopped flags accordingly.
728 assert(!Initialized && "PassConfig is immutable");
729
730 // Cache the Pass ID here in case the pass manager finds this pass is
731 // redundant with ones already scheduled / available, and deletes it.
732 // Fundamentally, once we add the pass to the manager, we no longer own it
733 // and shouldn't reference it.
734 AnalysisID PassID = P->getPassID();
735
736 if (StartBefore == PassID && StartBeforeCount++ == StartBeforeInstanceNum)
737 Started = true;
738 if (StopBefore == PassID && StopBeforeCount++ == StopBeforeInstanceNum)
739 Stopped = true;
740 if (Started && !Stopped) {
741 if (AddingMachinePasses) {
742 // Construct banner message before PM->add() as that may delete the pass.
743 std::string Banner =
744 std::string("After ") + std::string(P->getPassName());
746 PM->add(P);
747 addMachinePostPasses(Banner);
748 } else {
749 PM->add(P);
750 }
751
752 // Add the passes after the pass P if there is any.
753 for (const auto &IP : Impl->InsertedPasses)
754 if (IP.TargetPassID == PassID)
755 addPass(IP.getInsertedPass());
756 } else {
757 delete P;
758 }
759
760 if (StopAfter == PassID && StopAfterCount++ == StopAfterInstanceNum)
761 Stopped = true;
762
763 if (StartAfter == PassID && StartAfterCount++ == StartAfterInstanceNum)
764 Started = true;
765 if (Stopped && !Started)
766 reportFatalUsageError("Cannot stop compilation after pass that is not run");
767}
768
769/// Add a CodeGen pass at this point in the pipeline after checking for target
770/// and command line overrides.
771///
772/// addPass cannot return a pointer to the pass instance because is internal the
773/// PassManager and the instance we create here may already be freed.
775 IdentifyingPassPtr TargetID = getPassSubstitution(PassID);
776 IdentifyingPassPtr FinalPtr = overridePass(PassID, TargetID);
777 if (!FinalPtr.isValid())
778 return nullptr;
779
780 Pass *P;
781 if (FinalPtr.isInstance())
782 P = FinalPtr.getInstance();
783 else {
784 P = Pass::createPass(FinalPtr.getID());
785 if (!P)
786 llvm_unreachable("Pass ID not registered");
787 }
788 AnalysisID FinalID = P->getPassID();
789 addPass(P); // Ends the lifetime of P.
790
791 return FinalID;
792}
793
794void TargetPassConfig::printAndVerify(const std::string &Banner) {
795 addPrintPass(Banner);
796 addVerifyPass(Banner);
797}
798
799void TargetPassConfig::addPrintPass(const std::string &Banner) {
800 if (PrintAfterISel)
801 PM->add(createMachineFunctionPrinterPass(dbgs(), Banner));
802}
803
804void TargetPassConfig::addVerifyPass(const std::string &Banner) {
806#ifdef EXPENSIVE_CHECKS
808 Verify = TM->isMachineVerifierClean();
809#endif
810 if (Verify)
811 PM->add(createMachineVerifierPass(Banner));
812}
813
817
819 PM->add(createStripDebugMachineModuleLegacyPass(/*OnlyDebugified=*/true));
820}
821
825
827 if (AllowDebugify && DebugifyIsSafe &&
831}
832
833void TargetPassConfig::addMachinePostPasses(const std::string &Banner) {
834 if (DebugifyIsSafe) {
838 } else if (DebugifyAndStripAll == cl::BOU_TRUE)
840 }
841 addVerifyPass(Banner);
842}
843
844/// Add common target configurable passes that perform LLVM IR to IR transforms
845/// following machine independent optimization.
847 // Before running any passes, run the verifier to determine if the input
848 // coming from the front-end and/or optimizer is valid.
849 if (!DisableVerify)
851
853 // Basic AliasAnalysis support.
854 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
855 // BasicAliasAnalysis wins if they disagree. This is intended to help
856 // support "obvious" type-punning idioms.
860
861 // Run loop strength reduction before anything else.
862 if (!DisableLSR) {
867 }
868 }
869
870 // Run GC lowering passes for builtin collectors
871 // TODO: add a pass insertion point here
874
875 // For MachO, lower @llvm.global_dtors into @llvm.global_ctors with
876 // __cxa_atexit() calls to avoid emitting the deprecated __mod_term_func.
877 if (TM->getTargetTriple().isOSBinFormatMachO() &&
880
881 // Make sure that no unreachable blocks are instruction selected.
883
884 // Prepare expensive constants for SelectionDAG.
887
890
893
894 // Instrument function entry after all inlining.
896
897 // Add scalarization of target's unsupported masked memory intrinsics pass.
898 // the unsupported intrinsic will be replaced with a chain of basic blocks,
899 // that stores/loads element one-by-one if the appropriate mask bit is set.
901
902 // Expand reduction intrinsics into shuffle sequences if the target wants to.
903 // Allow disabling it for testing purposes.
906
907 // Convert conditional moves to conditional jumps when profitable.
910
913
914 if (TM->getTargetTriple().isOSWindows())
916}
917
918/// Turn exception handling constructs into something the code generators can
919/// handle.
921 const MCAsmInfo &MCAI = TM->getMCAsmInfo();
922 switch (MCAI.getExceptionHandlingType()) {
924 // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
925 // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
926 // catch info can get misplaced when a selector ends up more than one block
927 // removed from the parent invoke(s). This could happen when a landing
928 // pad is shared by multiple invokes and is also a target of a normal
929 // edge from elsewhere.
931 [[fallthrough]];
937 break;
939 // We support using both GCC-style and MSVC-style exceptions on Windows, so
940 // add both preparation passes. Each pass will only actually run if it
941 // recognizes the personality function.
944 break;
946 // Wasm EH uses Windows EH instructions, but it does not need to demote PHIs
947 // on catchpads and cleanuppads because it does not outline them into
948 // funclets. Catchswitch blocks are not lowered in SelectionDAG, so we
949 // should remove PHIs there.
950 addPass(createWinEHPass(/*DemoteCatchSwitchPHIOnly=*/true));
952 break;
955
956 // The lower invoke pass may create unreachable code. Remove it.
958 break;
959 }
960}
961
962/// Add pass to prepare the LLVM IR for code generation. This should be done
963/// before exception handling preparation passes.
968
969/// Add common passes that perform LLVM IR to IR transforms in preparation for
970/// instruction selection.
972 addPreISel();
973
974 // Force codegen to run according to the callgraph.
977
979
980 // Add both the safe stack and the stack protection passes: each of them will
981 // only protect functions that have corresponding attributes.
984
985 if (PrintISelInput)
987 dbgs(), "\n\n*** Final LLVM Code input to ISel ***\n"));
988
989 // All passes which modify the LLVM IR are now complete; run the verifier
990 // to ensure that the IR is valid.
991 if (!DisableVerify)
993}
994
996 // Enable FastISel with -fast-isel, but allow that to be overridden.
997 TM->setO0WantsFastISel(EnableFastISelOption != cl::BOU_FALSE);
998
999 // Determine an instruction selector.
1000 enum class SelectorType { SelectionDAG, FastISel, GlobalISel };
1001 SelectorType Selector;
1002
1004 Selector = SelectorType::FastISel;
1006 (TM->Options.EnableGlobalISel &&
1008 Selector = SelectorType::GlobalISel;
1009 else if (TM->getOptLevel() == CodeGenOptLevel::None &&
1010 TM->getO0WantsFastISel())
1011 Selector = SelectorType::FastISel;
1012 else
1013 Selector = SelectorType::SelectionDAG;
1014
1015 // Set consistently TM->Options.EnableFastISel and EnableGlobalISel.
1016 if (Selector == SelectorType::FastISel) {
1017 TM->setFastISel(true);
1018 TM->setGlobalISel(false);
1019 } else if (Selector == SelectorType::GlobalISel) {
1020 TM->setFastISel(false);
1021 TM->setGlobalISel(true);
1022 }
1023
1024 // FIXME: Injecting into the DAGISel pipeline seems to cause issues with
1025 // analyses needing to be re-run. This can result in being unable to
1026 // schedule passes (particularly with 'Function Alias Analysis
1027 // Results'). It's not entirely clear why but AFAICT this seems to be
1028 // due to one FunctionPassManager not being able to use analyses from a
1029 // previous one. As we're injecting a ModulePass we break the usual
1030 // pass manager into two. GlobalISel with the fallback path disabled
1031 // and -run-pass seem to be unaffected. The majority of GlobalISel
1032 // testing uses -run-pass so this probably isn't too bad.
1033 SaveAndRestore SavedDebugifyIsSafe(DebugifyIsSafe);
1034 if (Selector != SelectorType::GlobalISel || !isGlobalISelAbortEnabled())
1035 DebugifyIsSafe = false;
1036
1037 // Add instruction selector passes for global isel if enabled.
1038 if (Selector == SelectorType::GlobalISel) {
1039 SaveAndRestore SavedAddingMachinePasses(AddingMachinePasses, true);
1040 if (addIRTranslator())
1041 return true;
1042
1044
1046 return true;
1047
1048 // Before running the register bank selector, ask the target if it
1049 // wants to run some passes.
1051
1052 if (addRegBankSelect())
1053 return true;
1054
1056
1058 return true;
1059 }
1060
1061 // Pass to reset the MachineFunction if the ISel failed. Outside of the above
1062 // if so that the verifier is not added to it.
1063 if (Selector == SelectorType::GlobalISel)
1066
1067 // Run the SDAG InstSelector, providing a fallback path when we do not want to
1068 // abort on not-yet-supported input.
1069 if (Selector != SelectorType::GlobalISel || !isGlobalISelAbortEnabled())
1070 if (addInstSelector())
1071 return true;
1072
1073 // Expand pseudo-instructions emitted by ISel. Don't run the verifier before
1074 // FinalizeISel.
1076
1077 // Print the instruction selected machine code...
1078 printAndVerify("After Instruction Selection");
1079
1080 return false;
1081}
1082
1084 if (TM->useEmulatedTLS())
1086
1087 PM->add(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
1088 // ObjCARCContract operates on ObjC intrinsics and must run before
1089 // PreISelIntrinsicLowering.
1094 addIRPasses();
1095
1096 if (TriggerCrash)
1098
1102
1103 return addCoreISelPasses();
1104}
1105
1106/// -regalloc=... command line option.
1107static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
1111 cl::desc("Register allocator to use"));
1112
1113/// Add the complete set of target-independent postISel code generator passes.
1114///
1115/// This can be read as the standard order of major LLVM CodeGen stages. Stages
1116/// with nontrivial configuration or multiple passes are broken out below in
1117/// add%Stage routines.
1118///
1119/// Any TargetPassConfig::addXX routine may be overriden by the Target. The
1120/// addPre/Post methods with empty header implementations allow injecting
1121/// target-specific fixups just before or after major stages. Additionally,
1122/// targets have the flexibility to change pass order within a stage by
1123/// overriding default implementation of add%Stage routines below. Each
1124/// technique has maintainability tradeoffs because alternate pass orders are
1125/// not well supported. addPre/Post works better if the target pass is easily
1126/// tied to a common pass. But if it has subtle dependencies on multiple passes,
1127/// the target should override the stage instead.
1128///
1129/// TODO: We could use a single addPre/Post(ID) hook to allow pass injection
1130/// before/after any target-independent pass. But it's currently overkill.
1132 AddingMachinePasses = true;
1133
1134 // Add passes that optimize machine instructions in SSA form.
1137 } else {
1138 // If the target requests it, assign local variables to stack slots relative
1139 // to one another and simplify frame index references where possible.
1141 }
1142
1143 if (TM->Options.EnableIPRA)
1145
1146 // Run pre-ra passes.
1148
1149 // Debugifying the register allocator passes seems to provoke some
1150 // non-determinism that affects CodeGen and there doesn't seem to be a point
1151 // where it becomes safe again so stop debugifying here.
1152 DebugifyIsSafe = false;
1153
1154 // Add a FSDiscriminator pass right before RA, so that we could get
1155 // more precise SampleFDO profile for RA.
1159 const std::string ProfileFile = getFSProfileFile(TM);
1160 if (!ProfileFile.empty() && !DisableRAFSProfileLoader)
1163 nullptr));
1164 }
1165
1166 // Run register allocation and passes that are tightly coupled with it,
1167 // including phi elimination and scheduling.
1168 if (getOptimizeRegAlloc())
1170 else
1172
1173 // Run post-ra passes.
1175
1177
1179
1180 // Insert prolog/epilog code. Eliminate abstract frame index references...
1184 }
1185
1186 // Prolog/Epilog inserter needs a TargetMachine to instantiate. But only
1187 // do so if it hasn't been disabled, substituted, or overridden.
1190
1191 /// Add passes that optimize machine instructions after register allocation.
1194
1195 // Expand pseudo instructions before second scheduling pass.
1197
1198 // Run pre-sched2 passes.
1199 addPreSched2();
1200
1203
1204 // Second pass scheduler.
1205 // Let Target optionally insert this pass by itself at some other
1206 // point.
1208 !TM->targetSchedulesPostRAScheduling()) {
1209 if (MISchedPostRA)
1211 else
1213 }
1214
1215 // GC
1216 addGCPasses();
1217
1218 // Basic block placement.
1221
1222 // Insert before XRay Instrumentation.
1224
1227
1229
1230 if (TM->Options.EnableIPRA)
1231 // Collect register usage information and produce a register mask of
1232 // clobbered registers, to be used to optimize call sites.
1234
1235 // FIXME: Some backends are incompatible with running the verifier after
1236 // addPreEmitPass. Maybe only pass "false" here for those targets?
1238
1243
1244 if (TM->Options.EnableMachineOutliner &&
1248 TM->Options.SupportsDefaultOutlining)
1250 }
1251
1254
1258
1259 if (TM->Options.EnableMachineFunctionSplitter ||
1261 TM->Options.EnableStaticDataPartitioning) {
1262 const std::string ProfileFile = getFSProfileFile(TM);
1263 if (!ProfileFile.empty()) {
1266 ProfileFile, getFSRemappingFile(TM),
1268 } else {
1269 // Sample profile is given, but FSDiscriminator is not
1270 // enabled, this may result in performance regression.
1272 << "Using AutoFDO without FSDiscriminator for MFS may regress "
1273 "performance.\n";
1274 }
1275 }
1276 }
1277
1278 // Machine function splitter uses the basic block sections feature.
1279 // When used along with `-basic-block-sections=`, the basic-block-sections
1280 // feature takes precedence. This means functions eligible for
1281 // basic-block-sections optimizations (`=all`, or `=list=` with function
1282 // included in the list profile) will get that optimization instead.
1283 if (TM->Options.EnableMachineFunctionSplitter ||
1286
1287 if (SplitStaticData || TM->Options.EnableStaticDataPartitioning) {
1288 // The static data splitter pass is a machine function pass. and
1289 // static data annotator pass is a module-wide pass. See the file comment
1290 // in StaticDataAnnotator.cpp for the motivation.
1293 }
1294 // We run the BasicBlockSections pass if either we need BB sections or BB
1295 // address map (or both).
1296 if (TM->getBBSectionsType() != llvm::BasicBlockSection::None ||
1297 TM->Options.BBAddrMap) {
1300 if (TM->getBBSectionsType() == llvm::BasicBlockSection::List) {
1302 TM->getBBSectionsFuncListBuf()));
1305 else {
1308 }
1309 }
1311 }
1312
1314
1315 if (!DisableCFIFixup && TM->Options.EnableCFIFixup)
1317
1319
1320 // Add passes that directly emit MI after all other MI passes.
1322
1323 AddingMachinePasses = false;
1324}
1325
1326/// Add passes that optimize machine instructions in SSA form.
1328 // Pre-ra tail duplication.
1330
1331 // Optimize PHIs before DCE: removing dead PHI cycles may make more
1332 // instructions dead.
1334
1335 // This pass merges large allocas. StackSlotColoring is a different pass
1336 // which merges spill slots.
1338
1339 // If the target requests it, assign local variables to stack slots relative
1340 // to one another and simplify frame index references where possible.
1342
1343 // With optimization, dead code should already be eliminated. However
1344 // there is one known exception: lowered code for arguments that are only
1345 // used by tail calls, where the tail calls reuse the incoming stack
1346 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
1348
1349 // Allow targets to insert passes that improve instruction level parallelism,
1350 // like if-conversion. Such passes will typically need dominator trees and
1351 // loop info, just like LICM and CSE below.
1352 addILPOpts();
1353
1356
1358
1360 // Clean-up the dead code that may have been generated by peephole
1361 // rewriting.
1363}
1364
1365//===---------------------------------------------------------------------===//
1366/// Register Allocation Pass Configuration
1367//===---------------------------------------------------------------------===//
1368
1370 switch (OptimizeRegAlloc) {
1371 case cl::BOU_UNSET:
1373 case cl::BOU_TRUE: return true;
1374 case cl::BOU_FALSE: return false;
1375 }
1376 llvm_unreachable("Invalid optimize-regalloc state");
1377}
1378
1379/// A dummy default pass factory indicates whether the register allocator is
1380/// overridden on the command line.
1382
1383static RegisterRegAlloc
1385 "pick register allocator based on -O option",
1387
1392
1393/// Instantiate the default register allocator pass for this target for either
1394/// the optimized or unoptimized allocation path. This will be added to the pass
1395/// manager by addFastRegAlloc in the unoptimized case or addOptimizedRegAlloc
1396/// in the optimized case.
1397///
1398/// A target that uses the standard regalloc pass order for fast or optimized
1399/// allocation may still override this for per-target regalloc
1400/// selection. But -regalloc=... always takes precedence.
1402 if (Optimized)
1404 else
1406}
1407
1408/// Find and instantiate the register allocation pass requested by this target
1409/// at the current optimization level. Different register allocators are
1410/// defined as separate passes because they may require different analysis.
1411///
1412/// This helper ensures that the regalloc= option is always available,
1413/// even for targets that override the default allocator.
1414///
1415/// FIXME: When MachinePassRegistry register pass IDs instead of function ptrs,
1416/// this can be folded into addPass.
1418 // Initialize the global default.
1421
1423 if (Ctor != useDefaultRegisterAllocator)
1424 return Ctor();
1425
1426 // With no -regalloc= override, ask the target for a regalloc pass.
1427 return createTargetRegisterAllocator(Optimized);
1428}
1429
1434
1439 "Must use fast (default) register allocator for unoptimized regalloc.");
1440
1442
1443 // Allow targets to change the register assignments after
1444 // fast register allocation.
1446 return true;
1447}
1448
1450 // Add the selected register allocation pass.
1452
1453 // Allow targets to change the register assignments before rewriting.
1454 addPreRewrite();
1455
1456 // Finally rewrite virtual registers.
1458
1459 // Regalloc scoring for ML-driven eviction - noop except when learning a new
1460 // eviction policy.
1462 return true;
1463}
1464
1465/// Return true if the default global register allocator is in use and
1466/// has not be overriden on the command line with '-regalloc=...'
1468 return RegAlloc.getNumOccurrences() == 0;
1469}
1470
1471/// Add the minimum set of target-independent passes that are required for
1472/// register allocation. No coalescing or scheduling.
1479
1480/// Add standard target-independent passes that are tightly coupled with
1481/// optimized register allocation, including coalescing, machine instruction
1482/// scheduling, and register allocation itself.
1485
1487
1489
1490 // LiveVariables currently requires pure SSA form.
1491 //
1492 // FIXME: Once TwoAddressInstruction pass no longer uses kill flags,
1493 // LiveVariables can be removed completely, and LiveIntervals can be directly
1494 // computed. (We still either need to regenerate kill flags after regalloc, or
1495 // preferably fix the scavenger to not depend on them).
1496 // FIXME: UnreachableMachineBlockElim is a dependant pass of LiveVariables.
1497 // When LiveVariables is removed this has to be removed/moved either.
1498 // Explicit addition of UnreachableMachineBlockElim allows stopping before or
1499 // after it with -stop-before/-stop-after.
1502
1503 // Edge splitting is smarter with machine loop info.
1506
1507 // Eventually, we want to run LiveIntervals before PHI elimination.
1510
1513
1514 // The machine scheduler may accidentally create disconnected components
1515 // when moving subregister definitions around, avoid this by splitting them to
1516 // separate vregs before. Splitting can also improve reg. allocation quality.
1518
1519 // PreRA instruction scheduling.
1521
1523 // Perform stack slot coloring and post-ra machine LICM.
1525
1526 // Allow targets to expand pseudo instructions depending on the choice of
1527 // registers before MachineCopyPropagation.
1529
1530 // Copy propagate to forward register uses and try to eliminate COPYs that
1531 // were not coalesced.
1533
1534 // Run post-ra machine LICM to hoist reloads / remats.
1535 //
1536 // FIXME: can this move into MachineLateOptimization?
1538 }
1539}
1540
1541//===---------------------------------------------------------------------===//
1542/// Post RegAlloc Pass Configuration
1543//===---------------------------------------------------------------------===//
1544
1545/// Add passes that optimize machine instructions after register allocation.
1547 // Cleanup of redundant immediate/address loads.
1549
1550 // Branch folding must be run after regalloc and prolog/epilog insertion.
1552
1553 // Tail duplication.
1554 // Note that duplicating tail just increases code size and degrades
1555 // performance for targets that require Structured Control Flow.
1556 // In addition it can also make CFG irreducible. Thus we disable it.
1557 if (!TM->requiresStructuredCFG())
1559
1560 // Copy propagation.
1562}
1563
1564/// Add standard GC passes.
1567 return true;
1568}
1569
1570/// Add standard basic block placement passes.
1575 const std::string ProfileFile = getFSProfileFile(TM);
1576 if (!ProfileFile.empty() && !DisableLayoutFSProfileLoader)
1579 nullptr));
1580 }
1582 // Run a separate pass to collect block placement statistics.
1585 }
1586}
1587
1588//===---------------------------------------------------------------------===//
1589/// GlobalISel Configuration
1590//===---------------------------------------------------------------------===//
1592 return TM->Options.GlobalISelAbort == GlobalISelAbortMode::Enable;
1593}
1594
1598
1600 return true;
1601}
1602
1603std::unique_ptr<CSEConfigBase> TargetPassConfig::getCSEConfig() const {
1604 return std::make_unique<CSEConfigBase>();
1605}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
cl::opt< bool > EmitBBHash
This is the interface for LLVM's primary stateless and local alias analysis.
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file defines the DenseMap class.
This file contains an interface for creating legacy passes to print out IR in various granularities.
#define I(x, y, z)
Definition MD5.cpp:57
#define P(N)
ppc ctr loops PowerPC CTR Loops Verify
PassInstrumentationCallbacks PIC
This file defines the Pass Instrumentation classes that provide instrumentation points into the pass ...
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
cl::opt< bool > PrintRegUsage
This file provides utility classes that use RAII to save and restore values.
This is the interface for a metadata-based scoped no-alias analysis.
This file defines the SmallVector class.
static const char StopAfterOptName[]
static cl::opt< bool > DisableExpandReductions("disable-expand-reductions", cl::init(false), cl::Hidden, cl::desc("Disable the expand reduction intrinsics pass from running"))
Disable the expand reductions pass for testing.
static cl::opt< bool > EnableImplicitNullChecks("enable-implicit-null-checks", cl::desc("Fold null checks into faulting memory operations"), cl::init(false), cl::Hidden)
static cl::opt< bool > DisableMachineSink("disable-machine-sink", cl::Hidden, cl::desc("Disable Machine Sinking"))
static cl::opt< cl::boolOrDefault > DebugifyAndStripAll("debugify-and-strip-all-safe", cl::Hidden, cl::desc("Debugify MIR before and Strip debug after " "each pass except those known to be unsafe " "when debug info is present"))
static llvm::once_flag InitializeDefaultRegisterAllocatorFlag
A dummy default pass factory indicates whether the register allocator is overridden on the command li...
static cl::opt< bool > DisableAtExitBasedGlobalDtorLowering("disable-atexit-based-global-dtor-lowering", cl::Hidden, cl::desc("For MachO, disable atexit()-based global destructor lowering"))
static cl::opt< RegisterRegAlloc::FunctionPassCtor, false, RegisterPassParser< RegisterRegAlloc > > RegAlloc("regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator), cl::desc("Register allocator to use"))
static cl::opt< bool > PrintISelInput("print-isel-input", cl::Hidden, cl::desc("Print LLVM IR input to isel pass"))
static FunctionPass * useDefaultRegisterAllocator()
-regalloc=... command line option.
static cl::opt< bool > DisablePostRASched("disable-post-ra", cl::Hidden, cl::desc("Disable Post Regalloc Scheduler"))
static cl::opt< bool > EnableBlockPlacementStats("enable-block-placement-stats", cl::Hidden, cl::desc("Collect probability-driven block placement stats"))
static cl::opt< RunOutliner > EnableMachineOutliner("enable-machine-outliner", cl::desc("Enable the machine outliner"), cl::Hidden, cl::ValueOptional, cl::init(RunOutliner::TargetDefault), cl::values(clEnumValN(RunOutliner::AlwaysOutline, "always", "Run on all functions guaranteed to be beneficial"), clEnumValN(RunOutliner::OptimisticPGO, "optimistic-pgo", "Outline cold code only. If a code block does not have " "profile data, optimistically assume it is cold."), clEnumValN(RunOutliner::ConservativePGO, "conservative-pgo", "Outline cold code only. If a code block does not have " "profile, data, conservatively assume it is hot."), clEnumValN(RunOutliner::NeverOutline, "never", "Disable all outlining"), clEnumValN(RunOutliner::AlwaysOutline, "", "")))
static cl::opt< bool > DisableMachineDCE("disable-machine-dce", cl::Hidden, cl::desc("Disable Machine Dead Code Elimination"))
static std::string getFSRemappingFile(const TargetMachine *TM)
static const char StopBeforeOptName[]
static AnalysisID getPassIDFromName(StringRef PassName)
static cl::opt< bool > DisableEarlyIfConversion("disable-early-ifcvt", cl::Hidden, cl::desc("Disable Early If-conversion"))
static cl::opt< bool > DisableReplaceWithVecLib("disable-replace-with-vec-lib", cl::Hidden, cl::desc("Disable replace with vector math call pass"))
static cl::opt< bool > EnableMachineFunctionSplitter("enable-split-machine-functions", cl::Hidden, cl::desc("Split out cold blocks from machine functions based on profile " "information."))
Enable the machine function splitter pass.
static IdentifyingPassPtr overridePass(AnalysisID StandardID, IdentifyingPassPtr TargetID)
Allow standard passes to be disabled by the command line, regardless of who is adding the pass.
cl::opt< bool > EmitBBHash("emit-bb-hash", cl::desc("Emit the hash of basic block in the SHT_LLVM_BB_ADDR_MAP section."), cl::init(false), cl::Optional)
static std::pair< StringRef, unsigned > getPassNameAndInstanceNum(StringRef PassName)
static cl::opt< bool > PrintAfterISel("print-after-isel", cl::init(false), cl::Hidden, cl::desc("Print machine instrs after ISel"))
static cl::opt< cl::boolOrDefault > VerifyMachineCode("verify-machineinstrs", cl::Hidden, cl::desc("Verify generated machine code"))
static cl::opt< bool > DisablePartialLibcallInlining("disable-partial-libcall-inlining", cl::Hidden, cl::desc("Disable Partial Libcall Inlining"))
#define SET_BOOLEAN_OPTION(Option)
static cl::opt< std::string > StartAfterOpt(StringRef(StartAfterOptName), cl::desc("Resume compilation after a specific pass"), cl::value_desc("pass-name"), cl::init(""), cl::Hidden)
cl::opt< bool > PrintRegUsage("print-regusage", cl::Hidden, cl::desc("Print register usage details collected for IPRA"))
static cl::opt< bool > DisableBlockPlacement("disable-block-placement", cl::Hidden, cl::desc("Disable probability-driven block placement"))
static cl::opt< bool > DisableRAFSProfileLoader("disable-ra-fsprofile-loader", cl::init(false), cl::Hidden, cl::desc("Disable MIRProfileLoader before RegAlloc"))
static cl::opt< std::string > StopAfterOpt(StringRef(StopAfterOptName), cl::desc("Stop compilation after a specific pass"), cl::value_desc("pass-name"), cl::init(""), cl::Hidden)
static void initializeDefaultRegisterAllocatorOnce()
static cl::opt< bool > DisableSelectOptimize("disable-select-optimize", cl::init(true), cl::Hidden, cl::desc("Disable the select-optimization pass from running"))
Disable the select optimization pass.
static cl::opt< std::string > FSRemappingFile("fs-remapping-file", cl::init(""), cl::value_desc("filename"), cl::desc("Flow Sensitive profile remapping file name."), cl::Hidden)
static cl::opt< bool > DisableCFIFixup("disable-cfi-fixup", cl::Hidden, cl::desc("Disable the CFI fixup pass"))
static cl::opt< bool > SplitStaticData("split-static-data", cl::Hidden, cl::init(false), cl::desc("Split static data sections into hot and cold " "sections using profile information"))
static cl::opt< bool > DisablePostRAMachineLICM("disable-postra-machine-licm", cl::Hidden, cl::desc("Disable Machine LICM"))
static const char StartBeforeOptName[]
static const PassInfo * getPassInfo(StringRef PassName)
static cl::opt< bool > BasicBlockSectionMatchInfer("basic-block-section-match-infer", cl::desc("Enable matching and inference when generating basic block sections"), cl::init(false), cl::Optional)
Enable matching and inference when using propeller.
static cl::opt< bool > EarlyLiveIntervals("early-live-intervals", cl::Hidden, cl::desc("Run live interval analysis earlier in the pipeline"))
static cl::opt< bool > DisableMachineLICM("disable-machine-licm", cl::Hidden, cl::desc("Disable Machine LICM"))
static cl::opt< cl::boolOrDefault > EnableGlobalISelOption("global-isel", cl::Hidden, cl::desc("Enable the \"global\" instruction selector"))
static cl::opt< bool > DisableTailDuplicate("disable-tail-duplicate", cl::Hidden, cl::desc("Disable tail duplication"))
static cl::opt< bool > DisablePostRAMachineSink("disable-postra-machine-sink", cl::Hidden, cl::desc("Disable PostRA Machine Sinking"))
static const char StartAfterOptName[]
Option names for limiting the codegen pipeline.
static cl::opt< bool > EnableIPRA("enable-ipra", cl::init(false), cl::Hidden, cl::desc("Enable interprocedural register allocation " "to reduce load/store at procedure calls."))
static cl::opt< bool > DisableCGP("disable-cgp", cl::Hidden, cl::desc("Disable Codegen Prepare"))
static std::string getFSProfileFile(const TargetMachine *TM)
static cl::opt< std::string > StartBeforeOpt(StringRef(StartBeforeOptName), cl::desc("Resume compilation before a specific pass"), cl::value_desc("pass-name"), cl::init(""), cl::Hidden)
static cl::opt< bool > TriggerCrash("codegen-pipeline-trigger-crash", cl::init(false), cl::Hidden, cl::desc("Trigger crash in codegen pipeline"))
static IdentifyingPassPtr applyDisable(IdentifyingPassPtr PassID, bool Override)
Allow standard passes to be disabled by command line options.
static cl::opt< GlobalISelAbortMode > EnableGlobalISelAbort("global-isel-abort", cl::Hidden, cl::desc("Enable abort calls when \"global\" instruction selection " "fails to lower/select an instruction"), cl::values(clEnumValN(GlobalISelAbortMode::Disable, "0", "Disable the abort"), clEnumValN(GlobalISelAbortMode::Enable, "1", "Enable the abort"), clEnumValN(GlobalISelAbortMode::DisableWithDiag, "2", "Disable the abort but emit a diagnostic on failure")))
static cl::opt< bool > DisableEarlyTailDup("disable-early-taildup", cl::Hidden, cl::desc("Disable pre-register allocation tail duplication"))
static cl::opt< bool > DisableConstantHoisting("disable-constant-hoisting", cl::Hidden, cl::desc("Disable ConstantHoisting"))
static cl::opt< cl::boolOrDefault > EnableFastISelOption("fast-isel", cl::Hidden, cl::desc("Enable the \"fast\" instruction selector"))
static cl::opt< bool > DisableSSC("disable-ssc", cl::Hidden, cl::desc("Disable Stack Slot Coloring"))
static cl::opt< bool > EnableGlobalMergeFunc("enable-global-merge-func", cl::Hidden, cl::desc("Enable global merge functions that are based on hash function"))
static cl::opt< bool > DisableBranchFold("disable-branch-fold", cl::Hidden, cl::desc("Disable branch folding"))
#define DISABLE_PASS(Option, Name)
static RegisterRegAlloc defaultRegAlloc("default", "pick register allocator based on -O option", useDefaultRegisterAllocator)
static cl::opt< std::string > StopBeforeOpt(StringRef(StopBeforeOptName), cl::desc("Stop compilation before a specific pass"), cl::value_desc("pass-name"), cl::init(""), cl::Hidden)
static cl::opt< bool > DisableMachineCSE("disable-machine-cse", cl::Hidden, cl::desc("Disable Machine Common Subexpression Elimination"))
static cl::opt< bool > EnableGCEmptyBlocks("enable-gc-empty-basic-blocks", cl::init(false), cl::Hidden, cl::desc("Enable garbage-collecting empty basic blocks"))
Enable garbage-collecting empty basic blocks.
static cl::opt< bool > DisableLayoutFSProfileLoader("disable-layout-fsprofile-loader", cl::init(false), cl::Hidden, cl::desc("Disable MIRProfileLoader before BlockPlacement"))
static cl::opt< bool > MISchedPostRA("misched-postra", cl::Hidden, cl::desc("Run MachineScheduler post regalloc (independent of preRA sched)"))
static cl::opt< bool > DisableCopyProp("disable-copyprop", cl::Hidden, cl::desc("Disable Copy Propagation pass"))
static cl::opt< cl::boolOrDefault > OptimizeRegAlloc("optimize-regalloc", cl::Hidden, cl::desc("Enable optimized register allocation compilation path."))
static cl::opt< bool > DisableLSR("disable-lsr", cl::Hidden, cl::desc("Disable Loop Strength Reduction Pass"))
static cl::opt< std::string > FSProfileFile("fs-profile-file", cl::init(""), cl::value_desc("filename"), cl::desc("Flow Sensitive profile file name."), cl::Hidden)
static cl::opt< cl::boolOrDefault > DebugifyCheckAndStripAll("debugify-check-and-strip-all-safe", cl::Hidden, cl::desc("Debugify MIR before, by checking and stripping the debug info after, " "each pass except those known to be unsafe when debug info is " "present"))
#define SET_OPTION(Option)
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
This is the interface for a metadata-based TBAA.
Defines the virtual file system interface vfs::FileSystem.
static const char PassName[]
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT, true > const_iterator
Definition DenseMap.h:136
This pass is required by interprocedural register allocation.
Tagged union holding either a T or a Error.
Definition Error.h:485
This is a fast-path instruction selection class that generates poor code and doesn't support illegal ...
Definition FastISel.h:66
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
Discriminated union of Pass ID types.
AnalysisID getID() const
ImmutablePass(char &pid)
Definition Pass.h:287
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition MCAsmInfo.h:66
ExceptionHandling getExceptionHandlingType() const
Definition MCAsmInfo.h:655
DenseMap< AnalysisID, IdentifyingPassPtr > TargetPasses
SmallVector< InsertedPass, 4 > InsertedPasses
Store the pairs of <AnalysisID, AnalysisID> of which the second pass is inserted after each instance ...
PassInfo class - An instance of this class exists for every pass known by the system,...
Definition PassInfo.h:29
const void * getTypeInfo() const
getTypeInfo - Return the id object for the pass... TODO : Rename
Definition PassInfo.h:62
This class manages callbacks registration, as well as provides a way for PassInstrumentation to pass ...
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
LLVM_ABI const PassInfo * getPassInfo(const void *TI) const
getPassInfo - Look up a pass' corresponding PassInfo, indexed by the pass' type identifier (&MyPass::...
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
static Pass * createPass(AnalysisID ID)
Definition Pass.cpp:214
AnalysisID getPassID() const
getPassID - Return the PassID number that corresponds to this pass.
Definition Pass.h:122
RegisterPassParser class - Handle the addition of new machine passes.
static void setDefault(FunctionPassCtor C)
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
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.
Definition StringRef.h:56
bool getAsInteger(unsigned Radix, T &Result) const
Parse the current string as an integer of the specified radix.
Definition StringRef.h:490
constexpr bool empty() const
Check if the string is empty.
Definition StringRef.h:141
Primary interface to the complete machine description for the target machine.
const std::optional< PGOOptions > & getPGOOption() const
Target-Independent Code Generator Pass Configuration Options.
bool usingDefaultRegAlloc() const
Return true if the default global register allocator is in use and has not be overriden on the comman...
bool requiresCodeGenSCCOrder() const
void addCheckDebugPass()
Add a pass to check synthesized debug info for MIR.
virtual void addPreLegalizeMachineIR()
This method may be implemented by targets that want to run passes immediately before legalization.
void addPrintPass(const std::string &Banner)
Add a pass to print the machine function if printing is enabled.
virtual void addPreEmitPass2()
Targets may add passes immediately before machine code is emitted in this callback.
virtual std::unique_ptr< CSEConfigBase > getCSEConfig() const
Returns the CSEConfig object to use for the current optimization level.
bool EnableLoopTermFold
Enable LoopTermFold immediately after LSR.
void printAndVerify(const std::string &Banner)
printAndVerify - Add a pass to dump then verify the machine function, if those steps are enabled.
static bool hasLimitedCodeGenPipeline()
Returns true if one of the -start-after, -start-before, -stop-after or -stop-before options is set.
static Expected< StartStopInfo > getStartStopInfo(PassInstrumentationCallbacks &PIC)
Returns pass name in -stop-before or -stop-after NOTE: New pass manager migration only.
virtual void addCodeGenPrepare()
Add pass to prepare the LLVM IR for code generation.
void insertPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID)
Insert InsertedPassID pass after TargetPassID pass.
void addMachinePostPasses(const std::string &Banner)
Add standard passes after a pass that has just been added.
virtual void addPreSched2()
This method may be implemented by targets that want to run passes after prolog-epilog insertion and b...
virtual bool isGISelCSEEnabled() const
Check whether continuous CSE should be enabled in GISel passes.
virtual bool addILPOpts()
Add passes that optimize instruction level parallelism for out-of-order targets.
virtual void addPostRegAlloc()
This method may be implemented by targets that want to run passes after register allocation pass pipe...
void addDebugifyPass()
Add a pass to add synthesized debug info to the MIR.
virtual bool addInstSelector()
addInstSelector - This method should install an instruction selector pass, which converts from LLVM c...
CodeGenOptLevel getOptLevel() const
virtual bool addPreISel()
Methods with trivial inline returns are convenient points in the common codegen pass pipeline where t...
void setOpt(bool &Opt, bool Val)
virtual void addBlockPlacement()
Add standard basic block placement passes.
virtual FunctionPass * createRegAllocPass(bool Optimized)
addMachinePasses helper to create the target-selected or overriden regalloc pass.
virtual void addPostBBSections()
This pass may be implemented by targets that want to run passes immediately after basic block section...
virtual void addOptimizedRegAlloc()
addOptimizedRegAlloc - Add passes related to register allocation.
virtual bool addRegAssignAndRewriteFast()
Add core register allocator passes which do the actual register assignment and rewriting.
virtual void addPreEmitPass()
This pass may be implemented by targets that want to run passes immediately before machine code is em...
bool isGlobalISelAbortEnabled() const
Check whether or not GlobalISel should abort on error.
bool getOptimizeRegAlloc() const
Return true if the optimized regalloc pipeline is enabled.
bool isCustomizedRegAlloc()
Return true if register allocator is specified by -regalloc=override.
virtual void addPreRegBankSelect()
This method may be implemented by targets that want to run passes immediately before the register ban...
virtual bool reportDiagnosticWhenGlobalISelFallback() const
Check whether or not a diagnostic should be emitted when GlobalISel uses the fallback path.
virtual bool addPreRewrite()
addPreRewrite - Add passes to the optimized register allocation pipeline after register allocation is...
virtual bool addRegBankSelect()
This method should install a register bank selector pass, which assigns register banks to virtual reg...
void setRequiresCodeGenSCCOrder(bool Enable=true)
virtual void addMachineLateOptimization()
Add passes that optimize machine instructions after register allocation.
virtual void addMachinePasses()
Add the complete, standard set of LLVM CodeGen passes.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addPreGlobalInstructionSelect()
This method may be implemented by targets that want to run passes immediately before the (global) ins...
virtual void addFastRegAlloc()
addFastRegAlloc - Add the minimum set of target-independent passes that are required for fast registe...
virtual bool addLegalizeMachineIR()
This method should install a legalize pass, which converts the instruction sequence into one that can...
virtual void addMachineSSAOptimization()
addMachineSSAOptimization - Add standard passes that optimize machine instructions in SSA form.
void substitutePass(AnalysisID StandardID, IdentifyingPassPtr TargetID)
Allow the target to override a specific pass without overriding the pass pipeline.
virtual bool addRegAssignAndRewriteOptimized()
virtual bool addGlobalInstructionSelect()
This method should install a (global) instruction selector pass, which converts possibly generic inst...
virtual void addPreRegAlloc()
This method may be implemented by targets that want to run passes immediately before register allocat...
static std::string getLimitedCodeGenPipelineReason()
If hasLimitedCodeGenPipeline is true, this method returns a string with the name of the options that ...
AnalysisID addPass(AnalysisID PassID)
Utilities for targets to add passes to the pass manager.
void addPassesToHandleExceptions()
Add passes to lower exception handling for the code generator.
void addStripDebugPass()
Add a pass to remove debug info from the MIR.
bool isPassSubstitutedOrOverridden(AnalysisID ID) const
Return true if the pass has been substituted by the target or overridden on the command line.
bool addCoreISelPasses()
Add the actual instruction selection passes.
virtual void addISelPrepare()
Add common passes that perform LLVM IR to IR transforms in preparation for instruction selection.
static bool willCompleteCodeGenPipeline()
Returns true if none of the -stop-before and -stop-after options is set.
void addMachinePrePasses(bool AllowDebugify=true)
Add standard passes before a pass that's about to be added.
virtual bool addGCPasses()
addGCPasses - Add late codegen passes that analyze code for garbage collection.
virtual bool addIRTranslator()
This method should install an IR translator pass, which converts from LLVM code to machine instructio...
void addVerifyPass(const std::string &Banner)
Add a pass to perform basic verification of the machine function if verification is enabled.
virtual FunctionPass * createTargetRegisterAllocator(bool Optimized)
createTargetRegisterAllocator - Create the register allocator pass for this target at the current opt...
virtual bool addPostFastRegAllocRewrite()
addPostFastRegAllocRewrite - Add passes to the optimized register allocation pipeline after fast regi...
IdentifyingPassPtr getPassSubstitution(AnalysisID StandardID) const
Return the pass substituted for StandardID by the target.
bool addISelPasses()
High level function that adds all passes necessary to go from llvm IR representation to the MI repres...
virtual void addPostRewrite()
Add passes to be run immediately after virtual registers are rewritten to physical registers.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static LLVM_ABI raw_ostream & warning()
Convenience method for printing "warning: " to stderr.
Definition WithColor.cpp:85
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
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)
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI ModulePass * createLowerGlobalDtorsLegacyPass()
LLVM_ABI FunctionPass * createCFIFixup()
Creates CFI Fixup pass.
LLVM_ABI FunctionPass * createFastRegisterAllocator()
FastRegisterAllocation Pass - This pass register allocates as fast as possible.
LLVM_ABI char & EarlyMachineLICMID
This pass performs loop invariant code motion on machine instructions.
LLVM_ABI char & GCMachineCodeAnalysisID
GCMachineCodeAnalysis - Target-independent pass to mark safe points in machine code.
LLVM_ABI char & FEntryInserterID
This pass inserts FEntry calls.
LLVM_ABI char & GCLoweringID
GCLowering Pass - Used by gc.root to perform its default lowering operations.
LLVM_ABI void initializeBasicAAWrapperPassPass(PassRegistry &)
LLVM_ABI void registerCodeGenCallback(PassInstrumentationCallbacks &PIC, TargetMachine &)
LLVM_ABI char & InitUndefID
LLVM_ABI char & RegisterCoalescerID
RegisterCoalescer - This pass merges live ranges to eliminate copies.
LLVM_ABI FunctionPass * createGreedyRegisterAllocator()
Greedy register allocation pass - This pass implements a global register allocator for optimized buil...
LLVM_ABI FunctionPass * createConstantHoistingPass()
LLVM_ABI FunctionPass * createSafeStackPass()
This pass splits the stack into a safe stack and an unsafe stack to protect against stack-based overf...
LLVM_ABI cl::opt< bool > EnableFSDiscriminator
@ SjLj
setjmp/longjmp based exceptions
Definition CodeGen.h:56
@ ZOS
z/OS MVS Exception Handling.
Definition CodeGen.h:61
@ None
No exception support.
Definition CodeGen.h:54
@ AIX
AIX Exception Handling.
Definition CodeGen.h:60
@ DwarfCFI
DWARF-like instruction based exceptions.
Definition CodeGen.h:55
@ WinEH
Windows Exception Handling.
Definition CodeGen.h:58
@ Wasm
WebAssembly Exception Handling.
Definition CodeGen.h:59
LLVM_ABI FunctionPass * createSelectOptimizePass()
This pass converts conditional moves to conditional jumps when profitable.
LLVM_ABI FunctionPass * createWasmEHPass()
createWasmEHPass - This pass adapts exception handling code to use WebAssembly's exception handling s...
LLVM_ABI char & FixupStatepointCallerSavedID
The pass fixups statepoint machine instruction to replace usage of caller saved registers with stack ...
LLVM_ABI MachineFunctionPass * createBasicBlockSectionsPass()
createBasicBlockSections Pass - This pass assigns sections to machine basic blocks and is enabled wit...
LLVM_ABI FunctionPass * createPostInlineEntryExitInstrumenterPass()
LLVM_ABI MachineFunctionPass * createPrologEpilogInserterPass()
LLVM_ABI char & TailDuplicateLegacyID
TailDuplicate - Duplicate blocks with unconditional branches into tails of their predecessors.
LLVM_ABI char & ExpandPostRAPseudosID
ExpandPostRAPseudos - This pass expands pseudo instructions after register allocation.
LLVM_ABI ModulePass * createStripDebugMachineModuleLegacyPass(bool OnlyDebugified)
Creates MIR Strip Debug pass.
LLVM_ABI char & PatchableFunctionID
This pass implements the "patchable-function" attribute.
LLVM_ABI FunctionPass * createScalarizeMaskedMemIntrinLegacyPass()
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
LLVM_ABI char & RemoveLoadsIntoFakeUsesID
RemoveLoadsIntoFakeUses pass.
LLVM_ABI MachineFunctionPass * createStackFrameLayoutAnalysisPass()
StackFramePrinter pass - This pass prints out the machine function's stack frame to the given stream ...
LLVM_ABI ModulePass * createGlobalMergeFuncPass()
This pass performs merging similar functions globally.
LLVM_ABI char & MachineSanitizerBinaryMetadataID
LLVM_ABI FunctionPass * createStackProtectorPass()
createStackProtectorPass - This pass adds stack protectors to functions.
LLVM_ABI Pass * createLoopTermFoldPass()
LLVM_ABI char & MachineSchedulerID
MachineScheduler - This pass schedules machine instructions.
LLVM_ABI char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
LLVM_ABI char & PeepholeOptimizerLegacyID
PeepholeOptimizer - This pass performs peephole optimizations - like extension and comparison elimina...
LLVM_ABI char & LiveDebugValuesID
LiveDebugValues pass.
LLVM_ABI char & PrologEpilogCodeInserterID
PrologEpilogCodeInserter - This pass inserts prolog and epilog code, and eliminates abstract frame re...
LLVM_ABI FunctionPass * createExpandIRInstsPass(CodeGenOptLevel)
LLVM_ABI char & EarlyIfConverterLegacyID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
LLVM_ABI MachineFunctionPass * createMachineFunctionSplitterPass()
createMachineFunctionSplitterPass - This pass splits machine functions using profile information.
LLVM_ABI FunctionPass * createMachineVerifierPass(const std::string &Banner)
createMachineVerifierPass - This pass verifies cenerated machine code instructions for correctness.
LLVM_ABI ImmutablePass * createBasicBlockSectionsProfileReaderWrapperPass(const MemoryBuffer *Buf)
LLVM_ABI char & MachineLoopInfoID
MachineLoopInfo - This pass is a loop analysis pass.
LLVM_ABI char & ShadowStackGCLoweringID
ShadowStackGCLowering - Implements the custom lowering mechanism used by the shadow stack GC.
LLVM_ABI char & ImplicitNullChecksID
ImplicitNullChecks - This pass folds null pointer checks into nearby memory operations.
LLVM_ABI FunctionPass * createMIRAddFSDiscriminatorsPass(sampleprof::FSDiscriminatorPass P)
Add Flow Sensitive Discriminators.
LLVM_ABI ModulePass * createPreISelIntrinsicLoweringPass()
This pass lowers the @llvm.load.relative and @llvm.objc.
LLVM_ABI MachineFunctionPass * createStaticDataSplitterPass()
createStaticDataSplitterPass - This is a machine-function pass that categorizes static data hotness u...
LLVM_ABI char & ShrinkWrapID
ShrinkWrap pass. Look for the best place to insert save and restore.
LLVM_ABI char & MachineLateInstrsCleanupID
MachineLateInstrsCleanup - This pass removes redundant identical instructions after register allocati...
LLVM_ABI char & UnreachableMachineBlockElimID
UnreachableMachineBlockElimination - This pass removes unreachable machine basic blocks.
LLVM_ABI FunctionPass * createLowerInvokePass()
LLVM_ABI FunctionPass * createRegUsageInfoCollector()
This pass is executed POST-RA to collect which physical registers are preserved by given machine func...
LLVM_ABI MachineFunctionPass * createResetMachineFunctionPass(bool EmitFallbackDiag, bool AbortOnFailedISel)
This pass resets a MachineFunction when it has the FailedISel property as if it was just created.
LLVM_ABI ImmutablePass * createScopedNoAliasAAWrapperPass()
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI char & XRayInstrumentationID
This pass inserts the XRay instrumentation sleds if they are supported by the target platform.
LLVM_ABI char & OptimizePHIsLegacyID
OptimizePHIs - This pass optimizes machine instruction PHIs to take advantage of opportunities create...
LLVM_ABI char & StackMapLivenessID
StackMapLiveness - This pass analyses the register live-out set of stackmap/patchpoint intrinsics and...
LLVM_ABI ModulePass * createStaticDataAnnotatorPass()
createStaticDataAnnotatorPASS - This is a module pass that reads from StaticDataProfileInfoWrapperPas...
LLVM_ABI char & FuncletLayoutID
This pass lays out funclets contiguously.
LLVM_ABI FunctionPass * createCodeGenPrepareLegacyPass()
createCodeGenPrepareLegacyPass - Transform the code to expose more pattern matching during instructio...
LLVM_ABI MachineFunctionPass * createMachineFunctionPrinterPass(raw_ostream &OS, const std::string &Banner="")
MachineFunctionPrinter pass - This pass prints out the machine function to the given stream as a debu...
LLVM_ABI char & RemoveRedundantDebugValuesID
RemoveRedundantDebugValues pass.
LLVM_ABI FunctionPass * createBasicAAWrapperPass()
LLVM_ABI char & DetectDeadLanesID
This pass adds dead/undef flags after analyzing subregister lanes.
LLVM_ABI char & PostRAMachineSinkingID
This pass perform post-ra machine sink for COPY instructions.
LLVM_ABI FunctionPass * createDwarfEHPass(CodeGenOptLevel OptLevel)
createDwarfEHPass - This pass mulches exception handling code into a form adapted to code generation.
LLVM_ABI FunctionPass * createRegAllocScoringPass()
When learning an eviction policy, extract score(reward) information, otherwise this does nothing.
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
LLVM_ABI char & StackSlotColoringID
StackSlotColoring - This pass performs stack slot coloring.
LLVM_ABI ModulePass * createMachineOutlinerPass(RunOutliner RunOutlinerMode)
This pass performs outlining on machine instructions directly before printing assembly.
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
Definition Error.h:340
LLVM_ABI ModulePass * createLowerEmuTLSPass()
LowerEmuTLS - This pass generates __emutls_[vt].xyz variables for all TLS variables for the emulated ...
LLVM_ABI char & ProcessImplicitDefsID
ProcessImpicitDefs pass - This pass removes IMPLICIT_DEFs.
LLVM_ABI ModulePass * createCheckDebugMachineModulePass()
Creates MIR Check Debug pass.
LLVM_ABI ImmutablePass * createTargetTransformInfoWrapperPass(TargetIRAnalysis TIRA)
Create an analysis pass wrapper around a TTI object.
LLVM_ABI MachineFunctionPass * createInsertCodePrefetchPass()
createInsertCodePrefetchPass - This pass enables inserting code prefetch hints based on the basic blo...
static cl::opt< bool > TriggerCrash("opt-pipeline-trigger-crash", cl::init(false), cl::Hidden, cl::desc("Trigger crash in optimization pipeline"))
LLVM_ABI FunctionPass * createMIRProfileLoaderPass(std::string File, std::string RemappingFile, sampleprof::FSDiscriminatorPass P, IntrusiveRefCntPtr< vfs::FileSystem > FS)
Read Flow Sensitive Profile.
LLVM_ABI FunctionPass * createVerifierPass(bool FatalErrors=true)
FunctionPass * createTriggerCrashFunctionPass()
LLVM_ABI char & MachineCSELegacyID
MachineCSE - This pass performs global CSE on machine instructions.
LLVM_ABI ImmutablePass * createTypeBasedAAWrapperPass()
LLVM_ABI FunctionPass * createWinEHPass(bool DemoteCatchSwitchPHIOnly=false)
createWinEHPass - Prepares personality functions used by MSVC on Windows, in addition to the Itanium ...
LLVM_ABI Pass * createLoopStrengthReducePass()
LLVM_ABI MachineFunctionPass * createMachineBlockHashInfoPass()
createMachineBlockHashInfoPass - This pass computes basic block hashes.
LLVM_ABI char & LiveVariablesID
LiveVariables pass - This pass computes the set of blocks in which each variable is life and sets mac...
LLVM_ABI char & EarlyTailDuplicateLegacyID
Duplicate blocks with unconditional branches into tails of their predecessors.
LLVM_ABI void initializeAAResultsWrapperPassPass(PassRegistry &)
LLVM_ABI FunctionPass * createExpandReductionsPass()
This pass expands the reduction intrinsics into sequences of shuffles.
void call_once(once_flag &flag, Function &&F, Args &&... ArgList)
Execute the function specified as a parameter once.
Definition Threading.h:86
LLVM_ABI FunctionPass * createSjLjEHPreparePass(const TargetMachine *TM)
createSjLjEHPreparePass - This pass adapts exception handling code to use the GCC-style builtin setjm...
LLVM_ABI MachineFunctionPass * createBasicBlockPathCloningPass()
LLVM_ABI char & StackColoringLegacyID
StackSlotColoring - This pass performs stack coloring and merging.
LLVM_ABI char & VirtRegRewriterID
VirtRegRewriter pass.
LLVM_ABI FunctionPass * createReplaceWithVeclibLegacyPass()
LLVM_ABI FunctionPass * createInlineAsmPreparePass()
LLVM_ABI char & FinalizeISelID
This pass expands pseudo-instructions, reserves registers and adjusts machine frame information.
LLVM_ABI char & MachineSinkingLegacyID
MachineSinking - This pass performs sinking on machine instructions.
LLVM_ABI FunctionPass * createRegUsageInfoPropPass()
Return a MachineFunction pass that identifies call sites and propagates register usage information of...
LLVM_ABI FunctionPass * createPartiallyInlineLibCallsPass()
LLVM_ABI void initializeLibcallLoweringInfoWrapperPass(PassRegistry &)
LLVM_ABI char & MachineBlockPlacementID
MachineBlockPlacement - This pass places basic blocks based on branch probabilities.
LLVM_ABI char & TwoAddressInstructionPassID
TwoAddressInstruction - This pass reduces two-address instructions to use two operands.
LLVM_ABI MachineFunctionPass * createBasicBlockMatchingAndInferencePass()
createBasicBlockMatchingAndInferencePass - This pass enables matching and inference when using propel...
LLVM_ABI Pass * createCanonicalizeFreezeInLoopsPass()
LLVM_ABI char & LocalStackSlotAllocationID
LocalStackSlotAllocation - This pass assigns local frame indices to stack slots relative to one anoth...
LLVM_ABI char & BranchFolderPassID
BranchFolding - This pass performs machine code CFG based optimizations to delete branches to branche...
LLVM_ABI char & PHIEliminationID
PHIElimination - This pass eliminates machine instruction PHI nodes by inserting copy instructions.
LLVM_ABI Pass * createObjCARCContractPass()
LLVM_ABI ModulePass * createDebugifyMachineModulePass()
Creates MIR Debugify pass.
LLVM_ABI FunctionPass * createPrintFunctionPass(raw_ostream &OS, const std::string &Banner="")
Create and return a pass that prints functions to the specified raw_ostream as they are processed.
LLVM_ABI ModulePass * createWindowsSecureHotPatchingPass()
Creates Windows Secure Hot Patch pass.
LLVM_ABI char & RenameIndependentSubregsID
This pass detects subregister lanes in a virtual register that are used independently of other lanes ...
LLVM_ABI char & MachineLICMID
This pass performs loop invariant code motion on machine instructions.
LLVM_ABI char & MachineBlockPlacementStatsID
MachineBlockPlacementStats - This pass collects statistics about the basic block placement using bran...
LLVM_ABI MachineFunctionPass * createGCEmptyBasicBlocksLegacyPass()
createGCEmptyBasicblocksPass - Empty basic blocks (basic blocks without real code) appear as the resu...
LLVM_ABI char & LiveIntervalsID
LiveIntervals - This analysis keeps track of the live ranges of virtual and physical registers.
LLVM_ABI char & MachineCopyPropagationID
MachineCopyPropagation - This pass performs copy propagation on machine instructions.
LLVM_ABI char & DeadMachineInstructionElimID
DeadMachineInstructionElim - This pass removes dead machine instructions.
const void * AnalysisID
Definition Pass.h:51
LLVM_ABI void initializeCodeGen(PassRegistry &)
Initialize all passes linked into the CodeGen library.
Definition CodeGen.cpp:20
LLVM_ABI FunctionPass * createUnreachableBlockEliminationPass()
createUnreachableBlockEliminationPass - The LLVM code generator does not work well with unreachable b...
LLVM_ABI CGPassBuilderOption getCGPassBuilderOption()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
InsertedPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID)
A utility class that uses RAII to save and restore the value of a variable.
The llvm::once_flag structure.
Definition Threading.h:67