LLVM 23.0.0git
AArch64TargetMachine.cpp
Go to the documentation of this file.
1//===-- AArch64TargetMachine.cpp - Define TargetMachine for AArch64 -------===//
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//
10//===----------------------------------------------------------------------===//
11
13#include "AArch64.h"
16#include "AArch64MacroFusion.h"
17#include "AArch64Subtarget.h"
34#include "llvm/CodeGen/Passes.h"
37#include "llvm/IR/Attributes.h"
38#include "llvm/IR/Function.h"
40#include "llvm/MC/MCAsmInfo.h"
43#include "llvm/Pass.h"
55#include <memory>
56
57using namespace llvm;
58
59static cl::opt<bool> EnableCCMP("aarch64-enable-ccmp",
60 cl::desc("Enable the CCMP formation pass"),
61 cl::init(true), cl::Hidden);
62
63static cl::opt<bool>
64 EnableCondBrTuning("aarch64-enable-cond-br-tune",
65 cl::desc("Enable the conditional branch tuning pass"),
66 cl::init(true), cl::Hidden);
67
69 "aarch64-enable-copy-propagation",
70 cl::desc("Enable the copy propagation with AArch64 copy instr"),
71 cl::init(true), cl::Hidden);
72
73static cl::opt<bool> EnableMCR("aarch64-enable-mcr",
74 cl::desc("Enable the machine combiner pass"),
75 cl::init(true), cl::Hidden);
76
77static cl::opt<bool> EnableStPairSuppress("aarch64-enable-stp-suppress",
78 cl::desc("Suppress STP for AArch64"),
79 cl::init(true), cl::Hidden);
80
82 "aarch64-enable-simd-scalar",
83 cl::desc("Enable use of AdvSIMD scalar integer instructions"),
84 cl::init(false), cl::Hidden);
85
86static cl::opt<bool>
87 EnablePromoteConstant("aarch64-enable-promote-const",
88 cl::desc("Enable the promote constant pass"),
89 cl::init(true), cl::Hidden);
90
92 "aarch64-enable-collect-loh",
93 cl::desc("Enable the pass that emits the linker optimization hints (LOH)"),
94 cl::init(true), cl::Hidden);
95
96static cl::opt<bool>
97 EnableDeadRegisterElimination("aarch64-enable-dead-defs", cl::Hidden,
98 cl::desc("Enable the pass that removes dead"
99 " definitions and replaces stores to"
100 " them with stores to the zero"
101 " register"),
102 cl::init(true));
103
105 "aarch64-enable-copyelim",
106 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
107 cl::Hidden);
108
109static cl::opt<bool> EnableLoadStoreOpt("aarch64-enable-ldst-opt",
110 cl::desc("Enable the load/store pair"
111 " optimization pass"),
112 cl::init(true), cl::Hidden);
113
115 "aarch64-enable-atomic-cfg-tidy", cl::Hidden,
116 cl::desc("Run SimplifyCFG after expanding atomic operations"
117 " to make use of cmpxchg flow-based information"),
118 cl::init(true));
119
120static cl::opt<bool>
121EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden,
122 cl::desc("Run early if-conversion"),
123 cl::init(true));
124
125static cl::opt<bool>
126 EnableCondOpt("aarch64-enable-condopt",
127 cl::desc("Enable the condition optimizer pass"),
128 cl::init(true), cl::Hidden);
129
130static cl::opt<bool>
131 EnableGEPOpt("aarch64-enable-gep-opt", cl::Hidden,
132 cl::desc("Enable optimizations on complex GEPs"),
133 cl::init(false));
134
135static cl::opt<bool>
136 EnableSelectOpt("aarch64-select-opt", cl::Hidden,
137 cl::desc("Enable select to branch optimizations"),
138 cl::init(true));
139
140static cl::opt<bool>
141 BranchRelaxation("aarch64-enable-branch-relax", cl::Hidden, cl::init(true),
142 cl::desc("Relax out of range conditional branches"));
143
145 "aarch64-enable-compress-jump-tables", cl::Hidden, cl::init(true),
146 cl::desc("Use smallest entry possible for jump tables"));
147
148// FIXME: Unify control over GlobalMerge.
150 EnableGlobalMerge("aarch64-enable-global-merge", cl::Hidden,
151 cl::desc("Enable the global merge pass"));
152
153static cl::opt<bool>
154 EnableLoopDataPrefetch("aarch64-enable-loop-data-prefetch", cl::Hidden,
155 cl::desc("Enable the loop data prefetch pass"),
156 cl::init(true));
157
159 "aarch64-enable-global-isel-at-O", cl::Hidden,
160 cl::desc("Enable GlobalISel at or below an opt level (-1 to disable)"),
161 cl::init(0));
162
163static cl::opt<bool>
164 EnableSVEIntrinsicOpts("aarch64-enable-sve-intrinsic-opts", cl::Hidden,
165 cl::desc("Enable SVE intrinsic opts"),
166 cl::init(true));
167
168static cl::opt<bool>
169 EnableSMEPeepholeOpt("enable-aarch64-sme-peephole-opt", cl::init(true),
171 cl::desc("Perform SME peephole optimization"));
172
173static cl::opt<bool> EnableFalkorHWPFFix("aarch64-enable-falkor-hwpf-fix",
174 cl::init(true), cl::Hidden);
175
176static cl::opt<bool>
177 EnableBranchTargets("aarch64-enable-branch-targets", cl::Hidden,
178 cl::desc("Enable the AArch64 branch target pass"),
179 cl::init(true));
180
182 "aarch64-sve-vector-bits-max",
183 cl::desc("Assume SVE vector registers are at most this big, "
184 "with zero meaning no maximum size is assumed."),
185 cl::init(0), cl::Hidden);
186
188 "aarch64-sve-vector-bits-min",
189 cl::desc("Assume SVE vector registers are at least this big, "
190 "with zero meaning no minimum size is assumed."),
191 cl::init(0), cl::Hidden);
192
194 "force-streaming",
195 cl::desc("Force the use of streaming code for all functions"),
196 cl::init(false), cl::Hidden);
197
199 "force-streaming-compatible",
200 cl::desc("Force the use of streaming-compatible code for all functions"),
201 cl::init(false), cl::Hidden);
202
204
206 "aarch64-enable-gisel-ldst-prelegal",
207 cl::desc("Enable GlobalISel's pre-legalizer load/store optimization pass"),
208 cl::init(true), cl::Hidden);
209
211 "aarch64-enable-gisel-ldst-postlegal",
212 cl::desc("Enable GlobalISel's post-legalizer load/store optimization pass"),
213 cl::init(false), cl::Hidden);
214
215static cl::opt<bool>
216 EnableSinkFold("aarch64-enable-sink-fold",
217 cl::desc("Enable sinking and folding of instruction copies"),
218 cl::init(true), cl::Hidden);
219
220static cl::opt<bool>
221 EnableMachinePipeliner("aarch64-enable-pipeliner",
222 cl::desc("Enable Machine Pipeliner for AArch64"),
223 cl::init(false), cl::Hidden);
224
225static cl::opt<bool>
226 EnableNewSMEABILowering("aarch64-new-sme-abi",
227 cl::desc("Enable new lowering for the SME ABI"),
228 cl::init(true), cl::Hidden);
229
231 "aarch64-srlt-mitigate-sr2r",
232 cl::desc("Enable SUBREG_TO_REG mitigation by adding 'implicit-def' for "
233 "super-regs when using Subreg Liveness Tracking"),
234 cl::init(true), cl::Hidden);
235
238 // Register the target.
244 auto &PR = *PassRegistry::getPassRegistry();
288}
289
291
292//===----------------------------------------------------------------------===//
293// AArch64 Lowering public interface.
294//===----------------------------------------------------------------------===//
295static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
296 if (TT.isOSBinFormatMachO())
297 return std::make_unique<AArch64_MachoTargetObjectFile>();
298 if (TT.isOSBinFormatCOFF())
299 return std::make_unique<AArch64_COFFTargetObjectFile>();
300
301 return std::make_unique<AArch64_ELFTargetObjectFile>();
302}
303
305 if (CPU.empty() && TT.isArm64e())
306 return "apple-a12";
307 return CPU;
308}
309
311 std::optional<Reloc::Model> RM) {
312 // AArch64 Darwin and Windows are always PIC.
313 if (TT.isOSDarwin() || TT.isOSWindows())
314 return Reloc::PIC_;
315 // On ELF platforms the default static relocation model has a smart enough
316 // linker to cope with referencing external symbols defined in a shared
317 // library. Hence DynamicNoPIC doesn't need to be promoted to PIC.
318 if (!RM || *RM == Reloc::DynamicNoPIC)
319 return Reloc::Static;
320 return *RM;
321}
322
323static CodeModel::Model
325 std::optional<CodeModel::Model> CM, bool JIT) {
326 if (CM) {
327 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny &&
328 *CM != CodeModel::Large) {
330 "Only small, tiny and large code models are allowed on AArch64");
331 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) {
332 report_fatal_error("tiny code model is only supported on ELF");
333 }
334 return *CM;
335 }
336 // The default MCJIT memory managers make no guarantees about where they can
337 // find an executable page; JITed code needs to be able to refer to globals
338 // no matter how far away they are.
339 // We should set the CodeModel::Small for Windows ARM64 in JIT mode,
340 // since with large code model LLVM generating 4 MOV instructions, and
341 // Windows doesn't support relocating these long branch (4 MOVs).
342 if (JIT && !TT.isOSWindows())
343 return CodeModel::Large;
344 return CodeModel::Small;
345}
346
347/// Create an AArch64 architecture model.
348///
350 StringRef CPU, StringRef FS,
351 const TargetOptions &Options,
352 std::optional<Reloc::Model> RM,
353 std::optional<CodeModel::Model> CM,
354 CodeGenOptLevel OL, bool JIT,
355 bool LittleEndian)
356 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT,
357 computeDefaultCPU(TT, CPU), FS, Options,
359 getEffectiveAArch64CodeModel(TT, CM, JIT), OL),
360 TLOF(createTLOF(getTargetTriple())), isLittle(LittleEndian),
361 UseNewSMEABILowering(EnableNewSMEABILowering) {
362 initAsmInfo();
363
364 if (TT.isOSBinFormatMachO()) {
365 this->Options.TrapUnreachable = true;
366 this->Options.NoTrapAfterNoreturn = true;
367 }
368
369 if (getMCAsmInfo()->usesWindowsCFI()) {
370 // Unwinding can get confused if the last instruction in an
371 // exception-handling region (function, funclet, try block, etc.)
372 // is a call.
373 //
374 // FIXME: We could elide the trap if the next instruction would be in
375 // the same region anyway.
376 this->Options.TrapUnreachable = true;
377 }
378
379 if (this->Options.TLSSize == 0) // default
380 this->Options.TLSSize = 24;
381 if ((getCodeModel() == CodeModel::Small ||
383 this->Options.TLSSize > 32)
384 // for the small (and kernel) code model, the maximum TLS size is 4GiB
385 this->Options.TLSSize = 32;
386 else if (getCodeModel() == CodeModel::Tiny && this->Options.TLSSize > 24)
387 // for the tiny code model, the maximum TLS size is 1MiB (< 16MiB)
388 this->Options.TLSSize = 24;
389
390 // Enable GlobalISel at or below EnableGlobalISelAt0, unless this is
391 // MachO/CodeModel::Large, which GlobalISel does not support.
392 if (static_cast<int>(getOptLevel()) <= EnableGlobalISelAtO &&
393 TT.getArch() != Triple::aarch64_32 &&
394 TT.getEnvironment() != Triple::GNUILP32 &&
395 !(getCodeModel() == CodeModel::Large && TT.isOSBinFormatMachO())) {
396 setGlobalISel(true);
398 }
399
400 // AArch64 supports the MachineOutliner.
401 setMachineOutliner(true);
402
403 // AArch64 supports default outlining behaviour.
405
406 // AArch64 supports the debug entry values.
408
409 // AArch64 supports fixing up the DWARF unwind information.
410 if (!getMCAsmInfo()->usesWindowsCFI())
411 setCFIFixup(true);
412}
413
415
416const AArch64Subtarget *
418 Attribute CPUAttr = F.getFnAttribute("target-cpu");
419 Attribute TuneAttr = F.getFnAttribute("tune-cpu");
420 Attribute FSAttr = F.getFnAttribute("target-features");
421
422 StringRef CPU = CPUAttr.isValid() ? CPUAttr.getValueAsString() : TargetCPU;
423 StringRef TuneCPU = TuneAttr.isValid() ? TuneAttr.getValueAsString() : CPU;
424 StringRef FS = FSAttr.isValid() ? FSAttr.getValueAsString() : TargetFS;
425 bool HasMinSize = F.hasMinSize();
426
427 bool IsStreaming = ForceStreaming ||
428 F.hasFnAttribute("aarch64_pstate_sm_enabled") ||
429 F.hasFnAttribute("aarch64_pstate_sm_body");
430 bool IsStreamingCompatible = ForceStreamingCompatible ||
431 F.hasFnAttribute("aarch64_pstate_sm_compatible");
432
433 unsigned MinSVEVectorSize = 0;
434 unsigned MaxSVEVectorSize = 0;
435 if (F.hasFnAttribute(Attribute::VScaleRange)) {
436 ConstantRange CR = getVScaleRange(&F, 64);
437 MinSVEVectorSize = CR.getUnsignedMin().getZExtValue() * 128;
438 MaxSVEVectorSize = CR.getUnsignedMax().getZExtValue() * 128;
439 } else {
440 MinSVEVectorSize = SVEVectorBitsMinOpt;
441 MaxSVEVectorSize = SVEVectorBitsMaxOpt;
442 }
443
444 assert(MinSVEVectorSize % 128 == 0 &&
445 "SVE requires vector length in multiples of 128!");
446 assert(MaxSVEVectorSize % 128 == 0 &&
447 "SVE requires vector length in multiples of 128!");
448 assert((MaxSVEVectorSize >= MinSVEVectorSize || MaxSVEVectorSize == 0) &&
449 "Minimum SVE vector size should not be larger than its maximum!");
450
451 // Sanitize user input in case of no asserts
452 if (MaxSVEVectorSize != 0) {
453 MinSVEVectorSize = std::min(MinSVEVectorSize, MaxSVEVectorSize);
454 MaxSVEVectorSize = std::max(MinSVEVectorSize, MaxSVEVectorSize);
455 }
456
458 raw_svector_ostream(Key) << "SVEMin" << MinSVEVectorSize << "SVEMax"
459 << MaxSVEVectorSize << "IsStreaming=" << IsStreaming
460 << "IsStreamingCompatible=" << IsStreamingCompatible
461 << CPU << TuneCPU << FS
462 << "HasMinSize=" << HasMinSize;
463
464 auto &I = SubtargetMap[Key];
465 if (!I) {
466 // This needs to be done before we create a new subtarget since any
467 // creation will depend on the TM and the code generation flags on the
468 // function that reside in TargetOptions.
470 I = std::make_unique<AArch64Subtarget>(
471 TargetTriple, CPU, TuneCPU, FS, *this, isLittle, MinSVEVectorSize,
472 MaxSVEVectorSize, IsStreaming, IsStreamingCompatible, HasMinSize,
474 }
475
476 if (IsStreaming && !I->hasSME())
477 reportFatalUsageError("streaming SVE functions require SME");
478
479 return I.get();
480}
481
484 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
486 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
487 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
488 if (ST.hasFusion())
489 DAG->addMutation(createAArch64MacroFusionDAGMutation());
490 return DAG;
491}
492
495 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
497 if (ST.hasFusion()) {
498 // Run the Macro Fusion after RA again since literals are expanded from
499 // pseudos then (v. addPreSched2()).
500 DAG->addMutation(createAArch64MacroFusionDAGMutation());
501 return DAG;
502 }
503
504 return DAG;
505}
506
508 const SmallPtrSetImpl<MachineInstr *> &MIs) const {
509 if (MIs.empty())
510 return 0;
511 auto *MI = *MIs.begin();
512 auto *FuncInfo = MI->getMF()->getInfo<AArch64FunctionInfo>();
513 return FuncInfo->clearLinkerOptimizationHints(MIs);
514}
515
516void AArch64leTargetMachine::anchor() { }
517
519 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
520 const TargetOptions &Options, std::optional<Reloc::Model> RM,
521 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
522 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
523
524void AArch64beTargetMachine::anchor() { }
525
527 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
528 const TargetOptions &Options, std::optional<Reloc::Model> RM,
529 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
530 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
531
532namespace {
533
534/// AArch64 Code Generator Pass Configuration Options.
535class AArch64PassConfig : public TargetPassConfig {
536public:
537 AArch64PassConfig(AArch64TargetMachine &TM, PassManagerBase &PM)
538 : TargetPassConfig(TM, PM) {
540 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
541 setEnableSinkAndFold(EnableSinkFold);
542 }
543
544 AArch64TargetMachine &getAArch64TargetMachine() const {
546 }
547
548 void addIRPasses() override;
549 bool addPreISel() override;
550 void addCodeGenPrepare() override;
551 bool addInstSelector() override;
552 bool addIRTranslator() override;
553 void addPreLegalizeMachineIR() override;
554 bool addLegalizeMachineIR() override;
555 void addPreRegBankSelect() override;
556 bool addRegBankSelect() override;
557 bool addGlobalInstructionSelect() override;
558 void addMachineSSAOptimization() override;
559 bool addILPOpts() override;
560 void addPreRegAlloc() override;
561 void addPostRewrite() override;
562 void addPostRegAlloc() override;
563 void addPreSched2() override;
564 void addPreEmitPass() override;
565 void addPostBBSections() override;
566 void addPreEmitPass2() override;
567 bool addRegAssignAndRewriteOptimized() override;
568
569 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
570};
571
572} // end anonymous namespace
573
575
576 PB.registerLateLoopOptimizationsEPCallback(
577 [=](LoopPassManager &LPM, OptimizationLevel Level) {
578 if (Level != OptimizationLevel::O0)
579 LPM.addPass(LoopIdiomVectorizePass());
580 });
581 if (getTargetTriple().isOSWindows())
582 PB.registerPipelineEarlySimplificationEPCallback(
585 });
586}
587
590 return TargetTransformInfo(std::make_unique<AArch64TTIImpl>(this, F));
591}
592
594 return new AArch64PassConfig(*this, PM);
595}
596
597std::unique_ptr<CSEConfigBase> AArch64PassConfig::getCSEConfig() const {
598 return getStandardCSEConfigForOpt(TM->getOptLevel());
599}
600
601void AArch64PassConfig::addIRPasses() {
602 // Always expand atomic operations, we don't deal with atomicrmw or cmpxchg
603 // ourselves.
605
606 // Expand any SVE vector library calls that we can't code generate directly.
608 TM->getOptLevel() != CodeGenOptLevel::None)
610
611 // Cmpxchg instructions are often used with a subsequent comparison to
612 // determine whether it succeeded. We can exploit existing control-flow in
613 // ldrex/strex loops to simplify this, but it needs tidying up.
614 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAtomicTidy)
616 .forwardSwitchCondToPhi(true)
617 .convertSwitchRangeToICmp(true)
618 .convertSwitchToLookupTable(true)
619 .needCanonicalLoops(false)
620 .hoistCommonInsts(true)
621 .sinkCommonInsts(true)));
622
623 // Run LoopDataPrefetch
624 //
625 // Run this before LSR to remove the multiplies involved in computing the
626 // pointer values N iterations ahead.
627 if (TM->getOptLevel() != CodeGenOptLevel::None) {
632 }
633
634 if (EnableGEPOpt) {
635 // Call SeparateConstOffsetFromGEP pass to extract constants within indices
636 // and lower a GEP with multiple indices to either arithmetic operations or
637 // multiple GEPs with single index.
639 // Call EarlyCSE pass to find and remove subexpressions in the lowered
640 // result.
641 addPass(createEarlyCSEPass());
642 // Do loop invariant code motion in case part of the lowered result is
643 // invariant.
644 addPass(createLICMPass());
645 }
646
648
649 if (getOptLevel() == CodeGenOptLevel::Aggressive && EnableSelectOpt)
650 addPass(createSelectOptimizePass());
651
653 /*IsOptNone=*/TM->getOptLevel() == CodeGenOptLevel::None));
654
655 // Match complex arithmetic patterns
656 if (TM->getOptLevel() >= CodeGenOptLevel::Default)
658
659 // Match interleaved memory accesses to ldN/stN intrinsics.
660 if (TM->getOptLevel() != CodeGenOptLevel::None) {
663 }
664
666 // Expand any functions marked with SME attributes which require special
667 // changes for the calling convention or that require the lazy-saving
668 // mechanism specified in the SME ABI.
669 addPass(createSMEABIPass());
670 }
671
672 // Add Control Flow Guard checks.
673 if (TM->getTargetTriple().isOSWindows()) {
674 if (TM->getTargetTriple().isWindowsArm64EC())
676 else
677 addPass(createCFGuardCheckPass());
678 }
679
680 if (TM->Options.JMCInstrument)
681 addPass(createJMCInstrumenterPass());
682}
683
684// Pass Pipeline Configuration
685bool AArch64PassConfig::addPreISel() {
686 // Run promote constant before global merge, so that the promoted constants
687 // get a chance to be merged
688 if (TM->getOptLevel() != CodeGenOptLevel::None && EnablePromoteConstant)
690 // FIXME: On AArch64, this depends on the type.
691 // Basically, the addressable offsets are up to 4095 * Ty.getSizeInBytes().
692 // and the offset has to be a multiple of the related size in bytes.
693 if ((TM->getOptLevel() != CodeGenOptLevel::None &&
696 bool OnlyOptimizeForSize =
697 (TM->getOptLevel() < CodeGenOptLevel::Aggressive) &&
699
700 // Merging of extern globals is enabled by default on non-Mach-O as we
701 // expect it to be generally either beneficial or harmless. On Mach-O it
702 // is disabled as we emit the .subsections_via_symbols directive which
703 // means that merging extern globals is not safe.
704 bool MergeExternalByDefault = !TM->getTargetTriple().isOSBinFormatMachO();
705 addPass(createGlobalMergePass(TM, 4095, OnlyOptimizeForSize,
706 MergeExternalByDefault));
707 }
708
709 return false;
710}
711
712void AArch64PassConfig::addCodeGenPrepare() {
713 if (getOptLevel() != CodeGenOptLevel::None)
716}
717
718bool AArch64PassConfig::addInstSelector() {
719 addPass(createAArch64ISelDag(getAArch64TargetMachine(), getOptLevel()));
720
721 // For ELF, cleanup any local-dynamic TLS accesses (i.e. combine as many
722 // references to _TLS_MODULE_BASE_ as possible.
723 if (TM->getTargetTriple().isOSBinFormatELF() &&
724 getOptLevel() != CodeGenOptLevel::None)
726
727 return false;
728}
729
730bool AArch64PassConfig::addIRTranslator() {
731 addPass(new IRTranslator(getOptLevel()));
732 return false;
733}
734
735void AArch64PassConfig::addPreLegalizeMachineIR() {
736 if (getOptLevel() == CodeGenOptLevel::None) {
738 addPass(new Localizer());
739 } else {
741 addPass(new Localizer());
743 addPass(new LoadStoreOpt());
744 }
745}
746
747bool AArch64PassConfig::addLegalizeMachineIR() {
748 addPass(new Legalizer());
749 return false;
750}
751
752void AArch64PassConfig::addPreRegBankSelect() {
753 bool IsOptNone = getOptLevel() == CodeGenOptLevel::None;
754 if (!IsOptNone) {
755 addPass(createAArch64PostLegalizerCombiner(IsOptNone));
757 addPass(new LoadStoreOpt());
758 }
760}
761
762bool AArch64PassConfig::addRegBankSelect() {
763 addPass(new RegBankSelect());
764 return false;
765}
766
767bool AArch64PassConfig::addGlobalInstructionSelect() {
768 addPass(new InstructionSelect(getOptLevel()));
769 if (getOptLevel() != CodeGenOptLevel::None)
771 return false;
772}
773
774void AArch64PassConfig::addMachineSSAOptimization() {
775 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableNewSMEABILowering)
776 addPass(createMachineSMEABIPass(TM->getOptLevel()));
777
778 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableSMEPeepholeOpt)
779 addPass(createSMEPeepholeOptPass());
780
781 // Run default MachineSSAOptimization first.
783
784 if (TM->getOptLevel() != CodeGenOptLevel::None)
786}
787
788bool AArch64PassConfig::addILPOpts() {
789 if (EnableCondOpt)
791 if (EnableCCMP)
793 if (EnableMCR)
794 addPass(&MachineCombinerID);
796 addPass(createAArch64CondBrTuning());
798 addPass(&EarlyIfConverterLegacyID);
802 if (TM->getOptLevel() != CodeGenOptLevel::None)
804 return true;
805}
806
807void AArch64PassConfig::addPreRegAlloc() {
808 if (TM->getOptLevel() == CodeGenOptLevel::None && EnableNewSMEABILowering)
810
811 // Change dead register definitions to refer to the zero register.
812 if (TM->getOptLevel() != CodeGenOptLevel::None &&
815
816 // Use AdvSIMD scalar instructions whenever profitable.
817 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAdvSIMDScalar) {
819 // The AdvSIMD pass may produce copies that can be rewritten to
820 // be register coalescer friendly.
822 }
823 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableMachinePipeliner)
824 addPass(&MachinePipelinerID);
825}
826
827void AArch64PassConfig::addPostRewrite() {
830}
831
832void AArch64PassConfig::addPostRegAlloc() {
833 // Remove redundant copy instructions.
834 if (TM->getOptLevel() != CodeGenOptLevel::None &&
837
838 if (TM->getOptLevel() != CodeGenOptLevel::None && usingDefaultRegAlloc())
839 // Improve performance for some FP/SIMD code for A57.
841}
842
843void AArch64PassConfig::addPreSched2() {
844 // Lower homogeneous frame instructions
847 // Expand some pseudo instructions to allow proper scheduling.
849 // Use load/store pair instructions when possible.
850 if (TM->getOptLevel() != CodeGenOptLevel::None) {
853 }
854 // Emit KCFI checks for indirect calls.
855 addPass(createKCFIPass());
856
857 // The AArch64SpeculationHardeningPass destroys dominator tree and natural
858 // loop info, which is needed for the FalkorHWPFFixPass and also later on.
859 // Therefore, run the AArch64SpeculationHardeningPass before the
860 // FalkorHWPFFixPass to avoid recomputing dominator tree and natural loop
861 // info.
863
864 if (TM->getOptLevel() != CodeGenOptLevel::None) {
866 addPass(createFalkorHWPFFixPass());
867 }
868}
869
870void AArch64PassConfig::addPreEmitPass() {
871 // Machine Block Placement might have created new opportunities when run
872 // at O3, where the Tail Duplication Threshold is set to 4 instructions.
873 // Run the load/store optimizer once more.
874 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive && EnableLoadStoreOpt)
876
877 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive &&
880 if (TM->getOptLevel() != CodeGenOptLevel::None)
882
883 addPass(createAArch64A53Fix835769());
884
885 if (TM->getTargetTriple().isOSWindows()) {
886 // Identify valid longjmp targets for Windows Control Flow Guard.
887 addPass(createCFGuardLongjmpPass());
888 // Identify valid eh continuation targets for Windows EHCont Guard.
890 }
891
892 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCollectLOH &&
893 TM->getTargetTriple().isOSBinFormatMachO())
895}
896
897void AArch64PassConfig::addPostBBSections() {
902 // Relax conditional branch instructions if they're otherwise out of
903 // range of their destination.
905 addPass(&BranchRelaxationPassID);
906
907 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCompressJumpTables)
909}
910
911void AArch64PassConfig::addPreEmitPass2() {
912 // SVE bundles move prefixes with destructive operations. BLR_RVMARKER pseudo
913 // instructions are lowered to bundles as well.
914 addPass(createUnpackMachineBundles(nullptr));
915}
916
917bool AArch64PassConfig::addRegAssignAndRewriteOptimized() {
920}
921
928
933
936 const auto *MFI = MF.getInfo<AArch64FunctionInfo>();
937 return new yaml::AArch64FunctionInfo(*MFI);
938}
939
942 SMDiagnostic &Error, SMRange &SourceRange) const {
943 const auto &YamlMFI = static_cast<const yaml::AArch64FunctionInfo &>(MFI);
944 MachineFunction &MF = PFS.MF;
945 MF.getInfo<AArch64FunctionInfo>()->initializeBaseYamlFields(YamlMFI);
946 return false;
947}
cl::opt< bool > EnableHomogeneousPrologEpilog("homogeneous-prolog-epilog", cl::Hidden, cl::desc("Emit homogeneous prologue and epilogue for the size " "optimization (default = off)"))
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > EnableBranchTargets("aarch64-enable-branch-targets", cl::Hidden, cl::desc("Enable the AArch64 branch target pass"), cl::init(true))
static cl::opt< bool > EnableSVEIntrinsicOpts("aarch64-enable-sve-intrinsic-opts", cl::Hidden, cl::desc("Enable SVE intrinsic opts"), cl::init(true))
static cl::opt< bool > EnableNewSMEABILowering("aarch64-new-sme-abi", cl::desc("Enable new lowering for the SME ABI"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableAArch64CopyPropagation("aarch64-enable-copy-propagation", cl::desc("Enable the copy propagation with AArch64 copy instr"), cl::init(true), cl::Hidden)
static cl::opt< bool > BranchRelaxation("aarch64-enable-branch-relax", cl::Hidden, cl::init(true), cl::desc("Relax out of range conditional branches"))
static cl::opt< bool > EnablePromoteConstant("aarch64-enable-promote-const", cl::desc("Enable the promote constant pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableCondBrTuning("aarch64-enable-cond-br-tune", cl::desc("Enable the conditional branch tuning pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableSinkFold("aarch64-enable-sink-fold", cl::desc("Enable sinking and folding of instruction copies"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableDeadRegisterElimination("aarch64-enable-dead-defs", cl::Hidden, cl::desc("Enable the pass that removes dead" " definitions and replaces stores to" " them with stores to the zero" " register"), cl::init(true))
static cl::opt< bool > EnableGEPOpt("aarch64-enable-gep-opt", cl::Hidden, cl::desc("Enable optimizations on complex GEPs"), cl::init(false))
static cl::opt< bool > EnableSelectOpt("aarch64-select-opt", cl::Hidden, cl::desc("Enable select to branch optimizations"), cl::init(true))
static cl::opt< bool > EnableLoadStoreOpt("aarch64-enable-ldst-opt", cl::desc("Enable the load/store pair" " optimization pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableGISelLoadStoreOptPostLegal("aarch64-enable-gisel-ldst-postlegal", cl::desc("Enable GlobalISel's post-legalizer load/store optimization pass"), cl::init(false), cl::Hidden)
static StringRef computeDefaultCPU(const Triple &TT, StringRef CPU)
static cl::opt< unsigned > SVEVectorBitsMinOpt("aarch64-sve-vector-bits-min", cl::desc("Assume SVE vector registers are at least this big, " "with zero meaning no minimum size is assumed."), cl::init(0), cl::Hidden)
static cl::opt< bool > EnableMCR("aarch64-enable-mcr", cl::desc("Enable the machine combiner pass"), cl::init(true), cl::Hidden)
static cl::opt< cl::boolOrDefault > EnableGlobalMerge("aarch64-enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"))
static cl::opt< bool > EnableStPairSuppress("aarch64-enable-stp-suppress", cl::desc("Suppress STP for AArch64"), cl::init(true), cl::Hidden)
static CodeModel::Model getEffectiveAArch64CodeModel(const Triple &TT, std::optional< CodeModel::Model > CM, bool JIT)
static cl::opt< bool > EnableCondOpt("aarch64-enable-condopt", cl::desc("Enable the condition optimizer pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > ForceStreaming("force-streaming", cl::desc("Force the use of streaming code for all functions"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableCollectLOH("aarch64-enable-collect-loh", cl::desc("Enable the pass that emits the linker optimization hints (LOH)"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableGISelLoadStoreOptPreLegal("aarch64-enable-gisel-ldst-prelegal", cl::desc("Enable GlobalISel's pre-legalizer load/store optimization pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableRedundantCopyElimination("aarch64-enable-copyelim", cl::desc("Enable the redundant copy elimination pass"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableAtomicTidy("aarch64-enable-atomic-cfg-tidy", cl::Hidden, cl::desc("Run SimplifyCFG after expanding atomic operations" " to make use of cmpxchg flow-based information"), cl::init(true))
static cl::opt< bool > EnableAdvSIMDScalar("aarch64-enable-simd-scalar", cl::desc("Enable use of AdvSIMD scalar integer instructions"), cl::init(false), cl::Hidden)
static cl::opt< int > EnableGlobalISelAtO("aarch64-enable-global-isel-at-O", cl::Hidden, cl::desc("Enable GlobalISel at or below an opt level (-1 to disable)"), cl::init(0))
static cl::opt< bool > EnableLoopDataPrefetch("aarch64-enable-loop-data-prefetch", cl::Hidden, cl::desc("Enable the loop data prefetch pass"), cl::init(true))
static cl::opt< bool > EnableSMEPeepholeOpt("enable-aarch64-sme-peephole-opt", cl::init(true), cl::Hidden, cl::desc("Perform SME peephole optimization"))
static cl::opt< bool > EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden, cl::desc("Run early if-conversion"), cl::init(true))
static cl::opt< bool > EnableSRLTSubregToRegMitigation("aarch64-srlt-mitigate-sr2r", cl::desc("Enable SUBREG_TO_REG mitigation by adding 'implicit-def' for " "super-regs when using Subreg Liveness Tracking"), cl::init(true), cl::Hidden)
static cl::opt< bool > EnableMachinePipeliner("aarch64-enable-pipeliner", cl::desc("Enable Machine Pipeliner for AArch64"), cl::init(false), cl::Hidden)
static cl::opt< bool > EnableFalkorHWPFFix("aarch64-enable-falkor-hwpf-fix", cl::init(true), cl::Hidden)
static cl::opt< unsigned > SVEVectorBitsMaxOpt("aarch64-sve-vector-bits-max", cl::desc("Assume SVE vector registers are at most this big, " "with zero meaning no maximum size is assumed."), cl::init(0), cl::Hidden)
static cl::opt< bool > ForceStreamingCompatible("force-streaming-compatible", cl::desc("Force the use of streaming-compatible code for all functions"), cl::init(false), cl::Hidden)
static std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
static cl::opt< bool > EnableCompressJumpTables("aarch64-enable-compress-jump-tables", cl::Hidden, cl::init(true), cl::desc("Use smallest entry possible for jump tables"))
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAArch64Target()
static cl::opt< bool > EnableCCMP("aarch64-enable-ccmp", cl::desc("Enable the CCMP formation pass"), cl::init(true), cl::Hidden)
This file a TargetTransformInfoImplBase conforming object specific to the AArch64 target machine.
static Reloc::Model getEffectiveRelocModel()
This file contains the simple types necessary to represent the attributes associated with functions a...
Provides analysis for continuously CSEing during GISel passes.
#define LLVM_ABI
Definition Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
DXIL Legalizer
static cl::opt< bool > EnableGlobalMerge("enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"), cl::init(true))
IRTranslator LLVM IR MI
This file declares the IRTranslator pass.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define T
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
AArch64FunctionInfo - This class is derived from MachineFunctionInfo and contains private AArch64-spe...
size_t clearLinkerOptimizationHints(const SmallPtrSetImpl< MachineInstr * > &MIs)
size_t clearLinkerOptimizationHints(const SmallPtrSetImpl< MachineInstr * > &MIs) const override
Remove all Linker Optimization Hints (LOH) associated with instructions in MIs and.
StringMap< std::unique_ptr< AArch64Subtarget > > SubtargetMap
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
const AArch64Subtarget * getSubtargetImpl() const =delete
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
std::unique_ptr< TargetLoweringObjectFile > TLOF
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
bool parseMachineFunctionInfo(const yaml::MachineFunctionInfo &, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange) const override
Parse out the target's MachineFunctionInfo from the YAML reprsentation.
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
void reset() override
Reset internal state.
AArch64TargetMachine(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, bool IsLittleEndian)
Create an AArch64 architecture model.
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Return a TargetTransformInfo for a given function.
AArch64beTargetMachine(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)
AArch64leTargetMachine(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)
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1549
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:69
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:223
CodeGenTargetMachineImpl(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
This class represents a range of values.
LLVM_ABI APInt getUnsignedMin() const
Return the smallest unsigned value contained in the ConstantRange.
LLVM_ABI APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
This pass is responsible for selecting generic machine instructions to target-specific instructions.
This pass implements the localization mechanism described at the top of this file.
Definition Localizer.h:43
Pass to replace calls to ifuncs with indirect calls.
Definition LowerIFunc.h:19
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
static LLVM_ABI const OptimizationLevel O0
Disable as many optimizations as possible.
This class provides access to building LLVM's passes.
LLVM_ATTRIBUTE_MINSIZE std::enable_if_t<!std::is_same_v< PassT, PassManager > > addPass(PassT &&Pass)
static LLVM_ABI PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
This pass implements the reg bank selector pass used in the GlobalISel pipeline.
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:297
Represents a range in source code.
Definition SMLoc.h:47
A ScheduleDAG for scheduling lists of MachineInstr.
ScheduleDAGMILive is an implementation of ScheduleDAGInstrs that schedules machine instructions while...
ScheduleDAGMI is an implementation of ScheduleDAGInstrs that simply schedules machine instructions ac...
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
iterator begin() const
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
void setSupportsDebugEntryValues(bool Enable)
Triple TargetTriple
Triple string, CPU name, and target feature strings the TargetMachine instance is created with.
const Triple & getTargetTriple() const
void setMachineOutliner(bool Enable)
void setCFIFixup(bool Enable)
void setSupportsDefaultOutlining(bool Enable)
void setGlobalISelAbort(GlobalISelAbortMode Mode)
std::unique_ptr< const MCSubtargetInfo > STI
void setGlobalISel(bool Enable)
TargetOptions Options
CodeModel::Model getCodeModel() const
Returns the code model.
void resetTargetOptions(const Function &F) const
Reset the target options based on the function's attributes.
const MCAsmInfo * getMCAsmInfo() const
Return target specific asm information.
unsigned TLSSize
Bit size of immediate TLS offsets (0 == use the default).
unsigned NoTrapAfterNoreturn
Do not emit a trap instruction for 'unreachable' IR instructions behind noreturn calls,...
unsigned TrapUnreachable
Emit target-specific trap instruction for 'unreachable' IR instructions.
Target-Independent Code Generator Pass Configuration Options.
virtual void addCodeGenPrepare()
Add pass to prepare the LLVM IR for code generation.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
virtual void addMachineSSAOptimization()
addMachineSSAOptimization - Add standard passes that optimize machine instructions in SSA form.
virtual bool addRegAssignAndRewriteOptimized()
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:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
A raw_ostream that writes to an SmallVector or SmallString.
Interfaces for registering analysis passes, producing common pass manager configurations,...
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ DynamicNoPIC
Definition CodeGen.h:25
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
ScheduleDAGMILive * createSchedLive(MachineSchedContext *C)
Create the standard converging machine scheduler.
FunctionPass * createAArch64PreLegalizerCombiner()
void initializeLDTLSCleanupPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGSimplificationPass(SimplifyCFGOptions Options=SimplifyCFGOptions(), std::function< bool(const Function &)> Ftor=nullptr)
FunctionPass * createSMEABIPass()
void initializeAArch64A57FPLoadBalancingPass(PassRegistry &)
void initializeMachineSMEABIPass(PassRegistry &)
FunctionPass * createAArch64PostSelectOptimize()
LLVM_ABI ModulePass * createJMCInstrumenterPass()
JMC instrument pass.
void initializeAArch64SRLTDefineSuperRegsPass(PassRegistry &)
void initializeAArch64SpeculationHardeningPass(PassRegistry &)
void initializeAArch64PostLegalizerLoweringPass(PassRegistry &)
FunctionPass * createAArch64RedundantCopyEliminationPass()
FunctionPass * createAArch64StackTaggingPreRAPass()
LLVM_ABI FunctionPass * createTypePromotionLegacyPass()
Create IR Type Promotion pass.
void initializeAArch64PostLegalizerCombinerPass(PassRegistry &)
FunctionPass * createAArch64MIPeepholeOptPass()
void initializeAArch64AdvSIMDScalarPass(PassRegistry &)
void initializeAArch64PostCoalescerPass(PassRegistry &)
FunctionPass * createMachineSMEABIPass(CodeGenOptLevel)
LLVM_ABI FunctionPass * createSelectOptimizePass()
This pass converts conditional moves to conditional jumps when profitable.
LLVM_ABI Pass * createGlobalMergePass(const TargetMachine *TM, unsigned MaximalOffset, bool OnlyOptimizeForSize=false, bool MergeExternalByDefault=false, bool MergeConstantByDefault=false, bool MergeConstAggressiveByDefault=false)
GlobalMerge - This pass merges internal (by default) globals into structs to enable reuse of a base p...
FunctionPass * createAArch64PostCoalescerPass()
void initializeAArch64PromoteConstantPass(PassRegistry &)
FunctionPass * createFalkorMarkStridedAccessesPass()
Target & getTheAArch64beTarget()
FunctionPass * createAArch64PointerAuthPass()
FunctionPass * createFalkorHWPFFixPass()
void initializeAArch64RedundantCondBranchPass(PassRegistry &)
FunctionPass * createAArch64SRLTDefineSuperRegsPass()
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
FunctionPass * createAArch64O0PreLegalizerCombiner()
FunctionPass * createAArch64A57FPLoadBalancing()
FunctionPass * createAArch64CondBrTuning()
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:89
void initializeAArch64Arm64ECCallLoweringPass(PassRegistry &)
void initializeSMEABIPass(PassRegistry &)
LLVM_ABI char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
LLVM_ABI char & PeepholeOptimizerLegacyID
PeepholeOptimizer - This pass performs peephole optimizations - like extension and comparison elimina...
LLVM_ABI Pass * createLICMPass()
Definition LICM.cpp:386
Target & getTheAArch64leTarget()
FunctionPass * createAArch64DeadRegisterDefinitions()
LLVM_ABI char & EarlyIfConverterLegacyID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
FunctionPass * createSMEPeepholeOptPass()
FunctionPass * createAArch64PostLegalizerLowering()
ThinOrFullLTOPhase
This enumerates the LLVM full LTO or ThinLTO optimization phases.
Definition Pass.h:77
PassManager< Loop, LoopAnalysisManager, LoopStandardAnalysisResults &, LPMUpdater & > LoopPassManager
The Loop pass manager.
LLVM_ABI char & MachineCombinerID
This pass performs instruction combining using trace metrics to estimate critical-path and resource d...
void initializeAArch64AsmPrinterPass(PassRegistry &)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
FunctionPass * createAArch64CompressJumpTablesPass()
Target & getTheAArch64_32Target()
FunctionPass * createAArch64ConditionalCompares()
ScheduleDAGMI * createSchedPostRA(MachineSchedContext *C)
Create a generic scheduler with no vreg liveness or DAG mutation passes.
LLVM_ABI char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
void initializeFalkorMarkStridedAccessesLegacyPass(PassRegistry &)
void initializeAArch64ExpandPseudoPass(PassRegistry &)
void initializeAArch64DeadRegisterDefinitionsPass(PassRegistry &)
void initializeAArch64StackTaggingPass(PassRegistry &)
FunctionPass * createAArch64ExpandPseudoPass()
Returns an instance of the pseudo instruction expansion pass.
LLVM_ABI FunctionPass * createKCFIPass()
Lowers KCFI operand bundles for indirect calls.
Definition KCFI.cpp:61
std::unique_ptr< ScheduleDAGMutation > createAArch64MacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createAArch64MacroFusionDAGMutation()); to AArch64TargetMa...
LLVM_ABI FunctionPass * createComplexDeinterleavingPass(const TargetMachine *TM)
This pass implements generation of target-specific intrinsics to support handling of complex number a...
PassManager< Module > ModulePassManager
Convenience typedef for a pass manager over modules.
ModulePass * createAArch64Arm64ECCallLoweringPass()
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createStoreClusterDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ReorderWhileClustering=false)
If ReorderWhileClustering is set to true, no attempt will be made to reduce reordering due to store c...
LLVM_ABI FunctionPass * createLoopDataPrefetchPass()
FunctionPass * createAArch64SIMDInstrOptPass()
Returns an instance of the high cost ASIMD instruction replacement optimization pass.
void initializeSMEPeepholeOptPass(PassRegistry &)
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
FunctionPass * createAArch64StorePairSuppressPass()
FunctionPass * createAArch64ConditionOptimizerPass()
ModulePass * createSVEIntrinsicOptsPass()
void initializeAArch64CompressJumpTablesPass(PassRegistry &)
void initializeAArch64SLSHardeningPass(PassRegistry &)
FunctionPass * createAArch64CollectLOHPass()
LLVM_ABI ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:82
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:85
FunctionPass * createAArch64LoadStoreOptimizationPass()
createAArch64LoadStoreOptimizationPass - returns an instance of the load / store optimization pass.
void initializeAArch64StackTaggingPreRAPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGuardLongjmpPass()
Creates CFGuard longjmp target identification pass.
void initializeAArch64PreLegalizerCombinerPass(PassRegistry &)
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
Target & getTheARM64_32Target()
FunctionPass * createAArch64PostLegalizerCombiner(bool IsOptNone)
void initializeAArch64StorePairSuppressPass(PassRegistry &)
void initializeAArch64LowerHomogeneousPrologEpilogPass(PassRegistry &)
LLVM_ABI FunctionPass * createSeparateConstOffsetFromGEPPass(bool LowerGEP=false)
LLVM_ABI FunctionPass * createInterleavedAccessPass()
InterleavedAccess Pass - This pass identifies and matches interleaved memory accesses to target speci...
LLVM_ABI void initializeGlobalISel(PassRegistry &)
Initialize all passes linked into the GlobalISel library.
LLVM_ABI void initializeKCFIPass(PassRegistry &)
FunctionPass * createAArch64ISelDag(AArch64TargetMachine &TM, CodeGenOptLevel OptLevel)
createAArch64ISelDag - This pass converts a legalized DAG into a AArch64-specific DAG,...
void initializeAArch64CondBrTuningPass(PassRegistry &)
LLVM_ABI char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
void initializeAArch64MIPeepholeOptPass(PassRegistry &)
FunctionPass * createAArch64SLSHardeningPass()
FunctionPass * createAArch64BranchTargetsPass()
Target & getTheARM64Target()
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createLoadClusterDAGMutation(const TargetInstrInfo *TII, const TargetRegisterInfo *TRI, bool ReorderWhileClustering=false)
If ReorderWhileClustering is set to true, no attempt will be made to reduce reordering due to store c...
void initializeFalkorHWPFFixPass(PassRegistry &)
LLVM_ABI FunctionPass * createUnpackMachineBundles(std::function< bool(const MachineFunction &)> Ftor)
void initializeAArch64BranchTargetsPass(PassRegistry &)
FunctionPass * createCFGuardCheckPass()
Insert Control FLow Guard checks on indirect function calls.
Definition CFGuard.cpp:308
void initializeAArch64A53Fix835769Pass(PassRegistry &)
LLVM_ABI FunctionPass * createEHContGuardTargetsPass()
Creates Windows EH Continuation Guard target identification pass.
ModulePass * createAArch64LowerHomogeneousPrologEpilogPass()
void initializeAArch64LoadStoreOptPass(PassRegistry &)
void initializeAArch64SIMDInstrOptPass(PassRegistry &)
void initializeAArch64PostSelectOptimizePass(PassRegistry &)
void initializeAArch64CollectLOHPass(PassRegistry &)
FunctionPass * createAArch64StackTaggingPass(bool IsOptNone)
void initializeAArch64O0PreLegalizerCombinerPass(PassRegistry &)
void initializeAArch64ConditionOptimizerPass(PassRegistry &)
void initializeAArch64ConditionalComparesPass(PassRegistry &)
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
FunctionPass * createAArch64CleanupLocalDynamicTLSPass()
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:383
ModulePass * createAArch64PromoteConstantPass()
LLVM_ABI FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
LLVM_ABI MachineFunctionPass * createMachineCopyPropagationPass(bool UseCopyInstr)
FunctionPass * createAArch64AdvSIMDScalar()
FunctionPass * createAArch64RedundantCondBranchPass()
void initializeAArch64DAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createAArch64SpeculationHardeningPass()
Returns an instance of the pseudo instruction expansion pass.
void initializeSVEIntrinsicOptsPass(PassRegistry &)
void initializeAArch64PointerAuthPass(PassRegistry &)
void initializeAArch64RedundantCopyEliminationPass(PassRegistry &)
LLVM_ABI FunctionPass * createInterleavedLoadCombinePass()
InterleavedLoadCombines Pass - This pass identifies interleaved loads and combines them into wide loa...
FunctionPass * createAArch64A53Fix835769()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
static FuncInfoTy * create(BumpPtrAllocator &Allocator, const Function &F, const SubtargetTy *STI)
Factory function: default behavior is to call new using the supplied allocator.
MachineSchedContext provides enough context from the MachineScheduler pass for the target to instanti...
RegisterTargetMachine - Helper template for registering a target machine implementation,...
Targets should override this in a way that mirrors the implementation of llvm::MachineFunctionInfo.