Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DSyntheticSections.h230 class MemorySection : public SyntheticSection {
232 MemorySection() : SyntheticSection(llvm::wasm::WASM_SEC_MEMORY) {}
439 MemorySection *memorySec;
H A DSyntheticSections.cpp352 void MemorySection::writeBody() { in writeBody()
H A DWriter.cpp1525 out.memorySec = make<MemorySection>(); in createSyntheticSections()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DWasmEmitter.cpp43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
459 WasmYAML::MemorySection &Section) { in writeSectionContent()
623 else if (auto S = dyn_cast<WasmYAML::MemorySection>(Sec.get())) in writeWasm()
H A DWasmYAML.cpp120 static void sectionMapping(IO &IO, WasmYAML::MemorySection &Section) { in sectionMapping()
231 Section.reset(new WasmYAML::MemorySection()); in mapping()
232 sectionMapping(IO, *cast<WasmYAML::MemorySection>(Section.get())); in mapping()
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h326 struct MemorySection : Section { struct
327 MemorySection() : Section(wasm::WASM_SEC_MEMORY) {} in MemorySection() function
/openbsd-src/gnu/llvm/llvm/tools/obj2yaml/
H A Dwasm2yaml.cpp279 auto MemorySec = std::make_unique<WasmYAML::MemorySection>(); in dump()