blob: 0bfef44324586fc406e00360d5337f9d92bf3d80 [file] [log] [blame]
Dan Gohmane9361d52015-11-05 19:28:16 +00001// WebAssemblyMCInstLower.cpp - Convert WebAssembly MachineInstr to an MCInst //
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 contains code to lower WebAssembly MachineInstrs to their
12/// corresponding MCInst records.
13///
14//===----------------------------------------------------------------------===//
15
16#include "WebAssemblyMCInstLower.h"
Dan Gohmancf4748f2015-11-12 17:04:33 +000017#include "WebAssemblyMachineFunctionInfo.h"
Dan Gohmane9361d52015-11-05 19:28:16 +000018#include "llvm/ADT/SmallString.h"
Dan Gohmane9361d52015-11-05 19:28:16 +000019#include "llvm/CodeGen/AsmPrinter.h"
20#include "llvm/CodeGen/MachineBasicBlock.h"
Dan Gohmancf4748f2015-11-12 17:04:33 +000021#include "llvm/CodeGen/MachineFunction.h"
Dan Gohmane9361d52015-11-05 19:28:16 +000022#include "llvm/CodeGen/MachineInstr.h"
Dan Gohmancf4748f2015-11-12 17:04:33 +000023#include "llvm/IR/Constants.h"
Dan Gohmane9361d52015-11-05 19:28:16 +000024#include "llvm/MC/MCAsmInfo.h"
25#include "llvm/MC/MCContext.h"
26#include "llvm/MC/MCExpr.h"
27#include "llvm/MC/MCInst.h"
28#include "llvm/Support/ErrorHandling.h"
29#include "llvm/Support/raw_ostream.h"
30using namespace llvm;
31
32MCSymbol *
33WebAssemblyMCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const {
34 return Printer.getSymbol(MO.getGlobal());
35}
36
Dan Gohman2c8fe6a2015-11-25 16:44:29 +000037MCSymbol *
38WebAssemblyMCInstLower::GetExternalSymbolSymbol(const MachineOperand &MO) const {
39 return Printer.GetExternalSymbolSymbol(MO.getSymbolName());
40}
41
Dan Gohmane9361d52015-11-05 19:28:16 +000042MCOperand WebAssemblyMCInstLower::LowerSymbolOperand(const MachineOperand &MO,
43 MCSymbol *Sym) const {
44
45 const MCExpr *Expr = MCSymbolRefExpr::create(Sym, Ctx);
46
47 if (!MO.isJTI() && MO.getOffset())
48 llvm_unreachable("unknown symbol op");
49
50 return MCOperand::createExpr(Expr);
51}
52
53void WebAssemblyMCInstLower::Lower(const MachineInstr *MI,
54 MCInst &OutMI) const {
55 OutMI.setOpcode(MI->getOpcode());
56
57 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
58 const MachineOperand &MO = MI->getOperand(i);
59
60 MCOperand MCOp;
61 switch (MO.getType()) {
62 default:
63 MI->dump();
64 llvm_unreachable("unknown operand type");
Dan Gohmancf4748f2015-11-12 17:04:33 +000065 case MachineOperand::MO_Register: {
Dan Gohmane9361d52015-11-05 19:28:16 +000066 // Ignore all implicit register operands.
67 if (MO.isImplicit())
68 continue;
Dan Gohmancf4748f2015-11-12 17:04:33 +000069 // TODO: Handle physical registers.
70 const WebAssemblyFunctionInfo &MFI =
71 *MI->getParent()->getParent()->getInfo<WebAssemblyFunctionInfo>();
72 unsigned WAReg = MFI.getWAReg(MO.getReg());
73 MCOp = MCOperand::createReg(WAReg);
Dan Gohmane9361d52015-11-05 19:28:16 +000074 break;
Dan Gohmancf4748f2015-11-12 17:04:33 +000075 }
Dan Gohmane9361d52015-11-05 19:28:16 +000076 case MachineOperand::MO_Immediate:
77 MCOp = MCOperand::createImm(MO.getImm());
78 break;
Dan Gohmancf4748f2015-11-12 17:04:33 +000079 case MachineOperand::MO_FPImmediate: {
80 // TODO: MC converts all floating point immediate operands to double.
81 // This is fine for numeric values, but may cause NaNs to change bits.
82 const ConstantFP *Imm = MO.getFPImm();
83 if (Imm->getType()->isFloatTy())
84 MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToFloat());
85 else if (Imm->getType()->isDoubleTy())
86 MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToDouble());
87 else
88 llvm_unreachable("unknown floating point immediate type");
Dan Gohmane9361d52015-11-05 19:28:16 +000089 break;
Dan Gohmancf4748f2015-11-12 17:04:33 +000090 }
Dan Gohmane9361d52015-11-05 19:28:16 +000091 case MachineOperand::MO_MachineBasicBlock:
92 MCOp = MCOperand::createExpr(
93 MCSymbolRefExpr::create(MO.getMBB()->getSymbol(), Ctx));
94 break;
Dan Gohmane9361d52015-11-05 19:28:16 +000095 case MachineOperand::MO_GlobalAddress:
96 MCOp = LowerSymbolOperand(MO, GetGlobalAddressSymbol(MO));
97 break;
Dan Gohman2c8fe6a2015-11-25 16:44:29 +000098 case MachineOperand::MO_ExternalSymbol:
99 MCOp = LowerSymbolOperand(MO, GetExternalSymbolSymbol(MO));
100 break;
Dan Gohmane9361d52015-11-05 19:28:16 +0000101 }
102
103 OutMI.addOperand(MCOp);
104 }
105}