| commit | a1475dae5d147cac78812cd4fd09f886b51a88ef | [log] [tgz] |
|---|---|---|
| author | danno <danno@chromium.org> | Mon Jul 13 09:45:43 2015 |
| committer | Commit bot <commit-bot@chromium.org> | Mon Jul 13 09:45:51 2015 |
| tree | 7f29df984877f2c2fe6401e59d633bda3db65a2b | |
| parent | f87286e2db5b302ecd8331ccd13b1d3859b8bef5 [diff] |
Create a internal native context used only for TF-generated code stubs Until now, TF-generated code stubs piggy-backed off of the builtin context. Since generation of code stubs is lazy, stubs generated at different times in different native contexts would contain embedded pointers different builtin contexts, leading to cross-context references and memory leaks. After this CL, all TF-generated code stubs are generated inside a internal thinned-out, native context that lives solely for the purpose of hosting generated code stubs. Review URL: https://codereview.chromium.org/1213203007 Cr-Commit-Position: refs/heads/master@{#29593}
V8 is Google's open source JavaScript engine.
V8 implements ECMAScript as specified in ECMA-262.
V8 is written in C++ and is used in Google Chrome, the open source browser from Google.
V8 can run standalone, or can be embedded into any C++ application.
V8 Project page: https://code.google.com/p/v8/
Checkout depot tools, and run
fetch v8
This will checkout V8 into the directory v8 and fetch all of its dependencies. To stay up to date, run
git pull origin
gclient sync
For fetching all branches, add the following into your remote configuration in .git/config:
fetch = +refs/branch-heads/*:refs/remotes/branch-heads/*
fetch = +refs/tags/*:refs/tags/*