blob: cb5f027d1d58228067305032c4a24ba489b39a3b (
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
|
(module
(import "env" "memory" (memory $0 1))
(table 0 anyfunc)
(data (i32.const 4) "\10\04\00\00")
(export "stackSave" (func $stackSave))
(export "stackAlloc" (func $stackAlloc))
(export "stackRestore" (func $stackRestore))
(export "f0" (func $f0))
(export "f1" (func $f1))
(export "f2" (func $f2))
(export "f3" (func $f3))
(export "f4" (func $f4))
(export "f5" (func $f5))
(func $f0
(return)
)
(func $f1 (result i32)
(return
(i32.const 0)
)
)
(func $f2 (param $0 i32) (param $1 f32) (result i32)
(return
(i32.const 0)
)
)
(func $f3 (param $0 i32) (param $1 f32)
(return)
)
(func $f4 (param $0 i32) (result i32)
(block $label$0
(br_if $label$0
(i32.eqz
(i32.and
(get_local $0)
(i32.const 1)
)
)
)
(return
(i32.const 0)
)
)
(return
(i32.const 1)
)
)
(func $f5 (result f32)
(unreachable)
)
(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": 1040, "initializers": [] }
|