LLVM 24.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"
14#include "AArch64AsmPrinter.h"
17#include "AArch64MacroFusion.h"
18#include "AArch64Subtarget.h"
36#include "llvm/CodeGen/Passes.h"
39#include "llvm/IR/Attributes.h"
40#include "llvm/IR/Function.h"
42#include "llvm/MC/MCAsmInfo.h"
45#include "llvm/Pass.h"
57#include <memory>
58
59using namespace llvm;
60
61static cl::opt<bool> EnableCCMP("aarch64-enable-ccmp",
62 cl::desc("Enable the CCMP formation pass"),
63 cl::init(true), cl::Hidden);
64
65static cl::opt<bool>
66 EnableCondBrTuning("aarch64-enable-cond-br-tune",
67 cl::desc("Enable the conditional branch tuning pass"),
68 cl::init(true), cl::Hidden);
69
71 "aarch64-enable-copy-propagation",
72 cl::desc("Enable the copy propagation with AArch64 copy instr"),
73 cl::init(true), cl::Hidden);
74
75static cl::opt<bool> EnableMCR("aarch64-enable-mcr",
76 cl::desc("Enable the machine combiner pass"),
77 cl::init(true), cl::Hidden);
78
79static cl::opt<bool> EnableStPairSuppress("aarch64-enable-stp-suppress",
80 cl::desc("Suppress STP for AArch64"),
81 cl::init(true), cl::Hidden);
82
84 "aarch64-enable-simd-scalar",
85 cl::desc("Enable use of AdvSIMD scalar integer instructions"),
86 cl::init(false), cl::Hidden);
87
88static cl::opt<bool>
89 EnablePromoteConstant("aarch64-enable-promote-const",
90 cl::desc("Enable the promote constant pass"),
91 cl::init(true), cl::Hidden);
92
94 "aarch64-enable-collect-loh",
95 cl::desc("Enable the pass that emits the linker optimization hints (LOH)"),
96 cl::init(true), cl::Hidden);
97
98static cl::opt<bool>
99 EnableDeadRegisterElimination("aarch64-enable-dead-defs", cl::Hidden,
100 cl::desc("Enable the pass that removes dead"
101 " definitions and replaces stores to"
102 " them with stores to the zero"
103 " register"),
104 cl::init(true));
105
107 "aarch64-enable-copyelim",
108 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
109 cl::Hidden);
110
111static cl::opt<bool> EnableLoadStoreOpt("aarch64-enable-ldst-opt",
112 cl::desc("Enable the load/store pair"
113 " optimization pass"),
114 cl::init(true), cl::Hidden);
115
117 "aarch64-enable-atomic-cfg-tidy", cl::Hidden,
118 cl::desc("Run SimplifyCFG after expanding atomic operations"
119 " to make use of cmpxchg flow-based information"),
120 cl::init(true));
121
122static cl::opt<bool>
123EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden,
124 cl::desc("Run early if-conversion"),
125 cl::init(true));
126
127static cl::opt<bool>
128 EnableCondOpt("aarch64-enable-condopt",
129 cl::desc("Enable the condition optimizer pass"),
130 cl::init(true), cl::Hidden);
131
132static cl::opt<bool>
133 EnableGEPOpt("aarch64-enable-gep-opt", cl::Hidden,
134 cl::desc("Enable optimizations on complex GEPs"),
135 cl::init(false));
136
137static cl::opt<bool>
138 EnableSelectOpt("aarch64-select-opt", cl::Hidden,
139 cl::desc("Enable select to branch optimizations"),
140 cl::init(true));
141
142static cl::opt<bool>
143 BranchRelaxation("aarch64-enable-branch-relax", cl::Hidden, cl::init(true),
144 cl::desc("Relax out of range conditional branches"));
145
147 "aarch64-enable-compress-jump-tables", cl::Hidden, cl::init(true),
148 cl::desc("Use smallest entry possible for jump tables"));
149
150// FIXME: Unify control over GlobalMerge.
152 EnableGlobalMerge("aarch64-enable-global-merge", cl::Hidden,
153 cl::desc("Enable the global merge pass"));
154
155static cl::opt<bool>
156 EnableLoopDataPrefetch("aarch64-enable-loop-data-prefetch", cl::Hidden,
157 cl::desc("Enable the loop data prefetch pass"),
158 cl::init(true));
159
161 "aarch64-enable-global-isel-at-O", cl::Hidden,
162 cl::desc("Enable GlobalISel at or below an opt level (-1 to disable)"),
163 cl::init(0));
164
165static cl::opt<bool>
166 EnableSMEPeepholeOpt("enable-aarch64-sme-peephole-opt", cl::init(true),
168 cl::desc("Perform SME peephole optimization"));
169
170static cl::opt<bool> EnableFalkorHWPFFix("aarch64-enable-falkor-hwpf-fix",
171 cl::init(true), cl::Hidden);
172
173static cl::opt<bool>
174 EnableBranchTargets("aarch64-enable-branch-targets", cl::Hidden,
175 cl::desc("Enable the AArch64 branch target pass"),
176 cl::init(true));
177
179 "aarch64-sve-vector-bits-max",
180 cl::desc("Assume SVE vector registers are at most this big, "
181 "with zero meaning no maximum size is assumed."),
182 cl::init(0), cl::Hidden);
183
185 "aarch64-sve-vector-bits-min",
186 cl::desc("Assume SVE vector registers are at least this big, "
187 "with zero meaning no minimum size is assumed."),
188 cl::init(0), cl::Hidden);
189
191 "force-streaming",
192 cl::desc("Force the use of streaming code for all functions"),
193 cl::init(false), cl::Hidden);
194
196 "force-streaming-compatible",
197 cl::desc("Force the use of streaming-compatible code for all functions"),
198 cl::init(false), cl::Hidden);
199
201
203 "aarch64-enable-gisel-ldst-prelegal",
204 cl::desc("Enable GlobalISel's pre-legalizer load/store optimization pass"),
205 cl::init(true), cl::Hidden);
206
208 "aarch64-enable-gisel-ldst-postlegal",
209 cl::desc("Enable GlobalISel's post-legalizer load/store optimization pass"),
210 cl::init(false), cl::Hidden);
211
212static cl::opt<bool>
213 EnableSinkFold("aarch64-enable-sink-fold",
214 cl::desc("Enable sinking and folding of instruction copies"),
215 cl::init(true), cl::Hidden);
216
217static cl::opt<bool>
218 EnableMachinePipeliner("aarch64-enable-pipeliner",
219 cl::desc("Enable Machine Pipeliner for AArch64"),
220 cl::init(false), cl::Hidden);
221
223 "aarch64-srlt-mitigate-sr2r",
224 cl::desc("Enable SUBREG_TO_REG mitigation by adding 'implicit-def' for "
225 "super-regs when using Subreg Liveness Tracking"),
226 cl::init(true), cl::Hidden);
227
229 "aarch64-enable-sve-shuffle-opts",
230 cl::desc("Enable pattern matching of shuffles that could make use of SVE "
231 "instructions like tbl or the bottom/top variants"),
232 cl::init(true), cl::Hidden);
233
236 // Register the target.
242 auto &PR = *PassRegistry::getPassRegistry();
287}
288
290 const bool GlobalISelFlag = getCGPassBuilderOption().EnableGlobalISelOption ==
292
294 (static_cast<unsigned>(getOptLevel()) >
295 static_cast<unsigned>(EnableGlobalISelAtO) &&
296 !GlobalISelFlag);
297}
298
300 SubtargetMap.clear();
301 LastSubtarget = nullptr;
302}
303
304//===----------------------------------------------------------------------===//
305// AArch64 Lowering public interface.
306//===----------------------------------------------------------------------===//
307static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
308 if (TT.isOSBinFormatMachO())
309 return std::make_unique<AArch64_MachoTargetObjectFile>();
310 if (TT.isOSBinFormatCOFF())
311 return std::make_unique<AArch64_COFFTargetObjectFile>();
312
313 return std::make_unique<AArch64_ELFTargetObjectFile>();
314}
315
317 if (CPU.empty() && TT.isArm64e())
318 return "apple-a12";
319 return CPU;
320}
321
323 std::optional<Reloc::Model> RM) {
324 // AArch64 Darwin and Windows are always PIC.
325 if (TT.isOSDarwin() || TT.isOSWindows())
326 return Reloc::PIC_;
327 // On ELF platforms the default static relocation model has a smart enough
328 // linker to cope with referencing external symbols defined in a shared
329 // library. Hence DynamicNoPIC doesn't need to be promoted to PIC.
330 if (!RM || *RM == Reloc::DynamicNoPIC)
331 return Reloc::Static;
332 return *RM;
333}
334
335static CodeModel::Model
337 std::optional<CodeModel::Model> CM, bool JIT) {
338 if (CM) {
339 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny &&
340 *CM != CodeModel::Large) {
342 "Only small, tiny and large code models are allowed on AArch64");
343 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) {
344 report_fatal_error("tiny code model is only supported on ELF");
345 }
346 return *CM;
347 }
348 // The default MCJIT memory managers make no guarantees about where they can
349 // find an executable page; JITed code needs to be able to refer to globals
350 // no matter how far away they are.
351 // We should set the CodeModel::Small for Windows ARM64 in JIT mode,
352 // since with large code model LLVM generating 4 MOV instructions, and
353 // Windows doesn't support relocating these long branch (4 MOVs).
354 if (JIT && !TT.isOSWindows())
355 return CodeModel::Large;
356 return CodeModel::Small;
357}
358
359/// Create an AArch64 architecture model.
360///
362 StringRef CPU, StringRef FS,
363 const TargetOptions &Options,
364 std::optional<Reloc::Model> RM,
365 std::optional<CodeModel::Model> CM,
366 CodeGenOptLevel OL, bool JIT,
367 bool LittleEndian)
370 getEffectiveAArch64CodeModel(TT, CM, JIT), OL),
371 TLOF(createTLOF(getTargetTriple())), isLittle(LittleEndian) {
372 initAsmInfo();
373
374 if (TT.isOSBinFormatMachO()) {
375 this->Options.TrapUnreachable = true;
376 this->Options.NoTrapAfterNoreturn = true;
377 }
378
379 if (getMCAsmInfo().usesWindowsCFI()) {
380 // Unwinding can get confused if the last instruction in an
381 // exception-handling region (function, funclet, try block, etc.)
382 // is a call.
383 //
384 // FIXME: We could elide the trap if the next instruction would be in
385 // the same region anyway.
386 this->Options.TrapUnreachable = true;
387 }
388
389 if (this->Options.TLSSize == 0) // default
390 this->Options.TLSSize = 24;
391 if ((getCodeModel() == CodeModel::Small ||
393 this->Options.TLSSize > 32)
394 // for the small (and kernel) code model, the maximum TLS size is 4GiB
395 this->Options.TLSSize = 32;
396 else if (getCodeModel() == CodeModel::Tiny && this->Options.TLSSize > 24)
397 // for the tiny code model, the maximum TLS size is 1MiB (< 16MiB)
398 this->Options.TLSSize = 24;
399
400 const bool TargetSupportsGISel =
401 TT.getArch() != Triple::aarch64_32 &&
402 TT.getEnvironment() != Triple::GNUILP32 &&
403 !(getCodeModel() == CodeModel::Large && TT.isOSBinFormatMachO());
404
405 const bool GlobalISelFlag = getCGPassBuilderOption().EnableGlobalISelOption ==
407
408 // Enable GlobalISel at or below EnableGlobalISelAt0, unless this is
409 // MachO/CodeModel::Large, which GlobalISel does not support.
410 if (TargetSupportsGISel && EnableGlobalISelAtO != -1 &&
411 (static_cast<int>(getOptLevel()) <= EnableGlobalISelAtO ||
412 (!GlobalISelFlag && !Options.EnableGlobalISel))) {
413 setGlobalISel(true);
415 }
416
418
419 // AArch64 supports the MachineOutliner.
420 setMachineOutliner(true);
421
422 // AArch64 supports default outlining behaviour.
424
425 // AArch64 supports the debug entry values.
427
428 // AArch64 supports fixing up the DWARF unwind information.
429 if (!getMCAsmInfo().usesWindowsCFI())
430 setCFIFixup(true);
431}
432
436
438
439const AArch64Subtarget *
441 // Constructing the subtarget key is not cheap, avoid rebuilding it for
442 // repeated queries with the same function attributes.
443 AttributeSet FnAttrs = F.getAttributes().getFnAttrs();
444 if (LastSubtarget && LastSubtargetAttrs == FnAttrs)
445 return LastSubtarget;
446
447 Attribute CPUAttr = F.getFnAttribute("target-cpu");
448 Attribute TuneAttr = F.getFnAttribute("tune-cpu");
449 Attribute FSAttr = F.getFnAttribute("target-features");
450
451 StringRef CPU = CPUAttr.isValid() ? CPUAttr.getValueAsString() : TargetCPU;
452 StringRef TuneCPU = TuneAttr.isValid() ? TuneAttr.getValueAsString() : CPU;
453 StringRef FS = FSAttr.isValid() ? FSAttr.getValueAsString() : TargetFS;
454 bool HasMinSize = F.hasMinSize();
455
456 bool IsStreaming = ForceStreaming ||
457 F.hasFnAttribute("aarch64_pstate_sm_enabled") ||
458 F.hasFnAttribute("aarch64_pstate_sm_body");
459 bool IsStreamingCompatible = ForceStreamingCompatible ||
460 F.hasFnAttribute("aarch64_pstate_sm_compatible");
461
462 unsigned MinSVEVectorSize = 0;
463 unsigned MaxSVEVectorSize = 0;
464 if (F.hasFnAttribute(Attribute::VScaleRange)) {
465 ConstantRange CR = getVScaleRange(&F, 64);
466 MinSVEVectorSize = CR.getUnsignedMin().getZExtValue() * 128;
467 MaxSVEVectorSize = CR.getUnsignedMax().getZExtValue() * 128;
468 } else {
469 MinSVEVectorSize = SVEVectorBitsMinOpt;
470 MaxSVEVectorSize = SVEVectorBitsMaxOpt;
471 }
472
473 assert(MinSVEVectorSize % 128 == 0 &&
474 "SVE requires vector length in multiples of 128!");
475 assert(MaxSVEVectorSize % 128 == 0 &&
476 "SVE requires vector length in multiples of 128!");
477 assert((MaxSVEVectorSize >= MinSVEVectorSize || MaxSVEVectorSize == 0) &&
478 "Minimum SVE vector size should not be larger than its maximum!");
479
480 // Sanitize user input in case of no asserts
481 if (MaxSVEVectorSize != 0) {
482 MinSVEVectorSize = std::min(MinSVEVectorSize, MaxSVEVectorSize);
483 MaxSVEVectorSize = std::max(MinSVEVectorSize, MaxSVEVectorSize);
484 }
485
487 // This lookup is hot during repeated TTI queries, so build the key directly
488 // instead of formatting through raw_svector_ostream.
489 Key += "SVEMin";
490 Key += utostr(MinSVEVectorSize);
491 Key += "SVEMax";
492 Key += utostr(MaxSVEVectorSize);
493 Key += "IsStreaming=";
494 Key += utostr(IsStreaming);
495 Key += "IsStreamingCompatible=";
496 Key += utostr(IsStreamingCompatible);
497 Key += CPU;
498 Key += TuneCPU;
499 Key += FS;
500 Key += "HasMinSize=";
501 Key += utostr(HasMinSize);
502
503 auto &I = SubtargetMap[Key];
504 if (!I) {
505 I = std::make_unique<AArch64Subtarget>(
506 TargetTriple, CPU, TuneCPU, FS, *this, isLittle, MinSVEVectorSize,
507 MaxSVEVectorSize, IsStreaming, IsStreamingCompatible, HasMinSize,
509 }
510
511 if (IsStreaming && !I->hasSME())
512 reportFatalUsageError("streaming SVE functions require SME");
513
514 LastSubtargetAttrs = FnAttrs;
515 LastSubtarget = I.get();
516 return LastSubtarget;
517}
518
519// Encourage placing FORM_TRANSPOSED_REG immediately before the instruction that
520// uses/consumes it. This ensures its def has a short live range, which means
521// we're more likely to allocate registers its operands first (which works best
522// for the hints in AArch64RegisterInfo::getRegAllocationHints).
524 const TargetInstrInfo &TII, const TargetSubtargetInfo &TSI,
525 const MachineInstr *FirstMI, const MachineInstr &SecondMI,
526 const SDep *Dep) {
527 if (isNonDataDep(Dep))
528 return false;
529 return !FirstMI ||
530 FirstMI->getOpcode() == AArch64::FORM_TRANSPOSED_REG_TUPLE_X2_PSEUDO ||
531 FirstMI->getOpcode() == AArch64::FORM_TRANSPOSED_REG_TUPLE_X4_PSEUDO;
532}
533
536 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
538 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
539 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
540 if (ST.hasFusion())
541 DAG->addMutation(createAArch64MacroFusionDAGMutation());
542 if (ST.hasSME() && ST.isStreaming())
543 DAG->addMutation(createMacroFusionDAGMutation(
545 return DAG;
546}
547
550 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
552 if (ST.hasFusion()) {
553 // Run the Macro Fusion after RA again since literals are expanded from
554 // pseudos then (v. addPreSched2()).
555 DAG->addMutation(createAArch64MacroFusionDAGMutation());
556 return DAG;
557 }
558
559 return DAG;
560}
561
563 const SmallPtrSetImpl<MachineInstr *> &MIs) const {
564 if (MIs.empty())
565 return 0;
566 auto *MI = *MIs.begin();
567 auto *FuncInfo = MI->getMF()->getInfo<AArch64FunctionInfo>();
568 return FuncInfo->clearLinkerOptimizationHints(MIs);
569}
570
571void AArch64leTargetMachine::anchor() { }
572
574 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
575 const TargetOptions &Options, std::optional<Reloc::Model> RM,
576 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
577 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
578
579void AArch64beTargetMachine::anchor() { }
580
582 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
583 const TargetOptions &Options, std::optional<Reloc::Model> RM,
584 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
585 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
586
587namespace {
588
589/// AArch64 Code Generator Pass Configuration Options.
590class AArch64PassConfig : public TargetPassConfig {
591public:
592 AArch64PassConfig(AArch64TargetMachine &TM, PassManagerBase &PM)
593 : TargetPassConfig(TM, PM) {
595 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
596 setEnableSinkAndFold(EnableSinkFold);
597 }
598
599 AArch64TargetMachine &getAArch64TargetMachine() const {
601 }
602
603 void addIRPasses() override;
604 bool addPreISel() override;
605 void addCodeGenPrepare() override;
606 bool addInstSelector() override;
607 bool addIRTranslator() override;
608 void addPreLegalizeMachineIR() override;
609 bool addLegalizeMachineIR() override;
610 void addPreRegBankSelect() override;
611 bool addRegBankSelect() override;
612 bool addGlobalInstructionSelect() override;
613 void addMachineSSAOptimization() override;
614 bool addILPOpts() override;
615 void addPreRegAlloc() override;
616 void addPostRewrite() override;
617 void addPostRegAlloc() override;
618 void addPreSched2() override;
619 void addPreEmitPass() override;
620 void addPostBBSections() override;
621 void addPreEmitPass2() override;
622 bool addRegAssignAndRewriteOptimized() override;
623
624 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
625};
626
627} // end anonymous namespace
628
630#define GET_PASS_REGISTRY "AArch64PassRegistry.def"
632
633 PB.registerLateLoopOptimizationsEPCallback(
634 [=](LoopPassManager &LPM, OptimizationLevel Level) {
635 if (Level != OptimizationLevel::O0)
636 LPM.addPass(LoopIdiomVectorizePass());
637 });
638 if (getTargetTriple().isOSWindows())
639 PB.registerPipelineEarlySimplificationEPCallback(
642 });
643}
644
647 return TargetTransformInfo(std::make_unique<AArch64TTIImpl>(this, F));
648}
649
651 return new AArch64PassConfig(*this, PM);
652}
653
654std::unique_ptr<CSEConfigBase> AArch64PassConfig::getCSEConfig() const {
655 return getStandardCSEConfigForOpt(TM->getOptLevel());
656}
657
658void AArch64PassConfig::addIRPasses() {
659 // Always expand atomic operations, we don't deal with atomicrmw or cmpxchg
660 // ourselves.
662
663 // Cmpxchg instructions are often used with a subsequent comparison to
664 // determine whether it succeeded. We can exploit existing control-flow in
665 // ldrex/strex loops to simplify this, but it needs tidying up.
666 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAtomicTidy)
668 .forwardSwitchCondToPhi(true)
669 .convertSwitchRangeToICmp(true)
670 .convertSwitchToLookupTable(true)
671 .needCanonicalLoops(false)
672 .hoistCommonInsts(true)
673 .sinkCommonInsts(true)));
674
675 // Run LoopDataPrefetch
676 //
677 // Run this before LSR to remove the multiplies involved in computing the
678 // pointer values N iterations ahead.
679 if (TM->getOptLevel() != CodeGenOptLevel::None) {
684 }
685
686 if (EnableGEPOpt) {
687 // Call SeparateConstOffsetFromGEP pass to extract constants within indices
688 // and lower a GEP with multiple indices to either arithmetic operations or
689 // multiple GEPs with single index.
691 // Call EarlyCSE pass to find and remove subexpressions in the lowered
692 // result.
693 addPass(createEarlyCSEPass());
694 // Do loop invariant code motion in case part of the lowered result is
695 // invariant.
696 addPass(createLICMPass());
697 }
698
700
701 if (getOptLevel() == CodeGenOptLevel::Aggressive && EnableSelectOpt)
702 addPass(createSelectOptimizePass());
703
705 /*IsOptNone=*/TM->getOptLevel() == CodeGenOptLevel::None));
706
707 // Try to use tbl in place of other shuffling operations if doing so would
708 // reduce the total number of instructions. Shuffle masks for big endian may
709 // be different, so require a little endian target.
710 if (getOptLevel() >= CodeGenOptLevel::Default && EnableSVEShuffleOpt &&
711 TM->getTargetTriple().isLittleEndian())
712 addPass(createSVEShuffleOptsPass());
713
714 // Match complex arithmetic patterns
715 if (TM->getOptLevel() >= CodeGenOptLevel::Default)
717
718 // Match interleaved memory accesses to ldN/stN intrinsics.
719 if (TM->getOptLevel() != CodeGenOptLevel::None) {
722 }
723
724 // Add Control Flow Guard checks.
725 if (TM->getTargetTriple().isOSWindows()) {
726 if (TM->getTargetTriple().isWindowsArm64EC())
728 else
729 addPass(createCFGuardPass());
730 }
731
732 if (TM->Options.JMCInstrument)
733 addPass(createJMCInstrumenterPass());
734}
735
736// Pass Pipeline Configuration
737bool AArch64PassConfig::addPreISel() {
738 // Run promote constant before global merge, so that the promoted constants
739 // get a chance to be merged
740 if (TM->getOptLevel() != CodeGenOptLevel::None && EnablePromoteConstant)
742 // FIXME: On AArch64, this depends on the type.
743 // Basically, the addressable offsets are up to 4095 * Ty.getSizeInBytes().
744 // and the offset has to be a multiple of the related size in bytes.
745 if ((TM->getOptLevel() != CodeGenOptLevel::None &&
748 bool OnlyOptimizeForSize =
749 (TM->getOptLevel() < CodeGenOptLevel::Aggressive) &&
751
752 // Merging of extern globals is enabled by default on non-Mach-O as we
753 // expect it to be generally either beneficial or harmless. On Mach-O it
754 // is disabled as we emit the .subsections_via_symbols directive which
755 // means that merging extern globals is not safe.
756 bool MergeExternalByDefault = !TM->getTargetTriple().isOSBinFormatMachO();
757 addPass(createGlobalMergePass(TM, 4095, OnlyOptimizeForSize,
758 MergeExternalByDefault));
759 }
760
761 return false;
762}
763
764void AArch64PassConfig::addCodeGenPrepare() {
765 if (getOptLevel() != CodeGenOptLevel::None)
768}
769
770bool AArch64PassConfig::addInstSelector() {
771 addPass(createAArch64ISelDag(getAArch64TargetMachine(), getOptLevel()));
772 return false;
773}
774
775bool AArch64PassConfig::addIRTranslator() {
776 addPass(new IRTranslatorLegacy(getOptLevel()));
777 return false;
778}
779
780void AArch64PassConfig::addPreLegalizeMachineIR() {
781 if (getAArch64TargetMachine().isGlobalISelOptNone()) {
783 addPass(new LocalizerLegacy());
784 } else {
786 addPass(new LocalizerLegacy());
788 addPass(new LoadStoreOptLegacy());
789 }
790}
791
792bool AArch64PassConfig::addLegalizeMachineIR() {
793 addPass(new LegalizerLegacy());
794 return false;
795}
796
797void AArch64PassConfig::addPreRegBankSelect() {
798 const bool IsGlobalISelOptNone =
799 getAArch64TargetMachine().isGlobalISelOptNone();
800 if (!IsGlobalISelOptNone) {
801 addPass(createAArch64PostLegalizerCombinerLegacy(IsGlobalISelOptNone));
803 addPass(new LoadStoreOptLegacy());
804 }
806}
807
808bool AArch64PassConfig::addRegBankSelect() {
809 addPass(new RegBankSelectLegacy());
810 return false;
811}
812
813bool AArch64PassConfig::addGlobalInstructionSelect() {
814 addPass(new InstructionSelectLegacy(getOptLevel()));
815 if (!getAArch64TargetMachine().isGlobalISelOptNone())
817
818 return false;
819}
820
821void AArch64PassConfig::addMachineSSAOptimization() {
822 // For ELF, cleanup any local-dynamic TLS accesses
823 // (i.e. combine as many references to _TLS_MODULE_BASE_ as possible.
824 if (TM->getTargetTriple().isOSBinFormatELF() &&
825 getOptLevel() != CodeGenOptLevel::None)
827
828 if (TM->getOptLevel() != CodeGenOptLevel::None)
829 addPass(createMachineSMEABIPass(TM->getOptLevel()));
830
831 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableSMEPeepholeOpt)
832 addPass(createSMEPeepholeOptPass());
833
834 // Run default MachineSSAOptimization first.
836
837 if (TM->getOptLevel() != CodeGenOptLevel::None) {
840 }
841}
842
843bool AArch64PassConfig::addILPOpts() {
844 if (EnableCondOpt)
846 if (EnableCCMP)
848 if (EnableMCR)
849 addPass(&MachineCombinerID);
851 addPass(createAArch64CondBrTuning());
853 addPass(&EarlyIfConverterLegacyID);
857 if (TM->getOptLevel() != CodeGenOptLevel::None)
859 return true;
860}
861
862void AArch64PassConfig::addPreRegAlloc() {
863 if (TM->getOptLevel() == CodeGenOptLevel::None)
865
866 // Change dead register definitions to refer to the zero register.
867 if (TM->getOptLevel() != CodeGenOptLevel::None &&
870
871 // Use AdvSIMD scalar instructions whenever profitable.
872 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAdvSIMDScalar) {
874 // The AdvSIMD pass may produce copies that can be rewritten to
875 // be register coalescer friendly.
877 }
878 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableMachinePipeliner)
879 addPass(&MachinePipelinerID);
880}
881
882void AArch64PassConfig::addPostRewrite() {
885}
886
887void AArch64PassConfig::addPostRegAlloc() {
888 // Remove redundant copy instructions.
889 if (TM->getOptLevel() != CodeGenOptLevel::None &&
892
893 if (TM->getOptLevel() != CodeGenOptLevel::None && usingDefaultRegAlloc())
894 // Improve performance for some FP/SIMD code for A57.
896}
897
898void AArch64PassConfig::addPreSched2() {
899 // Lower homogeneous frame instructions
902 // Expand some pseudo instructions to allow proper scheduling.
904 // Use load/store pair instructions when possible.
905 if (TM->getOptLevel() != CodeGenOptLevel::None) {
908 }
909 // Emit KCFI checks for indirect calls.
910 addPass(createKCFIPass());
911
912 // The AArch64SpeculationHardeningPass destroys dominator tree and natural
913 // loop info, which is needed for the FalkorHWPFFixPass and also later on.
914 // Therefore, run the AArch64SpeculationHardeningPass before the
915 // FalkorHWPFFixPass to avoid recomputing dominator tree and natural loop
916 // info.
918
919 if (TM->getOptLevel() != CodeGenOptLevel::None) {
921 addPass(createFalkorHWPFFixPass());
922 }
923}
924
925void AArch64PassConfig::addPreEmitPass() {
926 // Machine Block Placement might have created new opportunities when run
927 // at O3, where the Tail Duplication Threshold is set to 4 instructions.
928 // Run the load/store optimizer once more.
929 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive && EnableLoadStoreOpt)
931
932 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive &&
935 if (TM->getOptLevel() != CodeGenOptLevel::None)
937
939
940 if (TM->getTargetTriple().isOSWindows()) {
941 // Identify valid longjmp targets for Windows Control Flow Guard.
942 addPass(createCFGuardLongjmpPass());
943 // Identify valid eh continuation targets for Windows EHCont Guard.
945 }
946
947 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCollectLOH &&
948 TM->getTargetTriple().isOSBinFormatMachO())
950
951 // Apply code layout optimizations. Run late so detection reflects the
952 // final MI stream.
953 if (getOptLevel() != CodeGenOptLevel::None)
955}
956
957void AArch64PassConfig::addPostBBSections() {
962 // Relax conditional branch instructions if they're otherwise out of
963 // range of their destination.
965 addPass(&BranchRelaxationPassID);
966
967 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCompressJumpTables)
969}
970
971void AArch64PassConfig::addPreEmitPass2() {
972 // Insert pseudo probe annotation for callsite profiling
973 addPass(createPseudoProbeInserter());
974
975 // SVE bundles move prefixes with destructive operations. BLR_RVMARKER pseudo
976 // instructions are lowered to bundles as well.
977 addPass(createUnpackMachineBundlesLegacy(nullptr));
978}
979
980bool AArch64PassConfig::addRegAssignAndRewriteOptimized() {
983}
984
991
996
999 const auto *MFI = MF.getInfo<AArch64FunctionInfo>();
1000 return new yaml::AArch64FunctionInfo(*MFI);
1001}
1002
1005 SMDiagnostic &Error, SMRange &SourceRange) const {
1006 const auto &YamlMFI = static_cast<const yaml::AArch64FunctionInfo &>(MFI);
1007 MachineFunction &MF = PFS.MF;
1008 MF.getInfo<AArch64FunctionInfo>()->initializeBaseYamlFields(YamlMFI);
1009 return false;
1010}
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 > 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 bool scheduleFormTransposedTupleAdjacentToUsers(const TargetInstrInfo &TII, const TargetSubtargetInfo &TSI, const MachineInstr *FirstMI, const MachineInstr &SecondMI, const SDep *Dep)
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< bool > EnableSVEShuffleOpt("aarch64-enable-sve-shuffle-opts", cl::desc("Enable pattern matching of shuffles that could make use of SVE " "instructions like tbl or the bottom/top variants"), 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...
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
Provides analysis for continuously CSEing during GISel passes.
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
static cl::opt< bool > EnableGlobalMerge("enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"), cl::init(true))
const HexagonInstrInfo * TII
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)
This file contains some functions that are useful when dealing with strings.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
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.
unsigned getEnableGlobalISelAtO() const
Returns the optimisation level that enables GlobalISel.
const AArch64Subtarget * LastSubtarget
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 ...
bool isGlobalISelOptNone() const
This function checks whether the opt level is explicitly set to none, or whether GlobalISel was enabl...
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:1560
This class holds the attributes for a particular argument, parameter, function, or return value.
Definition Attributes.h:410
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:106
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:266
CodeGenTargetMachineImpl(const Target &T, 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.
static void setUseExtended(bool Enable)
This pass implements the localization mechanism described at the top of this file.
Definition Localizer.h:40
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...
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
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.
Scheduling dependency.
Definition ScheduleDAG.h:52
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition SourceMgr.h:305
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
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
TargetInstrInfo - Interface to description of machine instruction set.
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)
const MCAsmInfo & getMCAsmInfo() const
Return target specific asm information.
std::unique_ptr< const MCSubtargetInfo > STI
void setGlobalISel(bool Enable)
TargetOptions Options
CodeModel::Model getCodeModel() const
Returns the code model.
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:48
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,...
@ DynamicNoPIC
Definition CodeGen.h:26
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
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)
void initializeMachineSMEABIPass(PassRegistry &)
FunctionPass * createAArch64PostSelectOptimize()
void initializeAArch64PTrueCoalescingLegacyPass(PassRegistry &)
FunctionPass * createAArch64ConditionOptimizerLegacyPass()
void initializeAArch64A53Fix835769LegacyPass(PassRegistry &)
LLVM_ABI ModulePass * createJMCInstrumenterPass()
JMC instrument pass.
void initializeAArch64SpeculationHardeningPass(PassRegistry &)
FunctionPass * createAArch64RedundantCopyEliminationPass()
LLVM_ABI std::unique_ptr< ScheduleDAGMutation > createMacroFusionDAGMutation(ArrayRef< MacroFusionPredTy > Predicates, bool BranchOnly=false)
Create a DAG scheduling mutation to pair instructions back to back for instructions that benefit acco...
LLVM_ABI FunctionPass * createTypePromotionLegacyPass()
Create IR Type Promotion pass.
void initializeAArch64StackTaggingPreRALegacyPass(PassRegistry &)
FunctionPass * createMachineSMEABIPass(CodeGenOptLevel)
LLVM_ABI FunctionPass * createEHContGuardTargetsLegacy()
Creates Windows EH Continuation Guard target identification pass.
LLVM_ABI FunctionPass * createSelectOptimizePass()
This pass converts conditional moves to conditional jumps when profitable.
FunctionPass * createAArch64A53Fix835769LegacyPass()
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...
void initializeAArch64BranchTargetsLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createPseudoProbeInserter()
This pass inserts pseudo probe annotation for callsite profiling.
FunctionPass * createAArch64PostCoalescerPass()
void initializeAArch64PromoteConstantPass(PassRegistry &)
FunctionPass * createFalkorMarkStridedAccessesPass()
Target & getTheAArch64beTarget()
FunctionPass * createAArch64PointerAuthPass()
FunctionPass * createFalkorHWPFFixPass()
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
std::string utostr(uint64_t X, bool isNeg=false)
FunctionPass * createAArch64O0PreLegalizerCombiner()
FunctionPass * createAArch64SLSHardeningLegacyPass()
@ O0
Disable as many optimizations as possible.
void initializeAArch64CollectLOHLegacyPass(PassRegistry &)
void initializeAArch64PostLegalizerCombinerLegacyPass(PassRegistry &)
FunctionPass * createAArch64PostLegalizerCombinerLegacy(bool IsOptNone)
FunctionPass * createAArch64LoadStoreOptLegacyPass()
createAArch64LoadStoreOptimizationPass - returns an instance of the load / store optimization pass.
FunctionPass * createAArch64CondBrTuning()
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:85
void initializeAArch64Arm64ECCallLoweringPass(PassRegistry &)
void initializeAArch64SIMDInstrOptLegacyPass(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:389
FunctionPass * createAArch64A57FPLoadBalancingLegacyPass()
Target & getTheAArch64leTarget()
FunctionPass * createAArch64DeadRegisterDefinitions()
LLVM_ABI char & EarlyIfConverterLegacyID
EarlyIfConverter - This pass performs if-conversion on SSA form by inserting cmov instructions.
void initializeAArch64RedundantCondBranchLegacyPass(PassRegistry &)
void initializeAArch64PostSelectOptimizeLegacyPass(PassRegistry &)
FunctionPass * createSMEPeepholeOptPass()
FunctionPass * createAArch64PostLegalizerLowering()
ThinOrFullLTOPhase
This enumerates the LLVM full LTO or ThinLTO optimization phases.
Definition Pass.h:77
FunctionPass * createAArch64StackTaggingPreRALegacyPass()
void initializeAArch64CodeLayoutOptPass(PassRegistry &)
FunctionPass * createAArch64PTrueCoalescingLegacyPass()
LLVM_ABI void initializeMachineKCFILegacyPass(PassRegistry &)
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 &)
FunctionPass * createAArch64MIPeepholeOptLegacyPass()
LLVM_ABI FunctionPass * createUnpackMachineBundlesLegacy(std::function< bool(const MachineFunction &)> Ftor)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
void initializeAArch64AdvSIMDScalarLegacyPass(PassRegistry &)
FunctionPass * createAArch64CompressJumpTablesPass()
Target & getTheAArch64_32Target()
FunctionPass * createAArch64ConditionalCompares()
FunctionPass * createAArch64ExpandPseudoLegacyPass()
Returns an instance of the pseudo instruction expansion pass.
void initializeAArch64PointerAuthLegacyPass(PassRegistry &)
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 initializeAArch64StackTaggingPass(PassRegistry &)
void initializeAArch64PostLegalizerLoweringLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createKCFIPass()
Lowers KCFI operand bundles for indirect calls.
Definition KCFI.cpp:75
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()
void initializeAArch64ConditionOptimizerLegacyPass(PassRegistry &)
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()
void initializeAArch64PostCoalescerLegacyPass(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:227
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:230
LLVM_ABI FunctionPass * createCFGuardLongjmpPass()
Creates CFGuard longjmp target identification pass.
void initializeAArch64SLSHardeningLegacyPass(PassRegistry &)
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
Target & getTheARM64_32Target()
void initializeAArch64StorePairSuppressPass(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.
void initializeAArch64PreLegalizerCombinerLegacyPass(PassRegistry &)
FunctionPass * createAArch64ISelDag(AArch64TargetMachine &TM, CodeGenOptLevel OptLevel)
createAArch64ISelDag - This pass converts a legalized DAG into a AArch64-specific DAG,...
void initializeSVEShuffleOptsPass(PassRegistry &)
void initializeAArch64LowerHomogeneousPrologEpilogLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGuardPass()
Insert Control Flow Guard checks on indirect function calls.
Definition CFGuard.cpp:315
void initializeAArch64CondBrTuningPass(PassRegistry &)
LLVM_ABI char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
void initializeAArch64A57FPLoadBalancingLegacyPass(PassRegistry &)
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 &)
void initializeAArch64ExpandPseudoLegacyPass(PassRegistry &)
ModulePass * createAArch64LowerHomogeneousPrologEpilogPass()
LLVM_ABI bool isNonDataDep(const SDep *Dep)
Returns true if Dep is a non-null non-data dependency.
void initializeAArch64SRLTDefineSuperRegsLegacyPass(PassRegistry &)
FunctionPass * createAArch64SRLTDefineSuperRegsLegacyPass()
FunctionPass * createAArch64StackTaggingPass(bool IsOptNone)
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:390
ModulePass * createAArch64PromoteConstantPass()
void initializeAArch64CompressJumpTablesLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createEarlyCSEPass(bool UseMemorySSA=false)
LLVM_ABI MachineFunctionPass * createMachineCopyPropagationPass(bool UseCopyInstr)
void initializeAArch64RedundantCopyEliminationLegacyPass(PassRegistry &)
Pass * createSVEShuffleOptsPass()
FunctionPass * createAArch64CodeLayoutOptPass()
FunctionPass * createAArch64AdvSIMDScalar()
FunctionPass * createAArch64RedundantCondBranchPass()
void initializeAArch64DAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createAArch64SpeculationHardeningPass()
Returns an instance of the pseudo instruction expansion pass.
void initializeAArch64MIPeepholeOptLegacyPass(PassRegistry &)
void initializeAArch64DeadRegisterDefinitionsLegacyPass(PassRegistry &)
void initializeAArch64ConditionalComparesLegacyPass(PassRegistry &)
void initializeAArch64O0PreLegalizerCombinerLegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createInterleavedLoadCombinePass()
InterleavedLoadCombines Pass - This pass identifies interleaved loads and combines them into wide loa...
void initializeAArch64LoadStoreOptLegacyPass(PassRegistry &)
LLVM_ABI CGPassBuilderOption getCGPassBuilderOption()
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
cl::boolOrDefault EnableGlobalISelOption
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.