Struct gimli::read::DebugInfo [−][src]
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][−]
Endian: Endianity,
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) -> DebugInfoUnitHeadersIter<R>
[src][−]
Iterate the 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<UnitHeader<R>>
[src][−]
&self,
offset: DebugInfoOffset<R::Offset>
) -> Result<UnitHeader<R>>
Get the UnitHeader 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][−]
F: FnMut(&'a T) -> R,
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(§ion, 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> Send for DebugInfo<R> where
R: Send,
R: Send,
impl<R> Sync for DebugInfo<R> where
R: Sync,
R: Sync,
impl<R> Unpin for DebugInfo<R> where
R: Unpin,
R: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
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][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,