| 712 | |
| 713 | |
| 714 | HighLevelILOperandList HighLevelILInstructionBase::GetOperands() const |
| 715 | { |
| 716 | auto usage = operationOperandUsage.find(operation); |
| 717 | if (usage == operationOperandUsage.end()) |
| 718 | throw HighLevelILInstructionAccessException(); |
| 719 | auto operandIndex = operationOperandIndex.find(operation); |
| 720 | if (operandIndex == operationOperandIndex.end()) |
| 721 | throw HighLevelILInstructionAccessException(); |
| 722 | return HighLevelILOperandList(*(const HighLevelILInstruction*)this, usage->second, operandIndex->second); |
| 723 | } |
| 724 | |
| 725 | |
| 726 | uint64_t HighLevelILInstructionBase::GetRawOperandAsInteger(size_t operand) const |
nothing calls this directly
no test coverage detected