Struct cranelift_codegen::isa::unwind::input::UnwindInfo [−][src]
pub struct UnwindInfo<Reg> {
pub prologue_size: CodeOffset,
pub prologue_unwind_codes: Vec<(CodeOffset, UnwindCode<Reg>)>,
pub epilogues_unwind_codes: Vec<Vec<(CodeOffset, UnwindCode<Reg>)>>,
pub function_size: CodeOffset,
pub word_size: u8,
pub initial_sp_offset: u8,
}Expand description
Unwind information as generated by a backend.
Fields
prologue_size: CodeOffsetSize of the prologue.
prologue_unwind_codes: Vec<(CodeOffset, UnwindCode<Reg>)>Unwind codes for prologue.
epilogues_unwind_codes: Vec<Vec<(CodeOffset, UnwindCode<Reg>)>>Unwind codes for epilogues.
function_size: CodeOffsetEntire function size.
word_size: u8Platform word size in bytes.
initial_sp_offset: u8Initial stack pointer offset.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<Reg> RefUnwindSafe for UnwindInfo<Reg> where
Reg: RefUnwindSafe,
impl<Reg> Send for UnwindInfo<Reg> where
Reg: Send,
impl<Reg> Sync for UnwindInfo<Reg> where
Reg: Sync,
impl<Reg> Unpin for UnwindInfo<Reg> where
Reg: Unpin,
impl<Reg> UnwindSafe for UnwindInfo<Reg> where
Reg: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.