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

Method GetSSAVariable

mediumlevelilinstruction.cpp:788–795  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

786
787
788SSAVariable MediumLevelILOperand::GetSSAVariable() const
789{
790 if (m_type != SSAVariableMediumLevelOperand)
791 throw MediumLevelILInstructionAccessException();
792 if (m_usage == PartialSSAVariableSourceMediumLevelOperandUsage)
793 return m_instr.GetRawOperandAsPartialSSAVariableSource(m_operandIndex - 2);
794 return m_instr.GetRawOperandAsSSAVariable(m_operandIndex);
795}
796
797
798MediumLevelILIndexList MediumLevelILOperand::GetIndexList() const

Callers

nothing calls this directly

Tested by

no test coverage detected