v8/test/mjsunit/wasm/grow-memory-detaching.js
Clemens Hammacher cc70a6b050 [wasm] Rename GrowMemory to MemoryGrow
The "grow_memory" opcode was renamed to "memory.grow", and the spec
repo was updated to use kExprMemoryGrow internally instead of
kExprGrowMemory (https://github.com/WebAssembly/spec/pull/720).
This CL does the same change for v8.

Drive-by: Rename "current_size" to "memory.size", and a minor cleanup
in wasm-graph-builder.js to bring it in line with the version in the
js-api tests in the spec repo.

R=titzer@chromium.org

Change-Id: If525dba898b2c248890a616d3392c22b45f698ef
Reviewed-on: https://chromium-review.googlesource.com/c/1302057
Reviewed-by: Ben Titzer <titzer@chromium.org>
Commit-Queue: Clemens Hammacher <clemensh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#57089}
2018-10-29 14:06:24 +00:00

66 lines
1.8 KiB
JavaScript

// Copyright 2016 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flags: --expose-wasm
load("test/mjsunit/wasm/wasm-constants.js");
load("test/mjsunit/wasm/wasm-module-builder.js");
let module = (() => {
let builder = new WasmModuleBuilder();
builder.addMemory(1, undefined, false);
builder.addFunction("grow_memory", kSig_i_i)
.addBody([kExprGetLocal, 0, kExprMemoryGrow, kMemoryZero])
.exportFunc();
builder.exportMemoryAs("memory");
return builder.toModule();
})();
(function TestDetachingViaAPI() {
print("TestDetachingViaAPI...");
let memory = new WebAssembly.Memory({initial: 1, maximum: 100});
let growMem = (pages) => memory.grow(pages);
let b1 = memory.buffer;
assertEquals(kPageSize, b1.byteLength);
growMem(0);
let b2 = memory.buffer;
assertFalse(b1 === b2);
assertEquals(0, b1.byteLength);
assertEquals(kPageSize, b2.byteLength);
growMem(1);
let b3 = memory.buffer;
assertFalse(b1 === b3);
assertFalse(b2 === b3);
assertEquals(0, b1.byteLength);
assertEquals(0, b2.byteLength);
assertEquals(2 * kPageSize, b3.byteLength);
})();
(function TestDetachingViaBytecode() {
print("TestDetachingViaBytecode...");
let instance = new WebAssembly.Instance(module);
let growMem = instance.exports.grow_memory;
let memory = instance.exports.memory;
let b1 = memory.buffer;
assertEquals(kPageSize, b1.byteLength);
growMem(0);
let b2 = memory.buffer;
assertFalse(b1 === b2);
assertEquals(0, b1.byteLength);
assertEquals(kPageSize, b2.byteLength);
growMem(1);
let b3 = memory.buffer;
assertFalse(b1 === b3);
assertFalse(b2 === b3);
assertEquals(0, b1.byteLength);
assertEquals(0, b2.byteLength);
assertEquals(2 * kPageSize, b3.byteLength);
})();