blob: 43ba961d8eb06b406757daaf86a1f729869359ee (
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
|
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s -all -S -o - | filecheck %s
;; RUN: wasm-opt %s -all --roundtrip -S -o - | filecheck %s
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $super-struct (sub (struct (field i32))))
(type $super-struct (sub (struct i32)))
;; CHECK: (type $sub-struct (sub $super-struct (struct (field i32) (field i64))))
(type $sub-struct (sub $super-struct (struct i32 i64)))
)
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $super-array (sub (array (ref $super-struct))))
(type $super-array (sub (array (ref $super-struct))))
;; CHECK: (type $sub-array (sub $super-array (array (ref $sub-struct))))
(type $sub-array (sub $super-array (array (ref $sub-struct))))
)
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $super-func (sub (func (param (ref $sub-array)) (result (ref $super-array)))))
(type $super-func (sub (func (param (ref $sub-array)) (result (ref $super-array)))))
;; CHECK: (type $sub-func (sub $super-func (func (param (ref $super-array)) (result (ref $sub-array)))))
(type $sub-func (sub $super-func (func (param (ref $super-array)) (result (ref $sub-array)))))
)
;; CHECK: (func $make-super-struct (type $6) (result (ref $super-struct))
;; CHECK-NEXT: (call $make-sub-struct)
;; CHECK-NEXT: )
(func $make-super-struct (result (ref $super-struct))
(call $make-sub-struct)
)
;; CHECK: (func $make-sub-struct (type $7) (result (ref $sub-struct))
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $make-sub-struct (result (ref $sub-struct))
(unreachable)
)
;; CHECK: (func $make-super-array (type $8) (result (ref $super-array))
;; CHECK-NEXT: (call $make-sub-array)
;; CHECK-NEXT: )
(func $make-super-array (result (ref $super-array))
(call $make-sub-array)
)
;; CHECK: (func $make-sub-array (type $9) (result (ref $sub-array))
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $make-sub-array (result (ref $sub-array))
(unreachable)
)
;; CHECK: (func $make-super-func (type $10) (result (ref $super-func))
;; CHECK-NEXT: (call $make-sub-func)
;; CHECK-NEXT: )
(func $make-super-func (result (ref $super-func))
(call $make-sub-func)
)
;; CHECK: (func $make-sub-func (type $11) (result (ref $sub-func))
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $make-sub-func (result (ref $sub-func))
(unreachable)
)
)
|