Chromium Code Reviews| 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 | 5 // Flags: --expose-wasm |
| 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 TestOne() { | 10 (function TestOne() { |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 192 .exportFunc(); | 192 .exportFunc(); |
| 193 builder.addImportedMemory("mine"); | 193 builder.addImportedMemory("mine"); |
| 194 let instance = builder.instantiate({mine: memory}); | 194 let instance = builder.instantiate({mine: memory}); |
| 195 function grow(pages) { return instance.exports.grow(pages); } | 195 function grow(pages) { return instance.exports.grow(pages); } |
| 196 assertEquals(2, grow(3)); | 196 assertEquals(2, grow(3)); |
| 197 assertEquals(5*kPageSize, memory.buffer.byteLength); | 197 assertEquals(5*kPageSize, memory.buffer.byteLength); |
| 198 assertEquals(5, grow(5)); | 198 assertEquals(5, grow(5)); |
| 199 assertEquals(10*kPageSize, memory.buffer.byteLength); | 199 assertEquals(10*kPageSize, memory.buffer.byteLength); |
| 200 assertThrows(() => memory.grow(1)); | 200 assertThrows(() => memory.grow(1)); |
| 201 })(); | 201 })(); |
| 202 | |
| 203 (function TestGrowMemoryExportedMaximum() { | |
| 204 print("TestGrowMemoryExportedMaximum"); | |
| 205 var exp_instance; | |
| 206 { | |
| 207 let builder = new WasmModuleBuilder(); | |
| 208 builder.addMemory(1, 10, true); | |
|
ahaas
2016/11/04 09:12:17
nit: define constants for these values?
gdeepti
2016/11/08 08:01:00
Not adding constants for these values as these are
| |
| 209 builder.exportMemoryAs("exported_mem"); | |
| 210 exp_instance = builder.instantiate(); | |
| 211 } | |
| 212 var instance; | |
| 213 { | |
| 214 var builder = new WasmModuleBuilder(); | |
| 215 builder.addImportedMemory("imported_mem"); | |
| 216 builder.addFunction("mem_size", kSig_i_v) | |
| 217 .addBody([kExprMemorySize, kMemoryZero]) | |
| 218 .exportFunc(); | |
| 219 builder.addFunction("grow", kSig_i_i) | |
| 220 .addBody([kExprGetLocal, 0, kExprGrowMemory, kMemoryZero]) | |
| 221 .exportFunc(); | |
| 222 instance = builder.instantiate({ | |
| 223 imported_mem: exp_instance.exports.exported_mem}); | |
| 224 } | |
| 225 var current_mem_size = 1; | |
|
ahaas
2016/11/04 09:12:17
nit: use the constants you defined above here?
gdeepti
2016/11/08 08:01:00
Removed left over constant.
| |
| 226 for (var i = 1; i < 10; i++) { | |
| 227 assertEquals(i, instance.exports.grow(1)); | |
| 228 assertEquals((i+1), instance.exports.mem_size()); | |
| 229 } | |
| 230 assertEquals(-1, instance.exports.grow(1)); | |
| 231 })(); | |
| OLD | NEW |