blob: 3cab71072dab6feef4f4c161b8b4430c119fb625 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
(module
(import "env" "memory" (memory $0 1))
(table 0 anyfunc)
(export "stackSave" (func $stackSave))
(export "stackAlloc" (func $stackAlloc))
(export "stackRestore" (func $stackRestore))
(export "test_traps" (func $test_traps))
(func $test_traps (param $0 f32) (param $1 f64) (result i32)
(call $i32u-div
(call $f32-to-int
(get_local $0)
)
(call $f64-to-uint
(get_local $1)
)
)
)
(func $f32-to-int (param $0 f32) (result i32)
(if (result i32)
(f32.ne
(get_local $0)
(get_local $0)
)
(i32.const -2147483648)
(if (result i32)
(f32.ge
(get_local $0)
(f32.const 2147483648)
)
(i32.const -2147483648)
(if (result i32)
(f32.le
(get_local $0)
(f32.const -2147483648)
)
(i32.const -2147483648)
(i32.trunc_s/f32
(get_local $0)
)
)
)
)
)
(func $f64-to-uint (param $0 f64) (result i32)
(if (result i32)
(f64.ne
(get_local $0)
(get_local $0)
)
(i32.const 0)
(if (result i32)
(f64.ge
(get_local $0)
(f64.const 4294967296)
)
(i32.const 0)
(if (result i32)
(f64.le
(get_local $0)
(f64.const -1)
)
(i32.const 0)
(i32.trunc_u/f64
(get_local $0)
)
)
)
)
)
(func $i32u-div (param $0 i32) (param $1 i32) (result i32)
(if (result i32)
(i32.eqz
(get_local $1)
)
(i32.const 0)
(i32.div_u
(get_local $0)
(get_local $1)
)
)
)
(func $stackSave (result i32)
(i32.load offset=4
(i32.const 0)
)
)
(func $stackAlloc (param $0 i32) (result i32)
(local $1 i32)
(set_local $1
(i32.load offset=4
(i32.const 0)
)
)
(i32.store offset=4
(i32.const 0)
(i32.and
(i32.sub
(get_local $1)
(get_local $0)
)
(i32.const -16)
)
)
(get_local $1)
)
(func $stackRestore (param $0 i32)
(i32.store offset=4
(i32.const 0)
(get_local $0)
)
)
)
;; METADATA: { "asmConsts": {},"staticBump": 12, "initializers": [] }
|