1 //===-- MSP430TargetMachine.cpp - Define TargetMachine for MSP430 ---------===//
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
7 //===----------------------------------------------------------------------===//
9 // Top-level implementation for the MSP430 target.
11 //===----------------------------------------------------------------------===//
13 #include "MSP430TargetMachine.h"
15 #include "llvm/CodeGen/Passes.h"
16 #include "llvm/CodeGen/TargetLoweringObjectFileImpl.h"
17 #include "llvm/CodeGen/TargetPassConfig.h"
18 #include "llvm/IR/LegacyPassManager.h"
19 #include "llvm/MC/MCAsmInfo.h"
20 #include "llvm/Support/TargetRegistry.h"
23 extern "C" void LLVMInitializeMSP430Target() {
24 // Register the target.
25 RegisterTargetMachine
<MSP430TargetMachine
> X(getTheMSP430Target());
28 static Reloc::Model
getEffectiveRelocModel(Optional
<Reloc::Model
> RM
) {
34 static std::string
computeDataLayout(const Triple
&TT
, StringRef CPU
,
35 const TargetOptions
&Options
) {
36 return "e-m:e-p:16:16-i32:16-i64:16-f32:16-f64:16-a:8-n8:16-S16";
39 MSP430TargetMachine::MSP430TargetMachine(const Target
&T
, const Triple
&TT
,
40 StringRef CPU
, StringRef FS
,
41 const TargetOptions
&Options
,
42 Optional
<Reloc::Model
> RM
,
43 Optional
<CodeModel::Model
> CM
,
44 CodeGenOpt::Level OL
, bool JIT
)
45 : LLVMTargetMachine(T
, computeDataLayout(TT
, CPU
, Options
), TT
, CPU
, FS
,
46 Options
, getEffectiveRelocModel(RM
),
47 getEffectiveCodeModel(CM
, CodeModel::Small
), OL
),
48 TLOF(make_unique
<TargetLoweringObjectFileELF
>()),
49 Subtarget(TT
, CPU
, FS
, *this) {
53 MSP430TargetMachine::~MSP430TargetMachine() {}
56 /// MSP430 Code Generator Pass Configuration Options.
57 class MSP430PassConfig
: public TargetPassConfig
{
59 MSP430PassConfig(MSP430TargetMachine
&TM
, PassManagerBase
&PM
)
60 : TargetPassConfig(TM
, PM
) {}
62 MSP430TargetMachine
&getMSP430TargetMachine() const {
63 return getTM
<MSP430TargetMachine
>();
66 bool addInstSelector() override
;
67 void addPreEmitPass() override
;
71 TargetPassConfig
*MSP430TargetMachine::createPassConfig(PassManagerBase
&PM
) {
72 return new MSP430PassConfig(*this, PM
);
75 bool MSP430PassConfig::addInstSelector() {
76 // Install an instruction selector.
77 addPass(createMSP430ISelDag(getMSP430TargetMachine(), getOptLevel()));
81 void MSP430PassConfig::addPreEmitPass() {
82 // Must run branch selection immediately preceding the asm printer.
83 addPass(createMSP430BranchSelectionPass(), false);