commit | b848716c9810b48126f63c370f9b87dabbb469d6 | [log] [tgz] |
---|---|---|
author | mstarzinger <mstarzinger@chromium.org> | Thu Sep 15 11:00:23 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu Sep 15 11:00:42 2016 |
tree | c35fb6d7d1bba2fa5ab14562778a1f00495aec77 | |
parent | b37daacd6b94086ad63ab763587ab2a7b8c88c6b [diff] |
[compiler] Fix confusion about OSR BailoutId semantics. The semantics of the {BailoutId} representing an OSR entry point is different between the interpreter and the full code generator. These semantics are hard-coded in various graph builders. We need to ensure that the correct graph builder is chosen for OSR compilations. R=rmcilroy@chromium.org TEST=mjsunit/regress/regress-5380 BUG=v8:5380 Review-Url: https://codereview.chromium.org/2341663002 Cr-Commit-Position: refs/heads/master@{#39444}
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://github.com/v8/v8/wiki
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/*
Please follow the instructions mentioned on the V8 wiki.