commit | 973fc5b9b0a15c1a1f1fd3e3748258400c1b8349 | [log] [tgz] |
---|---|---|
author | danno <danno@chromium.org> | Mon Apr 18 11:57:06 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Apr 18 11:58:05 2016 |
tree | b133b9b516fc25b3c992a6822236e3018d4842c8 | |
parent | 19b58454fab14411c874048ba85f443c0bd95d1e [diff] |
Separate CodeAssembler and CodeStubAssembler This separation is needed to make two goals possible simultaneously: * is should be possible to offer V8 components a simple, clean interface to TurboFan's low-level code generation that doesn't expose details about the TF. * it should be possible to easily create new CodeAssembler "macros" that don't require a review from an OWNER of the compiler directory. Review URL: https://codereview.chromium.org/1875583003 Cr-Commit-Position: refs/heads/master@{#35576}
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.