Enum gimli::read::RegisterRule

source ·
pub enum RegisterRule<R: Reader> {
    Undefined,
    SameValue,
    Offset(i64),
    ValOffset(i64),
    Register(Register),
    Expression(Expression<R>),
    ValExpression(Expression<R>),
    Architectural,
}
Expand description

An entry in the abstract CFI table that describes how to find the value of a register.

“The register columns contain rules that describe whether a given register has been saved and the rule to find the value for the register in the previous frame.”

Variants§

§

Undefined

A register that has this rule has no recoverable value in the previous frame. (By convention, it is not preserved by a callee.)

§

SameValue

This register has not been modified from the previous frame. (By convention, it is preserved by the callee, but the callee has not modified it.)

§

Offset(i64)

“The previous value of this register is saved at the address CFA+N where CFA is the current CFA value and N is a signed offset.”

§

ValOffset(i64)

“The previous value of this register is the value CFA+N where CFA is the current CFA value and N is a signed offset.”

§

Register(Register)

“The previous value of this register is stored in another register numbered R.”

§

Expression(Expression<R>)

“The previous value of this register is located at the address produced by executing the DWARF expression.”

§

ValExpression(Expression<R>)

“The previous value of this register is the value produced by executing the DWARF expression.”

§

Architectural

“The rule is defined externally to this specification by the augmenter.”

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
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
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.