• Ulan Degenbaev's avatar
    [heap] Implement per-context marking worklist draining · e27e6fd6
    Ulan Degenbaev authored
    This changes the marking worklist draining for the main thread
    marker and the concurrent marker to use the following algorithm in
    per-context mode:
    1) Pop an object from the marking worklist.
    2) Try to infer the native context that owns the objects.
       This is done using a new NativeContextInferrer class.
    3) If the inference is successful, then change the active marking
       worklist to the worklist of the inferred native context.
    4) Otherwise, keep the current active marking worklist.
    5) Visit the object. Newly discovered objects will be pushed
       onto the active marking worklist.
    6) Account the object size for the native context corresponding
       to the active marking worklist.
       This is done using a new NativeContextStats class.
    
    The main property of the algorithm is that each object for which
    we couldn't infer the native context is either attributed to
    the native context retaining it or is not attributed to any native
    context.
    
    Bug: chromium:973627
    
    Change-Id: Ide4ab992275d115279f971d89ace657f4c05e176
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1981491
    Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
    Reviewed-by: 's avatarDominik Inführ <dinfuehr@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#65663}
    e27e6fd6
Name
Last commit
Last update
..
benchmarks Loading commit data...
cctest Loading commit data...
common Loading commit data...
debugger Loading commit data...
fuzzer Loading commit data...
inspector Loading commit data...
intl Loading commit data...
js-perf-test Loading commit data...
memory Loading commit data...
message Loading commit data...
mjsunit Loading commit data...
mkgrokdump Loading commit data...
mozilla Loading commit data...
test262 Loading commit data...
torque Loading commit data...
unittests Loading commit data...
wasm-api-tests Loading commit data...
wasm-js Loading commit data...
wasm-spec-tests Loading commit data...
webkit Loading commit data...
BUILD.gn Loading commit data...
OWNERS Loading commit data...