blob: fa3f7bd7054f444b9b91154cde5e1134c784a102 (
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
|
(module
(type $1 (func (param i32) (result i32)))
(type $2 (func (result i32)))
(type $3 (func))
(import "env" "_puts" (func $import$1 (param i32) (result i32)))
(import "env" "memory" (memory $0 256))
(import "env" "table" (table 8 anyfunc))
(global $global$0 (mut i32) (i32.const 0))
(global $global$1 (mut i32) (i32.const 0))
(global $global$2 i32 (i32.const 0))
(global $global$0$0 (mut i32) (i32.const 0))
(global $global$1$0 (mut i32) (i32.const 0))
(data (i32.const 1024) "hello, world!")
(export "__post_instantiate" (func $__post_instantiate))
(export "_main" (func $_main))
(export "runPostSets" (func $runPostSets))
(export "_str" (global $global$2))
(export "_foo" (func $_foo))
(func $_main (type $2) (result i32)
(block $label$1 (result i32)
(block $label$2 (result i32)
(drop
(call $import$1
(i32.const 1024)
)
)
(i32.const 0)
)
)
)
(func $runPostSets (type $3)
(nop)
)
(func $__post_instantiate (type $3)
(call $__post_instantiate$0)
(block $label$1
(block $label$2
(set_global $global$0
(i32.const 1040)
)
(set_global $global$1
(i32.add
(get_global $global$0)
(i32.const 32)
)
)
(call $runPostSets)
)
)
)
(func $_foo (type $2) (result i32)
(local $var$0 i32)
(block $label$1 (result i32)
(block $label$2 (result i32)
(set_local $var$0
(call $_main)
)
(get_local $var$0)
)
)
)
(func $runPostSets$0 (type $3)
(nop)
)
(func $__post_instantiate$0 (type $3)
(block $label$1
(block $label$2
(set_global $global$0$0
(i32.const 1072)
)
(set_global $global$1$0
(i32.add
(get_global $global$0$0)
(i32.const 10)
)
)
(call $runPostSets$0)
)
)
)
;; custom section "dylink", size 2
)
|