File: optimize-instructions-iit-eh-legacy.wast

package info (click to toggle)
binaryen 120-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 41,284 kB
  • sloc: cpp: 189,449; javascript: 62,189; ansic: 14,087; python: 5,379; pascal: 441; sh: 77; makefile: 30; asm: 27
file content (41 lines) | stat: -rw-r--r-- 1,398 bytes parent folder | download
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
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s --ignore-implicit-traps --optimize-instructions -all -S -o - \
;; RUN:   | filecheck %s

(module
  ;; CHECK:      (type $struct.A (struct (field i32)))
  (type $struct.A (struct i32))
  ;; CHECK:      (tag $e (param (ref null $struct.A)))
  (tag $e (param (ref null $struct.A)))

  ;; CHECK:      (func $ref-cast-statically-removed (type $2)
  ;; CHECK-NEXT:  (try
  ;; CHECK-NEXT:   (do
  ;; CHECK-NEXT:    (nop)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:   (catch $e
  ;; CHECK-NEXT:    (throw $e
  ;; CHECK-NEXT:     (pop (ref null $struct.A))
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $ref-cast-statically-removed
    (try
      (do)
      (catch $e
        (throw $e
          ;; Because --ignore-implicit-traps is given, this ref.cast null is
          ;; assumed not to throw so this ref.cast null can be statically removed.
          ;; But that creates a block around this, making 'pop' nested into it,
          ;; which is invalid. We fix this up at the end up OptimizeInstruction,
          ;; assigning the 'pop' to a local at the start of this 'catch' body
          ;; and later using 'local.get' to get it.
          (ref.cast (ref null $struct.A)
            (pop (ref null $struct.A))
          )
        )
      )
    )
  )
)