1 //===- TargetPassConfig.cpp - Target independent code generation passes ---===//
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
7 //===----------------------------------------------------------------------===//
9 // This file defines interfaces to access the target independent code
10 // generation passes provided by the LLVM backend.
12 //===---------------------------------------------------------------------===//
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"
53 EnableIPRA("enable-ipra", cl::init(false), cl::Hidden
,
54 cl::desc("Enable interprocedural register allocation "
55 "to reduce load/store at procedure calls."));
56 static cl::opt
<bool> DisablePostRASched("disable-post-ra", cl::Hidden
,
57 cl::desc("Disable Post Regalloc Scheduler"));
58 static cl::opt
<bool> DisableBranchFold("disable-branch-fold", cl::Hidden
,
59 cl::desc("Disable branch folding"));
60 static cl::opt
<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden
,
61 cl::desc("Disable tail duplication"));
62 static cl::opt
<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden
,
63 cl::desc("Disable pre-register allocation tail duplication"));
64 static cl::opt
<bool> DisableBlockPlacement("disable-block-placement",
65 cl::Hidden
, cl::desc("Disable probability-driven block placement"));
66 static cl::opt
<bool> EnableBlockPlacementStats("enable-block-placement-stats",
67 cl::Hidden
, cl::desc("Collect probability-driven block placement stats"));
68 static cl::opt
<bool> DisableSSC("disable-ssc", cl::Hidden
,
69 cl::desc("Disable Stack Slot Coloring"));
70 static cl::opt
<bool> DisableMachineDCE("disable-machine-dce", cl::Hidden
,
71 cl::desc("Disable Machine Dead Code Elimination"));
72 static cl::opt
<bool> DisableEarlyIfConversion("disable-early-ifcvt", cl::Hidden
,
73 cl::desc("Disable Early If-conversion"));
74 static cl::opt
<bool> DisableMachineLICM("disable-machine-licm", cl::Hidden
,
75 cl::desc("Disable Machine LICM"));
76 static cl::opt
<bool> DisableMachineCSE("disable-machine-cse", cl::Hidden
,
77 cl::desc("Disable Machine Common Subexpression Elimination"));
78 static cl::opt
<cl::boolOrDefault
> OptimizeRegAlloc(
79 "optimize-regalloc", cl::Hidden
,
80 cl::desc("Enable optimized register allocation compilation path."));
81 static cl::opt
<bool> DisablePostRAMachineLICM("disable-postra-machine-licm",
83 cl::desc("Disable Machine LICM"));
84 static cl::opt
<bool> DisableMachineSink("disable-machine-sink", cl::Hidden
,
85 cl::desc("Disable Machine Sinking"));
86 static cl::opt
<bool> DisablePostRAMachineSink("disable-postra-machine-sink",
88 cl::desc("Disable PostRA Machine Sinking"));
89 static cl::opt
<bool> DisableLSR("disable-lsr", cl::Hidden
,
90 cl::desc("Disable Loop Strength Reduction Pass"));
91 static cl::opt
<bool> DisableConstantHoisting("disable-constant-hoisting",
92 cl::Hidden
, cl::desc("Disable ConstantHoisting"));
93 static cl::opt
<bool> DisableCGP("disable-cgp", cl::Hidden
,
94 cl::desc("Disable Codegen Prepare"));
95 static cl::opt
<bool> DisableCopyProp("disable-copyprop", cl::Hidden
,
96 cl::desc("Disable Copy Propagation pass"));
97 static cl::opt
<bool> DisablePartialLibcallInlining("disable-partial-libcall-inlining",
98 cl::Hidden
, cl::desc("Disable Partial Libcall Inlining"));
99 static cl::opt
<bool> EnableImplicitNullChecks(
100 "enable-implicit-null-checks",
101 cl::desc("Fold null checks into faulting memory operations"),
102 cl::init(false), cl::Hidden
);
103 static cl::opt
<bool> DisableMergeICmps("disable-mergeicmps",
104 cl::desc("Disable MergeICmps Pass"),
105 cl::init(false), cl::Hidden
);
106 static cl::opt
<bool> PrintLSR("print-lsr-output", cl::Hidden
,
107 cl::desc("Print LLVM IR produced by the loop-reduce pass"));
108 static cl::opt
<bool> PrintISelInput("print-isel-input", cl::Hidden
,
109 cl::desc("Print LLVM IR input to isel pass"));
110 static cl::opt
<bool> PrintGCInfo("print-gc", cl::Hidden
,
111 cl::desc("Dump garbage collector data"));
112 static cl::opt
<cl::boolOrDefault
>
113 VerifyMachineCode("verify-machineinstrs", cl::Hidden
,
114 cl::desc("Verify generated machine code"),
116 enum RunOutliner
{ AlwaysOutline
, NeverOutline
, TargetDefault
};
117 // Enable or disable the MachineOutliner.
118 static cl::opt
<RunOutliner
> EnableMachineOutliner(
119 "enable-machine-outliner", cl::desc("Enable the machine outliner"),
120 cl::Hidden
, cl::ValueOptional
, cl::init(TargetDefault
),
121 cl::values(clEnumValN(AlwaysOutline
, "always",
122 "Run on all functions guaranteed to be beneficial"),
123 clEnumValN(NeverOutline
, "never", "Disable all outlining"),
124 // Sentinel value for unspecified option.
125 clEnumValN(AlwaysOutline
, "", "")));
126 // Enable or disable FastISel. Both options are needed, because
127 // FastISel is enabled by default with -fast, and we wish to be
128 // able to enable or disable fast-isel independently from -O0.
129 static cl::opt
<cl::boolOrDefault
>
130 EnableFastISelOption("fast-isel", cl::Hidden
,
131 cl::desc("Enable the \"fast\" instruction selector"));
133 static cl::opt
<cl::boolOrDefault
> EnableGlobalISelOption(
134 "global-isel", cl::Hidden
,
135 cl::desc("Enable the \"global\" instruction selector"));
137 static cl::opt
<std::string
> PrintMachineInstrs(
138 "print-machineinstrs", cl::ValueOptional
, cl::desc("Print machine instrs"),
139 cl::value_desc("pass-name"), cl::init("option-unspecified"), cl::Hidden
);
141 static cl::opt
<GlobalISelAbortMode
> EnableGlobalISelAbort(
142 "global-isel-abort", cl::Hidden
,
143 cl::desc("Enable abort calls when \"global\" instruction selection "
144 "fails to lower/select an instruction"),
146 clEnumValN(GlobalISelAbortMode::Disable
, "0", "Disable the abort"),
147 clEnumValN(GlobalISelAbortMode::Enable
, "1", "Enable the abort"),
148 clEnumValN(GlobalISelAbortMode::DisableWithDiag
, "2",
149 "Disable the abort but emit a diagnostic on failure")));
151 // Temporary option to allow experimenting with MachineScheduler as a post-RA
152 // scheduler. Targets can "properly" enable this with
153 // substitutePass(&PostRASchedulerID, &PostMachineSchedulerID).
154 // Targets can return true in targetSchedulesPostRAScheduling() and
155 // insert a PostRA scheduling pass wherever it wants.
156 static cl::opt
<bool> MISchedPostRA(
157 "misched-postra", cl::Hidden
,
159 "Run MachineScheduler post regalloc (independent of preRA sched)"));
161 // Experimental option to run live interval analysis early.
162 static cl::opt
<bool> EarlyLiveIntervals("early-live-intervals", cl::Hidden
,
163 cl::desc("Run live interval analysis earlier in the pipeline"));
165 // Experimental option to use CFL-AA in codegen
166 enum class CFLAAType
{ None
, Steensgaard
, Andersen
, Both
};
167 static cl::opt
<CFLAAType
> UseCFLAA(
168 "use-cfl-aa-in-codegen", cl::init(CFLAAType::None
), cl::Hidden
,
169 cl::desc("Enable the new, experimental CFL alias analysis in CodeGen"),
170 cl::values(clEnumValN(CFLAAType::None
, "none", "Disable CFL-AA"),
171 clEnumValN(CFLAAType::Steensgaard
, "steens",
172 "Enable unification-based CFL-AA"),
173 clEnumValN(CFLAAType::Andersen
, "anders",
174 "Enable inclusion-based CFL-AA"),
175 clEnumValN(CFLAAType::Both
, "both",
176 "Enable both variants of CFL-AA")));
178 /// Option names for limiting the codegen pipeline.
179 /// Those are used in error reporting and we didn't want
180 /// to duplicate their names all over the place.
181 static const char *StartAfterOptName
= "start-after";
182 static const char *StartBeforeOptName
= "start-before";
183 static const char *StopAfterOptName
= "stop-after";
184 static const char *StopBeforeOptName
= "stop-before";
186 static cl::opt
<std::string
>
187 StartAfterOpt(StringRef(StartAfterOptName
),
188 cl::desc("Resume compilation after a specific pass"),
189 cl::value_desc("pass-name"), cl::init(""), cl::Hidden
);
191 static cl::opt
<std::string
>
192 StartBeforeOpt(StringRef(StartBeforeOptName
),
193 cl::desc("Resume compilation before a specific pass"),
194 cl::value_desc("pass-name"), cl::init(""), cl::Hidden
);
196 static cl::opt
<std::string
>
197 StopAfterOpt(StringRef(StopAfterOptName
),
198 cl::desc("Stop compilation after a specific pass"),
199 cl::value_desc("pass-name"), cl::init(""), cl::Hidden
);
201 static cl::opt
<std::string
>
202 StopBeforeOpt(StringRef(StopBeforeOptName
),
203 cl::desc("Stop compilation before a specific pass"),
204 cl::value_desc("pass-name"), cl::init(""), cl::Hidden
);
206 /// Allow standard passes to be disabled by command line options. This supports
207 /// simple binary flags that either suppress the pass or do nothing.
208 /// i.e. -disable-mypass=false has no effect.
209 /// These should be converted to boolOrDefault in order to use applyOverride.
210 static IdentifyingPassPtr
applyDisable(IdentifyingPassPtr PassID
,
213 return IdentifyingPassPtr();
217 /// Allow standard passes to be disabled by the command line, regardless of who
218 /// is adding the pass.
220 /// StandardID is the pass identified in the standard pass pipeline and provided
221 /// to addPass(). It may be a target-specific ID in the case that the target
222 /// directly adds its own pass, but in that case we harmlessly fall through.
224 /// TargetID is the pass that the target has configured to override StandardID.
226 /// StandardID may be a pseudo ID. In that case TargetID is the name of the real
227 /// pass to run. This allows multiple options to control a single pass depending
228 /// on where in the pipeline that pass is added.
229 static IdentifyingPassPtr
overridePass(AnalysisID StandardID
,
230 IdentifyingPassPtr TargetID
) {
231 if (StandardID
== &PostRASchedulerID
)
232 return applyDisable(TargetID
, DisablePostRASched
);
234 if (StandardID
== &BranchFolderPassID
)
235 return applyDisable(TargetID
, DisableBranchFold
);
237 if (StandardID
== &TailDuplicateID
)
238 return applyDisable(TargetID
, DisableTailDuplicate
);
240 if (StandardID
== &EarlyTailDuplicateID
)
241 return applyDisable(TargetID
, DisableEarlyTailDup
);
243 if (StandardID
== &MachineBlockPlacementID
)
244 return applyDisable(TargetID
, DisableBlockPlacement
);
246 if (StandardID
== &StackSlotColoringID
)
247 return applyDisable(TargetID
, DisableSSC
);
249 if (StandardID
== &DeadMachineInstructionElimID
)
250 return applyDisable(TargetID
, DisableMachineDCE
);
252 if (StandardID
== &EarlyIfConverterID
)
253 return applyDisable(TargetID
, DisableEarlyIfConversion
);
255 if (StandardID
== &EarlyMachineLICMID
)
256 return applyDisable(TargetID
, DisableMachineLICM
);
258 if (StandardID
== &MachineCSEID
)
259 return applyDisable(TargetID
, DisableMachineCSE
);
261 if (StandardID
== &MachineLICMID
)
262 return applyDisable(TargetID
, DisablePostRAMachineLICM
);
264 if (StandardID
== &MachineSinkingID
)
265 return applyDisable(TargetID
, DisableMachineSink
);
267 if (StandardID
== &PostRAMachineSinkingID
)
268 return applyDisable(TargetID
, DisablePostRAMachineSink
);
270 if (StandardID
== &MachineCopyPropagationID
)
271 return applyDisable(TargetID
, DisableCopyProp
);
276 //===---------------------------------------------------------------------===//
278 //===---------------------------------------------------------------------===//
280 INITIALIZE_PASS(TargetPassConfig
, "targetpassconfig",
281 "Target Pass Configuration", false, false)
282 char TargetPassConfig::ID
= 0;
286 struct InsertedPass
{
287 AnalysisID TargetPassID
;
288 IdentifyingPassPtr InsertedPassID
;
292 InsertedPass(AnalysisID TargetPassID
, IdentifyingPassPtr InsertedPassID
,
293 bool VerifyAfter
, bool PrintAfter
)
294 : TargetPassID(TargetPassID
), InsertedPassID(InsertedPassID
),
295 VerifyAfter(VerifyAfter
), PrintAfter(PrintAfter
) {}
297 Pass
*getInsertedPass() const {
298 assert(InsertedPassID
.isValid() && "Illegal Pass ID!");
299 if (InsertedPassID
.isInstance())
300 return InsertedPassID
.getInstance();
301 Pass
*NP
= Pass::createPass(InsertedPassID
.getID());
302 assert(NP
&& "Pass ID not registered");
307 } // end anonymous namespace
311 class PassConfigImpl
{
313 // List of passes explicitly substituted by this target. Normally this is
314 // empty, but it is a convenient way to suppress or replace specific passes
315 // that are part of a standard pass pipeline without overridding the entire
316 // pipeline. This mechanism allows target options to inherit a standard pass's
317 // user interface. For example, a target may disable a standard pass by
318 // default by substituting a pass ID of zero, and the user may still enable
319 // that standard pass with an explicit command line option.
320 DenseMap
<AnalysisID
,IdentifyingPassPtr
> TargetPasses
;
322 /// Store the pairs of <AnalysisID, AnalysisID> of which the second pass
323 /// is inserted after each instance of the first one.
324 SmallVector
<InsertedPass
, 4> InsertedPasses
;
327 } // end namespace llvm
329 // Out of line virtual method.
330 TargetPassConfig::~TargetPassConfig() {
334 static const PassInfo
*getPassInfo(StringRef PassName
) {
335 if (PassName
.empty())
338 const PassRegistry
&PR
= *PassRegistry::getPassRegistry();
339 const PassInfo
*PI
= PR
.getPassInfo(PassName
);
341 report_fatal_error(Twine('\"') + Twine(PassName
) +
342 Twine("\" pass is not registered."));
346 static AnalysisID
getPassIDFromName(StringRef PassName
) {
347 const PassInfo
*PI
= getPassInfo(PassName
);
348 return PI
? PI
->getTypeInfo() : nullptr;
351 static std::pair
<StringRef
, unsigned>
352 getPassNameAndInstanceNum(StringRef PassName
) {
353 StringRef Name
, InstanceNumStr
;
354 std::tie(Name
, InstanceNumStr
) = PassName
.split(',');
356 unsigned InstanceNum
= 0;
357 if (!InstanceNumStr
.empty() && InstanceNumStr
.getAsInteger(10, InstanceNum
))
358 report_fatal_error("invalid pass instance specifier " + PassName
);
360 return std::make_pair(Name
, InstanceNum
);
363 void TargetPassConfig::setStartStopPasses() {
364 StringRef StartBeforeName
;
365 std::tie(StartBeforeName
, StartBeforeInstanceNum
) =
366 getPassNameAndInstanceNum(StartBeforeOpt
);
368 StringRef StartAfterName
;
369 std::tie(StartAfterName
, StartAfterInstanceNum
) =
370 getPassNameAndInstanceNum(StartAfterOpt
);
372 StringRef StopBeforeName
;
373 std::tie(StopBeforeName
, StopBeforeInstanceNum
)
374 = getPassNameAndInstanceNum(StopBeforeOpt
);
376 StringRef StopAfterName
;
377 std::tie(StopAfterName
, StopAfterInstanceNum
)
378 = getPassNameAndInstanceNum(StopAfterOpt
);
380 StartBefore
= getPassIDFromName(StartBeforeName
);
381 StartAfter
= getPassIDFromName(StartAfterName
);
382 StopBefore
= getPassIDFromName(StopBeforeName
);
383 StopAfter
= getPassIDFromName(StopAfterName
);
384 if (StartBefore
&& StartAfter
)
385 report_fatal_error(Twine(StartBeforeOptName
) + Twine(" and ") +
386 Twine(StartAfterOptName
) + Twine(" specified!"));
387 if (StopBefore
&& StopAfter
)
388 report_fatal_error(Twine(StopBeforeOptName
) + Twine(" and ") +
389 Twine(StopAfterOptName
) + Twine(" specified!"));
390 Started
= (StartAfter
== nullptr) && (StartBefore
== nullptr);
393 // Out of line constructor provides default values for pass options and
394 // registers all common codegen passes.
395 TargetPassConfig::TargetPassConfig(LLVMTargetMachine
&TM
, PassManagerBase
&pm
)
396 : ImmutablePass(ID
), PM(&pm
), TM(&TM
) {
397 Impl
= new PassConfigImpl();
399 // Register all target independent codegen passes to activate their PassIDs,
400 // including this pass itself.
401 initializeCodeGen(*PassRegistry::getPassRegistry());
403 // Also register alias analysis passes required by codegen passes.
404 initializeBasicAAWrapperPassPass(*PassRegistry::getPassRegistry());
405 initializeAAResultsWrapperPassPass(*PassRegistry::getPassRegistry());
407 if (StringRef(PrintMachineInstrs
.getValue()).equals(""))
408 TM
.Options
.PrintMachineCode
= true;
410 if (EnableIPRA
.getNumOccurrences())
411 TM
.Options
.EnableIPRA
= EnableIPRA
;
413 // If not explicitly specified, use target default.
414 TM
.Options
.EnableIPRA
|= TM
.useIPRA();
417 if (TM
.Options
.EnableIPRA
)
418 setRequiresCodeGenSCCOrder();
420 if (EnableGlobalISelAbort
.getNumOccurrences())
421 TM
.Options
.GlobalISelAbort
= EnableGlobalISelAbort
;
423 setStartStopPasses();
426 CodeGenOpt::Level
TargetPassConfig::getOptLevel() const {
427 return TM
->getOptLevel();
430 /// Insert InsertedPassID pass after TargetPassID.
431 void TargetPassConfig::insertPass(AnalysisID TargetPassID
,
432 IdentifyingPassPtr InsertedPassID
,
433 bool VerifyAfter
, bool PrintAfter
) {
434 assert(((!InsertedPassID
.isInstance() &&
435 TargetPassID
!= InsertedPassID
.getID()) ||
436 (InsertedPassID
.isInstance() &&
437 TargetPassID
!= InsertedPassID
.getInstance()->getPassID())) &&
438 "Insert a pass after itself!");
439 Impl
->InsertedPasses
.emplace_back(TargetPassID
, InsertedPassID
, VerifyAfter
,
443 /// createPassConfig - Create a pass configuration object to be used by
444 /// addPassToEmitX methods for generating a pipeline of CodeGen passes.
446 /// Targets may override this to extend TargetPassConfig.
447 TargetPassConfig
*LLVMTargetMachine::createPassConfig(PassManagerBase
&PM
) {
448 return new TargetPassConfig(*this, PM
);
451 TargetPassConfig::TargetPassConfig()
452 : ImmutablePass(ID
) {
453 report_fatal_error("Trying to construct TargetPassConfig without a target "
454 "machine. Scheduling a CodeGen pass without a target "
458 bool TargetPassConfig::willCompleteCodeGenPipeline() {
459 return StopBeforeOpt
.empty() && StopAfterOpt
.empty();
462 bool TargetPassConfig::hasLimitedCodeGenPipeline() {
463 return !StartBeforeOpt
.empty() || !StartAfterOpt
.empty() ||
464 !willCompleteCodeGenPipeline();
468 TargetPassConfig::getLimitedCodeGenPipelineReason(const char *Separator
) const {
469 if (!hasLimitedCodeGenPipeline())
470 return std::string();
472 static cl::opt
<std::string
> *PassNames
[] = {&StartAfterOpt
, &StartBeforeOpt
,
473 &StopAfterOpt
, &StopBeforeOpt
};
474 static const char *OptNames
[] = {StartAfterOptName
, StartBeforeOptName
,
475 StopAfterOptName
, StopBeforeOptName
};
477 for (int Idx
= 0; Idx
< 4; ++Idx
)
478 if (!PassNames
[Idx
]->empty()) {
482 Res
+= OptNames
[Idx
];
487 // Helper to verify the analysis is really immutable.
488 void TargetPassConfig::setOpt(bool &Opt
, bool Val
) {
489 assert(!Initialized
&& "PassConfig is immutable");
493 void TargetPassConfig::substitutePass(AnalysisID StandardID
,
494 IdentifyingPassPtr TargetID
) {
495 Impl
->TargetPasses
[StandardID
] = TargetID
;
498 IdentifyingPassPtr
TargetPassConfig::getPassSubstitution(AnalysisID ID
) const {
499 DenseMap
<AnalysisID
, IdentifyingPassPtr
>::const_iterator
500 I
= Impl
->TargetPasses
.find(ID
);
501 if (I
== Impl
->TargetPasses
.end())
506 bool TargetPassConfig::isPassSubstitutedOrOverridden(AnalysisID ID
) const {
507 IdentifyingPassPtr TargetID
= getPassSubstitution(ID
);
508 IdentifyingPassPtr FinalPtr
= overridePass(ID
, TargetID
);
509 return !FinalPtr
.isValid() || FinalPtr
.isInstance() ||
510 FinalPtr
.getID() != ID
;
513 /// Add a pass to the PassManager if that pass is supposed to be run. If the
514 /// Started/Stopped flags indicate either that the compilation should start at
515 /// a later pass or that it should stop after an earlier pass, then do not add
516 /// the pass. Finally, compare the current pass against the StartAfter
517 /// and StopAfter options and change the Started/Stopped flags accordingly.
518 void TargetPassConfig::addPass(Pass
*P
, bool verifyAfter
, bool printAfter
) {
519 assert(!Initialized
&& "PassConfig is immutable");
521 // Cache the Pass ID here in case the pass manager finds this pass is
522 // redundant with ones already scheduled / available, and deletes it.
523 // Fundamentally, once we add the pass to the manager, we no longer own it
524 // and shouldn't reference it.
525 AnalysisID PassID
= P
->getPassID();
527 if (StartBefore
== PassID
&& StartBeforeCount
++ == StartBeforeInstanceNum
)
529 if (StopBefore
== PassID
&& StopBeforeCount
++ == StopBeforeInstanceNum
)
531 if (Started
&& !Stopped
) {
533 // Construct banner message before PM->add() as that may delete the pass.
534 if (AddingMachinePasses
&& (printAfter
|| verifyAfter
))
535 Banner
= std::string("After ") + std::string(P
->getPassName());
537 if (AddingMachinePasses
) {
539 addPrintPass(Banner
);
541 addVerifyPass(Banner
);
544 // Add the passes after the pass P if there is any.
545 for (auto IP
: Impl
->InsertedPasses
) {
546 if (IP
.TargetPassID
== PassID
)
547 addPass(IP
.getInsertedPass(), IP
.VerifyAfter
, IP
.PrintAfter
);
553 if (StopAfter
== PassID
&& StopAfterCount
++ == StopAfterInstanceNum
)
556 if (StartAfter
== PassID
&& StartAfterCount
++ == StartAfterInstanceNum
)
558 if (Stopped
&& !Started
)
559 report_fatal_error("Cannot stop compilation after pass that is not run");
562 /// Add a CodeGen pass at this point in the pipeline after checking for target
563 /// and command line overrides.
565 /// addPass cannot return a pointer to the pass instance because is internal the
566 /// PassManager and the instance we create here may already be freed.
567 AnalysisID
TargetPassConfig::addPass(AnalysisID PassID
, bool verifyAfter
,
569 IdentifyingPassPtr TargetID
= getPassSubstitution(PassID
);
570 IdentifyingPassPtr FinalPtr
= overridePass(PassID
, TargetID
);
571 if (!FinalPtr
.isValid())
575 if (FinalPtr
.isInstance())
576 P
= FinalPtr
.getInstance();
578 P
= Pass::createPass(FinalPtr
.getID());
580 llvm_unreachable("Pass ID not registered");
582 AnalysisID FinalID
= P
->getPassID();
583 addPass(P
, verifyAfter
, printAfter
); // Ends the lifetime of P.
588 void TargetPassConfig::printAndVerify(const std::string
&Banner
) {
589 addPrintPass(Banner
);
590 addVerifyPass(Banner
);
593 void TargetPassConfig::addPrintPass(const std::string
&Banner
) {
594 if (TM
->shouldPrintMachineCode())
595 PM
->add(createMachineFunctionPrinterPass(dbgs(), Banner
));
598 void TargetPassConfig::addVerifyPass(const std::string
&Banner
) {
599 bool Verify
= VerifyMachineCode
== cl::BOU_TRUE
;
600 #ifdef EXPENSIVE_CHECKS
601 if (VerifyMachineCode
== cl::BOU_UNSET
)
602 Verify
= TM
->isMachineVerifierClean();
605 PM
->add(createMachineVerifierPass(Banner
));
608 /// Add common target configurable passes that perform LLVM IR to IR transforms
609 /// following machine independent optimization.
610 void TargetPassConfig::addIRPasses() {
612 case CFLAAType::Steensgaard
:
613 addPass(createCFLSteensAAWrapperPass());
615 case CFLAAType::Andersen
:
616 addPass(createCFLAndersAAWrapperPass());
618 case CFLAAType::Both
:
619 addPass(createCFLAndersAAWrapperPass());
620 addPass(createCFLSteensAAWrapperPass());
626 // Basic AliasAnalysis support.
627 // Add TypeBasedAliasAnalysis before BasicAliasAnalysis so that
628 // BasicAliasAnalysis wins if they disagree. This is intended to help
629 // support "obvious" type-punning idioms.
630 addPass(createTypeBasedAAWrapperPass());
631 addPass(createScopedNoAliasAAWrapperPass());
632 addPass(createBasicAAWrapperPass());
634 // Before running any passes, run the verifier to determine if the input
635 // coming from the front-end and/or optimizer is valid.
637 addPass(createVerifierPass());
639 // Run loop strength reduction before anything else.
640 if (getOptLevel() != CodeGenOpt::None
&& !DisableLSR
) {
641 addPass(createLoopStrengthReducePass());
643 addPass(createPrintFunctionPass(dbgs(), "\n\n*** Code after LSR ***\n"));
646 if (getOptLevel() != CodeGenOpt::None
) {
647 // The MergeICmpsPass tries to create memcmp calls by grouping sequences of
648 // loads and compares. ExpandMemCmpPass then tries to expand those calls
649 // into optimally-sized loads and compares. The transforms are enabled by a
650 // target lowering hook.
651 if (!DisableMergeICmps
)
652 addPass(createMergeICmpsLegacyPass());
653 addPass(createExpandMemCmpPass());
656 // Run GC lowering passes for builtin collectors
657 // TODO: add a pass insertion point here
658 addPass(createGCLoweringPass());
659 addPass(createShadowStackGCLoweringPass());
661 // Make sure that no unreachable blocks are instruction selected.
662 addPass(createUnreachableBlockEliminationPass());
664 // Prepare expensive constants for SelectionDAG.
665 if (getOptLevel() != CodeGenOpt::None
&& !DisableConstantHoisting
)
666 addPass(createConstantHoistingPass());
668 if (getOptLevel() != CodeGenOpt::None
&& !DisablePartialLibcallInlining
)
669 addPass(createPartiallyInlineLibCallsPass());
671 // Instrument function entry and exit, e.g. with calls to mcount().
672 addPass(createPostInlineEntryExitInstrumenterPass());
674 // Add scalarization of target's unsupported masked memory intrinsics pass.
675 // the unsupported intrinsic will be replaced with a chain of basic blocks,
676 // that stores/loads element one-by-one if the appropriate mask bit is set.
677 addPass(createScalarizeMaskedMemIntrinPass());
679 // Expand reduction intrinsics into shuffle sequences if the target wants to.
680 addPass(createExpandReductionsPass());
683 /// Turn exception handling constructs into something the code generators can
685 void TargetPassConfig::addPassesToHandleExceptions() {
686 const MCAsmInfo
*MCAI
= TM
->getMCAsmInfo();
687 assert(MCAI
&& "No MCAsmInfo");
688 switch (MCAI
->getExceptionHandlingType()) {
689 case ExceptionHandling::SjLj
:
690 // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
691 // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
692 // catch info can get misplaced when a selector ends up more than one block
693 // removed from the parent invoke(s). This could happen when a landing
694 // pad is shared by multiple invokes and is also a target of a normal
695 // edge from elsewhere.
696 addPass(createSjLjEHPreparePass());
698 case ExceptionHandling::DwarfCFI
:
699 case ExceptionHandling::ARM
:
700 addPass(createDwarfEHPass());
702 case ExceptionHandling::WinEH
:
703 // We support using both GCC-style and MSVC-style exceptions on Windows, so
704 // add both preparation passes. Each pass will only actually run if it
705 // recognizes the personality function.
706 addPass(createWinEHPass());
707 addPass(createDwarfEHPass());
709 case ExceptionHandling::Wasm
:
710 // Wasm EH uses Windows EH instructions, but it does not need to demote PHIs
711 // on catchpads and cleanuppads because it does not outline them into
712 // funclets. Catchswitch blocks are not lowered in SelectionDAG, so we
713 // should remove PHIs there.
714 addPass(createWinEHPass(/*DemoteCatchSwitchPHIOnly=*/false));
715 addPass(createWasmEHPass());
717 case ExceptionHandling::None
:
718 addPass(createLowerInvokePass());
720 // The lower invoke pass may create unreachable code. Remove it.
721 addPass(createUnreachableBlockEliminationPass());
726 /// Add pass to prepare the LLVM IR for code generation. This should be done
727 /// before exception handling preparation passes.
728 void TargetPassConfig::addCodeGenPrepare() {
729 if (getOptLevel() != CodeGenOpt::None
&& !DisableCGP
)
730 addPass(createCodeGenPreparePass());
731 addPass(createRewriteSymbolsPass());
734 /// Add common passes that perform LLVM IR to IR transforms in preparation for
735 /// instruction selection.
736 void TargetPassConfig::addISelPrepare() {
739 // Force codegen to run according to the callgraph.
740 if (requiresCodeGenSCCOrder())
741 addPass(new DummyCGSCCPass
);
743 // Add both the safe stack and the stack protection passes: each of them will
744 // only protect functions that have corresponding attributes.
745 addPass(createSafeStackPass());
746 addPass(createStackProtectorPass());
749 addPass(createPrintFunctionPass(
750 dbgs(), "\n\n*** Final LLVM Code input to ISel ***\n"));
752 // All passes which modify the LLVM IR are now complete; run the verifier
753 // to ensure that the IR is valid.
755 addPass(createVerifierPass());
758 bool TargetPassConfig::addCoreISelPasses() {
759 // Enable FastISel with -fast-isel, but allow that to be overridden.
760 TM
->setO0WantsFastISel(EnableFastISelOption
!= cl::BOU_FALSE
);
762 // Determine an instruction selector.
763 enum class SelectorType
{ SelectionDAG
, FastISel
, GlobalISel
};
764 SelectorType Selector
;
766 if (EnableFastISelOption
== cl::BOU_TRUE
)
767 Selector
= SelectorType::FastISel
;
768 else if (EnableGlobalISelOption
== cl::BOU_TRUE
||
769 (TM
->Options
.EnableGlobalISel
&&
770 EnableGlobalISelOption
!= cl::BOU_FALSE
))
771 Selector
= SelectorType::GlobalISel
;
772 else if (TM
->getOptLevel() == CodeGenOpt::None
&& TM
->getO0WantsFastISel())
773 Selector
= SelectorType::FastISel
;
775 Selector
= SelectorType::SelectionDAG
;
777 // Set consistently TM->Options.EnableFastISel and EnableGlobalISel.
778 if (Selector
== SelectorType::FastISel
) {
779 TM
->setFastISel(true);
780 TM
->setGlobalISel(false);
781 } else if (Selector
== SelectorType::GlobalISel
) {
782 TM
->setFastISel(false);
783 TM
->setGlobalISel(true);
786 // Add instruction selector passes.
787 if (Selector
== SelectorType::GlobalISel
) {
788 SaveAndRestore
<bool> SavedAddingMachinePasses(AddingMachinePasses
, true);
789 if (addIRTranslator())
792 addPreLegalizeMachineIR();
794 if (addLegalizeMachineIR())
797 // Before running the register bank selector, ask the target if it
798 // wants to run some passes.
799 addPreRegBankSelect();
801 if (addRegBankSelect())
804 addPreGlobalInstructionSelect();
806 if (addGlobalInstructionSelect())
809 // Pass to reset the MachineFunction if the ISel failed.
810 addPass(createResetMachineFunctionPass(
811 reportDiagnosticWhenGlobalISelFallback(), isGlobalISelAbortEnabled()));
813 // Provide a fallback path when we do not want to abort on
814 // not-yet-supported input.
815 if (!isGlobalISelAbortEnabled() && addInstSelector())
818 } else if (addInstSelector())
821 // Expand pseudo-instructions emitted by ISel. Don't run the verifier before
823 addPass(&FinalizeISelID
);
825 // Print the instruction selected machine code...
826 printAndVerify("After Instruction Selection");
831 bool TargetPassConfig::addISelPasses() {
832 if (TM
->useEmulatedTLS())
833 addPass(createLowerEmuTLSPass());
835 addPass(createPreISelIntrinsicLoweringPass());
836 addPass(createTargetTransformInfoWrapperPass(TM
->getTargetIRAnalysis()));
839 addPassesToHandleExceptions();
842 return addCoreISelPasses();
845 /// -regalloc=... command line option.
846 static FunctionPass
*useDefaultRegisterAllocator() { return nullptr; }
847 static cl::opt
<RegisterRegAlloc::FunctionPassCtor
, false,
848 RegisterPassParser
<RegisterRegAlloc
>>
849 RegAlloc("regalloc", cl::Hidden
, cl::init(&useDefaultRegisterAllocator
),
850 cl::desc("Register allocator to use"));
852 /// Add the complete set of target-independent postISel code generator passes.
854 /// This can be read as the standard order of major LLVM CodeGen stages. Stages
855 /// with nontrivial configuration or multiple passes are broken out below in
856 /// add%Stage routines.
858 /// Any TargetPassConfig::addXX routine may be overriden by the Target. The
859 /// addPre/Post methods with empty header implementations allow injecting
860 /// target-specific fixups just before or after major stages. Additionally,
861 /// targets have the flexibility to change pass order within a stage by
862 /// overriding default implementation of add%Stage routines below. Each
863 /// technique has maintainability tradeoffs because alternate pass orders are
864 /// not well supported. addPre/Post works better if the target pass is easily
865 /// tied to a common pass. But if it has subtle dependencies on multiple passes,
866 /// the target should override the stage instead.
868 /// TODO: We could use a single addPre/Post(ID) hook to allow pass injection
869 /// before/after any target-independent pass. But it's currently overkill.
870 void TargetPassConfig::addMachinePasses() {
871 AddingMachinePasses
= true;
873 // Insert a machine instr printer pass after the specified pass.
874 StringRef PrintMachineInstrsPassName
= PrintMachineInstrs
.getValue();
875 if (!PrintMachineInstrsPassName
.equals("") &&
876 !PrintMachineInstrsPassName
.equals("option-unspecified")) {
877 if (const PassInfo
*TPI
= getPassInfo(PrintMachineInstrsPassName
)) {
878 const PassRegistry
*PR
= PassRegistry::getPassRegistry();
879 const PassInfo
*IPI
= PR
->getPassInfo(StringRef("machineinstr-printer"));
880 assert(IPI
&& "failed to get \"machineinstr-printer\" PassInfo!");
881 const char *TID
= (const char *)(TPI
->getTypeInfo());
882 const char *IID
= (const char *)(IPI
->getTypeInfo());
883 insertPass(TID
, IID
);
887 // Add passes that optimize machine instructions in SSA form.
888 if (getOptLevel() != CodeGenOpt::None
) {
889 addMachineSSAOptimization();
891 // If the target requests it, assign local variables to stack slots relative
892 // to one another and simplify frame index references where possible.
893 addPass(&LocalStackSlotAllocationID
, false);
896 if (TM
->Options
.EnableIPRA
)
897 addPass(createRegUsageInfoPropPass());
899 // Run pre-ra passes.
902 // Run register allocation and passes that are tightly coupled with it,
903 // including phi elimination and scheduling.
904 if (getOptimizeRegAlloc())
905 addOptimizedRegAlloc();
909 // Run post-ra passes.
912 // Insert prolog/epilog code. Eliminate abstract frame index references...
913 if (getOptLevel() != CodeGenOpt::None
) {
914 addPass(&PostRAMachineSinkingID
);
915 addPass(&ShrinkWrapID
);
918 // Prolog/Epilog inserter needs a TargetMachine to instantiate. But only
919 // do so if it hasn't been disabled, substituted, or overridden.
920 if (!isPassSubstitutedOrOverridden(&PrologEpilogCodeInserterID
))
921 addPass(createPrologEpilogInserterPass());
923 /// Add passes that optimize machine instructions after register allocation.
924 if (getOptLevel() != CodeGenOpt::None
)
925 addMachineLateOptimization();
927 // Expand pseudo instructions before second scheduling pass.
928 addPass(&ExpandPostRAPseudosID
);
930 // Run pre-sched2 passes.
933 if (EnableImplicitNullChecks
)
934 addPass(&ImplicitNullChecksID
);
936 // Second pass scheduler.
937 // Let Target optionally insert this pass by itself at some other
939 if (getOptLevel() != CodeGenOpt::None
&&
940 !TM
->targetSchedulesPostRAScheduling()) {
942 addPass(&PostMachineSchedulerID
);
944 addPass(&PostRASchedulerID
);
950 addPass(createGCInfoPrinter(dbgs()), false, false);
953 // Basic block placement.
954 if (getOptLevel() != CodeGenOpt::None
)
959 if (TM
->Options
.EnableIPRA
)
960 // Collect register usage information and produce a register mask of
961 // clobbered registers, to be used to optimize call sites.
962 addPass(createRegUsageInfoCollector());
964 addPass(&FuncletLayoutID
, false);
966 addPass(&StackMapLivenessID
, false);
967 addPass(&LiveDebugValuesID
, false);
969 // Insert before XRay Instrumentation.
970 addPass(&FEntryInserterID
, false);
972 addPass(&XRayInstrumentationID
, false);
973 addPass(&PatchableFunctionID
, false);
975 if (TM
->Options
.EnableMachineOutliner
&& getOptLevel() != CodeGenOpt::None
&&
976 EnableMachineOutliner
!= NeverOutline
) {
977 bool RunOnAllFunctions
= (EnableMachineOutliner
== AlwaysOutline
);
978 bool AddOutliner
= RunOnAllFunctions
||
979 TM
->Options
.SupportsDefaultOutlining
;
981 addPass(createMachineOutlinerPass(RunOnAllFunctions
));
984 // Add passes that directly emit MI after all other MI passes.
987 AddingMachinePasses
= false;
990 /// Add passes that optimize machine instructions in SSA form.
991 void TargetPassConfig::addMachineSSAOptimization() {
992 // Pre-ra tail duplication.
993 addPass(&EarlyTailDuplicateID
);
995 // Optimize PHIs before DCE: removing dead PHI cycles may make more
996 // instructions dead.
997 addPass(&OptimizePHIsID
, false);
999 // This pass merges large allocas. StackSlotColoring is a different pass
1000 // which merges spill slots.
1001 addPass(&StackColoringID
, false);
1003 // If the target requests it, assign local variables to stack slots relative
1004 // to one another and simplify frame index references where possible.
1005 addPass(&LocalStackSlotAllocationID
, false);
1007 // With optimization, dead code should already be eliminated. However
1008 // there is one known exception: lowered code for arguments that are only
1009 // used by tail calls, where the tail calls reuse the incoming stack
1010 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
1011 addPass(&DeadMachineInstructionElimID
);
1013 // Allow targets to insert passes that improve instruction level parallelism,
1014 // like if-conversion. Such passes will typically need dominator trees and
1015 // loop info, just like LICM and CSE below.
1018 addPass(&EarlyMachineLICMID
, false);
1019 addPass(&MachineCSEID
, false);
1021 addPass(&MachineSinkingID
);
1023 addPass(&PeepholeOptimizerID
);
1024 // Clean-up the dead code that may have been generated by peephole
1026 addPass(&DeadMachineInstructionElimID
);
1029 //===---------------------------------------------------------------------===//
1030 /// Register Allocation Pass Configuration
1031 //===---------------------------------------------------------------------===//
1033 bool TargetPassConfig::getOptimizeRegAlloc() const {
1034 switch (OptimizeRegAlloc
) {
1035 case cl::BOU_UNSET
: return getOptLevel() != CodeGenOpt::None
;
1036 case cl::BOU_TRUE
: return true;
1037 case cl::BOU_FALSE
: return false;
1039 llvm_unreachable("Invalid optimize-regalloc state");
1042 /// A dummy default pass factory indicates whether the register allocator is
1043 /// overridden on the command line.
1044 static llvm::once_flag InitializeDefaultRegisterAllocatorFlag
;
1046 static RegisterRegAlloc
1047 defaultRegAlloc("default",
1048 "pick register allocator based on -O option",
1049 useDefaultRegisterAllocator
);
1051 static void initializeDefaultRegisterAllocatorOnce() {
1052 if (!RegisterRegAlloc::getDefault())
1053 RegisterRegAlloc::setDefault(RegAlloc
);
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.
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
) {
1066 return createGreedyRegisterAllocator();
1068 return createFastRegisterAllocator();
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.
1075 /// This helper ensures that the regalloc= option is always available,
1076 /// even for targets that override the default allocator.
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
);
1085 RegisterRegAlloc::FunctionPassCtor Ctor
= RegisterRegAlloc::getDefault();
1086 if (Ctor
!= useDefaultRegisterAllocator
)
1089 // With no -regalloc= override, ask the target for a regalloc pass.
1090 return createTargetRegisterAllocator(Optimized
);
1093 bool TargetPassConfig::addRegAssignmentFast() {
1094 if (RegAlloc
!= &useDefaultRegisterAllocator
&&
1095 RegAlloc
!= &createFastRegisterAllocator
)
1096 report_fatal_error("Must use fast (default) register allocator for unoptimized regalloc.");
1098 addPass(createRegAllocPass(false));
1102 bool TargetPassConfig::addRegAssignmentOptimized() {
1103 // Add the selected register allocation pass.
1104 addPass(createRegAllocPass(true));
1106 // Allow targets to change the register assignments before rewriting.
1109 // Finally rewrite virtual registers.
1110 addPass(&VirtRegRewriterID
);
1111 // Perform stack slot coloring and post-ra machine LICM.
1113 // FIXME: Re-enable coloring with register when it's capable of adding
1115 addPass(&StackSlotColoringID
);
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;
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);
1132 addRegAssignmentFast();
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);
1141 addPass(&ProcessImplicitDefsID
, false);
1143 // LiveVariables currently requires pure SSA form.
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);
1151 // Edge splitting is smarter with machine loop info.
1152 addPass(&MachineLoopInfoID
, false);
1153 addPass(&PHIEliminationID
, false);
1155 // Eventually, we want to run LiveIntervals before PHI elimination.
1156 if (EarlyLiveIntervals
)
1157 addPass(&LiveIntervalsID
, false);
1159 addPass(&TwoAddressInstructionPassID
, false);
1160 addPass(&RegisterCoalescerID
);
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
);
1167 // PreRA instruction scheduling.
1168 addPass(&MachineSchedulerID
);
1170 if (addRegAssignmentOptimized()) {
1171 // Allow targets to expand pseudo instructions depending on the choice of
1172 // registers before MachineCopyPropagation.
1175 // Copy propagate to forward register uses and try to eliminate COPYs that
1176 // were not coalesced.
1177 addPass(&MachineCopyPropagationID
);
1179 // Run post-ra machine LICM to hoist reloads / remats.
1181 // FIXME: can this move into MachineLateOptimization?
1182 addPass(&MachineLICMID
);
1186 //===---------------------------------------------------------------------===//
1187 /// Post RegAlloc Pass Configuration
1188 //===---------------------------------------------------------------------===//
1190 /// Add passes that optimize machine instructions after register allocation.
1191 void TargetPassConfig::addMachineLateOptimization() {
1192 // Branch folding must be run after regalloc and prolog/epilog insertion.
1193 addPass(&BranchFolderPassID
);
1195 // Tail duplication.
1196 // Note that duplicating tail just increases code size and degrades
1197 // performance for targets that require Structured Control Flow.
1198 // In addition it can also make CFG irreducible. Thus we disable it.
1199 if (!TM
->requiresStructuredCFG())
1200 addPass(&TailDuplicateID
);
1202 // Copy propagation.
1203 addPass(&MachineCopyPropagationID
);
1206 /// Add standard GC passes.
1207 bool TargetPassConfig::addGCPasses() {
1208 addPass(&GCMachineCodeAnalysisID
, false);
1212 /// Add standard basic block placement passes.
1213 void TargetPassConfig::addBlockPlacement() {
1214 if (addPass(&MachineBlockPlacementID
)) {
1215 // Run a separate pass to collect block placement statistics.
1216 if (EnableBlockPlacementStats
)
1217 addPass(&MachineBlockPlacementStatsID
);
1221 //===---------------------------------------------------------------------===//
1222 /// GlobalISel Configuration
1223 //===---------------------------------------------------------------------===//
1224 bool TargetPassConfig::isGlobalISelAbortEnabled() const {
1225 return TM
->Options
.GlobalISelAbort
== GlobalISelAbortMode::Enable
;
1228 bool TargetPassConfig::reportDiagnosticWhenGlobalISelFallback() const {
1229 return TM
->Options
.GlobalISelAbort
== GlobalISelAbortMode::DisableWithDiag
;
1232 bool TargetPassConfig::isGISelCSEEnabled() const {
1236 std::unique_ptr
<CSEConfigBase
> TargetPassConfig::getCSEConfig() const {
1237 return std::make_unique
<CSEConfigBase
>();