MCPcopy Create free account
hub / github.com/nodejs/node / ExceptionFP

Method ExceptionFP

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

Source from the content-addressed store, hash-verified

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]

Callers 2

color_addressesMethod · 0.80
InterpretMemoryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected