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

(module
  ;; CHECK:      (func $br_on (type $0)
  ;; CHECK-NEXT:  (local $x funcref)
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (block $out (result (ref func))
  ;; CHECK-NEXT:    (drop
  ;; CHECK-NEXT:     (br_on_cast $out nullfuncref (ref nofunc)
  ;; CHECK-NEXT:      (ref.null nofunc)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (local.set $x
  ;; CHECK-NEXT:     (ref.func $br_on)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (drop
  ;; CHECK-NEXT:     (local.get $x)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (ref.func $br_on)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $br_on
    (local $x (ref null func))
    (drop
      (block $out (result (ref func))
        ;; We can push the local.set past the br_on.
        (local.set $x (ref.func $br_on))
        (drop
          (br_on_cast $out funcref (ref func)
            (ref.null nofunc)
          )
        )
        (drop
          (local.get $x)
        )
        (ref.func $br_on)
      )
    )
  )

  ;; CHECK:      (func $br_on_no (type $0)
  ;; CHECK-NEXT:  (local $x funcref)
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (block $out (result (ref func))
  ;; CHECK-NEXT:    (local.set $x
  ;; CHECK-NEXT:     (ref.func $br_on_no)
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (drop
  ;; CHECK-NEXT:     (br_on_cast $out nullfuncref (ref nofunc)
  ;; CHECK-NEXT:      (ref.null nofunc)
  ;; CHECK-NEXT:     )
  ;; CHECK-NEXT:    )
  ;; CHECK-NEXT:    (ref.func $br_on_no)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (local.get $x)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $br_on_no
    (local $x (ref null func))
    ;; We can't push here since the local.get is outside of the block.
    (drop
      (block $out (result (ref func))
        (local.set $x (ref.func $br_on_no))
        (drop
          (br_on_cast $out funcref (ref func)
            (ref.null nofunc)
          )
        )
        (ref.func $br_on_no)
      )
    )
    (drop
      (local.get $x)
    )
  )
)