summaryrefslogtreecommitdiff
path: root/deps/v8/test/mjsunit/wasm/stack-push-root.js
blob: 2f148410160fc237bbff126da5104827f9b18f17 (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
30
31
32
33
34
35
// Copyright 2023 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: --experimental-wasm-gc

// Tests that code generator behaves correctly when pushing to the stack an
// operand that is an offset of the root register.

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

let builder = new WasmModuleBuilder();

let sig = makeSig(
    [kWasmAnyRef, kWasmAnyRef, kWasmAnyRef, kWasmAnyRef, kWasmAnyRef,
     kWasmAnyRef],
    [kWasmAnyRef]);
let sig_index = builder.addType(sig);

let callee =
    builder.addFunction('callee', sig_index).addBody([kExprLocalGet, 5]);

builder.addFunction('main', kSig_r_v).exportFunc().addBody([
  kExprRefNull, kAnyRefCode,
  kExprRefNull, kAnyRefCode,
  kExprRefNull, kAnyRefCode,
  kExprRefNull, kAnyRefCode,
  kExprRefNull, kAnyRefCode,
  kExprRefNull, kAnyRefCode,
  kExprCallFunction, callee.index,
  kGCPrefix, kExprExternExternalize
]);

let instance = builder.instantiate();
assertEquals(null, instance.exports.main());