walrus 0.26.0

A library for performing WebAssembly transformations
Documentation
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
//! A high-level API for manipulating wasm modules.

mod config;
mod custom;
mod data;
mod debug;
mod elements;
mod exports;
mod functions;
mod globals;
mod imports;
mod locals;
mod memories;
mod producers;
mod tables;
mod tags;
mod types;

use crate::emit::{Emit, EmitContext, IdsToIndices};
use crate::error::Result;
pub use crate::ir::InstrLocId;
pub use crate::module::custom::{
    CustomSection, CustomSectionId, ModuleCustomSections, RawCustomSection, TypedCustomSectionId,
    UntypedCustomSectionId,
};
pub use crate::module::data::{Data, DataId, DataKind, ModuleData};
pub use crate::module::debug::ModuleDebugData;
pub use crate::module::elements::{Element, ElementId, ModuleElements};
pub use crate::module::elements::{ElementItems, ElementKind};
pub use crate::module::exports::{Export, ExportId, ExportItem, ModuleExports};
pub use crate::module::functions::{FuncParams, FuncResults};
pub use crate::module::functions::{Function, FunctionId, ModuleFunctions};
pub use crate::module::functions::{FunctionKind, ImportedFunction, LocalFunction};
pub use crate::module::globals::{Global, GlobalId, GlobalKind, ModuleGlobals};
pub use crate::module::imports::{Import, ImportId, ImportKind, ModuleImports};
pub use crate::module::locals::ModuleLocals;
pub use crate::module::memories::{Memory, MemoryId, ModuleMemories};
pub use crate::module::producers::ModuleProducers;
pub use crate::module::tables::{ModuleTables, Table, TableId};
pub use crate::module::tags::{ModuleTags, Tag, TagId, TagKind};
pub use crate::module::types::ModuleTypes;
use crate::parse::IndicesToIds;
use anyhow::{bail, Context};
use id_arena::Id;
use log::warn;
use std::fs;
use std::mem;
use std::ops::Range;
use std::path::Path;
use wasmparser::{BinaryReader, Parser, Payload, Validator};

pub use self::config::ModuleConfig;

/// A wasm module.
#[derive(Debug, Default)]
#[allow(missing_docs)]
pub struct Module {
    pub imports: ModuleImports,
    pub tables: ModuleTables,
    pub types: ModuleTypes,
    pub funcs: ModuleFunctions,
    pub globals: ModuleGlobals,
    pub locals: ModuleLocals,
    pub exports: ModuleExports,
    pub memories: ModuleMemories,
    /// Tags for exception handling
    pub tags: ModuleTags,
    /// Registration of passive data segments, if any
    pub data: ModuleData,
    /// Registration of passive element segments, if any
    pub elements: ModuleElements,
    /// The `start` function, if any
    pub start: Option<FunctionId>,
    /// Representation of the eventual custom section, `producers`
    pub producers: ModuleProducers,
    /// Custom sections found in this module.
    pub customs: ModuleCustomSections,
    /// Dwarf debug data.
    pub debug: ModuleDebugData,
    /// The name of this module, used for debugging purposes in the `name`
    /// custom section.
    pub name: Option<String>,
    pub(crate) config: ModuleConfig,
}

/// Code transformation records, which is used to transform DWARF debug entries.
#[derive(Debug, Default)]
pub struct CodeTransform {
    /// Maps from an offset of an instruction in the input Wasm to its offset in the
    /// output Wasm.
    ///
    /// Note that an input offset may be mapped to multiple output offsets, and vice
    /// versa, due to transformations like function inlinining or constant
    /// propagation.
    pub instruction_map: Vec<(InstrLocId, usize)>,

    /// Offset of code section from the front of Wasm binary
    pub code_section_start: usize,

    /// Emitted binary ranges of functions
    pub function_ranges: Vec<(Id<Function>, Range<usize>)>,
}

impl Module {
    /// Create a default, empty module that uses the given configuration.
    pub fn with_config(config: ModuleConfig) -> Self {
        Module {
            config,
            ..Default::default()
        }
    }

