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§
source§impl<R: Reader> UnwindContext<R>
impl<R: Reader> UnwindContext<R>
source§impl<R: Reader, A: UnwindContextStorage<R>> UnwindContext<R, A>
impl<R: Reader, A: UnwindContextStorage<R>> UnwindContext<R, A>
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§
source§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,
source§fn clone(&self) -> UnwindContext<R, A>
fn clone(&self) -> UnwindContext<R, A>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<R: Reader, S: UnwindContextStorage<R>> Debug for UnwindContext<R, S>
impl<R: Reader, S: UnwindContextStorage<R>> Debug for UnwindContext<R, S>
source§impl<R: Reader, A: UnwindContextStorage<R>> Default for UnwindContext<R, A>
impl<R: Reader, A: UnwindContextStorage<R>> Default for UnwindContext<R, A>
source§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,
source§fn eq(&self, other: &UnwindContext<R, A>) -> bool
fn eq(&self, other: &UnwindContext<R, A>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.