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
|
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; NOTE: This test was ported using port_passes_tests_to_lit.py and could be cleaned up.
;; RUN: foreach %s %t wasm-opt --remove-unused-brs --all-features -S -o - | filecheck %s
(module
;; CHECK: (type $vector (array (mut i32)))
(type $vector (array (mut i32)))
;; CHECK: (type $struct (struct (field (ref null $vector))))
(type $struct (struct (field (ref null $vector))))
;; CHECK: (type $2 (func (param i32)))
;; CHECK: (type $3 (func (result (ref null $struct))))
;; CHECK: (type $4 (func (result f64)))
;; CHECK: (type $5 (func (result i32)))
;; CHECK: (type $6 (func (param i32) (result funcref)))
;; CHECK: (type $7 (func (param funcref)))
;; CHECK: (type $8 (func))
;; CHECK: (type $9 (func (param funcref) (result funcref)))
;; CHECK: (type $10 (func (result funcref)))
;; CHECK: (import "out" "log" (func $log (type $2) (param i32)))
(import "out" "log" (func $log (param i32)))
;; CHECK: (elem declare func $br_on_non_null $br_on_null $i32_=>_none $none_=>_i32)
;; CHECK: (func $foo (type $3) (result (ref null $struct))
;; CHECK-NEXT: (if (result (ref null $struct))
;; CHECK-NEXT: (i32.const 1)
;; CHECK-NEXT: (then
;; CHECK-NEXT: (struct.new $struct
;; CHECK-NEXT: (array.new_default $vector
;; CHECK-NEXT: (i32.const 1)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (else
;; CHECK-NEXT: (ref.null none)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $foo (result (ref null $struct))
(if (result (ref null $struct))
(i32.const 1)
(then
(struct.new $struct
;; regression test for computing the cost of an array.new_default, which
;; lacks the optional field "init"
(array.new_default $vector
(i32.const 1)
)
)
)
(else
(ref.null $struct)
)
)
)
;; CHECK: (func $test-prefinalize (type $4) (result f64)
;; CHECK-NEXT: (loop $loop (result f64)
;; CHECK-NEXT: (if (result f64)
;; CHECK-NEXT: (i32.const 1)
;; CHECK-NEXT: (then
;; CHECK-NEXT: (f64.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: (else
;; CHECK-NEXT: (block $block (result f64)
;; CHECK-NEXT: (nop)
;; CHECK-NEXT: (br_if $loop
;; CHECK-NEXT: (i32.eqz
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $test-prefinalize (result f64)
(loop $loop (result f64)
(block $block (result f64)
(drop
(br_if $block
(f64.const 0)
(i32.const 1)
)
)
(if
(i32.const 0)
(then
(unreachable)
)
)
;; this will be moved from $block into the if right before it. we must be
;; careful to properly finalize() things, as if we finalize the block too
;; early - before the if - then the block ends in a none type, which is
;; invalid.
(br $loop)
)
)
)
;; CHECK: (func $none_=>_i32 (type $5) (result i32)
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
(func $none_=>_i32 (result i32)
(unreachable)
)
;; CHECK: (func $i32_=>_none (type $2) (param $0 i32)
;; CHECK-NEXT: )
(func $i32_=>_none (param i32)
)
;; CHECK: (func $selectify (type $6) (param $x i32) (result funcref)
;; CHECK-NEXT: (select (result (ref func))
;; CHECK-NEXT: (ref.func $none_=>_i32)
;; CHECK-NEXT: (ref.func $i32_=>_none)
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $selectify (param $x i32) (result funcref)
;; this if has arms with different function types, for which funcref is the
;; LUB
(if (result funcref)
(local.get $x)
(then
(ref.func $none_=>_i32)
)
(else
(ref.func $i32_=>_none)
)
)
)
;; CHECK: (func $br_on_null (type $7) (param $x funcref)
;; CHECK-NEXT: (block $null
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (block
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.null nofunc)
;; CHECK-NEXT: )
;; CHECK-NEXT: (br $null)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.func $br_on_null)
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (br_on_null $null
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $br_on_null (param $x funcref)
(block $null
;; A null reference to bottom is definitely null, and the br is always taken.
(drop
(br_on_null $null (ref.null nofunc))
)
;; On the other hand, if we know the input is not null, the branch will never
;; be taken.
(drop
(br_on_null $null (ref.func $br_on_null))
)
;; If we don't know whether the input is null, we can't optimize.
(drop
(br_on_null $null (local.get $x))
)
)
)
;; CHECK: (func $br_on_null-fallthrough (type $8)
;; CHECK-NEXT: (local $x funcref)
;; CHECK-NEXT: (block $null
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (block
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (local.tee $x
;; CHECK-NEXT: (ref.null nofunc)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (br $null)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.as_non_null
;; CHECK-NEXT: (local.tee $x
;; CHECK-NEXT: (ref.func $br_on_null)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $br_on_null-fallthrough
;; This is the same as above, but now the necessary type information comes
;; from fallthrough values.
(local $x funcref)
(block $null
;; Definitely taken.
(drop
(br_on_null $null (local.tee $x (ref.null nofunc)))
)
;; Definitely not taken. Optimizable, but still requires a cast for validity.
(drop
(br_on_null $null (local.tee $x (ref.func $br_on_null)))
)
)
)
;; CHECK: (func $br_on_non_null (type $9) (param $x funcref) (result funcref)
;; CHECK-NEXT: (block $non-null (result (ref func))
;; CHECK-NEXT: (br $non-null
;; CHECK-NEXT: (ref.func $br_on_non_null)
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (ref.null nofunc)
;; CHECK-NEXT: )
;; CHECK-NEXT: (br_on_non_null $non-null
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $br_on_non_null (param $x funcref) (result funcref)
(block $non-null (result (ref func))
;; A non-null reference is not null, and the br is always taken.
(br_on_non_null $non-null
(ref.func $br_on_non_null)
)
;; On the other hand, if we know the input is null, the branch will never be
;; taken.
(br_on_non_null $non-null
(ref.null nofunc)
)
;; If we don't know whether the input is null, we can't optimize.
(br_on_non_null $non-null
(local.get $x)
)
(unreachable)
)
)
;; CHECK: (func $br_on_non_null-fallthrough (type $10) (result funcref)
;; CHECK-NEXT: (local $x funcref)
;; CHECK-NEXT: (block $non-null (result (ref func))
;; CHECK-NEXT: (br $non-null
;; CHECK-NEXT: (ref.as_non_null
;; CHECK-NEXT: (local.tee $x
;; CHECK-NEXT: (ref.func $br_on_non_null)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (local.tee $x
;; CHECK-NEXT: (ref.null nofunc)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $br_on_non_null-fallthrough (result funcref)
;; Same as above, but now using fallthrough values.
(local $x funcref)
(block $non-null (result (ref func))
;; Definitely taken. Requires cast.
(br_on_non_null $non-null
(local.tee $x (ref.func $br_on_non_null))
)
;; Definitely not taken.
(br_on_non_null $non-null
(local.tee $x (ref.null nofunc))
)
(unreachable)
)
)
)
|