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"
16#include "llvm/CodeGen/TargetPassConfig.h"
17#include "llvm/MC/TargetRegistry.h"
18#include "llvm/Support/Compiler.h"
19
20#include "AVR.h"
21#include "AVRMachineFunctionInfo.h"
22#include "AVRTargetObjectFile.h"
23#include "MCTargetDesc/AVRMCTargetDesc.h"
24#include "TargetInfo/AVRTargetInfo.h"
25
26#include <optional>
27
28namespace llvm {
29
30static const char *AVRDataLayout =
31 "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8";
32
33/// Processes a CPU name.
34static StringRef getCPU(StringRef CPU) {
35 if (CPU.empty() || CPU == "generic") {
36 return "avr2";
37 }
38
39 return CPU;
40}
41
42static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
43 return RM.value_or(u: Reloc::Static);
44}
45
46AVRTargetMachine::AVRTargetMachine(const Target &T, const Triple &TT,
47 StringRef CPU, StringRef FS,
48 const TargetOptions &Options,
49 std::optional<Reloc::Model> RM,
50 std::optional<CodeModel::Model> CM,
51 CodeGenOptLevel OL, bool JIT)
52 : CodeGenTargetMachineImpl(T, AVRDataLayout, TT, getCPU(CPU), FS, Options,
53 getEffectiveRelocModel(RM),
54 getEffectiveCodeModel(CM, Default: CodeModel::Small), OL),
55 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
56 this->TLOF = std::make_unique<AVRTargetObjectFile>();
57 initAsmInfo();
58}
59
60namespace {
61/// AVR Code Generator Pass Configuration Options.
62class AVRPassConfig : public TargetPassConfig {
63public:
64 AVRPassConfig(AVRTargetMachine &TM, PassManagerBase &PM)
65 : TargetPassConfig(TM, PM) {}
66
67 AVRTargetMachine &getAVRTargetMachine() const {
68 return getTM<AVRTargetMachine>();
69 }
70
71 void addIRPasses() override;
72 bool addInstSelector() override;
73 void addPreSched2() override;
74 void addPreEmitPass() override;
75};
76} // namespace
77
78TargetPassConfig *AVRTargetMachine::createPassConfig(PassManagerBase &PM) {
79 return new AVRPassConfig(*this, PM);
80}
81
82void AVRPassConfig::addIRPasses() {
83 // Expand instructions like
84 // %result = shl i32 %n, %amount
85 // to a loop so that library calls are avoided.
86 addPass(P: createAVRShiftExpandPass());
87
88 TargetPassConfig::addIRPasses();
89}
90
91extern "C" LLVM_ABI LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAVRTarget() {
92 // Register the target.
93 RegisterTargetMachine<AVRTargetMachine> X(getTheAVRTarget());
94
95 auto &PR = *PassRegistry::getPassRegistry();
96 initializeAVRAsmPrinterPass(PR);
97 initializeAVRExpandPseudoPass(PR);
98 initializeAVRShiftExpandPass(PR);
99 initializeAVRDAGToDAGISelLegacyPass(PR);
100}
101
102const AVRSubtarget *AVRTargetMachine::getSubtargetImpl() const {
103 return &SubTarget;
104}
105
106const AVRSubtarget *AVRTargetMachine::getSubtargetImpl(const Function &) const {
107 return &SubTarget;
108}
109
110MachineFunctionInfo *AVRTargetMachine::createMachineFunctionInfo(
111 BumpPtrAllocator &Allocator, const Function &F,
112 const TargetSubtargetInfo *STI) const {
113 return AVRMachineFunctionInfo::create<AVRMachineFunctionInfo>(Allocator, F,
114 STI);
115}
116
117//===----------------------------------------------------------------------===//
118// Pass Pipeline Configuration
119//===----------------------------------------------------------------------===//
120
121bool AVRPassConfig::addInstSelector() {
122 // Install an instruction selector.
123 addPass(P: createAVRISelDag(TM&: getAVRTargetMachine(), OptLevel: getOptLevel()));
124 // Create the frame analyzer pass used by the PEI pass.
125 addPass(P: createAVRFrameAnalyzerPass());
126
127 return false;
128}
129
130void AVRPassConfig::addPreSched2() { addPass(P: createAVRExpandPseudoPass()); }
131
132void AVRPassConfig::addPreEmitPass() {
133 // Must run branch selection immediately preceding the asm printer.
134 addPass(PassID: &BranchRelaxationPassID);
135}
136
137} // end of namespace llvm
138