Home
last modified time | relevance | path

Searched refs:TypeSection (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.h86 class TypeSection : public SyntheticSection {
88 TypeSection() : SyntheticSection(llvm::wasm::WASM_SEC_TYPE) {} in TypeSection() function
435 TypeSection *typeSec;
H A DSyntheticSections.cpp140 uint32_t TypeSection::registerType(const WasmSignature &sig) { in registerType()
149 uint32_t TypeSection::lookupType(const WasmSignature &sig) { in lookupType()
158 void TypeSection::writeBody() { in writeBody()
H A DWriter.cpp1521 out.typeSec = make<TypeSection>(); in createSyntheticSections()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
365 WasmYAML::TypeSection &Section) { in writeSectionContent()
615 else if (auto S = dyn_cast<WasmYAML::TypeSection>(Sec.get())) in writeWasm()
H A DWasmYAML.cpp100 static void sectionMapping(IO &IO, WasmYAML::TypeSection &Section) { in sectionMapping()
211 Section.reset(new WasmYAML::TypeSection()); in mapping()
212 sectionMapping(IO, *cast<WasmYAML::TypeSection>(Section.get())); in mapping()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h286 struct TypeSection : Section { struct
287 TypeSection() : Section(wasm::WASM_SEC_TYPE) {} in TypeSection() function
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp216 auto TypeSec = std::make_unique<WasmYAML::TypeSection>(); in dump()