summaryrefslogtreecommitdiff
path: root/test/lit/passes/rse-eh.wast
blob: 8c26946b1ac19ccfe6ec95dcc7c012d35eafa35e (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
;; NOTE: Assertions have been generated by update_lit_checks.py --all-items and should not be edited.
;; RUN: wasm-opt %s --rse -all -S -o - | filecheck %s

(module
  ;; CHECK:      (type $0 (func))

  ;; CHECK:      (type $1 (func (result i32 exnref)))

  ;; CHECK:      (type $2 (func (param i32)))

  ;; CHECK:      (tag $e-i32 (param i32))
  (tag $e-i32 (param i32))
  ;; CHECK:      (tag $e-empty)
  (tag $e-empty)

  ;; CHECK:      (func $foo (type $0)
  ;; CHECK-NEXT: )
  (func $foo)

  ;; CHECK:      (func $try_table1 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (block $outer
  ;; CHECK-NEXT:   (block $catch_all
  ;; CHECK-NEXT:    (try_table (catch_all $catch_all)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (br $outer)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:   (local.set $x
  ;; CHECK-NEXT:    (i32.const 1)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.set $x
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $try_table1
    (local $x i32)
    (block $outer
      (block $catch_all
        (try_table (catch_all $catch_all)
        )
        (br $outer)
      )
      (local.set $x (i32.const 1))
    )
    ;; try_table will not throw. So this should NOT be dropped
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $try_table2 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (block $catch_all
  ;; CHECK-NEXT:   (try_table (catch_all $catch_all)
  ;; CHECK-NEXT:    (throw $e-i32
  ;; CHECK-NEXT:     (i32.const 0)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (local.set $x
  ;; CHECK-NEXT:     (i32.const 1)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.set $x
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $try_table2
    (local $x i32)
    (block $catch_all
      (try_table (catch_all $catch_all)
        (throw $e-i32 (i32.const 0))
        (local.set $x (i32.const 1))
      )
    )
    ;; local.set is after 'throw' so it will not run. This should NOT be
    ;; dropped.
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $try_table3 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (block $outer
  ;; CHECK-NEXT:   (block $catch_all
  ;; CHECK-NEXT:    (try_table (catch_all $catch_all)
  ;; CHECK-NEXT:     (call $foo)
  ;; CHECK-NEXT:     (local.set $x
  ;; CHECK-NEXT:      (i32.const 1)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (br $outer)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.set $x
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $try_table3
    (local $x i32)
    (block $outer
      (block $catch_all
        (try_table (catch_all $catch_all)
          (call $foo)
          (local.set $x (i32.const 1))
        )
        (br $outer)
      )
    )
    ;; (call $foo) may throw and the local.set may not run, so this should NOT
    ;; be dropped
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $try_table4 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (block $outer
  ;; CHECK-NEXT:   (block $catch_all
  ;; CHECK-NEXT:    (try_table (catch_all $catch_all)
  ;; CHECK-NEXT:     (local.set $x
  ;; CHECK-NEXT:      (i32.const 1)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:     (call $foo)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (br $outer)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $try_table4
    (local $x i32)
    (block $outer
      (block $catch_all
        (try_table (catch_all $catch_all)
          (local.set $x (i32.const 1))
          (call $foo)
        )
        (br $outer)
      )
    )
    ;; Even if (call $foo) throws, local.set runs before it, so this should be
    ;; dropped
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $nested-try_table1 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (local $exn exnref)
  ;; CHECK-NEXT:  (block $catch_all0
  ;; CHECK-NEXT:   (try_table (catch_all $catch_all0)
  ;; CHECK-NEXT:    (local.set $exn
  ;; CHECK-NEXT:     (block $catch_all_ref1 (result exnref)
  ;; CHECK-NEXT:      (try_table (catch_all_ref $catch_all_ref1)
  ;; CHECK-NEXT:       (throw $e-i32
  ;; CHECK-NEXT:        (i32.const 0)
  ;; CHECK-NEXT:       )
  ;; CHECK-NEXT:      )
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (local.set $x
  ;; CHECK-NEXT:     (i32.const 1)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (throw_ref
  ;; CHECK-NEXT:     (local.get $exn)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $nested-try_table1
    (local $x i32)
    (local $exn exnref)
    (block $catch_all0
      (try_table (catch_all $catch_all0)
        (local.set $exn
          (block $catch_all_ref1 (result exnref)
            (try_table (catch_all_ref $catch_all_ref1)
              (throw $e-i32 (i32.const 0))
            )
          )
        )
        (local.set $x (i32.const 1))
        (throw_ref (local.get $exn))
      )
    )
    ;; The exception is caught by the inner catch_all_ref, which runs the
    ;; local.set, so this should be dropped
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $nested-try_table2 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (local $exn exnref)
  ;; CHECK-NEXT:  (local $pair (tuple i32 exnref))
  ;; CHECK-NEXT:  (block $catch_all0
  ;; CHECK-NEXT:   (try_table (catch_all $catch_all0)
  ;; CHECK-NEXT:    (local.set $pair
  ;; CHECK-NEXT:     (block $catch1 (type $1) (result i32 exnref)
  ;; CHECK-NEXT:      (try_table (catch_ref $e-i32 $catch1)
  ;; CHECK-NEXT:       (throw $e-i32
  ;; CHECK-NEXT:        (i32.const 0)
  ;; CHECK-NEXT:       )
  ;; CHECK-NEXT:      )
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (local.set $exn
  ;; CHECK-NEXT:     (tuple.extract 2 1
  ;; CHECK-NEXT:      (local.get $pair)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (local.set $x
  ;; CHECK-NEXT:     (i32.const 1)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (throw_ref
  ;; CHECK-NEXT:     (local.get $exn)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.set $x
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $nested-try_table2
    (local $x i32)
    (local $exn exnref)
    (local $pair (tuple i32 exnref))
    (block $catch_all0
      (try_table (catch_all $catch_all0)
        (local.set $pair
          (block $catch1 (result i32 exnref)
            (try_table (catch_ref $e-i32 $catch1)
              (throw $e-i32 (i32.const 0))
            )
          )
        )
        (local.set $exn
          (tuple.extract 2 1 (local.get $pair))
        )
        (local.set $x (i32.const 1))
        (throw_ref (local.get $exn))
      )
    )
    ;; Unlike nested-try_table1, the exception may not be caught by the inner
    ;; catch, so the local.set may not run. So this should NOT be dropped.
    ;; TODO This actually can be removed if we analyze tags in CFGWalker,
    ;; because we throw an i32 and catch an i32 too in the inner try_table. Add
    ;; this to the analysis.
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $nested-try_table3 (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (local $exn exnref)
  ;; CHECK-NEXT:  (local $pair (tuple i32 exnref))
  ;; CHECK-NEXT:  (block $catch_all0
  ;; CHECK-NEXT:   (try_table (catch_all $catch_all0)
  ;; CHECK-NEXT:    (block $outer1
  ;; CHECK-NEXT:     (local.set $pair
  ;; CHECK-NEXT:      (block $catch1 (type $1) (result i32 exnref)
  ;; CHECK-NEXT:       (try_table (catch_ref $e-i32 $catch1)
  ;; CHECK-NEXT:        (call $foo)
  ;; CHECK-NEXT:       )
  ;; CHECK-NEXT:       (br $outer1)
  ;; CHECK-NEXT:      )
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:     (local.set $exn
  ;; CHECK-NEXT:      (tuple.extract 2 1
  ;; CHECK-NEXT:       (local.get $pair)
  ;; CHECK-NEXT:      )
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:     (local.set $x
  ;; CHECK-NEXT:      (i32.const 1)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:     (throw_ref
  ;; CHECK-NEXT:      (local.get $exn)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.set $x
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $nested-try_table3
    (local $x i32)
    (local $exn exnref)
    (local $pair (tuple i32 exnref))
    (block $catch_all0
      (try_table (catch_all $catch_all0)
        (block $outer1
          (local.set $pair
            (block $catch1 (result i32 exnref)
              (try_table (catch_ref $e-i32 $catch1)
                (call $foo)
              )
              (br $outer1)
            )
          )
          (local.set $exn
            (tuple.extract 2 1 (local.get $pair))
          )
          (local.set $x (i32.const 1))
          (throw_ref (local.get $exn))
        )
      )
    )
    ;; Unlike nested-try_table1, the exception may not be caught by the inner
    ;; catch, so the local.set may not run. So this should NOT be dropped.
    ;; Unlike nested-try_table2, In this case we don't know what (call $foo)
    ;; will throw, so we can't drop this even if we analyze tags.
    (local.set $x (i32.const 1))
  )

  ;; CHECK:      (func $catchless-try_table (type $0)
  ;; CHECK-NEXT:  (local $x i32)
  ;; CHECK-NEXT:  (try_table
  ;; CHECK-NEXT:   (call $foo)
  ;; CHECK-NEXT:   (local.set $x
  ;; CHECK-NEXT:    (i32.const 1)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $catchless-try_table
    (local $x i32)
    (try_table
      (call $foo)
      (local.set $x (i32.const 1))
    )
    ;; The only way we end up here is when (call $foo) does not throw, because
    ;; if (call $foo) throws, it will throw to the caller because it is within
    ;; a catchless try_table. In that case the local.set after (call $foo) would
    ;; have run before this, so this can be dropped.
    (local.set $x (i32.const 1))
  )
)