(&mut self, _cpu: &mut Cpu, addr: u64)
| 736 | } |
| 737 | |
| 738 | fn symbolize_addr(&mut self, _cpu: &mut Cpu, addr: u64) -> Option<SourceLocation> { |
| 739 | if is_arm_exception_return(addr as u32) { |
| 740 | let mut location = SourceLocation::default(); |
| 741 | location.function = Some(("<signal handler>".into(), addr)); |
| 742 | return Some(location); |
| 743 | } |
| 744 | self.debug_info.symbolize_addr(addr) |
| 745 | } |
| 746 | |
| 747 | fn lookup_symbol(&mut self, symbol: &str) -> Option<u64> { |
| 748 | // Note: we clear the thumb bit because the SLEIGH spec normalizes jumps to thumb addresses. |
no test coverage detected