blob: 64f6e24b75d17fd5e197c94241a91f350c98d501 (
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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
(module
(type $sig_eqref (func (param eqref)))
(type $sig_funcref (func (param funcref)))
(type $sig_anyref (func (param anyref)))
(func $take_eqref (param eqref))
(func $take_funcref (param funcref))
(func $take_anyref (param anyref))
(func $foo)
(table funcref (elem $take_eqref $take_funcref $take_anyref))
(elem declare func $ref-taken-but-not-in-table)
(import "env" "import_func" (func $import_func (param eqref) (result funcref)))
(import "env" "import_global" (global $import_global eqref))
(export "export_func" (func $import_func (param eqref) (result funcref)))
(export "export_global" (global $import_global))
;; Test global initializer expressions
(global $global_eqref (mut eqref) (ref.null eq))
(global $global_funcref (mut funcref) (ref.null func))
(global $global_funcref_func (mut funcref) (ref.func $foo))
(global $global_anyref (mut anyref) (ref.null any))
;; Test subtype relationship in global initializer expressions
(global $global_anyref2 (mut anyref) (ref.null eq))
(tag $e-i32 (param i32))
(func $test
(local $local_eqref eqref)
(local $local_funcref funcref)
(local $local_anyref anyref)
;; Test types for local.get/set
(local.set $local_eqref (local.get $local_eqref))
(local.set $local_eqref (global.get $global_eqref))
(local.set $local_eqref (ref.null eq))
(local.set $local_funcref (local.get $local_funcref))
(local.set $local_funcref (global.get $global_funcref))
(local.set $local_funcref (ref.null func))
(local.set $local_funcref (ref.func $foo))
(local.set $local_anyref (local.get $local_anyref))
(local.set $local_anyref (global.get $global_anyref))
(local.set $local_anyref (ref.null any))
;; Test subtype relationship for local.set
(local.set $local_anyref (local.get $local_eqref))
(local.set $local_anyref (global.get $global_eqref))
(local.set $local_anyref (ref.null eq))
;; Test types for global.get/set
(global.set $global_eqref (global.get $global_eqref))
(global.set $global_eqref (local.get $local_eqref))
(global.set $global_eqref (ref.null eq))
(global.set $global_funcref (global.get $global_funcref))
(global.set $global_funcref (local.get $local_funcref))
(global.set $global_funcref (ref.null func))
(global.set $global_funcref (ref.func $foo))
(global.set $global_anyref (global.get $global_anyref))
(global.set $global_anyref (local.get $local_anyref))
(global.set $global_anyref (ref.null any))
;; Test subtype relationship for global.set
(global.set $global_anyref (global.get $global_eqref))
(global.set $global_anyref (local.get $local_eqref))
(global.set $global_anyref (ref.null eq))
;; Test function call params
(call $take_eqref (local.get $local_eqref))
(call $take_eqref (global.get $global_eqref))
(call $take_eqref (ref.null eq))
(call $take_funcref (local.get $local_funcref))
(call $take_funcref (global.get $global_funcref))
(call $take_funcref (ref.null func))
(call $take_funcref (ref.func $foo))
(call $take_anyref (local.get $local_anyref))
(call $take_anyref (global.get $global_anyref))
(call $take_anyref (ref.null any))
;; Test subtype relationship for function call params
(call $take_anyref (local.get $local_eqref))
(call $take_anyref (global.get $global_eqref))
(call $take_anyref (ref.null eq))
;; Test call_indirect params
(call_indirect (type $sig_eqref) (local.get $local_eqref) (i32.const 0))
(call_indirect (type $sig_eqref) (global.get $global_eqref) (i32.const 0))
(call_indirect (type $sig_eqref) (ref.null eq) (i32.const 0))
(call_indirect (type $sig_funcref) (local.get $local_funcref) (i32.const 1))
(call_indirect (type $sig_funcref) (global.get $global_funcref) (i32.const 1))
(call_indirect (type $sig_funcref) (ref.null func) (i32.const 1))
(call_indirect (type $sig_funcref) (ref.func $foo) (i32.const 1))
(call_indirect (type $sig_anyref) (local.get $local_anyref) (i32.const 3))
(call_indirect (type $sig_anyref) (global.get $global_anyref) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.null any) (i32.const 3))
;; Test subtype relationship for call_indirect params
(call_indirect (type $sig_anyref) (local.get $local_eqref) (i32.const 3))
(call_indirect (type $sig_anyref) (global.get $global_eqref) (i32.const 3))
(call_indirect (type $sig_anyref) (ref.null eq) (i32.const 3))
;; Test block return type
(drop
(block (result eqref)
(br_if 0 (local.get $local_eqref) (i32.const 1))
)
)
(drop
(block (result eqref)
(br_if 0 (global.get $global_eqref) (i32.const 1))
)
)
(drop
(block (result eqref)
(br_if 0 (ref.null eq) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (local.get $local_funcref) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (global.get $global_funcref) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (ref.null func) (i32.const 1))
)
)
(drop
(block (result funcref)
(br_if 0 (ref.func $foo) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (local.get $local_anyref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (global.get $global_anyref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.null any) (i32.const 1))
)
)
;; Test subtype relationship for block return type
(drop
(block (result anyref)
(br_if 0 (local.get $local_eqref) (i32.const 1))
)
)
(drop
(block (result anyref)
(br_if 0 (ref.null eq) (i32.const 1))
)
)
;; Test loop return type
(drop
(loop (result eqref)
(local.get $local_eqref)
)
)
(drop
(loop (result eqref)
(global.get $global_eqref)
)
)
(drop
(loop (result eqref)
(ref.null eq)
)
)
(drop
(loop (result funcref)
(local.get $local_funcref)
)
)
(drop
(loop (result funcref)
(global.get $global_funcref)
)
)
(drop
(loop (result funcref)
(ref.null func)
)
)
(drop
(loop (result funcref)
(ref.func $foo)
)
)
(drop
(loop (result anyref)
(local.get $local_anyref)
)
)
(drop
(loop (result anyref)
(global.get $global_anyref)
)
)
(drop
(loop (result anyref)
(ref.null any)
)
)
;; Test subtype relationship for loop return type
(drop
(loop (result anyref)
(local.get $local_eqref)
)
)
(drop
(loop (result anyref)
(global.get $global_eqref)
)
)
(drop
(loop (result anyref)
(ref.null eq)
)
)
;; Test if return type
(drop
(if (result eqref)
(i32.const 1)
(local.get $local_eqref)
(ref.null eq)
)
)
(drop
(if (result funcref)
(i32.const 1)
(local.get $local_funcref)
(ref.null func)
)
)
(drop
(if (result anyref)
(i32.const 1)
(local.get $local_anyref)
(ref.null any)
)
)
;; Test subtype relationship for if return type
(drop
(if (result anyref)
(i32.const 1)
(local.get $local_eqref)
(local.get $local_eqref)
)
)
(drop
(if (result anyref)
(i32.const 1)
(ref.null eq)
(ref.null i31)
)
)
(drop
(if (result anyref)
(i32.const 1)
(i31.new
(i32.const 0)
)
(ref.null eq)
)
)
;; Test try return type
(drop
(try (result eqref)
(do
(local.get $local_eqref)
)
(catch $e-i32
(drop (pop i32))
(ref.null eq)
)
)
)
(drop
(try (result funcref)
(do
(ref.func $foo)
)
(catch $e-i32
(drop (pop i32))
(ref.null func)
)
)
)
;; Test subtype relationship for try return type
(drop
(try (result anyref)
(do
(local.get $local_eqref)
)
(catch $e-i32
(drop (pop i32))
(ref.null any)
)
)
)
(drop
(try (result anyref)
(do
(ref.null eq)
)
(catch $e-i32
(drop (pop i32))
(local.get $local_eqref)
)
)
)
;; Test typed select
(drop
(select (result eqref)
(local.get $local_eqref)
(ref.null eq)
(i32.const 1)
)
)
(drop
(select (result funcref)
(local.get $local_funcref)
(ref.null func)
(i32.const 1)
)
)
(drop
(select (result i32)
(i32.const 0)
(i32.const 2)
(i32.const 1)
)
)
;; Test subtype relationship for typed select
(drop
(select (result anyref)
(local.get $local_eqref)
(i31.new
(i32.const 0)
)
(i32.const 1)
)
)
;; ref.is_null takes any reference types
(drop (ref.is_null (local.get $local_eqref)))
(drop (ref.is_null (global.get $global_eqref)))
(drop (ref.is_null (ref.null eq)))
(drop (ref.is_null (local.get $local_funcref)))
(drop (ref.is_null (global.get $global_funcref)))
(drop (ref.is_null (ref.null func)))
(drop (ref.is_null (ref.func $foo)))
(drop (ref.is_null (local.get $local_anyref)))
(drop (ref.is_null (global.get $global_anyref)))
(drop (ref.is_null (ref.null any)))
)
;; Test function return type
(func $return_eqref_local (result eqref)
(local $local_eqref eqref)
(local.get $local_eqref)
)
(func $return_eqref_global (result eqref)
(global.get $global_eqref)
)
(func $return_eqref_null (result eqref)
(ref.null eq)
)
(func $return_funcref_local (result funcref)
(local $local_funcref funcref)
(local.get $local_funcref)
)
(func $return_funcref_global (result funcref)
(global.get $global_funcref)
)
(func $return_funcref_null (result funcref)
(ref.null func)
)
(func $return_funcref_func (result funcref)
(ref.func $foo)
)
(func $return_anyref_local (result anyref)
(local $local_anyref anyref)
(local.get $local_anyref)
)
(func $return_anyref_global (result anyref)
(global.get $global_anyref)
)
(func $return_anyref_null (result anyref)
(ref.null any)
)
;; Test subtype relationship in function return type
(func $return_anyref2 (result anyref)
(local $local_eqref eqref)
(local.get $local_eqref)
)
(func $return_anyref3 (result anyref)
(global.get $global_eqref)
)
(func $return_anyref4 (result anyref)
(ref.null eq)
)
;; Test returns
(func $returns_eqref (result eqref)
(local $local_eqref eqref)
(return (local.get $local_eqref))
(return (global.get $global_eqref))
(return (ref.null eq))
)
(func $returns_funcref (result funcref)
(local $local_funcref funcref)
(return (local.get $local_funcref))
(return (global.get $global_funcref))
(return (ref.func $foo))
(return (ref.null func))
)
(func $returns_anyref (result anyref)
(local $local_anyref anyref)
(return (local.get $local_anyref))
(return (global.get $global_anyref))
(return (ref.null any))
)
;; Test subtype relationship in returns
(func $returns_anyref2 (result anyref)
(local $local_eqref eqref)
(local $local_funcref funcref)
(return (local.get $local_eqref))
(return (global.get $global_eqref))
(return (ref.null eq))
)
(func $ref-user
(drop
;; an "elem declare func" must be emitted for this ref.func which is not
;; in the table
(ref.func $ref-taken-but-not-in-table)
)
)
(func $ref-taken-but-not-in-table)
)
|