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

Method _get_var_ssa

python/mediumlevelil.py:1030–1033  ·  view source on GitHub ↗
(self, operand_index1: int, operand_index2: int)

Source from the content-addressed store, hash-verified

1028 return variable.Variable.from_identifier(self.function, value)
1029
1030 def _get_var_ssa(self, operand_index1: int, operand_index2: int) -> SSAVariable:
1031 var = variable.Variable.from_identifier(self.function, self.instr.operands[operand_index1])
1032 version = self.instr.operands[operand_index2]
1033 return SSAVariable(var, version)
1034
1035 def _get_var_ssa_dest_and_src(self, operand_index1: int, operand_index2: int) -> SSAVariable:
1036 var = variable.Variable.from_identifier(self.function, self.instr.operands[operand_index1])

Callers 14

srcMethod · 0.80
varMethod · 0.80
srcMethod · 0.80
srcMethod · 0.80
srcMethod · 0.80
highMethod · 0.80
lowMethod · 0.80
destMethod · 0.80
destMethod · 0.80
highMethod · 0.80
lowMethod · 0.80
srcMethod · 0.80

Calls 2

SSAVariableClass · 0.70
from_identifierMethod · 0.45

Tested by

no test coverage detected