blob: d463d0bfb792b5abc1afb05385e0dfc6090f7154 (
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 $none_=>_i32 (func (result i32)))
(type $i32_=>_i32 (func (param i32) (result i32)))
(memory $0 2)
(table $0 1 1 funcref)
(elem (i32.const 0) $foo)
(global $global$0 (mut i32) (i32.const 66112))
(global $global$1 i32 (i32.const 66112))
(global $global$2 i32 (i32.const 576))
(export "memory" (memory $0))
(export "_start" (func $_start))
(export "__heap_base" (global $global$1))
(export "__data_end" (global $global$2))
(export "__growWasmMemory" (func $__growWasmMemory))
(func $_start (result i32)
(nop)
)
(func $foo (result i32)
(nop)
)
(func $__growWasmMemory (param $newSize i32) (result i32)
(memory.grow
(local.get $newSize)
)
)
)
(;
--BEGIN METADATA --
{
"staticBump": 8,
"tableSize": 1,
"declares": [
],
"externs": [
],
"exports": [
"_start",
"__growWasmMemory"
],
"namedGlobals": {
"__heap_base" : "66112",
"__data_end" : "576"
},
"invokeFuncs": [
],
"features": [
]
}
-- END METADATA --
;)
|