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

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

Issue 1770913002: [wasm] Use the JavaScript WasmModuleBuilder utility in JS tests. (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/stack.js ('k') | test/mjsunit/wasm/start-function.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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 --expose-gc --allow-natives-syntax 5 // Flags: --expose-wasm --expose-gc --allow-natives-syntax
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 makeFFI(func) { 10 function makeFFI(func) {
10 var kBodySize = 6; 11 var builder = new WasmModuleBuilder();
11 var kNameFunOffset = kHeaderSize + 24 + kBodySize + 1;
12 var kNameMainOffset = kNameFunOffset + 4;
13 12
14 var ffi = new Object(); 13 var sig_index = builder.addSignature([kAstI32, kAstF64, kAstF64]);
15 ffi.fun = func; 14 builder.addImport("func", sig_index);
15 builder.addFunction("main", sig_index)
16 .addBody([
17 kExprCallImport, 0, // --
18 kExprGetLocal, 0, // --
19 kExprGetLocal, 1]) // --
20 .exportFunc()
16 21
17 var data = bytesWithHeader( 22 return builder.instantiate({func: func}).exports.main;
18 // signatures
19 kDeclSignatures, 1,
20 2, kAstI32, kAstF64, kAstF64, // (f64,f64) -> int
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 kExprGetLocal, 0, // --
34 kExprGetLocal, 1, // --
35 // names
36 kDeclEnd,
37 'f', 'u', 'n', 0, // --
38 'm', 'a', 'i', 'n', 0 // --
39 );
40
41 var module = _WASMEXP_.instantiateModule(data, ffi);
42
43 assertEquals("function", typeof module.main);
44
45 return module.main;
46 } 23 }
47 24
48 25
49 function makeReentrantFFI(func) { 26 function makeReentrantFFI(func) {
50 var main = makeFFI(reenter); 27 var main = makeFFI(reenter);
51 28
52 function reenter(a, b) { 29 function reenter(a, b) {
53 print(" reenter " + a); 30 print(" reenter " + a);
54 if (a > 0) main(a - 1, b); 31 if (a > 0) main(a - 1, b);
55 else func(); 32 else func();
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 var gcer = builder(dogc); 103 var gcer = builder(dogc);
127 gcer(7, 7); 104 gcer(7, 7);
128 105
129 for (var i = 0; i < 9; i++) { 106 for (var i = 0; i < 9; i++) {
130 gcer(8, 8); 107 gcer(8, 8);
131 } 108 }
132 } 109 }
133 110
134 runTest(makeReentrantFFI); 111 runTest(makeReentrantFFI);
135 runTest(makeFFI); 112 runTest(makeFFI);
OLDNEW
« no previous file with comments | « test/mjsunit/wasm/stack.js ('k') | test/mjsunit/wasm/start-function.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698