Enum gimli::RegisterRule [] [src]

pub enum RegisterRule<'input, Endian> where Endian: Endianity {
    Undefined,
    SameValue,
    Offset(i64),
    ValOffset(i64),
    Register(u8),
    Expression(EndianBuf<'input, Endian>),
    ValExpression(EndianBuf<'input, Endian>),
    Architectural,
}

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

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

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.)

"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."

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

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

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

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

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

Trait Implementations

impl<'input, Endian: Clone> Clone for RegisterRule<'input, Endian> where Endian: Endianity
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'input, Endian: Debug> Debug for RegisterRule<'input, Endian> where Endian: Endianity
[src]

Formats the value using the given formatter.

impl<'input, Endian: PartialEq> PartialEq for RegisterRule<'input, Endian> where Endian: Endianity
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'input, Endian: Eq> Eq for RegisterRule<'input, Endian> where Endian: Endianity
[src]