OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Flags: --expose-wasm | 5 // Flags: --expose-wasm |
6 | 6 |
7 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
| 8 load("test/mjsunit/wasm/wasm-module-builder.js"); |
8 | 9 |
9 function testStack(func, check) { | 10 var expected = "Error\n" + |
10 var kBodySize = 2; | 11 // The line numbers below will change as this test gains / loses lines.. |
11 var kNameFunOffset = kHeaderSize + 22 + kBodySize + 1; | 12 " at STACK (stack.js:24:11)\n" + // -- |
12 var kNameMainOffset = kNameFunOffset + 4; | 13 " at <WASM> (<anonymous>)\n" + // TODO(jfb): wasm stack here. |
13 | 14 " at testStack (stack.js:38:18)\n" + // -- |
14 var ffi = new Object(); | 15 " at stack.js:40:3"; // -- |
15 ffi.fun = func; | |
16 | |
17 var data = bytesWithHeader( | |
18 // signatures | |
19 kDeclSignatures, 1, // -- | |
20 0, kAstStmt, // () -> void | |
21 // -- foreign function | |
22 kDeclFunctions, 2, // -- | |
23 kDeclFunctionName | kDeclFunctionImport, // -- | |
24 0, 0, // -- | |
25 kNameFunOffset, 0, 0, 0, // name offset | |
26 // -- main function | |
27 kDeclFunctionName | kDeclFunctionExport, // -- | |
28 0, 0, // -- | |
29 kNameMainOffset, 0, 0, 0, // name offset | |
30 kBodySize, 0, | |
31 // main body | |
32 kExprCallFunction, 0, // -- | |
33 // names | |
34 kDeclEnd, // -- | |
35 'f', 'u', 'n', 0, // -- | |
36 'm', 'a', 'i', 'n', 0 // -- | |
37 ); | |
38 | |
39 var module = _WASMEXP_.instantiateModule(data, ffi); | |
40 | |
41 assertEquals("function", typeof module.main); | |
42 | |
43 module.main(); | |
44 check(); | |
45 } | |
46 | 16 |
47 // The stack trace contains file path, only keep "stack.js". | 17 // The stack trace contains file path, only keep "stack.js". |
48 function stripPath(s) { | 18 function stripPath(s) { |
49 return s.replace(/[^ (]*stack\.js/g, "stack.js"); | 19 return s.replace(/[^ (]*stack\.js/g, "stack.js"); |
50 } | 20 } |
51 | 21 |
52 var stack; | 22 var stack; |
53 function STACK() { | 23 function STACK() { |
54 var e = new Error(); | 24 var e = new Error(); |
55 stack = e.stack; | 25 stack = e.stack; |
56 } | 26 } |
57 | 27 |
58 function check_STACK() { | 28 (function testStack() { |
| 29 var builder = new WasmModuleBuilder(); |
| 30 |
| 31 builder.addImport("func", [kAstStmt]); |
| 32 |
| 33 builder.addFunction(undefined, [kAstStmt]) |
| 34 .addBody([kExprCallImport, 0]) |
| 35 .exportAs("main"); |
| 36 |
| 37 var module = builder.instantiate({func: STACK}); |
| 38 module.exports.main(); |
59 assertEquals(expected, stripPath(stack)); | 39 assertEquals(expected, stripPath(stack)); |
60 } | 40 })(); |
61 | |
62 var expected = "Error\n" + | |
63 // The line numbers below will change as this test gains / loses lines.. | |
64 " at STACK (stack.js:54:11)\n" + // -- | |
65 " at <WASM> (<anonymous>)\n" + // -- | |
66 " at testStack (stack.js:43:10)\n" + | |
67 // TODO(jfb) Add WebAssembly stack here. | |
68 " at stack.js:70:1"; | |
69 | |
70 testStack(STACK, check_STACK); | |
OLD | NEW |