1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use crate::arch::Arch;

pub trait InstructionAnalysis: Arch {
    /// Caller guarantees pc_offset <= text_bytes.len()
    fn rule_from_prologue_analysis(text_bytes: &[u8], pc_offset: usize)
        -> Option<Self::UnwindRule>;

    /// Caller guarantees pc_offset <= text_bytes.len()
    fn rule_from_epilogue_analysis(text_bytes: &[u8], pc_offset: usize)
        -> Option<Self::UnwindRule>;

    /// Caller guarantees pc_offset <= text_bytes.len()
    fn rule_from_instruction_analysis(
        text_bytes: &[u8],
        pc_offset: usize,
    ) -> Option<Self::UnwindRule> {
        Self::rule_from_prologue_analysis(text_bytes, pc_offset)
            .or_else(|| Self::rule_from_epilogue_analysis(text_bytes, pc_offset))
    }
}