2021-06-08 14:04:59 +02:00
|
|
|
// Copyright 2021 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: --wasm-staging
|
|
|
|
|
2021-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2021-06-08 14:04:59 +02:00
|
|
|
|
|
|
|
const builder = new WasmModuleBuilder();
|
2023-10-05 08:46:07 +02:00
|
|
|
builder.addMemory(16, 32, true);
|
2021-06-08 14:04:59 +02:00
|
|
|
builder.addType(makeSig([kWasmI32, kWasmI32, kWasmI32], [kWasmI32]));
|
|
|
|
builder.addType(makeSig([], []));
|
|
|
|
builder.setTableBounds(1, 1);
|
2022-09-21 13:28:42 +02:00
|
|
|
builder.addActiveElementSegment(0, wasmI32Const(0), [0]);
|
2021-06-08 14:04:59 +02:00
|
|
|
// Generate function 1 (out of 1).
|
|
|
|
builder.addFunction(undefined, 0 /* sig */)
|
|
|
|
.addBodyWithEnd([
|
|
|
|
// signature: i_iii
|
|
|
|
// body:
|
|
|
|
kExprI32Const, 0x03, // i32.const
|
|
|
|
kSimdPrefix, kExprI8x16Splat, // i8x16.splat
|
|
|
|
kExprI32Const, 0x00, // i32.const
|
|
|
|
kSimdPrefix, kExprI8x16ReplaceLane, 0x00, // i8x16.replace_lane
|
|
|
|
kSimdPrefix, kExprI32x4ExtAddPairwiseI16x8U, // i32x4.extadd_pairwise_i16x8_u
|
|
|
|
kSimdPrefix, kExprI8x16ExtractLaneU, 0x00, // i8x16.extract_lane_u
|
|
|
|
kExprEnd, // end @15
|
|
|
|
]);
|
|
|
|
builder.addExport('main', 0);
|
|
|
|
const instance = builder.instantiate();
|
|
|
|
assertEquals(3, instance.exports.main(1, 2, 3));
|