2015-06-30 07:51:55 +08:00
|
|
|
//=- WebAssemblyISelLowering.cpp - WebAssembly DAG Lowering Implementation -==//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// \file
|
|
|
|
/// \brief This file implements the WebAssemblyTargetLowering class.
|
|
|
|
///
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "WebAssemblyISelLowering.h"
|
|
|
|
#include "MCTargetDesc/WebAssemblyMCTargetDesc.h"
|
|
|
|
#include "WebAssemblyMachineFunctionInfo.h"
|
|
|
|
#include "WebAssemblySubtarget.h"
|
|
|
|
#include "WebAssemblyTargetMachine.h"
|
|
|
|
#include "WebAssemblyTargetObjectFile.h"
|
|
|
|
#include "llvm/CodeGen/Analysis.h"
|
2015-08-25 06:16:48 +08:00
|
|
|
#include "llvm/CodeGen/CallingConvLower.h"
|
2015-09-17 00:51:30 +08:00
|
|
|
#include "llvm/CodeGen/MachineJumpTableInfo.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/SelectionDAG.h"
|
2015-07-23 05:28:15 +08:00
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
|
|
#include "llvm/IR/DiagnosticPrinter.h"
|
2015-06-30 07:51:55 +08:00
|
|
|
#include "llvm/IR/Function.h"
|
|
|
|
#include "llvm/IR/Intrinsics.h"
|
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/ErrorHandling.h"
|
|
|
|
#include "llvm/Support/raw_ostream.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "wasm-lower"
|
|
|
|
|
2015-07-23 05:28:15 +08:00
|
|
|
namespace {
|
|
|
|
// Diagnostic information for unimplemented or unsupported feature reporting.
|
|
|
|
// FIXME copied from BPF and AMDGPU.
|
2015-11-26 00:29:24 +08:00
|
|
|
class DiagnosticInfoUnsupported final : public DiagnosticInfo {
|
2015-07-23 05:28:15 +08:00
|
|
|
private:
|
|
|
|
// Debug location where this diagnostic is triggered.
|
|
|
|
DebugLoc DLoc;
|
|
|
|
const Twine &Description;
|
|
|
|
const Function &Fn;
|
|
|
|
SDValue Value;
|
|
|
|
|
|
|
|
static int KindID;
|
|
|
|
|
|
|
|
static int getKindID() {
|
|
|
|
if (KindID == 0)
|
|
|
|
KindID = llvm::getNextAvailablePluginDiagnosticKind();
|
|
|
|
return KindID;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
DiagnosticInfoUnsupported(SDLoc DLoc, const Function &Fn, const Twine &Desc,
|
|
|
|
SDValue Value)
|
|
|
|
: DiagnosticInfo(getKindID(), DS_Error), DLoc(DLoc.getDebugLoc()),
|
|
|
|
Description(Desc), Fn(Fn), Value(Value) {}
|
|
|
|
|
|
|
|
void print(DiagnosticPrinter &DP) const override {
|
|
|
|
std::string Str;
|
|
|
|
raw_string_ostream OS(Str);
|
|
|
|
|
|
|
|
if (DLoc) {
|
|
|
|
auto DIL = DLoc.get();
|
|
|
|
StringRef Filename = DIL->getFilename();
|
|
|
|
unsigned Line = DIL->getLine();
|
|
|
|
unsigned Column = DIL->getColumn();
|
|
|
|
OS << Filename << ':' << Line << ':' << Column << ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
OS << "in function " << Fn.getName() << ' ' << *Fn.getFunctionType() << '\n'
|
|
|
|
<< Description;
|
|
|
|
if (Value)
|
|
|
|
Value->print(OS);
|
|
|
|
OS << '\n';
|
|
|
|
OS.flush();
|
|
|
|
DP << Str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool classof(const DiagnosticInfo *DI) {
|
|
|
|
return DI->getKind() == getKindID();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int DiagnosticInfoUnsupported::KindID = 0;
|
|
|
|
} // end anonymous namespace
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
WebAssemblyTargetLowering::WebAssemblyTargetLowering(
|
|
|
|
const TargetMachine &TM, const WebAssemblySubtarget &STI)
|
2015-07-03 05:36:25 +08:00
|
|
|
: TargetLowering(TM), Subtarget(&STI) {
|
2015-08-25 06:16:48 +08:00
|
|
|
auto MVTPtr = Subtarget->hasAddr64() ? MVT::i64 : MVT::i32;
|
|
|
|
|
2015-08-13 01:53:29 +08:00
|
|
|
// Booleans always contain 0 or 1.
|
|
|
|
setBooleanContents(ZeroOrOneBooleanContent);
|
2015-07-03 05:36:25 +08:00
|
|
|
// WebAssembly does not produce floating-point exceptions on normal floating
|
|
|
|
// point operations.
|
|
|
|
setHasFloatingPointExceptions(false);
|
2015-07-08 06:38:06 +08:00
|
|
|
// We don't know the microarchitecture here, so just reduce register pressure.
|
|
|
|
setSchedulingPreference(Sched::RegPressure);
|
2015-07-23 05:28:15 +08:00
|
|
|
// Tell ISel that we have a stack pointer.
|
|
|
|
setStackPointerRegisterToSaveRestore(
|
|
|
|
Subtarget->hasAddr64() ? WebAssembly::SP64 : WebAssembly::SP32);
|
|
|
|
// Set up the register classes.
|
2015-09-26 09:09:44 +08:00
|
|
|
addRegisterClass(MVT::i32, &WebAssembly::I32RegClass);
|
|
|
|
addRegisterClass(MVT::i64, &WebAssembly::I64RegClass);
|
|
|
|
addRegisterClass(MVT::f32, &WebAssembly::F32RegClass);
|
|
|
|
addRegisterClass(MVT::f64, &WebAssembly::F64RegClass);
|
2015-07-23 05:28:15 +08:00
|
|
|
// Compute derived properties from the register classes.
|
|
|
|
computeRegisterProperties(Subtarget->getRegisterInfo());
|
|
|
|
|
2015-08-25 06:16:48 +08:00
|
|
|
setOperationAction(ISD::GlobalAddress, MVTPtr, Custom);
|
2015-11-26 00:44:29 +08:00
|
|
|
setOperationAction(ISD::ExternalSymbol, MVTPtr, Custom);
|
2015-09-17 00:51:30 +08:00
|
|
|
setOperationAction(ISD::JumpTable, MVTPtr, Custom);
|
2015-08-25 06:16:48 +08:00
|
|
|
|
2015-08-12 05:02:46 +08:00
|
|
|
for (auto T : {MVT::f32, MVT::f64}) {
|
|
|
|
// Don't expand the floating-point types to constant pools.
|
|
|
|
setOperationAction(ISD::ConstantFP, T, Legal);
|
|
|
|
// Expand floating-point comparisons.
|
|
|
|
for (auto CC : {ISD::SETO, ISD::SETUO, ISD::SETUEQ, ISD::SETONE,
|
|
|
|
ISD::SETULT, ISD::SETULE, ISD::SETUGT, ISD::SETUGE})
|
|
|
|
setCondCodeAction(CC, T, Expand);
|
2015-08-21 06:57:13 +08:00
|
|
|
// Expand floating-point library function operators.
|
2015-08-25 02:23:13 +08:00
|
|
|
for (auto Op : {ISD::FSIN, ISD::FCOS, ISD::FSINCOS, ISD::FPOWI, ISD::FPOW})
|
2015-08-21 06:57:13 +08:00
|
|
|
setOperationAction(Op, T, Expand);
|
2015-08-25 02:23:13 +08:00
|
|
|
// Note supported floating-point library function operators that otherwise
|
|
|
|
// default to expand.
|
|
|
|
for (auto Op : {ISD::FCEIL, ISD::FFLOOR, ISD::FTRUNC, ISD::FNEARBYINT,
|
|
|
|
ISD::FRINT})
|
|
|
|
setOperationAction(Op, T, Legal);
|
2015-11-11 05:40:21 +08:00
|
|
|
// Support minnan and maxnan, which otherwise default to expand.
|
|
|
|
setOperationAction(ISD::FMINNAN, T, Legal);
|
|
|
|
setOperationAction(ISD::FMAXNAN, T, Legal);
|
2015-08-12 05:02:46 +08:00
|
|
|
}
|
2015-08-21 06:57:13 +08:00
|
|
|
|
|
|
|
for (auto T : {MVT::i32, MVT::i64}) {
|
|
|
|
// Expand unavailable integer operations.
|
|
|
|
for (auto Op : {ISD::BSWAP, ISD::ROTL, ISD::ROTR,
|
|
|
|
ISD::SMUL_LOHI, ISD::UMUL_LOHI,
|
|
|
|
ISD::MULHS, ISD::MULHU, ISD::SDIVREM, ISD::UDIVREM,
|
|
|
|
ISD::SHL_PARTS, ISD::SRA_PARTS, ISD::SRL_PARTS,
|
|
|
|
ISD::ADDC, ISD::ADDE, ISD::SUBC, ISD::SUBE}) {
|
|
|
|
setOperationAction(Op, T, Expand);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// As a special case, these operators use the type to mean the type to
|
|
|
|
// sign-extend from.
|
|
|
|
for (auto T : {MVT::i1, MVT::i8, MVT::i16})
|
|
|
|
setOperationAction(ISD::SIGN_EXTEND_INREG, T, Expand);
|
|
|
|
|
|
|
|
// Dynamic stack allocation: use the default expansion.
|
|
|
|
setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
|
|
|
|
setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
|
2015-08-25 06:31:52 +08:00
|
|
|
setOperationAction(ISD::DYNAMIC_STACKALLOC, MVTPtr, Expand);
|
2015-09-01 06:24:11 +08:00
|
|
|
|
2015-09-17 00:51:30 +08:00
|
|
|
// Expand these forms; we pattern-match the forms that we can handle in isel.
|
|
|
|
for (auto T : {MVT::i32, MVT::i64, MVT::f32, MVT::f64})
|
|
|
|
for (auto Op : {ISD::BR_CC, ISD::SELECT_CC})
|
|
|
|
setOperationAction(Op, T, Expand);
|
|
|
|
|
|
|
|
// We have custom switch handling.
|
|
|
|
setOperationAction(ISD::BR_JT, MVT::Other, Custom);
|
|
|
|
|
2015-09-01 06:24:11 +08:00
|
|
|
// WebAssembly doesn't have:
|
|
|
|
// - Floating-point extending loads.
|
|
|
|
// - Floating-point truncating stores.
|
|
|
|
// - i1 extending loads.
|
|
|
|
setLoadExtAction(ISD::EXTLOAD, MVT::f32, MVT::f64, Expand);
|
|
|
|
setTruncStoreAction(MVT::f64, MVT::f32, Expand);
|
|
|
|
for (auto T : MVT::integer_valuetypes())
|
|
|
|
for (auto Ext : {ISD::EXTLOAD, ISD::ZEXTLOAD, ISD::SEXTLOAD})
|
|
|
|
setLoadExtAction(Ext, T, MVT::i1, Promote);
|
2015-11-10 08:30:57 +08:00
|
|
|
|
|
|
|
// Trap lowers to wasm unreachable
|
|
|
|
setOperationAction(ISD::TRAP, MVT::Other, Legal);
|
2015-07-03 05:36:25 +08:00
|
|
|
}
|
2015-06-30 07:51:55 +08:00
|
|
|
|
2015-08-25 02:44:37 +08:00
|
|
|
FastISel *WebAssemblyTargetLowering::createFastISel(
|
|
|
|
FunctionLoweringInfo &FuncInfo, const TargetLibraryInfo *LibInfo) const {
|
|
|
|
return WebAssembly::createFastISel(FuncInfo, LibInfo);
|
|
|
|
}
|
|
|
|
|
2015-08-25 06:16:48 +08:00
|
|
|
bool WebAssemblyTargetLowering::isOffsetFoldingLegal(
|
|
|
|
const GlobalAddressSDNode *GA) const {
|
|
|
|
// The WebAssembly target doesn't support folding offsets into global
|
|
|
|
// addresses.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-08-03 08:00:11 +08:00
|
|
|
MVT WebAssemblyTargetLowering::getScalarShiftAmountTy(const DataLayout &DL,
|
|
|
|
EVT VT) const {
|
|
|
|
return VT.getSimpleVT();
|
|
|
|
}
|
|
|
|
|
2015-08-12 04:13:18 +08:00
|
|
|
const char *
|
|
|
|
WebAssemblyTargetLowering::getTargetNodeName(unsigned Opcode) const {
|
|
|
|
switch (static_cast<WebAssemblyISD::NodeType>(Opcode)) {
|
2015-08-25 06:16:48 +08:00
|
|
|
case WebAssemblyISD::FIRST_NUMBER:
|
|
|
|
break;
|
|
|
|
#define HANDLE_NODETYPE(NODE) \
|
|
|
|
case WebAssemblyISD::NODE: \
|
|
|
|
return "WebAssemblyISD::" #NODE;
|
|
|
|
#include "WebAssemblyISD.def"
|
|
|
|
#undef HANDLE_NODETYPE
|
2015-08-12 04:13:18 +08:00
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2015-11-13 09:42:29 +08:00
|
|
|
std::pair<unsigned, const TargetRegisterClass *>
|
|
|
|
WebAssemblyTargetLowering::getRegForInlineAsmConstraint(
|
|
|
|
const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const {
|
|
|
|
// First, see if this is a constraint that directly corresponds to a
|
|
|
|
// WebAssembly register class.
|
|
|
|
if (Constraint.size() == 1) {
|
|
|
|
switch (Constraint[0]) {
|
|
|
|
case 'r':
|
|
|
|
return std::make_pair(0U, &WebAssembly::I32RegClass);
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
|
|
|
|
}
|
|
|
|
|
2015-11-20 07:04:59 +08:00
|
|
|
bool WebAssemblyTargetLowering::isCheapToSpeculateCttz() const {
|
|
|
|
// Assume ctz is a relatively cheap operation.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WebAssemblyTargetLowering::isCheapToSpeculateCtlz() const {
|
|
|
|
// Assume clz is a relatively cheap operation.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// WebAssembly Lowering private implementation.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Lowering Code
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-07-23 05:28:15 +08:00
|
|
|
static void fail(SDLoc DL, SelectionDAG &DAG, const char *msg) {
|
|
|
|
MachineFunction &MF = DAG.getMachineFunction();
|
|
|
|
DAG.getContext()->diagnose(
|
|
|
|
DiagnosticInfoUnsupported(DL, *MF.getFunction(), msg, SDValue()));
|
|
|
|
}
|
|
|
|
|
2015-08-25 05:59:51 +08:00
|
|
|
SDValue
|
|
|
|
WebAssemblyTargetLowering::LowerCall(CallLoweringInfo &CLI,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const {
|
|
|
|
SelectionDAG &DAG = CLI.DAG;
|
|
|
|
SDLoc DL = CLI.DL;
|
|
|
|
SDValue Chain = CLI.Chain;
|
|
|
|
SDValue Callee = CLI.Callee;
|
|
|
|
MachineFunction &MF = DAG.getMachineFunction();
|
|
|
|
|
|
|
|
CallingConv::ID CallConv = CLI.CallConv;
|
2015-10-03 04:54:23 +08:00
|
|
|
if (CallConv != CallingConv::C &&
|
|
|
|
CallConv != CallingConv::Fast &&
|
|
|
|
CallConv != CallingConv::Cold)
|
|
|
|
fail(DL, DAG,
|
|
|
|
"WebAssembly doesn't support language-specific or target-specific "
|
|
|
|
"calling conventions yet");
|
2015-08-25 05:59:51 +08:00
|
|
|
if (CLI.IsPatchPoint)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support patch point yet");
|
|
|
|
|
2015-10-03 04:54:23 +08:00
|
|
|
// WebAssembly doesn't currently support explicit tail calls. If they are
|
|
|
|
// required, fail. Otherwise, just disable them.
|
|
|
|
if ((CallConv == CallingConv::Fast && CLI.IsTailCall &&
|
|
|
|
MF.getTarget().Options.GuaranteedTailCallOpt) ||
|
|
|
|
(CLI.CS && CLI.CS->isMustTailCall()))
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support tail call yet");
|
|
|
|
CLI.IsTailCall = false;
|
|
|
|
|
2015-08-25 05:59:51 +08:00
|
|
|
SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
|
2015-09-09 09:52:45 +08:00
|
|
|
|
2015-08-25 05:59:51 +08:00
|
|
|
SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
|
2015-09-09 09:52:45 +08:00
|
|
|
if (Ins.size() > 1)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support more than 1 returned value yet");
|
|
|
|
|
2015-08-25 05:59:51 +08:00
|
|
|
bool IsVarArg = CLI.IsVarArg;
|
|
|
|
if (IsVarArg)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support varargs yet");
|
2015-09-09 09:52:45 +08:00
|
|
|
|
2015-08-25 05:59:51 +08:00
|
|
|
// Analyze operands of the call, assigning locations to each operand.
|
|
|
|
SmallVector<CCValAssign, 16> ArgLocs;
|
|
|
|
CCState CCInfo(CallConv, IsVarArg, MF, ArgLocs, *DAG.getContext());
|
|
|
|
unsigned NumBytes = CCInfo.getNextStackOffset();
|
|
|
|
|
|
|
|
auto PtrVT = getPointerTy(MF.getDataLayout());
|
2015-08-25 06:16:48 +08:00
|
|
|
auto Zero = DAG.getConstant(0, DL, PtrVT, true);
|
|
|
|
auto NB = DAG.getConstant(NumBytes, DL, PtrVT, true);
|
|
|
|
Chain = DAG.getCALLSEQ_START(Chain, NB, DL);
|
2015-08-25 05:59:51 +08:00
|
|
|
|
|
|
|
SmallVector<SDValue, 16> Ops;
|
|
|
|
Ops.push_back(Chain);
|
2015-08-25 06:16:48 +08:00
|
|
|
Ops.push_back(Callee);
|
|
|
|
Ops.append(OutVals.begin(), OutVals.end());
|
2015-08-25 05:59:51 +08:00
|
|
|
|
|
|
|
SmallVector<EVT, 8> Tys;
|
2015-08-25 06:16:48 +08:00
|
|
|
for (const auto &In : Ins)
|
2015-08-25 05:59:51 +08:00
|
|
|
Tys.push_back(In.VT);
|
|
|
|
Tys.push_back(MVT::Other);
|
2015-08-25 06:16:48 +08:00
|
|
|
SDVTList TyList = DAG.getVTList(Tys);
|
2015-09-10 00:13:47 +08:00
|
|
|
SDValue Res =
|
|
|
|
DAG.getNode(Ins.empty() ? WebAssemblyISD::CALL0 : WebAssemblyISD::CALL1,
|
|
|
|
DL, TyList, Ops);
|
2015-08-25 06:16:48 +08:00
|
|
|
if (Ins.empty()) {
|
|
|
|
Chain = Res;
|
|
|
|
} else {
|
|
|
|
InVals.push_back(Res);
|
|
|
|
Chain = Res.getValue(1);
|
|
|
|
}
|
2015-08-25 05:59:51 +08:00
|
|
|
|
2015-08-25 06:16:48 +08:00
|
|
|
Chain = DAG.getCALLSEQ_END(Chain, NB, Zero, SDValue(), DL);
|
2015-08-25 05:59:51 +08:00
|
|
|
|
|
|
|
return Chain;
|
|
|
|
}
|
|
|
|
|
2015-07-23 05:28:15 +08:00
|
|
|
bool WebAssemblyTargetLowering::CanLowerReturn(
|
|
|
|
CallingConv::ID CallConv, MachineFunction &MF, bool IsVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs, LLVMContext &Context) const {
|
|
|
|
// WebAssembly can't currently handle returning tuples.
|
|
|
|
return Outs.size() <= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDValue WebAssemblyTargetLowering::LowerReturn(
|
|
|
|
SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
|
|
|
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
|
|
|
const SmallVectorImpl<SDValue> &OutVals, SDLoc DL,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
assert(Outs.size() <= 1 && "WebAssembly can only return up to one value");
|
|
|
|
if (CallConv != CallingConv::C)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
|
2015-08-01 01:53:38 +08:00
|
|
|
if (IsVarArg)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support varargs yet");
|
2015-07-23 05:28:15 +08:00
|
|
|
|
2015-08-01 01:53:38 +08:00
|
|
|
SmallVector<SDValue, 4> RetOps(1, Chain);
|
|
|
|
RetOps.append(OutVals.begin(), OutVals.end());
|
2015-08-01 05:04:18 +08:00
|
|
|
Chain = DAG.getNode(WebAssemblyISD::RETURN, DL, MVT::Other, RetOps);
|
2015-07-23 05:28:15 +08:00
|
|
|
|
2015-11-11 09:33:02 +08:00
|
|
|
// Record the number and types of the return values.
|
|
|
|
for (const ISD::OutputArg &Out : Outs) {
|
|
|
|
if (Out.Flags.isByVal())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented byval results");
|
|
|
|
if (Out.Flags.isInAlloca())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented inalloca results");
|
|
|
|
if (Out.Flags.isNest())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented nest results");
|
|
|
|
if (Out.Flags.isInConsecutiveRegs())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented cons regs results");
|
|
|
|
if (Out.Flags.isInConsecutiveRegsLast())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented cons regs last results");
|
|
|
|
if (!Out.IsFixed)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support non-fixed results yet");
|
|
|
|
}
|
|
|
|
|
2015-07-23 05:28:15 +08:00
|
|
|
return Chain;
|
|
|
|
}
|
|
|
|
|
|
|
|
SDValue WebAssemblyTargetLowering::LowerFormalArguments(
|
|
|
|
SDValue Chain, CallingConv::ID CallConv, bool IsVarArg,
|
|
|
|
const SmallVectorImpl<ISD::InputArg> &Ins, SDLoc DL, SelectionDAG &DAG,
|
|
|
|
SmallVectorImpl<SDValue> &InVals) const {
|
|
|
|
MachineFunction &MF = DAG.getMachineFunction();
|
|
|
|
|
|
|
|
if (CallConv != CallingConv::C)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support non-C calling conventions");
|
|
|
|
if (IsVarArg)
|
|
|
|
fail(DL, DAG, "WebAssembly doesn't support varargs yet");
|
|
|
|
|
2015-08-01 01:53:38 +08:00
|
|
|
for (const ISD::InputArg &In : Ins) {
|
|
|
|
if (In.Flags.isByVal())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented byval arguments");
|
|
|
|
if (In.Flags.isInAlloca())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented inalloca arguments");
|
|
|
|
if (In.Flags.isNest())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented nest arguments");
|
|
|
|
if (In.Flags.isInConsecutiveRegs())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented cons regs arguments");
|
|
|
|
if (In.Flags.isInConsecutiveRegsLast())
|
|
|
|
fail(DL, DAG, "WebAssembly hasn't implemented cons regs last arguments");
|
|
|
|
// FIXME Do something with In.getOrigAlign()?
|
2015-08-01 02:13:27 +08:00
|
|
|
InVals.push_back(
|
|
|
|
In.Used
|
|
|
|
? DAG.getNode(WebAssemblyISD::ARGUMENT, DL, In.VT,
|
2015-11-15 07:28:15 +08:00
|
|
|
DAG.getTargetConstant(InVals.size(), DL, MVT::i32))
|
2015-08-01 02:13:27 +08:00
|
|
|
: DAG.getNode(ISD::UNDEF, DL, In.VT));
|
2015-11-11 09:33:02 +08:00
|
|
|
|
|
|
|
// Record the number and types of arguments.
|
|
|
|
MF.getInfo<WebAssemblyFunctionInfo>()->addParam(In.VT);
|
2015-08-01 01:53:38 +08:00
|
|
|
}
|
2015-07-23 05:28:15 +08:00
|
|
|
|
|
|
|
return Chain;
|
|
|
|
}
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2015-08-25 06:16:48 +08:00
|
|
|
// Custom lowering hooks.
|
2015-06-30 07:51:55 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-08-25 06:16:48 +08:00
|
|
|
SDValue WebAssemblyTargetLowering::LowerOperation(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
switch (Op.getOpcode()) {
|
|
|
|
default:
|
|
|
|
llvm_unreachable("unimplemented operation lowering");
|
|
|
|
return SDValue();
|
|
|
|
case ISD::GlobalAddress:
|
|
|
|
return LowerGlobalAddress(Op, DAG);
|
2015-11-26 00:44:29 +08:00
|
|
|
case ISD::ExternalSymbol:
|
|
|
|
return LowerExternalSymbol(Op, DAG);
|
2015-09-17 00:51:30 +08:00
|
|
|
case ISD::JumpTable:
|
|
|
|
return LowerJumpTable(Op, DAG);
|
|
|
|
case ISD::BR_JT:
|
|
|
|
return LowerBR_JT(Op, DAG);
|
2015-08-25 06:16:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SDValue WebAssemblyTargetLowering::LowerGlobalAddress(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
SDLoc DL(Op);
|
|
|
|
const auto *GA = cast<GlobalAddressSDNode>(Op);
|
|
|
|
EVT VT = Op.getValueType();
|
|
|
|
assert(GA->getOffset() == 0 &&
|
|
|
|
"offsets on global addresses are forbidden by isOffsetFoldingLegal");
|
|
|
|
assert(GA->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
|
|
|
|
if (GA->getAddressSpace() != 0)
|
|
|
|
fail(DL, DAG, "WebAssembly only expects the 0 address space");
|
|
|
|
return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
|
|
|
|
DAG.getTargetGlobalAddress(GA->getGlobal(), DL, VT));
|
|
|
|
}
|
|
|
|
|
2015-11-26 00:44:29 +08:00
|
|
|
SDValue WebAssemblyTargetLowering::LowerExternalSymbol(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
SDLoc DL(Op);
|
|
|
|
const auto *ES = cast<ExternalSymbolSDNode>(Op);
|
|
|
|
EVT VT = Op.getValueType();
|
|
|
|
assert(ES->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
|
|
|
|
return DAG.getNode(WebAssemblyISD::Wrapper, DL, VT,
|
|
|
|
DAG.getTargetExternalSymbol(ES->getSymbol(), VT));
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:51:30 +08:00
|
|
|
SDValue WebAssemblyTargetLowering::LowerJumpTable(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
// There's no need for a Wrapper node because we always incorporate a jump
|
2015-11-20 11:02:49 +08:00
|
|
|
// table operand into a TABLESWITCH instruction, rather than ever
|
|
|
|
// materializing it in a register.
|
2015-09-17 00:51:30 +08:00
|
|
|
const JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
|
|
|
|
return DAG.getTargetJumpTable(JT->getIndex(), Op.getValueType(),
|
|
|
|
JT->getTargetFlags());
|
|
|
|
}
|
|
|
|
|
|
|
|
SDValue WebAssemblyTargetLowering::LowerBR_JT(SDValue Op,
|
|
|
|
SelectionDAG &DAG) const {
|
|
|
|
SDLoc DL(Op);
|
|
|
|
SDValue Chain = Op.getOperand(0);
|
|
|
|
const auto *JT = cast<JumpTableSDNode>(Op.getOperand(1));
|
|
|
|
SDValue Index = Op.getOperand(2);
|
|
|
|
assert(JT->getTargetFlags() == 0 && "WebAssembly doesn't set target flags");
|
|
|
|
|
|
|
|
SmallVector<SDValue, 8> Ops;
|
|
|
|
Ops.push_back(Chain);
|
|
|
|
Ops.push_back(Index);
|
|
|
|
|
|
|
|
MachineJumpTableInfo *MJTI = DAG.getMachineFunction().getJumpTableInfo();
|
|
|
|
const auto &MBBs = MJTI->getJumpTables()[JT->getIndex()].MBBs;
|
|
|
|
|
|
|
|
// TODO: For now, we just pick something arbitrary for a default case for now.
|
|
|
|
// We really want to sniff out the guard and put in the real default case (and
|
|
|
|
// delete the guard).
|
|
|
|
Ops.push_back(DAG.getBasicBlock(MBBs[0]));
|
|
|
|
|
|
|
|
// Add an operand for each case.
|
|
|
|
for (auto MBB : MBBs)
|
|
|
|
Ops.push_back(DAG.getBasicBlock(MBB));
|
|
|
|
|
2015-11-20 11:02:49 +08:00
|
|
|
return DAG.getNode(WebAssemblyISD::TABLESWITCH, DL, MVT::Other, Ops);
|
2015-09-17 00:51:30 +08:00
|
|
|
}
|
|
|
|
|
2015-06-30 07:51:55 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// WebAssembly Optimization Hooks
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
MCSection *WebAssemblyTargetObjectFile::SelectSectionForGlobal(
|
|
|
|
const GlobalValue *GV, SectionKind Kind, Mangler &Mang,
|
|
|
|
const TargetMachine &TM) const {
|
2015-10-06 08:27:55 +08:00
|
|
|
// TODO: Be more sophisticated than this.
|
|
|
|
return isa<Function>(GV) ? getTextSection() : getDataSection();
|
2015-06-30 07:51:55 +08:00
|
|
|
}
|