3a151dec16f39ccb0b01475c17b245540cc6a238
[oota-llvm.git] / lib / Target / WebAssembly / InstPrinter / WebAssemblyInstPrinter.cpp
1 //=- WebAssemblyInstPrinter.cpp - WebAssembly assembly instruction printing -=//
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 Print MCInst instructions to wasm format.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #include "InstPrinter/WebAssemblyInstPrinter.h"
16 #include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
17 #include "WebAssembly.h"
18 #include "WebAssemblyMachineFunctionInfo.h"
19 #include "llvm/MC/MCExpr.h"
20 #include "llvm/MC/MCInst.h"
21 #include "llvm/MC/MCInstrInfo.h"
22 #include "llvm/MC/MCSubtargetInfo.h"
23 #include "llvm/MC/MCSymbol.h"
24 #include "llvm/Support/ErrorHandling.h"
25 #include "llvm/Support/FormattedStream.h"
26 #include "llvm/Target/TargetRegisterInfo.h"
27 #include <cctype>
28 using namespace llvm;
29
30 #define DEBUG_TYPE "asm-printer"
31
32 #include "WebAssemblyGenAsmWriter.inc"
33
34 WebAssemblyInstPrinter::WebAssemblyInstPrinter(const MCAsmInfo &MAI,
35                                                const MCInstrInfo &MII,
36                                                const MCRegisterInfo &MRI)
37     : MCInstPrinter(MAI, MII, MRI) {}
38
39 void WebAssemblyInstPrinter::printRegName(raw_ostream &OS,
40                                           unsigned RegNo) const {
41   assert(RegNo != WebAssemblyFunctionInfo::UnusedReg);
42   // Note that there's an implicit get_local/set_local here!
43   OS << "$" << RegNo;
44 }
45
46 void WebAssemblyInstPrinter::printInst(const MCInst *MI, raw_ostream &OS,
47                                        StringRef Annot,
48                                        const MCSubtargetInfo & /*STI*/) {
49   printInstruction(MI, OS);
50
51   const MCInstrDesc &Desc = MII.get(MI->getOpcode());
52   if (Desc.isVariadic())
53     for (unsigned i = Desc.getNumOperands(), e = MI->getNumOperands(); i < e;
54          ++i) {
55       if (i != 0)
56         OS << ", ";
57       printOperand(MI, i, OS);
58     }
59
60   printAnnotation(OS, Annot);
61 }
62
63 static std::string toString(const APFloat &FP) {
64   static const size_t BufBytes = 128;
65   char buf[BufBytes];
66   if (FP.isNaN())
67     assert((FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics())) ||
68             FP.bitwiseIsEqual(
69                 APFloat::getQNaN(FP.getSemantics(), /*Negative=*/true))) &&
70            "convertToHexString handles neither SNaN nor NaN payloads");
71   // Use C99's hexadecimal floating-point representation.
72   auto Written = FP.convertToHexString(
73       buf, /*hexDigits=*/0, /*upperCase=*/false, APFloat::rmNearestTiesToEven);
74   (void)Written;
75   assert(Written != 0);
76   assert(Written < BufBytes);
77   return buf;
78 }
79
80 void WebAssemblyInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
81                                           raw_ostream &O) {
82   const MCOperand &Op = MI->getOperand(OpNo);
83   if (Op.isReg()) {
84     unsigned WAReg = Op.getReg();
85     if (int(WAReg) >= 0)
86       printRegName(O, WAReg);
87     else if (OpNo >= MII.get(MI->getOpcode()).getNumDefs())
88       O << "$pop" << (WAReg & INT32_MAX);
89     else if (WAReg != WebAssemblyFunctionInfo::UnusedReg)
90       O << "$push" << (WAReg & INT32_MAX);
91     else
92       O << "$discard";
93     // Add a '=' suffix if this is a def.
94     if (OpNo < MII.get(MI->getOpcode()).getNumDefs())
95       O << '=';
96   } else if (Op.isImm()) {
97     switch (MI->getOpcode()) {
98     case WebAssembly::PARAM:
99     case WebAssembly::RESULT:
100     case WebAssembly::LOCAL:
101       O << WebAssembly::TypeToString(MVT::SimpleValueType(Op.getImm()));
102       break;
103     default:
104       O << Op.getImm();
105       break;
106     }
107   } else if (Op.isFPImm())
108     O << toString(APFloat(Op.getFPImm()));
109   else {
110     assert(Op.isExpr() && "unknown operand kind in printOperand");
111     Op.getExpr()->print(O, &MAI);
112   }
113 }
114
115 const char *llvm::WebAssembly::TypeToString(MVT Ty) {
116   switch (Ty.SimpleTy) {
117   case MVT::i32:
118     return "i32";
119   case MVT::i64:
120     return "i64";
121   case MVT::f32:
122     return "f32";
123   case MVT::f64:
124     return "f64";
125   default:
126     llvm_unreachable("unsupported type");
127   }
128 }