Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.h341 class DataCountSection : public SyntheticSection {
343 DataCountSection(ArrayRef<OutputSegment *> segments);
445 DataCountSection *dataCountSec;
H A DSyntheticSections.cpp600 DataCountSection::DataCountSection(ArrayRef<OutputSegment *> segments) in DataCountSection() function in lld::wasm::DataCountSection
606 void DataCountSection::writeBody() { in writeBody()
610 bool DataCountSection::isNeeded() const { in isNeeded()
H A DWriter.cpp1536 out.dataCountSec = make<DataCountSection>(segments); in createSyntheticSectionsPostLayout()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
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()
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()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h406 struct DataCountSection : Section { struct
407 DataCountSection() : Section(wasm::WASM_SEC_DATACOUNT) {} in DataCountSection() function
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp386 auto DataCountSec = std::make_unique<WasmYAML::DataCountSection>(); in dump()