]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
Update llvm/clang to r242221.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / WebAssembly / MCTargetDesc / WebAssemblyMCTargetDesc.cpp
1 //===-- WebAssemblyMCTargetDesc.cpp - WebAssembly Target Descriptions -----===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// \brief This file provides WebAssembly-specific target descriptions.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #include "WebAssemblyMCTargetDesc.h"
16 #include "InstPrinter/WebAssemblyInstPrinter.h"
17 #include "WebAssemblyMCAsmInfo.h"
18 #include "llvm/MC/MCCodeGenInfo.h"
19 #include "llvm/MC/MCInstrInfo.h"
20 #include "llvm/MC/MCRegisterInfo.h"
21 #include "llvm/MC/MCStreamer.h"
22 #include "llvm/MC/MCSubtargetInfo.h"
23 #include "llvm/Support/ErrorHandling.h"
24 #include "llvm/Support/TargetRegistry.h"
25 using namespace llvm;
26
27 #define DEBUG_TYPE "wasm-mc-target-desc"
28
29 #define GET_SUBTARGETINFO_MC_DESC
30 #include "WebAssemblyGenSubtargetInfo.inc"
31
32 #define GET_REGINFO_MC_DESC
33 #include "WebAssemblyGenRegisterInfo.inc"
34
35 static MCAsmInfo *createWebAssemblyMCAsmInfo(const MCRegisterInfo &MRI,
36                                              const Triple &TT) {
37   MCAsmInfo *MAI = new WebAssemblyMCAsmInfo(TT);
38   return MAI;
39 }
40
41 static MCInstPrinter *
42 createWebAssemblyMCInstPrinter(const Triple &T, unsigned SyntaxVariant,
43                                const MCAsmInfo &MAI, const MCInstrInfo &MII,
44                                const MCRegisterInfo &MRI) {
45   if (SyntaxVariant == 0 || SyntaxVariant == 1)
46     return new WebAssemblyInstPrinter(MAI, MII, MRI);
47   return nullptr;
48 }
49
50 // Force static initialization.
51 extern "C" void LLVMInitializeWebAssemblyTargetMC() {
52   for (Target *T : {&TheWebAssemblyTarget32, &TheWebAssemblyTarget64}) {
53     // Register the MC asm info.
54     RegisterMCAsmInfoFn X(*T, createWebAssemblyMCAsmInfo);
55
56     // Register the MCInstPrinter.
57     TargetRegistry::RegisterMCInstPrinter(*T, createWebAssemblyMCInstPrinter);
58   }
59 }