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 (function testExportedMain() { | 10 (function testExportedMain() { |
11 var kReturnValue = 88; | 11 var kReturnValue = 88; |
12 var builder = new WasmModuleBuilder(); | 12 var builder = new WasmModuleBuilder(); |
13 | 13 |
14 builder.addFunction("main", [kAstI32]) | 14 builder.addFunction("main", kSig_i) |
15 .addBody([ | 15 .addBody([ |
16 kExprI8Const, | 16 kExprI8Const, |
17 kReturnValue, | 17 kReturnValue, |
18 kExprReturn, kArity1 | 18 kExprReturn, kArity1 |
19 ]) | 19 ]) |
20 .exportFunc(); | 20 .exportFunc(); |
21 | 21 |
22 var module = builder.instantiate(); | 22 var module = builder.instantiate(); |
23 | 23 |
24 assertEquals("object", typeof module.exports); | 24 assertEquals("object", typeof module.exports); |
25 assertEquals("function", typeof module.exports.main); | 25 assertEquals("function", typeof module.exports.main); |
26 | 26 |
27 assertEquals(kReturnValue, module.exports.main()); | 27 assertEquals(kReturnValue, module.exports.main()); |
28 })(); | 28 })(); |
29 | 29 |
30 (function testExportedTwice() { | 30 (function testExportedTwice() { |
31 var kReturnValue = 99; | 31 var kReturnValue = 99; |
32 | 32 |
33 var builder = new WasmModuleBuilder(); | 33 var builder = new WasmModuleBuilder(); |
34 | 34 |
35 builder.addFunction("main", [kAstI32]) | 35 builder.addFunction("main", kSig_i) |
36 .addBody([ | 36 .addBody([ |
37 kExprI8Const, | 37 kExprI8Const, |
38 kReturnValue, | 38 kReturnValue, |
39 kExprReturn, kArity1 | 39 kExprReturn, kArity1 |
40 ]) | 40 ]) |
41 .exportAs("blah") | 41 .exportAs("blah") |
42 .exportAs("foo"); | 42 .exportAs("foo"); |
43 | 43 |
44 var module = builder.instantiate(); | 44 var module = builder.instantiate(); |
45 | 45 |
46 assertEquals("object", typeof module.exports); | 46 assertEquals("object", typeof module.exports); |
47 assertEquals("function", typeof module.exports.blah); | 47 assertEquals("function", typeof module.exports.blah); |
48 assertEquals("function", typeof module.exports.foo); | 48 assertEquals("function", typeof module.exports.foo); |
49 | 49 |
50 assertEquals(kReturnValue, module.exports.foo()); | 50 assertEquals(kReturnValue, module.exports.foo()); |
51 assertEquals(kReturnValue, module.exports.blah()); | 51 assertEquals(kReturnValue, module.exports.blah()); |
52 })(); | 52 })(); |
| 53 |
| 54 |
| 55 (function testNumericName() { |
| 56 var kReturnValue = 93; |
| 57 |
| 58 var builder = new WasmModuleBuilder(); |
| 59 |
| 60 builder.addFunction("main", kSig_i) |
| 61 .addBody([ |
| 62 kExprI8Const, |
| 63 kReturnValue, |
| 64 kExprReturn, kArity1 |
| 65 ]) |
| 66 .exportAs("0"); |
| 67 |
| 68 var module = builder.instantiate(); |
| 69 |
| 70 assertEquals("object", typeof module.exports); |
| 71 assertEquals("function", typeof module.exports["0"]); |
| 72 |
| 73 assertEquals(kReturnValue, module.exports["0"]()); |
| 74 })(); |
OLD | NEW |