LLVM 19.0.0git
WebAssemblyMCTargetDesc.cpp
Go to the documentation of this file.
1//===-- WebAssemblyMCTargetDesc.cpp - WebAssembly 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/// \file
10/// This file provides WebAssembly-specific target descriptions.
11///
12//===----------------------------------------------------------------------===//
13
19#include "llvm/MC/MCInstrInfo.h"
24using namespace llvm;
25
26#define DEBUG_TYPE "wasm-mc-target-desc"
27
28#define GET_INSTRINFO_MC_DESC
29#define ENABLE_INSTR_PREDICATE_VERIFIER
30#include "WebAssemblyGenInstrInfo.inc"
31
32#define GET_SUBTARGETINFO_MC_DESC
33#include "WebAssemblyGenSubtargetInfo.inc"
34
35#define GET_REGINFO_MC_DESC
36#include "WebAssemblyGenRegisterInfo.inc"
37
38// Exception handling & setjmp-longjmp handling related options.
39
40// Emscripten's asm.js-style exception handling
42 "enable-emscripten-cxx-exceptions",
43 cl::desc("WebAssembly Emscripten-style exception handling"),
44 cl::init(false));
45// Emscripten's asm.js-style setjmp/longjmp handling
47 "enable-emscripten-sjlj",
48 cl::desc("WebAssembly Emscripten-style setjmp/longjmp handling"),
49 cl::init(false));
50// Exception handling using wasm EH instructions
52 WebAssembly::WasmEnableEH("wasm-enable-eh",
53 cl::desc("WebAssembly exception handling"));
54// setjmp/longjmp handling using wasm EH instrutions
56 "wasm-enable-sjlj", cl::desc("WebAssembly setjmp/longjmp handling"));
57
59 const Triple &TT,
60 const MCTargetOptions &Options) {
61 return new WebAssemblyMCAsmInfo(TT, Options);
62}
63
65 auto *X = new MCInstrInfo();
66 InitWebAssemblyMCInstrInfo(X);
67 return X;
68}
69
71 auto *X = new MCRegisterInfo();
72 InitWebAssemblyMCRegisterInfo(X, 0);
73 return X;
74}
75
77 unsigned SyntaxVariant,
78 const MCAsmInfo &MAI,
79 const MCInstrInfo &MII,
80 const MCRegisterInfo &MRI) {
81 assert(SyntaxVariant == 0 && "WebAssembly only has one syntax variant");
82 return new WebAssemblyInstPrinter(MAI, MII, MRI);
83}
84
86 MCContext &Ctx) {
87 return createWebAssemblyMCCodeEmitter(MCII, Ctx);
88}
89
90static MCAsmBackend *createAsmBackend(const Target & /*T*/,
91 const MCSubtargetInfo &STI,
92 const MCRegisterInfo & /*MRI*/,
93 const MCTargetOptions & /*Options*/) {
95}
96
98 StringRef FS) {
99 return createWebAssemblyMCSubtargetInfoImpl(TT, CPU, /*TuneCPU*/ CPU, FS);
100}
101
102static MCTargetStreamer *
104 return new WebAssemblyTargetWasmStreamer(S);
105}
106
109 MCInstPrinter * /*InstPrint*/,
110 bool /*isVerboseAsm*/) {
111 return new WebAssemblyTargetAsmStreamer(S, OS);
112}
113
115 return new WebAssemblyTargetNullStreamer(S);
116}
117
118// Force static initialization.
120 for (Target *T :
122 // Register the MC asm info.
124
125 // Register the MC instruction info.
127
128 // Register the MC register info.
130
131 // Register the MCInstPrinter.
133
134 // Register the MC code emitter.
136
137 // Register the ASM Backend.
139
140 // Register the MC subtarget info.
142
143 // Register the object target streamer.
146 // Register the asm target streamer.
148 // Register the null target streamer.
150 }
151}
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
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
raw_pwrite_stream & OS
This class prints an WebAssembly MCInst to wasm file syntax.
This file contains the declaration of the WebAssemblyMCAsmInfo class.
static MCAsmInfo * createMCAsmInfo(const MCRegisterInfo &, const Triple &TT, const MCTargetOptions &Options)
static MCRegisterInfo * createMCRegisterInfo(const Triple &)
static MCInstPrinter * createMCInstPrinter(const Triple &, unsigned SyntaxVariant, const MCAsmInfo &MAI, const MCInstrInfo &MII, const MCRegisterInfo &MRI)
LLVM_EXTERNAL_VISIBILITY void LLVMInitializeWebAssemblyTargetMC()
static MCInstrInfo * createMCInstrInfo()
static MCTargetStreamer * createNullTargetStreamer(MCStreamer &S)
static MCAsmBackend * createAsmBackend(const Target &, const MCSubtargetInfo &STI, const MCRegisterInfo &, const MCTargetOptions &)
static MCTargetStreamer * createAsmTargetStreamer(MCStreamer &S, formatted_raw_ostream &OS, MCInstPrinter *, bool)
static MCTargetStreamer * createObjectTargetStreamer(MCStreamer &S, const MCSubtargetInfo &STI)
static MCCodeEmitter * createCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx)
static MCSubtargetInfo * createMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS)
This file provides WebAssembly-specific target descriptions.
This file registers the WebAssembly target.
This file declares WebAssembly-specific target streamer classes.
Generic interface to target specific assembler backends.
Definition: MCAsmBackend.h:43
This class is intended to be used as a base class for asm properties and features specific to the tar...
Definition: MCAsmInfo.h:56
MCCodeEmitter - Generic instruction encoding interface.
Definition: MCCodeEmitter.h:21
Context object for machine code objects.
Definition: MCContext.h:76
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...
Streaming machine code generation interface.
Definition: MCStreamer.h:212
Generic base class for all target subtargets.
const Triple & getTargetTriple() const
Target specific streamer interface.
Definition: MCStreamer.h:93
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 part is for ascii assembly output.
This part is for Wasm object output.
formatted_raw_ostream - A raw_ostream that wraps another one and keeps track of line and column posit...
cl::opt< bool > WasmEnableEH
cl::opt< bool > WasmEnableSjLj
cl::opt< bool > WasmEnableEmEH
cl::opt< bool > WasmEnableEmSjLj
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
MCCodeEmitter * createWebAssemblyMCCodeEmitter(const MCInstrInfo &MCII, MCContext &Ctx)
MCAsmBackend * createWebAssemblyAsmBackend(const Triple &TT)
Target & getTheWebAssemblyTarget32()
Target & getTheWebAssemblyTarget64()
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 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 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 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)