[]Enum symbolic::debuginfo::dwarf::gimli::read::RegisterRule

pub enum RegisterRule<R> where
    R: Reader
{ Undefined, SameValue, Offset(i64), ValOffset(i64), Register(Register), Expression(Expression<R>), ValExpression(Expression<R>), 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

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

impl<R> Clone for RegisterRule<R> where
    R: Reader + Clone

impl<R> Debug for RegisterRule<R> where
    R: Reader + Debug

impl<R> Eq for RegisterRule<R> where
    R: Reader + Eq

impl<R> PartialEq<RegisterRule<R>> for RegisterRule<R> where
    R: Reader + PartialEq<R>, 

impl<R> StructuralEq for RegisterRule<R> where
    R: Reader

impl<R> StructuralPartialEq for RegisterRule<R> where
    R: Reader

Auto Trait Implementations

impl<R> RefUnwindSafe for RegisterRule<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for RegisterRule<R> where
    R: Send
[src]

impl<R> Sync for RegisterRule<R> where
    R: Sync
[src]

impl<R> Unpin for RegisterRule<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for RegisterRule<R> where
    R: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.