Enum goblin::pe::exception::UnwindOperation [−][src]
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.
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(Register, StackFrameOffset)
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(Register, StackFrameOffset)
Save the lower 64 bits of a nonvolatile XMM register on the stack.
Describes the function epilog.
This operation has been introduced with unwind info version 2 and is not implemented yet.
SaveXMM128(Register, StackFrameOffset)
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:
- Pop RIP return address from top of stack into
temp
$ss
, Push old$rsp
,$rflags
,$cs
,temp
- If error flag is
true
, push the error code
Without an error code, RSP was incremented by 40
and the following was frame pushed:
Offset | Value |
---|---|
RSP + 32 | $ss |
RSP + 24 | old $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:
Offset | Value |
---|---|
RSP + 40 | $ss |
RSP + 32 | old $rsp |
RSP + 24 | $rflags |
RSP + 16 | $cs |
RSP + 8 | $rip |
RSP + 0 | error code |
A reserved operation without effect.
Trait Implementations
impl Clone for UnwindOperation
[src]
fn clone(&self) -> UnwindOperation
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for UnwindOperation
[src]
impl Debug for UnwindOperation
[src]
impl Eq for UnwindOperation
[src]
impl PartialEq<UnwindOperation> for UnwindOperation
[src]
fn eq(&self, other: &UnwindOperation) -> bool
[src]
fn ne(&self, other: &UnwindOperation) -> bool
[src]
impl StructuralEq for UnwindOperation
[src]
impl StructuralPartialEq for UnwindOperation
[src]
Auto Trait Implementations
impl RefUnwindSafe for UnwindOperation
impl Send for UnwindOperation
impl Sync for UnwindOperation
impl Unpin for UnwindOperation
impl UnwindSafe for UnwindOperation
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> 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>,