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

Method GetDestMemoryVersion

mediumlevelilinstruction.cpp:2173–2181  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2171
2172
2173size_t MediumLevelILInstruction::GetDestMemoryVersion() const
2174{
2175 size_t operandIndex;
2176 if (GetOperandIndexForUsage(DestMemoryVersionMediumLevelOperandUsage, operandIndex))
2177 return GetRawOperandAsIndex(operandIndex);
2178 if (GetOperandIndexForUsage(OutputSSAMemoryVersionMediumLevelOperandUsage, operandIndex))
2179 return GetRawOperandAsExpr(operandIndex).GetRawOperandAsIndex(0);
2180 throw MediumLevelILInstructionAccessException();
2181}
2182
2183
2184size_t MediumLevelILInstruction::GetSourceMemoryVersion() const

Callers

nothing calls this directly

Tested by

no test coverage detected