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
use crate::error::Result; use crate::module::Module; /// Configuration for a `Module` which currently affects parsing. #[derive(Clone, Debug, Default)] pub struct ModuleConfig { pub(crate) generate_dwarf: bool, pub(crate) generate_synthetic_names_for_anonymous_items: bool, pub(crate) skip_strict_validate: bool, pub(crate) skip_producers_section: bool, pub(crate) skip_name_section: bool, } impl ModuleConfig { /// Creates a fresh new configuration with default settings. pub fn new() -> ModuleConfig { ModuleConfig::default() } /// Sets a flag to whether DWARF debug sections are generated for this /// module. /// /// By default this flag is `false`. Note that any emitted DWARF is /// currently wildly incorrect and buggy, and is also larger than the wasm /// itself! pub fn generate_dwarf(&mut self, generate: bool) -> &mut ModuleConfig { self.generate_dwarf = generate; self } /// Sets a flag to whether the custom "name" section is generated for this /// module. /// /// The "name" section contains symbol names for the module, functions, and /// locals. When enabled, stack traces will use these names, instead of /// `wasm-function[123]`. /// /// By default this flag is `true`. pub fn generate_name_section(&mut self, generate: bool) -> &mut ModuleConfig { self.skip_name_section = !generate; self } /// Sets a flag to whether synthetic debugging names are generated for /// anonymous locals/functions/etc when parsing and running passes for this /// module. /// /// By default this flag is `false`, and it will generate quite a few names /// if enabled! pub fn generate_synthetic_names_for_anonymous_items( &mut self, generate: bool, ) -> &mut ModuleConfig { self.generate_synthetic_names_for_anonymous_items = generate; self } /// Indicates whether the module, after parsing, performs strict validation /// of the wasm module to adhere with the current version of the wasm /// specification. /// /// This can be expensive for some modules and strictly isn't required to /// create a `Module` from a wasm file. This includes checks such as "atomic /// instructions require a shared memory". /// /// By default this flag is `true` pub fn strict_validate(&mut self, strict: bool) -> &mut ModuleConfig { self.skip_strict_validate = !strict; self } /// Indicates whether the module will have the "producers" custom section /// which preserves the original producers and also includes `walrus`. /// /// This is generally used for telemetry in browsers, but for otherwise tiny /// wasm binaries can add some size to the binary. /// /// By default this flag is `true` pub fn generate_producers_section(&mut self, generate: bool) -> &mut ModuleConfig { self.skip_producers_section = !generate; self } /// Parses an in-memroy WebAssembly file into a `Module` using this /// configuration. pub fn parse(&mut self, wasm: &[u8]) -> Result<Module> { Module::parse(wasm, self) } }