summaryrefslogtreecommitdiff
path: root/test/binary/linking-section.txt
blob: a530f1c2adeb1ce567c2f04f3f9f603333081de3 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
;;; TOOL: run-objdump-gen-wasm
;;; ARGS: -x
;;; RUN: %(wasm-validate)s %(temp_file)s.wasm --enable-all
magic
version
section(TYPE) {
  count[1]
  function params[0] results[0]
}
section(FUNCTION) {
  count[1]
  type[0]
}
section(TABLE) {
  count[1]
  funcref
  has_max[0]
  initial[0]
}
section(MEMORY) {
  count[1]
  has_max[0]
  initial[0]
}
section(TAG) {
  count[1]
  attr[0]
  sig[0]
}
section(GLOBAL) {
  count[1]
  type[i32] met[0] init_expr[i32.const 0 end]
}
section(CODE) {
  count[1]
  func {
    locals[0]
    return
  }
}
section(DATA) {
  count[2]
  memory_index[0]
  offset[i32.const 0 end]
  data[str("foo")]
  memory_index[0]
  offset[i32.const 10 end]
  data[str("bar")]
}
section("linking") {
  metadata_version[2]

  section(LINKING_SEGMENT_INFO) {
    count[3]
    str("data1")
    p2align[2]
    flags[1]
    str("data2")
    p2align[3]
    flags[10]
    str("data3")
    p2align[2]
    flags[4]
  }

  section(LINKING_INIT_FUNCTIONS) {
    count[2]
    priority[5]
    func[1]
    priority[6]
    func[0]
  }

  section(LINKING_SYMBOL_TABLE) {
    num_symbols[6]

    type[0]
    flags[1]
    index[0]
    str("func_sym")

    type[2]
    flags[2]
    index[0]
    str("global_sym")

    type[1]
    flags[leb_i32(260)]
    str("data_sym")
    segment[1]
    offset[2]
    size[1]

    type[1]
    flags[leb_i32(512)]
    str("absolute_data_sym")
    segment[0]
    offset[leb_i32(1024)]
    size[0]

    type[0]
    flags[0x10]
    index[0]

    type[5]
    flags[1]
    index[0]
    str("table_sym")
  }

  section(LINKING_COMDAT_INFO) {
    num_comdats[2]

    str("comdat1")
    flags[0]
    num_entries[1]

    kind[0]
    index[1]

    str("comdat2")
    flags[0]
    num_entries[2]

    kind[1]
    index[2]

    kind[1]
    index[3]
  }
}
(;; STDOUT ;;;

linking-section.wasm:	file format wasm 0x1

Section Details:

Type[1]:
 - type[0] () -> nil
Function[1]:
 - func[0] sig=0 <func_sym>
Table[1]:
 - table[0] type=funcref initial=0 <table_sym>
Memory[1]:
 - memory[0] pages: initial=0
Tag[1]:
 - tag[0] sig=0
Global[1]:
 - global[0] i32 mutable=0 <global_sym> - init i32=0
Code[1]:
 - func[0] size=3 <func_sym>
Data[2]:
 - segment[0] <data1> memory=0 size=3 - init i32=0
  - 0000000: 666f 6f                                  foo
 - segment[1] <data2> memory=0 size=3 - init i32=10
  - 000000a: 6261 72                                  bar
Custom:
 - name: "linking"
  - segment info [count=3]
   - 0: data1 p2align=2 [ STRINGS ]
   - 1: data2 p2align=3 [ TLS unknown_flags=0x8 ]
   - 2: data3 p2align=2 [ RETAIN ]
  - init functions [count=2]
   - 1: priority=5 <global_sym>
   - 0: priority=6 <func_sym>
  - symbol table [count=6]
   - 0: F <func_sym> func=0 [ binding=weak vis=default ]
   - 1: G <global_sym> global=0 [ binding=local vis=default ]
   - 2: D <data_sym> segment=1 offset=2 size=1 [ tls binding=global vis=hidden ]
   - 3: D <absolute_data_sym> address=1024 size=0 [ abs binding=global vis=default ]
   - 4: F <func_sym> func=0 [ undefined binding=global vis=default ]
   - 5: T <table_sym> table=0 [ binding=weak vis=default ]
  - comdat groups [count=2]
   - comdat1: [count=1]
    - segment[1] <data2>
   - comdat2: [count=2]
    - func[2]
    - func[3]

Code Disassembly:

00002e func[0] <func_sym>:
 00002f: 0f                         | return
 000030: 0b                         | end
;;; STDOUT ;;)