//===- WasmYAML.h - Wasm YAMLIO implementation ------------------*- C++ -*-===// // // 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 declares classes for handling the YAML representation /// of wasm binaries. /// //===----------------------------------------------------------------------===// #ifndef LLVM_OBJECTYAML_WASMYAML_H #define LLVM_OBJECTYAML_WASMYAML_H #include "llvm/ADT/StringRef.h" #include "llvm/BinaryFormat/Wasm.h" #include "llvm/ObjectYAML/YAML.h" #include "llvm/Support/Casting.h" #include #include #include namespace llvm { namespace WasmYAML { LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionType) LLVM_YAML_STRONG_TYPEDEF(int32_t, ValueType) LLVM_YAML_STRONG_TYPEDEF(int32_t, TableType) LLVM_YAML_STRONG_TYPEDEF(int32_t, SignatureForm) LLVM_YAML_STRONG_TYPEDEF(uint32_t, ExportKind) LLVM_YAML_STRONG_TYPEDEF(uint32_t, Opcode) LLVM_YAML_STRONG_TYPEDEF(uint32_t, RelocType) struct FileHeader { yaml::Hex32 Version; }; struct Limits { yaml::Hex32 Flags; yaml::Hex32 Initial; yaml::Hex32 Maximum; }; struct Table { TableType ElemType; Limits TableLimits; }; struct Export { StringRef Name; ExportKind Kind; uint32_t Index; }; struct ElemSegment { uint32_t TableIndex; wasm::WasmInitExpr Offset; std::vector Functions; }; struct Global { ValueType Type; bool Mutable; wasm::WasmInitExpr InitExpr; }; struct Import { StringRef Module; StringRef Field; ExportKind Kind; union { uint32_t SigIndex; Global GlobalImport; Table TableImport; Limits Memory; }; }; struct LocalDecl { ValueType Type; uint32_t Count; }; struct Function { std::vector Locals; yaml::BinaryRef Body; }; struct Relocation { RelocType Type; uint32_t Index; yaml::Hex32 Offset; int32_t Addend; }; struct DataSegment { uint32_t MemoryIndex; uint32_t SectionOffset; wasm::WasmInitExpr Offset; yaml::BinaryRef Content; }; struct NameEntry { uint32_t Index; StringRef Name; }; struct Signature { uint32_t Index; SignatureForm Form = wasm::WASM_TYPE_FUNC; std::vector ParamTypes; ValueType ReturnType; }; struct SymbolInfo { StringRef Name; uint32_t Flags; }; struct Section { explicit Section(SectionType SecType) : Type(SecType) {} virtual ~Section(); SectionType Type; std::vector Relocations; }; struct CustomSection : Section { explicit CustomSection(StringRef Name) : Section(wasm::WASM_SEC_CUSTOM), Name(Name) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_CUSTOM; } StringRef Name; yaml::BinaryRef Payload; }; struct NameSection : CustomSection { NameSection() : CustomSection("name") {} static bool classof(const Section *S) { auto C = dyn_cast(S); return C && C->Name == "name"; } std::vector FunctionNames; }; struct LinkingSection : CustomSection { LinkingSection() : CustomSection("linking") {} static bool classof(const Section *S) { auto C = dyn_cast(S); return C && C->Name == "linking"; } std::vector SymbolInfos; uint32_t DataSize; uint32_t DataAlignment; }; struct TypeSection : Section { TypeSection() : Section(wasm::WASM_SEC_TYPE) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_TYPE; } std::vector Signatures; }; struct ImportSection : Section { ImportSection() : Section(wasm::WASM_SEC_IMPORT) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_IMPORT; } std::vector Imports; }; struct FunctionSection : Section { FunctionSection() : Section(wasm::WASM_SEC_FUNCTION) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_FUNCTION; } std::vector FunctionTypes; }; struct TableSection : Section { TableSection() : Section(wasm::WASM_SEC_TABLE) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_TABLE; } std::vector Tables; }; struct MemorySection : Section { MemorySection() : Section(wasm::WASM_SEC_MEMORY) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_MEMORY; } std::vector Memories; }; struct GlobalSection : Section { GlobalSection() : Section(wasm::WASM_SEC_GLOBAL) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_GLOBAL; } std::vector Globals; }; struct ExportSection : Section { ExportSection() : Section(wasm::WASM_SEC_EXPORT) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_EXPORT; } std::vector Exports; }; struct StartSection : Section { StartSection() : Section(wasm::WASM_SEC_START) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_START; } uint32_t StartFunction; }; struct ElemSection : Section { ElemSection() : Section(wasm::WASM_SEC_ELEM) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_ELEM; } std::vector Segments; }; struct CodeSection : Section { CodeSection() : Section(wasm::WASM_SEC_CODE) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_CODE; } std::vector Functions; }; struct DataSection : Section { DataSection() : Section(wasm::WASM_SEC_DATA) {} static bool classof(const Section *S) { return S->Type == wasm::WASM_SEC_DATA; } std::vector Segments; }; struct Object { FileHeader Header; std::vector> Sections; }; } // end namespace WasmYAML } // end namespace llvm LLVM_YAML_IS_SEQUENCE_VECTOR(std::unique_ptr) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Signature) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ValueType) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Table) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Export) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ElemSegment) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::DataSegment) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Global) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Function) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::LocalDecl) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Relocation) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::NameEntry) LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::SymbolInfo) namespace llvm { namespace yaml { template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::FileHeader &FileHdr); }; template <> struct MappingTraits> { static void mapping(IO &IO, std::unique_ptr &Section); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Object &Object); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Import &Import); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Export &Export); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Global &Global); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::SectionType &Type); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Signature &Signature); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Table &Table); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Limits &Limits); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Function &Function); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::Relocation &Relocation); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::NameEntry &NameEntry); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::LocalDecl &LocalDecl); }; template <> struct MappingTraits { static void mapping(IO &IO, wasm::WasmInitExpr &Expr); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::DataSegment &Segment); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::ElemSegment &Segment); }; template <> struct MappingTraits { static void mapping(IO &IO, WasmYAML::SymbolInfo &Info); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::ValueType &Type); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::ExportKind &Kind); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::TableType &Type); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::Opcode &Opcode); }; template <> struct ScalarEnumerationTraits { static void enumeration(IO &IO, WasmYAML::RelocType &Kind); }; } // end namespace yaml } // end namespace llvm #endif // LLVM_OBJECTYAML_WASMYAML_H