| 2182 | |
| 2183 | |
| 2184 | size_t MediumLevelILInstruction::GetSourceMemoryVersion() const |
| 2185 | { |
| 2186 | size_t operandIndex; |
| 2187 | if (GetOperandIndexForUsage(SourceMemoryVersionMediumLevelOperandUsage, operandIndex)) |
| 2188 | return GetRawOperandAsIndex(operandIndex); |
| 2189 | if (GetOperandIndexForUsage(ParameterSSAMemoryVersionMediumLevelOperandUsage, operandIndex)) |
| 2190 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsIndex(0); |
| 2191 | throw MediumLevelILInstructionAccessException(); |
| 2192 | } |
| 2193 | |
| 2194 | |
| 2195 | MediumLevelILIndexMap MediumLevelILInstruction::GetTargets() const |
nothing calls this directly
no test coverage detected