blob: c67ae317f1a2f46c3bbf757341b56163750481bd (
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
36
37
38
39
40
41
42
43
44
45
46
|
// |jit-test| --setpref=wasm_tail_calls=true; --setpref=wasm_gc=true; skip-if: !wasmGcEnabled() || !wasmTailCallsEnabled()
// Tests if instance registers were restored properly when call_ref is used
// with tail calls.
var t = wasmEvalText(`(module
(type $t1 (func))
(func $f0 (param funcref i32 i32 i32 i32 i32 i32 i32 i32 i32)
local.get 0
ref.cast (ref $t1)
return_call_ref $t1
)
(func $f1 (param i32))
(elem declare func $f)
(func $f (param funcref)
(local i32 i32 i32 i32)
local.get 0
i32.const 1
i32.const 1
i32.const 1
i32.const 1
i32.const 1
i32.const 1
i32.const 1
i32.const 1
i32.const 1
return_call $f0
)
(func (export "f") (result funcref)
ref.func $f
)
)`);
var t2 = wasmEvalText(`(module
(import "" "f" (func $fi (result funcref)))
(type $t1 (func (param funcref)))
(elem declare func $f2)
(func $f2)
(func (export "test")
ref.func $f2
call $fi
ref.cast (ref $t1)
call_ref $t1
)
)`, {"": {f:t.exports.f},});
t2.exports.test();
|