Enum gimli::read::RawLocListEntry[][src]

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

A location from DWARF version <= 4.

Fields of AddressOrOffsetPair

begin: u64

Start of range. May be an address or an offset.

end: u64

End of range. May be an address or an offset.

data: Expression<R>

expression

BaseAddress

DW_LLE_base_address

Fields of BaseAddress

addr: u64

base address

BaseAddressx

DW_LLE_base_addressx

Fields of BaseAddressx

addr: DebugAddrIndex<R::Offset>

base address

StartxEndx

DW_LLE_startx_endx

Fields of StartxEndx

begin: DebugAddrIndex<R::Offset>

start of range

end: DebugAddrIndex<R::Offset>

end of range

data: Expression<R>

expression

StartxLength

DW_LLE_startx_length

Fields of StartxLength

begin: DebugAddrIndex<R::Offset>

start of range

length: u64

length of range

data: Expression<R>

expression

OffsetPair

DW_LLE_offset_pair

Fields of OffsetPair

begin: u64

start of range

end: u64

end of range

data: Expression<R>

expression

DefaultLocation

DW_LLE_default_location

Fields of DefaultLocation

data: Expression<R>

expression

StartEnd

DW_LLE_start_end

Fields of StartEnd

begin: u64

start of range

end: u64

end of range

data: Expression<R>

expression

StartLength

DW_LLE_start_length

Fields of StartLength

begin: u64

start of range

length: u64

length of range

data: Expression<R>

expression

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.