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 --wasm-num-compilation-tasks=10 | 5 // Flags: --expose-wasm --wasm-num-compilation-tasks=10 |
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 assertModule(module, memsize) { | 10 function assertModule(module, memsize) { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 kExprI32Add, // -- | 77 kExprI32Add, // -- |
78 ]) | 78 ]) |
79 .exportFunc() | 79 .exportFunc() |
80 | 80 |
81 builder.addMemory(1, 1, true); | 81 builder.addMemory(1, 1, true); |
82 for (i = 1; i < 256; i++) { | 82 for (i = 1; i < 256; i++) { |
83 f[i] = builder.addFunction("add" + i, kSig_i_ii) | 83 f[i] = builder.addFunction("add" + i, kSig_i_ii) |
84 .addBody([ // -- | 84 .addBody([ // -- |
85 kExprGetLocal, 0, // -- | 85 kExprGetLocal, 0, // -- |
86 kExprGetLocal, 1, // -- | 86 kExprGetLocal, 1, // -- |
87 kExprCallFunction, kArity2, f[i >>> 1].index]) // -- | 87 kExprCallFunction, f[i >>> 1].index]) // -- |
88 .exportFunc() | 88 .exportFunc() |
89 } | 89 } |
90 var module = builder.instantiate(); | 90 var module = builder.instantiate(); |
91 assertModule(module, kPageSize); | 91 assertModule(module, kPageSize); |
92 | 92 |
93 // Check the properties of the functions. | 93 // Check the properties of the functions. |
94 for (i = 0; i < 256; i++) { | 94 for (i = 0; i < 256; i++) { |
95 var add = assertFunction(module, "add" + i); | 95 var add = assertFunction(module, "add" + i); |
96 assertEquals(88, add(33, 55)); | 96 assertEquals(88, add(33, 55)); |
97 assertEquals(88888, add(33333, 55555)); | 97 assertEquals(88888, add(33333, 55555)); |
98 assertEquals(8888888, add(3333333, 5555555)); | 98 assertEquals(8888888, add(3333333, 5555555)); |
99 } | 99 } |
100 })(); | 100 })(); |
OLD | NEW |