• mvstanton's avatar
    [TypeFeedbackVector] Root feedback vectors at function literal site. · aea3ce3d
    mvstanton authored
    TypeFeedbackVectors are strongly rooted by a closure. However, in modern
    JavaScript closures are created and abandoned more freely. An important
    closure may not be present in the root-set at time of garbage collection,
    even though we've cached optimized code and use it regularly. For
    example, consider leaf functions in an event dispatching system. They may
    well be "hot," but tragically non-present when we collect the heap.
    
    Until now, we've relied on a weak root to cache the feedback vector in
    this case. Since there is no way to signal intent or relative importance,
    this weak root is as susceptible to clearing as any other weak root at
    garbage collection time.
    
    Meanwhile, the feedback vector has become more important. All of our
    ICs store their data there. Literal and regex boilerplates are stored there.
    If we lose the vector, then we not only lose optimized code built from
    it, we also lose the very feedback which allowed us to create that optimized
    code. Therefore it's vital to express that dependency through the root
    set.
    
    This CL does this by creating a strong link to a feedback
    vector at the instantiation site of the function closure.
    This instantiation site is in the code and feedback vector
    of the outer closure.
    
    BUG=v8:5456
    
    Review-Url: https://codereview.chromium.org/2674593003
    Cr-Commit-Position: refs/heads/master@{#42953}
    aea3ce3d
Name
Last commit
Last update
..
OWNERS Loading commit data...
allocation-tracker.cc Loading commit data...
allocation-tracker.h Loading commit data...
circular-queue-inl.h Loading commit data...
circular-queue.h Loading commit data...
cpu-profiler-inl.h Loading commit data...
cpu-profiler.cc Loading commit data...
cpu-profiler.h Loading commit data...
heap-profiler.cc Loading commit data...
heap-profiler.h Loading commit data...
heap-snapshot-generator-inl.h Loading commit data...
heap-snapshot-generator.cc Loading commit data...
heap-snapshot-generator.h Loading commit data...
profile-generator-inl.h Loading commit data...
profile-generator.cc Loading commit data...
profile-generator.h Loading commit data...
profiler-listener.cc Loading commit data...
profiler-listener.h Loading commit data...
sampling-heap-profiler.cc Loading commit data...
sampling-heap-profiler.h Loading commit data...
strings-storage.cc Loading commit data...
strings-storage.h Loading commit data...
tick-sample.cc Loading commit data...
tick-sample.h Loading commit data...
tracing-cpu-profiler.cc Loading commit data...
tracing-cpu-profiler.h Loading commit data...
unbound-queue-inl.h Loading commit data...
unbound-queue.h Loading commit data...