pub fn classify_exception(
exception_type: i32,
exception_codes: &[i64],
disassembly: &str,
pc: u64,
cpu_type: CpuType,
config: &ClassifyConfig,
) -> ExploitabilityResultExpand description
Core exploitability analysis from exception + disassembly.
Ported from CrashWrangler’s catch_mach_exception_raise_state_identity
(exc_handler.m lines 461-782).