blob: c528c5e0d0493bc2e2df0375d0010ae7b6dadd11 (
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
|
(module
(type $0 (func (param i32) (result i32)))
(type $1 (func (result i32)))
(type $2 (func))
(import "env" "memory" (memory $2 256))
(data (get_global $gimport$0) "hello, world!")
(import "env" "table" (table $timport$3 0 anyfunc))
(import "env" "memoryBase" (global $gimport$0 i32))
(import "env" "tableBase" (global $gimport$4 i32))
(import "env" "_puts" (func $fimport$1 (param i32) (result i32)))
(global $global$0 (mut i32) (i32.const 0))
(global $global$1 (mut i32) (i32.const 0))
(global $global$2 i32 (i32.const 0))
(export "__post_instantiate" (func $2))
(export "_main" (func $0))
(export "runPostSets" (func $1))
(export "_str" (global $global$2))
(func $0 (; 1 ;) (type $1) (result i32)
(block $label$1 (result i32)
(drop
(call $fimport$1
(get_global $gimport$0)
)
)
(i32.const 0)
)
)
(func $1 (; 2 ;) (type $2)
(nop)
)
(func $2 (; 3 ;) (type $2)
(block $label$1
(set_global $global$0
(i32.add
(get_global $gimport$0)
(i32.const 16)
)
)
(set_global $global$1
(i32.add
(get_global $global$0)
(i32.const 5242880)
)
)
(call $1)
)
)
;; custom section "dylink", size 5
)
|