summaryrefslogtreecommitdiff
path: root/test/lit/passes/simplify-globals-gc.wast
blob: a24f769d2585240b413b40d370d408e3dcfa76b5 (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
;; 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 --simplify-globals -all -S -o - | filecheck %s

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

 ;; CHECK:      (global $global$0 funcref (ref.func $func))
 (global $global$0 (mut funcref) (ref.func $func))

 ;; CHECK:      (elem declare func $func)

 ;; CHECK:      (func $func (type $A)
 ;; CHECK-NEXT:  (drop
 ;; CHECK-NEXT:   (ref.cast (ref $A)
 ;; CHECK-NEXT:    (ref.func $func)
 ;; CHECK-NEXT:   )
 ;; CHECK-NEXT:  )
 ;; CHECK-NEXT: )
 (func $func
  (drop
   (ref.cast (ref null $A)
    ;; This global can be replaced with a ref.func of $func. That has a more
    ;; refined type, so we should refinalize (if we do not, then the ref.cast
    ;; will fail to validate as it must become a non-nullable cast).
    (global.get $global$0)
   )
  )
 )
)

(module
 ;; CHECK:      (type $struct (struct))
 (type $struct (struct ))

 ;; CHECK:      (type $1 (func (result anyref)))

 ;; CHECK:      (global $a (ref $struct) (struct.new_default $struct))
 (global $a (ref $struct) (struct.new_default $struct))
 ;; CHECK:      (global $b (ref $struct) (global.get $a))
 (global $b (ref $struct) (global.get $a))
 ;; CHECK:      (global $c (ref null $struct) (global.get $a))
 (global $c (ref null $struct) (global.get $a))

 ;; CHECK:      (func $get-c (type $1) (result anyref)
 ;; CHECK-NEXT:  (global.get $c)
 ;; CHECK-NEXT: )
 (func $get-c (result anyref)
  ;; $c has a less-refined type than the other two. We do not switch this to
  ;; get from either $a or $b because of that, but we could if we also
  ;; refinalized TODO
  (global.get $c)
 )
)