reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lld/wasm/SyntheticSections.cpp
  135     import.Memory.Initial = out.memorySec->numMemoryPages;
  136     if (out.memorySec->maxMemoryPages != 0 || config->sharedMemory) {
  138       import.Memory.Maximum = out.memorySec->maxMemoryPages;
tools/lld/wasm/Writer.cpp
  295   out.memorySec->numMemoryPages =
  297   log("mem: total pages = " + Twine(out.memorySec->numMemoryPages));
  305     out.memorySec->maxMemoryPages = config->maxMemory / WasmPageSize;
  306     log("mem: max pages   = " + Twine(out.memorySec->maxMemoryPages));
  340   addSection(out.memorySec);
  965   out.memorySec = make<MemorySection>();