Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lld/wasm/
H A DConfig.h65 uint64_t maxMemory; member
H A DWriter.cpp376 if (config->maxMemory != 0) { in layoutMemory()
377 if (config->maxMemory != alignTo(config->maxMemory, WasmPageSize)) in layoutMemory()
379 if (memoryPtr > config->maxMemory) in layoutMemory()
381 if (config->maxMemory > maxMemorySetting) in layoutMemory()
387 if (config->maxMemory != 0 || config->sharedMemory) { in layoutMemory()
388 uint64_t max = config->maxMemory; in layoutMemory()
H A DDriver.cpp465 config->maxMemory = args::getInteger(args, OPT_max_memory, 0); in readConfigs()