2018-03-07 08:54:53 +01: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-08-29 14:20:49 +02:00
|
|
|
d8.file.execute('test/mjsunit/wasm/wasm-module-builder.js');
|
2018-03-07 08:54:53 +01:00
|
|
|
|
|
|
|
const builder = new WasmModuleBuilder();
|
|
|
|
builder.addFunction(undefined, kSig_v_iii).addBody([
|
|
|
|
kExprI32Const, 0x41, // i32.const 0x41
|
|
|
|
kExprLoop, 0x7c, // loop f64
|
2019-11-08 15:39:11 +01:00
|
|
|
kExprLocalGet, 0x00, // get_local 0
|
|
|
|
kExprLocalGet, 0x01, // get_local 1
|
2018-03-07 08:54:53 +01:00
|
|
|
kExprBrIf, 0x01, // br_if depth=1
|
2019-11-08 15:39:11 +01:00
|
|
|
kExprLocalGet, 0x00, // get_local 0
|
2018-03-07 08:54:53 +01:00
|
|
|
kExprI32Rol, // i32.rol
|
|
|
|
kExprBrIf, 0x00, // br_if depth=0
|
|
|
|
kExprUnreachable, // unreachable
|
|
|
|
kExprEnd, // end
|
|
|
|
kExprUnreachable, // unreachable
|
|
|
|
]);
|
|
|
|
builder.instantiate();
|