Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h340 class DataCountSection : public SyntheticSection {
342 DataCountSection(ArrayRef<OutputSegment *> segments);
444 DataCountSection *dataCountSec;
H A DSyntheticSections.cpp598 DataCountSection::DataCountSection(ArrayRef<OutputSegment *> segments) in DataCountSection() function in lld::wasm::DataCountSection
605 void DataCountSection::writeBody() { in writeBody()
609 bool DataCountSection::isNeeded() const { in isNeeded()
H A DWriter.cpp1511 out.dataCountSec = make<DataCountSection>(segments); in createSyntheticSectionsPostLayout()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp160 static void sectionMapping(IO &IO, WasmYAML::DataCountSection &Section) { in sectionMapping()
271 Section.reset(new WasmYAML::DataCountSection()); in mapping()
272 sectionMapping(IO, *cast<WasmYAML::DataCountSection>(Section.get())); in mapping()
H A DWasmEmitter.cpp51 void writeSectionContent(raw_ostream &OS, WasmYAML::DataCountSection &Section);
561 WasmYAML::DataCountSection &Section) { in writeSectionContent()
639 else if (auto S = dyn_cast<WasmYAML::DataCountSection>(Sec.get())) in writeWasm()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h406 struct DataCountSection : Section { struct
407 DataCountSection() : Section(wasm::WASM_SEC_DATACOUNT) {} in DataCountSection() function
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp386 auto DataCountSec = std::make_unique<WasmYAML::DataCountSection>(); in dump()