MCPcopy Create free account
hub / github.com/TimMisiak/dbgrs / UnwindCode

Class UnwindCode

src/stack.rs:60–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58// Does not directly correspond to UNWIND_CODE
59#[derive(Debug)]
60struct UnwindCode {
61 code_offset: u8,
62 op: UnwindOp,
63}
64
65fn 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));

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected