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

Method IsExceptionStackAddress

deps/v8/tools/grokdump.py:777–779  ·  view source on GitHub ↗
(self, address)

Source from the content-addressed store, hash-verified

775 return (address % self.MachinePointerSize()) == 0
776
777 def IsExceptionStackAddress(self, address):
778 if not self.IsAlignedAddress(address): return False
779 return self.IsAnyExceptionStackAddress(address)
780
781 def IsAnyExceptionStackAddress(self, address):
782 return self.StackTop() <= address <= self.StackBottom()

Callers 7

AddressTypeMarkerMethod · 0.80
RelativeOffsetMethod · 0.80
IsFrameMarkerMethod · 0.80
TryInferFramePointerMethod · 0.80
TryInferContextMethod · 0.80
InterpretMemoryMethod · 0.80

Calls 2

IsAlignedAddressMethod · 0.95

Tested by

no test coverage detected