| 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(func, check) { | 9 function testCallFFI(func, check) { |
| 8 var kBodySize = 6; | 10 var kBodySize = 6; |
| 9 var kNameFunOffset = 24 + kBodySize + 1; | 11 var kNameFunOffset = 24 + kBodySize + 1; |
| 10 var kNameMainOffset = kNameFunOffset + 4; | 12 var kNameMainOffset = kNameFunOffset + 4; |
| 11 | 13 |
| 12 var ffi = new Object(); | 14 var ffi = new Object(); |
| 13 ffi.fun = func; | 15 ffi.fun = func; |
| 14 | 16 |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 | 324 |
| 323 assertEquals("function", typeof module.main); | 325 assertEquals("function", typeof module.main); |
| 324 | 326 |
| 325 for (var i = -9; i < 900; i += 6.125) { | 327 for (var i = -9; i < 900; i += 6.125) { |
| 326 module.main(i); | 328 module.main(i); |
| 327 } | 329 } |
| 328 } | 330 } |
| 329 | 331 |
| 330 testCallPrint(); | 332 testCallPrint(); |
| 331 testCallPrint(); | 333 testCallPrint(); |
| OLD | NEW |