summaryrefslogtreecommitdiff
path: root/test/lit/passes/vacuum-strings.wast
blob: 6925d52e6a776050a3eb6f32a5a0027be36ef862 (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
81
82
83
84
;; NOTE: Assertions have been generated by update_lit_checks.py and should not be edited.
;; RUN: wasm-opt %s --vacuum -all -S -o - | filecheck %s

(module
  ;; CHECK:      (func $compare (type $0)
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (string.compare
  ;; CHECK-NEXT:    (string.const "hello")
  ;; CHECK-NEXT:    (ref.null none)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (string.compare
  ;; CHECK-NEXT:    (ref.null none)
  ;; CHECK-NEXT:    (string.const "world")
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (drop
  ;; CHECK-NEXT:   (string.compare
  ;; CHECK-NEXT:    (ref.null none)
  ;; CHECK-NEXT:    (ref.null none)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $compare
    ;; We cannot vacuum away compares that might trap.
    (drop
      (string.compare
        (string.const "hello")
        (string.const "world")
      )
    )
    (drop
      (string.compare
        (string.const "hello")
        (ref.null none)
      )
    )
    (drop
      (string.compare
        (ref.null none)
        (string.const "world")
      )
    )
    (drop
      (string.compare
        (ref.null none)
        (ref.null none)
      )
    )
  )

  ;; CHECK:      (func $eq (type $0)
  ;; CHECK-NEXT:  (nop)
  ;; CHECK-NEXT: )
  (func $eq
    ;; Equals, however, never traps so all these can be removed.
    (drop
      (string.eq
        (string.const "hello")
        (string.const "world")
      )
    )
    (drop
      (string.eq
        (string.const "hello")
        (ref.null none)
      )
    )
    (drop
      (string.eq
        (ref.null none)
        (string.const "world")
      )
    )
    (drop
      (string.eq
        (ref.null none)
        (ref.null none)
      )
    )
  )
)