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