2018-10-11 13:17:56 +00:00
|
|
|
// Copyright 2018 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');
|
2018-10-11 13:17:56 +00:00
|
|
|
|
|
|
|
const builder = new WasmModuleBuilder();
|
|
|
|
builder.addMemory(16, 32, false);
|
|
|
|
const sig = makeSig([kWasmI32, kWasmI32, kWasmI32], [kWasmI32]);
|
|
|
|
builder.addFunction(undefined, sig)
|
|
|
|
.addBodyWithEnd([
|
|
|
|
kExprMemorySize, 0,
|
|
|
|
kExprI32Const, 0,
|
|
|
|
kExprI64Const, 0,
|
|
|
|
kExprI64StoreMem8, 0, 0,
|
|
|
|
kExprEnd,
|
|
|
|
]);
|
|
|
|
builder.addExport('main', 0);
|
|
|
|
builder.instantiate(); // shouldn't crash
|