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

Method GetOutputSSAVariables

mediumlevelilinstruction.cpp:2224–2232  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2222
2223
2224MediumLevelILSSAVariableList MediumLevelILInstruction::GetOutputSSAVariables() const
2225{
2226 size_t operandIndex;
2227 if (GetOperandIndexForUsage(OutputSSAVariablesMediumLevelOperandUsage, operandIndex))
2228 return GetRawOperandAsSSAVariableList(operandIndex);
2229 if (GetOperandIndexForUsage(OutputSSAVariablesSubExprMediumLevelOperandUsage, operandIndex))
2230 return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSAVariableList(1);
2231 throw MediumLevelILInstructionAccessException();
2232}
2233
2234
2235MediumLevelILInstructionList MediumLevelILInstruction::GetParameterExprs() const

Callers

nothing calls this directly

Tested by

no test coverage detected