pub trait UnwindInfoGenerator<I: MachInstEmit> {
fn create_unwind_info(
context: UnwindInfoContext<'_, I>
) -> CodegenResult<Option<UnwindInfo<Reg>>>;
}
Expand description
UnwindInfo generator/helper.
Required methods
fn create_unwind_info(
context: UnwindInfoContext<'_, I>
) -> CodegenResult<Option<UnwindInfo<Reg>>>
fn create_unwind_info(
context: UnwindInfoContext<'_, I>
) -> CodegenResult<Option<UnwindInfo<Reg>>>
Creates unwind info based on function signature and emitted instructions.