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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
|
// |jit-test| skip-if: !wasmGcEnabled()
// Test exnref
{
const {
refCast,
refTest,
branch,
branchFail,
refCastNullable,
refTestNullable,
branchNullable,
branchFailNullable,
} = wasmEvalText(`(module
(tag $a)
(func $make (param $null i32) (result exnref)
(if (local.get $null)
(then
(return (ref.null exn))
)
)
try_table (catch_all_ref 0)
throw $a
end
unreachable
)
(func (export "refCast") (param $null i32)
(call $make (local.get $null))
ref.cast (ref exn)
drop
)
(func (export "refTest") (param $null i32) (result i32)
(call $make (local.get $null))
ref.test (ref exn)
)
(func (export "branch") (param $null i32) (result i32)
(block (result (ref exn))
(call $make (local.get $null))
br_on_cast 0 exnref (ref exn)
drop
(return (i32.const 0))
)
drop
(return (i32.const 1))
)
(func (export "branchFail") (param $null i32) (result i32)
(block (result exnref)
(call $make (local.get $null))
br_on_cast_fail 0 exnref (ref exn)
drop
(return (i32.const 1))
)
drop
(return (i32.const 0))
)
(func (export "refCastNullable") (param $null i32)
(call $make (local.get $null))
ref.cast exnref
drop
)
(func (export "refTestNullable") (param $null i32) (result i32)
(call $make (local.get $null))
ref.test exnref
)
(func (export "branchNullable") (param $null i32) (result i32)
(block (result exnref)
(call $make (local.get $null))
br_on_cast 0 exnref exnref
drop
(return (i32.const 0))
)
drop
(return (i32.const 1))
)
(func (export "branchFailNullable") (param $null i32) (result i32)
(block (result exnref)
(call $make (local.get $null))
br_on_cast_fail 0 exnref exnref
drop
(return (i32.const 1))
)
drop
(return (i32.const 0))
)
)`).exports;
// cast non-null exnref -> (ref exn)
refCast(0);
assertEq(refTest(0), 1);
assertEq(branch(0), 1);
assertEq(branchFail(0), 1);
// cast non-null exnref -> exnref
refCastNullable(0);
assertEq(refTestNullable(0), 1);
assertEq(branchNullable(0), 1);
assertEq(branchFailNullable(0), 1);
// cast null exnref -> (ref exn)
assertErrorMessage(() => refCast(1), WebAssembly.RuntimeError, /bad cast/);
assertEq(refTest(1), 0);
assertEq(branch(1), 0);
assertEq(branchFail(1), 0);
// cast null exnref -> exnref
refCastNullable(1);
assertEq(refTestNullable(1), 1);
assertEq(branchNullable(1), 1);
assertEq(branchFailNullable(1), 1);
}
// Test nullexnref
{
const {
refCastNull,
refCastNonNull,
refTestNull,
refTestNonNull,
branchNull,
branchNonNull,
branchFailNull,
branchFailNonNull,
} = wasmEvalText(`(module
(func (export "refCastNull")
ref.null noexn
ref.cast nullexnref
drop
)
(func (export "refCastNonNull")
ref.null noexn
ref.cast (ref noexn)
drop
)
(func (export "refTestNull") (result i32)
ref.null noexn
ref.test nullexnref
)
(func (export "refTestNonNull") (result i32)
ref.null noexn
ref.test (ref noexn)
)
(func (export "branchNull") (result i32)
(block (result nullexnref)
ref.null noexn
br_on_cast 0 exnref nullexnref
drop
(return (i32.const 0))
)
drop
(return (i32.const 1))
)
(func (export "branchNonNull") (result i32)
(block (result (ref noexn))
ref.null noexn
br_on_cast 0 exnref (ref noexn)
drop
(return (i32.const 0))
)
drop
(return (i32.const 1))
)
(func (export "branchFailNull") (result i32)
(block (result exnref)
ref.null noexn
br_on_cast_fail 0 exnref (ref noexn)
drop
(return (i32.const 1))
)
drop
(return (i32.const 0))
)
(func (export "branchFailNonNull") (result i32)
(block (result (ref exn))
ref.null noexn
br_on_cast_fail 0 exnref (ref null noexn)
drop
(return (i32.const 1))
)
drop
(return (i32.const 0))
)
)`).exports;
// null exceptions can be casted to nullexnref
refCastNull();
assertEq(refTestNull(), 1);
assertEq(branchNull(), 1);
assertEq(branchFailNull(), 0);
// null exceptions cannot be casted to (ref noexn)
assertErrorMessage(() => refCastNonNull(), WebAssembly.RuntimeError, /bad cast/);
assertEq(refTestNonNull(), 0);
assertEq(branchNonNull(), 0);
assertEq(branchFailNonNull(), 1);
}
|