| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 } | 181 } |
| 182 assertThrows(() => memory.grow(16381)); | 182 assertThrows(() => memory.grow(16381)); |
| 183 })(); | 183 })(); |
| 184 | 184 |
| 185 (function ImportedMemoryBufferLength() { | 185 (function ImportedMemoryBufferLength() { |
| 186 print("ImportedMemoryBufferLength"); | 186 print("ImportedMemoryBufferLength"); |
| 187 let memory = new WebAssembly.Memory({initial: 2, maximum: 10}); | 187 let memory = new WebAssembly.Memory({initial: 2, maximum: 10}); |
| 188 assertEquals(2*kPageSize, memory.buffer.byteLength); | 188 assertEquals(2*kPageSize, memory.buffer.byteLength); |
| 189 let builder = new WasmModuleBuilder(); | 189 let builder = new WasmModuleBuilder(); |
| 190 builder.addFunction("grow", kSig_i_i) | 190 builder.addFunction("grow", kSig_i_i) |
| 191 .addBody([kExprGetLocal, 0, kExprGrowMemory]) | 191 .addBody([kExprGetLocal, 0, kExprGrowMemory, kMemoryZero]) |
| 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 })(); |
| OLD | NEW |