| 751 | |
| 752 | |
| 753 | size_t MediumLevelILOperand::GetIndex() const |
| 754 | { |
| 755 | if (m_type != IndexMediumLevelOperand) |
| 756 | throw MediumLevelILInstructionAccessException(); |
| 757 | if ((m_usage == OutputSSAMemoryVersionMediumLevelOperandUsage) |
| 758 | || (m_usage == ParameterSSAMemoryVersionMediumLevelOperandUsage)) |
| 759 | return m_instr.GetRawOperandAsExpr(m_operandIndex).GetRawOperandAsIndex(0); |
| 760 | return m_instr.GetRawOperandAsIndex(m_operandIndex); |
| 761 | } |
| 762 | |
| 763 | |
| 764 | uint32_t MediumLevelILOperand::GetIntrinsic() const |
nothing calls this directly
no test coverage detected