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 load('test/mjsunit/wasm/wasm-module-builder.js'); |
9 | 9 |
10 var debug = false; | 10 var debug = true; |
JF
2016/03/09 22:02:44
?
titzer
2016/03/09 22:03:57
It's passed to the module builder to make it print
| |
11 | 11 |
12 (function BasicTest() { | 12 (function BasicTest() { |
13 var module = new WasmModuleBuilder(); | 13 var module = new WasmModuleBuilder(); |
14 module.addMemory(1, 2, false); | 14 module.addMemory(1, 2, false); |
15 module.addFunction("foo", [kAstI32]) | 15 module.addFunction("foo", [kAstI32]) |
16 .addBody([kExprI8Const, 11]) | 16 .addBody([kExprI8Const, 11]) |
17 .exportAs("blarg"); | 17 .exportAs("blarg"); |
18 | 18 |
19 var buffer = module.toBuffer(debug); | 19 var buffer = module.toBuffer(debug); |
20 var instance = Wasm.instantiateModule(buffer); | 20 var instance = Wasm.instantiateModule(buffer); |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
144 var index = module.addImportWithModule("mod", "print", [kAstStmt, kAstI32]); | 144 var index = module.addImportWithModule("mod", "print", [kAstStmt, kAstI32]); |
145 module.addFunction("foo", [kAstStmt]) | 145 module.addFunction("foo", [kAstStmt]) |
146 .addBody([kExprCallImport, index, kExprI8Const, 19]) | 146 .addBody([kExprCallImport, index, kExprI8Const, 19]) |
147 .exportAs("main"); | 147 .exportAs("main"); |
148 | 148 |
149 var buffer = module.toBuffer(debug); | 149 var buffer = module.toBuffer(debug); |
150 var instance = Wasm.instantiateModule(buffer, {mod: {print: print}}); | 150 var instance = Wasm.instantiateModule(buffer, {mod: {print: print}}); |
151 print("should print 19! "); | 151 print("should print 19! "); |
152 instance.exports.main(); | 152 instance.exports.main(); |
153 })(); | 153 })(); |
OLD | NEW |