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"
35#include "llvm/CodeGen/Passes.h"
38#include "llvm/IR/Attributes.h"
39#include "llvm/IR/Function.h"
41#include "llvm/MC/MCAsmInfo.h"
44#include "llvm/Pass.h"
56#include <memory>
57
58using namespace llvm;
59
60static cl::opt<bool> EnableCCMP("aarch64-enable-ccmp",
61 cl::desc("Enable the CCMP formation pass"),
62 cl::init(true), cl::Hidden);
63
64static cl::opt<bool>
65 EnableCondBrTuning("aarch64-enable-cond-br-tune",
66 cl::desc("Enable the conditional branch tuning pass"),
67 cl::init(true), cl::Hidden);
68
70 "aarch64-enable-copy-propagation",
71 cl::desc("Enable the copy propagation with AArch64 copy instr"),
72 cl::init(true), cl::Hidden);
73
74static cl::opt<bool> EnableMCR("aarch64-enable-mcr",
75 cl::desc("Enable the machine combiner pass"),
76 cl::init(true), cl::Hidden);
77
78static cl::opt<bool> EnableStPairSuppress("aarch64-enable-stp-suppress",
79 cl::desc("Suppress STP for AArch64"),
80 cl::init(true), cl::Hidden);
81
83 "aarch64-enable-simd-scalar",
84 cl::desc("Enable use of AdvSIMD scalar integer instructions"),
85 cl::init(false), cl::Hidden);
86
87static cl::opt<bool>
88 EnablePromoteConstant("aarch64-enable-promote-const",
89 cl::desc("Enable the promote constant pass"),
90 cl::init(true), cl::Hidden);
91
93 "aarch64-enable-collect-loh",
94 cl::desc("Enable the pass that emits the linker optimization hints (LOH)"),
95 cl::init(true), cl::Hidden);
96
97static cl::opt<bool>
98 EnableDeadRegisterElimination("aarch64-enable-dead-defs", cl::Hidden,
99 cl::desc("Enable the pass that removes dead"
100 " definitions and replaces stores to"
101 " them with stores to the zero"
102 " register"),
103 cl::init(true));
104
106 "aarch64-enable-copyelim",
107 cl::desc("Enable the redundant copy elimination pass"), cl::init(true),
108 cl::Hidden);
109
110static cl::opt<bool> EnableLoadStoreOpt("aarch64-enable-ldst-opt",
111 cl::desc("Enable the load/store pair"
112 " optimization pass"),
113 cl::init(true), cl::Hidden);
114
116 "aarch64-enable-atomic-cfg-tidy", cl::Hidden,
117 cl::desc("Run SimplifyCFG after expanding atomic operations"
118 " to make use of cmpxchg flow-based information"),
119 cl::init(true));
120
121static cl::opt<bool>
122EnableEarlyIfConversion("aarch64-enable-early-ifcvt", cl::Hidden,
123 cl::desc("Run early if-conversion"),
124 cl::init(true));
125
126static cl::opt<bool>
127 EnableCondOpt("aarch64-enable-condopt",
128 cl::desc("Enable the condition optimizer pass"),
129 cl::init(true), cl::Hidden);
130
131static cl::opt<bool>
132 EnableGEPOpt("aarch64-enable-gep-opt", cl::Hidden,
133 cl::desc("Enable optimizations on complex GEPs"),
134 cl::init(false));
135
136static cl::opt<bool>
137 EnableSelectOpt("aarch64-select-opt", cl::Hidden,
138 cl::desc("Enable select to branch optimizations"),
139 cl::init(true));
140
141static cl::opt<bool>
142 BranchRelaxation("aarch64-enable-branch-relax", cl::Hidden, cl::init(true),
143 cl::desc("Relax out of range conditional branches"));
144
146 "aarch64-enable-compress-jump-tables", cl::Hidden, cl::init(true),
147 cl::desc("Use smallest entry possible for jump tables"));
148
149// FIXME: Unify control over GlobalMerge.
151 EnableGlobalMerge("aarch64-enable-global-merge", cl::Hidden,
152 cl::desc("Enable the global merge pass"));
153
154static cl::opt<bool>
155 EnableLoopDataPrefetch("aarch64-enable-loop-data-prefetch", cl::Hidden,
156 cl::desc("Enable the loop data prefetch pass"),
157 cl::init(true));
158
160 "aarch64-enable-global-isel-at-O", cl::Hidden,
161 cl::desc("Enable GlobalISel at or below an opt level (-1 to disable)"),
162 cl::init(0));
163
164static cl::opt<bool>
165 EnableSVEIntrinsicOpts("aarch64-enable-sve-intrinsic-opts", cl::Hidden,
166 cl::desc("Enable SVE intrinsic opts"),
167 cl::init(true));
168
169static cl::opt<bool>
170 EnableSMEPeepholeOpt("enable-aarch64-sme-peephole-opt", cl::init(true),
172 cl::desc("Perform SME peephole optimization"));
173
174static cl::opt<bool> EnableFalkorHWPFFix("aarch64-enable-falkor-hwpf-fix",
175 cl::init(true), cl::Hidden);
176
177static cl::opt<bool>
178 EnableBranchTargets("aarch64-enable-branch-targets", cl::Hidden,
179 cl::desc("Enable the AArch64 branch target pass"),
180 cl::init(true));
181
183 "aarch64-sve-vector-bits-max",
184 cl::desc("Assume SVE vector registers are at most this big, "
185 "with zero meaning no maximum size is assumed."),
186 cl::init(0), cl::Hidden);
187
189 "aarch64-sve-vector-bits-min",
190 cl::desc("Assume SVE vector registers are at least this big, "
191 "with zero meaning no minimum size is assumed."),
192 cl::init(0), cl::Hidden);
193
195 "force-streaming",
196 cl::desc("Force the use of streaming code for all functions"),
197 cl::init(false), cl::Hidden);
198
200 "force-streaming-compatible",
201 cl::desc("Force the use of streaming-compatible code for all functions"),
202 cl::init(false), cl::Hidden);
203
205
207 "aarch64-enable-gisel-ldst-prelegal",
208 cl::desc("Enable GlobalISel's pre-legalizer load/store optimization pass"),
209 cl::init(true), cl::Hidden);
210
212 "aarch64-enable-gisel-ldst-postlegal",
213 cl::desc("Enable GlobalISel's post-legalizer load/store optimization pass"),
214 cl::init(false), cl::Hidden);
215
216static cl::opt<bool>
217 EnableSinkFold("aarch64-enable-sink-fold",
218 cl::desc("Enable sinking and folding of instruction copies"),
219 cl::init(true), cl::Hidden);
220
221static cl::opt<bool>
222 EnableMachinePipeliner("aarch64-enable-pipeliner",
223 cl::desc("Enable Machine Pipeliner for AArch64"),
224 cl::init(false), cl::Hidden);
225
227 "aarch64-srlt-mitigate-sr2r",
228 cl::desc("Enable SUBREG_TO_REG mitigation by adding 'implicit-def' for "
229 "super-regs when using Subreg Liveness Tracking"),
230 cl::init(true), cl::Hidden);
231
233 "aarch64-enable-sve-shuffle-opts",
234 cl::desc("Enable pattern matching of shuffles that could make use of SVE "
235 "instructions like tbl or the bottom/top variants"),
236 cl::init(true), cl::Hidden);
237
240 // Register the target.
246 auto &PR = *PassRegistry::getPassRegistry();
291}
292
294 const bool GlobalISelFlag = getCGPassBuilderOption().EnableGlobalISelOption ==
296
298 (static_cast<unsigned>(getOptLevel()) >
299 static_cast<unsigned>(EnableGlobalISelAtO) &&
300 !GlobalISelFlag);
301}
302
304
305//===----------------------------------------------------------------------===//
306// AArch64 Lowering public interface.
307//===----------------------------------------------------------------------===//
308static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
309 if (TT.isOSBinFormatMachO())
310 return std::make_unique<AArch64_MachoTargetObjectFile>();
311 if (TT.isOSBinFormatCOFF())
312 return std::make_unique<AArch64_COFFTargetObjectFile>();
313
314 return std::make_unique<AArch64_ELFTargetObjectFile>();
315}
316
318 if (CPU.empty() && TT.isArm64e())
319 return "apple-a12";
320 return CPU;
321}
322
324 std::optional<Reloc::Model> RM) {
325 // AArch64 Darwin and Windows are always PIC.
326 if (TT.isOSDarwin() || TT.isOSWindows())
327 return Reloc::PIC_;
328 // On ELF platforms the default static relocation model has a smart enough
329 // linker to cope with referencing external symbols defined in a shared
330 // library. Hence DynamicNoPIC doesn't need to be promoted to PIC.
331 if (!RM || *RM == Reloc::DynamicNoPIC)
332 return Reloc::Static;
333 return *RM;
334}
335
336static CodeModel::Model
338 std::optional<CodeModel::Model> CM, bool JIT) {
339 if (CM) {
340 if (*CM != CodeModel::Small && *CM != CodeModel::Tiny &&
341 *CM != CodeModel::Large) {
343 "Only small, tiny and large code models are allowed on AArch64");
344 } else if (*CM == CodeModel::Tiny && !TT.isOSBinFormatELF()) {
345 report_fatal_error("tiny code model is only supported on ELF");
346 }
347 return *CM;
348 }
349 // The default MCJIT memory managers make no guarantees about where they can
350 // find an executable page; JITed code needs to be able to refer to globals
351 // no matter how far away they are.
352 // We should set the CodeModel::Small for Windows ARM64 in JIT mode,
353 // since with large code model LLVM generating 4 MOV instructions, and
354 // Windows doesn't support relocating these long branch (4 MOVs).
355 if (JIT && !TT.isOSWindows())
356 return CodeModel::Large;
357 return CodeModel::Small;
358}
359
360/// Create an AArch64 architecture model.
361///
363 StringRef CPU, StringRef FS,
364 const TargetOptions &Options,
365 std::optional<Reloc::Model> RM,
366 std::optional<CodeModel::Model> CM,
367 CodeGenOptLevel OL, bool JIT,
368 bool LittleEndian)
369 : CodeGenTargetMachineImpl(T, TT.computeDataLayout(), TT,
370 computeDefaultCPU(TT, CPU), FS, Options,
372 getEffectiveAArch64CodeModel(TT, CM, JIT), OL),
373 TLOF(createTLOF(getTargetTriple())), isLittle(LittleEndian) {
374 initAsmInfo();
375
376 if (TT.isOSBinFormatMachO()) {
377 this->Options.TrapUnreachable = true;
378 this->Options.NoTrapAfterNoreturn = true;
379 }
380
381 if (getMCAsmInfo().usesWindowsCFI()) {
382 // Unwinding can get confused if the last instruction in an
383 // exception-handling region (function, funclet, try block, etc.)
384 // is a call.
385 //
386 // FIXME: We could elide the trap if the next instruction would be in
387 // the same region anyway.
388 this->Options.TrapUnreachable = true;
389 }
390
391 if (this->Options.TLSSize == 0) // default
392 this->Options.TLSSize = 24;
393 if ((getCodeModel() == CodeModel::Small ||
395 this->Options.TLSSize > 32)
396 // for the small (and kernel) code model, the maximum TLS size is 4GiB
397 this->Options.TLSSize = 32;
398 else if (getCodeModel() == CodeModel::Tiny && this->Options.TLSSize > 24)
399 // for the tiny code model, the maximum TLS size is 1MiB (< 16MiB)
400 this->Options.TLSSize = 24;
401
402 const bool TargetSupportsGISel =
403 TT.getArch() != Triple::aarch64_32 &&
404 TT.getEnvironment() != Triple::GNUILP32 &&
405 !(getCodeModel() == CodeModel::Large && TT.isOSBinFormatMachO());
406
407 const bool GlobalISelFlag = getCGPassBuilderOption().EnableGlobalISelOption ==
409
410 // Enable GlobalISel at or below EnableGlobalISelAt0, unless this is
411 // MachO/CodeModel::Large, which GlobalISel does not support.
412 if (TargetSupportsGISel && EnableGlobalISelAtO != -1 &&
413 (static_cast<int>(getOptLevel()) <= EnableGlobalISelAtO ||
414 (!GlobalISelFlag && !Options.EnableGlobalISel))) {
415 setGlobalISel(true);
417 }
418
420
421 // AArch64 supports the MachineOutliner.
422 setMachineOutliner(true);
423
424 // AArch64 supports default outlining behaviour.
426
427 // AArch64 supports the debug entry values.
429
430 // AArch64 supports fixing up the DWARF unwind information.
431 if (!getMCAsmInfo().usesWindowsCFI())
432 setCFIFixup(true);
433}
434
438
440
441const AArch64Subtarget *
443 Attribute CPUAttr = F.getFnAttribute("target-cpu");
444 Attribute TuneAttr = F.getFnAttribute("tune-cpu");
445 Attribute FSAttr = F.getFnAttribute("target-features");
446
447 StringRef CPU = CPUAttr.isValid() ? CPUAttr.getValueAsString() : TargetCPU;
448 StringRef TuneCPU = TuneAttr.isValid() ? TuneAttr.getValueAsString() : CPU;
449 StringRef FS = FSAttr.isValid() ? FSAttr.getValueAsString() : TargetFS;
450 bool HasMinSize = F.hasMinSize();
451
452 bool IsStreaming = ForceStreaming ||
453 F.hasFnAttribute("aarch64_pstate_sm_enabled") ||
454 F.hasFnAttribute("aarch64_pstate_sm_body");
455 bool IsStreamingCompatible = ForceStreamingCompatible ||
456 F.hasFnAttribute("aarch64_pstate_sm_compatible");
457
458 unsigned MinSVEVectorSize = 0;
459 unsigned MaxSVEVectorSize = 0;
460 if (F.hasFnAttribute(Attribute::VScaleRange)) {
461 ConstantRange CR = getVScaleRange(&F, 64);
462 MinSVEVectorSize = CR.getUnsignedMin().getZExtValue() * 128;
463 MaxSVEVectorSize = CR.getUnsignedMax().getZExtValue() * 128;
464 } else {
465 MinSVEVectorSize = SVEVectorBitsMinOpt;
466 MaxSVEVectorSize = SVEVectorBitsMaxOpt;
467 }
468
469 assert(MinSVEVectorSize % 128 == 0 &&
470 "SVE requires vector length in multiples of 128!");
471 assert(MaxSVEVectorSize % 128 == 0 &&
472 "SVE requires vector length in multiples of 128!");
473 assert((MaxSVEVectorSize >= MinSVEVectorSize || MaxSVEVectorSize == 0) &&
474 "Minimum SVE vector size should not be larger than its maximum!");
475
476 // Sanitize user input in case of no asserts
477 if (MaxSVEVectorSize != 0) {
478 MinSVEVectorSize = std::min(MinSVEVectorSize, MaxSVEVectorSize);
479 MaxSVEVectorSize = std::max(MinSVEVectorSize, MaxSVEVectorSize);
480 }
481
483 // This lookup is hot during repeated TTI queries, so build the key directly
484 // instead of formatting through raw_svector_ostream.
485 Key += "SVEMin";
486 Key += utostr(MinSVEVectorSize);
487 Key += "SVEMax";
488 Key += utostr(MaxSVEVectorSize);
489 Key += "IsStreaming=";
490 Key += utostr(IsStreaming);
491 Key += "IsStreamingCompatible=";
492 Key += utostr(IsStreamingCompatible);
493 Key += CPU;
494 Key += TuneCPU;
495 Key += FS;
496 Key += "HasMinSize=";
497 Key += utostr(HasMinSize);
498
499 auto &I = SubtargetMap[Key];
500 if (!I) {
501 I = std::make_unique<AArch64Subtarget>(
502 TargetTriple, CPU, TuneCPU, FS, *this, isLittle, MinSVEVectorSize,
503 MaxSVEVectorSize, IsStreaming, IsStreamingCompatible, HasMinSize,
505 }
506
507 if (IsStreaming && !I->hasSME())
508 reportFatalUsageError("streaming SVE functions require SME");
509
510 return I.get();
511}
512
513// Encourage placing FORM_TRANSPOSED_REG immediately before the instruction that
514// uses/consumes it. This ensures its def has a short live range, which means
515// we're more likely to allocate registers its operands first (which works best
516// for the hints in AArch64RegisterInfo::getRegAllocationHints).
518 const TargetInstrInfo &TII, const TargetSubtargetInfo &TSI,
519 const MachineInstr *FirstMI, const MachineInstr &SecondMI) {
520 return !FirstMI ||
521 FirstMI->getOpcode() == AArch64::FORM_TRANSPOSED_REG_TUPLE_X2_PSEUDO ||
522 FirstMI->getOpcode() == AArch64::FORM_TRANSPOSED_REG_TUPLE_X4_PSEUDO;
523}
524
527 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
529 DAG->addMutation(createLoadClusterDAGMutation(DAG->TII, DAG->TRI));
530 DAG->addMutation(createStoreClusterDAGMutation(DAG->TII, DAG->TRI));
531 if (ST.hasFusion())
532 DAG->addMutation(createAArch64MacroFusionDAGMutation());
533 if (ST.hasSME() && ST.isStreaming())
534 DAG->addMutation(createMacroFusionDAGMutation(
536 return DAG;
537}
538
541 const AArch64Subtarget &ST = C->MF->getSubtarget<AArch64Subtarget>();
543 if (ST.hasFusion()) {
544 // Run the Macro Fusion after RA again since literals are expanded from
545 // pseudos then (v. addPreSched2()).
546 DAG->addMutation(createAArch64MacroFusionDAGMutation());
547 return DAG;
548 }
549
550 return DAG;
551}
552
554 const SmallPtrSetImpl<MachineInstr *> &MIs) const {
555 if (MIs.empty())
556 return 0;
557 auto *MI = *MIs.begin();
558 auto *FuncInfo = MI->getMF()->getInfo<AArch64FunctionInfo>();
559 return FuncInfo->clearLinkerOptimizationHints(MIs);
560}
561
562void AArch64leTargetMachine::anchor() { }
563
565 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
566 const TargetOptions &Options, std::optional<Reloc::Model> RM,
567 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
568 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, true) {}
569
570void AArch64beTargetMachine::anchor() { }
571
573 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
574 const TargetOptions &Options, std::optional<Reloc::Model> RM,
575 std::optional<CodeModel::Model> CM, CodeGenOptLevel OL, bool JIT)
576 : AArch64TargetMachine(T, TT, CPU, FS, Options, RM, CM, OL, JIT, false) {}
577
578namespace {
579
580/// AArch64 Code Generator Pass Configuration Options.
581class AArch64PassConfig : public TargetPassConfig {
582public:
583 AArch64PassConfig(AArch64TargetMachine &TM, PassManagerBase &PM)
584 : TargetPassConfig(TM, PM) {
586 substitutePass(&PostRASchedulerID, &PostMachineSchedulerID);
587 setEnableSinkAndFold(EnableSinkFold);
588 }
589
590 AArch64TargetMachine &getAArch64TargetMachine() const {
592 }
593
594 void addIRPasses() override;
595 bool addPreISel() override;
596 void addCodeGenPrepare() override;
597 bool addInstSelector() override;
598 bool addIRTranslator() override;
599 void addPreLegalizeMachineIR() override;
600 bool addLegalizeMachineIR() override;
601 void addPreRegBankSelect() override;
602 bool addRegBankSelect() override;
603 bool addGlobalInstructionSelect() override;
604 void addMachineSSAOptimization() override;
605 bool addILPOpts() override;
606 void addPreRegAlloc() override;
607 void addPostRewrite() override;
608 void addPostRegAlloc() override;
609 void addPreSched2() override;
610 void addPreEmitPass() override;
611 void addPostBBSections() override;
612 void addPreEmitPass2() override;
613 bool addRegAssignAndRewriteOptimized() override;
614
615 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
616};
617
618} // end anonymous namespace
619
621#define GET_PASS_REGISTRY "AArch64PassRegistry.def"
623
624 PB.registerLateLoopOptimizationsEPCallback(
625 [=](LoopPassManager &LPM, OptimizationLevel Level) {
626 if (Level != OptimizationLevel::O0)
627 LPM.addPass(LoopIdiomVectorizePass());
628 });
629 if (getTargetTriple().isOSWindows())
630 PB.registerPipelineEarlySimplificationEPCallback(
633 });
634}
635
638 return TargetTransformInfo(std::make_unique<AArch64TTIImpl>(this, F));
639}
640
642 return new AArch64PassConfig(*this, PM);
643}
644
645std::unique_ptr<CSEConfigBase> AArch64PassConfig::getCSEConfig() const {
646 return getStandardCSEConfigForOpt(TM->getOptLevel());
647}
648
649void AArch64PassConfig::addIRPasses() {
650 // Always expand atomic operations, we don't deal with atomicrmw or cmpxchg
651 // ourselves.
653
654 // Expand any SVE vector library calls that we can't code generate directly.
656 TM->getOptLevel() != CodeGenOptLevel::None)
658
659 // Cmpxchg instructions are often used with a subsequent comparison to
660 // determine whether it succeeded. We can exploit existing control-flow in
661 // ldrex/strex loops to simplify this, but it needs tidying up.
662 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAtomicTidy)
664 .forwardSwitchCondToPhi(true)
665 .convertSwitchRangeToICmp(true)
666 .convertSwitchToLookupTable(true)
667 .needCanonicalLoops(false)
668 .hoistCommonInsts(true)
669 .sinkCommonInsts(true)));
670
671 // Run LoopDataPrefetch
672 //
673 // Run this before LSR to remove the multiplies involved in computing the
674 // pointer values N iterations ahead.
675 if (TM->getOptLevel() != CodeGenOptLevel::None) {
680 }
681
682 if (EnableGEPOpt) {
683 // Call SeparateConstOffsetFromGEP pass to extract constants within indices
684 // and lower a GEP with multiple indices to either arithmetic operations or
685 // multiple GEPs with single index.
687 // Call EarlyCSE pass to find and remove subexpressions in the lowered
688 // result.
689 addPass(createEarlyCSEPass());
690 // Do loop invariant code motion in case part of the lowered result is
691 // invariant.
692 addPass(createLICMPass());
693 }
694
696
697 if (getOptLevel() == CodeGenOptLevel::Aggressive && EnableSelectOpt)
698 addPass(createSelectOptimizePass());
699
701 /*IsOptNone=*/TM->getOptLevel() == CodeGenOptLevel::None));
702
703 // Try to use tbl in place of other shuffling operations if doing so would
704 // reduce the total number of instructions. Shuffle masks for big endian may
705 // be different, so require a little endian target.
706 if (TM->createDataLayout().isLittleEndian() &&
708 addPass(createSVEShuffleOptsPass());
709
710 // Match complex arithmetic patterns
711 if (TM->getOptLevel() >= CodeGenOptLevel::Default)
713
714 // Match interleaved memory accesses to ldN/stN intrinsics.
715 if (TM->getOptLevel() != CodeGenOptLevel::None) {
718 }
719
720 // Add Control Flow Guard checks.
721 if (TM->getTargetTriple().isOSWindows()) {
722 if (TM->getTargetTriple().isWindowsArm64EC())
724 else
725 addPass(createCFGuardPass());
726 }
727
728 if (TM->Options.JMCInstrument)
729 addPass(createJMCInstrumenterPass());
730}
731
732// Pass Pipeline Configuration
733bool AArch64PassConfig::addPreISel() {
734 // Run promote constant before global merge, so that the promoted constants
735 // get a chance to be merged
736 if (TM->getOptLevel() != CodeGenOptLevel::None && EnablePromoteConstant)
738 // FIXME: On AArch64, this depends on the type.
739 // Basically, the addressable offsets are up to 4095 * Ty.getSizeInBytes().
740 // and the offset has to be a multiple of the related size in bytes.
741 if ((TM->getOptLevel() != CodeGenOptLevel::None &&
744 bool OnlyOptimizeForSize =
745 (TM->getOptLevel() < CodeGenOptLevel::Aggressive) &&
747
748 // Merging of extern globals is enabled by default on non-Mach-O as we
749 // expect it to be generally either beneficial or harmless. On Mach-O it
750 // is disabled as we emit the .subsections_via_symbols directive which
751 // means that merging extern globals is not safe.
752 bool MergeExternalByDefault = !TM->getTargetTriple().isOSBinFormatMachO();
753 addPass(createGlobalMergePass(TM, 4095, OnlyOptimizeForSize,
754 MergeExternalByDefault));
755 }
756
757 return false;
758}
759
760void AArch64PassConfig::addCodeGenPrepare() {
761 if (getOptLevel() != CodeGenOptLevel::None)
764}
765
766bool AArch64PassConfig::addInstSelector() {
767 addPass(createAArch64ISelDag(getAArch64TargetMachine(), getOptLevel()));
768
769 // For ELF, cleanup any local-dynamic TLS accesses (i.e. combine as many
770 // references to _TLS_MODULE_BASE_ as possible.
771 if (TM->getTargetTriple().isOSBinFormatELF() &&
772 getOptLevel() != CodeGenOptLevel::None)
774
775 return false;
776}
777
778bool AArch64PassConfig::addIRTranslator() {
779 addPass(new IRTranslator(getOptLevel()));
780 return false;
781}
782
783void AArch64PassConfig::addPreLegalizeMachineIR() {
784 if (getAArch64TargetMachine().isGlobalISelOptNone()) {
786 addPass(new Localizer());
787 } else {
789 addPass(new Localizer());
791 addPass(new LoadStoreOpt());
792 }
793}
794
795bool AArch64PassConfig::addLegalizeMachineIR() {
796 addPass(new Legalizer());
797 return false;
798}
799
800void AArch64PassConfig::addPreRegBankSelect() {
801 const bool IsGlobalISelOptNone =
802 getAArch64TargetMachine().isGlobalISelOptNone();
803 if (!IsGlobalISelOptNone) {
804 addPass(createAArch64PostLegalizerCombinerLegacy(IsGlobalISelOptNone));
806 addPass(new LoadStoreOpt());
807 }
809}
810
811bool AArch64PassConfig::addRegBankSelect() {
812 addPass(new RegBankSelect());
813 return false;
814}
815
816bool AArch64PassConfig::addGlobalInstructionSelect() {
817 addPass(new InstructionSelect(getOptLevel()));
818 if (!getAArch64TargetMachine().isGlobalISelOptNone())
820 return false;
821}
822
823void AArch64PassConfig::addMachineSSAOptimization() {
824 if (TM->getOptLevel() != CodeGenOptLevel::None)
825 addPass(createMachineSMEABIPass(TM->getOptLevel()));
826
827 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableSMEPeepholeOpt)
828 addPass(createSMEPeepholeOptPass());
829
830 // Run default MachineSSAOptimization first.
832
833 if (TM->getOptLevel() != CodeGenOptLevel::None)
835}
836
837bool AArch64PassConfig::addILPOpts() {
838 if (EnableCondOpt)
840 if (EnableCCMP)
842 if (EnableMCR)
843 addPass(&MachineCombinerID);
845 addPass(createAArch64CondBrTuning());
847 addPass(&EarlyIfConverterLegacyID);
851 if (TM->getOptLevel() != CodeGenOptLevel::None)
853 return true;
854}
855
856void AArch64PassConfig::addPreRegAlloc() {
857 if (TM->getOptLevel() == CodeGenOptLevel::None)
859
860 // Change dead register definitions to refer to the zero register.
861 if (TM->getOptLevel() != CodeGenOptLevel::None &&
864
865 // Use AdvSIMD scalar instructions whenever profitable.
866 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAdvSIMDScalar) {
868 // The AdvSIMD pass may produce copies that can be rewritten to
869 // be register coalescer friendly.
871 }
872 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableMachinePipeliner)
873 addPass(&MachinePipelinerID);
874}
875
876void AArch64PassConfig::addPostRewrite() {
879}
880
881void AArch64PassConfig::addPostRegAlloc() {
882 // Remove redundant copy instructions.
883 if (TM->getOptLevel() != CodeGenOptLevel::None &&
886
887 if (TM->getOptLevel() != CodeGenOptLevel::None && usingDefaultRegAlloc())
888 // Improve performance for some FP/SIMD code for A57.
890}
891
892void AArch64PassConfig::addPreSched2() {
893 // Lower homogeneous frame instructions
896 // Expand some pseudo instructions to allow proper scheduling.
898 // Use load/store pair instructions when possible.
899 if (TM->getOptLevel() != CodeGenOptLevel::None) {
902 }
903 // Emit KCFI checks for indirect calls.
904 addPass(createKCFIPass());
905
906 // The AArch64SpeculationHardeningPass destroys dominator tree and natural
907 // loop info, which is needed for the FalkorHWPFFixPass and also later on.
908 // Therefore, run the AArch64SpeculationHardeningPass before the
909 // FalkorHWPFFixPass to avoid recomputing dominator tree and natural loop
910 // info.
912
913 if (TM->getOptLevel() != CodeGenOptLevel::None) {
915 addPass(createFalkorHWPFFixPass());
916 }
917}
918
919void AArch64PassConfig::addPreEmitPass() {
920 // Machine Block Placement might have created new opportunities when run
921 // at O3, where the Tail Duplication Threshold is set to 4 instructions.
922 // Run the load/store optimizer once more.
923 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive && EnableLoadStoreOpt)
925
926 if (TM->getOptLevel() >= CodeGenOptLevel::Aggressive &&
929 if (TM->getOptLevel() != CodeGenOptLevel::None)
931
933
934 if (TM->getTargetTriple().isOSWindows()) {
935 // Identify valid longjmp targets for Windows Control Flow Guard.
936 addPass(createCFGuardLongjmpPass());
937 // Identify valid eh continuation targets for Windows EHCont Guard.
939 }
940
941 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCollectLOH &&
942 TM->getTargetTriple().isOSBinFormatMachO())
944
945 // Apply code layout optimizations. Run late so detection reflects the
946 // final MI stream.
947 if (getOptLevel() != CodeGenOptLevel::None)
949}
950
951void AArch64PassConfig::addPostBBSections() {
956 // Relax conditional branch instructions if they're otherwise out of
957 // range of their destination.
959 addPass(&BranchRelaxationPassID);
960
961 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableCompressJumpTables)
963}
964
965void AArch64PassConfig::addPreEmitPass2() {
966 // Insert pseudo probe annotation for callsite profiling
967 addPass(createPseudoProbeInserter());
968
969 // SVE bundles move prefixes with destructive operations. BLR_RVMARKER pseudo
970 // instructions are lowered to bundles as well.
971 addPass(createUnpackMachineBundlesLegacy(nullptr));
972}
973
974bool AArch64PassConfig::addRegAssignAndRewriteOptimized() {
977}
978
985
990
993 const auto *MFI = MF.getInfo<AArch64FunctionInfo>();
994 return new yaml::AArch64FunctionInfo(*MFI);
995}
996
999 SMDiagnostic &Error, SMRange &SourceRange) const {
1000 const auto &YamlMFI = static_cast<const yaml::AArch64FunctionInfo &>(MFI);
1001 MachineFunction &MF = PFS.MF;
1002 MF.getInfo<AArch64FunctionInfo>()->initializeBaseYamlFields(YamlMFI);
1003 return false;
1004}
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 > 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 bool scheduleFormTransposedTupleAdjacentToUsers(const TargetInstrInfo &TII, const TargetSubtargetInfo &TSI, const MachineInstr *FirstMI, const MachineInstr &SecondMI)
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:856
Provides analysis for continuously CSEing during GISel passes.
#define LLVM_ABI
Definition Compiler.h:215
#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))
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.
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:1565
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:105
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:261
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.
static void setUseExtended(bool Enable)
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...
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
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:303
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:47
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
Interfaces for registering analysis passes, producing common pass manager configurations,...
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
@ DynamicNoPIC
Definition CodeGen.h:25
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()
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 * 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()
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:386
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 &)
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:69
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 &)
ModulePass * createSVEIntrinsicOptsPass()
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
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:316
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 &)
LLVM_ABI FunctionPass * createEHContGuardTargetsPass()
Creates Windows EH Continuation Guard target identification pass.
ModulePass * createAArch64LowerHomogeneousPrologEpilogPass()
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 initializeSVEIntrinsicOptsPass(PassRegistry &)
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.