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

Method get_var_ssa

python/highlevelil.py:714–717  ·  view source on GitHub ↗
(self, operand_index1: int, operand_index2: int)

Source from the content-addressed store, hash-verified

712 return variable.Variable.from_identifier(self.function, value)
713
714 def get_var_ssa(self, operand_index1: int, operand_index2: int) -> 'mediumlevelil.SSAVariable':
715 var = variable.Variable.from_identifier(self.function, self.core_instr.operands[operand_index1])
716 version = self.core_instr.operands[operand_index2]
717 return mediumlevelil.SSAVariable(var, version)
718
719 def get_var_ssa_dest_and_src(self, operand_index1: int, operand_index2: int) -> 'mediumlevelil.SSAVariable':
720 var = variable.Variable.from_identifier(self.function, self.core_instr.operands[operand_index1])

Callers 6

destMethod · 0.80
varMethod · 0.80
destMethod · 0.80
srcMethod · 0.80
destMethod · 0.80
srcMethod · 0.80

Calls 2

SSAVariableMethod · 0.80
from_identifierMethod · 0.45

Tested by

no test coverage detected