    /// Construct a new module from the given path with the default
    /// configuration.
    pub fn from_file<P>(path: P) -> Result<Module>
    where
        P: AsRef<Path>,
    {
        Module::from_buffer(&fs::read(path)?)
    }

    /// Construct a new module from the given path and configuration.
    pub fn from_file_with_config<P>(path: P, config: &ModuleConfig) -> Result<Module>
    where
        P: AsRef<Path>,
    {
        config.parse(&fs::read(path)?)
    }

    /// Construct a new module from the in-memory wasm buffer with the default
    /// configuration.
    pub fn from_buffer(wasm: &[u8]) -> Result<Module> {
        ModuleConfig::new().parse(wasm)
    }

    /// Construct a new module from the in-memory wasm buffer and configuration.
    pub fn from_buffer_with_config(wasm: &[u8], config: &ModuleConfig) -> Result<Module> {
        config.parse(wasm)
    }

    fn parse(wasm: &[u8], config: &ModuleConfig) -> Result<Module> {
        let mut ret = Module {
            config: config.clone(),
            ..Default::default()
        };
        let mut indices = IndicesToIds::default();

        // For now we have the same set of wasm features
        // regardless of config.only_stable_features. New unstable features
        // may be enabled under `only_stable_features: false` in future.
        let wasm_features = config.get_wasmparser_wasm_features();

        let mut validator = Validator::new_with_features(wasm_features);

        let mut local_functions = Vec::new();
        let mut debug_sections = Vec::new();

        let mut parser = Parser::new(0);
        parser.set_features(wasm_features);

        for payload in parser.parse_all(wasm) {
            match payload? {
                Payload::Version {
                    num,
                    encoding,
                    range,
                } => {
                    validator.version(num, encoding, &range)?;
                }
                Payload::DataSection(s) => {
                    validator
                        .data_section(&s)
                        .context("failed to parse data section")?;
                    ret.parse_data(s, &mut indices)?;
                }
                Payload::TypeSection(s) => {
                    validator
                        .type_section(&s)
                        .context("failed to parse type section")?;
                    ret.parse_types(s, &mut indices)?;
                }
                Payload::ImportSection(s) => {
                    validator
                        .import_section(&s)
                        .context("failed to parse import section")?;
                    ret.parse_imports(s, &mut indices)?;
                }
                Payload::TableSection(s) => {
                    validator
                        .table_section(&s)
                        .context("failed to parse table section")?;
                    ret.parse_tables(s, &mut indices)?;
                }
                Payload::MemorySection(s) => {
                    validator
                        .memory_section(&s)
                        .context("failed to parse memory section")?;
                    ret.parse_memories(s, &mut indices)?;
                }
                Payload::GlobalSection(s) => {
                    validator
                        .global_section(&s)
                        .context("failed to parse global section")?;
                    ret.parse_globals(s, &mut indices)?;
                }
                Payload::ExportSection(s) => {
                    validator
                        .export_section(&s)
                        .context("failed to parse export section")?;
                    ret.parse_exports(s, &indices)?;
                }
                Payload::ElementSection(s) => {
                    validator
                        .element_section(&s)
                        .context("failed to parse element section")?;
                    ret.parse_elements(s, &mut indices)?;
                }
                Payload::StartSection { func, range, .. } => {
                    validator.start_section(func, &range)?;
                    ret.start = Some(indices.get_func(func)?);
                }
                Payload::FunctionSection(s) => {
                    validator
                        .function_section(&s)
                        .context("failed to parse function section")?;
                    ret.declare_local_functions(s, &mut indices)?;
                }
                Payload::DataCountSection { count, range } => {
                    validator.data_count_section(count, &range)?;
                    ret.reserve_data(count, &mut indices);
                }
                Payload::CodeSectionStart { range, .. } => {
                    validator.code_section_start(&range)?;
                    ret.funcs.code_section_offset = range.start;
                }
                Payload::CodeSectionEntry(body) => {
                    let validator = validator
                        .code_section_entry(&body)?
                        .into_validator(Default::default());
                    local_functions.push((body, validator));
                }
                Payload::CustomSection(s) => {
                    let result = match s.name() {
                        "producers" => wasmparser::ProducersSectionReader::new(
                            BinaryReader::new_features(s.data(), s.data_offset(), wasm_features),
                        )
                        .map_err(anyhow::Error::from)
                        .and_then(|s| ret.parse_producers_section(s)),
                        "name" => {
                            let name_section_reader =
                                wasmparser::NameSectionReader::new(BinaryReader::new_features(
                                    s.data(),
                                    s.data_offset(),
                                    wasm_features,
                                ));
                            ret.parse_name_section(name_section_reader, &indices)
                        }
                        name => {
                            log::debug!("parsing custom section `{}`", name);
                            if name.starts_with(".debug") {
                                debug_sections.push(RawCustomSection {
                                    name: name.to_string(),
                                    data: s.data().to_vec(),
                                });
                            } else {
                                ret.customs.add(RawCustomSection {
                                    name: name.to_string(),
                                    data: s.data().to_vec(),
                                });
                            }
                            continue;
                        }
                    };
                    if let Err(e) = result {
                        log::warn!("failed to parse `{}` custom section {}", s.name(), e);
                    }
                }
                Payload::UnknownSection { id, range, .. } => {
                    validator.unknown_section(id, &range)?;
                    unreachable!()
                }

                Payload::End(offset) => {
                    validator.end(offset)?;
                    continue;
                }

                // Parse exception handling tags
                Payload::TagSection(s) => {
                    validator.tag_section(&s)?;
                    ret.parse_tags(s, &mut indices)?;
                }

                // Among other things, the component module proposal is not
                // implemented yet.
                _ => {
                    bail!("not supported yet");
                }
            }
        }

        ret.parse_local_functions(
            local_functions,
            &mut indices,
            config.on_instr_loc.as_ref().map(|f| f.as_ref()),
        )
        .context("failed to parse code section")?;

        ret.parse_debug_sections(debug_sections)
            .context("failed to parse debug data section")?;

        ret.producers
            .add_processed_by("walrus", env!("CARGO_PKG_VERSION"));

        if let Some(on_parse) = &config.on_parse {
            on_parse(&mut ret, &indices)?;
        }

        log::debug!("parse complete");
        Ok(ret)
    }

