Struct gimli::read::UnwindContext

source ·
pub struct UnwindContext<T: ReaderOffset, A: UnwindContextStorage<T> = StoreOnHeap> { /* private fields */ }
Expand description

Common context needed when evaluating the call frame unwinding information.

By default, this structure is small and allocates its internal storage on the heap using Box during UnwindContext::new.

This can be overridden by providing a custom UnwindContextStorage type parameter. When using a custom storage with in-line arrays, the UnwindContext type itself will be big, so in that case it’s recommended to place UnwindContext on the heap, e.g. using Box::new(UnwindContext::<R, MyCustomStorage>::new_in()).

To avoid re-allocating the context multiple times when evaluating multiple CFI programs, the same UnwindContext can be reused for multiple unwinds.

use gimli::{UnwindContext, UnwindTable};

// An uninitialized context.
let mut ctx = 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<T: ReaderOffset> UnwindContext<T>

source

pub fn new() -> Self

Construct a new call frame unwinding context.

source§

impl<T: ReaderOffset, A: UnwindContextStorage<T>> UnwindContext<T, 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.

source

pub fn new_in() -> Self

Construct a new call frame unwinding context.

Trait Implementations§

source§

impl<T: Clone + ReaderOffset, A: Clone + UnwindContextStorage<T>> Clone for UnwindContext<T, A>
where A::Stack: Clone,

source§

fn clone(&self) -> UnwindContext<T, A>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: ReaderOffset, S: UnwindContextStorage<T>> Debug for UnwindContext<T, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: ReaderOffset, A: UnwindContextStorage<T>> Default for UnwindContext<T, A>

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<T: PartialEq + ReaderOffset, A: PartialEq + UnwindContextStorage<T>> PartialEq for UnwindContext<T, A>
where A::Stack: PartialEq,

source§

fn eq(&self, other: &UnwindContext<T, A>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq + ReaderOffset, A: Eq + UnwindContextStorage<T>> Eq for UnwindContext<T, A>
where A::Stack: Eq,

source§

impl<T: ReaderOffset, A: UnwindContextStorage<T>> StructuralPartialEq for UnwindContext<T, A>

Auto Trait Implementations§

§

impl<T, A> Freeze for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: Freeze, T: Freeze,

§

impl<T, A> RefUnwindSafe for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: RefUnwindSafe, T: RefUnwindSafe,

§

impl<T, A> Send for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: Send, T: Send,

§

impl<T, A> Sync for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: Sync, T: Sync,

§

impl<T, A> Unpin for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: Unpin, T: Unpin,

§

impl<T, A> UnwindSafe for UnwindContext<T, A>
where <<A as UnwindContextStorage<T>>::Stack as Sealed>::Storage: UnwindSafe, T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.