Struct gimli::read::DebugInfo [−][src]
pub struct DebugInfo<R> { /* fields omitted */ }
Expand description
The DebugInfo
struct represents the DWARF debugging information found in
the .debug_info
section.
Implementations
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);
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
.
Get the UnitHeader located at offset from this .debug_info section.
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
Returns the ELF section name for this type.
Returns the ELF section name (if any) for this type when used in a dwo file. Read more
Try to load the section using the given loader function.
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
fn lookup_offset_id(&self, id: ReaderOffsetId) -> Option<(SectionId, R::Offset)> where
R: Reader,
Returns the Reader
for this section.
Auto Trait Implementations
impl<R> RefUnwindSafe for DebugInfo<R> where
R: RefUnwindSafe,
impl<R> UnwindSafe for DebugInfo<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more