-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodule_assembly.rs
More file actions
78 lines (73 loc) · 2.28 KB
/
Copy pathmodule_assembly.rs
File metadata and controls
78 lines (73 loc) · 2.28 KB
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
use std::borrow::Cow;
use wasm_encoder::{
CodeSection, CustomSection, ElementSection, Elements, ExportKind, ExportSection,
FunctionSection, GlobalSection, ImportSection, MemorySection, MemoryType, Module, TypeSection,
};
use super::{data_plan::StaticData, debug_artifacts::DebugArtifactPlan};
pub(super) struct Sections {
pub types: TypeSection,
pub imports: ImportSection,
pub functions: FunctionSection,
pub globals: GlobalSection,
pub referenced_functions: Vec<u32>,
pub codes: CodeSection,
}
pub(super) fn finish(
sections: Sections,
data: &StaticData,
start_function: u32,
update_function: u32,
debug: Option<&DebugArtifactPlan>,
) -> Vec<u8> {
let Sections {
types,
imports,
functions,
globals,
referenced_functions,
codes,
} = sections;
let mut memories = MemorySection::new();
memories.memory(MemoryType {
minimum: data.layout().minimum_pages(),
maximum: None,
memory64: false,
shared: false,
page_size_log2: None,
});
let mut exports = ExportSection::new();
exports.export("memory", ExportKind::Memory, 0);
exports.export("_start", ExportKind::Func, start_function);
exports.export("update", ExportKind::Func, update_function);
let data = data.encode();
let mut elements = ElementSection::new();
if !referenced_functions.is_empty() {
elements.declared(Elements::Functions(Cow::Owned(referenced_functions)));
}
let mut module = Module::new();
module.section(&types);
module.section(&imports);
module.section(&functions);
module.section(&memories);
module.section(&globals);
module.section(&exports);
if !elements.is_empty() {
module.section(&elements);
}
module.section(&codes);
module.section(&data);
if let Some(debug) = debug {
module.section(debug.names());
for section in debug.dwarf() {
module.section(&CustomSection {
name: Cow::Borrowed(section.name),
data: Cow::Borrowed(§ion.data),
});
}
}
module.section(&CustomSection {
name: Cow::Borrowed("splitscript"),
data: Cow::Owned(crate::build_identity::module_metadata()),
});
module.finish()
}