| 2602 | |
| 2603 | |
| 2604 | SSARegister LowLevelILInstruction::GetHighSSARegister() const |
| 2605 | { |
| 2606 | size_t operandIndex; |
| 2607 | if (GetOperandIndexForUsage(HighSSARegisterLowLevelOperandUsage, operandIndex)) |
| 2608 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSARegister(0); |
| 2609 | throw LowLevelILInstructionAccessException(); |
| 2610 | } |
| 2611 | |
| 2612 | |
| 2613 | uint32_t LowLevelILInstruction::GetLowRegister() const |
nothing calls this directly
no test coverage detected