    /// Emit this module into a `.wasm` file at the given path.
    pub fn emit_wasm_file<P>(&mut self, path: P) -> Result<()>
    where
        P: AsRef<Path>,
    {
        let buffer = self.emit_wasm();
        fs::write(path, buffer).context("failed to write wasm module")?;
        Ok(())
    }

    /// Ensure every function referenced by `ref.func` (in code, global
    /// initializers, or element segment expressions) is "declared" per the wasm
    /// spec — either exported or present in at least one element segment.
    ///
    /// If any referenced function lacks a declaration, a synthetic `Declared`
    /// element segment is appended.
    fn ensure_func_declarations(&mut self) {
        use crate::ir::dfs_in_order;
        use crate::map::IdHashSet;

        // 1. Collect all functions referenced by ref.func in code.
        let mut ref_funcs: IdHashSet<crate::Function> = IdHashSet::default();
        for func in self.funcs.iter() {
            if let FunctionKind::Local(local) = &func.kind {
                struct RefFuncVisitor<'a> {
                    set: &'a mut IdHashSet<crate::Function>,
                }
                impl<'instr> crate::ir::Visitor<'instr> for RefFuncVisitor<'_> {
                    fn visit_ref_func(&mut self, instr: &crate::ir::RefFunc) {
                        self.set.insert(instr.func);
                    }
                }
                let mut visitor = RefFuncVisitor {
                    set: &mut ref_funcs,
                };
                dfs_in_order(&mut visitor, local, local.entry_block());
            }
        }

        // 2. Collect ref.func from global initializers and element expressions.
        for global in self.globals.iter() {
            Self::collect_const_expr_ref_funcs(&global.kind, &mut ref_funcs);
        }
        for elem in self.elements.iter() {
            match &elem.items {
                ElementItems::Expressions(_, exprs) => {
                    for expr in exprs {
                        if let crate::ConstExpr::RefFunc(f) = expr {
                            ref_funcs.insert(*f);
                        }
                    }
                }
                // Functions listed directly are already declarations themselves.
                ElementItems::Functions(_) => {}
            }
        }

        if ref_funcs.is_empty() {
            return;
        }

        // 3. Build the set of already-declared functions.
        let mut declared: IdHashSet<crate::Function> = IdHashSet::default();
        // Exports declare their functions.
        for export in self.exports.iter() {
            if let ExportItem::Function(f) = export.item {
                declared.insert(f);
            }
        }
        // Element segments declare all functions they contain.
        for elem in self.elements.iter() {
            match &elem.items {
                ElementItems::Functions(funcs) => {
                    for &f in funcs {
                        declared.insert(f);
                    }
                }
                ElementItems::Expressions(_, exprs) => {
                    for expr in exprs {
                        if let crate::ConstExpr::RefFunc(f) = expr {
                            declared.insert(*f);
                        }
                    }
                }
            }
        }

        // 4. Find undeclared functions and synthesize a Declared element segment.
        let undeclared: Vec<_> = ref_funcs
            .iter()
            .copied()
            .filter(|f| !declared.contains(f))
            .collect();
        if !undeclared.is_empty() {
            log::debug!(
                "synthesizing Declared element segment for {} undeclared ref.func references",
                undeclared.len()
            );
            self.elements
                .add(ElementKind::Declared, ElementItems::Functions(undeclared));
        }
    }

    /// Helper: collect ref.func from a GlobalKind.
    fn collect_const_expr_ref_funcs(
        kind: &GlobalKind,
        set: &mut crate::map::IdHashSet<crate::Function>,
    ) {
        match kind {
            GlobalKind::Local(crate::ConstExpr::RefFunc(f)) => {
                set.insert(*f);
            }
            GlobalKind::Local(crate::ConstExpr::Extended(ops)) => {
                for op in ops {
                    if let crate::const_expr::ConstOp::RefFunc(f) = op {
                        set.insert(*f);
                    }
                }
            }
            _ => {}
        }
    }

    /// Emit this module into an in-memory wasm buffer.
    pub fn emit_wasm(&mut self) -> Vec<u8> {
        log::debug!("start emit");

        self.ensure_func_declarations();

        let indices = &mut IdsToIndices::default();

        let mut customs = mem::take(&mut self.customs);

        let mut cx = EmitContext {
            module: self,
            indices,
            wasm_module: wasm_encoder::Module::new(),
            locals: Default::default(),
            code_transform: Default::default(),
        };
        self.types.emit(&mut cx);
        self.imports.emit(&mut cx);
        self.funcs.emit_func_section(&mut cx);
        self.tables.emit(&mut cx);
        self.memories.emit(&mut cx);
        self.tags.emit(&mut cx);
        self.globals.emit(&mut cx);
        self.exports.emit(&mut cx);
        if let Some(start) = self.start {
            let idx = cx.indices.get_func_index(start);
            cx.wasm_module.section(&wasm_encoder::StartSection {
                function_index: idx,
            });
        }
        self.elements.emit(&mut cx);
        self.data.emit_data_count(&mut cx);
        self.funcs.emit(&mut cx);
        self.data.emit(&mut cx);

        if !self.config.skip_name_section {
            emit_name_section(&mut cx);
        }
        if !self.config.skip_producers_section {
            self.producers.emit(&mut cx);
        }

        if self.config.generate_dwarf {
            self.debug.emit(&mut cx);
        } else {
            log::debug!("skipping DWARF custom section");
        }

        let indices = std::mem::take(cx.indices);

        for (_id, section) in customs.iter_mut() {
            if section.name().starts_with(".debug") {
                continue;
            }

            log::debug!("emitting custom section {}", section.name());

            if self.config.preserve_code_transform {
                section.apply_code_transform(&cx.code_transform);
            }

            cx.wasm_module.section(&wasm_encoder::CustomSection {
                name: section.name().into(),
                data: section.data(&indices),
            });
        }

        let out = cx.wasm_module.finish();
        log::debug!("emission finished");

        // let mut validator = Validator::new();
        // if let Err(err) = validator.validate_all(&out) {
        //     eprintln!("{:?}", err);
        //     panic!("Unable to validate serialized output");
        // }

        out
    }

    /// Returns an iterator over all functions in this module
    pub fn functions(&self) -> impl Iterator<Item = &Function> {
        self.funcs.iter()
    }

    fn parse_name_section(
        &mut self,
        names: wasmparser::NameSectionReader,
        indices: &IndicesToIds,
    ) -> Result<()> {
        log::debug!("parse name section");
        for subsection in names {
            match subsection? {
                wasmparser::Name::Module {
                    name,
                    name_range: _,
                } => {
                    self.name = Some(name.to_string());
                }
                wasmparser::Name::Function(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_func(naming.index) {
                            Ok(id) => self.funcs.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Type(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_type(naming.index) {
                            Ok(id) => self.types.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Memory(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_memory(naming.index) {
                            Ok(id) => {
                                self.memories.get_mut(id).name = Some(naming.name.to_string())
                            }
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Table(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_table(naming.index) {
                            Ok(id) => self.tables.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Data(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_data(naming.index) {
                            Ok(id) => self.data.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Element(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_element(naming.index) {
                            Ok(id) => {
                                self.elements.get_mut(id).name = Some(naming.name.to_string())
                            }
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Global(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_global(naming.index) {
                            Ok(id) => self.globals.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Tag(names) => {
                    for name in names {
                        let naming = name?;
                        match indices.get_tag(naming.index) {
                            Ok(id) => self.tags.get_mut(id).name = Some(naming.name.to_string()),
                            Err(e) => warn!("in name section: {}", e),
                        }
                    }
                }
                wasmparser::Name::Local(l) => {
                    for f in l {
                        let f = f?;
                        let func_id = indices.get_func(f.index)?;
                        for name in f.names {
                            let naming = name?;
                            // Looks like tools like `wat2wasm` generate empty
                            // names for locals if they aren't specified, so
                            // just ignore empty names which would in theory
                            // make debugging a bit harder.
                            if self.config.generate_synthetic_names_for_anonymous_items
                                && naming.name.is_empty()
                            {
                                continue;
                            }
                            match indices.get_local(func_id, naming.index) {
                                Ok(id) => {
                                    self.locals.get_mut(id).name = Some(naming.name.to_string())
                                }
                                // It looks like emscripten leaves broken
                                // function references in the locals subsection
                                // sometimes.
                                Err(e) => warn!("in name section: {}", e),
                            }
                        }
                    }
                }
                wasmparser::Name::Unknown { ty, .. } => warn!("unknown name subsection {}", ty),
                wasmparser::Name::Label(_) => warn!("labels name subsection ignored"),
                wasmparser::Name::Field(_) => warn!("fields name subsection ignored"),
            }
        }
        Ok(())
    }
}

fn emit_name_section(cx: &mut EmitContext) {
    log::debug!("emit name section");

    let mut wasm_name_section = wasm_encoder::NameSection::new();

    let mut funcs = cx
        .module
        .funcs
        .iter()
        .filter_map(|func| func.name.as_ref().map(|name| (func, name)))
        .map(|(func, name)| (cx.indices.get_func_index(func.id()), name))
        .collect::<Vec<_>>();
    funcs.sort_by_key(|p| p.0); // sort by index

    let mut locals = cx
        .module
        .funcs
        .iter()
        .filter_map(|func| cx.locals.get(&func.id()).map(|l| (func, l)))
        .filter_map(|(func, locals)| {
            let local_names = locals
                .iter()
                .filter_map(|id| {
                    let name = cx.module.locals.get(*id).name.as_ref()?;
                    let index = cx.indices.locals.get(&func.id())?.get(id)?;
                    Some((*index, name))
                })
                .collect::<Vec<_>>();
            if local_names.is_empty() {
                None
            } else {
                Some((cx.indices.get_func_index(func.id()), local_names))
            }
        })
        .collect::<Vec<_>>();
    locals.sort_by_key(|p| p.0); // sort by index

    let mut types = cx
        .module
        .types
        .iter()
        .filter_map(|typ| typ.name.as_ref().map(|name| (typ, name)))
        .map(|(typ, name)| (cx.indices.get_type_index(typ.id()), name))
        .collect::<Vec<_>>();
    types.sort_by_key(|p| p.0); // sort by index

    let mut tables = cx
        .module
        .tables
        .iter()
        .filter_map(|table| table.name.as_ref().map(|name| (table, name)))
        .map(|(table, name)| (cx.indices.get_table_index(table.id()), name))
        .collect::<Vec<_>>();
    tables.sort_by_key(|p| p.0); // sort by index

    let mut memories = cx
        .module
        .memories
        .iter()
        .filter_map(|memory| memory.name.as_ref().map(|name| (memory, name)))
        .map(|(memory, name)| (cx.indices.get_memory_index(memory.id()), name))
        .collect::<Vec<_>>();
    memories.sort_by_key(|p| p.0); // sort by index

    let mut globals = cx
        .module
        .globals
        .iter()
        .filter_map(|global| global.name.as_ref().map(|name| (global, name)))
        .map(|(global, name)| (cx.indices.get_global_index(global.id()), name))
        .collect::<Vec<_>>();
    globals.sort_by_key(|p| p.0); // sort by index

    let mut elements = cx
        .module
        .elements
        .iter()
        .filter_map(|element| element.name.as_ref().map(|name| (element, name)))
        .map(|(element, name)| (cx.indices.get_element_index(element.id()), name))
        .collect::<Vec<_>>();
    elements.sort_by_key(|p| p.0); // sort by index

    let mut data = cx
        .module
        .data
        .iter()
        .filter_map(|data| data.name.as_ref().map(|name| (data, name)))
        .map(|(data, name)| (cx.indices.get_data_index(data.id()), name))
        .collect::<Vec<_>>();
    data.sort_by_key(|p| p.0); // sort by index

    let mut tags = cx
        .module
        .tags
        .iter()
        .filter_map(|tag| tag.name.as_ref().map(|name| (tag, name)))
        .map(|(tag, name)| (cx.indices.get_tag_index(tag.id()), name))
        .collect::<Vec<_>>();
    tags.sort_by_key(|p| p.0); // sort by index

    if cx.module.name.is_none()
        && funcs.is_empty()
        && locals.is_empty()
        && types.is_empty()
        && tables.is_empty()
        && memories.is_empty()
        && globals.is_empty()
        && elements.is_empty()
        && data.is_empty()
        && tags.is_empty()
    {
        return;
    }

    // Order of written subsections must match order defined in
    // `wasm_encorder::names::Subsection`.

    if let Some(name) = &cx.module.name {
        wasm_name_section.module(name);
    }

    if !funcs.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in funcs {
            name_map.append(index, name);
        }
        wasm_name_section.functions(&name_map);
    }

    if !locals.is_empty() {
        let mut indirect_name_map = wasm_encoder::IndirectNameMap::new();
        for (index, mut map) in locals {
            let mut name_map = wasm_encoder::NameMap::new();
            map.sort_by_key(|p| p.0); // sort by index
            for (index, name) in map {
                name_map.append(index, name);
            }
            indirect_name_map.append(index, &name_map);
        }
        wasm_name_section.locals(&indirect_name_map);
    }

    if !types.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in types {
            name_map.append(index, name);
        }
        wasm_name_section.types(&name_map);
    }

    if !tables.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in tables {
            name_map.append(index, name);
        }
        wasm_name_section.tables(&name_map);
    }

    if !memories.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in memories {
            name_map.append(index, name);
        }
        wasm_name_section.memories(&name_map);
    }

    if !globals.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in globals {
            name_map.append(index, name);
        }
        wasm_name_section.globals(&name_map);
    }

    if !tags.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in tags {
            name_map.append(index, name);
        }
        wasm_name_section.tags(&name_map);
    }

    if !elements.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in elements {
            name_map.append(index, name);
        }
        wasm_name_section.elements(&name_map);
    }

    if !data.is_empty() {
        let mut name_map = wasm_encoder::NameMap::new();
        for (index, name) in data {
            name_map.append(index, name);
        }
        wasm_name_section.data(&name_map);
    }

    cx.wasm_module.section(&wasm_name_section);
}