Struct gimli::EhFrame[][src]

pub struct EhFrame<R: Reader>(_);

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<EndianSlice<'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, EndianSlice, NativeEndian};

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

Trait Implementations

impl<R: Clone + Reader> Clone for EhFrame<R>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<R: Copy + Reader> Copy for EhFrame<R>
[src]

impl<R: Debug + Reader> Debug for EhFrame<R>
[src]

Formats the value using the given formatter. Read more

impl<R: PartialEq + Reader> PartialEq for EhFrame<R>
[src]

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> Eq for EhFrame<R>
[src]

impl<R: Reader> Section<R> for EhFrame<R>
[src]

Returns the ELF section name for this type.

impl<R: Reader> From<R> for EhFrame<R>
[src]

Performs the conversion.

impl<R: Reader> UnwindSection<R> for EhFrame<R>
[src]

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

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

Auto Trait Implementations

impl<R> Send for EhFrame<R> where
    R: Send

impl<R> Sync for EhFrame<R> where
    R: Sync