Home
last modified time | relevance | path

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

/external/llvm-project/lld/wasm/
DSyntheticSections.h163 class MemorySection : public SyntheticSection {
165 MemorySection() : SyntheticSection(llvm::wasm::WASM_SEC_MEMORY) {} in MemorySection() function
359 MemorySection *memorySec;
DSyntheticSections.cpp229 void MemorySection::writeBody() { in writeBody()
DWriter.cpp1205 out.memorySec = make<MemorySection>(); in createSyntheticSections()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DWasmEmitter.cpp43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
411 WasmYAML::MemorySection &Section) { in writeSectionContent()
572 else if (auto S = dyn_cast<WasmYAML::MemorySection>(Sec.get())) in writeWasm()
DWasmYAML.cpp116 static void sectionMapping(IO &IO, WasmYAML::MemorySection &Section) { in sectionMapping()
227 Section.reset(new WasmYAML::MemorySection()); in mapping()
228 sectionMapping(IO, *cast<WasmYAML::MemorySection>(Section.get())); in mapping()
/external/llvm-project/llvm/lib/ObjectYAML/
DWasmEmitter.cpp43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
433 WasmYAML::MemorySection &Section) { in writeSectionContent()
598 else if (auto S = dyn_cast<WasmYAML::MemorySection>(Sec.get())) in writeWasm()
DWasmYAML.cpp117 static void sectionMapping(IO &IO, WasmYAML::MemorySection &Section) { in sectionMapping()
228 Section.reset(new WasmYAML::MemorySection()); in mapping()
229 sectionMapping(IO, *cast<WasmYAML::MemorySection>(Section.get())); in mapping()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DWasmYAML.h306 struct MemorySection : Section { struct
307 MemorySection() : Section(wasm::WASM_SEC_MEMORY) {} in MemorySection() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/
DWasmYAML.h302 struct MemorySection : Section { struct
303 MemorySection() : Section(wasm::WASM_SEC_MEMORY) {} in MemorySection() function
/external/llvm-project/llvm/tools/obj2yaml/
Dwasm2yaml.cpp274 auto MemorySec = std::make_unique<WasmYAML::MemorySection>(); in dump()