blob: 805d5d07e511c87a630d64a3e6267ee1988bc759 (
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
|
;; 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 -g -S -o - | filecheck %s --check-prefix=RTRIP
(module
(rec
;; CHECK: (rec
;; CHECK-NEXT: (type $f1 (func (result (ref $f1) (ref $f2))))
;; RTRIP: (rec
;; RTRIP-NEXT: (type $f1 (func (result (ref $f1) (ref $f2))))
(type $f1 (func (result (ref $f1) (ref $f2))))
;; CHECK: (type $f2 (func (result (ref $f2) (ref $f1))))
;; RTRIP: (type $f2 (func (result (ref $f2) (ref $f1))))
(type $f2 (func (result (ref $f2) (ref $f1))))
)
;; These types will be optimized out.
(type $block1 (func (result (ref $f1) (ref $f2))))
(type $block2 (func (result (ref $f2) (ref $f1))))
;; CHECK: (func $f1 (type $f1) (result (ref $f1) (ref $f2))
;; CHECK-NEXT: (loop $l (type $f1) (result (ref $f1) (ref $f2))
;; CHECK-NEXT: (call $f1)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; RTRIP: (func $f1 (type $f1) (result (ref $f1) (ref $f2))
;; RTRIP-NEXT: (loop (type $f1) (result (ref $f1) (ref $f2))
;; RTRIP-NEXT: (call $f1)
;; RTRIP-NEXT: )
;; RTRIP-NEXT: )
(func $f1 (type $f1) (result (ref $f1) (ref $f2))
;; This block will be emitted with type $f1
(loop $l (type $block1) (result (ref $f1) (ref $f2))
(call $f1)
)
)
;; CHECK: (func $f2 (type $f2) (result (ref $f2) (ref $f1))
;; CHECK-NEXT: (loop $l (type $f2) (result (ref $f2) (ref $f1))
;; CHECK-NEXT: (call $f2)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; RTRIP: (func $f2 (type $f2) (result (ref $f2) (ref $f1))
;; RTRIP-NEXT: (loop (type $f2) (result (ref $f2) (ref $f1))
;; RTRIP-NEXT: (call $f2)
;; RTRIP-NEXT: )
;; RTRIP-NEXT: )
(func $f2 (type $f2) (result (ref $f2) (ref $f1))
;; This block will be emitted with type $f2
(loop $l (type $block2) (result (ref $f2) (ref $f1))
(call $f2)
)
)
)
|