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

Side by Side Diff: test/mjsunit/wasm/stack.js

Issue 1740373002: [wasm] Add a magic word and a version number to the binary. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 months 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/wasm/params.js ('k') | test/mjsunit/wasm/stackwalk.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 8
9 function testStack(func, check) { 9 function testStack(func, check) {
10 var kBodySize = 2; 10 var kBodySize = 2;
11 var kNameFunOffset = 22 + kBodySize + 1; 11 var kNameFunOffset = kHeaderSize + 22 + kBodySize + 1;
12 var kNameMainOffset = kNameFunOffset + 4; 12 var kNameMainOffset = kNameFunOffset + 4;
13 13
14 var ffi = new Object(); 14 var ffi = new Object();
15 ffi.fun = func; 15 ffi.fun = func;
16 16
17 var data = bytes( 17 var data = bytesWithHeader(
18 // signatures 18 // signatures
19 kDeclSignatures, 1, // -- 19 kDeclSignatures, 1, // --
20 0, kAstStmt, // () -> void 20 0, kAstStmt, // () -> void
21 // -- foreign function 21 // -- foreign function
22 kDeclFunctions, 2, // -- 22 kDeclFunctions, 2, // --
23 kDeclFunctionName | kDeclFunctionImport, // -- 23 kDeclFunctionName | kDeclFunctionImport, // --
24 0, 0, // -- 24 0, 0, // --
25 kNameFunOffset, 0, 0, 0, // name offset 25 kNameFunOffset, 0, 0, 0, // name offset
26 // -- main function 26 // -- main function
27 kDeclFunctionName | kDeclFunctionExport, // -- 27 kDeclFunctionName | kDeclFunctionExport, // --
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 // The line numbers below will change as this test gains / loses lines.. 63 // The line numbers below will change as this test gains / loses lines..
64 " at STACK (stack.js:54:11)\n" + // -- 64 " at STACK (stack.js:54:11)\n" + // --
65 " at <WASM> (<anonymous>)\n" + // -- 65 " at <WASM> (<anonymous>)\n" + // --
66 " at <WASM> (<anonymous>)\n" + // -- 66 " at <WASM> (<anonymous>)\n" + // --
67 " at <WASM> (<anonymous>)\n" + // -- 67 " at <WASM> (<anonymous>)\n" + // --
68 " at testStack (stack.js:43:10)\n" + 68 " at testStack (stack.js:43:10)\n" +
69 // TODO(jfb) Add WebAssembly stack here. 69 // TODO(jfb) Add WebAssembly stack here.
70 " at stack.js:72:1"; 70 " at stack.js:72:1";
71 71
72 testStack(STACK, check_STACK); 72 testStack(STACK, check_STACK);
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/params.js ('k') | test/mjsunit/wasm/stackwalk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698