LLVM 19.0.0git
HexagonTargetMachine.cpp
Go to the documentation of this file.
1//===-- HexagonTargetMachine.cpp - Define TargetMachine for Hexagon -------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// Implements the info about Hexagon target spec.
10//
11//===----------------------------------------------------------------------===//
12
14#include "Hexagon.h"
15#include "HexagonISelLowering.h"
23#include "llvm/CodeGen/Passes.h"
26#include "llvm/IR/Module.h"
31#include <optional>
32
33using namespace llvm;
34
35static cl::opt<bool>
36 EnableCExtOpt("hexagon-cext", cl::Hidden, cl::init(true),
37 cl::desc("Enable Hexagon constant-extender optimization"));
38
40 cl::desc("Enable RDF-based optimizations"));
41
43 "rdf-bb-limit", cl::Hidden, cl::init(1000),
44 cl::desc("Basic block limit for a function for RDF optimizations"));
45
46static cl::opt<bool> DisableHardwareLoops("disable-hexagon-hwloops",
47 cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target"));
48
49static cl::opt<bool>
50 DisableAModeOpt("disable-hexagon-amodeopt", cl::Hidden,
51 cl::desc("Disable Hexagon Addressing Mode Optimization"));
52
53static cl::opt<bool>
54 DisableHexagonCFGOpt("disable-hexagon-cfgopt", cl::Hidden,
55 cl::desc("Disable Hexagon CFG Optimization"));
56
57static cl::opt<bool>
58 DisableHCP("disable-hcp", cl::Hidden,
59 cl::desc("Disable Hexagon constant propagation"));
60
61static cl::opt<bool> DisableStoreWidening("disable-store-widen",
62 cl::Hidden, cl::init(false), cl::desc("Disable store widening"));
63
64static cl::opt<bool> EnableExpandCondsets("hexagon-expand-condsets",
65 cl::init(true), cl::Hidden,
66 cl::desc("Early expansion of MUX"));
67
68static cl::opt<bool> EnableTfrCleanup("hexagon-tfr-cleanup", cl::init(true),
70 cl::desc("Cleanup of TFRs/COPYs"));
71
72static cl::opt<bool> EnableEarlyIf("hexagon-eif", cl::init(true), cl::Hidden,
73 cl::desc("Enable early if-conversion"));
74
75static cl::opt<bool> EnableGenInsert("hexagon-insert", cl::init(true),
76 cl::Hidden, cl::desc("Generate \"insert\" instructions"));
77
78static cl::opt<bool>
79 EnableCommGEP("hexagon-commgep", cl::init(true), cl::Hidden,
80 cl::desc("Enable commoning of GEP instructions"));
81
82static cl::opt<bool> EnableGenExtract("hexagon-extract", cl::init(true),
83 cl::Hidden, cl::desc("Generate \"extract\" instructions"));
84
85static cl::opt<bool> EnableGenMux("hexagon-mux", cl::init(true), cl::Hidden,
86 cl::desc("Enable converting conditional transfers into MUX instructions"));
87
88static cl::opt<bool> EnableGenPred("hexagon-gen-pred", cl::init(true),
89 cl::Hidden, cl::desc("Enable conversion of arithmetic operations to "
90 "predicate instructions"));
91
92static cl::opt<bool>
93 EnableLoopPrefetch("hexagon-loop-prefetch", cl::Hidden,
94 cl::desc("Enable loop data prefetch on Hexagon"));
95
96static cl::opt<bool> DisableHSDR("disable-hsdr", cl::init(false), cl::Hidden,
97 cl::desc("Disable splitting double registers"));
98
99static cl::opt<bool>
100 EnableGenMemAbs("hexagon-mem-abs", cl::init(true), cl::Hidden,
101 cl::desc("Generate absolute set instructions"));
102
103static cl::opt<bool> EnableBitSimplify("hexagon-bit", cl::init(true),
104 cl::Hidden, cl::desc("Bit simplification"));
105
106static cl::opt<bool> EnableLoopResched("hexagon-loop-resched", cl::init(true),
107 cl::Hidden, cl::desc("Loop rescheduling"));
108
109static cl::opt<bool> HexagonNoOpt("hexagon-noopt", cl::init(false),
110 cl::Hidden, cl::desc("Disable backend optimizations"));
111
112static cl::opt<bool>
113 EnableVectorPrint("enable-hexagon-vector-print", cl::Hidden,
114 cl::desc("Enable Hexagon Vector print instr pass"));
115
116static cl::opt<bool>
117 EnableVExtractOpt("hexagon-opt-vextract", cl::Hidden, cl::init(true),
118 cl::desc("Enable vextract optimization"));
119
120static cl::opt<bool>
121 EnableVectorCombine("hexagon-vector-combine", cl::Hidden, cl::init(true),
122 cl::desc("Enable HVX vector combining"));
123
125 "hexagon-initial-cfg-cleanup", cl::Hidden, cl::init(true),
126 cl::desc("Simplify the CFG after atomic expansion pass"));
127
128static cl::opt<bool> EnableInstSimplify("hexagon-instsimplify", cl::Hidden,
129 cl::init(true),
130 cl::desc("Enable instsimplify"));
131
132/// HexagonTargetMachineModule - Note that this is used on hosts that
133/// cannot link in a library unless there are references into the
134/// library. In particular, it seems that it is not possible to get
135/// things to work on Win32 without this. Though it is unused, do not
136/// remove it.
139
142 C, std::make_unique<HexagonConvergingVLIWScheduler>());
143 DAG->addMutation(std::make_unique<HexagonSubtarget::UsrOverflowMutation>());
144 DAG->addMutation(std::make_unique<HexagonSubtarget::HVXMemLatencyMutation>());
145 DAG->addMutation(std::make_unique<HexagonSubtarget::CallMutation>());
147 return DAG;
148}
149
151SchedCustomRegistry("hexagon", "Run Hexagon's custom scheduler",
153
154namespace llvm {
155 extern char &HexagonExpandCondsetsID;
156 extern char &HexagonTfrCleanupID;
179
197 CodeGenOptLevel OptLevel);
213} // end namespace llvm;
214
215static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
216 return RM.value_or(Reloc::Static);
217}
218
220 // Register the target.
222
242}
243
245 StringRef CPU, StringRef FS,
246 const TargetOptions &Options,
247 std::optional<Reloc::Model> RM,
248 std::optional<CodeModel::Model> CM,
249 CodeGenOptLevel OL, bool JIT)
250 // Specify the vector alignment explicitly. For v512x1, the calculated
251 // alignment would be 512*alignment(i1), which is 512 bytes, instead of
252 // the required minimum of 64 bytes.
254 T,
255 "e-m:e-p:32:32:32-a:0-n16:32-"
256 "i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-"
257 "v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048",
258 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
259 getEffectiveCodeModel(CM, CodeModel::Small),
261 TLOF(std::make_unique<HexagonTargetObjectFile>()),
262 Subtarget(Triple(TT), CPU, FS, *this) {
266 initAsmInfo();
267}
268
269const HexagonSubtarget *
271 AttributeList FnAttrs = F.getAttributes();
272 Attribute CPUAttr =
273 FnAttrs.getFnAttr("target-cpu");
274 Attribute FSAttr =
275 FnAttrs.getFnAttr("target-features");
276
277 std::string CPU =
278 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
279 std::string FS =
280 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
281 // Append the preexisting target features last, so that +mattr overrides
282 // the "unsafe-fp-math" function attribute.
283 // Creating a separate target feature is not strictly necessary, it only
284 // exists to make "unsafe-fp-math" force creating a new subtarget.
285
286 if (F.getFnAttribute("unsafe-fp-math").getValueAsBool())
287 FS = FS.empty() ? "+unsafe-fp" : "+unsafe-fp," + FS;
288
289 auto &I = SubtargetMap[CPU + FS];
290 if (!I) {
291 // This needs to be done before we create a new subtarget since any
292 // creation will depend on the TM and the code generation flags on the
293 // function that reside in TargetOptions.
295 I = std::make_unique<HexagonSubtarget>(TargetTriple, CPU, FS, *this);
296 }
297 return I.get();
298}
299
301 PassBuilder &PB, bool PopulateClassToPassNames) {
302#define GET_PASS_REGISTRY "HexagonPassRegistry.def"
304
306 [=](LoopPassManager &LPM, OptimizationLevel Level) {
308 });
310 [=](LoopPassManager &LPM, OptimizationLevel Level) {
312 });
313}
314
317 return TargetTransformInfo(HexagonTTIImpl(this, F));
318}
319
321 BumpPtrAllocator &Allocator, const Function &F,
322 const TargetSubtargetInfo *STI) const {
323 return HexagonMachineFunctionInfo::create<HexagonMachineFunctionInfo>(
324 Allocator, F, STI);
325}
326
328
329namespace {
330/// Hexagon Code Generator Pass Configuration Options.
331class HexagonPassConfig : public TargetPassConfig {
332public:
333 HexagonPassConfig(HexagonTargetMachine &TM, PassManagerBase &PM)
334 : TargetPassConfig(TM, PM) {}
335
336 HexagonTargetMachine &getHexagonTargetMachine() const {
337 return getTM<HexagonTargetMachine>();
338 }
339
341 createMachineScheduler(MachineSchedContext *C) const override {
343 }
344
345 void addIRPasses() override;
346 bool addInstSelector() override;
347 void addPreRegAlloc() override;
348 void addPostRegAlloc() override;
349 void addPreSched2() override;
350 void addPreEmitPass() override;
351};
352} // namespace
353
355 return new HexagonPassConfig(*this, PM);
356}
357
358void HexagonPassConfig::addIRPasses() {
360 bool NoOpt = (getOptLevel() == CodeGenOptLevel::None);
361
362 if (!NoOpt) {
366 }
367
369
370 if (!NoOpt) {
373 .forwardSwitchCondToPhi(true)
374 .convertSwitchRangeToICmp(true)
375 .convertSwitchToLookupTable(true)
376 .needCanonicalLoops(false)
377 .hoistCommonInsts(true)
378 .sinkCommonInsts(true)));
383 if (EnableCommGEP)
384 addPass(createHexagonCommonGEP());
385 // Replace certain combinations of shifts and ands with extracts.
387 addPass(createHexagonGenExtract());
388 }
389}
390
391bool HexagonPassConfig::addInstSelector() {
392 HexagonTargetMachine &TM = getHexagonTargetMachine();
393 bool NoOpt = (getOptLevel() == CodeGenOptLevel::None);
394
395 if (!NoOpt)
397
398 addPass(createHexagonISelDag(TM, getOptLevel()));
399
400 if (!NoOpt) {
402 addPass(createHexagonVExtract());
403 // Create logical operations on predicate registers.
404 if (EnableGenPred)
405 addPass(createHexagonGenPredicate());
406 // Rotate loops to expose bit-simplification opportunities.
409 // Split double registers.
410 if (!DisableHSDR)
412 // Bit simplification.
414 addPass(createHexagonBitSimplify());
415 addPass(createHexagonPeephole());
416 // Constant propagation.
417 if (!DisableHCP) {
420 }
421 if (EnableGenInsert)
422 addPass(createHexagonGenInsert());
423 if (EnableEarlyIf)
425 }
426
427 return false;
428}
429
430void HexagonPassConfig::addPreRegAlloc() {
431 if (getOptLevel() != CodeGenOptLevel::None) {
432 if (EnableCExtOpt)
440 if (EnableGenMemAbs)
444 }
445 if (TM->getOptLevel() >= CodeGenOptLevel::Default)
446 addPass(&MachinePipelinerID);
447}
448
449void HexagonPassConfig::addPostRegAlloc() {
450 if (getOptLevel() != CodeGenOptLevel::None) {
451 if (EnableRDFOpt)
452 addPass(createHexagonRDFOpt());
454 addPass(createHexagonCFGOptimizer());
455 if (!DisableAModeOpt)
456 addPass(createHexagonOptAddrMode());
457 }
458}
459
460void HexagonPassConfig::addPreSched2() {
462 if (getOptLevel() != CodeGenOptLevel::None)
463 addPass(&IfConverterID);
465}
466
467void HexagonPassConfig::addPreEmitPass() {
468 bool NoOpt = (getOptLevel() == CodeGenOptLevel::None);
469
470 if (!NoOpt)
471 addPass(createHexagonNewValueJump());
472
474
475 if (!NoOpt) {
477 addPass(createHexagonFixupHwLoops());
478 // Generate MUX from pairs of conditional transfers.
479 if (EnableGenMux)
480 addPass(createHexagonGenMux());
481 }
482
483 // Packetization is mandatory: it handles gather/scatter at all opt levels.
484 addPass(createHexagonPacketizer(NoOpt));
485
486 if (!NoOpt)
487 addPass(createHexagonLoopAlign());
488
490 addPass(createHexagonVectorPrint());
491
492 // Add CFI instructions if necessary.
494}
static cl::opt< bool > EnableLoopPrefetch("amdgpu-loop-prefetch", cl::desc("Enable loop data prefetch on AMDGPU"), cl::Hidden, cl::init(false))
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static cl::opt< bool > EnableExpandCondsets("hexagon-expand-condsets", cl::init(true), cl::Hidden, cl::desc("Early expansion of MUX"))
static cl::opt< bool > HexagonNoOpt("hexagon-noopt", cl::init(false), cl::Hidden, cl::desc("Disable backend optimizations"))
static cl::opt< bool > EnableGenExtract("hexagon-extract", cl::init(true), cl::Hidden, cl::desc("Generate \"extract\" instructions"))
static cl::opt< bool > EnableVectorCombine("hexagon-vector-combine", cl::Hidden, cl::init(true), cl::desc("Enable HVX vector combining"))
static cl::opt< bool > EnableGenMux("hexagon-mux", cl::init(true), cl::Hidden, cl::desc("Enable converting conditional transfers into MUX instructions"))
static cl::opt< bool > DisableHexagonCFGOpt("disable-hexagon-cfgopt", cl::Hidden, cl::desc("Disable Hexagon CFG Optimization"))
static cl::opt< bool > DisableAModeOpt("disable-hexagon-amodeopt", cl::Hidden, cl::desc("Disable Hexagon Addressing Mode Optimization"))
static cl::opt< bool > DisableHCP("disable-hcp", cl::Hidden, cl::desc("Disable Hexagon constant propagation"))
static cl::opt< bool > DisableStoreWidening("disable-store-widen", cl::Hidden, cl::init(false), cl::desc("Disable store widening"))
static cl::opt< bool > EnableBitSimplify("hexagon-bit", cl::init(true), cl::Hidden, cl::desc("Bit simplification"))
static cl::opt< bool > EnableVectorPrint("enable-hexagon-vector-print", cl::Hidden, cl::desc("Enable Hexagon Vector print instr pass"))
static MachineSchedRegistry SchedCustomRegistry("hexagon", "Run Hexagon's custom scheduler", createVLIWMachineSched)
static cl::opt< bool > DisableHardwareLoops("disable-hexagon-hwloops", cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target"))
static cl::opt< bool > EnableGenPred("hexagon-gen-pred", cl::init(true), cl::Hidden, cl::desc("Enable conversion of arithmetic operations to " "predicate instructions"))
static cl::opt< bool > EnableGenMemAbs("hexagon-mem-abs", cl::init(true), cl::Hidden, cl::desc("Generate absolute set instructions"))
static cl::opt< bool > EnableVExtractOpt("hexagon-opt-vextract", cl::Hidden, cl::init(true), cl::desc("Enable vextract optimization"))
static cl::opt< bool > EnableInstSimplify("hexagon-instsimplify", cl::Hidden, cl::init(true), cl::desc("Enable instsimplify"))
static cl::opt< bool > EnableRDFOpt("rdf-opt", cl::Hidden, cl::init(true), cl::desc("Enable RDF-based optimizations"))
static cl::opt< bool > EnableCExtOpt("hexagon-cext", cl::Hidden, cl::init(true), cl::desc("Enable Hexagon constant-extender optimization"))
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
int HexagonTargetMachineModule
HexagonTargetMachineModule - Note that this is used on hosts that cannot link in a library unless the...
static cl::opt< bool > EnableLoopResched("hexagon-loop-resched", cl::init(true), cl::Hidden, cl::desc("Loop rescheduling"))
static ScheduleDAGInstrs * createVLIWMachineSched(MachineSchedContext *C)
static cl::opt< bool > EnableTfrCleanup("hexagon-tfr-cleanup", cl::init(true), cl::Hidden, cl::desc("Cleanup of TFRs/COPYs"))
static cl::opt< bool > DisableHSDR("disable-hsdr", cl::init(false), cl::Hidden, cl::desc("Disable splitting double registers"))
static cl::opt< bool > EnableInitialCFGCleanup("hexagon-initial-cfg-cleanup", cl::Hidden, cl::init(true), cl::desc("Simplify the CFG after atomic expansion pass"))
cl::opt< unsigned > RDFFuncBlockLimit("rdf-bb-limit", cl::Hidden, cl::init(1000), cl::desc("Basic block limit for a function for RDF optimizations"))
static cl::opt< bool > EnableLoopPrefetch("hexagon-loop-prefetch", cl::Hidden, cl::desc("Enable loop data prefetch on Hexagon"))
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeHexagonTarget()
static cl::opt< bool > EnableGenInsert("hexagon-insert", cl::init(true), cl::Hidden, cl::desc("Generate \"insert\" instructions"))
static cl::opt< bool > EnableCommGEP("hexagon-commgep", cl::init(true), cl::Hidden, cl::desc("Enable commoning of GEP instructions"))
static cl::opt< bool > EnableEarlyIf("hexagon-eif", cl::init(true), cl::Hidden, cl::desc("Enable early if-conversion"))
This file implements a TargetTransformInfo analysis pass specific to the Hexagon target machine.
static LVOptions Options
Definition: LVOptions.cpp:25
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
Module.h This file contains the declarations for the Module class.
const char LLVMTargetMachineRef TM
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
Basic Register Allocator
Target-Independent Code Generator Pass Configuration Options pass.
@ None
Attribute getFnAttr(Attribute::AttrKind Kind) const
Return the attribute object that exists for the function.
Definition: Attributes.h:842
StringRef getValueAsString() const
Return the attribute's value as a string.
Definition: Attributes.cpp:349
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition: Attributes.h:193
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
FunctionPass class - This class is used to implement most global optimizations.
Definition: Pass.h:311
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
HexagonTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, std::optional< Reloc::Model > RM, std::optional< CodeModel::Model > CM, CodeGenOptLevel OL, bool JIT)
void registerPassBuilderCallbacks(PassBuilder &PB, bool PopulateClassToPassNames) override
Allow the target to modify the pass pipeline.
const HexagonSubtarget * getSubtargetImpl(const Function &F) const override
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
This class describes a target machine that is implemented with the LLVM target-independent code gener...
MachineSchedRegistry provides a selection of available machine instruction schedulers.
This class provides access to building LLVM's passes.
Definition: PassBuilder.h:104
void registerLateLoopOptimizationsEPCallback(const std::function< void(LoopPassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:414
void registerLoopOptimizerEndEPCallback(const std::function< void(LoopPassManager &, OptimizationLevel)> &C)
Register a callback for a default optimizer pipeline extension point.
Definition: PassBuilder.h:424
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t< is_detected< HasRunOnLoopT, PassT >::value > addPass(PassT &&Pass)
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
Definition: PassRegistry.h:37
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
Pass interface - Implemented by all 'passes'.
Definition: Pass.h:94
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
void addMutation(std::unique_ptr< ScheduleDAGMutation > Mutation)
Add a postprocessing step to the DAG builder.
const TargetInstrInfo * TII
Target instruction information.
Definition: ScheduleDAG.h:557
const TargetRegisterInfo * TRI
Target processor register info.
Definition: ScheduleDAG.h:558
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
std::string str() const
str - Get the contents as an std::string.
Definition: StringRef.h:222
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
Definition: TargetMachine.h:95
std::string TargetFS
Definition: TargetMachine.h:97
std::string TargetCPU
Definition: TargetMachine.h:96
std::unique_ptr< const MCSubtargetInfo > STI
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
Target-Independent Code Generator Pass Configuration Options.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
TargetSubtargetInfo - Generic base class for all target subtargets.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
Extend the standard ScheduleDAGMILive to provide more context and override the top-level schedule() d...
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
Interfaces for registering analysis passes, producing common pass manager configurations,...
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
FunctionPass * createHexagonVectorPrint()
FunctionPass * createHexagonVectorCombineLegacyPass()
void initializeHexagonOptAddrModePass(PassRegistry &)
FunctionPass * createCFGSimplificationPass(SimplifyCFGOptions Options=SimplifyCFGOptions(), std::function< bool(const Function &)> Ftor=nullptr)
void initializeHexagonNewValueJumpPass(PassRegistry &)
char & HexagonTfrCleanupID
FunctionPass * createHexagonCFGOptimizer()
void initializeHexagonVectorLoopCarriedReuseLegacyPassPass(PassRegistry &)
char & RegisterCoalescerID
RegisterCoalescer - This pass merges live ranges to eliminate copies.
void initializeHexagonSplitDoubleRegsPass(PassRegistry &)
FunctionPass * createDeadCodeEliminationPass()
Definition: DCE.cpp:145
Pass * createHexagonLoopIdiomPass()
FunctionPass * createHexagonNewValueJump()
void initializeHexagonRDFOptPass(PassRegistry &)
FunctionPass * createHexagonBranchRelaxation()
FunctionPass * createHexagonLoopAlign()
void initializeHexagonGenMemAbsolutePass(PassRegistry &Registry)
FunctionPass * createHexagonBitSimplify()
FunctionPass * createHexagonPeephole()
FunctionPass * createHexagonConstExtenders()
FunctionPass * createHexagonConstPropagationPass()
FunctionPass * createHexagonFixupHwLoops()
void initializeHexagonDAGToDAGISelPass(PassRegistry &)
Target & getTheHexagonTarget()
void initializeHexagonExpandCondsetsPass(PassRegistry &)
void initializeHexagonPacketizerPass(PassRegistry &)
FunctionPass * createHexagonPacketizer(bool Minimal)
void initializeHexagonBitSimplifyPass(PassRegistry &Registry)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
FunctionPass * createHexagonGenMux()
FunctionPass * createHexagonGenExtract()
FunctionPass * createHexagonEarlyIfConversion()
FunctionPass * createLoopDataPrefetchPass()
FunctionPass * createHexagonCallFrameInformation()
void initializeHexagonTfrCleanupPass(PassRegistry &)
FunctionPass * createHexagonVExtract()
FunctionPass * createHexagonGenPredicate()
void initializeHexagonVectorCombineLegacyPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
FunctionPass * createHexagonGenInsert()
FunctionPass * createHexagonOptimizeSZextends()
FunctionPass * createHexagonLoopRescheduling()
void initializeHexagonEarlyIfConversionPass(PassRegistry &Registry)
FunctionPass * createHexagonSplitConst32AndConst64()
FunctionPass * createHexagonCopyToCombine()
char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
FunctionPass * createHexagonCommonGEP()
FunctionPass * createHexagonISelDag(HexagonTargetMachine &TM, CodeGenOptLevel OptLevel)
createHexagonISelDag - This pass converts a legalized DAG into a Hexagon-specific DAG,...
char & HexagonExpandCondsetsID
FunctionPass * createHexagonOptAddrMode()
void initializeHexagonCopyToCombinePass(PassRegistry &)
FunctionPass * createHexagonGenMemAbsolute()
void initializeHexagonLoopIdiomRecognizeLegacyPassPass(PassRegistry &)
char & VirtRegRewriterID
VirtRegRewriter pass.
Definition: VirtRegMap.cpp:227
FunctionPass * createHexagonTfrCleanup()
FunctionPass * createHexagonSplitDoubleRegs()
FunctionPass * createHexagonHardwareLoops()
void initializeHexagonConstPropagationPass(PassRegistry &Registry)
char & IfConverterID
IfConverter - This pass performs machine code if conversion.
Pass * createHexagonVectorLoopCarriedReuseLegacyPass()
char & UnreachableMachineBlockElimID
UnreachableMachineBlockElimination - This pass removes unreachable machine basic blocks.
FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
void initializeHexagonConstExtendersPass(PassRegistry &)
FunctionPass * createHexagonStoreWidening()
void initializeHexagonGenMuxPass(PassRegistry &Registry)
std::unique_ptr< ScheduleDAGMutation > createCopyConstrainDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI)
void initializeHexagonLoopAlignPass(PassRegistry &)
void initializeHexagonHardwareLoopsPass(PassRegistry &)
FunctionPass * createHexagonRDFOpt()
FunctionPass * createInstSimplifyLegacyPass()
void initializeHexagonVExtractPass(PassRegistry &)
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
Hexagon Vector Loop Carried Reuse Pass.
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
RegisterTargetMachine - Helper template for registering a target machine implementation,...