blob: f62baea68cd943220a004d0128587362e66428c2 (
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
|
;;; TOOL: run-interp
;;; ARGS*: -v
(module
(func (export "main") (result i32)
i32.const 42
return))
(;; STDERR ;;;
0000000: 0061 736d ; WASM_BINARY_MAGIC
0000004: 0100 0000 ; WASM_BINARY_VERSION
; section "Type" (1)
0000008: 01 ; section code
0000009: 00 ; section size (guess)
000000a: 01 ; num types
; func type 0
000000b: 60 ; func
000000c: 00 ; num params
000000d: 01 ; num results
000000e: 7f ; i32
0000009: 05 ; FIXUP section size
; section "Function" (3)
000000f: 03 ; section code
0000010: 00 ; section size (guess)
0000011: 01 ; num functions
0000012: 00 ; function 0 signature index
0000010: 02 ; FIXUP section size
; section "Export" (7)
0000013: 07 ; section code
0000014: 00 ; section size (guess)
0000015: 01 ; num exports
0000016: 04 ; string length
0000017: 6d61 696e main ; export name
000001b: 00 ; export kind
000001c: 00 ; export func index
0000014: 08 ; FIXUP section size
; section "Code" (10)
000001d: 0a ; section code
000001e: 00 ; section size (guess)
000001f: 01 ; num functions
; function body 0
0000020: 00 ; func body size (guess)
0000021: 00 ; local decl count
0000022: 41 ; i32.const
0000023: 2a ; i32 literal
0000024: 0f ; return
0000025: 0b ; end
0000020: 05 ; FIXUP func body size
000001e: 07 ; FIXUP section size
BeginModule(version: 1)
BeginTypeSection(5)
OnTypeCount(1)
OnFuncType(index: 0, params: [], results: [i32])
EndTypeSection
BeginFunctionSection(2)
OnFunctionCount(1)
OnFunction(index: 0, sig_index: 0)
EndFunctionSection
BeginExportSection(8)
OnExportCount(1)
OnExport(index: 0, kind: func, item_index: 0, name: "main")
EndExportSection
BeginCodeSection(7)
OnFunctionBodyCount(1)
BeginFunctionBody(0, size:5)
OnLocalDeclCount(0)
EndLocalDecls
OnI32ConstExpr(42 (0x2a))
OnReturnExpr
OnEndExpr
EndFunctionBody(0)
EndCodeSection
EndModule
;;; STDERR ;;)
(;; STDOUT ;;;
0| i32.const 42
8| return
12| return
main() => i32:42
;;; STDOUT ;;)
|