| 58 | // Does not directly correspond to UNWIND_CODE |
| 59 | #[derive(Debug)] |
| 60 | struct UnwindCode { |
| 61 | code_offset: u8, |
| 62 | op: UnwindOp, |
| 63 | } |
| 64 | |
| 65 | fn find_runtime_function(addr: u32, function_list: &[RUNTIME_FUNCTION]) -> Option<&RUNTIME_FUNCTION> { |
| 66 | let index = function_list.binary_search_by(|func| func.BeginAddress.cmp(&addr)); |
nothing calls this directly
no outgoing calls
no test coverage detected