blob: 2a357238debbc782581bc2f9cac23da406e7be3f [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
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000011/// Print MCInst instructions to wasm format.
Dan Gohman10e730a2015-06-29 23:51:55 +000012///
13//===----------------------------------------------------------------------===//
14
15#include "InstPrinter/WebAssemblyInstPrinter.h"
Dan Gohman7a6b9822015-11-29 22:32:02 +000016#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000017#include "WebAssembly.h"
Dan Gohman058fce52015-11-13 00:21:05 +000018#include "WebAssemblyMachineFunctionInfo.h"
Dan Gohman1d68e80f2016-01-12 19:14:46 +000019#include "llvm/ADT/SmallSet.h"
20#include "llvm/ADT/StringExtras.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000021#include "llvm/CodeGen/TargetRegisterInfo.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000022#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCInst.h"
24#include "llvm/MC/MCInstrInfo.h"
25#include "llvm/MC/MCSubtargetInfo.h"
26#include "llvm/MC/MCSymbol.h"
27#include "llvm/Support/ErrorHandling.h"
28#include "llvm/Support/FormattedStream.h"
Dan Gohman10e730a2015-06-29 23:51:55 +000029using namespace llvm;
30
31#define DEBUG_TYPE "asm-printer"
32
JF Bastienb9073fb2015-07-22 21:28:15 +000033#include "WebAssemblyGenAsmWriter.inc"
34
Dan Gohman10e730a2015-06-29 23:51:55 +000035WebAssemblyInstPrinter::WebAssemblyInstPrinter(const MCAsmInfo &MAI,
36 const MCInstrInfo &MII,
37 const MCRegisterInfo &MRI)
Heejin Ahn3103d3d2018-10-25 23:45:48 +000038 : MCInstPrinter(MAI, MII, MRI) {}
Dan Gohman10e730a2015-06-29 23:51:55 +000039
40void WebAssemblyInstPrinter::printRegName(raw_ostream &OS,
41 unsigned RegNo) const {
Dan Gohman058fce52015-11-13 00:21:05 +000042 assert(RegNo != WebAssemblyFunctionInfo::UnusedReg);
Dan Gohman4ba48162015-11-18 16:12:01 +000043 // Note that there's an implicit get_local/set_local here!
44 OS << "$" << RegNo;
Dan Gohman10e730a2015-06-29 23:51:55 +000045}
46
47void WebAssemblyInstPrinter::printInst(const MCInst *MI, raw_ostream &OS,
48 StringRef Annot,
Sam Clegg16c16822018-05-10 22:16:44 +000049 const MCSubtargetInfo &STI) {
Dan Gohmandd20c702015-12-21 16:50:41 +000050 // Print the instruction (this uses the AsmStrings from the .td files).
JF Bastienb9073fb2015-07-22 21:28:15 +000051 printInstruction(MI, OS);
Dan Gohmancf4748f2015-11-12 17:04:33 +000052
Dan Gohmandd20c702015-12-21 16:50:41 +000053 // Print any additional variadic operands.
Dan Gohmancf4748f2015-11-12 17:04:33 +000054 const MCInstrDesc &Desc = MII.get(MI->getOpcode());
55 if (Desc.isVariadic())
Dan Gohmandd20c702015-12-21 16:50:41 +000056 for (auto i = Desc.getNumOperands(), e = MI->getNumOperands(); i < e; ++i) {
Dan Gohmanf50d9642016-10-25 16:55:52 +000057 // FIXME: For CALL_INDIRECT_VOID, don't print a leading comma, because
58 // we have an extra flags operand which is not currently printed, for
59 // compatiblity reasons.
Heejin Ahnf208f632018-09-05 01:27:38 +000060 if (i != 0 && ((MI->getOpcode() != WebAssembly::CALL_INDIRECT_VOID &&
61 MI->getOpcode() != WebAssembly::CALL_INDIRECT_VOID_S) ||
62 i != Desc.getNumOperands()))
Dan Gohman53828fd2015-11-23 16:50:18 +000063 OS << ", ";
Dan Gohmancf4748f2015-11-12 17:04:33 +000064 printOperand(MI, i, OS);
65 }
66
Dan Gohmandd20c702015-12-21 16:50:41 +000067 // Print any added annotation.
JF Bastienb9073fb2015-07-22 21:28:15 +000068 printAnnotation(OS, Annot);
Dan Gohman1d68e80f2016-01-12 19:14:46 +000069
70 if (CommentStream) {
71 // Observe any effects on the control flow stack, for use in annotating
72 // control flow label references.
Heejin Ahn3103d3d2018-10-25 23:45:48 +000073 unsigned Opc = MI->getOpcode();
74 switch (Opc) {
Dan Gohman1d68e80f2016-01-12 19:14:46 +000075 default:
76 break;
Heejin Ahn3103d3d2018-10-25 23:45:48 +000077
Richard Trieu01f99f32018-08-11 04:18:05 +000078 case WebAssembly::LOOP:
Heejin Ahn3103d3d2018-10-25 23:45:48 +000079 case WebAssembly::LOOP_S:
Dan Gohman3a643e82016-10-06 22:10:23 +000080 printAnnotation(OS, "label" + utostr(ControlFlowCounter) + ':');
81 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, true));
Dan Gohman1d68e80f2016-01-12 19:14:46 +000082 break;
Heejin Ahn3103d3d2018-10-25 23:45:48 +000083
Dan Gohman1d68e80f2016-01-12 19:14:46 +000084 case WebAssembly::BLOCK:
Richard Trieu01f99f32018-08-11 04:18:05 +000085 case WebAssembly::BLOCK_S:
Dan Gohman1d68e80f2016-01-12 19:14:46 +000086 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, false));
87 break;
Heejin Ahn3103d3d2018-10-25 23:45:48 +000088
89 case WebAssembly::TRY:
90 case WebAssembly::TRY_S:
91 ControlFlowStack.push_back(std::make_pair(ControlFlowCounter++, false));
92 EHPadStack.push_back(EHPadStackCounter++);
93 LastSeenEHInst = TRY;
94 break;
95
Dan Gohman1d68e80f2016-01-12 19:14:46 +000096 case WebAssembly::END_LOOP:
Richard Trieu01f99f32018-08-11 04:18:05 +000097 case WebAssembly::END_LOOP_S:
Wouter van Oortmerssen98432952019-01-03 22:59:59 +000098 if (ControlFlowStack.empty()) {
99 printAnnotation(OS, "End marker mismatch!");
100 } else {
101 ControlFlowStack.pop_back();
102 }
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000103 break;
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000104
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000105 case WebAssembly::END_BLOCK:
Richard Trieu01f99f32018-08-11 04:18:05 +0000106 case WebAssembly::END_BLOCK_S:
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000107 if (ControlFlowStack.empty()) {
108 printAnnotation(OS, "End marker mismatch!");
109 } else {
110 printAnnotation(
111 OS, "label" + utostr(ControlFlowStack.pop_back_val().first) + ':');
112 }
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000113 break;
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000114
115 case WebAssembly::END_TRY:
116 case WebAssembly::END_TRY_S:
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000117 if (ControlFlowStack.empty()) {
118 printAnnotation(OS, "End marker mismatch!");
119 } else {
120 printAnnotation(
121 OS, "label" + utostr(ControlFlowStack.pop_back_val().first) + ':');
122 LastSeenEHInst = END_TRY;
123 }
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000124 break;
125
126 case WebAssembly::CATCH_I32:
127 case WebAssembly::CATCH_I32_S:
128 case WebAssembly::CATCH_I64:
129 case WebAssembly::CATCH_I64_S:
130 case WebAssembly::CATCH_ALL:
131 case WebAssembly::CATCH_ALL_S:
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000132 // There can be multiple catch instructions for one try instruction, so we
Heejin Ahn5b023e02018-11-02 18:38:52 +0000133 // print a label only for the first 'catch' label.
134 if (LastSeenEHInst != CATCH) {
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000135 if (EHPadStack.empty()) {
136 printAnnotation(OS, "try-catch mismatch!");
137 } else {
138 printAnnotation(OS,
139 "catch" + utostr(EHPadStack.pop_back_val()) + ':');
140 }
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000141 }
142 LastSeenEHInst = CATCH;
143 break;
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000144 }
145
146 // Annotate any control flow label references.
147 unsigned NumFixedOperands = Desc.NumOperands;
148 SmallSet<uint64_t, 8> Printed;
149 for (unsigned i = 0, e = MI->getNumOperands(); i < e; ++i) {
Wouter van Oortmerssend3c544a2018-12-17 22:04:44 +0000150 // See if this operand denotes a basic block target.
151 if (i < NumFixedOperands) {
152 // A non-variable_ops operand, check its type.
153 if (Desc.OpInfo[i].OperandType != WebAssembly::OPERAND_BASIC_BLOCK)
154 continue;
155 } else {
156 // A variable_ops operand, which currently can be immediates (used in
157 // br_table) which are basic block targets, or for call instructions
158 // when using -wasm-keep-registers (in which case they are registers,
159 // and should not be processed).
160 if (!MI->getOperand(i).isImm())
161 continue;
162 }
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000163 uint64_t Depth = MI->getOperand(i).getImm();
164 if (!Printed.insert(Depth).second)
165 continue;
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000166
167 if (Opc == WebAssembly::RETHROW || Opc == WebAssembly::RETHROW_S) {
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000168 if (Depth > EHPadStack.size()) {
169 printAnnotation(OS, "Invalid depth argument!");
170 } else if (Depth == EHPadStack.size()) {
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000171 // This can happen when rethrow instruction breaks out of all nests
172 // and throws up to the current function's caller.
173 printAnnotation(OS, utostr(Depth) + ": " + "to caller");
174 } else {
175 uint64_t CatchNo = EHPadStack.rbegin()[Depth];
176 printAnnotation(OS, utostr(Depth) + ": " + "down to catch" +
177 utostr(CatchNo));
178 }
179
180 } else {
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000181 if (Depth >= ControlFlowStack.size()) {
182 printAnnotation(OS, "Invalid depth argument!");
183 } else {
184 const auto &Pair = ControlFlowStack.rbegin()[Depth];
185 printAnnotation(OS, utostr(Depth) + ": " +
186 (Pair.second ? "up" : "down") + " to label" +
187 utostr(Pair.first));
188 }
Heejin Ahn3103d3d2018-10-25 23:45:48 +0000189 }
Dan Gohman1d68e80f2016-01-12 19:14:46 +0000190 }
191 }
Dan Gohmancf4748f2015-11-12 17:04:33 +0000192}
193
194static std::string toString(const APFloat &FP) {
Dan Gohmanaa742912016-02-16 15:14:23 +0000195 // Print NaNs with custom payloads specially.
Heejin Ahnf208f632018-09-05 01:27:38 +0000196 if (FP.isNaN() && !FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics())) &&
Dan Gohman207ed222016-12-22 16:00:55 +0000197 !FP.bitwiseIsEqual(
198 APFloat::getQNaN(FP.getSemantics(), /*Negative=*/true))) {
Dan Gohmanaa742912016-02-16 15:14:23 +0000199 APInt AI = FP.bitcastToAPInt();
Heejin Ahnf208f632018-09-05 01:27:38 +0000200 return std::string(AI.isNegative() ? "-" : "") + "nan:0x" +
201 utohexstr(AI.getZExtValue() &
202 (AI.getBitWidth() == 32 ? INT64_C(0x007fffff)
203 : INT64_C(0x000fffffffffffff)),
204 /*LowerCase=*/true);
Dan Gohmanaa742912016-02-16 15:14:23 +0000205 }
206
207 // Use C99's hexadecimal floating-point representation.
Dan Gohmancf4748f2015-11-12 17:04:33 +0000208 static const size_t BufBytes = 128;
209 char buf[BufBytes];
Dan Gohmancf4748f2015-11-12 17:04:33 +0000210 auto Written = FP.convertToHexString(
211 buf, /*hexDigits=*/0, /*upperCase=*/false, APFloat::rmNearestTiesToEven);
212 (void)Written;
213 assert(Written != 0);
214 assert(Written < BufBytes);
215 return buf;
Dan Gohman10e730a2015-06-29 23:51:55 +0000216}
JF Bastienaf111db2015-08-24 22:16:48 +0000217
218void WebAssemblyInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
219 raw_ostream &O) {
220 const MCOperand &Op = MI->getOperand(OpNo);
Dan Gohmane9361d52015-11-05 19:28:16 +0000221 if (Op.isReg()) {
Dan Gohman4ba48162015-11-18 16:12:01 +0000222 unsigned WAReg = Op.getReg();
223 if (int(WAReg) >= 0)
224 printRegName(O, WAReg);
225 else if (OpNo >= MII.get(MI->getOpcode()).getNumDefs())
Dan Gohmanb7c24002016-05-21 00:21:56 +0000226 O << "$pop" << WebAssemblyFunctionInfo::getWARegStackId(WAReg);
Dan Gohman4ba48162015-11-18 16:12:01 +0000227 else if (WAReg != WebAssemblyFunctionInfo::UnusedReg)
Dan Gohmanb7c24002016-05-21 00:21:56 +0000228 O << "$push" << WebAssemblyFunctionInfo::getWARegStackId(WAReg);
Dan Gohman4ba48162015-11-18 16:12:01 +0000229 else
Dan Gohman71008092016-05-17 23:19:03 +0000230 O << "$drop";
Dan Gohman700515f2015-11-23 21:55:57 +0000231 // Add a '=' suffix if this is a def.
232 if (OpNo < MII.get(MI->getOpcode()).getNumDefs())
233 O << '=';
Dan Gohman53828fd2015-11-23 16:50:18 +0000234 } else if (Op.isImm()) {
Dan Gohman3acb1872016-10-24 23:27:49 +0000235 O << Op.getImm();
Dan Gohman85159ca2016-01-12 01:45:12 +0000236 } else if (Op.isFPImm()) {
Dan Gohmanaa742912016-02-16 15:14:23 +0000237 const MCInstrDesc &Desc = MII.get(MI->getOpcode());
Dan Gohmanaa742912016-02-16 15:14:23 +0000238 const MCOperandInfo &Info = Desc.OpInfo[OpNo];
Dan Gohman4b8e8be2016-10-03 21:31:31 +0000239 if (Info.OperandType == WebAssembly::OPERAND_F32IMM) {
Dan Gohmanaa742912016-02-16 15:14:23 +0000240 // TODO: MC converts all floating point immediate operands to double.
241 // This is fine for numeric values, but may cause NaNs to change bits.
Benjamin Kramera01e97d2018-02-22 22:29:27 +0000242 O << ::toString(APFloat(float(Op.getFPImm())));
Dan Gohmanaa742912016-02-16 15:14:23 +0000243 } else {
Dan Gohman4b8e8be2016-10-03 21:31:31 +0000244 assert(Info.OperandType == WebAssembly::OPERAND_F64IMM);
Benjamin Kramera01e97d2018-02-22 22:29:27 +0000245 O << ::toString(APFloat(Op.getFPImm()));
Dan Gohmanaa742912016-02-16 15:14:23 +0000246 }
Dan Gohman85159ca2016-01-12 01:45:12 +0000247 } else {
JF Bastienaf111db2015-08-24 22:16:48 +0000248 assert(Op.isExpr() && "unknown operand kind in printOperand");
249 Op.getExpr()->print(O, &MAI);
250 }
251}
Dan Gohman5e0886b2015-12-06 19:42:29 +0000252
Wouter van Oortmerssend3c544a2018-12-17 22:04:44 +0000253void WebAssemblyInstPrinter::printBrList(const MCInst *MI, unsigned OpNo,
254 raw_ostream &O) {
255 O << "{";
256 for (unsigned I = OpNo, E = MI->getNumOperands(); I != E; ++I) {
257 if (I != OpNo)
258 O << ", ";
259 O << MI->getOperand(I).getImm();
260 }
261 O << "}";
262}
263
Heejin Ahnf208f632018-09-05 01:27:38 +0000264void WebAssemblyInstPrinter::printWebAssemblyP2AlignOperand(const MCInst *MI,
265 unsigned OpNo,
266 raw_ostream &O) {
Dan Gohmanbb372242016-01-26 03:39:31 +0000267 int64_t Imm = MI->getOperand(OpNo).getImm();
268 if (Imm == WebAssembly::GetDefaultP2Align(MI->getOpcode()))
269 return;
270 O << ":p2align=" << Imm;
271}
272
Heejin Ahnf208f632018-09-05 01:27:38 +0000273void WebAssemblyInstPrinter::printWebAssemblySignatureOperand(const MCInst *MI,
274 unsigned OpNo,
275 raw_ostream &O) {
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000276 auto Imm = static_cast<unsigned>(MI->getOperand(OpNo).getImm());
277 if (Imm != wasm::WASM_TYPE_NORESULT)
278 O << WebAssembly::anyTypeToString(Imm);
279}
280
281// We have various enums representing a subset of these types, use this
282// function to convert any of them to text.
283const char *llvm::WebAssembly::anyTypeToString(unsigned Ty) {
284 switch (Ty) {
285 case wasm::WASM_TYPE_I32:
286 return "i32";
287 case wasm::WASM_TYPE_I64:
288 return "i64";
289 case wasm::WASM_TYPE_F32:
290 return "f32";
291 case wasm::WASM_TYPE_F64:
292 return "f64";
293 case wasm::WASM_TYPE_V128:
294 return "v128";
295 case wasm::WASM_TYPE_ANYFUNC:
296 return "anyfunc";
297 case wasm::WASM_TYPE_FUNC:
298 return "func";
299 case wasm::WASM_TYPE_EXCEPT_REF:
300 return "except_ref";
301 case wasm::WASM_TYPE_NORESULT:
302 return "void";
Wouter van Oortmerssenad72f682019-01-02 23:23:51 +0000303 default:
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000304 return "invalid_type";
Dan Gohman2726b882016-10-06 22:29:32 +0000305 }
306}
307
Wouter van Oortmerssen98432952019-01-03 22:59:59 +0000308const char *llvm::WebAssembly::typeToString(wasm::ValType Ty) {
309 return anyTypeToString(static_cast<unsigned>(Ty));
Dan Gohman5e0886b2015-12-06 19:42:29 +0000310}