blob: 3483d1c9de3ef6968ff3e654ea50846fd43e0a5b (
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: foreach %s %t wasm-opt -all --minimize-rec-groups -S -o - | filecheck %s
;; A module with no heap types at all should be ok.
(module
;; CHECK: (global $g i32 (i32.const 0))
(global $g i32 (i32.const 0))
)
;; A module with a single heap type should be ok.
(module
;; CHECK: (type $t (struct))
(type $t (struct))
;; CHECK: (global $g (ref null $t) (ref.null none))
(global $g (ref null $t) (ref.null none))
)
;; Split a rec group containing independent types
(module
(rec
;; CHECK: (type $a (struct (field i32)))
(type $a (struct (field i32)))
;; CHECK: (type $b (struct (field i64)))
(type $b (struct (field i64)))
;; CHECK: (type $c (struct (field f32)))
(type $c (struct (field f32)))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
)
;; Split a rec group containing types that depend on each other but belong to
;; different SCCs.
(module
(rec
;; CHECK: (type $a (struct))
(type $a (struct))
;; CHECK: (type $b (struct (field (ref $a))))
(type $b (struct (field (ref $a))))
;; CHECK: (type $c (struct (field (ref $b))))
(type $c (struct (field (ref $b))))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
)
;; Reverse the order of the previous case. The output should still be in a valid
;; order.
(module
(rec
;; CHECK: (type $a (struct))
;; CHECK: (type $b (struct (field (ref $a))))
;; CHECK: (type $c (struct (field (ref $b))))
(type $c (struct (field (ref $b))))
(type $b (struct (field (ref $a))))
(type $a (struct))
)
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
)
;; Now all the types are in the same SCC.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $c (struct (field (ref $a))))
;; CHECK: (type $b (struct (field (ref $c))))
;; CHECK: (type $a (struct (field (ref $b))))
(type $a (struct (field (ref $b))))
(type $b (struct (field (ref $c))))
(type $c (struct (field (ref $a))))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
)
;; Only two of the types are in the same SCC.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $b (struct (field (ref $a))))
;; CHECK: (type $a (struct (field (ref $b))))
(type $a (struct (field (ref $b))))
(type $b (struct (field (ref $a))))
;; CHECK: (type $c (struct (field (ref $a))))
(type $c (struct (field (ref $a))))
)
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
)
;; Same, but change which two are in the SCC. The output order should still be
;; valid.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $c (struct (field (ref $b))))
;; CHECK: (type $b (struct (field (ref $c))))
;; CHECK: (type $a (struct (field (ref $b))))
(type $a (struct (field (ref $b))))
(type $b (struct (field (ref $c))))
(type $c (struct (field (ref $b))))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
)
;; Two types that are in conflicting SCCs should be disambiguated. In this case
;; there are no different permutations, so we use a brand.
(module
(rec
;; CHECK: (type $a (func))
(type $a (func))
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (struct))
;; CHECK: (type $b (func))
(type $b (func))
)
;; CHECK: (global $a (ref null $a) (ref.null nofunc))
(global $a (ref null $a) (ref.null nofunc))
;; CHECK: (global $b (ref null $b) (ref.null nofunc))
(global $b (ref null $b) (ref.null nofunc))
)
;; Same as above, but now the types match the initial brand, so we have to skip
;; to the next one.
(module
(rec
;; CHECK: (type $a (struct))
(type $a (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (array (mut i8)))
;; CHECK: (type $b (struct))
(type $b (struct))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
)
;; Now we have groups that match both the initial brand and the next one, so
;; adding the brand will cause a conflict. We will have to go to the next brand.
(module
(rec
;; CHECK: (type $a1 (struct))
(type $a1 (struct))
;; CHECK: (type $b1 (array (mut i8)))
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (array (mut i8)))
;; CHECK: (type $a2 (struct))
(type $a2 (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $a3 (struct))
(type $a3 (struct))
(type $b1 (array (mut i8)))
;; CHECK: (type $5 (array (mut i8)))
;; CHECK: (rec
;; CHECK-NEXT: (type $6 (array i8))
;; CHECK: (type $b2 (array (mut i8)))
(type $b2 (array (mut i8)))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
;; CHECK: (global $a3 (ref null $a3) (ref.null none))
(global $a3 (ref null $a3) (ref.null none))
;; CHECK: (global $b1 (ref null $b1) (ref.null none))
(global $b1 (ref null $b1) (ref.null none))
;; CHECK: (global $b2 (ref null $b2) (ref.null none))
(global $b2 (ref null $b2) (ref.null none))
)
;; Now the types have more fields, including one referring to a previous SCC.
(module
(rec
;; CHECK: (type $other (struct (field i32)))
(type $other (struct (field i32)))
;; CHECK: (type $a (struct (field anyref) (field i32) (field (ref $other))))
(type $a (struct (field anyref i32 (ref $other))))
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (struct))
;; CHECK: (type $b (struct (field anyref) (field i32) (field (ref $other))))
(type $b (struct (field anyref i32 (ref $other))))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
)
;; Now there is a third type and we can disambiguate it by using a different
;; permutation with the same brand.
(module
(rec
;; CHECK: (type $a (struct))
(type $a (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (array (mut i8)))
;; CHECK: (type $b (struct))
(type $b (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $c (struct))
(type $c (struct))
)
;; CHECK: (type $4 (array (mut i8)))
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
)
;; Adding a fourth type requires using yet another brand.
(module
(rec
;; CHECK: (type $a (struct))
(type $a (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (array (mut i8)))
;; CHECK: (type $b (struct))
(type $b (struct))
;; CHECK: (rec
;; CHECK-NEXT: (type $c (struct))
(type $c (struct))
;; CHECK: (type $4 (array (mut i8)))
;; CHECK: (rec
;; CHECK-NEXT: (type $5 (array i8))
;; CHECK: (type $d (struct))
(type $d (struct))
)
;; CHECK: (global $a (ref null $a) (ref.null none))
(global $a (ref null $a) (ref.null none))
;; CHECK: (global $b (ref null $b) (ref.null none))
(global $b (ref null $b) (ref.null none))
;; CHECK: (global $c (ref null $c) (ref.null none))
(global $c (ref null $c) (ref.null none))
;; CHECK: (global $d (ref null $d) (ref.null none))
(global $d (ref null $d) (ref.null none))
)
;; After $a1 and $a2 are dismabiguated with a brand, $b1 and $b2 require no
;; further disambiguation.
(module
(rec
;; CHECK: (type $a1 (struct))
(type $a1 (struct))
;; CHECK: (type $b1 (struct (field (ref $a1))))
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (array (mut i8)))
;; CHECK: (type $a2 (struct))
(type $a2 (struct))
(type $b1 (struct (field (ref $a1))))
;; CHECK: (type $b2 (struct (field (ref $a2))))
(type $b2 (struct (field (ref $a2))))
)
;; CHECK: (global $b1 (ref null $b1) (ref.null none))
(global $b1 (ref null $b1) (ref.null none))
;; CHECK: (global $b2 (ref null $b2) (ref.null none))
(global $b2 (ref null $b2) (ref.null none))
)
;; Now we can disambiguate by permuting without a brand.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $b1 (struct (field (ref $a1))))
;; CHECK: (type $a1 (struct (field (ref $b1)) (field i32)))
(type $a1 (struct (field (ref $b1) i32)))
(type $b1 (struct (field (ref $a1))))
;; CHECK: (rec
;; CHECK-NEXT: (type $a2 (struct (field (ref $b2)) (field i32)))
(type $a2 (struct (field (ref $b2) i32)))
;; CHECK: (type $b2 (struct (field (ref $a2))))
(type $b2 (struct (field (ref $a2))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
)
;; But when we run out of permutations, we need a brand again.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $b1 (struct (field (ref $a1))))
;; CHECK: (type $a1 (struct (field (ref $b1)) (field i32)))
(type $a1 (struct (field (ref $b1) i32)))
(type $b1 (struct (field (ref $a1))))
;; CHECK: (rec
;; CHECK-NEXT: (type $a2 (struct (field (ref $b2)) (field i32)))
(type $a2 (struct (field (ref $b2) i32)))
;; CHECK: (type $b2 (struct (field (ref $a2))))
(type $b2 (struct (field (ref $a2))))
;; CHECK: (rec
;; CHECK-NEXT: (type $4 (struct))
;; CHECK: (type $b3 (struct (field (ref $a3))))
;; CHECK: (type $a3 (struct (field (ref $b3)) (field i32)))
(type $a3 (struct (field (ref $b3) i32)))
(type $b3 (struct (field (ref $a3))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
;; CHECK: (global $a3 (ref null $a3) (ref.null none))
(global $a3 (ref null $a3) (ref.null none))
)
;; Same as above, except the middle global now refers to $b2 instead of $a2,
;; changing the initial order of types in the middle SCC. We arrive at the same
;; result by a different path.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $b1 (struct (field (ref $a1))))
;; CHECK: (type $a1 (struct (field (ref $b1)) (field i32)))
(type $a1 (struct (field (ref $b1) i32)))
(type $b1 (struct (field (ref $a1))))
;; CHECK: (rec
;; CHECK-NEXT: (type $a2 (struct (field (ref $b2)) (field i32)))
(type $a2 (struct (field (ref $b2) i32)))
;; CHECK: (type $b2 (struct (field (ref $a2))))
(type $b2 (struct (field (ref $a2))))
;; CHECK: (rec
;; CHECK-NEXT: (type $4 (struct))
;; CHECK: (type $b3 (struct (field (ref $a3))))
;; CHECK: (type $a3 (struct (field (ref $b3)) (field i32)))
(type $a3 (struct (field (ref $b3) i32)))
(type $b3 (struct (field (ref $a3))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $b2 (ref null $b2) (ref.null none))
(global $b2 (ref null $b2) (ref.null none))
;; CHECK: (global $a3 (ref null $a3) (ref.null none))
(global $a3 (ref null $a3) (ref.null none))
)
;; Now we can't differentiate by permutation because of automorphisms.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $b1 (struct (field (ref $a1))))
;; CHECK: (type $a1 (struct (field (ref $b1))))
(type $a1 (struct (field (ref $b1))))
(type $b1 (struct (field (ref $a1))))
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (struct))
;; CHECK: (type $b2 (struct (field (ref $a2))))
;; CHECK: (type $a2 (struct (field (ref $b2))))
(type $a2 (struct (field (ref $b2))))
(type $b2 (struct (field (ref $a2))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
)
;; Now we can't differentiate by permutation because the subtyping constraint
;; admits only one ordering.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $a1 (sub (struct (field (ref $b1)))))
(type $a1 (sub (struct (field (ref $b1)))))
;; CHECK: (type $b1 (sub $a1 (struct (field (ref $b1)))))
(type $b1 (sub $a1 (struct (field (ref $b1)))))
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (struct))
;; CHECK: (type $a2 (sub (struct (field (ref $b2)))))
(type $a2 (sub (struct (field (ref $b2)))))
;; CHECK: (type $b2 (sub $a2 (struct (field (ref $b2)))))
(type $b2 (sub $a2 (struct (field (ref $b2)))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
)
;; Now there are only two possible orderings admitted by the subtyping
;; constraint.
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $a1 (sub (struct (field (ref $b1)))))
(type $a1 (sub (struct (field (ref $b1)))))
;; CHECK: (type $c1 (sub $a1 (struct (field (ref $b1)))))
;; CHECK: (type $b1 (sub $a1 (struct (field (ref $b1)) (field (ref $c1)))))
(type $b1 (sub $a1 (struct (field (ref $b1)) (ref $c1))))
(type $c1 (sub $a1 (struct (field (ref $b1)))))
;; CHECK: (rec
;; CHECK-NEXT: (type $a2 (sub (struct (field (ref $b2)))))
(type $a2 (sub (struct (field (ref $b2)))))
;; CHECK: (type $b2 (sub $a2 (struct (field (ref $b2)) (field (ref $c2)))))
(type $b2 (sub $a2 (struct (field (ref $b2)) (ref $c2))))
;; CHECK: (type $c2 (sub $a2 (struct (field (ref $b2)))))
(type $c2 (sub $a2 (struct (field (ref $b2)))))
;; CHECK: (rec
;; CHECK-NEXT: (type $6 (struct))
;; CHECK: (type $a3 (sub (struct (field (ref $b3)))))
(type $a3 (sub (struct (field (ref $b3)))))
;; CHECK: (type $c3 (sub $a3 (struct (field (ref $b3)))))
;; CHECK: (type $b3 (sub $a3 (struct (field (ref $b3)) (field (ref $c3)))))
(type $b3 (sub $a3 (struct (field (ref $b3)) (ref $c3))))
(type $c3 (sub $a3 (struct (field (ref $b3)))))
)
;; CHECK: (global $a1 (ref null $a1) (ref.null none))
(global $a1 (ref null $a1) (ref.null none))
;; CHECK: (global $a2 (ref null $a2) (ref.null none))
(global $a2 (ref null $a2) (ref.null none))
;; CHECK: (global $a3 (ref null $a3) (ref.null none))
(global $a3 (ref null $a3) (ref.null none))
)
;; We must avoid conflicts with public types.
(module
;; CHECK: (type $public (struct))
(type $public (struct))
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $1 (array (mut i8)))
;; CHECK: (type $private (struct))
(type $private (struct))
(type $other (struct (field (ref null $private))))
)
;; CHECK: (global $public (ref null $public) (ref.null none))
(global $public (export "g") (ref null $public) (ref.null none))
;; CHECK: (global $private (ref null $private) (ref.null none))
(global $private (ref null $private) (ref.null none))
)
;; Same as above, but now the public types are more complicated.
;; CHECK: (export "g" (global $public))
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $publicA (struct (field (ref null $publicB))))
(type $publicA (struct (field (ref null $publicB))))
;; CHECK: (type $publicB (struct (field (ref null $publicA))))
(type $publicB (struct (field (ref null $publicA))))
)
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $2 (struct))
;; CHECK: (type $privateB (struct (field (ref null $privateA))))
;; CHECK: (type $privateA (struct (field (ref null $privateB))))
(type $privateA (struct (field (ref null $privateB))))
(type $privateB (struct (field (ref null $privateA))))
(type $other (struct (field i32)))
)
;; CHECK: (global $public (ref null $publicA) (ref.null none))
(global $public (export "g") (ref null $publicA) (ref.null none))
;; CHECK: (global $private (ref null $privateA) (ref.null none))
(global $private (ref null $privateA) (ref.null none))
)
;; Now the conflict with the public type does not arise until we try to resolve
;; a conflict between the private types.
;; CHECK: (export "g" (global $public))
(module
(rec
;; CHECK: (type $privateA (struct (field i32) (field i64)))
;; CHECK: (rec
;; CHECK-NEXT: (type $publicBrand (struct))
(type $publicBrand (struct))
;; CHECK: (type $public (struct (field i32) (field i64)))
(type $public (struct (field i32 i64)))
)
(rec
(type $privateA (struct (field i32 i64)))
;; CHECK: (rec
;; CHECK-NEXT: (type $privateB (struct (field i32) (field i64)))
(type $privateB (struct (field i32 i64)))
)
;; CHECK: (type $4 (struct))
;; CHECK: (global $public (ref null $public) (ref.null none))
(global $public (export "g") (ref null $public) (ref.null none))
;; CHECK: (global $privateA (ref null $privateA) (ref.null none))
(global $privateA (ref null $privateA) (ref.null none))
;; CHECK: (global $privateB (ref null $privateB) (ref.null none))
(global $privateB (ref null $privateB) (ref.null none))
)
;; CHECK: (export "g" (global $public))
|