| 505 | |
| 506 | |
| 507 | HighLevelILOperand::HighLevelILOperand( |
| 508 | const HighLevelILInstruction& instr, HighLevelILOperandUsage usage, size_t operandIndex) : |
| 509 | m_instr(instr), |
| 510 | m_usage(usage), m_operandIndex(operandIndex) |
| 511 | { |
| 512 | auto i = HighLevelILInstructionBase::operandTypeForUsage.find(m_usage); |
| 513 | if (i == HighLevelILInstructionBase::operandTypeForUsage.end()) |
| 514 | throw HighLevelILInstructionAccessException(); |
| 515 | m_type = i->second; |
| 516 | } |
| 517 | |
| 518 | |
| 519 | uint64_t HighLevelILOperand::GetInteger() const |
nothing calls this directly
no test coverage detected