OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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 | 5 // Flags: --expose-wasm --expose-gc |
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 load("test/mjsunit/wasm/wasm-module-builder.js"); |
9 | 9 |
10 function makeFFI(func, t) { | 10 function makeFFI(func, t) { |
11 var builder = new WasmModuleBuilder(); | 11 var builder = new WasmModuleBuilder(); |
12 | 12 |
13 var sig_index = builder.addType(makeSig([t,t,t,t,t,t,t,t,t,t], [t])); | 13 var sig_index = builder.addType(makeSig([t,t,t,t,t,t,t,t,t,t], [t])); |
14 builder.addImport("func", sig_index); | 14 builder.addImport("func", sig_index); |
15 // Try to create a frame with lots of spilled values and parameters | 15 // Try to create a frame with lots of spilled values and parameters |
16 // on the stack to try to catch GC bugs in the reference maps for | 16 // on the stack to try to catch GC bugs in the reference maps for |
17 // the different parts of the stack. | 17 // the different parts of the stack. |
18 builder.addFunction("main", sig_index) | 18 builder.addFunction("main", sig_index) |
19 .addBody([ | 19 .addBody([ |
20 kExprGetLocal, 0, // -- | 20 kExprGetLocal, 0, // -- |
21 kExprGetLocal, 1, // -- | 21 kExprGetLocal, 1, // -- |
22 kExprGetLocal, 2, // -- | 22 kExprGetLocal, 2, // -- |
23 kExprGetLocal, 3, // -- | 23 kExprGetLocal, 3, // -- |
24 kExprGetLocal, 4, // -- | 24 kExprGetLocal, 4, // -- |
25 kExprGetLocal, 5, // -- | 25 kExprGetLocal, 5, // -- |
26 kExprGetLocal, 6, // -- | 26 kExprGetLocal, 6, // -- |
27 kExprGetLocal, 7, // -- | 27 kExprGetLocal, 7, // -- |
28 kExprGetLocal, 8, // -- | 28 kExprGetLocal, 8, // -- |
29 kExprGetLocal, 9, // -- | 29 kExprGetLocal, 9, // -- |
30 kExprCallFunction, 0, // -- | 30 kExprCallImport, 10, 0, // -- |
31 kExprDrop, // -- | |
32 kExprGetLocal, 0, // -- | 31 kExprGetLocal, 0, // -- |
33 kExprGetLocal, 1, // -- | 32 kExprGetLocal, 1, // -- |
34 kExprGetLocal, 2, // -- | 33 kExprGetLocal, 2, // -- |
35 kExprGetLocal, 3, // -- | 34 kExprGetLocal, 3, // -- |
36 kExprGetLocal, 4, // -- | 35 kExprGetLocal, 4, // -- |
37 kExprGetLocal, 5, // -- | 36 kExprGetLocal, 5, // -- |
38 kExprGetLocal, 6, // -- | 37 kExprGetLocal, 6, // -- |
39 kExprGetLocal, 7, // -- | 38 kExprGetLocal, 7, // -- |
40 kExprGetLocal, 8, // -- | 39 kExprGetLocal, 8, // -- |
41 kExprGetLocal, 9, // -- | 40 kExprGetLocal, 9, // -- |
42 kExprCallFunction, 0, // -- | 41 kExprCallImport, 10, 0 // -- |
43 ]) // -- | 42 ]) // -- |
44 .exportFunc(); | 43 .exportFunc(); |
45 | 44 |
46 return builder.instantiate({func: func}).exports.main; | 45 return builder.instantiate({func: func}).exports.main; |
47 } | 46 } |
48 | 47 |
49 | 48 |
50 function print10(a, b, c, d, e, f, g, h, i) { | 49 function print10(a, b, c, d, e, f, g, h, i) { |
51 print(a + ",", b + ",", c + ",", d + ",", e + ",", f + ",", g + ",", h + ",",
i); | 50 print(a + ",", b + ",", c + ",", d + ",", e + ",", f + ",", g + ",", h + ",",
i); |
52 gc(); | 51 gc(); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 var gc_object = { | 88 var gc_object = { |
90 valueOf: function() { | 89 valueOf: function() { |
91 // Call the GC in valueOf, which is called within the JSToWasm wrapper. | 90 // Call the GC in valueOf, which is called within the JSToWasm wrapper. |
92 gc(); | 91 gc(); |
93 return {}; | 92 return {}; |
94 } | 93 } |
95 }; | 94 }; |
96 | 95 |
97 main(gc_object); | 96 main(gc_object); |
98 })(); | 97 })(); |
OLD | NEW |