| 2548 | |
| 2549 | |
| 2550 | SSARegister LowLevelILInstruction::GetTopSSARegister() const |
| 2551 | { |
| 2552 | size_t operandIndex; |
| 2553 | if (GetOperandIndexForUsage(TopSSARegisterLowLevelOperandUsage, operandIndex)) |
| 2554 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSARegister(0); |
| 2555 | throw LowLevelILInstructionAccessException(); |
| 2556 | } |
| 2557 | |
| 2558 | |
| 2559 | LowLevelILInstruction LowLevelILInstruction::GetLeftExpr() const |
nothing calls this directly
no test coverage detected