LLVM 20.0.0git
XCoreMCTargetDesc.cpp
Go to the documentation of this file.
1//===-- XCoreMCTargetDesc.cpp - XCore 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 XCore specific target descriptions.
10//
11//===----------------------------------------------------------------------===//
12
17#include "XCoreTargetStreamer.h"
18#include "llvm/ADT/StringRef.h"
19#include "llvm/MC/MCDwarf.h"
20#include "llvm/MC/MCInstrInfo.h"
27
28using namespace llvm;
29
30#define GET_INSTRINFO_MC_DESC
31#define ENABLE_INSTR_PREDICATE_VERIFIER
32#include "XCoreGenInstrInfo.inc"
33
34#define GET_SUBTARGETINFO_MC_DESC
35#include "XCoreGenSubtargetInfo.inc"
36
37#define GET_REGINFO_MC_DESC
38#include "XCoreGenRegisterInfo.inc"
39
41 MCInstrInfo *X = new MCInstrInfo();
42 InitXCoreMCInstrInfo(X);
43 return X;
44}
45
48 InitXCoreMCRegisterInfo(X, XCore::LR);
49 return X;
50}
51
52static MCSubtargetInfo *
54 return createXCoreMCSubtargetInfoImpl(TT, CPU, /*TuneCPU*/ CPU, FS);
55}
56
58 const Triple &TT,
59 const MCTargetOptions &Options) {
60 MCAsmInfo *MAI = new XCoreMCAsmInfo(TT);
61
62 // Initial state of the frame pointer is SP.
63 MCCFIInstruction Inst = MCCFIInstruction::cfiDefCfa(nullptr, XCore::SP, 0);
64 MAI->addInitialFrameState(Inst);
65
66 return MAI;
67}
68
70 unsigned SyntaxVariant,
71 const MCAsmInfo &MAI,
72 const MCInstrInfo &MII,
73 const MCRegisterInfo &MRI) {
74 return new XCoreInstPrinter(MAI, MII, MRI);
75}
76
78
80
81namespace {
82
83class XCoreTargetAsmStreamer : public XCoreTargetStreamer {
85
86public:
87 XCoreTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS);
88
89 void emitCCTopData(StringRef Name) override;
90 void emitCCTopFunction(StringRef Name) override;
91 void emitCCBottomData(StringRef Name) override;
92 void emitCCBottomFunction(StringRef Name) override;
93};
94
95} // end anonymous namespace
96
97XCoreTargetAsmStreamer::XCoreTargetAsmStreamer(MCStreamer &S,
99 : XCoreTargetStreamer(S), OS(OS) {}
100
101void XCoreTargetAsmStreamer::emitCCTopData(StringRef Name) {
102 OS << "\t.cc_top " << Name << ".data," << Name << '\n';
103}
104
105void XCoreTargetAsmStreamer::emitCCTopFunction(StringRef Name) {
106 OS << "\t.cc_top " << Name << ".function," << Name << '\n';
107}
108
109void XCoreTargetAsmStreamer::emitCCBottomData(StringRef Name) {
110 OS << "\t.cc_bottom " << Name << ".data\n";
111}
112
113void XCoreTargetAsmStreamer::emitCCBottomFunction(StringRef Name) {
114 OS << "\t.cc_bottom " << Name << ".function\n";
115}
116
119 MCInstPrinter *InstPrint) {
120 return new XCoreTargetAsmStreamer(S, OS);
121}
122
124 return new XCoreTargetStreamer(S);
125}
126
127// Force static initialization.
129 // Register the MC asm info.
131
132 // Register the MC instruction info.
135
136 // Register the MC register info.
139
140 // Register the MC subtarget info.
143
144 // Register the MCInstPrinter
147
150
153}
unsigned const MachineRegisterInfo * MRI
static MCTargetStreamer * createTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *InstPrint)
#define LLVM_EXTERNAL_VISIBILITY
Definition: Compiler.h:128
std::string Name
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
static LVOptions Options
Definition: LVOptions.cpp:25
static MCTargetStreamer * createNullTargetStreamer(MCStreamer &S)
raw_pwrite_stream & OS
This file contains the declaration of the XCoreInstPrinter class, which is used to print XCore MCInst...
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeXCoreTargetMC()
static MCSubtargetInfo * createXCoreMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS)
static MCAsmInfo * createXCoreMCAsmInfo(const MCRegisterInfo &MRI, const Triple &TT, const MCTargetOptions &Options)
static MCInstrInfo * createXCoreMCInstrInfo()
static MCRegisterInfo * createXCoreMCRegisterInfo(const Triple &TT)
static MCInstPrinter * createXCoreMCInstPrinter(const Triple &T, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
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 cfiDefCfa(MCSymbol *L, unsigned Register, int64_t 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:575
This is an instance of a target assembly language printer that converts an MCInst to valid target ass...
Definition: MCInstPrinter.h:46
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...
Streaming machine code generation interface.
Definition: MCStreamer.h:213
Generic base class for all target subtargets.
Target specific streamer interface.
Definition: MCStreamer.h:94
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
formatted_raw_ostream - A raw_ostream that wraps another one and keeps track of line and column posit...
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
Target & getTheXCoreTarget()
RegisterMCAsmInfoFn - Helper template for registering a target assembly info implementation.
static void RegisterMCRegInfo(Target &T, Target::MCRegInfoCtorFnTy Fn)
RegisterMCRegInfo - Register a MCRegisterInfo implementation for the given target.
static void RegisterMCSubtargetInfo(Target &T, Target::MCSubtargetInfoCtorFnTy Fn)
RegisterMCSubtargetInfo - Register a MCSubtargetInfo implementation for the given target.
static void RegisterNullTargetStreamer(Target &T, Target::NullTargetStreamerCtorTy 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.
static void RegisterAsmTargetStreamer(Target &T, Target::AsmTargetStreamerCtorTy Fn)