Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h352 class LinkingSection : public SyntheticSection {
354 LinkingSection(const std::vector<WasmInitEntry> &initFunctions,
445 LinkingSection *linkingSec;
H A DSyntheticSections.cpp613 void LinkingSection::writeBody() { in writeBody()
729 void LinkingSection::addToSymtab(Symbol *sym) { in addToSymtab()
H A DWriter.cpp1512 out.linkingSec = make<LinkingSection>(initFunctions, segments); in createSyntheticSectionsPostLayout()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp70 static void sectionMapping(IO &IO, WasmYAML::LinkingSection &Section) { in sectionMapping()
188 Section.reset(new WasmYAML::LinkingSection()); in mapping()
189 sectionMapping(IO, *cast<WasmYAML::LinkingSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp56 void writeSectionContent(raw_ostream &OS, WasmYAML::LinkingSection &Section);
186 WasmYAML::LinkingSection &Section) { in writeSectionContent()
352 } else if (auto S = dyn_cast<WasmYAML::LinkingSection>(&Section)) { in writeSectionContent()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp86 std::unique_ptr<WasmYAML::LinkingSection> LinkingSec = in dumpCustomSection()
87 std::make_unique<WasmYAML::LinkingSection>(); in dumpCustomSection()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h247 struct LinkingSection : CustomSection { struct
248 LinkingSection() : CustomSection("linking") {} in LinkingSection() function