[][src]Struct gimli::read::DebugInfo

pub struct DebugInfo<R> { /* fields omitted */ }

The DebugInfo struct represents the DWARF debugging information found in the .debug_info section.

Implementations

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

pub fn new(debug_info_section: &'input [u8], endian: Endian) -> Self[src]

Construct a new DebugInfo instance from the data in the .debug_info section.

It is the caller's responsibility to read the .debug_info 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::{DebugInfo, LittleEndian};

let debug_info = DebugInfo::new(read_debug_info_section_somehow(), LittleEndian);

impl<R: Reader> DebugInfo<R>[src]

pub fn units(&self) -> CompilationUnitHeadersIter<R>[src]

Iterate the compilation- and partial-units in this .debug_info section.

use gimli::{DebugInfo, LittleEndian};

let debug_info = DebugInfo::new(read_debug_info_section_somehow(), LittleEndian);

let mut iter = debug_info.units();
while let Some(unit) = iter.next().unwrap() {
    println!("unit's length is {}", unit.unit_length());
}

Can be used with FallibleIterator.

pub fn header_from_offset(
    &self,
    offset: DebugInfoOffset<R::Offset>
) -> Result<CompilationUnitHeader<R>>
[src]

Get the CompilationUnitHeader located at offset from this .debug_info section.

impl<T> DebugInfo<T>[src]

pub fn borrow<'a, F, R>(&'a self, borrow: F) -> DebugInfo<R> where
    F: FnMut(&'a T) -> R, 
[src]

Create a DebugInfo section that references the data in self.

This is useful when R implements Reader but T does not.

Example Usage

// Read the DWARF section into a `Vec` with whatever object loader you're using.
let owned_section: gimli::DebugInfo<Vec<u8>> = load_section();
// Create a reference to the DWARF section.
let section = owned_section.borrow(|section| {
    gimli::EndianSlice::new(&section, gimli::LittleEndian)
});

Trait Implementations

impl<R: Clone> Clone for DebugInfo<R>[src]

impl<R: Copy> Copy for DebugInfo<R>[src]

impl<R: Debug> Debug for DebugInfo<R>[src]

impl<R: Default> Default for DebugInfo<R>[src]

impl<R> From<R> for DebugInfo<R>[src]

impl<R> Section<R> for DebugInfo<R>[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for DebugInfo<R> where
    R: RefUnwindSafe

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

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

impl<R> Unpin for DebugInfo<R> where
    R: Unpin

impl<R> UnwindSafe for DebugInfo<R> where
    R: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<!> for T[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.