2019-04-25 17:34:58 +00:00
|
|
|
// Copyright 2019 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.
|
|
|
|
|
2021-06-01 12:46:36 +00:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2019-04-25 17:34:58 +00:00
|
|
|
|
|
|
|
const memory = new WebAssembly.Memory({initial: 1});
|
|
|
|
|
|
|
|
let builder = new WasmModuleBuilder();
|
|
|
|
builder.addImportedMemory("imports", "mem", 1);
|
|
|
|
builder.addFunction("copy", kSig_v_iii)
|
2019-10-08 12:38:48 +00:00
|
|
|
.addBody([kExprLocalGet, 0, // dst
|
|
|
|
kExprLocalGet, 1, // src
|
|
|
|
kExprLocalGet, 2, // size
|
2019-04-25 17:34:58 +00:00
|
|
|
kNumericPrefix, kExprMemoryCopy, 0, 0]).exportAs("copy");
|
|
|
|
let instance = builder.instantiate({imports: {mem: memory}});
|
|
|
|
memory.grow(1);
|
|
|
|
instance.exports.copy(0, kPageSize, 11);
|