commit | 0840e20764d5b522fb8fa35ee7e119f2a365adbc | [log] [tgz] |
---|---|---|
author | bradnelson <bradnelson@chromium.org> | Mon Jan 11 12:26:53 2016 |
committer | Commit bot <commit-bot@chromium.org> | Mon Jan 11 12:27:11 2016 |
tree | f9e650ae75934b2e1b2fa386abbf8b2395226c84 | |
parent | 4938aca2c27134c79926d2a6c093ebf658f8fbf3 [diff] |
Reject lack of "use asm" marker in asm typer. Until now we've been allowing unmarked asm code through the typer. Start rejecting it. Adding a cctest that asm modules missing an export return fail validation. BUG= https://code.google.com/p/v8/issues/detail?id=4203 TEST=test-asm-validator R=aseemgarg@chromium.org,titzer@chromium.org LOG=N Review URL: https://codereview.chromium.org/1569423002 Cr-Commit-Position: refs/heads/master@{#33199}
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.