Home
last modified time | relevance | path

Searched refs:WasmYAML (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h27 namespace WasmYAML {
427 LLVM_YAML_IS_SEQUENCE_VECTOR(std::unique_ptr<llvm::WasmYAML::Section>)
428 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Signature) in LLVM_YAML_IS_SEQUENCE_VECTOR()
429 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ValueType) in LLVM_YAML_IS_SEQUENCE_VECTOR()
430 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Table) in LLVM_YAML_IS_SEQUENCE_VECTOR()
431 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Import) in LLVM_YAML_IS_SEQUENCE_VECTOR()
432 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Export) in LLVM_YAML_IS_SEQUENCE_VECTOR()
433 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::ElemSegment) in LLVM_YAML_IS_SEQUENCE_VECTOR()
434 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits) in LLVM_YAML_IS_SEQUENCE_VECTOR()
435 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::DataSegment) in LLVM_YAML_IS_SEQUENCE_VECTOR()
[all …]
H A Dyaml2obj.h48 namespace WasmYAML {
84 LLVM_ABI bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out,
H A DObjectYAML.h20 #include "llvm/ObjectYAML/WasmYAML.h"
39 std::unique_ptr<WasmYAML::Object> Wasm;
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp22 namespace WasmYAML { namespace
32 void MappingTraits<WasmYAML::FileHeader>::mapping( in mapping()
33 IO &IO, WasmYAML::FileHeader &FileHdr) { in mapping()
37 void MappingTraits<WasmYAML::Object>::mapping(IO &IO, in mapping()
38 WasmYAML::Object &Object) { in mapping()
46 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { in commonSectionMapping()
52 static void sectionMapping(IO &IO, WasmYAML::DylinkSection &Section) { in sectionMapping()
65 static void sectionMapping(IO &IO, WasmYAML::NameSection &Section) { in sectionMapping()
73 static void sectionMapping(IO &IO, WasmYAML::LinkingSection &Section) { in sectionMapping()
83 static void sectionMapping(IO &IO, WasmYAML::ProducersSection &Section) { in sectionMapping()
[all …]
H A DWasmEmitter.cpp28 WasmWriter(WasmYAML::Object &Obj, yaml::ErrorHandler EH) in WasmWriter()
33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec,
36 void writeInitExpr(raw_ostream &OS, const WasmYAML::InitExpr &InitExpr);
38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section);
41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section);
43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
44 void writeSectionContent(raw_ostream &OS, WasmYAML::TagSection &Section);
[all …]
H A DObjectYAML.cpp68 ObjectFile.Wasm.reset(new WasmYAML::Object()); in mapping()
69 MappingTraits<WasmYAML::Object>::mapping(IO, *ObjectFile.Wasm); in mapping()