Home
last modified time | relevance | path

Searched refs:FrameCursor (Results 1 – 3 of 3) sorted by relevance

/wasmtime-44.0.1/crates/unwinder/src/
H A Dstackwalk.rs102 pub struct FrameCursor { struct
108 impl FrameCursor { implementation
138 pub unsafe fn new(pc: usize, fp: usize, trampoline_fp: usize) -> FrameCursor { in new() argument
149 FrameCursor { in new()
293 let mut cursor = unsafe { FrameCursor::new(pc, fp, trampoline_fp) }; in frame_iterator()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/vm/traphandlers/
H A Dbacktrace.rs36 use wasmtime_unwinder::FrameCursor;
59 pub(crate) unsafe fn cursor(&self) -> FrameCursor { in cursor() argument
62 unsafe { FrameCursor::new(self.exit_pc, self.exit_fp, self.entry_trampoline_fp) } in cursor()
/wasmtime-44.0.1/crates/wasmtime/src/runtime/
H A Ddebug.rs30 use wasmtime_unwinder::{Frame, FrameCursor};
397 cursor: FrameCursor,