commit | f0523e30467789cbb3689b8023a207d3b5c4873c | [log] [tgz] |
---|---|---|
author | clemensh <clemensh@chromium.org> | Thu May 12 13:01:10 2016 |
committer | Commit bot <commit-bot@chromium.org> | Thu May 12 13:02:14 2016 |
tree | f779f12c8038a96dd37fbc891f363f7394ad4fef | |
parent | 4aec7ba1aa34e6b45618e0672ed1c2a0026e5b04 [diff] |
[wasm] Add UTF-8 validation Names passed for imports and exports are checked during decoding, leading to errors if they are no valid UTF-8. Function names are not checked during decode, but rather lead to undefined being returned at runtime if they are not UTF-8. We need to do these checks on the Wasm side, since the factory methods assume to get valid UTF-8 strings. R=titzer@chromium.org, yangguo@chromium.org Review-Url: https://codereview.chromium.org/1967023004 Cr-Commit-Position: refs/heads/master@{#36208}
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.