Enum gimli::write::CallFrameInstruction [−][src]
An instruction in a frame description entry.
This may be a CFA definition, a register rule, or some other directive.
Variants
Define the CFA rule to use the provided register and offset.
CfaRegister(Register)
Update the CFA rule to use the provided register. The offset is unchanged.
CfaOffset(i32)
Update the CFA rule to use the provided offset. The register is unchanged.
CfaExpression(Expression)
Define the CFA rule to use the provided expression.
Restore(Register)
Restore the initial rule for the register.
Undefined(Register)
The previous value of the register is not recoverable.
SameValue(Register)
The register has not been modified.
The previous value of the register is saved at address CFA + offset.
The previous value of the register is CFA + offset.
The previous value of the register is stored in another register.
Expression(Register, Expression)
The previous value of the register is saved at address given by the expression.
ValExpression(Register, Expression)
The previous value of the register is given by the expression.
Push all register rules onto a stack.
Pop all register rules off the stack.
ArgsSize(u32)
The size of the arguments that have been pushed onto the stack.
Trait Implementations
impl Clone for CallFrameInstruction
[src]
fn clone(&self) -> CallFrameInstruction
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for CallFrameInstruction
[src]
impl Eq for CallFrameInstruction
[src]
impl Hash for CallFrameInstruction
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<CallFrameInstruction> for CallFrameInstruction
[src]
fn eq(&self, other: &CallFrameInstruction) -> bool
[src]
fn ne(&self, other: &CallFrameInstruction) -> bool
[src]
impl StructuralEq for CallFrameInstruction
[src]
impl StructuralPartialEq for CallFrameInstruction
[src]
Auto Trait Implementations
impl RefUnwindSafe for CallFrameInstruction
impl Send for CallFrameInstruction
impl Sync for CallFrameInstruction
impl Unpin for CallFrameInstruction
impl UnwindSafe for CallFrameInstruction
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> CallHasher for T where
T: Hash,
[src]
T: Hash,
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
pub fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,