pub struct DebugLoc<R> { /* private fields */ }
Expand description
The raw contents of the .debug_loc
section.
Implementations§
source§impl<'input, Endian> DebugLoc<EndianSlice<'input, Endian>>where
Endian: Endianity,
impl<'input, Endian> DebugLoc<EndianSlice<'input, Endian>>where
Endian: Endianity,
sourcepub fn new(section: &'input [u8], endian: Endian) -> Self
pub fn new(section: &'input [u8], endian: Endian) -> Self
Construct a new DebugLoc
instance from the data in the .debug_loc
section.
It is the caller’s responsibility to read the .debug_loc
section and
present it as a &[u8]
slice. That means using some ELF loader on
Linux, a Mach-O loader on macOS, etc.
use gimli::{DebugLoc, LittleEndian};
let debug_loc = DebugLoc::new(read_debug_loc_section_somehow(), LittleEndian);
Trait Implementations§
source§impl<R> Section<R> for DebugLoc<R>
impl<R> Section<R> for DebugLoc<R>
source§fn section_name() -> &'static str
fn section_name() -> &'static str
Returns the ELF section name for this type.