Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: test/mjsunit/wasm/import-memory.js

Issue 2474333003: [wasm] Exported memory should set maximum property when maximum is defined. (Closed)
Patch Set: Format Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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);
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 for (var i = 1; i < 10; i++) {
226 assertEquals(i, instance.exports.grow(1));
227 assertEquals((i+1), instance.exports.mem_size());
228 }
229 assertEquals(-1, instance.exports.grow(1));
230 })();
OLDNEW
« test/mjsunit/wasm/grow-memory.js ('K') | « test/mjsunit/wasm/grow-memory.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698