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

Method GetSSAVariableList

mediumlevelilinstruction.cpp:824–831  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

822
823
824MediumLevelILSSAVariableList MediumLevelILOperand::GetSSAVariableList() const
825{
826 if (m_type != SSAVariableListMediumLevelOperand)
827 throw MediumLevelILInstructionAccessException();
828 if (m_usage == OutputSSAVariablesSubExprMediumLevelOperandUsage)
829 return m_instr.GetRawOperandAsExpr(m_operandIndex).GetRawOperandAsSSAVariableList(1);
830 return m_instr.GetRawOperandAsSSAVariableList(m_operandIndex);
831}
832
833
834MediumLevelILInstructionList MediumLevelILOperand::GetExprList() const

Callers

nothing calls this directly

Tested by

no test coverage detected