Home
last modified time | relevance | path

Searched refs:debug_info (Results 1 – 18 of 18) sorted by relevance

/wasmtime-44.0.1/examples/fib-debug/
H A Dmain.rs19 .debug_info(true) in main()
/wasmtime-44.0.1/tests/all/native_debug/
H A Dobj.rs14 config.debug_info(true); in compile_cranelift()
/wasmtime-44.0.1/tests/all/
H A Dwinch_engine_features.rs55 config.debug_info(true); in ensure_compatibility_between_winch_and_debug_native()
H A Dpulley.rs494 config.debug_info(true); in enabling_debug_info_doesnt_break_anything()
/wasmtime-44.0.1/docs/
H A Dexamples-profiling-perf.md132 * **Rust API** - you'll want to call the [`Config::debug_info`] method.
193 [`Config::debug_info`]: https://bytecodealliance.github.io/wasmtime/api/wasmtime/struct.Config.html…
H A Dexamples-debugging-native-debugger.md15 CLI and `Config::debug_info(true)` in an embedding (e.g. see [debugging in a
/wasmtime-44.0.1/crates/c-api/include/wasmtime/
H A Dconfig.h102 WASMTIME_CONFIG_PROP(void, debug_info, bool)
H A Dconfig.hh256 void debug_info(bool enable) { in debug_info() function in wasmtime::Config
/wasmtime-44.0.1/crates/c-api/tests/
H A Dconfig.cc36 config.debug_info(false); in TEST()
/wasmtime-44.0.1/crates/cranelift/src/debug/transform/
H A Dmod.rs56 translation.debuginfo.dwarf.debug_info.reader().slice() in load_dwp()
/wasmtime-44.0.1/crates/cli-flags/src/
H A Dlib.rs263 pub debug_info: Option<bool>,
789 if let Some(enable) = self.debug.debug_info { in config()
790 config.debug_info(enable); in config()
/wasmtime-44.0.1/crates/environ/src/compile/
H A Dmodule_artifacts.rs73 self.push_debug(dwarf, &debuginfo.dwarf.debug_info); in push_debuginfo()
H A Dmodule_environ.rs771 dwarf.debug_info = gimli::DebugInfo::new(data, endian); in dwarf_section()
/wasmtime-44.0.1/cranelift/codegen/src/machinst/
H A Dvcode.rs260 debug_info: FxHashMap<ValueLabel, Vec<(InsnIndex, InsnIndex, VReg)>>, field
295 debug_info: FxHashMap::default(), in new()
403 let labels = self.debug_info.entry(label).or_insert_with(|| vec![]); in add_value_label()
495 for (label, tuples) in &self.debug_info { in reverse_and_finalize()
/wasmtime-44.0.1/crates/fuzzing/src/generators/
H A Dconfig.rs573 debug_info: bool, field
692 self.debug_info = false; in update_module_config()
/wasmtime-44.0.1/crates/c-api/src/
H A Dconfig.rs58 c.config.debug_info(enable); in wasmtime_config_debug_info_set()
/wasmtime-44.0.1/crates/wasmtime/src/engine/
H A Dserialization.rs749 cfg.debug_info(true) in cache_accounts_for_opt_level()
/wasmtime-44.0.1/crates/wasmtime/src/
H A Dconfig.rs430 pub fn debug_info(&mut self, enable: bool) -> &mut Self { in debug_info() method