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

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

Issue 2591753002: [wasm] Implement correct 2-level namespace for imports. (Closed)
Patch Set: Fix debug tests Created 3 years, 12 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 load("test/mjsunit/wasm/wasm-module-builder.js");
9 9
10 function makeFFI(func) { 10 function makeFFI(func) {
11 var builder = new WasmModuleBuilder(); 11 var builder = new WasmModuleBuilder();
12 12
13 var sig_index = builder.addType(kSig_i_dd); 13 var sig_index = builder.addType(kSig_i_dd);
14 builder.addImport("func", sig_index); 14 builder.addImport("mom", "func", sig_index);
15 builder.addFunction("main", sig_index) 15 builder.addFunction("main", sig_index)
16 .addBody([ 16 .addBody([
17 kExprGetLocal, 0, // -- 17 kExprGetLocal, 0, // --
18 kExprGetLocal, 1, // -- 18 kExprGetLocal, 1, // --
19 kExprCallFunction, 0, // -- 19 kExprCallFunction, 0, // --
20 ]) 20 ])
21 .exportFunc() 21 .exportFunc()
22 22
23 return builder.instantiate({func: func}).exports.main; 23 return builder.instantiate({mom: {func: func}}).exports.main;
24 } 24 }
25 25
26 26
27 function makeReentrantFFI(func) { 27 function makeReentrantFFI(func) {
28 var main = makeFFI(reenter); 28 var main = makeFFI(reenter);
29 29
30 function reenter(a, b) { 30 function reenter(a, b) {
31 print(" reenter " + a); 31 print(" reenter " + a);
32 if (a > 0) main(a - 1, b); 32 if (a > 0) main(a - 1, b);
33 else func(); 33 else func();
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 var gcer = builder(dogc); 104 var gcer = builder(dogc);
105 gcer(7, 7); 105 gcer(7, 7);
106 106
107 for (var i = 0; i < 9; i++) { 107 for (var i = 0; i < 9; i++) {
108 gcer(8, 8); 108 gcer(8, 8);
109 } 109 }
110 } 110 }
111 111
112 runTest(makeReentrantFFI); 112 runTest(makeReentrantFFI);
113 runTest(makeFFI); 113 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