mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-14 04:11:30 +00:00

Summary: This adds support for the 'event section' specified in the exception handling proposal. (This was named 'exception section' first, but later renamed to 'event section' to take possibilities of other kinds of events into consideration. But currently we only store exception info in this section.) The event section is added between the global section and the export section. This is for ease of validation per request of the V8 team. This patch: - Creates the event symbol type, which is a weak symbol - Makes 'throw' instruction take the event symbol '__cpp_exception' - Adds relocation support for events - Adds WasmObjectWriter / WasmObjectFile (Reader) support - Adds obj2yaml / yaml2obj support - Adds '.eventtype' printing support Reviewers: dschuff, sbc100, aardappel Subscribers: jgravelle-google, sunfish, llvm-commits Differential Revision: https://reviews.llvm.org/D54096 llvm-svn: 346825
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
//===-- llvm/BinaryFormat/Wasm.cpp -------------------------------*- C++-*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/BinaryFormat/Wasm.h"
|
|
|
|
std::string llvm::wasm::toString(wasm::WasmSymbolType type) {
|
|
switch (type) {
|
|
case wasm::WASM_SYMBOL_TYPE_FUNCTION:
|
|
return "WASM_SYMBOL_TYPE_FUNCTION";
|
|
case wasm::WASM_SYMBOL_TYPE_GLOBAL:
|
|
return "WASM_SYMBOL_TYPE_GLOBAL";
|
|
case wasm::WASM_SYMBOL_TYPE_DATA:
|
|
return "WASM_SYMBOL_TYPE_DATA";
|
|
case wasm::WASM_SYMBOL_TYPE_SECTION:
|
|
return "WASM_SYMBOL_TYPE_SECTION";
|
|
case wasm::WASM_SYMBOL_TYPE_EVENT:
|
|
return "WASM_SYMBOL_TYPE_EVENT";
|
|
}
|
|
llvm_unreachable("unknown symbol type");
|
|
}
|
|
|
|
std::string llvm::wasm::relocTypetoString(uint32_t type) {
|
|
switch (type) {
|
|
#define WASM_RELOC(NAME, VALUE) \
|
|
case VALUE: \
|
|
return #NAME;
|
|
#include "llvm/BinaryFormat/WasmRelocs.def"
|
|
#undef WASM_RELOC
|
|
default:
|
|
llvm_unreachable("unknown reloc type");
|
|
}
|
|
}
|