(self)
| 1041 | return self.exception_context.esp |
| 1042 | |
| 1043 | def ExceptionFP(self): |
| 1044 | if self.arch == MD_CPU_ARCHITECTURE_AMD64: |
| 1045 | return self.exception_context.rbp |
| 1046 | elif self.arch == MD_CPU_ARCHITECTURE_ARM: |
| 1047 | return None |
| 1048 | elif self.arch == MD_CPU_ARCHITECTURE_ARM64: |
| 1049 | return self.exception_context.fp |
| 1050 | elif self.arch == MD_CPU_ARCHITECTURE_X86: |
| 1051 | return self.exception_context.ebp |
| 1052 | |
| 1053 | def ExceptionThread(self): |
| 1054 | return self.thread_map[self.exception.thread_id] |
no outgoing calls
no test coverage detected