LLVM 24.0.0git
ARMTargetMachine.cpp
Go to the documentation of this file.
1//===-- ARMTargetMachine.cpp - Define TargetMachine for ARM ---------------===//
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
12#include "ARMTargetMachine.h"
13#include "ARM.h"
14#include "ARMLatencyMutations.h"
16#include "ARMMacroFusion.h"
17#include "ARMSubtarget.h"
18#include "ARMTargetObjectFile.h"
22#include "llvm/ADT/StringRef.h"
35#include "llvm/CodeGen/Passes.h"
37#include "llvm/IR/Attributes.h"
38#include "llvm/IR/CallingConv.h"
39#include "llvm/IR/DataLayout.h"
41#include "llvm/IR/Function.h"
43#include "llvm/IR/InstrTypes.h"
44#include "llvm/IR/Module.h"
46#include "llvm/Pass.h"
57#include "llvm/Transforms/IPO.h"
59#include <cassert>
60#include <memory>
61#include <optional>
62#include <string>
63
64using namespace llvm;
65
66static cl::opt<bool>
67DisableA15SDOptimization("disable-a15-sd-optimization", cl::Hidden,
68 cl::desc("Inhibit optimization of S->D register accesses on A15"),
69 cl::init(false));
70
71static cl::opt<bool>
72EnableAtomicTidy("arm-atomic-cfg-tidy", cl::Hidden,
73 cl::desc("Run SimplifyCFG after expanding atomic operations"
74 " to make use of cmpxchg flow-based information"),
75 cl::init(true));
76
77static cl::opt<bool>
78EnableARMLoadStoreOpt("arm-load-store-opt", cl::Hidden,
79 cl::desc("Enable ARM load/store optimization pass"),
80 cl::init(true));
81
82// FIXME: Unify control over GlobalMerge.
84EnableGlobalMerge("arm-global-merge", cl::Hidden,
85 cl::desc("Enable the global merge pass"));
86
87namespace llvm {
89}
90
121
122static std::unique_ptr<TargetLoweringObjectFile> createTLOF(const Triple &TT) {
123 if (TT.isOSBinFormatMachO())
124 return std::make_unique<TargetLoweringObjectFileMachO>();
125 if (TT.isOSWindows())
126 return std::make_unique<TargetLoweringObjectFileCOFF>();
127 return std::make_unique<ARMElfTargetObjectFile>();
128}
129
131 std::optional<Reloc::Model> RM) {
132 if (!RM)
133 // Default relocation model on Darwin is PIC.
134 return TT.isOSBinFormatMachO() ? Reloc::PIC_ : Reloc::Static;
135
136 if (*RM == Reloc::ROPI || *RM == Reloc::RWPI || *RM == Reloc::ROPI_RWPI)
137 assert(TT.isOSBinFormatELF() &&
138 "ROPI/RWPI currently only supported for ELF");
139
140 // DynamicNoPIC is only used on darwin.
141 if (*RM == Reloc::DynamicNoPIC && !TT.isOSDarwin())
142 return Reloc::Static;
143
144 return *RM;
145}
146
147/// Create an ARM architecture model.
148///
150 StringRef CPU, StringRef FS,
151 const TargetOptions &Options,
152 std::optional<Reloc::Model> RM,
153 std::optional<CodeModel::Model> CM,
156 T, TT.computeDataLayout(Options.MCOptions.ABIName), TT, CPU, FS,
158 getEffectiveCodeModel(CM, CodeModel::Small), OL),
159 TargetABI(ARM::computeTargetABI(TT, Options.MCOptions.ABIName)),
161
162 if (TT.isOSBinFormatMachO()) {
163 this->Options.TrapUnreachable = true;
164 this->Options.NoTrapAfterNoreturn = true;
165 }
166
167 // ARM supports the debug entry values.
169
170 initAsmInfo();
171
172 // ARM supports the MachineOutliner.
173 setMachineOutliner(true);
175}
176
178
180 BumpPtrAllocator &Allocator, const Function &F,
181 const TargetSubtargetInfo *STI) const {
182 const auto *ARMSTI = static_cast<const ARMSubtarget *>(STI);
183 if (!ARMSTI->hasFPRegs() || ARMSTI->isThumb1Only() ||
184 ARMSTI->useSoftFloat()) {
185 const StringRef FPRegsUnavailableMsg =
186 ", but floating-point registers are unavailable";
187 const ARMTargetLowering *TLI = ARMSTI->getTargetLowering();
188
189 if (TLI->getEffectiveCallingConv(F.getCallingConv(), F.isVarArg()) ==
191 F.getContext().diagnose(DiagnosticInfoUnsupported(
192 F, Twine("calling convention is hard-float") + FPRegsUnavailableMsg,
193 DiagnosticLocation(F.getSubprogram())));
194 } else {
195 for (const Instruction &I : instructions(F)) {
196 const auto *CB = dyn_cast<CallBase>(&I);
197 if (!CB || CB->isInlineAsm() ||
198 (CB->getCalledFunction() && CB->getCalledFunction()->isIntrinsic()))
199 continue;
200 if (TLI->getEffectiveCallingConv(CB->getCallingConv(),
201 CB->getFunctionType()->isVarArg()) ==
203 const Function *Callee = CB->getCalledFunction();
204 F.getContext().diagnose(DiagnosticInfoUnsupported(
205 F,
206 (Callee ? Twine("'") + F.getName() + "' calls '" +
207 Callee->getName() + "', which"
208 : Twine("'") + F.getName() +
209 "' makes an indirect call that") +
210 " expects a hard-float calling convention" +
211 FPRegsUnavailableMsg,
212 CB->getDebugLoc()));
213 }
214 }
215 }
216 }
217 return ARMFunctionInfo::create<ARMFunctionInfo>(Allocator, F, ARMSTI);
218}
219
221 // An explicit "float-abi" module flag always wins, even for AAPCS16.
222 if (auto *Val = dyn_cast_or_null<MDString>(M.getModuleFlag("float-abi")))
223 return *FloatABI::parseABIType(Val->getString());
224
225 // With no explicit ABI, an explicit -target-abi=aapcs16 forces hard float
226 // even on triples whose default float ABI is soft (the triple default only
227 // detects AAPCS16 when it is the triple's own default ABI).
229 return FloatABI::Hard;
230 // Otherwise fall back to the ABI implied by the target triple.
231 return M.getTargetTriple().getDefaultFloatABI();
232}
233
235 // Consistency of "target-abi" and -target-abi is validated elsewhere.
236 if (const auto *MD = cast_or_null<MDString>(M.getModuleFlag("target-abi")))
237 return ARM::computeTargetABI(TargetTriple, MD->getString());
238 return TargetABI;
239}
240
241const ARMSubtarget *
243 Attribute CPUAttr = F.getFnAttribute("target-cpu");
244 Attribute FSAttr = F.getFnAttribute("target-features");
245
246 std::string CPU =
247 CPUAttr.isValid() ? CPUAttr.getValueAsString().str() : TargetCPU;
248 std::string FS =
249 FSAttr.isValid() ? FSAttr.getValueAsString().str() : TargetFS;
250
251 // FIXME: This is related to the code below to reset the target options,
252 // we need to know whether or not the soft float flag is set on the
253 // function before we can generate a subtarget. We also need to use
254 // it as a key for the subtarget since that can be the only difference
255 // between two functions.
256 bool SoftFloat = F.getFnAttribute("use-soft-float").getValueAsBool();
257 // If the soft float attribute is set on the function turn on the soft float
258 // subtarget feature.
259 if (SoftFloat)
260 FS += FS.empty() ? "+soft-float" : ",+soft-float";
261
262 // Use the optminsize to identify the subtarget, but don't use it in the
263 // feature string.
264 std::string Key = CPU + FS;
265 if (F.hasMinSize())
266 Key += "+minsize";
267
268 DenormalMode DM = F.getDenormalFPEnv().DefaultMode;
269 if (DM != DenormalMode::getIEEE())
270 Key += "denormal-fp-math=" + DM.str();
271
272 FloatABI::ABIType FloatABI = getFloatABI(*F.getParent());
273 // It is legal to have FloatABI::Hard for targets with SIMD registers
274 // but no floating-point hardware (mve+nofp).
275 Key += FloatABI == FloatABI::Hard ? "+hard-float-abi" : "+soft-float-abi";
276
277 ARM::ARMABI ABI = getEffectiveABI(*F.getParent());
278 Key += "+abi=" + std::to_string((int)ABI);
279
280 auto &I = SubtargetMap[Key];
281 if (!I) {
282 I = std::make_unique<ARMSubtarget>(TargetTriple, CPU, FS, *this, isLittle,
283 FloatABI, ABI, F.hasMinSize(), DM);
284
285 if (!I->isThumb() && !I->hasARMOps())
286 F.getContext().emitError("Function '" + F.getName() + "' uses ARM "
287 "instructions, but the target does not support ARM mode execution.");
288 }
289
290 return I.get();
291}
292
295 return TargetTransformInfo(std::make_unique<ARMTTIImpl>(this, F));
296}
297
301 // add DAG Mutations here.
302 const ARMSubtarget &ST = C->MF->getSubtarget<ARMSubtarget>();
303 if (ST.hasFusion())
305 return DAG;
306}
307
311 // add DAG Mutations here.
312 const ARMSubtarget &ST = C->MF->getSubtarget<ARMSubtarget>();
313 if (ST.hasFusion())
315 if (auto Mutation = createARMLatencyMutations(ST, C->AA))
316 DAG->addMutation(std::move(Mutation));
317 return DAG;
318}
319
321 StringRef CPU, StringRef FS,
322 const TargetOptions &Options,
323 std::optional<Reloc::Model> RM,
324 std::optional<CodeModel::Model> CM,
325 CodeGenOptLevel OL, bool JIT)
326 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
327
329 StringRef CPU, StringRef FS,
330 const TargetOptions &Options,
331 std::optional<Reloc::Model> RM,
332 std::optional<CodeModel::Model> CM,
333 CodeGenOptLevel OL, bool JIT)
334 : ARMBaseTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
335
336namespace {
337
338/// ARM Code Generator Pass Configuration Options.
339class ARMPassConfig : public TargetPassConfig {
340public:
341 ARMPassConfig(ARMBaseTargetMachine &TM, PassManagerBase &PM)
342 : TargetPassConfig(TM, PM) {}
343
344 ARMBaseTargetMachine &getARMTargetMachine() const {
346 }
347
348 void addIRPasses() override;
349 void addCodeGenPrepare() override;
350 bool addPreISel() override;
351 bool addInstSelector() override;
352 bool addIRTranslator() override;
353 bool addLegalizeMachineIR() override;
354 bool addRegBankSelect() override;
355 bool addGlobalInstructionSelect() override;
356 void addPreRegAlloc() override;
357 void addPreSched2() override;
358 void addPreEmitPass() override;
359 void addPreEmitPass2() override;
360
361 std::unique_ptr<CSEConfigBase> getCSEConfig() const override;
362};
363
364class ARMExecutionDomainFix : public ExecutionDomainFix {
365public:
366 static char ID;
367 ARMExecutionDomainFix() : ExecutionDomainFix(ID, ARM::DPRRegClass) {}
368 StringRef getPassName() const override {
369 return "ARM Execution Domain Fix";
370 }
371};
372char ARMExecutionDomainFix::ID;
373
374} // end anonymous namespace
375
376INITIALIZE_PASS_BEGIN(ARMExecutionDomainFix, "arm-execution-domain-fix",
377 "ARM Execution Domain Fix", false, false)
379INITIALIZE_PASS_END(ARMExecutionDomainFix, "arm-execution-domain-fix",
380 "ARM Execution Domain Fix", false, false)
381
383#define GET_PASS_REGISTRY "ARMPassRegistry.def"
385}
386
388 return new ARMPassConfig(*this, PM);
389}
390
391std::unique_ptr<CSEConfigBase> ARMPassConfig::getCSEConfig() const {
392 return getStandardCSEConfigForOpt(TM->getOptLevel());
393}
394
395void ARMPassConfig::addIRPasses() {
397
398 // Cmpxchg instructions are often used with a subsequent comparison to
399 // determine whether it succeeded. We can exploit existing control-flow in
400 // ldrex/strex loops to simplify this, but it needs tidying up.
401 if (TM->getOptLevel() != CodeGenOptLevel::None && EnableAtomicTidy)
403 SimplifyCFGOptions().hoistCommonInsts(true).sinkCommonInsts(true),
404 [this](const Function &F) {
405 const auto &ST = this->TM->getSubtarget<ARMSubtarget>(F);
406 return ST.hasAnyDataBarrier() && !ST.isThumb1Only();
407 }));
408
411
413
414 // Run the parallel DSP pass.
415 if (getOptLevel() == CodeGenOptLevel::Aggressive)
416 addPass(createARMParallelDSPPass());
417
418 // Match complex arithmetic patterns
419 if (TM->getOptLevel() >= CodeGenOptLevel::Default)
421
422 // Match interleaved memory accesses to ldN/stN intrinsics.
423 if (TM->getOptLevel() != CodeGenOptLevel::None)
425
426 // Add Control Flow Guard checks.
427 if (TM->getTargetTriple().isOSWindows())
428 addPass(createCFGuardPass());
429
430 if (TM->Options.JMCInstrument)
431 addPass(createJMCInstrumenterPass());
432}
433
434void ARMPassConfig::addCodeGenPrepare() {
435 if (getOptLevel() != CodeGenOptLevel::None)
438}
439
440bool ARMPassConfig::addPreISel() {
441 if ((TM->getOptLevel() != CodeGenOptLevel::None &&
444 // FIXME: This is using the thumb1 only constant value for
445 // maximal global offset for merging globals. We may want
446 // to look into using the old value for non-thumb1 code of
447 // 4095 based on the TargetMachine, but this starts to become
448 // tricky when doing code gen per function.
449 bool OnlyOptimizeForSize =
450 (TM->getOptLevel() < CodeGenOptLevel::Aggressive) &&
452 // Merging of extern globals is enabled by default on non-Mach-O as we
453 // expect it to be generally either beneficial or harmless. On Mach-O it
454 // is disabled as we emit the .subsections_via_symbols directive which
455 // means that merging extern globals is not safe.
456 bool MergeExternalByDefault = !TM->getTargetTriple().isOSBinFormatMachO();
457 addPass(createGlobalMergePass(TM, 127, OnlyOptimizeForSize,
458 MergeExternalByDefault));
459 }
460
461 if (TM->getOptLevel() != CodeGenOptLevel::None) {
464 // FIXME: IR passes can delete address-taken basic blocks, deleting
465 // corresponding blockaddresses. ARMConstantPoolConstant holds references to
466 // address-taken basic blocks which can be invalidated if the function
467 // containing the blockaddress has already been codegen'd and the basic
468 // block is removed. Work around this by forcing all IR passes to run before
469 // any ISel takes place. We should have a more principled way of handling
470 // this. See D99707 for more details.
471 addPass(createBarrierNoopPass());
472 }
473
474 return false;
475}
476
477bool ARMPassConfig::addInstSelector() {
478 addPass(createARMISelDag(getARMTargetMachine(), getOptLevel()));
479 return false;
480}
481
482bool ARMPassConfig::addIRTranslator() {
483 addPass(new IRTranslatorLegacy(getOptLevel()));
484 return false;
485}
486
487bool ARMPassConfig::addLegalizeMachineIR() {
488 addPass(new LegalizerLegacy());
489 return false;
490}
491
492bool ARMPassConfig::addRegBankSelect() {
493 addPass(new RegBankSelectLegacy());
494 return false;
495}
496
497bool ARMPassConfig::addGlobalInstructionSelect() {
498 addPass(new InstructionSelectLegacy(getOptLevel()));
499 return false;
500}
501
502void ARMPassConfig::addPreRegAlloc() {
503 if (getOptLevel() != CodeGenOptLevel::None) {
504 if (getOptLevel() == CodeGenOptLevel::Aggressive)
505 addPass(&MachinePipelinerID);
506
508
509 addPass(createMLxExpansionPass());
510
512 addPass(createARMLoadStoreOptLegacyPass(/* pre-register alloc */ true));
513
515 addPass(createA15SDOptimizerPass());
516 }
517}
518
519void ARMPassConfig::addPreSched2() {
520 if (getOptLevel() != CodeGenOptLevel::None) {
523
524 addPass(new ARMExecutionDomainFix());
526 }
527
528 // Expand some pseudo instructions into multiple instructions to allow
529 // proper scheduling.
530 addPass(createARMExpandPseudoPass());
531
532 // Emit KCFI checks for indirect calls.
533 addPass(createKCFIPass());
534
535 if (getOptLevel() != CodeGenOptLevel::None) {
536 // When optimising for size, always run the Thumb2SizeReduction pass before
537 // IfConversion. Otherwise, check whether IT blocks are restricted
538 // (e.g. in v8, IfConversion depends on Thumb instruction widths)
539 addPass(createThumb2SizeReductionPass([this](const Function &F) {
540 return this->TM->getSubtarget<ARMSubtarget>(F).hasMinSize() ||
541 this->TM->getSubtarget<ARMSubtarget>(F).restrictIT();
542 }));
543
544 addPass(createIfConverter([](const MachineFunction &MF) {
545 return !MF.getSubtarget<ARMSubtarget>().isThumb1Only();
546 }));
547 }
548 addPass(createThumb2ITBlockPass());
549
550 // Add both scheduling passes to give the subtarget an opportunity to pick
551 // between them.
552 if (getOptLevel() != CodeGenOptLevel::None) {
553 addPass(&PostMachineSchedulerID);
554 addPass(&PostRASchedulerID);
555 }
556
557 addPass(createMVEVPTBlockPass());
558 addPass(createARMIndirectThunks());
559 addPass(createARMSLSHardeningPass());
560}
561
562void ARMPassConfig::addPreEmitPass() {
564
565 // Unpack bundles for:
566 // - Thumb2: Constant island pass requires unbundled instructions
567 // - KCFI: KCFI_CHECK pseudo instructions need to be unbundled for AsmPrinter
569 return MF.getSubtarget<ARMSubtarget>().isThumb2() ||
570 MF.getFunction().getParent()->getModuleFlag("kcfi");
571 }));
572
573 // Don't optimize barriers or block placement at -O0.
574 if (getOptLevel() != CodeGenOptLevel::None) {
577 }
578}
579
580void ARMPassConfig::addPreEmitPass2() {
581
582 // Inserts fixup instructions before unsafe AES operations. Instructions may
583 // be inserted at the start of blocks and at within blocks so this pass has to
584 // come before those below.
586 // Inserts BTIs at the start of functions and indirectly-called basic blocks,
587 // so passes cannot add to the start of basic blocks once this has run.
589 // Inserts Constant Islands. Block sizes cannot be increased after this point,
590 // as this may push the branch ranges and load offsets of accessing constant
591 // pools out of range..
593 // Finalises Low-Overhead Loops. This replaces pseudo instructions with real
594 // instructions, but the pseudos all have conservative sizes so that block
595 // sizes will only be decreased by this pass.
597
598 if (TM->getTargetTriple().isOSWindows()) {
599 // Identify valid longjmp targets for Windows Control Flow Guard.
600 addPass(createCFGuardLongjmpPass());
601 // Identify valid eh continuation targets for Windows EHCont Guard.
603 }
604}
605
610
613 const auto *MFI = MF.getInfo<ARMFunctionInfo>();
614 return new yaml::ARMFunctionInfo(*MFI);
615}
616
619 SMDiagnostic &Error, SMRange &SourceRange) const {
620 const auto &YamlMFI = static_cast<const yaml::ARMFunctionInfo &>(MFI);
621 MachineFunction &MF = PFS.MF;
622 MF.getInfo<ARMFunctionInfo>()->initializeBaseYamlFields(YamlMFI);
623 return false;
624}
625
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
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 std::unique_ptr< TargetLoweringObjectFile > createTLOF(const Triple &TT)
static Reloc::Model getEffectiveRelocModel()
static cl::opt< bool > DisableA15SDOptimization("disable-a15-sd-optimization", cl::Hidden, cl::desc("Inhibit optimization of S->D register accesses on A15"), cl::init(false))
static cl::opt< cl::boolOrDefault > EnableGlobalMerge("arm-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"))
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeARMTarget()
static cl::opt< bool > EnableARMLoadStoreOpt("arm-load-store-opt", cl::Hidden, cl::desc("Enable ARM load/store optimization pass"), cl::init(true))
static cl::opt< bool > EnableAtomicTidy("arm-atomic-cfg-tidy", cl::Hidden, cl::desc("Run SimplifyCFG after expanding atomic operations" " to make use of cmpxchg flow-based information"), cl::init(true))
This file a TargetTransformInfoImplBase conforming object specific to the ARM target machine.
Expand Atomic instructions
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")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Provides analysis for continuously CSEing during GISel passes.
This file describes how to lower LLVM calls to machine code calls.
#define LLVM_ABI
Definition Compiler.h:215
#define LLVM_EXTERNAL_VISIBILITY
Definition Compiler.h:132
static RegisterPass< DebugifyModulePass > DM("debugify", "Attach debug info to everything")
static cl::opt< bool > EnableGlobalMerge("enable-global-merge", cl::Hidden, cl::desc("Enable the global merge pass"), cl::init(true))
This file declares the IRTranslator pass.
Module.h This file contains the declarations for the Module class.
Interface for Targets to specify which operations they can successfully select and how the others sho...
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
#define T
PowerPC VSX FMA Mutation
PassBuilder PB(Machine, PassOpts->PTO, std::nullopt, &PIC)
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
This file describes the interface of the MachineFunctionPass responsible for assigning the generic vi...
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
Target-Independent Code Generator Pass Configuration Options pass.
This pass exposes codegen information to IR-level passes.
static std::unique_ptr< TargetLoweringObjectFile > createTLOF()
ARMBETargetMachine(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 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 ...
std::unique_ptr< TargetLoweringObjectFile > TLOF
ARM::ARMABI getEffectiveABI(const Module &M) const
Returns the ABI in effect for M: the "target-abi" module flag if present, otherwise the legacy -targe...
void reset() override
Reset internal state.
ARMBaseTargetMachine(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)
Create an ARM architecture model.
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
yaml::MachineFunctionInfo * createDefaultFuncInfoYAML() const override
Allocate and return a default initialized instance of the YAML representation for the MachineFunction...
const ARMSubtarget * getSubtargetImpl() const =delete
FloatABI::ABIType getFloatABI(const Module &M) const
Returns the floating-point ABI in effect for M: the "float-abi" module flag if present,...
ScheduleDAGInstrs * createMachineScheduler(MachineSchedContext *C) const override
Create an instance of ScheduleDAGInstrs to be run within the standard MachineScheduler pass for this ...
StringMap< std::unique_ptr< ARMSubtarget > > SubtargetMap
void registerPassBuilderCallbacks(PassBuilder &PB) override
Allow the target to modify the pass pipeline.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Return a TargetTransformInfo for a given function.
ScheduleDAGInstrs * createPostMachineScheduler(MachineSchedContext *C) const override
Similar to createMachineScheduler but used when postRA machine scheduling is enabled.
yaml::MachineFunctionInfo * convertFuncInfoToYAML(const MachineFunction &MF) const override
Allocate and initialize an instance of the YAML representation of the MachineFunctionInfo.
ARMFunctionInfo - This class is derived from MachineFunctionInfo and contains private ARM-specific in...
ARMLETargetMachine(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)
CallingConv::ID getEffectiveCallingConv(CallingConv::ID CC, bool isVarArg) const
getEffectiveCallingConv - Get the effective calling convention, taking into account presence of float...
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, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOptLevel OL)
Diagnostic information for unsupported feature in backend.
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
Module * getParent()
Get the module that this global value is contained inside of...
This pass is responsible for selecting generic machine instructions to target-specific instructions.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
Metadata * getModuleFlag(StringRef Key) const
Return the corresponding value if Key appears in module flags, otherwise return null.
Definition Module.cpp:358
This class provides access to building LLVM's passes.
PassRegistry - This class manages the registration and intitialization of the pass subsystem as appli...
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.
A global registry used in conjunction with static constructors to make pluggable components (like tar...
Definition Registry.h:116
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...
void addMutation(std::unique_ptr< ScheduleDAGMutation > Mutation)
Add a postprocessing step to the DAG builder.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
std::string str() const
Get the contents as an std::string.
Definition StringRef.h:222
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 setSupportsDefaultOutlining(bool Enable)
std::unique_ptr< const MCSubtargetInfo > STI
TargetOptions Options
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...
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
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
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,...
Define some predicates that are used for node matching.
Definition ARMEHABI.h:25
LLVM_ABI LLVM_READONLY ARMABI computeTargetABI(const Triple &TT, StringRef ABIName="")
@ ARM_AAPCS_VFP
Same as ARM_AAPCS, but uses hard floating point ABI.
std::optional< ABIType > parseABIType(StringRef S)
Parse the string spelling used by the "float-abi" IR module flag into an ABIType.
Definition CodeGen.h:167
@ DynamicNoPIC
Definition CodeGen.h:26
@ ARM
Windows AXP64.
Definition MCAsmInfo.h:50
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.
void initializeARMConstantIslandsPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGSimplificationPass(SimplifyCFGOptions Options=SimplifyCFGOptions(), std::function< bool(const Function &)> Ftor=nullptr)
FunctionPass * createMVETPAndVPTOptimisationsPass()
createMVETPAndVPTOptimisationsPass
Pass * createMVELaneInterleavingPass()
LLVM_ABI ModulePass * createJMCInstrumenterPass()
JMC instrument pass.
FunctionPass * createARMOptimizeBarriersPass()
createARMOptimizeBarriersPass - Returns an instance of the remove double barriers pass.
LLVM_ABI FunctionPass * createIfConverter(std::function< bool(const MachineFunction &)> Ftor)
LLVM_ABI FunctionPass * createTypePromotionLegacyPass()
Create IR Type Promotion pass.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
void initializeMVETailPredicationPass(PassRegistry &)
void initializeMVELaneInterleavingPass(PassRegistry &)
Pass * createMVEGatherScatterLoweringPass()
LLVM_ABI FunctionPass * createEHContGuardTargetsLegacy()
Creates Windows EH Continuation Guard target identification pass.
Target & getTheThumbBETarget()
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...
auto cast_or_null(const Y &Val)
Definition Casting.h:714
LLVM_ABI char & PostRASchedulerID
PostRAScheduler - This pass performs post register allocation scheduling.
FunctionPass * createARMISelDag(ARMBaseTargetMachine &TM, CodeGenOptLevel OptLevel)
createARMISelDag - This pass converts a legalized DAG into a ARM-specific DAG, ready for instruction ...
LLVM_ABI std::unique_ptr< CSEConfigBase > getStandardCSEConfigForOpt(CodeGenOptLevel Level)
Definition CSEInfo.cpp:85
FunctionPass * createARMLowOverheadLoopsPass()
LLVM_ABI char & PostMachineSchedulerID
PostMachineScheduler - This pass schedules machine instructions postRA.
void initializeARMPreAllocLoadStoreOptLegacyPass(PassRegistry &)
FunctionPass * createARMBranchTargetsPass()
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
LLVM_ABI void initializeMachineKCFILegacyPass(PassRegistry &)
LLVM_ABI FunctionPass * createUnpackMachineBundlesLegacy(std::function< bool(const MachineFunction &)> Ftor)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
std::unique_ptr< ScheduleDAGMutation > createARMLatencyMutations(const ARMSubtarget &ST, AAResults *AA)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
ScheduleDAGMI * createSchedPostRA(MachineSchedContext *C)
Create a generic scheduler with no vreg liveness or DAG mutation passes.
void initializeARMBranchTargetsPass(PassRegistry &)
Pass * createMVETailPredicationPass()
LLVM_ABI FunctionPass * createKCFIPass()
Lowers KCFI operand bundles for indirect calls.
Definition KCFI.cpp:75
LLVM_ABI FunctionPass * createComplexDeinterleavingPass(const TargetMachine *TM)
This pass implements generation of target-specific intrinsics to support handling of complex number a...
FunctionPass * createARMBlockPlacementPass()
std::unique_ptr< ScheduleDAGMutation > createARMMacroFusionDAGMutation()
Note that you have to add: DAG.addMutation(createARMMacroFusionDAGMutation()); to ARMTargetMachine::c...
void initializeARMParallelDSPPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:227
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:230
FunctionPass * createARMLoadStoreOptLegacyPass(bool PreAlloc=false)
Returns an instance of the load / store optimization pass.
LLVM_ABI FunctionPass * createCFGuardLongjmpPass()
Creates CFGuard longjmp target identification pass.
void initializeARMExpandPseudoPass(PassRegistry &)
FunctionPass * createA15SDOptimizerPass()
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
void initializeARMSLSHardeningPass(PassRegistry &)
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 initializeARMAsmPrinterPass(PassRegistry &)
LLVM_ABI FunctionPass * createCFGuardPass()
Insert Control Flow Guard checks on indirect function calls.
Definition CFGuard.cpp:315
void initializeARMLoadStoreOptLegacyPass(PassRegistry &)
LLVM_ABI char & MachinePipelinerID
This pass performs software pipelining on machine instructions.
LLVM_ABI ModulePass * createBarrierNoopPass()
createBarrierNoopPass - This pass is purely a module pass barrier in a pass manager.
FunctionPass * createARMSLSHardeningPass()
FunctionPass * createARMConstantIslandPass()
createARMConstantIslandPass - returns an instance of the constpool island pass.
void initializeARMLowOverheadLoopsPass(PassRegistry &)
void initializeMVETPAndVPTOptimisationsPass(PassRegistry &)
void initializeARMExecutionDomainFixPass(PassRegistry &)
void initializeThumb2SizeReducePass(PassRegistry &)
FunctionPass * createThumb2ITBlockPass()
createThumb2ITBlockPass - Returns an instance of the Thumb2 IT blocks insertion pass.
void initializeMVEGatherScatterLoweringPass(PassRegistry &)
FunctionPass * createARMExpandPseudoPass()
createARMExpandPseudoPass - returns an instance of the pseudo instruction expansion pass.
FunctionPass * createARMIndirectThunks()
void initializeARMFixCortexA57AES1742098Pass(PassRegistry &)
FunctionPass * createARMFixCortexA57AES1742098Pass()
Pass * createARMParallelDSPPass()
LLVM_ABI FunctionPass * createAtomicExpandLegacyPass()
AtomicExpandPass - At IR level this pass replace atomic instructions with __atomic_* library calls,...
BumpPtrAllocatorImpl<> BumpPtrAllocator
The standard BumpPtrAllocator which just uses the default template parameters.
Definition Allocator.h:390
FunctionPass * createThumb2SizeReductionPass(std::function< bool(const Function &)> Ftor=nullptr)
createThumb2SizeReductionPass - Returns an instance of the Thumb2 size reduction pass.
Target & getTheARMLETarget()
LLVM_ABI FunctionPass * createBreakFalseDepsLegacyPass()
Creates Break False Dependencies pass.
void initializeMVEVPTBlockPass(PassRegistry &)
void initializeARMDAGToDAGISelLegacyPass(PassRegistry &)
FunctionPass * createMLxExpansionPass()
void initializeARMBlockPlacementPass(PassRegistry &)
LLVM_ABI FunctionPass * createHardwareLoopsLegacyPass()
Create Hardware Loop pass.
Target & getTheARMBETarget()
Target & getTheThumbLETarget()
FunctionPass * createMVEVPTBlockPass()
createMVEVPTBlock - Returns an instance of the MVE VPT block insertion pass.
Represent subnormal handling kind for floating point instruction inputs and outputs.
static constexpr DenormalMode getIEEE()
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.