blob: 74791aca91c3aef59ecce5b5214fe482e4693953 (
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 --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 --code-pushing -tnh -S -o - | filecheck %s
(module
;; CHECK: (type $0 (func (param i32 i32)))
;; CHECK: (type $1 (func))
;; CHECK: (func $div (param $x i32) (param $y i32)
;; CHECK-NEXT: (local $temp i32)
;; CHECK-NEXT: (block $block
;; CHECK-NEXT: (if
;; CHECK-NEXT: (local.get $y)
;; CHECK-NEXT: (then
;; CHECK-NEXT: (return)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (local.set $temp
;; CHECK-NEXT: (i32.div_u
;; CHECK-NEXT: (i32.const 1)
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (local.get $temp)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $div (param $x i32) (param $y i32)
(local $temp i32)
(block $block
;; This division might trap (if x is 0). But with tnh we can assume that
;; won't happen, and push it past the condition.
(local.set $temp
(i32.div_u
(i32.const 1)
(local.get $x)
)
)
(if
(local.get $y)
(then
(return)
)
)
(drop
(local.get $temp)
)
)
)
;; CHECK: (func $unreachable-value
;; CHECK-NEXT: (local $x i32)
;; CHECK-NEXT: (local.tee $x
;; CHECK-NEXT: (unreachable)
;; CHECK-NEXT: )
;; CHECK-NEXT: (if
;; CHECK-NEXT: (i32.const 0)
;; CHECK-NEXT: (then
;; CHECK-NEXT: (drop
;; CHECK-NEXT: (local.get $x)
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
;; CHECK-NEXT: )
(func $unreachable-value
(local $x i32)
;; We should not push this into the if. (If we did, we'd need to refinalize
;; the block, or we'd error; instead, leave this to DCE.)
(local.set $x
(unreachable)
)
(if
(i32.const 0)
(then
(drop
(local.get $x)
)
)
)
)
)
|