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

Method _get_reg_stack

python/lowlevelil.py:1020–1021  ·  view source on GitHub ↗
(self, operand_index: int)

Source from the content-addressed store, hash-verified

1018 return ILIntrinsic(self.function.arch, architecture.IntrinsicIndex(self.instr.operands[operand_index]))
1019
1020 def _get_reg_stack(self, operand_index: int) -> ILRegisterStack:
1021 return ILRegisterStack(self.function.arch, architecture.RegisterStackIndex(self.instr.operands[operand_index]))
1022
1023 def _get_int(self, operand_index: int) -> int:
1024 return (self.instr.operands[operand_index] & ((1 << 63) - 1)) - (self.instr.operands[operand_index] & (1 << 63))

Callers 5

stackMethod · 0.80
stackMethod · 0.80
stackMethod · 0.80
stackMethod · 0.80
stackMethod · 0.80

Calls 1

ILRegisterStackClass · 0.85

Tested by

no test coverage detected