2018-12-28 06:29:18 +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-12-28 06:29:18 +00:00
|
|
|
|
|
|
|
(function() {
|
|
|
|
const builder = new WasmModuleBuilder();
|
|
|
|
builder.addType(makeSig([], []));
|
|
|
|
builder.addType(makeSig([kWasmI32], [kWasmI32]));
|
|
|
|
builder.addFunction(undefined, 0 /* sig */)
|
|
|
|
.addBodyWithEnd([
|
|
|
|
kExprEnd, // @1
|
|
|
|
]);
|
|
|
|
builder.addFunction(undefined, 1 /* sig */)
|
2020-09-10 12:39:52 +00:00
|
|
|
.addLocals(kWasmI32, 65)
|
2018-12-28 06:29:18 +00:00
|
|
|
.addBodyWithEnd([
|
2021-03-22 06:56:01 +00:00
|
|
|
kExprLoop, kWasmVoid, // @3
|
2018-12-28 06:29:18 +00:00
|
|
|
kSimdPrefix,
|
|
|
|
kExprF32x4Min,
|
|
|
|
kExprI64UConvertI32,
|
|
|
|
kExprI64RemS,
|
|
|
|
kExprUnreachable,
|
|
|
|
kExprLoop, 0x02, // @10
|
|
|
|
]);
|
|
|
|
})
|