LLVM 19.0.0git
MSP430MCTargetDesc.cpp
Go to the documentation of this file.
1//===-- MSP430MCTargetDesc.cpp - MSP430 Target Descriptions ---------------===//
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 provides MSP430 specific target descriptions.
10//
11//===----------------------------------------------------------------------===//
12
13#include "MSP430MCTargetDesc.h"
14#include "MSP430InstPrinter.h"
15#include "MSP430MCAsmInfo.h"
17#include "llvm/MC/MCDwarf.h"
18#include "llvm/MC/MCInstrInfo.h"
22
23using namespace llvm;
24
25#define GET_INSTRINFO_MC_DESC
26#define ENABLE_INSTR_PREDICATE_VERIFIER
27#include "MSP430GenInstrInfo.inc"
28
29#define GET_SUBTARGETINFO_MC_DESC
30#include "MSP430GenSubtargetInfo.inc"
31
32#define GET_REGINFO_MC_DESC
33#include "MSP430GenRegisterInfo.inc"
34
36 MCInstrInfo *X = new MCInstrInfo();
37 InitMSP430MCInstrInfo(X);
38 return X;
39}
40
43 InitMSP430MCRegisterInfo(X, MSP430::PC);
44 return X;
45}
46
48 const Triple &TT,
49 const MCTargetOptions &Options) {
50 MCAsmInfo *MAI = new MSP430MCAsmInfo(TT);
51
52 // Initialize initial frame state.
53 int stackGrowth = -2;
54
55 // Initial state of the frame pointer is sp+ptr_size.
57 nullptr, MRI.getDwarfRegNum(MSP430::SP, true), -stackGrowth);
58 MAI->addInitialFrameState(Inst);
59
60 // Add return address to move list
62 nullptr, MRI.getDwarfRegNum(MSP430::PC, true), stackGrowth);
63 MAI->addInitialFrameState(Inst2);
64
65 return MAI;
66}
67
68static MCSubtargetInfo *
70 return createMSP430MCSubtargetInfoImpl(TT, CPU, /*TuneCPU*/ CPU, FS);
71}
72
74 unsigned SyntaxVariant,
75 const MCAsmInfo &MAI,
76 const MCInstrInfo &MII,
77 const MCRegisterInfo &MRI) {
78 if (SyntaxVariant == 0)
79 return new MSP430InstPrinter(MAI, MII, MRI);
80 return nullptr;
81}
82
85
95}
unsigned const MachineRegisterInfo * MRI
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:135
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static LVOptions Options
Definition: LVOptions.cpp:25
static MCRegisterInfo * createMSP430MCRegisterInfo(const Triple &TT)
static MCSubtargetInfo * createMSP430MCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS)
static MCInstPrinter * createMSP430MCInstPrinter(const Triple &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeMSP430TargetMC()
static MCAsmInfo * createMSP430MCAsmInfo(const MCRegisterInfo &MRI, const Triple &TT, const MCTargetOptions &Options)
static MCInstrInfo * createMSP430MCInstrInfo()
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
void addInitialFrameState(const MCCFIInstruction &Inst)
Definition: MCAsmInfo.cpp:75
static MCCFIInstruction createOffset(MCSymbol *L, unsigned Register, int Offset, SMLoc Loc={})
.cfi_offset Previous value of Register is saved at offset Offset from CFA.
Definition: MCDwarf.h:583
static MCCFIInstruction cfiDefCfa(MCSymbol *L, unsigned Register, int Offset, SMLoc Loc={})
.cfi_def_cfa defines a rule for computing CFA as: take address from Register and add Offset to it.
Definition: MCDwarf.h:541
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
Definition: MCInstPrinter.h:45
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:26
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Generic base class for all target subtargets.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Target - Wrapper for Target specific information.
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
MCTargetStreamer * createMSP430ObjectTargetStreamer(MCStreamer &S, const MCSubtargetInfo &STI)
Target & getTheMSP430Target()
MCCodeEmitter * createMSP430MCCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx)
Creates a machine code emitter for MSP430.
MCAsmBackend * createMSP430MCAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options)
static void RegisterMCRegInfo(Target &T, Target::MCRegInfoCtorFnTy Fn)
RegisterMCRegInfo - Register a MCRegisterInfo implementation for the given target.
static void RegisterMCAsmBackend(Target &T, Target::MCAsmBackendCtorTy Fn)
RegisterMCAsmBackend - Register a MCAsmBackend implementation for the given target.
static void RegisterMCCodeEmitter(Target &T, Target::MCCodeEmitterCtorTy Fn)
RegisterMCCodeEmitter - Register a MCCodeEmitter implementation for the given target.
static void RegisterMCAsmInfo(Target &T, Target::MCAsmInfoCtorFnTy Fn)
RegisterMCAsmInfo - Register a MCAsmInfo implementation for the given target.
static void RegisterMCSubtargetInfo(Target &T, Target::MCSubtargetInfoCtorFnTy Fn)
RegisterMCSubtargetInfo - Register a MCSubtargetInfo implementation for the given target.
static void RegisterObjectTargetStreamer(Target &T, Target::ObjectTargetStreamerCtorTy Fn)
static void RegisterMCInstPrinter(Target &T, Target::MCInstPrinterCtorTy Fn)
RegisterMCInstPrinter - Register a MCInstPrinter implementation for the given target.
static void RegisterMCInstrInfo(Target &T, Target::MCInstrInfoCtorFnTy Fn)
RegisterMCInstrInfo - Register a MCInstrInfo implementation for the given target.