(self)
| 1031 | return self.exception_context.eip |
| 1032 | |
| 1033 | def ExceptionSP(self): |
| 1034 | if self.arch == MD_CPU_ARCHITECTURE_AMD64: |
| 1035 | return self.exception_context.rsp |
| 1036 | elif self.arch == MD_CPU_ARCHITECTURE_ARM: |
| 1037 | return self.exception_context.sp |
| 1038 | elif self.arch == MD_CPU_ARCHITECTURE_ARM64: |
| 1039 | return self.exception_context.sp |
| 1040 | elif self.arch == MD_CPU_ARCHITECTURE_X86: |
| 1041 | return self.exception_context.esp |
| 1042 | |
| 1043 | def ExceptionFP(self): |
| 1044 | if self.arch == MD_CPU_ARCHITECTURE_AMD64: |
no outgoing calls
no test coverage detected