blob: eda8b9cc10187c0f46927f09c415a159f8388cce (
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
|
(module
(table 1 1 anyfunc)
(elem (i32.const 0) $tabled)
(func $user (export "user")
(local $x i32)
(local $y f64)
(call $exported)
(call $tabled)
(call $multi)
(call $multi)
(call $ok)
(drop (call $int))
(drop (call $double))
(set_local $x (call $int2))
(set_local $y (call $double2))
(call $with-local)
(call $with-local2)
(drop (call $return))
(call $multipass)
(call $param (f32.const 12.34) (i64.const 890005350012))
)
(func $exported (export "exported")
(nop)
)
(func $recursive
(call $recursive)
)
(func $tabled
(nop)
)
(func $cycle1
(call $cycle2)
)
(func $cycle2
(call $cycle1)
)
(func $multi
(nop)
)
(func $ok
(drop (i32.const 1))
)
(func $int (result i32)
(i32.const 2)
)
(func $double (result f64)
(f64.const 3.14159)
)
(func $int2 (result i32)
(i32.const 112)
)
(func $double2 (result f64)
(f64.const 113.14159)
)
(func $with-local
(local $x f32)
(set_local $x (f32.const 2.141828))
)
(func $with-local2
(local $y i64)
(set_local $y (i64.const 4))
)
(func $return (result i32)
(return (i32.const 5))
)
(func $multipass
(call $multipass2)
)
(func $multipass2
(drop (i32.const 6))
)
(func $param (param $x f32) (param $y i64)
(local $z f32)
(drop (get_local $x))
(drop (get_local $y))
(drop (get_local $z))
)
)
(module
(func $child (param i32) (result i32)
(i32.const 1234)
)
(func $parent (result i32)
(call $child
(unreachable) ;; call is not performed, no sense to inline
)
)
)
(module
(global $hangLimit (mut i32) (i32.const 25))
(memory $0 1 1)
(export "hangLimitInitializer" (func $hangLimitInitializer))
(func $func_3 (result i32)
(local $0 i32)
(select
(get_local $0) ;; we depend on the zero-init value here, so it must be set when inlining!
(tee_local $0
(i32.const -1)
)
(i32.const 1)
)
)
(func $func_4 (param $0 f32) (param $1 i32) (result i32)
(local $2 i64)
(local $3 f64)
(local $4 f32)
(local $5 i32)
(local $6 i32)
(local $7 f64)
(loop $label$0 (result i32)
(block
(if
(i32.eqz
(get_global $hangLimit)
)
(return
(i32.const 54)
)
)
(set_global $hangLimit
(i32.sub
(get_global $hangLimit)
(i32.const 1)
)
)
)
(i32.eqz
(if (result i32)
(i32.const 1)
(if (result i32)
(i32.eqz
(call $func_3)
)
(br $label$0)
(i32.const 0)
)
(unreachable)
)
)
)
)
(func $hangLimitInitializer
(set_global $hangLimit
(i32.const 25)
)
)
)
(module
(type $T (func (param i32)))
(table 10 anyfunc)
(func $0
(call $1)
)
(func $1
(call_indirect (type $T)
(if (result i32) ;; if copy must preserve the forced type
(i32.const 0)
(unreachable)
(unreachable)
)
(i32.const 1)
)
)
)
(module
(func $0
(block $label$1 ;; copy this name
(br_table $label$1 $label$1
(i32.const 0)
)
)
)
(func $1
(call $0)
)
)
|