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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
use super::{AdapterModuleSection, SectionId, TypeRef};
use crate::{encoders, ValType};
const TYPE_INSTANCE: u8 = 0x7f;
const TYPE_MODULE: u8 = 0x7e;
const TYPE_FUNCTION: u8 = 0x7d;
const ALIAS_TYPE_INSTANCE_EXPORT: u8 = 0x00;
const ALIAS_TYPE_OUTER: u8 = 0x01;
const OUTER_ALIAS_MODULE: u8 = 0x01;
const OUTER_ALIAS_TYPE: u8 = 0x06;
const INSTANCE_TYPEDEF_TYPE: u8 = 0x01;
const INSTANCE_TYPEDEF_ALIAS: u8 = 0x05;
const INSTANCE_TYPEDEF_EXPORT: u8 = 0x06;
const MODULE_TYPEDEF_TYPE: u8 = 0x01;
const MODULE_TYPEDEF_ALIAS: u8 = 0x05;
const MODULE_TYPEDEF_EXPORT: u8 = 0x06;
const MODULE_TYPEDEF_IMPORT: u8 = 0x02;
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum DefinitionKind {
Instance = 0,
Module = 1,
Function = 2,
Table = 3,
Memory = 4,
Global = 5,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum OuterAliasIndex {
Module(u32),
Type(u32),
}
impl OuterAliasIndex {
pub(crate) fn encode(&self, bytes: &mut Vec<u8>) {
match self {
Self::Module(index) => {
bytes.extend(encoders::u32(*index));
bytes.push(OUTER_ALIAS_MODULE);
}
Self::Type(index) => {
bytes.extend(encoders::u32(*index));
bytes.push(OUTER_ALIAS_TYPE);
}
}
}
}
#[derive(Debug, Clone, Default)]
pub struct InstanceType {
bytes: Vec<u8>,
num_added: u32,
}
impl InstanceType {
pub fn new() -> Self {
Self::default()
}
#[must_use = "the encoder must be used to encode the type"]
pub fn ty(&mut self) -> TypeEncoder {
self.bytes.push(INSTANCE_TYPEDEF_TYPE);
self.num_added += 1;
TypeEncoder(&mut self.bytes)
}
pub fn alias_instance_export(
&mut self,
instance: u32,
name: &str,
kind: DefinitionKind,
) -> &mut Self {
self.bytes.push(INSTANCE_TYPEDEF_ALIAS);
self.bytes.push(ALIAS_TYPE_INSTANCE_EXPORT);
self.bytes.extend(encoders::u32(instance));
self.bytes.extend(encoders::str(name));
self.bytes.push(kind as u8);
self.num_added += 1;
self
}
pub fn alias_outer_module(&mut self, count: u32, index: OuterAliasIndex) -> &mut Self {
self.bytes.push(INSTANCE_TYPEDEF_ALIAS);
self.bytes.push(ALIAS_TYPE_OUTER);
self.bytes.extend(encoders::u32(count));
index.encode(&mut self.bytes);
self.num_added += 1;
self
}
pub fn export(&mut self, name: &str, ty: TypeRef) -> &mut Self {
self.bytes.push(INSTANCE_TYPEDEF_EXPORT);
self.bytes.extend(encoders::str(name));
ty.encode(&mut self.bytes);
self.num_added += 1;
self
}
pub(crate) fn encode(&self, bytes: &mut Vec<u8>) {
bytes.extend(encoders::u32(self.num_added));
bytes.extend(self.bytes.iter().copied());
}
}
#[derive(Debug, Clone, Default)]
pub struct ModuleType {
bytes: Vec<u8>,
num_added: u32,
}
impl ModuleType {
pub fn new() -> Self {
Self::default()
}
#[must_use = "the encoder must be used to encode the type"]
pub fn ty(&mut self) -> TypeEncoder {
self.bytes.push(MODULE_TYPEDEF_TYPE);
self.num_added += 1;
TypeEncoder(&mut self.bytes)
}
pub fn alias_instance_export(
&mut self,
instance: u32,
name: &str,
kind: DefinitionKind,
) -> &mut Self {
self.bytes.push(MODULE_TYPEDEF_ALIAS);
self.bytes.push(ALIAS_TYPE_INSTANCE_EXPORT);
self.bytes.extend(encoders::u32(instance));
self.bytes.extend(encoders::str(name));
self.bytes.push(kind as u8);
self.num_added += 1;
self
}
pub fn alias_outer_module(&mut self, count: u32, index: OuterAliasIndex) -> &mut Self {
self.bytes.push(MODULE_TYPEDEF_ALIAS);
self.bytes.push(ALIAS_TYPE_OUTER);
self.bytes.extend(encoders::u32(count));
index.encode(&mut self.bytes);
self.num_added += 1;
self
}
pub fn export(&mut self, name: &str, ty: TypeRef) -> &mut Self {
self.bytes.push(MODULE_TYPEDEF_EXPORT);
self.bytes.extend(encoders::str(name));
ty.encode(&mut self.bytes);
self.num_added += 1;
self
}
pub fn import(&mut self, name: &str, ty: TypeRef) -> &mut Self {
self.bytes.push(MODULE_TYPEDEF_IMPORT);
self.bytes.extend(encoders::str(name));
ty.encode(&mut self.bytes);
self.num_added += 1;
self
}
pub(crate) fn encode(&self, bytes: &mut Vec<u8>) {
bytes.extend(encoders::u32(self.num_added));
bytes.extend(self.bytes.iter().copied());
}
}
#[derive(Debug)]
pub struct TypeEncoder<'a>(&'a mut Vec<u8>);
impl<'a> TypeEncoder<'a> {
pub fn instance(self, ty: &InstanceType) {
self.0.push(TYPE_INSTANCE);
ty.encode(self.0);
}
pub fn module(self, ty: &ModuleType) {
self.0.push(TYPE_MODULE);
ty.encode(self.0);
}
pub fn function(self, params: &[ValType], results: &[ValType]) {
self.0.push(TYPE_FUNCTION);
self.0
.extend(encoders::u32(u32::try_from(params.len()).unwrap()));
self.0.extend(params.iter().map(|p| u8::from(*p)));
self.0
.extend(encoders::u32(u32::try_from(results.len()).unwrap()));
self.0.extend(results.iter().map(|r| u8::from(*r)));
}
}
#[derive(Clone, Debug, Default)]
pub struct TypeSection {
bytes: Vec<u8>,
num_added: u32,
}
impl TypeSection {
pub fn new() -> Self {
Self::default()
}
pub fn len(&self) -> u32 {
self.num_added
}
pub fn is_empty(&self) -> bool {
self.num_added == 0
}
pub fn instance(&mut self, ty: &InstanceType) -> &mut Self {
let encoder = TypeEncoder(&mut self.bytes);
encoder.instance(ty);
self.num_added += 1;
self
}
pub fn module(&mut self, ty: &ModuleType) -> &mut Self {
let encoder = TypeEncoder(&mut self.bytes);
encoder.module(ty);
self.num_added += 1;
self
}
pub fn function(&mut self, params: &[ValType], results: &[ValType]) -> &mut Self {
let encoder = TypeEncoder(&mut self.bytes);
encoder.function(params, results);
self.num_added += 1;
self
}
}
impl AdapterModuleSection for TypeSection {
fn id(&self) -> u8 {
SectionId::Type.into()
}
fn encode<S>(&self, sink: &mut S)
where
S: Extend<u8>,
{
let num_added = encoders::u32(self.num_added);
let n = num_added.len();
sink.extend(
encoders::u32(u32::try_from(n + self.bytes.len()).unwrap())
.chain(num_added)
.chain(self.bytes.iter().copied()),
);
}
}