LLVM 20.0.0git
AVRTargetMachine.cpp
Go to the documentation of this file.
1//===-- AVRTargetMachine.cpp - Define TargetMachine for AVR ---------------===//
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// This file defines the AVR specific subclass of TargetMachine.
10//
11//===----------------------------------------------------------------------===//
12
13#include "AVRTargetMachine.h"
14
15#include "llvm/CodeGen/Passes.h"
18
19#include "AVR.h"
21#include "AVRTargetObjectFile.h"
24
25#include <optional>
26
27namespace llvm {
28
29static const char *AVRDataLayout =
30 "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8";
31
32/// Processes a CPU name.
34 if (CPU.empty() || CPU == "generic") {
35 return "avr2";
36 }
37
38 return CPU;
39}
40
41static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
42 return RM.value_or(Reloc::Static);
43}
44
46 StringRef CPU, StringRef FS,
48 std::optional<Reloc::Model> RM,
49 std::optional<CodeModel::Model> CM,
50 CodeGenOptLevel OL, bool JIT)
53 getEffectiveCodeModel(CM, CodeModel::Small), OL),
54 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
55 this->TLOF = std::make_unique<AVRTargetObjectFile>();
57}
58
59namespace {
60/// AVR Code Generator Pass Configuration Options.
61class AVRPassConfig : public TargetPassConfig {
62public:
63 AVRPassConfig(AVRTargetMachine &TM, PassManagerBase &PM)
64 : TargetPassConfig(TM, PM) {}
65
66 AVRTargetMachine &getAVRTargetMachine() const {
67 return getTM<AVRTargetMachine>();
68 }
69
70 void addIRPasses() override;
71 bool addInstSelector() override;
72 void addPreSched2() override;
73 void addPreEmitPass() override;
74};
75} // namespace
76
78 return new AVRPassConfig(*this, PM);
79}
80
81void AVRPassConfig::addIRPasses() {
82 // Expand instructions like
83 // %result = shl i32 %n, %amount
84 // to a loop so that library calls are avoided.
85 addPass(createAVRShiftExpandPass());
86
88}
89
91 // Register the target.
93
98}
99
101 return &SubTarget;
102}
103
105 return &SubTarget;
106}
107
110 const TargetSubtargetInfo *STI) const {
111 return AVRMachineFunctionInfo::create<AVRMachineFunctionInfo>(Allocator, F,
112 STI);
113}
114
115//===----------------------------------------------------------------------===//
116// Pass Pipeline Configuration
117//===----------------------------------------------------------------------===//
118
119bool AVRPassConfig::addInstSelector() {
120 // Install an instruction selector.
121 addPass(createAVRISelDag(getAVRTargetMachine(), getOptLevel()));
122 // Create the frame analyzer pass used by the PEI pass.
124
125 return false;
126}
127
128void AVRPassConfig::addPreSched2() {
129 addPass(createAVRExpandPseudoPass());
130}
131
132void AVRPassConfig::addPreEmitPass() {
133 // Must run branch selection immediately preceding the asm printer.
134 addPass(&BranchRelaxationPassID);
135}
136
137} // end of namespace llvm
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:128
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static LVOptions Options
Definition: LVOptions.cpp:25
#define F(x, y, z)
Definition: MD5.cpp:55
Basic Register Allocator
Target-Independent Code Generator Pass Configuration Options pass.
A specific AVR target MCU.
Definition: AVRSubtarget.h:32
A generic AVR implementation.
const AVRSubtarget * getSubtargetImpl() const
TargetPassConfig * createPassConfig(PassManagerBase &PM) override
Create a pass configuration object to be used by addPassToEmitX methods for generating a pipeline of ...
AVRTargetMachine(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)
MachineFunctionInfo * createMachineFunctionInfo(BumpPtrAllocator &Allocator, const Function &F, const TargetSubtargetInfo *STI) const override
Create the target's instance of MachineFunctionInfo.
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
implements a set of functionality in the TargetMachine class for targets that make use of the indepen...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:147
std::unique_ptr< const MCSubtargetInfo > STI
Target-Independent Code Generator Pass Configuration Options.
virtual void addIRPasses()
Add common target configurable passes that perform LLVM IR to IR transforms following machine indepen...
TargetSubtargetInfo - Generic base class for all target subtargets.
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
PassManagerBase - An abstract interface to allow code to add passes to a pass manager without having ...
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
void initializeAVRShiftExpandPass(PassRegistry &)
void initializeAVRExpandPseudoPass(PassRegistry &)
Target & getTheAVRTarget()
static StringRef getCPU(StringRef CPU)
Processes a CPU name.
FunctionPass * createAVRFrameAnalyzerPass()
Creates instance of the frame analyzer pass.
FunctionPass * createAVRISelDag(AVRTargetMachine &TM, CodeGenOptLevel OptLevel)
static Reloc::Model getEffectiveRelocModel(std::optional< Reloc::Model > RM)
CodeModel::Model getEffectiveCodeModel(std::optional< CodeModel::Model > CM, CodeModel::Model Default)
Helper method for getting the code model, returning Default if CM does not have a value.
FunctionPass * createAVRExpandPseudoPass()
char & BranchRelaxationPassID
BranchRelaxation - This pass replaces branches that need to jump further than is supported by a branc...
void initializeAVRDAGToDAGISelLegacyPass(PassRegistry &)
CodeGenOptLevel
Code generation optimization level.
Definition: CodeGen.h:54
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAVRTarget()
static const char * AVRDataLayout
Pass * createAVRShiftExpandPass()
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
RegisterTargetMachine - Helper template for registering a target machine implementation,...