• Clemens Hammacher's avatar
    Implement managed objects with phantom handles · f244f0c5
    Clemens Hammacher authored
    For each Managed<T> (which is a Foreign), we create a weak global handle
    with a finalizer which deletes the referenced C++ object once the
    Foreign is dead.
    Before calling this finalizer, the garbage collector needs to mark the
    referenced object black (i.e. live), because the finalizer might
    resurrect it.
    Since this is never done for managed objects, we can use the more
    lightweight phantom handle semantics, which allows the referenced
    object to be garbage collected right away.
    
    However, we can't access the global handle via the WeakCallbackInfo,
    because the global handle will already be garbage collected. So we need
    to store it explicitly. This is solved by storing the global handle
    together with the finalizer.
    In order to implement this, ownership of the ManagedObjectFinalizer
    is moved from the isolate to the managed object.
    
    R=ulan@chromium.org, mtrofin@chromium.org
    BUG=v8:6505, chromium:734345
    
    Change-Id: I94a245df601f70e19355d82439d30099e159231b
    Reviewed-on: https://chromium-review.googlesource.com/539578
    Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
    Reviewed-by: 's avatarUlan Degenbaev <ulan@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#46036}
    f244f0c5
Name
Last commit
Last update
benchmarks Loading commit data...
build_overrides Loading commit data...
docs Loading commit data...
gni Loading commit data...
gypfiles Loading commit data...
include Loading commit data...
infra Loading commit data...
samples Loading commit data...
src Loading commit data...
test Loading commit data...
testing Loading commit data...
third_party Loading commit data...
tools Loading commit data...
.clang-format Loading commit data...
.gitignore Loading commit data...
.gn Loading commit data...
.ycm_extra_conf.py Loading commit data...
AUTHORS Loading commit data...
BUILD.gn Loading commit data...
CODE_OF_CONDUCT.md Loading commit data...
ChangeLog Loading commit data...
DEPS Loading commit data...
LICENSE Loading commit data...
LICENSE.fdlibm Loading commit data...
LICENSE.strongtalk Loading commit data...
LICENSE.v8 Loading commit data...
LICENSE.valgrind Loading commit data...
Makefile Loading commit data...
Makefile.android Loading commit data...
OWNERS Loading commit data...
PRESUBMIT.py Loading commit data...
README.md Loading commit data...
WATCHLISTS Loading commit data...
codereview.settings Loading commit data...
snapshot_toolchain.gni Loading commit data...