summaryrefslogtreecommitdiff
path: root/test/lit/passes/directize-wasm64.wast
blob: 5a6b1f3118932b9ad53d7d86395e5d465def0f77 (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
;; 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: wasm-opt %s --directize --enable-memory64 -S -o - | filecheck %s

(module
 ;; CHECK:      (type $ii (func (param i32 i32)))
 (type $ii (func (param i32 i32)))

 ;; CHECK:      (table $0 i64 5 5 funcref)
 (table $0 i64 5 5 funcref)

 ;; CHECK:      (elem $elem (i64.const 1) $foo)
 (elem $elem (i64.const 1) $foo)

 ;; CHECK:      (func $foo (param $0 i32) (param $1 i32)
 ;; CHECK-NEXT:  (unreachable)
 ;; CHECK-NEXT: )
 (func $foo (param i32) (param i32)
  ;; helper function
  (unreachable)
 )

 ;; CHECK:      (func $bar (param $x i32) (param $y i32)
 ;; CHECK-NEXT:  (call $foo
 ;; CHECK-NEXT:   (local.get $x)
 ;; CHECK-NEXT:   (local.get $y)
 ;; CHECK-NEXT:  )
 ;; CHECK-NEXT: )
 (func $bar (param $x i32) (param $y i32)
  (call_indirect (type $ii)
   (local.get $x)
   (local.get $y)
   (i64.const 1)
  )
 )

 ;; CHECK:      (func $bar-32 (param $x i32) (param $y i32)
 ;; CHECK-NEXT:  (unreachable)
 ;; CHECK-NEXT: )
 (func $bar-32 (param $x i32) (param $y i32)
  ;; As above, but the constant has 2**32 added to it. If we operate on a 32-bit
  ;; index, we might think we can optimize to a call to $foo. Instead, we should
  ;; see that this traps, and optimize to that.
  (call_indirect (type $ii)
   (local.get $x)
   (local.get $y)
   (i64.const 4294967297)
  )
 )
)