Searched refs:LinkingSection (Results 1 – 7 of 7) sorted by relevance
352 class LinkingSection : public SyntheticSection {354 LinkingSection(const std::vector<WasmInitEntry> &initFunctions,445 LinkingSection *linkingSec;
613 void LinkingSection::writeBody() { in writeBody()729 void LinkingSection::addToSymtab(Symbol *sym) { in addToSymtab()
1512 out.linkingSec = make<LinkingSection>(initFunctions, segments); in createSyntheticSectionsPostLayout()
70 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()
56 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()
86 std::unique_ptr<WasmYAML::LinkingSection> LinkingSec = in dumpCustomSection()87 std::make_unique<WasmYAML::LinkingSection>(); in dumpCustomSection()
247 struct LinkingSection : CustomSection { struct248 LinkingSection() : CustomSection("linking") {} in LinkingSection() function