Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h372 class NameSection : public SyntheticSection {
374 NameSection(ArrayRef<OutputSegment *> segments)
446 NameSection *nameSec;
H A DSyntheticSections.cpp734 unsigned NameSection::numNamedFunctions() const { in numNamedFunctions()
744 unsigned NameSection::numNamedGlobals() const { in numNamedGlobals()
755 unsigned NameSection::numNamedDataSegments() const { in numNamedDataSegments()
766 void NameSection::writeBody() { in writeBody()
H A DWriter.cpp1513 out.nameSec = make<NameSection>(segments); in createSyntheticSectionsPostLayout()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp62 static void sectionMapping(IO &IO, WasmYAML::NameSection &Section) { in sectionMapping()
192 Section.reset(new WasmYAML::NameSection()); in mapping()
193 sectionMapping(IO, *cast<WasmYAML::NameSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp55 void writeSectionContent(raw_ostream &OS, WasmYAML::NameSection &Section);
271 WasmYAML::NameSection &Section) { in writeSectionContent()
350 } else if (auto S = dyn_cast<WasmYAML::NameSection>(&Section)) { in writeSectionContent()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp69 std::unique_ptr<WasmYAML::NameSection> NameSec = in dumpCustomSection()
70 std::make_unique<WasmYAML::NameSection>(); in dumpCustomSection()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h234 struct NameSection : CustomSection { struct
235 NameSection() : CustomSection("name") {} in NameSection() argument