blob: aed722cf7390736deaf0fb59de83b5959075292b [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//=- 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 "WebAssembly.h"
Dan Gohman058fce52015-11-13 00:21:05 +000017#include "WebAssemblyMachineFunctionInfo.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000018#include "llvm/MC/MCExpr.h"
19#include "llvm/MC/MCInst.h"
20#include "llvm/MC/MCInstrInfo.h"
21#include "llvm/MC/MCSubtargetInfo.h"
22#include "llvm/MC/MCSymbol.h"
23#include "llvm/Support/ErrorHandling.h"
24#include "llvm/Support/FormattedStream.h"
Dan Gohmane9361d52015-11-05 19:28:16 +000025#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000026#include <cctype>
27using namespace llvm;
28
29#define DEBUG_TYPE "asm-printer"
30
JF Bastienb9073fb2015-07-22 21:28:15 +000031#include "WebAssemblyGenAsmWriter.inc"
32
Dan Gohman10e730a2015-06-29 23:51:55 +000033WebAssemblyInstPrinter::WebAssemblyInstPrinter(const MCAsmInfo &MAI,
34 const MCInstrInfo &MII,
35 const MCRegisterInfo &MRI)
36 : MCInstPrinter(MAI, MII, MRI) {}
37
38void WebAssemblyInstPrinter::printRegName(raw_ostream &OS,
39 unsigned RegNo) const {
Dan Gohman058fce52015-11-13 00:21:05 +000040 assert(RegNo != WebAssemblyFunctionInfo::UnusedReg);
Dan Gohman4ba48162015-11-18 16:12:01 +000041 // Note that there's an implicit get_local/set_local here!
42 OS << "$" << RegNo;
Dan Gohman10e730a2015-06-29 23:51:55 +000043}
44
45void WebAssemblyInstPrinter::printInst(const MCInst *MI, raw_ostream &OS,
46 StringRef Annot,
47 const MCSubtargetInfo &STI) {
JF Bastienb9073fb2015-07-22 21:28:15 +000048 printInstruction(MI, OS);
Dan Gohmancf4748f2015-11-12 17:04:33 +000049
50 const MCInstrDesc &Desc = MII.get(MI->getOpcode());
51 if (Desc.isVariadic())
52 for (unsigned i = Desc.getNumOperands(), e = MI->getNumOperands(); i < e;
53 ++i) {
54 OS << ", ";
55 printOperand(MI, i, OS);
56 }
57
JF Bastienb9073fb2015-07-22 21:28:15 +000058 printAnnotation(OS, Annot);
Dan Gohmancf4748f2015-11-12 17:04:33 +000059}
60
61static std::string toString(const APFloat &FP) {
62 static const size_t BufBytes = 128;
63 char buf[BufBytes];
64 if (FP.isNaN())
65 assert((FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics())) ||
66 FP.bitwiseIsEqual(
67 APFloat::getQNaN(FP.getSemantics(), /*Negative=*/true))) &&
68 "convertToHexString handles neither SNaN nor NaN payloads");
69 // Use C99's hexadecimal floating-point representation.
70 auto Written = FP.convertToHexString(
71 buf, /*hexDigits=*/0, /*upperCase=*/false, APFloat::rmNearestTiesToEven);
72 (void)Written;
73 assert(Written != 0);
74 assert(Written < BufBytes);
75 return buf;
Dan Gohman10e730a2015-06-29 23:51:55 +000076}
JF Bastienaf111db2015-08-24 22:16:48 +000077
78void WebAssemblyInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
79 raw_ostream &O) {
80 const MCOperand &Op = MI->getOperand(OpNo);
Dan Gohmane9361d52015-11-05 19:28:16 +000081 if (Op.isReg()) {
Dan Gohman4ba48162015-11-18 16:12:01 +000082 unsigned WAReg = Op.getReg();
83 if (int(WAReg) >= 0)
84 printRegName(O, WAReg);
85 else if (OpNo >= MII.get(MI->getOpcode()).getNumDefs())
86 O << "$pop" << (WAReg & INT32_MAX);
87 else if (WAReg != WebAssemblyFunctionInfo::UnusedReg)
88 O << "$push" << (WAReg & INT32_MAX);
89 else
90 O << "$discard";
Dan Gohmane9361d52015-11-05 19:28:16 +000091 } else if (Op.isImm())
Dan Gohmancf4748f2015-11-12 17:04:33 +000092 O << Op.getImm();
Dan Gohmane9361d52015-11-05 19:28:16 +000093 else if (Op.isFPImm())
Dan Gohmancf4748f2015-11-12 17:04:33 +000094 O << toString(APFloat(Op.getFPImm()));
JF Bastienaf111db2015-08-24 22:16:48 +000095 else {
96 assert(Op.isExpr() && "unknown operand kind in printOperand");
97 Op.getExpr()->print(O, &MAI);
98 }
99}