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());
660 addPass(createLowerConstantIntrinsicsPass());
662 // Make sure that no unreachable blocks are instruction selected.
663 addPass(createUnreachableBlockEliminationPass());
665 // Prepare expensive constants for SelectionDAG.
666 if (getOptLevel() != CodeGenOpt::None
&& !DisableConstantHoisting
)
667 addPass(createConstantHoistingPass());
669 if (getOptLevel() != CodeGenOpt::None
&& !DisablePartialLibcallInlining
)
670 addPass(createPartiallyInlineLibCallsPass());
672 // Instrument function entry and exit, e.g. with calls to mcount().
673 addPass(createPostInlineEntryExitInstrumenterPass());
675 // Add scalarization of target's unsupported masked memory intrinsics pass.
676 // the unsupported intrinsic will be replaced with a chain of basic blocks,
677 // that stores/loads element one-by-one if the appropriate mask bit is set.
678 addPass(createScalarizeMaskedMemIntrinPass());
680 // Expand reduction intrinsics into shuffle sequences if the target wants to.
681 addPass(createExpandReductionsPass());
684 /// Turn exception handling constructs into something the code generators can
686 void TargetPassConfig::addPassesToHandleExceptions() {
687 const MCAsmInfo
*MCAI
= TM
->getMCAsmInfo();
688 assert(MCAI
&& "No MCAsmInfo");
689 switch (MCAI
->getExceptionHandlingType()) {
690 case ExceptionHandling::SjLj
:
691 // SjLj piggy-backs on dwarf for this bit. The cleanups done apply to both
692 // Dwarf EH prepare needs to be run after SjLj prepare. Otherwise,
693 // catch info can get misplaced when a selector ends up more than one block
694 // removed from the parent invoke(s). This could happen when a landing
695 // pad is shared by multiple invokes and is also a target of a normal
696 // edge from elsewhere.
697 addPass(createSjLjEHPreparePass());
699 case ExceptionHandling::DwarfCFI
:
700 case ExceptionHandling::ARM
:
701 addPass(createDwarfEHPass());
703 case ExceptionHandling::WinEH
:
704 // We support using both GCC-style and MSVC-style exceptions on Windows, so
705 // add both preparation passes. Each pass will only actually run if it
706 // recognizes the personality function.
707 addPass(createWinEHPass());
708 addPass(createDwarfEHPass());
710 case ExceptionHandling::Wasm
:
711 // Wasm EH uses Windows EH instructions, but it does not need to demote PHIs
712 // on catchpads and cleanuppads because it does not outline them into
713 // funclets. Catchswitch blocks are not lowered in SelectionDAG, so we
714 // should remove PHIs there.
715 addPass(createWinEHPass(/*DemoteCatchSwitchPHIOnly=*/false));
716 addPass(createWasmEHPass());
718 case ExceptionHandling::None
:
719 addPass(createLowerInvokePass());
721 // The lower invoke pass may create unreachable code. Remove it.
722 addPass(createUnreachableBlockEliminationPass());
727 /// Add pass to prepare the LLVM IR for code generation. This should be done
728 /// before exception handling preparation passes.
729 void TargetPassConfig::addCodeGenPrepare() {
730 if (getOptLevel() != CodeGenOpt::None
&& !DisableCGP
)
731 addPass(createCodeGenPreparePass());
732 addPass(createRewriteSymbolsPass());
735 /// Add common passes that perform LLVM IR to IR transforms in preparation for
736 /// instruction selection.
737 void TargetPassConfig::addISelPrepare() {
740 // Force codegen to run according to the callgraph.
741 if (requiresCodeGenSCCOrder())
742 addPass(new DummyCGSCCPass
);
744 // Add both the safe stack and the stack protection passes: each of them will
745 // only protect functions that have corresponding attributes.
746 addPass(createSafeStackPass());
747 addPass(createStackProtectorPass());
750 addPass(createPrintFunctionPass(
751 dbgs(), "\n\n*** Final LLVM Code input to ISel ***\n"));
753 // All passes which modify the LLVM IR are now complete; run the verifier
754 // to ensure that the IR is valid.
756 addPass(createVerifierPass());
759 bool TargetPassConfig::addCoreISelPasses() {
760 // Enable FastISel with -fast-isel, but allow that to be overridden.
761 TM
->setO0WantsFastISel(EnableFastISelOption
!= cl::BOU_FALSE
);
763 // Determine an instruction selector.
764 enum class SelectorType
{ SelectionDAG
, FastISel
, GlobalISel
};
765 SelectorType Selector
;
767 if (EnableFastISelOption
== cl::BOU_TRUE
)
768 Selector
= SelectorType::FastISel
;
769 else if (EnableGlobalISelOption
== cl::BOU_TRUE
||
770 (TM
->Options
.EnableGlobalISel
&&
771 EnableGlobalISelOption
!= cl::BOU_FALSE
))
772 Selector
= SelectorType::GlobalISel
;
773 else if (TM
->getOptLevel() == CodeGenOpt::None
&& TM
->getO0WantsFastISel())
774 Selector
= SelectorType::FastISel
;
776 Selector
= SelectorType::SelectionDAG
;
778 // Set consistently TM->Options.EnableFastISel and EnableGlobalISel.
779 if (Selector
== SelectorType::FastISel
) {
780 TM
->setFastISel(true);
781 TM
->setGlobalISel(false);
782 } else if (Selector
== SelectorType::GlobalISel
) {
783 TM
->setFastISel(false);
784 TM
->setGlobalISel(true);
787 // Add instruction selector passes.
788 if (Selector
== SelectorType::GlobalISel
) {
789 SaveAndRestore
<bool> SavedAddingMachinePasses(AddingMachinePasses
, true);
790 if (addIRTranslator())
793 addPreLegalizeMachineIR();
795 if (addLegalizeMachineIR())
798 // Before running the register bank selector, ask the target if it
799 // wants to run some passes.
800 addPreRegBankSelect();
802 if (addRegBankSelect())
805 addPreGlobalInstructionSelect();
807 if (addGlobalInstructionSelect())
810 // Pass to reset the MachineFunction if the ISel failed.
811 addPass(createResetMachineFunctionPass(
812 reportDiagnosticWhenGlobalISelFallback(), isGlobalISelAbortEnabled()));
814 // Provide a fallback path when we do not want to abort on
815 // not-yet-supported input.
816 if (!isGlobalISelAbortEnabled() && addInstSelector())
819 } else if (addInstSelector())
822 // Expand pseudo-instructions emitted by ISel. Don't run the verifier before
824 addPass(&FinalizeISelID
);
826 // Print the instruction selected machine code...
827 printAndVerify("After Instruction Selection");
832 bool TargetPassConfig::addISelPasses() {
833 if (TM
->useEmulatedTLS())
834 addPass(createLowerEmuTLSPass());
836 addPass(createPreISelIntrinsicLoweringPass());
837 addPass(createTargetTransformInfoWrapperPass(TM
->getTargetIRAnalysis()));
840 addPassesToHandleExceptions();
843 return addCoreISelPasses();
846 /// -regalloc=... command line option.
847 static FunctionPass
*useDefaultRegisterAllocator() { return nullptr; }
848 static cl::opt
<RegisterRegAlloc::FunctionPassCtor
, false,
849 RegisterPassParser
<RegisterRegAlloc
>>
850 RegAlloc("regalloc", cl::Hidden
, cl::init(&useDefaultRegisterAllocator
),
851 cl::desc("Register allocator to use"));
853 /// Add the complete set of target-independent postISel code generator passes.
855 /// This can be read as the standard order of major LLVM CodeGen stages. Stages
856 /// with nontrivial configuration or multiple passes are broken out below in
857 /// add%Stage routines.
859 /// Any TargetPassConfig::addXX routine may be overriden by the Target. The
860 /// addPre/Post methods with empty header implementations allow injecting
861 /// target-specific fixups just before or after major stages. Additionally,
862 /// targets have the flexibility to change pass order within a stage by
863 /// overriding default implementation of add%Stage routines below. Each
864 /// technique has maintainability tradeoffs because alternate pass orders are
865 /// not well supported. addPre/Post works better if the target pass is easily
866 /// tied to a common pass. But if it has subtle dependencies on multiple passes,
867 /// the target should override the stage instead.
869 /// TODO: We could use a single addPre/Post(ID) hook to allow pass injection
870 /// before/after any target-independent pass. But it's currently overkill.
871 void TargetPassConfig::addMachinePasses() {
872 AddingMachinePasses
= true;
874 // Insert a machine instr printer pass after the specified pass.
875 StringRef PrintMachineInstrsPassName
= PrintMachineInstrs
.getValue();
876 if (!PrintMachineInstrsPassName
.equals("") &&
877 !PrintMachineInstrsPassName
.equals("option-unspecified")) {
878 if (const PassInfo
*TPI
= getPassInfo(PrintMachineInstrsPassName
)) {
879 const PassRegistry
*PR
= PassRegistry::getPassRegistry();
880 const PassInfo
*IPI
= PR
->getPassInfo(StringRef("machineinstr-printer"));
881 assert(IPI
&& "failed to get \"machineinstr-printer\" PassInfo!");
882 const char *TID
= (const char *)(TPI
->getTypeInfo());
883 const char *IID
= (const char *)(IPI
->getTypeInfo());
884 insertPass(TID
, IID
);
888 // Add passes that optimize machine instructions in SSA form.
889 if (getOptLevel() != CodeGenOpt::None
) {
890 addMachineSSAOptimization();
892 // If the target requests it, assign local variables to stack slots relative
893 // to one another and simplify frame index references where possible.
894 addPass(&LocalStackSlotAllocationID
, false);
897 if (TM
->Options
.EnableIPRA
)
898 addPass(createRegUsageInfoPropPass());
900 // Run pre-ra passes.
903 // Run register allocation and passes that are tightly coupled with it,
904 // including phi elimination and scheduling.
905 if (getOptimizeRegAlloc())
906 addOptimizedRegAlloc();
910 // Run post-ra passes.
913 // Insert prolog/epilog code. Eliminate abstract frame index references...
914 if (getOptLevel() != CodeGenOpt::None
) {
915 addPass(&PostRAMachineSinkingID
);
916 addPass(&ShrinkWrapID
);
919 // Prolog/Epilog inserter needs a TargetMachine to instantiate. But only
920 // do so if it hasn't been disabled, substituted, or overridden.
921 if (!isPassSubstitutedOrOverridden(&PrologEpilogCodeInserterID
))
922 addPass(createPrologEpilogInserterPass());
924 /// Add passes that optimize machine instructions after register allocation.
925 if (getOptLevel() != CodeGenOpt::None
)
926 addMachineLateOptimization();
928 // Expand pseudo instructions before second scheduling pass.
929 addPass(&ExpandPostRAPseudosID
);
931 // Run pre-sched2 passes.
934 if (EnableImplicitNullChecks
)
935 addPass(&ImplicitNullChecksID
);
937 // Second pass scheduler.
938 // Let Target optionally insert this pass by itself at some other
940 if (getOptLevel() != CodeGenOpt::None
&&
941 !TM
->targetSchedulesPostRAScheduling()) {
943 addPass(&PostMachineSchedulerID
);
945 addPass(&PostRASchedulerID
);
951 addPass(createGCInfoPrinter(dbgs()), false, false);
954 // Basic block placement.
955 if (getOptLevel() != CodeGenOpt::None
)
960 if (TM
->Options
.EnableIPRA
)
961 // Collect register usage information and produce a register mask of
962 // clobbered registers, to be used to optimize call sites.
963 addPass(createRegUsageInfoCollector());
965 addPass(&FuncletLayoutID
, false);
967 addPass(&StackMapLivenessID
, false);
968 addPass(&LiveDebugValuesID
, false);
970 // Insert before XRay Instrumentation.
971 addPass(&FEntryInserterID
, false);
973 addPass(&XRayInstrumentationID
, false);
974 addPass(&PatchableFunctionID
, false);
976 if (TM
->Options
.EnableMachineOutliner
&& getOptLevel() != CodeGenOpt::None
&&
977 EnableMachineOutliner
!= NeverOutline
) {
978 bool RunOnAllFunctions
= (EnableMachineOutliner
== AlwaysOutline
);
979 bool AddOutliner
= RunOnAllFunctions
||
980 TM
->Options
.SupportsDefaultOutlining
;
982 addPass(createMachineOutlinerPass(RunOnAllFunctions
));
985 // Add passes that directly emit MI after all other MI passes.
988 AddingMachinePasses
= false;
991 /// Add passes that optimize machine instructions in SSA form.
992 void TargetPassConfig::addMachineSSAOptimization() {
993 // Pre-ra tail duplication.
994 addPass(&EarlyTailDuplicateID
);
996 // Optimize PHIs before DCE: removing dead PHI cycles may make more
997 // instructions dead.
998 addPass(&OptimizePHIsID
, false);
1000 // This pass merges large allocas. StackSlotColoring is a different pass
1001 // which merges spill slots.
1002 addPass(&StackColoringID
, false);
1004 // If the target requests it, assign local variables to stack slots relative
1005 // to one another and simplify frame index references where possible.
1006 addPass(&LocalStackSlotAllocationID
, false);
1008 // With optimization, dead code should already be eliminated. However
1009 // there is one known exception: lowered code for arguments that are only
1010 // used by tail calls, where the tail calls reuse the incoming stack
1011 // arguments directly (see t11 in test/CodeGen/X86/sibcall.ll).
1012 addPass(&DeadMachineInstructionElimID
);
1014 // Allow targets to insert passes that improve instruction level parallelism,
1015 // like if-conversion. Such passes will typically need dominator trees and
1016 // loop info, just like LICM and CSE below.
1019 addPass(&EarlyMachineLICMID
, false);
1020 addPass(&MachineCSEID
, false);
1022 addPass(&MachineSinkingID
);
1024 addPass(&PeepholeOptimizerID
);
1025 // Clean-up the dead code that may have been generated by peephole
1027 addPass(&DeadMachineInstructionElimID
);
1030 //===---------------------------------------------------------------------===//
1031 /// Register Allocation Pass Configuration
1032 //===---------------------------------------------------------------------===//
1034 bool TargetPassConfig::getOptimizeRegAlloc() const {
1035 switch (OptimizeRegAlloc
) {
1036 case cl::BOU_UNSET
: return getOptLevel() != CodeGenOpt::None
;
1037 case cl::BOU_TRUE
: return true;
1038 case cl::BOU_FALSE
: return false;
1040 llvm_unreachable("Invalid optimize-regalloc state");
1043 /// A dummy default pass factory indicates whether the register allocator is
1044 /// overridden on the command line.
1045 static llvm::once_flag InitializeDefaultRegisterAllocatorFlag
;
1047 static RegisterRegAlloc
1048 defaultRegAlloc("default",
1049 "pick register allocator based on -O option",
1050 useDefaultRegisterAllocator
);
1052 static void initializeDefaultRegisterAllocatorOnce() {
1053 if (!RegisterRegAlloc::getDefault())
1054 RegisterRegAlloc::setDefault(RegAlloc
);
1057 /// Instantiate the default register allocator pass for this target for either
1058 /// the optimized or unoptimized allocation path. This will be added to the pass
1059 /// manager by addFastRegAlloc in the unoptimized case or addOptimizedRegAlloc
1060 /// in the optimized case.
1062 /// A target that uses the standard regalloc pass order for fast or optimized
1063 /// allocation may still override this for per-target regalloc
1064 /// selection. But -regalloc=... always takes precedence.
1065 FunctionPass
*TargetPassConfig::createTargetRegisterAllocator(bool Optimized
) {
1067 return createGreedyRegisterAllocator();
1069 return createFastRegisterAllocator();
1072 /// Find and instantiate the register allocation pass requested by this target
1073 /// at the current optimization level. Different register allocators are
1074 /// defined as separate passes because they may require different analysis.
1076 /// This helper ensures that the regalloc= option is always available,
1077 /// even for targets that override the default allocator.
1079 /// FIXME: When MachinePassRegistry register pass IDs instead of function ptrs,
1080 /// this can be folded into addPass.
1081 FunctionPass
*TargetPassConfig::createRegAllocPass(bool Optimized
) {
1082 // Initialize the global default.
1083 llvm::call_once(InitializeDefaultRegisterAllocatorFlag
,
1084 initializeDefaultRegisterAllocatorOnce
);
1086 RegisterRegAlloc::FunctionPassCtor Ctor
= RegisterRegAlloc::getDefault();
1087 if (Ctor
!= useDefaultRegisterAllocator
)
1090 // With no -regalloc= override, ask the target for a regalloc pass.
1091 return createTargetRegisterAllocator(Optimized
);
1094 bool TargetPassConfig::addRegAssignmentFast() {
1095 if (RegAlloc
!= &useDefaultRegisterAllocator
&&
1096 RegAlloc
!= &createFastRegisterAllocator
)
1097 report_fatal_error("Must use fast (default) register allocator for unoptimized regalloc.");
1099 addPass(createRegAllocPass(false));
1103 bool TargetPassConfig::addRegAssignmentOptimized() {
1104 // Add the selected register allocation pass.
1105 addPass(createRegAllocPass(true));
1107 // Allow targets to change the register assignments before rewriting.
1110 // Finally rewrite virtual registers.
1111 addPass(&VirtRegRewriterID
);
1112 // Perform stack slot coloring and post-ra machine LICM.
1114 // FIXME: Re-enable coloring with register when it's capable of adding
1116 addPass(&StackSlotColoringID
);
1121 /// Return true if the default global register allocator is in use and
1122 /// has not be overriden on the command line with '-regalloc=...'
1123 bool TargetPassConfig::usingDefaultRegAlloc() const {
1124 return RegAlloc
.getNumOccurrences() == 0;
1127 /// Add the minimum set of target-independent passes that are required for
1128 /// register allocation. No coalescing or scheduling.
1129 void TargetPassConfig::addFastRegAlloc() {
1130 addPass(&PHIEliminationID
, false);
1131 addPass(&TwoAddressInstructionPassID
, false);
1133 addRegAssignmentFast();
1136 /// Add standard target-independent passes that are tightly coupled with
1137 /// optimized register allocation, including coalescing, machine instruction
1138 /// scheduling, and register allocation itself.
1139 void TargetPassConfig::addOptimizedRegAlloc() {
1140 addPass(&DetectDeadLanesID
, false);
1142 addPass(&ProcessImplicitDefsID
, false);
1144 // LiveVariables currently requires pure SSA form.
1146 // FIXME: Once TwoAddressInstruction pass no longer uses kill flags,
1147 // LiveVariables can be removed completely, and LiveIntervals can be directly
1148 // computed. (We still either need to regenerate kill flags after regalloc, or
1149 // preferably fix the scavenger to not depend on them).
1150 addPass(&LiveVariablesID
, false);
1152 // Edge splitting is smarter with machine loop info.
1153 addPass(&MachineLoopInfoID
, false);
1154 addPass(&PHIEliminationID
, false);
1156 // Eventually, we want to run LiveIntervals before PHI elimination.
1157 if (EarlyLiveIntervals
)
1158 addPass(&LiveIntervalsID
, false);
1160 addPass(&TwoAddressInstructionPassID
, false);
1161 addPass(&RegisterCoalescerID
);
1163 // The machine scheduler may accidentally create disconnected components
1164 // when moving subregister definitions around, avoid this by splitting them to
1165 // separate vregs before. Splitting can also improve reg. allocation quality.
1166 addPass(&RenameIndependentSubregsID
);
1168 // PreRA instruction scheduling.
1169 addPass(&MachineSchedulerID
);
1171 if (addRegAssignmentOptimized()) {
1172 // Allow targets to expand pseudo instructions depending on the choice of
1173 // registers before MachineCopyPropagation.
1176 // Copy propagate to forward register uses and try to eliminate COPYs that
1177 // were not coalesced.
1178 addPass(&MachineCopyPropagationID
);
1180 // Run post-ra machine LICM to hoist reloads / remats.
1182 // FIXME: can this move into MachineLateOptimization?
1183 addPass(&MachineLICMID
);
1187 //===---------------------------------------------------------------------===//
1188 /// Post RegAlloc Pass Configuration
1189 //===---------------------------------------------------------------------===//
1191 /// Add passes that optimize machine instructions after register allocation.
1192 void TargetPassConfig::addMachineLateOptimization() {
1193 // Branch folding must be run after regalloc and prolog/epilog insertion.
1194 addPass(&BranchFolderPassID
);
1196 // Tail duplication.
1197 // Note that duplicating tail just increases code size and degrades
1198 // performance for targets that require Structured Control Flow.
1199 // In addition it can also make CFG irreducible. Thus we disable it.
1200 if (!TM
->requiresStructuredCFG())
1201 addPass(&TailDuplicateID
);
1203 // Copy propagation.
1204 addPass(&MachineCopyPropagationID
);
1207 /// Add standard GC passes.
1208 bool TargetPassConfig::addGCPasses() {
1209 addPass(&GCMachineCodeAnalysisID
, false);
1213 /// Add standard basic block placement passes.
1214 void TargetPassConfig::addBlockPlacement() {
1215 if (addPass(&MachineBlockPlacementID
)) {
1216 // Run a separate pass to collect block placement statistics.
1217 if (EnableBlockPlacementStats
)
1218 addPass(&MachineBlockPlacementStatsID
);
1222 //===---------------------------------------------------------------------===//
1223 /// GlobalISel Configuration
1224 //===---------------------------------------------------------------------===//
1225 bool TargetPassConfig::isGlobalISelAbortEnabled() const {
1226 return TM
->Options
.GlobalISelAbort
== GlobalISelAbortMode::Enable
;
1229 bool TargetPassConfig::reportDiagnosticWhenGlobalISelFallback() const {
1230 return TM
->Options
.GlobalISelAbort
== GlobalISelAbortMode::DisableWithDiag
;
1233 bool TargetPassConfig::isGISelCSEEnabled() const {
1237 std::unique_ptr
<CSEConfigBase
> TargetPassConfig::getCSEConfig() const {
1238 return std::make_unique
<CSEConfigBase
>();