pub trait UnwindInfoGenerator<I: MachInstEmit> {
    fn create_unwind_info(
        context: UnwindInfoContext<'_, I>
    ) -> CodegenResult<Option<UnwindInfo<Reg>>>; }
Expand description

UnwindInfo generator/helper.

Required methods

Creates unwind info based on function signature and emitted instructions.

Implementors