summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/regress/wasm/regress-13290.js
blob: 450b9492b0b0eba5b90ac16f2061698d3cb3d34c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2022 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: --allow-natives-syntax

d8.file.execute("test/mjsunit/wasm/wasm-module-builder.js");

let builder = new WasmModuleBuilder();

builder.addMemory(16, 17, false, false);

let main_func = builder.addFunction('main', kSig_i_v).exportFunc().addBody([
  ...wasmI32Const(1),
  ...wasmI32Const(-1),
  kExprI32StoreMem16, 1, 0,
  ...wasmI32Const(0),
  kExprI64LoadMem32U, 2, 0,
  ...wasmI64Const(-32),
  kExprI64ShrU,
  kExprI32ConvertI64,
]);

let instance = builder.instantiate();
let main = instance.exports.main;

for (let i = 0; i < 20; i++) assertEquals(0, main());
%WasmTierUpFunction(main);
assertEquals(0, main());