| OLD | NEW |
| 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: --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 | 9 |
| 9 var module = (function () { | 10 var main = (function () { |
| 10 var kFuncWithBody = 9; | 11 var builder = new WasmModuleBuilder(); |
| 11 var kFuncImported = 7; | 12 builder.addFunction("main", [kAstStmt]) |
| 12 var kBodySize1 = 1; | 13 .addBody([kExprUnreachable]) |
| 13 var kMainOffset = kHeaderSize + 6 + kFuncWithBody + kBodySize1 + 1; | 14 .exportAs("main"); |
| 14 | 15 |
| 15 var ffi = new Object(); | 16 return builder.instantiate().exports.main; |
| 16 ffi.add = (function(a, b) { return a + b | 0; }); | |
| 17 | |
| 18 return _WASMEXP_.instantiateModule(bytesWithHeader( | |
| 19 // -- signatures | |
| 20 kDeclSignatures, 1, | |
| 21 0, kAstStmt, // void -> void | |
| 22 // -- function #0 (unreachable) | |
| 23 kDeclFunctions, 1, | |
| 24 kDeclFunctionName | kDeclFunctionExport, | |
| 25 0, 0, // signature offset | |
| 26 kMainOffset, 0, 0, 0, // name offset | |
| 27 kBodySize1, 0, // body size | |
| 28 kExprUnreachable, | |
| 29 kDeclEnd, | |
| 30 'm', 'a', 'i', 'n', 0 // name | |
| 31 ), ffi); | |
| 32 })(); | 17 })(); |
| 33 | 18 |
| 34 // Check the module exists. | |
| 35 assertFalse(module === undefined); | |
| 36 assertFalse(module === null); | |
| 37 assertFalse(module === 0); | |
| 38 assertEquals("object", typeof module); | |
| 39 assertEquals("function", typeof module.main); | |
| 40 | |
| 41 var exception = ""; | 19 var exception = ""; |
| 42 try { | 20 try { |
| 43 assertEquals(0, module.main()); | 21 assertEquals(0, main()); |
| 44 } catch(e) { | 22 } catch(e) { |
| 45 print("correctly caught: " + e); | 23 print("correctly caught: " + e); |
| 46 exception = e; | 24 exception = e; |
| 47 } | 25 } |
| 48 assertEquals("unreachable", exception); | 26 assertEquals("unreachable", exception); |
| OLD | NEW |