• mtrofin's avatar
    [wasm] Managed<T> ensures T's lifetime does not leak past Isolate's · caa1d4b2
    mtrofin authored
    Native resources allocated by v8, as internal implementation detail,
    and held by a Foreign object, must be released when the Isolate is
    torn down. Example: wasm::WasmModule allocated by wasm compile, and
    held throughout the lifetime of the WebAssembly.Module object.
    
    This change:
    - Extends Managed<CppType> with a mechanism for doing just that
    - Separates the role of Managed<CppType> to be strictly an owner of
    the lifetime of the native resource. For cases where that's not
    desirable, we can polymorphically use Foregin.
    - moves managed.h out of wasm, since it's not wasm-specific.
    
    BUG=680065
    
    Review-Url: https://codereview.chromium.org/2676513008
    Cr-Commit-Position: refs/heads/master@{#43350}
    caa1d4b2
Name
Last commit
Last update
..
OWNERS 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...
module-decoder.cc Loading commit data...
module-decoder.h Loading commit data...
signature-map.cc Loading commit data...
signature-map.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-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-macro-gen.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.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...