Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Unified Diff: test/mjsunit/wasm/stackwalk.js

Issue 1504713014: Initial import of v8-native WASM. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/wasm/params.js ('k') | test/mjsunit/wasm/unreachable.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/wasm/stackwalk.js
diff --git a/test/mjsunit/wasm/stackwalk.js b/test/mjsunit/wasm/stackwalk.js
new file mode 100644
index 0000000000000000000000000000000000000000..5c2cffd5cbf336e9d27856005be3c801f9c71295
--- /dev/null
+++ b/test/mjsunit/wasm/stackwalk.js
@@ -0,0 +1,135 @@
+// 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);
« no previous file with comments | « test/mjsunit/wasm/params.js ('k') | test/mjsunit/wasm/unreachable.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698