Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h85 class TypeSection : public SyntheticSection {
87 TypeSection() : SyntheticSection(llvm::wasm::WASM_SEC_TYPE) {} in TypeSection() function
434 TypeSection *typeSec;
H A DSyntheticSections.cpp138 uint32_t TypeSection::registerType(const WasmSignature &sig) { in registerType()
147 uint32_t TypeSection::lookupType(const WasmSignature &sig) { in lookupType()
156 void TypeSection::writeBody() { in writeBody()
H A DWriter.cpp1496 out.typeSec = make<TypeSection>(); in createSyntheticSections()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
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()
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()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h286 struct TypeSection : Section { struct
287 TypeSection() : Section(wasm::WASM_SEC_TYPE) {} in TypeSection() argument
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp216 auto TypeSec = std::make_unique<WasmYAML::TypeSection>(); in dump()