[][src]Enum symbolic_debuginfo::pe::UnwindOperation

pub enum UnwindOperation {
    PushNonVolatile(Register),
    Alloc(u32),
    SetFPRegister,
    SaveNonVolatile(RegisterStackFrameOffset),
    SaveXMM(RegisterStackFrameOffset),
    Epilog,
    SaveXMM128(RegisterStackFrameOffset),
    PushMachineFrame(bool),
    Noop,
}

An unwind operation corresponding to code in the function prolog.

Unwind operations can be used to reverse the effects of the function prolog and restore register values of parent stack frames that have been saved to the stack.

Variants

PushNonVolatile(Register)

Push a nonvolatile integer register, decrementing RSP by 8.

Alloc(u32)

Allocate a fixed-size area on the stack.

SetFPRegister

Establish the frame pointer register by setting the register to some offset of the current RSP. The use of an offset permits establishing a frame pointer that points to the middle of the fixed stack allocation, helping code density by allowing more accesses to use short instruction forms.

SaveNonVolatile(RegisterStackFrameOffset)

Save a nonvolatile integer register on the stack using a MOV instead of a PUSH. This code is primarily used for shrink-wrapping, where a nonvolatile register is saved to the stack in a position that was previously allocated.

SaveXMM(RegisterStackFrameOffset)

Save the lower 64 bits of a nonvolatile XMM register on the stack.

Epilog

Describes the function epilog.

This operation has been introduced with unwind info version 2 and is not implemented yet.

SaveXMM128(RegisterStackFrameOffset)

Save all 128 bits of a nonvolatile XMM register on the stack.

PushMachineFrame(bool)

Push a machine frame. This is used to record the effect of a hardware interrupt or exception. Depending on the error flag, this frame has two different layouts.

This unwind code always appears in a dummy prolog, which is never actually executed but instead appears before the real entry point of an interrupt routine, and exists only to provide a place to simulate the push of a machine frame. This operation records that simulation, which indicates the machine has conceptually done this:

  1. Pop RIP return address from top of stack into temp
  2. $ss, Push old $rsp, $rflags, $cs, temp
  3. If error flag is true, push the error code

Without an error code, RSP was incremented by 40 and the following was frame pushed:

OffsetValue
RSP + 32$ss
RSP + 24old $rsp
RSP + 16$rflags
RSP + 8$cs
RSP + 0$rip

With an error code, RSP was incremented by 48 and the following was frame pushed:

OffsetValue
RSP + 40$ss
RSP + 32old $rsp
RSP + 24$rflags
RSP + 16$cs
RSP + 8$rip
RSP + 0error code
Noop

A reserved operation without effect.

Trait Implementations

impl Debug for UnwindOperation[src]

impl Eq for UnwindOperation[src]

impl Clone for UnwindOperation[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for UnwindOperation[src]

impl PartialEq<UnwindOperation> for UnwindOperation[src]

Auto Trait Implementations

Blanket Implementations

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.

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

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

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