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

(module
  ;; CHECK:      (table $table 10 funcref)
  (table $table 10 funcref)

  ;; CHECK:      (elem $zero (i32.const 0) $zero)
  (elem $zero (i32.const 0) $zero)

  ;; CHECK:      (elem $one func $one)
  (elem $one $one)

  ;; CHECK:      (func $move (type $0) (result funcref)
  ;; CHECK-NEXT:  (local $temp funcref)
  ;; CHECK-NEXT:  (nop)
  ;; CHECK-NEXT:  (nop)
  ;; CHECK-NEXT:  (table.get $table
  ;; CHECK-NEXT:   (i32.const 0)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT: )
  (func $move (result funcref)
    (local $temp funcref)
    (local.set $temp
      (table.get $table
        (i32.const 0)
      )
    )
    ;; We can move the table.get past the nop.
    (nop)
    (local.get $temp)
  )

  ;; CHECK:      (func $no-move (type $0) (result funcref)
  ;; CHECK-NEXT:  (local $temp funcref)
  ;; CHECK-NEXT:  (local.set $temp
  ;; CHECK-NEXT:   (table.get $table
  ;; CHECK-NEXT:    (i32.const 0)
  ;; CHECK-NEXT:   )
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (table.init $table $one
  ;; CHECK-NEXT:   (i32.const 0)
  ;; CHECK-NEXT:   (i32.const 0)
  ;; CHECK-NEXT:   (i32.const 1)
  ;; CHECK-NEXT:  )
  ;; CHECK-NEXT:  (local.get $temp)
  ;; CHECK-NEXT: )
  (func $no-move (result funcref)
    (local $temp funcref)
    (local.set $temp
      (table.get $table
        (i32.const 0)
      )
    )
    ;; table.init writes to the table, so table reads cannot cross it.
    (table.init $table $one (i32.const 0) (i32.const 0) (i32.const 1))
    (local.get $temp)
  )

  ;; CHECK:      (func $zero (type $1) (result i32)
  ;; CHECK-NEXT:  (i32.const 0)
  ;; CHECK-NEXT: )
  (func $zero (result i32)
    (i32.const 0)
  )

  ;; CHECK:      (func $one (type $1) (result i32)
  ;; CHECK-NEXT:  (i32.const 1)
  ;; CHECK-NEXT: )
  (func $one (result i32)
    (i32.const 1)
  )
)