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

(module

  ;; CHECK:      (type $shared-func (shared (func (result (ref null (shared func))))))
  (type $shared-func (shared (func (result (ref null (shared func))))))

  ;; CHECK:      (type $func (func (result funcref)))
  (type $func (func (result funcref)))

  ;; CHECK:      (type $2 (func (result (ref $shared-func))))

  ;; CHECK:      (elem declare func $test $test-shared)

  ;; CHECK:      (func $test (type $func) (result funcref)
  ;; CHECK-NEXT:  (return
  ;; CHECK-NEXT:   (ref.func $test)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $test (type $func) (result funcref)
    (block
      (return
        (ref.func $test)
      )
    )
  )

  ;; CHECK:      (func $test-shared (type $shared-func) (result (ref null (shared func)))
  ;; CHECK-NEXT:  (return
  ;; CHECK-NEXT:   (ref.func $test-shared)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $test-shared (type $shared-func)
    (block
      (return
        (ref.func $test-shared)
      )
    )
  )

  ;; CHECK:      (func $precompute-nested-brs (type $2) (result (ref $shared-func))
  ;; CHECK-NEXT:  (ref.func $test-shared)
  ;; CHECK-NEXT: )
  (func $precompute-nested-brs (result (ref $shared-func))
    ;; We have two nested brs here, and we can precompute it all. While doing so
    ;; we must not get confused between the targets and values: one sends a
    ;; shared func, the other a normal func, so the types are different, and any
    ;; mistake there will fail validation (say, if we reused the ref.func from
    ;; the inner br when generating the outer one).
    (block $shared (result (ref $shared-func))
      (drop
        (block $func (result (ref $func))
          (br_if $func
            (ref.func $test)
            (br $shared
              (ref.func $test-shared)
            )
          )
        )
      )
      (ref.func $test-shared)
    )
  )
)