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 --expose-gc --allow-natives-syntax | 5 // Flags: --expose-wasm --expose-gc --allow-natives-syntax |
6 | 6 |
7 load("test/mjsunit/wasm/wasm-constants.js"); | 7 load("test/mjsunit/wasm/wasm-constants.js"); |
8 | 8 |
9 function makeFFI(func) { | 9 function makeFFI(func) { |
10 var kBodySize = 6; | 10 var kBodySize = 6; |
(...skipping 20 matching lines...) Expand all Loading... |
31 // main body | 31 // main body |
32 kExprCallFunction, 0, // -- | 32 kExprCallFunction, 0, // -- |
33 kExprGetLocal, 0, // -- | 33 kExprGetLocal, 0, // -- |
34 kExprGetLocal, 1, // -- | 34 kExprGetLocal, 1, // -- |
35 // names | 35 // names |
36 kDeclEnd, | 36 kDeclEnd, |
37 'f', 'u', 'n', 0, // -- | 37 'f', 'u', 'n', 0, // -- |
38 'm', 'a', 'i', 'n', 0 // -- | 38 'm', 'a', 'i', 'n', 0 // -- |
39 ); | 39 ); |
40 | 40 |
41 var module = WASM.instantiateModule(data, ffi); | 41 var module = _WASMEXP_.instantiateModule(data, ffi); |
42 | 42 |
43 assertEquals("function", typeof module.main); | 43 assertEquals("function", typeof module.main); |
44 | 44 |
45 return module.main; | 45 return module.main; |
46 } | 46 } |
47 | 47 |
48 | 48 |
49 function makeReentrantFFI(func) { | 49 function makeReentrantFFI(func) { |
50 var main = makeFFI(reenter); | 50 var main = makeFFI(reenter); |
51 | 51 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 var gcer = builder(dogc); | 126 var gcer = builder(dogc); |
127 gcer(7, 7); | 127 gcer(7, 7); |
128 | 128 |
129 for (var i = 0; i < 9; i++) { | 129 for (var i = 0; i < 9; i++) { |
130 gcer(8, 8); | 130 gcer(8, 8); |
131 } | 131 } |
132 } | 132 } |
133 | 133 |
134 runTest(makeReentrantFFI); | 134 runTest(makeReentrantFFI); |
135 runTest(makeFFI); | 135 runTest(makeFFI); |
OLD | NEW |