Struct gimli::EhFrame [] [src]

pub struct EhFrame<'input, Endian>(_)
where
    Endian: Endianity
;

EhFrame contains the frame unwinding information needed during exception handling found in the .eh_frame section.

Most interesting methods are defined in the UnwindSection trait.

See DebugFrame for some discussion on the differences between .debug_frame and .eh_frame.

Methods

impl<'input, Endian> EhFrame<'input, Endian> where
    Endian: Endianity
[src]

Construct a new EhFrame instance from the data in the .debug_frame section.

It is the caller's responsibility to read the section and present it as a &[u8] slice. That means using some ELF loader on Linux, a Mach-O loader on OSX, etc.

use gimli::{EhFrame, NativeEndian};

// Use with `.debug_frame`
let debug_frame = EhFrame::<NativeEndian>::new(read_debug_frame_section_somehow());

Trait Implementations

impl<'input, Endian: Clone> Clone for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'input, Endian: Copy> Copy for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

impl<'input, Endian: Debug> Debug for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

Formats the value using the given formatter.

impl<'input, Endian: PartialEq> PartialEq for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'input, Endian: Eq> Eq for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

impl<'input, Endian> Section<'input> for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

Returns the ELF section name for this type.

impl<'input, Endian> From<&'input [u8]> for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

Performs the conversion.

impl<'input, Endian> UnwindSection<'input, Endian> for EhFrame<'input, Endian> where
    Endian: Endianity
[src]

The offset type associated with this CFI section. Either DebugFrameOffset or EhFrameOffset. Read more

Construct a Self::Offset.

Iterate over the CommonInformationEntrys and FrameDescriptionEntrys in this .debug_frame section. Read more

Parse the CommonInformationEntry at the given offset.

Find the frame unwind information for the given address. Read more