| commit | dddfcfd0a965199bdc41954d88f6e57e6cae17e1 | [log] [tgz] | 
|---|---|---|
| author | bbudge <bbudge@chromium.org> | Fri Apr 21 21:34:43 2017 | 
| committer | Commit bot <commit-bot@chromium.org> | Fri Apr 21 21:34:43 2017 | 
| tree | cb21788d8bef21e17ed7f4db6b2cdfc7f93c57d3 | |
| parent | 75ce09b53392eee23f3c0c6727463f9d9ef9c73f [diff] | 
[WASM SIMD] Remove opcodes that are slow on some platforms. These can be synthesized from existing operations and scheduled for better performance than if we have to generate blocks of instructions that take many cycles to complete. - Remove F32x4RecipRefine, F32x4RecipSqrtRefine. Clients are better off synthesizing these from splats, multiplies and adds. - Remove F32x4Div, F32x4Sqrt, F32x4MinNum, F32x4MaxNum. Clients are better off synthesizing these or using the reciprocal approximations, possibly with a refinement step. LOG=N BUG=v8:6020 Review-Url: https://codereview.chromium.org/2827143002 Cr-Commit-Position: refs/heads/master@{#44784}
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.