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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
// |jit-test| skip-if: !wasmGcEnabled()
function linkGlobals(typeSection, exportInit, linkType) {
let {global} = wasmEvalText(`(module
${typeSection}
(global (export "global") ${linkType} ${exportInit})
)`).exports;
wasmEvalText(`(module
${typeSection}
(import "" "global"
(global ${linkType})
)
)`, {"": {global}});
}
function linkTables(typeSection, exportInit, linkType) {
let {table} = wasmEvalText(`(module
${typeSection}
(table (export "table") ${linkType} (elem (${exportInit})))
)`).exports;
wasmEvalText(`(module
${typeSection}
(import "" "table"
(table 0 1 ${linkType})
)
)`, {"": {table}});
}
function linkFuncs(typeSection, exportInit, linkType) {
let {func} = wasmEvalText(`(module
${typeSection}
(func
(export "func")
(param ${linkType})
(result ${linkType})
unreachable
)
)`).exports;
wasmEvalText(`(module
${typeSection}
(import "" "func"
(func (param ${linkType}) (result ${linkType}))
)
)`, {"": {func}});
}
const TESTS = [
[
"(type (struct (field i32)))",
"ref.null 0",
"(ref null 0)",
],
[
"(type (array i32))",
"ref.null 0",
"(ref null 0)",
],
[
"(type (struct (field i32))) (type (struct (field (ref 0))))",
"ref.null 1",
"(ref null 1)",
]
];
for (let test of TESTS) {
linkGlobals(...test);
linkTables(...test);
linkFuncs(...test);
}
|