commit | cad36659b1dc230773eb6d2a985fa8b9a12a4d86 | [log] [tgz] |
---|---|---|
author | mythria <mythria@chromium.org> | Tue Oct 18 11:47:35 2016 |
committer | Commit bot <commit-bot@chromium.org> | Tue Oct 18 11:48:15 2016 |
tree | 3f85bfe9dde2ea7084e11dc6c1779aa1c8fda50f | |
parent | 35aee89a68f06d01b0fd59ef0e7037b9d1d62971 [diff] |
[turbofan] When inlining JSCallConstruct receiver should be set to the hole. When inlining JSCallConstruct in turbofan, receiver is initialized to model the behaviour of constructor. When an implicit receiver is not required the receiver value should be set to the hole value instead of undefined value. When initializing the receiver via super calls, we check that the receiver is the hole value. BUG=chromium:653407 Review-Url: https://codereview.chromium.org/2424123002 Cr-Commit-Position: refs/heads/master@{#40396}
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.