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

Method get_int

python/highlevelil.py:679–681  ·  view source on GitHub ↗
(self, operand_index: int)

Source from the content-addressed store, hash-verified

677 return core.BNGetHighLevelILSSAVarVersionAtILInstruction(self.function.handle, var_data, self.instr_index)
678
679 def get_int(self, operand_index: int) -> int:
680 value = self.core_instr.operands[operand_index]
681 return (value & ((1 << 63) - 1)) - (value & (1 << 63))
682
683 def get_float(self, operand_index: int) -> float:
684 value = self.core_instr.operands[operand_index]

Callers 15

dest_memoryMethod · 0.80
src_memoryMethod · 0.80
dest_memoryMethod · 0.80
src_memoryMethod · 0.80
destMethod · 0.80
offsetMethod · 0.80
src_memoryMethod · 0.80
offsetMethod · 0.80
src_memoryMethod · 0.80
src_memoryMethod · 0.80
offsetMethod · 0.80
constantMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected