Struct gimli::read::UnwindContext
source · [−]pub struct UnwindContext<R: Reader, A: UnwindContextStorage<R> = StoreOnHeap> { /* private fields */ }
Expand description
Common context needed when evaluating the call frame unwinding information.
This structure can be large so it is advisable to place it on the heap. To avoid re-allocating the context multiple times when evaluating multiple CFI programs, it can be reused.
use gimli::{UnwindContext, UnwindTable};
// An uninitialized context.
let mut ctx = Box::new(UnwindContext::new());
// Initialize the context by evaluating the CIE's initial instruction program,
// and generate the unwind table.
let mut table = some_fde.rows(&eh_frame, &bases, &mut ctx)?;
while let Some(row) = table.next_row()? {
// Do stuff with each row...
}
Implementations
Signal Safe Methods
These methods are guaranteed not to allocate, acquire locks, or perform any other signal-unsafe operations, if an non-allocating storage is used.
Trait Implementations
impl<R: Clone + Reader, A: Clone + UnwindContextStorage<R>> Clone for UnwindContext<R, A> where
A::Stack: Clone,
impl<R: Clone + Reader, A: Clone + UnwindContextStorage<R>> Clone for UnwindContext<R, A> where
A::Stack: Clone,
impl<R: PartialEq + Reader, A: PartialEq + UnwindContextStorage<R>> PartialEq<UnwindContext<R, A>> for UnwindContext<R, A> where
A::Stack: PartialEq,
impl<R: PartialEq + Reader, A: PartialEq + UnwindContextStorage<R>> PartialEq<UnwindContext<R, A>> for UnwindContext<R, A> where
A::Stack: PartialEq,
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
impl<R: Eq + Reader, A: Eq + UnwindContextStorage<R>> Eq for UnwindContext<R, A> where
A::Stack: Eq,
Auto Trait Implementations
impl<R, A> RefUnwindSafe for UnwindContext<R, A> where
R: RefUnwindSafe,
<<A as UnwindContextStorage<R>>::Stack as Sealed>::Storage: RefUnwindSafe,
impl<R, A> Send for UnwindContext<R, A> where
R: Send,
<<A as UnwindContextStorage<R>>::Stack as Sealed>::Storage: Send,
impl<R, A> Sync for UnwindContext<R, A> where
R: Sync,
<<A as UnwindContextStorage<R>>::Stack as Sealed>::Storage: Sync,
impl<R, A> Unpin for UnwindContext<R, A> where
R: Unpin,
<<A as UnwindContextStorage<R>>::Stack as Sealed>::Storage: Unpin,
impl<R, A> UnwindSafe for UnwindContext<R, A> where
R: UnwindSafe,
<<A as UnwindContextStorage<R>>::Stack as Sealed>::Storage: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more