v8/test/mjsunit/wasm/stackwalk.js
titzer 4c5b3609fd Initial import of v8-native WASM.
As discussed in person, this adds the code from v8-native-prototype into
V8 proper, guarded by GYP flags that do not build the code by default.
Passing wasm=on to 'make' or setting v8_wasm as a GYP flag activates
building of this code.

An additional header file is added to and exported from the compiler
directory, src/compiler/wasm-compiler.h. This exposes a limited interface
with opaque Node and Graph types to the decoder to build TF graphs, as
well as functions to compile WASM graphs.

The mjsunit tests added are blacklisted because they fail without the
WASM object exposed to JS, which is also disabled by the build config
option.

This corresponds closely to 5981e06ebc, with some formatting fixes and moving some files into src/compiler.

R=mstarzinger@chromium.org, bradnelson@chromium.org
BUG=

Review URL: https://codereview.chromium.org/1504713014

Cr-Commit-Position: refs/heads/master@{#32794}
2015-12-11 12:27:05 +00:00

136 lines
2.6 KiB
JavaScript

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --expose-gc --allow-natives-syntax
load("test/mjsunit/wasm/wasm-constants.js");
function makeFFI(func) {
var kBodySize = 6;
var kNameFunOffset = 24 + kBodySize + 1;
var kNameMainOffset = kNameFunOffset + 4;
var ffi = new Object();
ffi.fun = func;
var data = bytes(
// signatures
kDeclSignatures, 1,
2, kAstI32, kAstF64, kAstF64, // (f64,f64) -> int
// -- foreign function
kDeclFunctions, 2,
kDeclFunctionName | kDeclFunctionImport,
0, 0,
kNameFunOffset, 0, 0, 0, // name offset
// -- main function
kDeclFunctionName | kDeclFunctionExport,
0, 0,
kNameMainOffset, 0, 0, 0, // name offset
kBodySize, 0,
// main body
kExprCallFunction, 0, // --
kExprGetLocal, 0, // --
kExprGetLocal, 1, // --
// names
kDeclEnd,
'f', 'u', 'n', 0, // --
'm', 'a', 'i', 'n', 0 // --
);
var module = WASM.instantiateModule(data, ffi);
assertEquals("function", typeof module.main);
return module.main;
}
function makeReentrantFFI(func) {
var main = makeFFI(reenter);
function reenter(a, b) {
print(" reenter " + a);
if (a > 0) main(a - 1, b);
else func();
}
return main;
}
function runTest(builder) {
// ---- THROWING TEST -----------------------------------------------
function throwadd(a, b) {
print("-- trying throw --");
throw a + b;
}
function throwa(a) {
print("-- trying throw --");
throw a;
}
function throwstr() {
print("-- trying throw --");
throw "string";
}
assertThrows(builder(throwadd));
assertThrows(builder(throwa));
assertThrows(builder(throwstr));
try {
builder(throwadd)(7.8, 9.9);
} catch(e) {
print(e);
}
try {
builder(throwa)(11.8, 9.3);
} catch(e) {
print(e);
}
try {
builder(throwstr)(3, 5);
} catch(e) {
print(e);
}
// ---- DEOPT TEST -----------------------------------------------
function deopt() {
print("-- trying deopt --");
%DeoptimizeFunction(deopter);
}
var deopter = builder(deopt);
deopter(5, 5);
for (var i = 0; i < 9; i++) {
deopter(6, 6);
}
// ---- GC TEST -----------------------------------------------
function dogc(a, b) {
print("-- trying gc --");
gc();
gc();
}
var gcer = builder(dogc);
gcer(7, 7);
for (var i = 0; i < 9; i++) {
gcer(8, 8);
}
}
runTest(makeReentrantFFI);
runTest(makeFFI);