Home
last modified time | relevance | path

Searched refs:dataSegments (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/lld/wasm/
H A DSyntheticSections.h355 const std::vector<OutputSegment *> &dataSegments)
357 initFunctions(initFunctions), dataSegments(dataSegments) {}
368 const std::vector<OutputSegment *> &dataSegments;
H A DSyntheticSections.cpp667 if (dataSegments.size()) { in writeBody()
669 writeUleb128(sub.os, dataSegments.size(), "num data segments"); in writeBody()
670 for (const OutputSegment *s : dataSegments) { in writeBody()
700 for (uint32_t i = 0; i < dataSegments.size(); ++i) { in writeBody()
701 const auto &inputSegments = dataSegments[i]->inputSegments; in writeBody()
H A DInputFiles.cpp477 for (const WasmSegment &s : wasmObj->dataSegments()) { in parse()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp101 for (const object::WasmSegment &Segment : Obj.dataSegments()) { in dumpCustomSection()
368 for (const object::WasmSegment &Segment : Obj.dataSegments()) { in dump()
387 DataCountSec->Count = Obj.dataSegments().size(); in dump()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DWasmDumper.cpp176 for (const WasmSegment &Segment : Obj->dataSegments()) { in printSectionHeaders()
/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DWasm.h149 ArrayRef<WasmSegment> dataSegments() const { return DataSegments; } in dataSegments() function