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 | 8 |
9 function testCallFFI(ffi) { | 9 function testCallFFI(ffi) { |
10 var kBodySize = 6; | 10 var kBodySize = 6; |
(...skipping 20 matching lines...) Expand all Loading... |
31 kExprCallFunction, 0, // -- | 31 kExprCallFunction, 0, // -- |
32 kExprGetLocal, 0, // -- | 32 kExprGetLocal, 0, // -- |
33 kExprGetLocal, 1, // -- | 33 kExprGetLocal, 1, // -- |
34 // names | 34 // names |
35 kDeclEnd, | 35 kDeclEnd, |
36 'f', 'u', 'n', 0, // -- | 36 'f', 'u', 'n', 0, // -- |
37 'm', 'a', 'i', 'n', 0 // -- | 37 'm', 'a', 'i', 'n', 0 // -- |
38 ); | 38 ); |
39 | 39 |
40 print("instantiate FFI"); | 40 print("instantiate FFI"); |
41 var module = WASM.instantiateModule(data, ffi); | 41 var module = _WASMEXP_.instantiateModule(data, ffi); |
42 } | 42 } |
43 | 43 |
44 // everything is good. | 44 // everything is good. |
45 (function() { | 45 (function() { |
46 var ffi = new Object(); | 46 var ffi = new Object(); |
47 ffi.fun = function(a, b) { print(a, b); } | 47 ffi.fun = function(a, b) { print(a, b); } |
48 testCallFFI(ffi); | 48 testCallFFI(ffi); |
49 })(); | 49 })(); |
50 | 50 |
51 | 51 |
(...skipping 18 matching lines...) Expand all Loading... |
70 testCallFFI(ffi); | 70 testCallFFI(ffi); |
71 }); | 71 }); |
72 | 72 |
73 | 73 |
74 // "fun" should be a JS function. | 74 // "fun" should be a JS function. |
75 assertThrows(function() { | 75 assertThrows(function() { |
76 var ffi = new Object(); | 76 var ffi = new Object(); |
77 ffi.fun = 0; | 77 ffi.fun = 0; |
78 testCallFFI(ffi); | 78 testCallFFI(ffi); |
79 }); | 79 }); |
OLD | NEW |