xref: /llvm-project/llvm/lib/CodeGen/TargetPassConfig.cpp (revision 43882b16a343fc848a9485d59479f48a34abdbdc)
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 
14 #include "llvm/CodeGen/TargetPassConfig.h"
15 #include "llvm/ADT/DenseMap.h"
16 #include "llvm/ADT/SmallVector.h"
17 #include "llvm/ADT/StringRef.h"
18 #include "llvm/Analysis/BasicAliasAnalysis.h"
19 #include "llvm/Analysis/CFLAndersAliasAnalysis.h"
20 #include "llvm/Analysis/CFLSteensAliasAnalysis.h"
21 #include "llvm/Analysis/CallGraphSCCPass.h"
22 #include "llvm/Analysis/ScopedNoAliasAA.h"
23 #include "llvm/Analysis/TargetTransformInfo.h"
24 #include "llvm/Analysis/TypeBasedAliasAnalysis.h"
25 #include "llvm/CodeGen/CSEConfigBase.h"
26 #include "llvm/CodeGen/MachineFunctionPass.h"
27 #include "llvm/CodeGen/MachinePassRegistry.h"
28 #include "llvm/CodeGen/Passes.h"
29 #include "llvm/CodeGen/RegAllocRegistry.h"
30 #include "llvm/IR/IRPrintingPasses.h"
31 #include "llvm/IR/LegacyPassManager.h"
32 #include "llvm/IR/Verifier.h"
33 #include "llvm/MC/MCAsmInfo.h"
34 #include "llvm/MC/MCTargetOptions.h"
35 #include "llvm/Pass.h"
36 #include "llvm/Support/CodeGen.h"
37 #include "llvm/Support/CommandLine.h"
38 #include "llvm/Support/Compiler.h"
39 #include "llvm/Support/Debug.h"
40 #include "llvm/Support/ErrorHandling.h"
41 #include "llvm/Support/Threading.h"
42 #include "llvm/Support/SaveAndRestore.h"
43 #include "llvm/Target/TargetMachine.h"
44 #include "llvm/Transforms/Scalar.h"
45 #include "llvm/Transforms/Utils.h"
46 #include "llvm/Transforms/Utils/SymbolRewriter.h"
47 #include <cassert>
48 #include <string>
49 
50 using namespace llvm;
51 
52 cl::opt<bool> EnableIPRA("enable-ipra", cl::init(false), cl::Hidden,
53                          cl::desc("Enable interprocedural register allocation "
54                                   "to reduce load/store at procedure calls."));
55 static cl::opt<bool> DisablePostRASched("disable-post-ra", cl::Hidden,
56     cl::desc("Disable Post Regalloc Scheduler"));
57 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
58     cl::desc("Disable branch folding"));
59 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
60     cl::desc("Disable tail duplication"));
61 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
62     cl::desc("Disable pre-register allocation tail duplication"));
63 static cl::opt<bool> DisableBlockPlacement("disable-block-placement",
64     cl::Hidden, cl::desc("Disable probability-driven block placement"));
65 static cl::opt<bool> EnableBlockPlacementStats("enable-block-placement-stats",
66     cl::Hidden, cl::desc("Collect probability-driven block placement stats"));
67 static cl::opt<bool> DisableSSC("disable-ssc", cl::Hidden,
68     cl::desc("Disable Stack Slot Coloring"));
69 static cl::opt<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden,
70     cl::desc("Disable Machine Dead Code Elimination"));
71 static cl::opt<bool> DisableEarlyIfConversion("disable-early-ifcvt", cl::Hidden,
72     cl::desc("Disable Early If-conversion"));
73 static cl::opt<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden,
74     cl::desc("Disable Machine LICM"));
75 static cl::opt<bool> DisableMachineCSE("disable-machine-cse", cl::Hidden,
76     cl::desc("Disable Machine Common Subexpression Elimination"));
77 static cl::opt<cl::boolOrDefault> OptimizeRegAlloc(
78     "optimize-regalloc", cl::Hidden,
79     cl::desc("Enable optimized register allocation compilation path."));
80 static cl::opt<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
81     cl::Hidden,
82     cl::desc("Disable Machine LICM"));
83 static cl::opt<bool> DisableMachineSink("disable-machine-sink", cl::Hidden,
84     cl::desc("Disable Machine Sinking"));
85 static cl::opt<bool> DisablePostRAMachineSink("disable-postra-machine-sink",
86     cl::Hidden,
87     cl::desc("Disable PostRA Machine Sinking"));
88 static cl::opt<bool> DisableLSR("disable-lsr", cl::Hidden,
89     cl::desc("Disable Loop Strength Reduction Pass"));
90 static cl::opt<bool> DisableConstantHoisting("disable-constant-hoisting",
91     cl::Hidden, cl::desc("Disable ConstantHoisting"));
92 static cl::opt<bool> DisableCGP("disable-cgp", cl::Hidden,
93     cl::desc("Disable Codegen Prepare"));
94 static cl::opt<bool> DisableCopyProp("disable-copyprop", cl::Hidden,
95     cl::desc("Disable Copy Propagation pass"));
96 static cl::opt<bool> DisablePartialLibcallInlining("disable-partial-libcall-inlining",
97     cl::Hidden, cl::desc("Disable Partial Libcall Inlining"));
98 static cl::opt<bool> EnableImplicitNullChecks(
99     "enable-implicit-null-checks",
100     cl::desc("Fold null checks into faulting memory operations"),
101     cl::init(false), cl::Hidden);
102 static cl::opt<bool> DisableMergeICmps("disable-mergeicmps",
103     cl::desc("Disable MergeICmps Pass"),
104     cl::init(false), cl::Hidden);
105 static cl::opt<bool> PrintLSR("print-lsr-output", cl::Hidden,
106     cl::desc("Print LLVM IR produced by the loop-reduce pass"));
107 static cl::opt<bool> PrintISelInput("print-isel-input", cl::Hidden,
108     cl::desc("Print LLVM IR input to isel pass"));
109 static cl::opt<bool> PrintGCInfo("print-gc", cl::Hidden,
110     cl::desc("Dump garbage collector data"));
111 static cl::opt<cl::boolOrDefault>
112     VerifyMachineCode("verify-machineinstrs", cl::Hidden,
113                       cl::desc("Verify generated machine code"),
114                       cl::ZeroOrMore);
115 enum RunOutliner { AlwaysOutline, NeverOutline, TargetDefault };
116 // Enable or disable the MachineOutliner.
117 static cl::opt<RunOutliner> EnableMachineOutliner(
118     "enable-machine-outliner", cl::desc("Enable the machine outliner"),
119     cl::Hidden, cl::ValueOptional, cl::init(TargetDefault),
120     cl::values(clEnumValN(AlwaysOutline, "always",
121                           "Run on all functions guaranteed to be beneficial"),
122                clEnumValN(NeverOutline, "never", "Disable all outlining"),
123                // Sentinel value for unspecified option.
124                clEnumValN(AlwaysOutline, "", "")));
125 // Enable or disable FastISel. Both options are needed, because
126 // FastISel is enabled by default with -fast, and we wish to be
127 // able to enable or disable fast-isel independently from -O0.
128 static cl::opt<cl::boolOrDefault>
129 EnableFastISelOption("fast-isel", cl::Hidden,
130   cl::desc("Enable the \"fast\" instruction selector"));
131 
132 static cl::opt<cl::boolOrDefault> EnableGlobalISelOption(
133     "global-isel", cl::Hidden,
134     cl::desc("Enable the \"global\" instruction selector"));
135 
136 static cl::opt<std::string> PrintMachineInstrs(
137     "print-machineinstrs", cl::ValueOptional, cl::desc("Print machine instrs"),
138     cl::value_desc("pass-name"), cl::init("option-unspecified"), cl::Hidden);
139 
140 static cl::opt<GlobalISelAbortMode> EnableGlobalISelAbort(
141     "global-isel-abort", cl::Hidden,
142     cl::desc("Enable abort calls when \"global\" instruction selection "
143              "fails to lower/select an instruction"),
144     cl::values(
145         clEnumValN(GlobalISelAbortMode::Disable, "0", "Disable the abort"),
146         clEnumValN(GlobalISelAbortMode::Enable, "1", "Enable the abort"),
147         clEnumValN(GlobalISelAbortMode::DisableWithDiag, "2",
148                    "Disable the abort but emit a diagnostic on failure")));
149 
150 // Temporary option to allow experimenting with MachineScheduler as a post-RA
151 // scheduler. Targets can "properly" enable this with
152 // substitutePass(&PostRASchedulerID, &PostMachineSchedulerID).
153 // Targets can return true in targetSchedulesPostRAScheduling() and
154 // insert a PostRA scheduling pass wherever it wants.
155 cl::opt<bool> MISchedPostRA("misched-postra", cl::Hidden,
156   cl::desc("Run MachineScheduler post regalloc (independent of preRA sched)"));
157 
158 // Experimental option to run live interval analysis early.
159 static cl::opt<bool> EarlyLiveIntervals("early-live-intervals", cl::Hidden,
160     cl::desc("Run live interval analysis earlier in the pipeline"));
161 
162 // Experimental option to use CFL-AA in codegen
163 enum class CFLAAType { None, Steensgaard, Andersen, Both };
164 static cl::opt<CFLAAType> UseCFLAA(
165     "use-cfl-aa-in-codegen", cl::init(CFLAAType::None), cl::Hidden,
166     cl::desc("Enable the new, experimental CFL alias analysis in CodeGen"),
167     cl::values(clEnumValN(CFLAAType::None, "none", "Disable CFL-AA"),
168                clEnumValN(CFLAAType::Steensgaard, "steens",
169                           "Enable unification-based CFL-AA"),
170                clEnumValN(CFLAAType::Andersen, "anders",
171                           "Enable inclusion-based CFL-AA"),
172                clEnumValN(CFLAAType::Both, "both",
173                           "Enable both variants of CFL-AA")));
174 
175 /// Option names for limiting the codegen pipeline.
176 /// Those are used in error reporting and we didn't want
177 /// to duplicate their names all over the place.
178 const char *StartAfterOptName = "start-after";
179 const char *StartBeforeOptName = "start-before";
180 const char *StopAfterOptName = "stop-after";
181 const char *StopBeforeOptName = "stop-before";
182 
183 static cl::opt<std::string>
184     StartAfterOpt(StringRef(StartAfterOptName),
185                   cl::desc("Resume compilation after a specific pass"),
186                   cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
187 
188 static cl::opt<std::string>
189     StartBeforeOpt(StringRef(StartBeforeOptName),
190                    cl::desc("Resume compilation before a specific pass"),
191                    cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
192 
193 static cl::opt<std::string>
194     StopAfterOpt(StringRef(StopAfterOptName),
195                  cl::desc("Stop compilation after a specific pass"),
196                  cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
197 
198 static cl::opt<std::string>
199     StopBeforeOpt(StringRef(StopBeforeOptName),
200                   cl::desc("Stop compilation before a specific pass"),
201                   cl::value_desc("pass-name"), cl::init(""), cl::Hidden);
202 
203 /// Allow standard passes to be disabled by command line options. This supports
204 /// simple binary flags that either suppress the pass or do nothing.
205 /// i.e. -disable-mypass=false has no effect.
206 /// These should be converted to boolOrDefault in order to use applyOverride.
207 static IdentifyingPassPtr applyDisable(IdentifyingPassPtr PassID,
208                                        bool Override) {
209   if (Override)
210     return IdentifyingPassPtr();
211   return PassID;
212 }
213 
214 /// Allow standard passes to be disabled by the command line, regardless of who
215 /// is adding the pass.
216 ///
217 /// StandardID is the pass identified in the standard pass pipeline and provided
218 /// to addPass(). It may be a target-specific ID in the case that the target
219 /// directly adds its own pass, but in that case we harmlessly fall through.
220 ///
221 /// TargetID is the pass that the target has configured to override StandardID.
222 ///
223 /// StandardID may be a pseudo ID. In that case TargetID is the name of the real
224 /// pass to run. This allows multiple options to control a single pass depending
225 /// on where in the pipeline that pass is added.
226 static IdentifyingPassPtr overridePass(AnalysisID StandardID,
227                                        IdentifyingPassPtr TargetID) {
228   if (StandardID == &PostRASchedulerID)
229     return applyDisable(TargetID, DisablePostRASched);
230 
231   if (StandardID == &BranchFolderPassID)
232     return applyDisable(TargetID, DisableBranchFold);
233 
234   if (StandardID == &TailDuplicateID)
235     return applyDisable(TargetID, DisableTailDuplicate);
236 
237   if (StandardID == &EarlyTailDuplicateID)
238     return applyDisable(TargetID, DisableEarlyTailDup);
239 
240   if (StandardID == &MachineBlockPlacementID)
241     return applyDisable(TargetID, DisableBlockPlacement);
242 
243   if (StandardID == &StackSlotColoringID)
244     return applyDisable(TargetID, DisableSSC);
245 
246   if (StandardID == &DeadMachineInstructionElimID)
247     return applyDisable(TargetID, DisableMachineDCE);
248 
249   if (StandardID == &EarlyIfConverterID)
250     return applyDisable(TargetID, DisableEarlyIfConversion);
251 
252   if (StandardID == &EarlyMachineLICMID)
253     return applyDisable(TargetID, DisableMachineLICM);
254 
255   if (StandardID == &MachineCSEID)
256     return applyDisable(TargetID, DisableMachineCSE);
257 
258   if (StandardID == &MachineLICMID)
259     return applyDisable(TargetID, DisablePostRAMachineLICM);
260 
261   if (StandardID == &MachineSinkingID)
262     return applyDisable(TargetID, DisableMachineSink);
263 
264   if (StandardID == &PostRAMachineSinkingID)
265     return applyDisable(TargetID, DisablePostRAMachineSink);
266 
267   if (StandardID == &MachineCopyPropagationID)
268     return applyDisable(TargetID, DisableCopyProp);
269 
270   return TargetID;
271 }
272 
273 //===---------------------------------------------------------------------===//
274 /// TargetPassConfig
275 //===---------------------------------------------------------------------===//
276 
277 INITIALIZE_PASS(TargetPassConfig, "targetpassconfig",
278                 "Target Pass Configuration", false, false)
279 char TargetPassConfig::ID = 0;
280 
281 namespace {
282 
283 struct InsertedPass {
284   AnalysisID TargetPassID;
285   IdentifyingPassPtr InsertedPassID;
286   bool VerifyAfter;
287   bool PrintAfter;
288 
289   InsertedPass(AnalysisID TargetPassID, IdentifyingPassPtr InsertedPassID,
290                bool VerifyAfter, bool PrintAfter)
291       : TargetPassID(TargetPassID), InsertedPassID(InsertedPassID),
292         VerifyAfter(VerifyAfter), PrintAfter(PrintAfter) {}
293 
294   Pass *getInsertedPass() const {
295     assert(InsertedPassID.isValid() && "Illegal Pass ID!");
296     if (InsertedPassID.isInstance())
297       return InsertedPassID.getInstance();
298     Pass *NP = Pass::createPass(InsertedPassID.getID());
299     assert(NP && "Pass ID not registered");
300     return NP;
301   }
302 };
303 
304 } // end anonymous namespace
305 
306 namespace llvm {
307 
308 class PassConfigImpl {
309 public:
310   // List of passes explicitly substituted by this target. Normally this is
311   // empty, but it is a convenient way to suppress or replace specific passes
312   // that are part of a standard pass pipeline without overridding the entire
313   // pipeline. This mechanism allows target options to inherit a standard pass's
314   // user interface. For example, a target may disable a standard pass by
315   // default by substituting a pass ID of zero, and the user may still enable
316   // that standard pass with an explicit command line option.
317   DenseMap<AnalysisID,IdentifyingPassPtr> TargetPasses;
318 
319   /// Store the pairs of <AnalysisID, AnalysisID> of which the second pass
320   /// is inserted after each instance of the first one.
321   SmallVector<InsertedPass, 4> InsertedPasses;
322 };
323 
324 } // end namespace llvm
325 
326 // Out of line virtual method.
327 TargetPassConfig::~TargetPassConfig() {
328   delete Impl;
329 }
330 
331 static const PassInfo *getPassInfo(StringRef PassName) {
332   if (PassName.empty())
333     return nullptr;
334 
335   const PassRegistry &PR = *PassRegistry::getPassRegistry();
336   const PassInfo *PI = PR.getPassInfo(PassName);
337   if (!PI)
338     report_fatal_error(Twine('\"') + Twine(PassName) +
339                        Twine("\" pass is not registered."));
340   return PI;
341 }
342 
343 static AnalysisID getPassIDFromName(StringRef PassName) {
344   const PassInfo *PI = getPassInfo(PassName);
345   return PI ? PI->getTypeInfo() : nullptr;
346 }
347 
348 static std::pair<StringRef, unsigned>
349 getPassNameAndInstanceNum(StringRef PassName) {
350   StringRef Name, InstanceNumStr;
351   std::tie(Name, InstanceNumStr) = PassName.split(',');
352 
353   unsigned InstanceNum = 0;
354   if (!InstanceNumStr.empty() && InstanceNumStr.getAsInteger(10, InstanceNum))
355     report_fatal_error("invalid pass instance specifier " + PassName);
356 
357   return std::make_pair(Name, InstanceNum);
358 }
359 
360 void TargetPassConfig::setStartStopPasses() {
361   StringRef StartBeforeName;
362   std::tie(StartBeforeName, StartBeforeInstanceNum) =
363     getPassNameAndInstanceNum(StartBeforeOpt);
364 
365   StringRef StartAfterName;
366   std::tie(StartAfterName, StartAfterInstanceNum) =
367     getPassNameAndInstanceNum(StartAfterOpt);
368 
369   StringRef StopBeforeName;
370   std::tie(StopBeforeName, StopBeforeInstanceNum)
371     = getPassNameAndInstanceNum(StopBeforeOpt);
372 
373   StringRef StopAfterName;
374   std::tie(StopAfterName, StopAfterInstanceNum)
375     = getPassNameAndInstanceNum(StopAfterOpt);
376 
377   StartBefore = getPassIDFromName(StartBeforeName);
378   StartAfter = getPassIDFromName(StartAfterName);
379   StopBefore = getPassIDFromName(StopBeforeName);
380   StopAfter = getPassIDFromName(StopAfterName);
381   if (StartBefore && StartAfter)
382     report_fatal_error(Twine(StartBeforeOptName) + Twine(" and ") +
383                        Twine(StartAfterOptName) + Twine(" specified!"));
384   if (StopBefore && StopAfter)
385     report_fatal_error(Twine(StopBeforeOptName) + Twine(" and ") +
386                        Twine(StopAfterOptName) + Twine(" specified!"));
387   Started = (StartAfter == nullptr) && (StartBefore == nullptr);
388 }
389 
390 // Out of line constructor provides default values for pass options and
391 // registers all common codegen passes.
392 TargetPassConfig::TargetPassConfig(LLVMTargetMachine &TM, PassManagerBase &pm)
393     : ImmutablePass(ID), PM(&pm), TM(&TM) {
394   Impl = new PassConfigImpl();
395 
396   // Register all target independent codegen passes to activate their PassIDs,
397   // including this pass itself.
398   initializeCodeGen(*PassRegistry::getPassRegistry());
399 
400   // Also register alias analysis passes required by codegen passes.
401   initializeBasicAAWrapperPassPass(*PassRegistry::getPassRegistry());
402   initializeAAResultsWrapperPassPass(*PassRegistry::getPassRegistry());
403 
404   if (StringRef(PrintMachineInstrs.getValue()).equals(""))
405     TM.Options.PrintMachineCode = true;
406 
407   if (EnableIPRA.getNumOccurrences())
408     TM.Options.EnableIPRA = EnableIPRA;
409   else {
410     // If not explicitly specified, use target default.
411     TM.Options.EnableIPRA |= TM.useIPRA();
412   }
413 
414   if (TM.Options.EnableIPRA)
415     setRequiresCodeGenSCCOrder();
416 
417   if (EnableGlobalISelAbort.getNumOccurrences())
418     TM.Options.GlobalISelAbort = EnableGlobalISelAbort;
419 
420   setStartStopPasses();
421 }
422 
423 CodeGenOpt::Level TargetPassConfig::getOptLevel() const {
424   return TM->getOptLevel();
425 }
426 
427 /// Insert InsertedPassID pass after TargetPassID.
428 void TargetPassConfig::insertPass(AnalysisID TargetPassID,
429                                   IdentifyingPassPtr InsertedPassID,
430                                   bool VerifyAfter, bool PrintAfter) {
431   assert(((!InsertedPassID.isInstance() &&
432            TargetPassID != InsertedPassID.getID()) ||
433           (InsertedPassID.isInstance() &&
434            TargetPassID != InsertedPassID.getInstance()->getPassID())) &&
435          "Insert a pass after itself!");
436   Impl->InsertedPasses.emplace_back(TargetPassID, InsertedPassID, VerifyAfter,
437                                     PrintAfter);
438 }
439 
440 /// createPassConfig - Create a pass configuration object to be used by
441 /// addPassToEmitX methods for generating a pipeline of CodeGen passes.
442 ///
443 /// Targets may override this to extend TargetPassConfig.
444 TargetPassConfig *LLVMTargetMachine::createPassConfig(PassManagerBase &PM) {
445   return new TargetPassConfig(*this, PM);
446 }
447 
448 TargetPassConfig::TargetPassConfig()
449   : ImmutablePass(ID) {
450   report_fatal_error("Trying to construct TargetPassConfig without a target "
451                      "machine. Scheduling a CodeGen pass without a target "
452                      "triple set?");
453 }
454 
455 bool TargetPassConfig::willCompleteCodeGenPipeline() {
456   return StopBeforeOpt.empty() && StopAfterOpt.empty();
457 }
458 
459 bool TargetPassConfig::hasLimitedCodeGenPipeline() {
460   return !StartBeforeOpt.empty() || !StartAfterOpt.empty() ||
461          !willCompleteCodeGenPipeline();
462 }
463 
464 std::string
465 TargetPassConfig::getLimitedCodeGenPipelineReason(const char *Separator) const {
466   if (!hasLimitedCodeGenPipeline())
467     return std::string();
468   std::string Res;
469   static cl::opt<std::string> *PassNames[] = {&StartAfterOpt, &StartBeforeOpt,
470                                               &StopAfterOpt, &StopBeforeOpt};
471   static const char *OptNames[] = {StartAfterOptName, StartBeforeOptName,
472                                    StopAfterOptName, StopBeforeOptName};
473   bool IsFirst = true;
474   for (int Idx = 0; Idx < 4; ++Idx)
475     if (!PassNames[Idx]->empty()) {
476       if (!IsFirst)
477         Res += Separator;
478       IsFirst = false;
479       Res += OptNames[Idx];
480     }
481   return Res;
482 }
483 
484 // Helper to verify the analysis is really immutable.
485 void TargetPassConfig::setOpt(bool &Opt, bool Val) {
486   assert(!Initialized && "PassConfig is immutable");
487   Opt = Val;
488 }
489 
490 void TargetPassConfig::substitutePass(AnalysisID StandardID,
491                                       IdentifyingPassPtr TargetID) {
492   Impl->TargetPasses[StandardID] = TargetID;
493 }
494 
495 IdentifyingPassPtr TargetPassConfig::getPassSubstitution(AnalysisID ID) const {
496   DenseMap<AnalysisID, IdentifyingPassPtr>::const_iterator
497     I = Impl->TargetPasses.find(ID);
498   if (I == Impl->TargetPasses.end())
499     return ID;
500   return I->second;
501 }
502 
503 bool TargetPassConfig::isPassSubstitutedOrOverridden(AnalysisID ID) const {
504   IdentifyingPassPtr TargetID = getPassSubstitution(ID);
505   IdentifyingPassPtr FinalPtr = overridePass(ID, TargetID);
506   return !FinalPtr.isValid() || FinalPtr.isInstance() ||
507       FinalPtr.getID() != ID;
508 }
509 
510 /// Add a pass to the PassManager if that pass is supposed to be run.  If the
511 /// Started/Stopped flags indicate either that the compilation should start at
512 /// a later pass or that it should stop after an earlier pass, then do not add
513 /// the pass.  Finally, compare the current pass against the StartAfter
514 /// and StopAfter options and change the Started/Stopped flags accordingly.
515 void TargetPassConfig::addPass(Pass *P, bool verifyAfter, bool printAfter) {
516   assert(!Initialized && "PassConfig is immutable");
517 
518   // Cache the Pass ID here in case the pass manager finds this pass is
519   // redundant with ones already scheduled / available, and deletes it.
520   // Fundamentally, once we add the pass to the manager, we no longer own it
521   // and shouldn't reference it.
522   AnalysisID PassID = P->getPassID();
523 
524   if (StartBefore == PassID && StartBeforeCount++ == StartBeforeInstanceNum)
525     Started = true;
526   if (StopBefore == PassID && StopBeforeCount++ == StopBeforeInstanceNum)
527     Stopped = true;
528   if (Started && !Stopped) {
529     std::string Banner;
530     // Construct banner message before PM->add() as that may delete the pass.
531     if (AddingMachinePasses && (printAfter || verifyAfter))
532       Banner = std::string("After ") + std::string(P->getPassName());
533     PM->add(P);
534     if (AddingMachinePasses) {
535       if (printAfter)
536         addPrintPass(Banner);
537       if (verifyAfter)
538         addVerifyPass(Banner);
539     }
540 
541     // Add the passes after the pass P if there is any.
542     for (auto IP : Impl->InsertedPasses) {
543       if (IP.TargetPassID == PassID)
544         addPass(IP.getInsertedPass(), IP.VerifyAfter, IP.PrintAfter);
545     }
546   } else {
547     delete P;
548   }
549 
550   if (StopAfter == PassID && StopAfterCount++ == StopAfterInstanceNum)
551     Stopped = true;
552 
553   if (StartAfter == PassID && StartAfterCount++ == StartAfterInstanceNum)
554     Started = true;
555   if (Stopped && !Started)
556     report_fatal_error("Cannot stop compilation after pass that is not run");
557 }
558 
559 /// Add a CodeGen pass at this point in the pipeline after checking for target
560 /// and command line overrides.
561 ///
562 /// addPass cannot return a pointer to the pass instance because is internal the
563 /// PassManager and the instance we create here may already be freed.
564 AnalysisID TargetPassConfig::addPass(AnalysisID PassID, bool verifyAfter,
565                                      bool printAfter) {
566   IdentifyingPassPtr TargetID = getPassSubstitution(PassID);
567   IdentifyingPassPtr FinalPtr = overridePass(PassID, TargetID);
568   if (!FinalPtr.isValid())
569     return nullptr;
570 
571   Pass *P;
572   if (FinalPtr.isInstance())
573     P = FinalPtr.getInstance();
574   else {
575     P = Pass::createPass(FinalPtr.getID());
576     if (!P)
577       llvm_unreachable("Pass ID not registered");
578   }
579   AnalysisID FinalID = P->getPassID();
580   addPass(P, verifyAfter, printAfter); // Ends the lifetime of P.
581 
582   return FinalID;
583 }
584 
585 void TargetPassConfig::printAndVerify(const std::string &Banner) {
586   addPrintPass(Banner);
587   addVerifyPass(Banner);
588 }
589 
590 void TargetPassConfig::addPrintPass(const std::string &Banner) {
591   if (TM->shouldPrintMachineCode())
592     PM->add(createMachineFunctionPrinterPass(dbgs(), Banner));
593 }
594 
595 void TargetPassConfig::addVerifyPass(const std::string &Banner) {
596   bool Verify = VerifyMachineCode == cl::BOU_TRUE;
597 #ifdef EXPENSIVE_CHECKS
598   if (VerifyMachineCode == cl::BOU_UNSET)
599     Verify = TM->isMachineVerifierClean();
600 #endif
601   if (Verify)
602     PM->add(createMachineVerifierPass(Banner));
603 }
604 
605 /// Add common target configurable passes that perform LLVM IR to IR transforms
606 /// following machine independent optimization.
607 void TargetPassConfig::addIRPasses() {
608   switch (UseCFLAA) {
609   case CFLAAType::Steensgaard:
610     addPass(createCFLSteensAAWrapperPass());
611     break;
612   case CFLAAType::Andersen:
613     addPass(createCFLAndersAAWrapperPass());
614     break;
615   case CFLAAType::Both:
616     addPass(createCFLAndersAAWrapperPass());
617     addPass(createCFLSteensAAWrapperPass());
618     break;
619   default:
620     break;
621   }
622 
623   // Basic AliasAnalysis support.
624   // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
625   // BasicAliasAnalysis wins if they disagree. This is intended to help
626   // support "obvious" type-punning idioms.
627   addPass(createTypeBasedAAWrapperPass());
628   addPass(createScopedNoAliasAAWrapperPass());
629   addPass(createBasicAAWrapperPass());
630 
631   // Before running any passes, run the verifier to determine if the input
632   // coming from the front-end and/or optimizer is valid.
633   if (!DisableVerify)
634     addPass(createVerifierPass());
635 
636   // Run loop strength reduction before anything else.
637   if (getOptLevel() != CodeGenOpt::None && !DisableLSR) {
638     addPass(createLoopStrengthReducePass());
639     if (PrintLSR)
640       addPass(createPrintFunctionPass(dbgs(), "\n\n*** Code after LSR ***\n"));
641   }
642 
643   if (getOptLevel() != CodeGenOpt::None) {
644     // The MergeICmpsPass tries to create memcmp calls by grouping sequences of
645     // loads and compares. ExpandMemCmpPass then tries to expand those calls
646     // into optimally-sized loads and compares. The transforms are enabled by a
647     // target lowering hook.
648     if (!DisableMergeICmps)
649       addPass(createMergeICmpsLegacyPass());
650     addPass(createExpandMemCmpPass());
651   }
652 
653   // Run GC lowering passes for builtin collectors
654   // TODO: add a pass insertion point here
655   addPass(createGCLoweringPass());
656   addPass(createShadowStackGCLoweringPass());
657 
658   // Make sure that no unreachable blocks are instruction selected.
659   addPass(createUnreachableBlockEliminationPass());
660 
661   // Prepare expensive constants for SelectionDAG.
662   if (getOptLevel() != CodeGenOpt::None && !DisableConstantHoisting)
663     addPass(createConstantHoistingPass());
664 
665   if (getOptLevel() != CodeGenOpt::None && !DisablePartialLibcallInlining)
666     addPass(createPartiallyInlineLibCallsPass());
667 
668   // Instrument function entry and exit, e.g. with calls to mcount().
669   addPass(createPostInlineEntryExitInstrumenterPass());
670 
671   // Add scalarization of target's unsupported masked memory intrinsics pass.
672   // the unsupported intrinsic will be replaced with a chain of basic blocks,
673   // that stores/loads element one-by-one if the appropriate mask bit is set.
674   addPass(createScalarizeMaskedMemIntrinPass());
675 
676   // Expand reduction intrinsics into shuffle sequences if the target wants to.
677   addPass(createExpandReductionsPass());
678 }
679 
680 /// Turn exception handling constructs into something the code generators can
681 /// handle.
682 void TargetPassConfig::addPassesToHandleExceptions() {
683   const MCAsmInfo *MCAI = TM->getMCAsmInfo();
684   assert(MCAI && "No MCAsmInfo");
685   switch (MCAI->getExceptionHandlingType()) {
686   case ExceptionHandling::SjLj:
687     // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
688     // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
689     // catch info can get misplaced when a selector ends up more than one block
690     // removed from the parent invoke(s). This could happen when a landing
691     // pad is shared by multiple invokes and is also a target of a normal
692     // edge from elsewhere.
693     addPass(createSjLjEHPreparePass());
694     LLVM_FALLTHROUGH;
695   case ExceptionHandling::DwarfCFI:
696   case ExceptionHandling::ARM:
697     addPass(createDwarfEHPass());
698     break;
699   case ExceptionHandling::WinEH:
700     // We support using both GCC-style and MSVC-style exceptions on Windows, so
701     // add both preparation passes. Each pass will only actually run if it
702     // recognizes the personality function.
703     addPass(createWinEHPass());
704     addPass(createDwarfEHPass());
705     break;
706   case ExceptionHandling::Wasm:
707     // Wasm EH uses Windows EH instructions, but it does not need to demote PHIs
708     // on catchpads and cleanuppads because it does not outline them into
709     // funclets. Catchswitch blocks are not lowered in SelectionDAG, so we
710     // should remove PHIs there.
711     addPass(createWinEHPass(/*DemoteCatchSwitchPHIOnly=*/false));
712     addPass(createWasmEHPass());
713     break;
714   case ExceptionHandling::None:
715     addPass(createLowerInvokePass());
716 
717     // The lower invoke pass may create unreachable code. Remove it.
718     addPass(createUnreachableBlockEliminationPass());
719     break;
720   }
721 }
722 
723 /// Add pass to prepare the LLVM IR for code generation. This should be done
724 /// before exception handling preparation passes.
725 void TargetPassConfig::addCodeGenPrepare() {
726   if (getOptLevel() != CodeGenOpt::None && !DisableCGP)
727     addPass(createCodeGenPreparePass());
728   addPass(createRewriteSymbolsPass());
729 }
730 
731 /// Add common passes that perform LLVM IR to IR transforms in preparation for
732 /// instruction selection.
733 void TargetPassConfig::addISelPrepare() {
734   addPreISel();
735 
736   // Force codegen to run according to the callgraph.
737   if (requiresCodeGenSCCOrder())
738     addPass(new DummyCGSCCPass);
739 
740   // Add both the safe stack and the stack protection passes: each of them will
741   // only protect functions that have corresponding attributes.
742   addPass(createSafeStackPass());
743   addPass(createStackProtectorPass());
744 
745   if (PrintISelInput)
746     addPass(createPrintFunctionPass(
747         dbgs(), "\n\n*** Final LLVM Code input to ISel ***\n"));
748 
749   // All passes which modify the LLVM IR are now complete; run the verifier
750   // to ensure that the IR is valid.
751   if (!DisableVerify)
752     addPass(createVerifierPass());
753 }
754 
755 bool TargetPassConfig::addCoreISelPasses() {
756   // Enable FastISel with -fast-isel, but allow that to be overridden.
757   TM->setO0WantsFastISel(EnableFastISelOption != cl::BOU_FALSE);
758 
759   // Determine an instruction selector.
760   enum class SelectorType { SelectionDAG, FastISel, GlobalISel };
761   SelectorType Selector;
762 
763   if (EnableFastISelOption == cl::BOU_TRUE)
764     Selector = SelectorType::FastISel;
765   else if (EnableGlobalISelOption == cl::BOU_TRUE ||
766            (TM->Options.EnableGlobalISel &&
767             EnableGlobalISelOption != cl::BOU_FALSE))
768     Selector = SelectorType::GlobalISel;
769   else if (TM->getOptLevel() == CodeGenOpt::None && TM->getO0WantsFastISel())
770     Selector = SelectorType::FastISel;
771   else
772     Selector = SelectorType::SelectionDAG;
773 
774   // Set consistently TM->Options.EnableFastISel and EnableGlobalISel.
775   if (Selector == SelectorType::FastISel) {
776     TM->setFastISel(true);
777     TM->setGlobalISel(false);
778   } else if (Selector == SelectorType::GlobalISel) {
779     TM->setFastISel(false);
780     TM->setGlobalISel(true);
781   }
782 
783   // Add instruction selector passes.
784   if (Selector == SelectorType::GlobalISel) {
785     SaveAndRestore<bool> SavedAddingMachinePasses(AddingMachinePasses, true);
786     if (addIRTranslator())
787       return true;
788 
789     addPreLegalizeMachineIR();
790 
791     if (addLegalizeMachineIR())
792       return true;
793 
794     // Before running the register bank selector, ask the target if it
795     // wants to run some passes.
796     addPreRegBankSelect();
797 
798     if (addRegBankSelect())
799       return true;
800 
801     addPreGlobalInstructionSelect();
802 
803     if (addGlobalInstructionSelect())
804       return true;
805 
806     // Pass to reset the MachineFunction if the ISel failed.
807     addPass(createResetMachineFunctionPass(
808         reportDiagnosticWhenGlobalISelFallback(), isGlobalISelAbortEnabled()));
809 
810     // Provide a fallback path when we do not want to abort on
811     // not-yet-supported input.
812     if (!isGlobalISelAbortEnabled() && addInstSelector())
813       return true;
814 
815   } else if (addInstSelector())
816     return true;
817 
818   return false;
819 }
820 
821 bool TargetPassConfig::addISelPasses() {
822   if (TM->useEmulatedTLS())
823     addPass(createLowerEmuTLSPass());
824 
825   addPass(createPreISelIntrinsicLoweringPass());
826   addPass(createTargetTransformInfoWrapperPass(TM->getTargetIRAnalysis()));
827   addIRPasses();
828   addCodeGenPrepare();
829   addPassesToHandleExceptions();
830   addISelPrepare();
831 
832   return addCoreISelPasses();
833 }
834 
835 /// -regalloc=... command line option.
836 static FunctionPass *useDefaultRegisterAllocator() { return nullptr; }
837 static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
838                RegisterPassParser<RegisterRegAlloc>>
839     RegAlloc("regalloc", cl::Hidden, cl::init(&useDefaultRegisterAllocator),
840              cl::desc("Register allocator to use"));
841 
842 /// Add the complete set of target-independent postISel code generator passes.
843 ///
844 /// This can be read as the standard order of major LLVM CodeGen stages. Stages
845 /// with nontrivial configuration or multiple passes are broken out below in
846 /// add%Stage routines.
847 ///
848 /// Any TargetPassConfig::addXX routine may be overriden by the Target. The
849 /// addPre/Post methods with empty header implementations allow injecting
850 /// target-specific fixups just before or after major stages. Additionally,
851 /// targets have the flexibility to change pass order within a stage by
852 /// overriding default implementation of add%Stage routines below. Each
853 /// technique has maintainability tradeoffs because alternate pass orders are
854 /// not well supported. addPre/Post works better if the target pass is easily
855 /// tied to a common pass. But if it has subtle dependencies on multiple passes,
856 /// the target should override the stage instead.
857 ///
858 /// TODO: We could use a single addPre/Post(ID) hook to allow pass injection
859 /// before/after any target-independent pass. But it's currently overkill.
860 void TargetPassConfig::addMachinePasses() {
861   AddingMachinePasses = true;
862 
863   // Insert a machine instr printer pass after the specified pass.
864   StringRef PrintMachineInstrsPassName = PrintMachineInstrs.getValue();
865   if (!PrintMachineInstrsPassName.equals("") &&
866       !PrintMachineInstrsPassName.equals("option-unspecified")) {
867     if (const PassInfo *TPI = getPassInfo(PrintMachineInstrsPassName)) {
868       const PassRegistry *PR = PassRegistry::getPassRegistry();
869       const PassInfo *IPI = PR->getPassInfo(StringRef("machineinstr-printer"));
870       assert(IPI && "failed to get \"machineinstr-printer\" PassInfo!");
871       const char *TID = (const char *)(TPI->getTypeInfo());
872       const char *IID = (const char *)(IPI->getTypeInfo());
873       insertPass(TID, IID);
874     }
875   }
876 
877   // Print the instruction selected machine code...
878   printAndVerify("After Instruction Selection");
879 
880   // Expand pseudo-instructions emitted by ISel.
881   addPass(&ExpandISelPseudosID);
882 
883   // Add passes that optimize machine instructions in SSA form.
884   if (getOptLevel() != CodeGenOpt::None) {
885     addMachineSSAOptimization();
886   } else {
887     // If the target requests it, assign local variables to stack slots relative
888     // to one another and simplify frame index references where possible.
889     addPass(&LocalStackSlotAllocationID, false);
890   }
891 
892   if (TM->Options.EnableIPRA)
893     addPass(createRegUsageInfoPropPass());
894 
895   // Run pre-ra passes.
896   addPreRegAlloc();
897 
898   // Run register allocation and passes that are tightly coupled with it,
899   // including phi elimination and scheduling.
900   if (getOptimizeRegAlloc())
901     addOptimizedRegAlloc();
902   else
903     addFastRegAlloc();
904 
905   // Run post-ra passes.
906   addPostRegAlloc();
907 
908   // Insert prolog/epilog code.  Eliminate abstract frame index references...
909   if (getOptLevel() != CodeGenOpt::None) {
910     addPass(&PostRAMachineSinkingID);
911     addPass(&ShrinkWrapID);
912   }
913 
914   // Prolog/Epilog inserter needs a TargetMachine to instantiate. But only
915   // do so if it hasn't been disabled, substituted, or overridden.
916   if (!isPassSubstitutedOrOverridden(&PrologEpilogCodeInserterID))
917       addPass(createPrologEpilogInserterPass());
918 
919   /// Add passes that optimize machine instructions after register allocation.
920   if (getOptLevel() != CodeGenOpt::None)
921     addMachineLateOptimization();
922 
923   // Expand pseudo instructions before second scheduling pass.
924   addPass(&ExpandPostRAPseudosID);
925 
926   // Run pre-sched2 passes.
927   addPreSched2();
928 
929   if (EnableImplicitNullChecks)
930     addPass(&ImplicitNullChecksID);
931 
932   // Second pass scheduler.
933   // Let Target optionally insert this pass by itself at some other
934   // point.
935   if (getOptLevel() != CodeGenOpt::None &&
936       !TM->targetSchedulesPostRAScheduling()) {
937     if (MISchedPostRA)
938       addPass(&PostMachineSchedulerID);
939     else
940       addPass(&PostRASchedulerID);
941   }
942 
943   // GC
944   if (addGCPasses()) {
945     if (PrintGCInfo)
946       addPass(createGCInfoPrinter(dbgs()), false, false);
947   }
948 
949   // Basic block placement.
950   if (getOptLevel() != CodeGenOpt::None)
951     addBlockPlacement();
952 
953   addPreEmitPass();
954 
955   if (TM->Options.EnableIPRA)
956     // Collect register usage information and produce a register mask of
957     // clobbered registers, to be used to optimize call sites.
958     addPass(createRegUsageInfoCollector());
959 
960   addPass(&FuncletLayoutID, false);
961 
962   addPass(&StackMapLivenessID, false);
963   addPass(&LiveDebugValuesID, false);
964 
965   // Insert before XRay Instrumentation.
966   addPass(&FEntryInserterID, false);
967 
968   addPass(&XRayInstrumentationID, false);
969   addPass(&PatchableFunctionID, false);
970 
971   if (TM->Options.EnableMachineOutliner && getOptLevel() != CodeGenOpt::None &&
972       EnableMachineOutliner != NeverOutline) {
973     bool RunOnAllFunctions = (EnableMachineOutliner == AlwaysOutline);
974     bool AddOutliner = RunOnAllFunctions ||
975                        TM->Options.SupportsDefaultOutlining;
976     if (AddOutliner)
977       addPass(createMachineOutlinerPass(RunOnAllFunctions));
978   }
979 
980   // Add passes that directly emit MI after all other MI passes.
981   addPreEmitPass2();
982 
983   AddingMachinePasses = false;
984 }
985 
986 /// Add passes that optimize machine instructions in SSA form.
987 void TargetPassConfig::addMachineSSAOptimization() {
988   // Pre-ra tail duplication.
989   addPass(&EarlyTailDuplicateID);
990 
991   // Optimize PHIs before DCE: removing dead PHI cycles may make more
992   // instructions dead.
993   addPass(&OptimizePHIsID, false);
994 
995   // This pass merges large allocas. StackSlotColoring is a different pass
996   // which merges spill slots.
997   addPass(&StackColoringID, false);
998 
999   // If the target requests it, assign local variables to stack slots relative
1000   // to one another and simplify frame index references where possible.
1001   addPass(&LocalStackSlotAllocationID, false);
1002 
1003   // With optimization, dead code should already be eliminated. However
1004   // there is one known exception: lowered code for arguments that are only
1005   // used by tail calls, where the tail calls reuse the incoming stack
1006   // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
1007   addPass(&DeadMachineInstructionElimID);
1008 
1009   // Allow targets to insert passes that improve instruction level parallelism,
1010   // like if-conversion. Such passes will typically need dominator trees and
1011   // loop info, just like LICM and CSE below.
1012   addILPOpts();
1013 
1014   addPass(&EarlyMachineLICMID, false);
1015   addPass(&MachineCSEID, false);
1016 
1017   addPass(&MachineSinkingID);
1018 
1019   addPass(&PeepholeOptimizerID);
1020   // Clean-up the dead code that may have been generated by peephole
1021   // rewriting.
1022   addPass(&DeadMachineInstructionElimID);
1023 }
1024 
1025 //===---------------------------------------------------------------------===//
1026 /// Register Allocation Pass Configuration
1027 //===---------------------------------------------------------------------===//
1028 
1029 bool TargetPassConfig::getOptimizeRegAlloc() const {
1030   switch (OptimizeRegAlloc) {
1031   case cl::BOU_UNSET: return getOptLevel() != CodeGenOpt::None;
1032   case cl::BOU_TRUE:  return true;
1033   case cl::BOU_FALSE: return false;
1034   }
1035   llvm_unreachable("Invalid optimize-regalloc state");
1036 }
1037 
1038 /// A dummy default pass factory indicates whether the register allocator is
1039 /// overridden on the command line.
1040 static llvm::once_flag InitializeDefaultRegisterAllocatorFlag;
1041 
1042 static RegisterRegAlloc
1043 defaultRegAlloc("default",
1044                 "pick register allocator based on -O option",
1045                 useDefaultRegisterAllocator);
1046 
1047 static void initializeDefaultRegisterAllocatorOnce() {
1048   RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
1049 
1050   if (!Ctor) {
1051     Ctor = RegAlloc;
1052     RegisterRegAlloc::setDefault(RegAlloc);
1053   }
1054 }
1055 
1056 /// Instantiate the default register allocator pass for this target for either
1057 /// the optimized or unoptimized allocation path. This will be added to the pass
1058 /// manager by addFastRegAlloc in the unoptimized case or addOptimizedRegAlloc
1059 /// in the optimized case.
1060 ///
1061 /// A target that uses the standard regalloc pass order for fast or optimized
1062 /// allocation may still override this for per-target regalloc
1063 /// selection. But -regalloc=... always takes precedence.
1064 FunctionPass *TargetPassConfig::createTargetRegisterAllocator(bool Optimized) {
1065   if (Optimized)
1066     return createGreedyRegisterAllocator();
1067   else
1068     return createFastRegisterAllocator();
1069 }
1070 
1071 /// Find and instantiate the register allocation pass requested by this target
1072 /// at the current optimization level.  Different register allocators are
1073 /// defined as separate passes because they may require different analysis.
1074 ///
1075 /// This helper ensures that the regalloc= option is always available,
1076 /// even for targets that override the default allocator.
1077 ///
1078 /// FIXME: When MachinePassRegistry register pass IDs instead of function ptrs,
1079 /// this can be folded into addPass.
1080 FunctionPass *TargetPassConfig::createRegAllocPass(bool Optimized) {
1081   // Initialize the global default.
1082   llvm::call_once(InitializeDefaultRegisterAllocatorFlag,
1083                   initializeDefaultRegisterAllocatorOnce);
1084 
1085   RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
1086   if (Ctor != useDefaultRegisterAllocator)
1087     return Ctor();
1088 
1089   // With no -regalloc= override, ask the target for a regalloc pass.
1090   return createTargetRegisterAllocator(Optimized);
1091 }
1092 
1093 bool TargetPassConfig::addRegAssignmentFast() {
1094   if (RegAlloc != &useDefaultRegisterAllocator &&
1095       RegAlloc != &createFastRegisterAllocator)
1096     report_fatal_error("Must use fast (default) register allocator for unoptimized regalloc.");
1097 
1098   addPass(createRegAllocPass(false));
1099   return true;
1100 }
1101 
1102 bool TargetPassConfig::addRegAssignmentOptimized() {
1103   // Add the selected register allocation pass.
1104   addPass(createRegAllocPass(true));
1105 
1106   // Allow targets to change the register assignments before rewriting.
1107   addPreRewrite();
1108 
1109   // Finally rewrite virtual registers.
1110   addPass(&VirtRegRewriterID);
1111   // Perform stack slot coloring and post-ra machine LICM.
1112   //
1113   // FIXME: Re-enable coloring with register when it's capable of adding
1114   // kill markers.
1115   addPass(&StackSlotColoringID);
1116 
1117   return true;
1118 }
1119 
1120 /// Return true if the default global register allocator is in use and
1121 /// has not be overriden on the command line with '-regalloc=...'
1122 bool TargetPassConfig::usingDefaultRegAlloc() const {
1123   return RegAlloc.getNumOccurrences() == 0;
1124 }
1125 
1126 /// Add the minimum set of target-independent passes that are required for
1127 /// register allocation. No coalescing or scheduling.
1128 void TargetPassConfig::addFastRegAlloc() {
1129   addPass(&PHIEliminationID, false);
1130   addPass(&TwoAddressInstructionPassID, false);
1131 
1132   addRegAssignmentFast();
1133 }
1134 
1135 /// Add standard target-independent passes that are tightly coupled with
1136 /// optimized register allocation, including coalescing, machine instruction
1137 /// scheduling, and register allocation itself.
1138 void TargetPassConfig::addOptimizedRegAlloc() {
1139   addPass(&DetectDeadLanesID, false);
1140 
1141   addPass(&ProcessImplicitDefsID, false);
1142 
1143   // LiveVariables currently requires pure SSA form.
1144   //
1145   // FIXME: Once TwoAddressInstruction pass no longer uses kill flags,
1146   // LiveVariables can be removed completely, and LiveIntervals can be directly
1147   // computed. (We still either need to regenerate kill flags after regalloc, or
1148   // preferably fix the scavenger to not depend on them).
1149   addPass(&LiveVariablesID, false);
1150 
1151   // Edge splitting is smarter with machine loop info.
1152   addPass(&MachineLoopInfoID, false);
1153   addPass(&PHIEliminationID, false);
1154 
1155   // Eventually, we want to run LiveIntervals before PHI elimination.
1156   if (EarlyLiveIntervals)
1157     addPass(&LiveIntervalsID, false);
1158 
1159   addPass(&TwoAddressInstructionPassID, false);
1160   addPass(&RegisterCoalescerID);
1161 
1162   // The machine scheduler may accidentally create disconnected components
1163   // when moving subregister definitions around, avoid this by splitting them to
1164   // separate vregs before. Splitting can also improve reg. allocation quality.
1165   addPass(&RenameIndependentSubregsID);
1166 
1167   // PreRA instruction scheduling.
1168   addPass(&MachineSchedulerID);
1169 
1170   if (addRegAssignmentOptimized()) {
1171     // Copy propagate to forward register uses and try to eliminate COPYs that
1172     // were not coalesced.
1173     addPass(&MachineCopyPropagationID);
1174 
1175     // Run post-ra machine LICM to hoist reloads / remats.
1176     //
1177     // FIXME: can this move into MachineLateOptimization?
1178     addPass(&MachineLICMID);
1179   }
1180 }
1181 
1182 //===---------------------------------------------------------------------===//
1183 /// Post RegAlloc Pass Configuration
1184 //===---------------------------------------------------------------------===//
1185 
1186 /// Add passes that optimize machine instructions after register allocation.
1187 void TargetPassConfig::addMachineLateOptimization() {
1188   // Branch folding must be run after regalloc and prolog/epilog insertion.
1189   addPass(&BranchFolderPassID);
1190 
1191   // Tail duplication.
1192   // Note that duplicating tail just increases code size and degrades
1193   // performance for targets that require Structured Control Flow.
1194   // In addition it can also make CFG irreducible. Thus we disable it.
1195   if (!TM->requiresStructuredCFG())
1196     addPass(&TailDuplicateID);
1197 
1198   // Copy propagation.
1199   addPass(&MachineCopyPropagationID);
1200 }
1201 
1202 /// Add standard GC passes.
1203 bool TargetPassConfig::addGCPasses() {
1204   addPass(&GCMachineCodeAnalysisID, false);
1205   return true;
1206 }
1207 
1208 /// Add standard basic block placement passes.
1209 void TargetPassConfig::addBlockPlacement() {
1210   if (addPass(&MachineBlockPlacementID)) {
1211     // Run a separate pass to collect block placement statistics.
1212     if (EnableBlockPlacementStats)
1213       addPass(&MachineBlockPlacementStatsID);
1214   }
1215 }
1216 
1217 //===---------------------------------------------------------------------===//
1218 /// GlobalISel Configuration
1219 //===---------------------------------------------------------------------===//
1220 bool TargetPassConfig::isGlobalISelAbortEnabled() const {
1221   return TM->Options.GlobalISelAbort == GlobalISelAbortMode::Enable;
1222 }
1223 
1224 bool TargetPassConfig::reportDiagnosticWhenGlobalISelFallback() const {
1225   return TM->Options.GlobalISelAbort == GlobalISelAbortMode::DisableWithDiag;
1226 }
1227 
1228 bool TargetPassConfig::isGISelCSEEnabled() const {
1229   return true;
1230 }
1231 
1232 std::unique_ptr<CSEConfigBase> TargetPassConfig::getCSEConfig() const {
1233   return make_unique<CSEConfigBase>();
1234 }
1235