Enum gimli::read::RawLocListEntry
source · pub enum RawLocListEntry<R: Reader> {
AddressOrOffsetPair {
begin: u64,
end: u64,
data: Expression<R>,
},
BaseAddress {
addr: u64,
},
BaseAddressx {
addr: DebugAddrIndex<R::Offset>,
},
StartxEndx {
begin: DebugAddrIndex<R::Offset>,
end: DebugAddrIndex<R::Offset>,
data: Expression<R>,
},
StartxLength {
begin: DebugAddrIndex<R::Offset>,
length: u64,
data: Expression<R>,
},
OffsetPair {
begin: u64,
end: u64,
data: Expression<R>,
},
DefaultLocation {
data: Expression<R>,
},
StartEnd {
begin: u64,
end: u64,
data: Expression<R>,
},
StartLength {
begin: u64,
length: u64,
data: Expression<R>,
},
}
Expand description
A raw entry in .debug_loclists.
Variants§
AddressOrOffsetPair
Fields
§
data: Expression<R>
expression
A location from DWARF version <= 4.
BaseAddress
DW_LLE_base_address
BaseAddressx
Fields
§
addr: DebugAddrIndex<R::Offset>
base address
DW_LLE_base_addressx
StartxEndx
Fields
§
begin: DebugAddrIndex<R::Offset>
start of range
§
end: DebugAddrIndex<R::Offset>
end of range
§
data: Expression<R>
expression
DW_LLE_startx_endx
StartxLength
DW_LLE_startx_length
OffsetPair
DW_LLE_offset_pair
DefaultLocation
Fields
§
data: Expression<R>
expression
DW_LLE_default_location
StartEnd
DW_LLE_start_end
StartLength
DW_LLE_start_length
Trait Implementations§
Auto Trait Implementations§
impl<R> RefUnwindSafe for RawLocListEntry<R>where R: RefUnwindSafe, <R as Reader>::Offset: RefUnwindSafe,
impl<R> Send for RawLocListEntry<R>where R: Send, <R as Reader>::Offset: Send,
impl<R> Sync for RawLocListEntry<R>where R: Sync, <R as Reader>::Offset: Sync,
impl<R> Unpin for RawLocListEntry<R>where R: Unpin, <R as Reader>::Offset: Unpin,
impl<R> UnwindSafe for RawLocListEntry<R>where R: UnwindSafe, <R as Reader>::Offset: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more