Home
last modified time | relevance | path

Searched refs:memorySec (Results 1 – 3 of 3) sorted by relevance

/external/llvm-project/lld/wasm/
DWriter.cpp338 out.memorySec->numMemoryPages = in layoutMemory()
340 log("mem: total pages = " + Twine(out.memorySec->numMemoryPages)); in layoutMemory()
363 out.memorySec->maxMemoryPages = max / WasmPageSize; in layoutMemory()
364 log("mem: max pages = " + Twine(out.memorySec->maxMemoryPages)); in layoutMemory()
398 addSection(out.memorySec); in addSections()
1205 out.memorySec = make<MemorySection>(); in createSyntheticSections()
DSyntheticSections.cpp135 import.Memory.Initial = out.memorySec->numMemoryPages; in writeBody()
136 if (out.memorySec->maxMemoryPages != 0 || config->sharedMemory) { in writeBody()
138 import.Memory.Maximum = out.memorySec->maxMemoryPages; in writeBody()
DSyntheticSections.h359 MemorySection *memorySec; member