commit | aed32e0f22353527993de8bceaf246fc744558f5 | [log] [tgz] |
---|---|---|
author | caitp <caitp@igalia.com> | Wed Oct 05 13:12:26 2016 |
committer | Commit bot <commit-bot@chromium.org> | Wed Oct 05 13:12:46 2016 |
tree | 89828abe6d66c10082069936c4c51b4dfbcaded4 | |
parent | 7500e5077caaddf84e26a4c2356fb69f3edc7be5 [diff] |
[turbofan] inline %StringIteratorPrototype%.next in JSBuiltinReducer. Implement the logic for StringIterator.prototype.next in the JSBuiltinReducer in order to allow inlining when the receiver is a JS_STRING_ITERATOR_TYPE map, built ontop of the SimplifiedOperators StringCharCodeAt and the newly added StringFromCodePoint. Also introduces a new StringFromCodePoint simplified op which may be useful for other String builtins, such as String.fromCodePoint() BUG=v8:5388 R=bmeurer@chromium.org, mstarzinger@chromium.org Review-Url: https://codereview.chromium.org/2373983004 Cr-Commit-Position: refs/heads/master@{#39994}
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.