Implemented new wasm instructions: f32floor, f32ceil, f32trunc, f32nearestint, f32min, f32max, f64min, f64max, f32sconverti64, f32uconverti64, f64sconverti64 f64uconverti64
2 files changed
tree: 9b5c27adcd4d6ab2d185daaecd93a3414e311fc7
  1. src/
  2. test/
  3. travis/
  4. .gitignore
  5. .travis.yml
  6. Contributing.md
  7. LICENSE
  8. README.md
README.md

Build Status

WebAssembly V8 Native Prototype

This repository contains additional source code needed to build a prototype implementation of WebAssembly incorporated into V8.

To build:

git clone https://github.com/WebAssembly/v8-native-prototype.git
  • Checkout V8:
mkdir v8
cd v8
fetch v8
cd v8
  • Add symlinks to prototype from v8:
ln -fs $PWD/../../v8-native-prototype third_party/wasm
ln -fs $PWD/../../v8-native-prototype test/mjsunit/wasm
  • make x64.debug wasm=on