LLVM 22.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"
19
20#include "AVR.h"
22#include "AVRTargetObjectFile.h"
26
27#include <optional>
28
29namespace llvm {
30
31static const char *AVRDataLayout =
32 "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8:16-a:8";
33
34/// Processes a CPU name.
36 if (CPU.empty() || CPU == "generic") {
37 return "avr2";
38 }
39
40 return CPU;
41}
42
43static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
44 return RM.value_or(Reloc::Static);
45}
46
48 StringRef CPU, StringRef FS,
50 std::optional<Reloc::Model> RM,
51 std::optional<CodeModel::Model> CM,
52 CodeGenOptLevel OL, bool JIT)
55 getEffectiveCodeModel(CM, CodeModel::Small), OL),
56 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
57 this->TLOF = std::make_unique<AVRTargetObjectFile>();
59}
60
61namespace {
62/// AVR Code Generator Pass Configuration Options.
63class AVRPassConfig : public TargetPassConfig {
64public:
65 AVRPassConfig(AVRTargetMachine &TM, PassManagerBase &PM)
66 : TargetPassConfig(TM, PM) {
67 EnableLoopTermFold = true;
68 }
69
70 AVRTargetMachine &getAVRTargetMachine() const {
71 return getTM<AVRTargetMachine>();
72 }
73
74 void addIRPasses() override;
75 bool addInstSelector() override;
76 void addPreSched2() override;
77 void addPreEmitPass() override;
78};
79} // namespace
80
82 return new AVRPassConfig(*this, PM);
83}
84
85void AVRPassConfig::addIRPasses() {
86 // Expand instructions like
87 // %result = shl i32 %n, %amount
88 // to a loop so that library calls are avoided.
89 addPass(createAVRShiftExpandPass());
90
92}
93
95 // Register the target.
97
103}
104
106 return &SubTarget;
107}
108
110 return &SubTarget;
111}
112
115 return TargetTransformInfo(std::make_unique<AVRTTIImpl>(this, F));
116}
117
120 const TargetSubtargetInfo *STI) const {
121 return AVRMachineFunctionInfo::create<AVRMachineFunctionInfo>(Allocator, F,
122 STI);
123}
124
125//===----------------------------------------------------------------------===//
126// Pass Pipeline Configuration
127//===----------------------------------------------------------------------===//
128
129bool AVRPassConfig::addInstSelector() {
130 // Install an instruction selector.
131 addPass(createAVRISelDag(getAVRTargetMachine(), getOptLevel()));
132 // Create the frame analyzer pass used by the PEI pass.
134
135 return false;
136}
137
138void AVRPassConfig::addPreSched2() { addPass(createAVRExpandPseudoPass()); }
139
140void AVRPassConfig::addPreEmitPass() {
141 // Must run branch selection immediately preceding the asm printer.
142 addPass(&BranchRelaxationPassID);
143}
144
145} // end of namespace llvm
This file defines a TargetTransformInfoImplBase conforming object specific to the AVR target machine.
#define LLVM_ABI
Definition: Compiler.h:213
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:132
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.
TargetTransformInfo getTargetTransformInfo(const Function &F) const override
Get a TargetTransformInfo implementation for the target.
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:67
implements a set of functionality in the TargetMachine class for targets that make use of the indepen...
static LLVM_ABI 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:55
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:151
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.
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 ...
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()
LLVM_ABI 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:82
static const char * AVRDataLayout
Pass * createAVRShiftExpandPass()
LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAVRTarget()
void initializeAVRAsmPrinterPass(PassRegistry &)
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:856
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,...