| 1418 | |
| 1419 | |
| 1420 | LowLevelILOperandList LowLevelILInstructionBase::GetOperands() const |
| 1421 | { |
| 1422 | auto usage = operationOperandUsage.find(operation); |
| 1423 | if (usage == operationOperandUsage.end()) |
| 1424 | throw LowLevelILInstructionAccessException(); |
| 1425 | auto operandIndex = operationOperandIndex.find(operation); |
| 1426 | if (operandIndex == operationOperandIndex.end()) |
| 1427 | throw LowLevelILInstructionAccessException(); |
| 1428 | return LowLevelILOperandList(*(const LowLevelILInstruction*)this, usage->second, operandIndex->second); |
| 1429 | } |
| 1430 | |
| 1431 | |
| 1432 | uint64_t LowLevelILInstructionBase::GetRawOperandAsInteger(size_t operand) const |
no test coverage detected