Home
last modified time | relevance | path

Searched refs:Backtrace (Results 1 – 12 of 12) sorted by relevance

/wasmtime-44.0.1/crates/core/src/error/
H A Dbacktrace.rs1 use std::backtrace::Backtrace;
22 pub fn capture() -> Backtrace { in capture()
24 Backtrace::capture() in capture()
26 Backtrace::disabled() in capture()
H A Derror.rs14 use std::backtrace::{Backtrace, BacktraceStatus};
63 fn take_backtrace(&mut self) -> Option<Backtrace>; in take_backtrace() argument
88 pub(crate) backtrace: Option<Backtrace>,
103 pub(crate) backtrace: Option<Backtrace>,
803 pub fn backtrace(&self) -> &Backtrace { in backtrace() argument
1288 fn take_backtrace(&mut self) -> Option<Backtrace> { in take_backtrace() argument
1367 fn take_backtrace(&mut self) -> Option<Backtrace> { in take_backtrace() argument
1423 fn take_backtrace(&mut self) -> Option<Backtrace> { in take_backtrace() argument
1480 fn take_backtrace(&mut self) -> Option<Backtrace> { in take_backtrace() argument
1898 fn backtrace(&self) -> &Backtrace { in backtrace() argument
[all …]
H A Dcontext.rs285 fn take_backtrace(&mut self) -> Option<std::backtrace::Backtrace> { in take_backtrace() argument
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/traphandlers/
H A Dcoredump_enabled.rs3 use crate::runtime::vm::{Backtrace, VMStoreContext};
10 pub bt: Backtrace,
35 Backtrace::new_with_trap_state(vm_store_context, self.unwinder, self, trap_pc_and_fp) in capture_coredump()
H A Dbacktrace.rs40 pub struct Backtrace(Vec<Frame>); struct
66 impl Backtrace { implementation
68 pub fn empty() -> Backtrace { in empty()
69 Backtrace(Vec::new()) in empty()
73 pub fn new(store: &StoreOpaque) -> Backtrace { in new() argument
80 None => Backtrace(vec![]), in new()
94 ) -> Backtrace { in new_with_trap_state() argument
111 Backtrace(frames) in new_with_trap_state()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Dtrap.rs208 _runtime_trace: crate::runtime::vm::Backtrace,
264 crate::runtime::vm::Backtrace::new(store.0), in capture()
272 _runtime_trace: crate::runtime::vm::Backtrace::empty(), in capture()
292 crate::runtime::vm::Backtrace::new(store.0), in force_capture()
300 runtime_trace: crate::runtime::vm::Backtrace, in from_captured() argument
308 _runtime_trace: crate::runtime::vm::Backtrace::empty(), in from_captured()
H A Dprofiling.rs3 use crate::runtime::vm::Backtrace;
207 let backtrace = Backtrace::new(store.as_context().0); in sample()
227 let backtrace = Backtrace::new(store.as_context().0); in call_hook()
305 backtrace: &'a Backtrace, in lookup_frames() argument
H A Ddebug.rs7 use crate::vm::{Activation, Backtrace};
139 Backtrace::activations(self) in debug_exit_frames()
H A Dstore.rs2195 use crate::runtime::vm::Backtrace; in trace_wasm_stack_roots()
2198 Backtrace::trace(self, |frame| { in trace_wasm_stack_roots()
2208 use crate::{runtime::vm::Backtrace, vm::VMStackState}; in trace_wasm_continuation_roots()
2223 Backtrace::trace_suspended_continuation(self, continuation.deref(), |frame| { in trace_wasm_continuation_roots()
/wasmtime-44.0.1/crates/fuzzing/src/
H A Doom.rs6 use backtrace::Backtrace;
100 let bt = Backtrace::new(); in alloc()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/
H A Dtraphandlers.rs35 pub use self::backtrace::Backtrace;
351 pub backtrace: Option<Backtrace>,
490 backtrace: Option<Backtrace>,
985 ) -> Option<Backtrace> { in capture_backtrace() argument
990 Some(unsafe { Backtrace::new_with_trap_state(limits, self.unwinder, self, trap_pc_and_fp) }) in capture_backtrace()
/wasmtime-44.0.1/crates/fiber/src/
H A Dlib.rs357 let trace = backtrace::Backtrace::new(); in backtrace_traces_to_host()