Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h327 class ElemSection : public SyntheticSection {
329 ElemSection()
443 ElemSection *elemSec;
H A DSyntheticSections.cpp544 void ElemSection::addEntry(FunctionSymbol *sym) { in addEntry()
554 void ElemSection::writeBody() { in writeBody()
H A DWriter.cpp1505 out.elemSec = make<ElemSection>(); in createSyntheticSections()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp145 static void sectionMapping(IO &IO, WasmYAML::ElemSection &Section) { in sectionMapping()
256 Section.reset(new WasmYAML::ElemSection()); in mapping()
257 sectionMapping(IO, *cast<WasmYAML::ElemSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp48 void writeSectionContent(raw_ostream &OS, WasmYAML::ElemSection &Section);
491 WasmYAML::ElemSection &Section) { in writeSectionContent()
633 else if (auto S = dyn_cast<WasmYAML::ElemSection>(Sec.get())) in writeWasm()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h376 struct ElemSection : Section { struct
377 ElemSection() : Section(wasm::WASM_SEC_ELEM) {} in ElemSection() function
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp331 auto ElemSec = std::make_unique<WasmYAML::ElemSection>(); in dump()