v8/test/cctest/interpreter
mvstanton aea3ce3df3 [TypeFeedbackVector] Root feedback vectors at function literal site.
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}
2017-02-06 10:18:05 +00:00
..
bytecode_expectations [Ignition] Rename New and NewWithSpread bytecodes. 2017-02-01 09:04:04 +00:00
bytecode-expectations-printer.cc [ignition] Expect 'I' for signed bytecode operands 2017-01-25 17:39:24 +00:00
bytecode-expectations-printer.h [interpreter] Add some bytecode tests for modules. 2016-10-04 18:42:36 +00:00
generate-bytecode-expectations.cc [interpreter] Add some bytecode tests for modules. 2016-10-04 18:42:36 +00:00
interpreter-tester.cc Interpreter tester should accept metadata instead of a vector 2017-01-26 10:03:00 +00:00
interpreter-tester.h [TypeFeedbackVector] Root feedback vectors at function literal site. 2017-02-06 10:18:05 +00:00
source-position-matcher.cc This CL enables precise source positions for all V8 compilers. It merges compiler::SourcePosition and internal::SourcePosition to a single class used throughout the codebase. The new internal::SourcePosition instances store an id identifying an inlined function in addition to a script offset. 2016-11-14 17:22:32 +00:00
source-position-matcher.h Use source position table for unoptimized code. 2016-06-28 05:52:52 +00:00
test-bytecode-generator.cc [Ignition/turbo] Add a CallWithSpread bytecode. 2017-01-23 09:03:35 +00:00
test-interpreter-intrinsics.cc [ignition] Remove obsolete %_ValueOf intrinsic. 2017-01-20 10:45:37 +00:00
test-interpreter.cc [ic] Encode [Keyed]StoreIC's language mode in slot kind instead of code object's flags. 2017-02-06 09:31:52 +00:00
test-source-positions.cc include fixing: api.h shouldn't include objects-inl.h 2017-01-09 13:43:28 +00:00