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 |
| 6 |
5 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
6 | 8 |
7 function testCallFFI(ffi) { | 9 function testCallFFI(ffi) { |
8 var kBodySize = 6; | 10 var kBodySize = 6; |
9 var kNameAddOffset = 28 + kBodySize + 1; | 11 var kNameAddOffset = 28 + kBodySize + 1; |
10 var kNameMainOffset = kNameAddOffset + 4; | 12 var kNameMainOffset = kNameAddOffset + 4; |
11 | 13 |
12 var data = bytes( | 14 var data = bytes( |
13 kDeclMemory, | 15 kDeclMemory, |
14 12, 12, 1, // memory | 16 12, 12, 1, // memory |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 testCallFFI(ffi); | 70 testCallFFI(ffi); |
69 }); | 71 }); |
70 | 72 |
71 | 73 |
72 // "fun" should be a JS function. | 74 // "fun" should be a JS function. |
73 assertThrows(function() { | 75 assertThrows(function() { |
74 var ffi = new Object(); | 76 var ffi = new Object(); |
75 ffi.fun = 0; | 77 ffi.fun = 0; |
76 testCallFFI(ffi); | 78 testCallFFI(ffi); |
77 }); | 79 }); |
OLD | NEW |