2015-11-06 03:28:16 +08:00
|
|
|
// WebAssemblyMCInstLower.cpp - Convert WebAssembly MachineInstr to an MCInst //
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
2018-05-01 23:54:18 +08:00
|
|
|
/// This file contains code to lower WebAssembly MachineInstrs to their
|
2015-11-06 03:28:16 +08:00
|
|
|
/// corresponding MCInst records.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "WebAssemblyMCInstLower.h"
|
2017-02-25 07:18:00 +08:00
|
|
|
#include "WebAssemblyAsmPrinter.h"
|
2015-11-13 01:04:33 +08:00
|
|
|
#include "WebAssemblyMachineFunctionInfo.h"
|
2017-02-25 07:18:00 +08:00
|
|
|
#include "WebAssemblyRuntimeLibcallSignatures.h"
|
|
|
|
#include "WebAssemblyUtilities.h"
|
2015-11-06 03:28:16 +08:00
|
|
|
#include "llvm/CodeGen/AsmPrinter.h"
|
2015-11-13 01:04:33 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/IR/Constants.h"
|
2015-11-06 03:28:16 +08:00
|
|
|
#include "llvm/MC/MCAsmInfo.h"
|
|
|
|
#include "llvm/MC/MCContext.h"
|
|
|
|
#include "llvm/MC/MCExpr.h"
|
|
|
|
#include "llvm/MC/MCInst.h"
|
2017-02-25 07:18:00 +08:00
|
|
|
#include "llvm/MC/MCSymbolWasm.h"
|
2015-11-06 03:28:16 +08:00
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
2018-10-23 05:55:26 +08:00
|
|
|
// Defines llvm::WebAssembly::getStackOpcode to convert register instructions to
|
|
|
|
// stack instructions
|
|
|
|
#define GET_INSTRMAP_INFO 1
|
|
|
|
#include "WebAssemblyGenInstrInfo.inc"
|
|
|
|
|
2018-08-27 23:45:51 +08:00
|
|
|
// This disables the removal of registers when lowering into MC, as required
|
|
|
|
// by some current tests.
|
2018-09-05 09:27:38 +08:00
|
|
|
static cl::opt<bool>
|
|
|
|
WasmKeepRegisters("wasm-keep-registers", cl::Hidden,
|
|
|
|
cl::desc("WebAssembly: output stack registers in"
|
|
|
|
" instruction output for test purposes only."),
|
|
|
|
cl::init(false));
|
2018-08-27 23:45:51 +08:00
|
|
|
|
|
|
|
static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI);
|
|
|
|
|
2015-11-06 03:28:16 +08:00
|
|
|
MCSymbol *
|
|
|
|
WebAssemblyMCInstLower::GetGlobalAddressSymbol(const MachineOperand &MO) const {
|
2017-02-25 07:18:00 +08:00
|
|
|
const GlobalValue *Global = MO.getGlobal();
|
2018-07-17 07:09:29 +08:00
|
|
|
MCSymbolWasm *WasmSym = cast<MCSymbolWasm>(Printer.getSymbol(Global));
|
2017-02-25 07:18:00 +08:00
|
|
|
|
|
|
|
if (const auto *FuncTy = dyn_cast<FunctionType>(Global->getValueType())) {
|
|
|
|
const MachineFunction &MF = *MO.getParent()->getParent()->getParent();
|
|
|
|
const TargetMachine &TM = MF.getTarget();
|
2017-12-16 07:52:06 +08:00
|
|
|
const Function &CurrentFunc = MF.getFunction();
|
2017-02-25 07:18:00 +08:00
|
|
|
|
2018-10-04 06:22:48 +08:00
|
|
|
SmallVector<MVT, 1> ResultMVTs;
|
|
|
|
SmallVector<MVT, 4> ParamMVTs;
|
|
|
|
ComputeSignatureVTs(FuncTy, CurrentFunc, TM, ParamMVTs, ResultMVTs);
|
2017-02-25 07:18:00 +08:00
|
|
|
|
2018-10-04 06:22:48 +08:00
|
|
|
auto Signature = SignatureFromMVTs(ResultMVTs, ParamMVTs);
|
|
|
|
WasmSym->setSignature(Signature.get());
|
|
|
|
Printer.addSignature(std::move(Signature));
|
2018-02-23 13:08:34 +08:00
|
|
|
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
|
2017-02-25 07:18:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return WasmSym;
|
2015-11-06 03:28:16 +08:00
|
|
|
}
|
|
|
|
|
2015-11-30 06:32:02 +08:00
|
|
|
MCSymbol *WebAssemblyMCInstLower::GetExternalSymbolSymbol(
|
|
|
|
const MachineOperand &MO) const {
|
2017-02-25 07:18:00 +08:00
|
|
|
const char *Name = MO.getSymbolName();
|
2018-07-17 07:09:29 +08:00
|
|
|
MCSymbolWasm *WasmSym =
|
|
|
|
cast<MCSymbolWasm>(Printer.GetExternalSymbolSymbol(Name));
|
2017-02-25 07:18:00 +08:00
|
|
|
const WebAssemblySubtarget &Subtarget = Printer.getSubtarget();
|
|
|
|
|
|
|
|
// __stack_pointer is a global variable; all other external symbols used by
|
2018-02-23 13:08:34 +08:00
|
|
|
// CodeGen are functions. It's OK to hardcode knowledge of specific symbols
|
|
|
|
// here; this method is precisely there for fetching the signatures of known
|
|
|
|
// Clang-provided symbols.
|
|
|
|
if (strcmp(Name, "__stack_pointer") == 0) {
|
|
|
|
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_GLOBAL);
|
2018-03-02 02:06:21 +08:00
|
|
|
WasmSym->setGlobalType(wasm::WasmGlobalType{
|
2018-03-02 02:48:08 +08:00
|
|
|
uint8_t(Subtarget.hasAddr64() ? wasm::WASM_TYPE_I64
|
|
|
|
: wasm::WASM_TYPE_I32),
|
2018-03-02 02:06:21 +08:00
|
|
|
true});
|
2017-02-25 07:18:00 +08:00
|
|
|
return WasmSym;
|
2018-02-23 13:08:34 +08:00
|
|
|
}
|
2017-02-25 07:18:00 +08:00
|
|
|
|
2017-03-15 04:23:22 +08:00
|
|
|
SmallVector<wasm::ValType, 4> Returns;
|
|
|
|
SmallVector<wasm::ValType, 4> Params;
|
2018-09-28 06:20:33 +08:00
|
|
|
GetLibcallSignature(Subtarget, Name, Returns, Params);
|
2018-10-04 06:22:48 +08:00
|
|
|
auto Signature =
|
|
|
|
make_unique<wasm::WasmSignature>(std::move(Returns), std::move(Params));
|
|
|
|
WasmSym->setSignature(Signature.get());
|
|
|
|
Printer.addSignature(std::move(Signature));
|
2018-02-23 13:08:34 +08:00
|
|
|
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
|
2017-02-25 07:18:00 +08:00
|
|
|
|
|
|
|
return WasmSym;
|
2015-11-26 00:44:29 +08:00
|
|
|
}
|
|
|
|
|
2016-01-12 07:38:05 +08:00
|
|
|
MCOperand WebAssemblyMCInstLower::LowerSymbolOperand(MCSymbol *Sym,
|
|
|
|
int64_t Offset,
|
2018-08-03 22:33:37 +08:00
|
|
|
bool IsFunc,
|
|
|
|
bool IsGlob) const {
|
2016-01-12 07:38:05 +08:00
|
|
|
MCSymbolRefExpr::VariantKind VK =
|
2018-09-05 09:27:38 +08:00
|
|
|
IsFunc ? MCSymbolRefExpr::VK_WebAssembly_FUNCTION
|
|
|
|
: IsGlob ? MCSymbolRefExpr::VK_WebAssembly_GLOBAL
|
|
|
|
: MCSymbolRefExpr::VK_None;
|
2017-02-25 07:18:00 +08:00
|
|
|
|
2016-01-12 07:38:05 +08:00
|
|
|
const MCExpr *Expr = MCSymbolRefExpr::create(Sym, VK, Ctx);
|
2015-11-06 03:28:16 +08:00
|
|
|
|
2015-12-07 03:33:32 +08:00
|
|
|
if (Offset != 0) {
|
2016-01-12 07:38:05 +08:00
|
|
|
if (IsFunc)
|
|
|
|
report_fatal_error("Function addresses with offsets not supported");
|
2018-08-03 22:33:37 +08:00
|
|
|
if (IsGlob)
|
|
|
|
report_fatal_error("Global indexes with offsets not supported");
|
2015-12-07 03:33:32 +08:00
|
|
|
Expr =
|
|
|
|
MCBinaryExpr::createAdd(Expr, MCConstantExpr::create(Offset, Ctx), Ctx);
|
|
|
|
}
|
2015-11-06 03:28:16 +08:00
|
|
|
|
|
|
|
return MCOperand::createExpr(Expr);
|
|
|
|
}
|
|
|
|
|
2017-02-25 07:18:00 +08:00
|
|
|
// Return the WebAssembly type associated with the given register class.
|
2017-03-15 04:23:22 +08:00
|
|
|
static wasm::ValType getType(const TargetRegisterClass *RC) {
|
2017-02-25 07:18:00 +08:00
|
|
|
if (RC == &WebAssembly::I32RegClass)
|
2017-03-15 04:23:22 +08:00
|
|
|
return wasm::ValType::I32;
|
2017-02-25 07:18:00 +08:00
|
|
|
if (RC == &WebAssembly::I64RegClass)
|
2017-03-15 04:23:22 +08:00
|
|
|
return wasm::ValType::I64;
|
2017-02-25 07:18:00 +08:00
|
|
|
if (RC == &WebAssembly::F32RegClass)
|
2017-03-15 04:23:22 +08:00
|
|
|
return wasm::ValType::F32;
|
2017-02-25 07:18:00 +08:00
|
|
|
if (RC == &WebAssembly::F64RegClass)
|
2017-03-15 04:23:22 +08:00
|
|
|
return wasm::ValType::F64;
|
2018-09-21 06:04:44 +08:00
|
|
|
if (RC == &WebAssembly::V128RegClass)
|
|
|
|
return wasm::ValType::V128;
|
2017-02-25 07:18:00 +08:00
|
|
|
llvm_unreachable("Unexpected register class");
|
|
|
|
}
|
|
|
|
|
2015-11-06 03:28:16 +08:00
|
|
|
void WebAssemblyMCInstLower::Lower(const MachineInstr *MI,
|
|
|
|
MCInst &OutMI) const {
|
|
|
|
OutMI.setOpcode(MI->getOpcode());
|
|
|
|
|
2017-02-25 07:18:00 +08:00
|
|
|
const MCInstrDesc &Desc = MI->getDesc();
|
2015-11-06 03:28:16 +08:00
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
|
|
|
|
const MachineOperand &MO = MI->getOperand(i);
|
|
|
|
|
|
|
|
MCOperand MCOp;
|
|
|
|
switch (MO.getType()) {
|
|
|
|
default:
|
2017-01-28 11:23:49 +08:00
|
|
|
MI->print(errs());
|
2015-11-06 03:28:16 +08:00
|
|
|
llvm_unreachable("unknown operand type");
|
[WebAssembly] Make CFG stackification independent of basic-block labels.
This patch changes the way labels are referenced. Instead of referencing the
basic-block label name (eg. .LBB0_0), instructions now just have an immediate
which indicates the depth in the control-flow stack to find a label to jump to.
This makes them much closer to what we expect to have in the binary encoding,
and avoids the problem of basic-block label names not being explicit in the
binary encoding.
Also, it terminates blocks and loops with end_block and end_loop instructions,
rather than basic-block label names, for similar reasons.
This will also fix problems where two constructs appear to have the same label,
because we no longer explicitly use labels, so consumers that need labels will
presumably create their own labels, and presumably they won't reuse labels
when they do.
This patch does make the code a little more awkward to read; as a partial
mitigation, this patch also introduces comments showing where the labels are,
and comments on each branch showing where it's branching to.
llvm-svn: 257505
2016-01-13 03:14:46 +08:00
|
|
|
case MachineOperand::MO_MachineBasicBlock:
|
2017-01-28 11:23:49 +08:00
|
|
|
MI->print(errs());
|
[WebAssembly] Make CFG stackification independent of basic-block labels.
This patch changes the way labels are referenced. Instead of referencing the
basic-block label name (eg. .LBB0_0), instructions now just have an immediate
which indicates the depth in the control-flow stack to find a label to jump to.
This makes them much closer to what we expect to have in the binary encoding,
and avoids the problem of basic-block label names not being explicit in the
binary encoding.
Also, it terminates blocks and loops with end_block and end_loop instructions,
rather than basic-block label names, for similar reasons.
This will also fix problems where two constructs appear to have the same label,
because we no longer explicitly use labels, so consumers that need labels will
presumably create their own labels, and presumably they won't reuse labels
when they do.
This patch does make the code a little more awkward to read; as a partial
mitigation, this patch also introduces comments showing where the labels are,
and comments on each branch showing where it's branching to.
llvm-svn: 257505
2016-01-13 03:14:46 +08:00
|
|
|
llvm_unreachable("MachineBasicBlock operand should have been rewritten");
|
2015-11-13 01:04:33 +08:00
|
|
|
case MachineOperand::MO_Register: {
|
2015-11-06 03:28:16 +08:00
|
|
|
// Ignore all implicit register operands.
|
|
|
|
if (MO.isImplicit())
|
|
|
|
continue;
|
2015-11-13 01:04:33 +08:00
|
|
|
const WebAssemblyFunctionInfo &MFI =
|
|
|
|
*MI->getParent()->getParent()->getInfo<WebAssemblyFunctionInfo>();
|
|
|
|
unsigned WAReg = MFI.getWAReg(MO.getReg());
|
|
|
|
MCOp = MCOperand::createReg(WAReg);
|
2015-11-06 03:28:16 +08:00
|
|
|
break;
|
2015-11-13 01:04:33 +08:00
|
|
|
}
|
2015-11-06 03:28:16 +08:00
|
|
|
case MachineOperand::MO_Immediate:
|
2017-02-25 07:18:00 +08:00
|
|
|
if (i < Desc.NumOperands) {
|
|
|
|
const MCOperandInfo &Info = Desc.OpInfo[i];
|
|
|
|
if (Info.OperandType == WebAssembly::OPERAND_TYPEINDEX) {
|
|
|
|
MCSymbol *Sym = Printer.createTempSymbol("typeindex");
|
2018-07-17 07:09:29 +08:00
|
|
|
|
|
|
|
SmallVector<wasm::ValType, 4> Returns;
|
|
|
|
SmallVector<wasm::ValType, 4> Params;
|
|
|
|
|
|
|
|
const MachineRegisterInfo &MRI =
|
|
|
|
MI->getParent()->getParent()->getRegInfo();
|
|
|
|
for (const MachineOperand &MO : MI->defs())
|
|
|
|
Returns.push_back(getType(MRI.getRegClass(MO.getReg())));
|
|
|
|
for (const MachineOperand &MO : MI->explicit_uses())
|
|
|
|
if (MO.isReg())
|
|
|
|
Params.push_back(getType(MRI.getRegClass(MO.getReg())));
|
|
|
|
|
|
|
|
// call_indirect instructions have a callee operand at the end which
|
|
|
|
// doesn't count as a param.
|
|
|
|
if (WebAssembly::isCallIndirect(*MI))
|
|
|
|
Params.pop_back();
|
|
|
|
|
|
|
|
MCSymbolWasm *WasmSym = cast<MCSymbolWasm>(Sym);
|
2018-10-04 06:22:48 +08:00
|
|
|
auto Signature = make_unique<wasm::WasmSignature>(std::move(Returns),
|
|
|
|
std::move(Params));
|
|
|
|
WasmSym->setSignature(Signature.get());
|
|
|
|
Printer.addSignature(std::move(Signature));
|
2018-07-17 07:09:29 +08:00
|
|
|
WasmSym->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION);
|
|
|
|
|
|
|
|
const MCExpr *Expr = MCSymbolRefExpr::create(
|
|
|
|
WasmSym, MCSymbolRefExpr::VK_WebAssembly_TYPEINDEX, Ctx);
|
|
|
|
MCOp = MCOperand::createExpr(Expr);
|
|
|
|
break;
|
2017-02-25 07:18:00 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-06 03:28:16 +08:00
|
|
|
MCOp = MCOperand::createImm(MO.getImm());
|
|
|
|
break;
|
2015-11-13 01:04:33 +08:00
|
|
|
case MachineOperand::MO_FPImmediate: {
|
|
|
|
// TODO: MC converts all floating point immediate operands to double.
|
|
|
|
// This is fine for numeric values, but may cause NaNs to change bits.
|
|
|
|
const ConstantFP *Imm = MO.getFPImm();
|
|
|
|
if (Imm->getType()->isFloatTy())
|
|
|
|
MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToFloat());
|
|
|
|
else if (Imm->getType()->isDoubleTy())
|
|
|
|
MCOp = MCOperand::createFPImm(Imm->getValueAPF().convertToDouble());
|
|
|
|
else
|
|
|
|
llvm_unreachable("unknown floating point immediate type");
|
2015-11-06 03:28:16 +08:00
|
|
|
break;
|
2015-11-13 01:04:33 +08:00
|
|
|
}
|
2015-11-06 03:28:16 +08:00
|
|
|
case MachineOperand::MO_GlobalAddress:
|
2018-08-03 22:33:37 +08:00
|
|
|
assert(MO.getTargetFlags() == WebAssemblyII::MO_NO_FLAG &&
|
2016-01-12 07:38:05 +08:00
|
|
|
"WebAssembly does not use target flags on GlobalAddresses");
|
|
|
|
MCOp = LowerSymbolOperand(GetGlobalAddressSymbol(MO), MO.getOffset(),
|
2018-08-03 22:33:37 +08:00
|
|
|
MO.getGlobal()->getValueType()->isFunctionTy(),
|
|
|
|
false);
|
2015-11-06 03:28:16 +08:00
|
|
|
break;
|
2015-11-26 00:44:29 +08:00
|
|
|
case MachineOperand::MO_ExternalSymbol:
|
2016-01-12 07:38:05 +08:00
|
|
|
// The target flag indicates whether this is a symbol for a
|
|
|
|
// variable or a function.
|
2018-08-03 22:33:37 +08:00
|
|
|
assert((MO.getTargetFlags() & ~WebAssemblyII::MO_SYMBOL_MASK) == 0 &&
|
|
|
|
"WebAssembly uses only symbol flags on ExternalSymbols");
|
2018-09-05 09:27:38 +08:00
|
|
|
MCOp = LowerSymbolOperand(
|
|
|
|
GetExternalSymbolSymbol(MO), /*Offset=*/0,
|
2018-08-03 22:33:37 +08:00
|
|
|
(MO.getTargetFlags() & WebAssemblyII::MO_SYMBOL_FUNCTION) != 0,
|
|
|
|
(MO.getTargetFlags() & WebAssemblyII::MO_SYMBOL_GLOBAL) != 0);
|
2015-11-26 00:44:29 +08:00
|
|
|
break;
|
Reland "[WebAssembly] LSDA info generation"
Summary:
This adds support for LSDA (exception table) generation for wasm EH.
Wasm EH mostly follows the structure of Itanium-style exception tables,
with one exception: a call site table entry in wasm EH corresponds to
not a call site but a landing pad.
In wasm EH, the VM is responsible for stack unwinding. After an
exception occurs and the stack is unwound, the control flow is
transferred to wasm 'catch' instruction by the VM, after which the
personality function is called from the compiler-generated code. (Refer
to WasmEHPrepare pass for more information on this part.)
This patch:
- Changes wasm.landingpad.index intrinsic to take a token argument, to
make this 1:1 match with a catchpad instruction
- Stores landingpad index info and catch type info MachineFunction in
before instruction selection
- Lowers wasm.lsda intrinsic to an MCSymbol pointing to the start of an
exception table
- Adds WasmException class with overridden methods for table generation
- Adds support for LSDA section in Wasm object writer
Reviewers: dschuff, sbc100, rnk
Subscribers: mgorny, jgravelle-google, sunfish, llvm-commits
Differential Revision: https://reviews.llvm.org/D52748
llvm-svn: 345345
2018-10-26 07:55:10 +08:00
|
|
|
case MachineOperand::MO_MCSymbol:
|
|
|
|
// This is currently used only for LSDA symbols (GCC_except_table),
|
|
|
|
// because global addresses or other external symbols are handled above.
|
|
|
|
assert(MO.getTargetFlags() == 0 &&
|
|
|
|
"WebAssembly does not use target flags on MCSymbol");
|
|
|
|
MCOp = LowerSymbolOperand(MO.getMCSymbol(), /*Offset=*/0, false, false);
|
|
|
|
break;
|
2015-11-06 03:28:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
OutMI.addOperand(MCOp);
|
|
|
|
}
|
2018-08-27 23:45:51 +08:00
|
|
|
|
|
|
|
if (!WasmKeepRegisters)
|
|
|
|
removeRegisterOperands(MI, OutMI);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void removeRegisterOperands(const MachineInstr *MI, MCInst &OutMI) {
|
|
|
|
// Remove all uses of stackified registers to bring the instruction format
|
|
|
|
// into its final stack form used thruout MC, and transition opcodes to
|
|
|
|
// their _S variant.
|
|
|
|
// We do this seperate from the above code that still may need these
|
|
|
|
// registers for e.g. call_indirect signatures.
|
|
|
|
// See comments in lib/Target/WebAssembly/WebAssemblyInstrFormats.td for
|
|
|
|
// details.
|
|
|
|
// TODO: the code above creates new registers which are then removed here.
|
|
|
|
// That code could be slightly simplified by not doing that, though maybe
|
|
|
|
// it is simpler conceptually to keep the code above in "register mode"
|
|
|
|
// until this transition point.
|
|
|
|
// FIXME: we are not processing inline assembly, which contains register
|
|
|
|
// operands, because it is used by later target generic code.
|
|
|
|
if (MI->isDebugInstr() || MI->isLabel() || MI->isInlineAsm())
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Transform to _S instruction.
|
|
|
|
auto RegOpcode = OutMI.getOpcode();
|
2018-10-23 05:55:26 +08:00
|
|
|
auto StackOpcode = WebAssembly::getStackOpcode(RegOpcode);
|
|
|
|
assert(StackOpcode != -1 && "Failed to stackify instruction");
|
2018-08-27 23:45:51 +08:00
|
|
|
OutMI.setOpcode(StackOpcode);
|
|
|
|
|
|
|
|
// Remove register operands.
|
|
|
|
for (auto I = OutMI.getNumOperands(); I; --I) {
|
|
|
|
auto &MO = OutMI.getOperand(I - 1);
|
|
|
|
if (MO.isReg()) {
|
|
|
|
OutMI.erase(&MO);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|