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

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

  ;; CHECK:      (global $foo (mut (ref string)) (string.const "foo"))
  (global $foo (mut (ref string)) (string.const "foo"))

  ;; CHECK:      (global $bar (mut (ref string)) (string.const "bar"))
  (global $bar (mut (ref string)) (string.const "bar"))

  ;; CHECK:      (global $baz (mut (ref string)) (string.const "baz"))
  (global $baz (mut (ref string)) (string.const "baz"))

  ;; CHECK:      (func $set (type $0)
  ;; CHECK-NEXT:  (global.set $foo
  ;; CHECK-NEXT:   (string.const "foo")
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (global.set $bar
  ;; CHECK-NEXT:   (string.const "BAR_BAR_BAR")
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $set
    ;; Modify $foo to the same value as it begins.
    (global.set $foo
      (string.const "foo")
    )
    ;; Modify $bar to a new value
    (global.set $bar
      (string.const "BAR_BAR_BAR")
    )
    ;; Do not modify $baz at all.
  )

  ;; CHECK:      (func $get (type $0)
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (string.const "foo")
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (global.get $bar)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (string.const "baz")
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $get
    ;; $foo and $baz can be optimized, but not $bar.
    (drop
      (global.get $foo)
    )
    (drop
      (global.get $bar)
    )
    (drop
      (global.get $baz)
    )
  )
)