MCPcopy Index your code
hub / github.com/nodejs/node / ExceptionSP

Method ExceptionSP

deps/v8/tools/grokdump.py:1033–1041  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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:

Callers 6

StackTopMethod · 0.95
color_addressesMethod · 0.80
__init__Method · 0.80
_AnalyzeMinidumpFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected