Struct gimli::read::DebugAbbrev [−][src]
pub struct DebugAbbrev<R> { /* fields omitted */ }
Expand description
The DebugAbbrev
struct represents the abbreviations describing
DebuggingInformationEntry
s’ attribute names and forms found in the
.debug_abbrev
section.
Implementations
Construct a new DebugAbbrev
instance from the data in the .debug_abbrev
section.
It is the caller’s responsibility to read the .debug_abbrev
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::{DebugAbbrev, LittleEndian};
let debug_abbrev = DebugAbbrev::new(read_debug_abbrev_section_somehow(), LittleEndian);
pub fn abbreviations(
&self,
debug_abbrev_offset: DebugAbbrevOffset<R::Offset>
) -> Result<Abbreviations>
pub fn abbreviations(
&self,
debug_abbrev_offset: DebugAbbrevOffset<R::Offset>
) -> Result<Abbreviations>
Parse the abbreviations at the given offset
within this
.debug_abbrev
section.
The offset
should generally be retrieved from a unit header.
Create a DebugAbbrev
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::DebugAbbrev<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 “default value” for a type. Read more
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 DebugAbbrev<R> where
R: RefUnwindSafe,
impl<R> Send for DebugAbbrev<R> where
R: Send,
impl<R> Sync for DebugAbbrev<R> where
R: Sync,
impl<R> Unpin for DebugAbbrev<R> where
R: Unpin,
impl<R> UnwindSafe for DebugAbbrev<R> where
R: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more