MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / get_stack_contents

Method get_stack_contents

python/lowlevelil.py:971–974  ·  view source on GitHub ↗
(self, offset: int, size: int)

Source from the content-addressed store, hash-verified

969 return result
970
971 def get_stack_contents(self, offset: int, size: int) -> 'variable.RegisterValue':
972 value = core.BNGetLowLevelILStackContentsAtInstruction(self.function.handle, offset, size, self.instr_index)
973 result = variable.RegisterValue.from_BNRegisterValue(value, self.function.arch)
974 return result
975
976 def get_stack_contents_after(self, offset: int, size: int) -> 'variable.RegisterValue':
977 value = core.BNGetLowLevelILStackContentsAfterInstruction(self.function.handle, offset, size, self.instr_index)

Callers

nothing calls this directly

Calls 1

from_BNRegisterValueMethod · 0.80

Tested by

no test coverage detected