Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / lib / Target / AVR / AVRTargetMachine.cpp
blobe0776a6cab432f1a8dcb656c7182235384c63f01
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.
11 //===----------------------------------------------------------------------===//
13 #include "AVRTargetMachine.h"
15 #include "llvm/CodeGen/Passes.h"
16 #include "llvm/CodeGen/TargetPassConfig.h"
17 #include "llvm/IR/Module.h"
18 #include "llvm/MC/TargetRegistry.h"
20 #include "AVR.h"
21 #include "AVRMachineFunctionInfo.h"
22 #include "AVRTargetObjectFile.h"
23 #include "MCTargetDesc/AVRMCTargetDesc.h"
24 #include "TargetInfo/AVRTargetInfo.h"
26 #include <optional>
28 namespace llvm {
30 static const char *AVRDataLayout =
31 "e-P1-p:16:8-i8:8-i16:8-i32:8-i64:8-f32:8-f64:8-n8-a:8";
33 /// Processes a CPU name.
34 static StringRef getCPU(StringRef CPU) {
35 if (CPU.empty() || CPU == "generic") {
36 return "avr2";
39 return CPU;
42 static Reloc::Model getEffectiveRelocModel(std::optional<Reloc::Model> RM) {
43 return RM.value_or(Reloc::Static);
46 AVRTargetMachine::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 : LLVMTargetMachine(T, AVRDataLayout, TT, getCPU(CPU), FS, Options,
53 getEffectiveRelocModel(RM),
54 getEffectiveCodeModel(CM, CodeModel::Small), OL),
55 SubTarget(TT, std::string(getCPU(CPU)), std::string(FS), *this) {
56 this->TLOF = std::make_unique<AVRTargetObjectFile>();
57 initAsmInfo();
60 namespace {
61 /// AVR Code Generator Pass Configuration Options.
62 class AVRPassConfig : public TargetPassConfig {
63 public:
64 AVRPassConfig(AVRTargetMachine &TM, PassManagerBase &PM)
65 : TargetPassConfig(TM, PM) {}
67 AVRTargetMachine &getAVRTargetMachine() const {
68 return getTM<AVRTargetMachine>();
71 void addIRPasses() override;
72 bool addInstSelector() override;
73 void addPreSched2() override;
74 void addPreEmitPass() override;
76 } // namespace
78 TargetPassConfig *AVRTargetMachine::createPassConfig(PassManagerBase &PM) {
79 return new AVRPassConfig(*this, PM);
82 void AVRPassConfig::addIRPasses() {
83 // Expand instructions like
84 // %result = shl i32 %n, %amount
85 // to a loop so that library calls are avoided.
86 addPass(createAVRShiftExpandPass());
88 TargetPassConfig::addIRPasses();
91 extern "C" LLVM_EXTERNAL_VISIBILITY void LLVMInitializeAVRTarget() {
92 // Register the target.
93 RegisterTargetMachine<AVRTargetMachine> X(getTheAVRTarget());
95 auto &PR = *PassRegistry::getPassRegistry();
96 initializeAVRExpandPseudoPass(PR);
97 initializeAVRShiftExpandPass(PR);
98 initializeAVRDAGToDAGISelPass(PR);
101 const AVRSubtarget *AVRTargetMachine::getSubtargetImpl() const {
102 return &SubTarget;
105 const AVRSubtarget *AVRTargetMachine::getSubtargetImpl(const Function &) const {
106 return &SubTarget;
109 MachineFunctionInfo *AVRTargetMachine::createMachineFunctionInfo(
110 BumpPtrAllocator &Allocator, const Function &F,
111 const TargetSubtargetInfo *STI) const {
112 return AVRMachineFunctionInfo::create<AVRMachineFunctionInfo>(Allocator, F,
113 STI);
116 //===----------------------------------------------------------------------===//
117 // Pass Pipeline Configuration
118 //===----------------------------------------------------------------------===//
120 bool AVRPassConfig::addInstSelector() {
121 // Install an instruction selector.
122 addPass(createAVRISelDag(getAVRTargetMachine(), getOptLevel()));
123 // Create the frame analyzer pass used by the PEI pass.
124 addPass(createAVRFrameAnalyzerPass());
126 return false;
129 void AVRPassConfig::addPreSched2() {
130 addPass(createAVRExpandPseudoPass());
133 void AVRPassConfig::addPreEmitPass() {
134 // Must run branch selection immediately preceding the asm printer.
135 addPass(&BranchRelaxationPassID);
138 } // end of namespace llvm