Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/wasm/
H A DConfig.h58 uint64_t maxMemory; member
H A DWriter.cpp357 if (config->maxMemory != 0) { in layoutMemory()
358 if (config->maxMemory != alignTo(config->maxMemory, WasmPageSize)) in layoutMemory()
360 if (memoryPtr > config->maxMemory) in layoutMemory()
362 if (config->maxMemory > maxMemorySetting) in layoutMemory()
368 if (config->maxMemory != 0 || config->sharedMemory) { in layoutMemory()
369 uint64_t max = config->maxMemory; in layoutMemory()
H A DDriver.cpp401 config->maxMemory = args::getInteger(args, OPT_max_memory, 0); in readConfigs()