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

Side by Side Diff: test/mjsunit/wasm/instantiate-run-basic.js

Issue 2806073002: [wasm] instantiate expressed in terms of compile (Closed)
Patch Set: feedback Created 3 years, 8 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
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 5 // Flags: --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 BasicTest() { 10 const kReturnValue = 15;
11 var kReturnValue = 15; 11
12 function getBuilder() {
12 var builder = new WasmModuleBuilder(); 13 var builder = new WasmModuleBuilder();
13 14
14 builder.addFunction("main", kSig_i_i) 15 builder.addFunction("main", kSig_i_i)
15 .addBody([kExprI32Const, kReturnValue]) 16 .addBody([kExprI32Const, kReturnValue])
16 .exportFunc(); 17 .exportFunc();
18 return builder;
19 }
17 20
21 (function BasicTest() {
22 var builder = getBuilder();
18 var main = builder.instantiate().exports.main; 23 var main = builder.instantiate().exports.main;
19 assertEquals(kReturnValue, main()); 24 assertEquals(kReturnValue, main());
20 })(); 25 })();
26
27 (function AsyncTest() {
28 var builder = getBuilder();
29 var buffer = builder.toBuffer();
30 assertPromiseResult(
31 WebAssembly.instantiate(buffer)
32 .then(pair => pair.instance.exports.main(), assertUnreachable)
33 .then(result => assertEquals(kReturnValue, result), assertUnreachable));
34 })();
OLDNEW
« src/wasm/wasm-js.cc ('K') | « src/wasm/wasm-module.cc ('k') | test/mjsunit/wasm/js-api.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698