zig/deps/lld/wasm/WriterUtils.cpp

217 lines
6.4 KiB
C++
Raw Normal View History

2018-01-18 06:29:21 +08:00
//===- WriterUtils.cpp ----------------------------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "WriterUtils.h"
#include "lld/Common/ErrorHandler.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/EndianStream.h"
#include "llvm/Support/LEB128.h"
#define DEBUG_TYPE "lld"
using namespace llvm;
using namespace llvm::wasm;
namespace lld {
2018-08-05 05:47:16 +08:00
void wasm::debugWrite(uint64_t Offset, const Twine &Msg) {
LLVM_DEBUG(dbgs() << format(" | %08lld: ", Offset) << Msg << "\n");
2018-01-18 06:29:21 +08:00
}
2018-08-05 05:47:16 +08:00
void wasm::writeUleb128(raw_ostream &OS, uint32_t Number, const Twine &Msg) {
debugWrite(OS.tell(), Msg + "[" + utohexstr(Number) + "]");
2018-01-18 06:29:21 +08:00
encodeULEB128(Number, OS);
}
2018-08-05 05:47:16 +08:00
void wasm::writeSleb128(raw_ostream &OS, int32_t Number, const Twine &Msg) {
debugWrite(OS.tell(), Msg + "[" + utohexstr(Number) + "]");
2018-01-18 06:29:21 +08:00
encodeSLEB128(Number, OS);
}
2018-08-05 05:47:16 +08:00
void wasm::writeBytes(raw_ostream &OS, const char *Bytes, size_t Count,
const Twine &Msg) {
debugWrite(OS.tell(), Msg + " [data[" + Twine(Count) + "]]");
OS.write(Bytes, Count);
2018-01-18 06:29:21 +08:00
}
2018-08-05 05:47:16 +08:00
void wasm::writeStr(raw_ostream &OS, StringRef String, const Twine &Msg) {
debugWrite(OS.tell(),
Msg + " [str[" + Twine(String.size()) + "]: " + String + "]");
encodeULEB128(String.size(), OS);
OS.write(String.data(), String.size());
2018-01-18 06:29:21 +08:00
}
2018-08-05 05:47:16 +08:00
void wasm::writeU8(raw_ostream &OS, uint8_t Byte, const Twine &Msg) {
debugWrite(OS.tell(), Msg + " [0x" + utohexstr(Byte) + "]");
OS << Byte;
2018-01-18 06:29:21 +08:00
}
2018-08-05 05:47:16 +08:00
void wasm::writeU32(raw_ostream &OS, uint32_t Number, const Twine &Msg) {
debugWrite(OS.tell(), Msg + "[0x" + utohexstr(Number) + "]");
support::endian::write(OS, Number, support::little);
2018-01-18 06:29:21 +08:00
}
2019-02-08 06:07:18 +08:00
void wasm::writeValueType(raw_ostream &OS, ValType Type, const Twine &Msg) {
writeU8(OS, static_cast<uint8_t>(Type),
Msg + "[type: " + toString(Type) + "]");
2018-01-18 06:29:21 +08:00
}
void wasm::writeSig(raw_ostream &OS, const WasmSignature &Sig) {
2018-08-05 05:47:16 +08:00
writeU8(OS, WASM_TYPE_FUNC, "signature type");
2019-02-08 06:07:18 +08:00
writeUleb128(OS, Sig.Params.size(), "param Count");
for (ValType ParamType : Sig.Params) {
2018-01-18 06:29:21 +08:00
writeValueType(OS, ParamType, "param type");
}
2019-02-08 06:07:18 +08:00
writeUleb128(OS, Sig.Returns.size(), "result Count");
if (Sig.Returns.size()) {
writeValueType(OS, Sig.Returns[0], "result type");
2018-01-18 06:29:21 +08:00
}
}
void wasm::writeInitExpr(raw_ostream &OS, const WasmInitExpr &InitExpr) {
writeU8(OS, InitExpr.Opcode, "opcode");
switch (InitExpr.Opcode) {
case WASM_OPCODE_I32_CONST:
writeSleb128(OS, InitExpr.Value.Int32, "literal (i32)");
break;
case WASM_OPCODE_I64_CONST:
writeSleb128(OS, InitExpr.Value.Int64, "literal (i64)");
break;
2019-02-08 06:07:18 +08:00
case WASM_OPCODE_GLOBAL_GET:
2018-01-18 06:29:21 +08:00
writeUleb128(OS, InitExpr.Value.Global, "literal (global index)");
break;
default:
fatal("unknown opcode in init expr: " + Twine(InitExpr.Opcode));
}
writeU8(OS, WASM_OPCODE_END, "opcode:end");
}
void wasm::writeLimits(raw_ostream &OS, const WasmLimits &Limits) {
2018-08-05 05:47:16 +08:00
writeU8(OS, Limits.Flags, "limits flags");
2018-01-18 06:29:21 +08:00
writeUleb128(OS, Limits.Initial, "limits initial");
if (Limits.Flags & WASM_LIMITS_FLAG_HAS_MAX)
writeUleb128(OS, Limits.Maximum, "limits max");
}
2018-08-05 05:47:16 +08:00
void wasm::writeGlobalType(raw_ostream &OS, const WasmGlobalType &Type) {
2019-02-08 06:07:18 +08:00
// TODO: Update WasmGlobalType to use ValType and remove this cast.
writeValueType(OS, ValType(Type.Type), "global type");
2018-08-05 05:47:16 +08:00
writeU8(OS, Type.Mutable, "global mutable");
}
2018-01-18 06:29:21 +08:00
void wasm::writeGlobal(raw_ostream &OS, const WasmGlobal &Global) {
2018-08-05 05:47:16 +08:00
writeGlobalType(OS, Global.Type);
2018-01-18 06:29:21 +08:00
writeInitExpr(OS, Global.InitExpr);
}
2019-02-08 06:07:18 +08:00
void wasm::writeEventType(raw_ostream &OS, const WasmEventType &Type) {
writeUleb128(OS, Type.Attribute, "event attribute");
writeUleb128(OS, Type.SigIndex, "sig index");
}
void wasm::writeEvent(raw_ostream &OS, const WasmEvent &Event) {
writeEventType(OS, Event.Type);
}
2018-08-05 05:47:16 +08:00
void wasm::writeTableType(raw_ostream &OS, const llvm::wasm::WasmTable &Type) {
2019-02-08 06:07:18 +08:00
writeU8(OS, WASM_TYPE_FUNCREF, "table type");
2018-08-05 05:47:16 +08:00
writeLimits(OS, Type.Limits);
}
2018-01-18 06:29:21 +08:00
void wasm::writeImport(raw_ostream &OS, const WasmImport &Import) {
writeStr(OS, Import.Module, "import module name");
writeStr(OS, Import.Field, "import field name");
writeU8(OS, Import.Kind, "import kind");
switch (Import.Kind) {
case WASM_EXTERNAL_FUNCTION:
writeUleb128(OS, Import.SigIndex, "import sig index");
break;
case WASM_EXTERNAL_GLOBAL:
2018-08-05 05:47:16 +08:00
writeGlobalType(OS, Import.Global);
2018-01-18 06:29:21 +08:00
break;
2019-02-08 06:07:18 +08:00
case WASM_EXTERNAL_EVENT:
writeEventType(OS, Import.Event);
break;
2018-01-18 06:29:21 +08:00
case WASM_EXTERNAL_MEMORY:
writeLimits(OS, Import.Memory);
break;
2018-08-05 05:47:16 +08:00
case WASM_EXTERNAL_TABLE:
writeTableType(OS, Import.Table);
break;
2018-01-18 06:29:21 +08:00
default:
fatal("unsupported import type: " + Twine(Import.Kind));
}
}
void wasm::writeExport(raw_ostream &OS, const WasmExport &Export) {
writeStr(OS, Export.Name, "export name");
writeU8(OS, Export.Kind, "export kind");
switch (Export.Kind) {
case WASM_EXTERNAL_FUNCTION:
writeUleb128(OS, Export.Index, "function index");
break;
case WASM_EXTERNAL_GLOBAL:
writeUleb128(OS, Export.Index, "global index");
break;
case WASM_EXTERNAL_MEMORY:
writeUleb128(OS, Export.Index, "memory index");
break;
2018-08-05 05:47:16 +08:00
case WASM_EXTERNAL_TABLE:
writeUleb128(OS, Export.Index, "table index");
2018-01-18 06:29:21 +08:00
break;
default:
2018-08-05 05:47:16 +08:00
fatal("unsupported export type: " + Twine(Export.Kind));
2018-01-18 06:29:21 +08:00
}
}
} // namespace lld
std::string lld::toString(ValType Type) {
switch (Type) {
case ValType::I32:
2019-02-08 06:07:18 +08:00
return "i32";
2018-01-18 06:29:21 +08:00
case ValType::I64:
2019-02-08 06:07:18 +08:00
return "i64";
2018-01-18 06:29:21 +08:00
case ValType::F32:
2019-02-08 06:07:18 +08:00
return "f32";
2018-01-18 06:29:21 +08:00
case ValType::F64:
2019-02-08 06:07:18 +08:00
return "f64";
case ValType::V128:
return "v128";
2018-08-05 05:47:16 +08:00
case ValType::EXCEPT_REF:
return "except_ref";
2018-01-18 06:29:21 +08:00
}
llvm_unreachable("Invalid wasm::ValType");
}
std::string lld::toString(const WasmSignature &Sig) {
SmallString<128> S("(");
2019-02-08 06:07:18 +08:00
for (ValType Type : Sig.Params) {
2018-01-18 06:29:21 +08:00
if (S.size() != 1)
S += ", ";
2019-02-08 06:07:18 +08:00
S += toString(Type);
2018-01-18 06:29:21 +08:00
}
S += ") -> ";
2019-02-08 06:07:18 +08:00
if (Sig.Returns.size() == 0)
2018-01-18 06:29:21 +08:00
S += "void";
else
2019-02-08 06:07:18 +08:00
S += toString(Sig.Returns[0]);
2018-01-18 06:29:21 +08:00
return S.str();
}
2018-08-05 05:47:16 +08:00
2019-02-08 06:07:18 +08:00
std::string lld::toString(const WasmGlobalType &Type) {
return (Type.Mutable ? "var " : "const ") +
toString(static_cast<ValType>(Type.Type));
}
std::string lld::toString(const WasmEventType &Type) {
if (Type.Attribute == WASM_EVENT_ATTRIBUTE_EXCEPTION)
return "exception";
return "unknown";
2018-08-05 05:47:16 +08:00
}