• Mircea Trofin's avatar
    [wasm] A simple allocator datastructure for off-the heap · 110d9ab0
    Mircea Trofin authored
    We'll use this allocator in a follow-up CL to:
    - allocate speculative sizes of memory for a module that's being
    compiled (e.g. 2*size of wasm code).
    - each module will own such a sub-pool, and then use it to allocate
    contiguous chunks of memory for code.
    
    The underlying assumptions for the chosen allocation strategy is that:
    - the allocation granularity for pools is 1 page, so that no one page
    is owned by more than one wasm module
    - typical pool sizes (given module sizes) are multiple pages.
    - modules and module instances are typically few and long lived. Typically,
    we expect one module and one instance. 
    
    This means we shouldn't expect fragmentations that lead to code being
    non-allocatable, or prohibitively many ranges.
    
    The data structure just manages ranges of addresses. Virtual memory management
    will be separate, as part of the responsibility of a "WasmHeap"
    that will be introduced in the future. So will concurrency control.
    
    Bug: 
    Change-Id: Id99f46d10c25553b013054d994760f3c2a737c39
    Reviewed-on: https://chromium-review.googlesource.com/669296
    Commit-Queue: Mircea Trofin <mtrofin@chromium.org>
    Reviewed-by: 's avatarEric Holk <eholk@chromium.org>
    Reviewed-by: 's avatarBrad Nelson <bradnelson@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#48053}
    110d9ab0
Name
Last commit
Last update
..
OWNERS Loading commit data...
compilation-manager.cc Loading commit data...
compilation-manager.h Loading commit data...
decoder.h Loading commit data...
function-body-decoder-impl.h Loading commit data...
function-body-decoder.cc Loading commit data...
function-body-decoder.h Loading commit data...
leb-helper.h Loading commit data...
local-decl-encoder.cc Loading commit data...
local-decl-encoder.h Loading commit data...
module-compiler.cc Loading commit data...
module-compiler.h Loading commit data...
module-decoder.cc Loading commit data...
module-decoder.h Loading commit data...
signature-map.cc Loading commit data...
signature-map.h Loading commit data...
streaming-decoder.cc Loading commit data...
streaming-decoder.h Loading commit data...
wasm-api.cc Loading commit data...
wasm-api.h Loading commit data...
wasm-code-specialization.cc Loading commit data...
wasm-code-specialization.h Loading commit data...
wasm-debug.cc Loading commit data...
wasm-external-refs.cc Loading commit data...
wasm-external-refs.h Loading commit data...
wasm-heap.cc Loading commit data...
wasm-heap.h Loading commit data...
wasm-interpreter.cc Loading commit data...
wasm-interpreter.h Loading commit data...
wasm-js.cc Loading commit data...
wasm-js.h Loading commit data...
wasm-limits.h Loading commit data...
wasm-module-builder.cc Loading commit data...
wasm-module-builder.h Loading commit data...
wasm-module.cc Loading commit data...
wasm-module.h Loading commit data...
wasm-objects-inl.h Loading commit data...
wasm-objects.cc Loading commit data...
wasm-objects.h Loading commit data...
wasm-opcodes.cc Loading commit data...
wasm-opcodes.h Loading commit data...
wasm-result.cc Loading commit data...
wasm-result.h Loading commit data...
wasm-text.cc Loading commit data...
wasm-text.h Loading commit data...
wasm-value.h Loading commit data...