| 2539 | |
| 2540 | |
| 2541 | SSARegister LowLevelILInstruction::GetStackSSARegister() const |
| 2542 | { |
| 2543 | size_t operandIndex; |
| 2544 | if (GetOperandIndexForUsage(StackSSARegisterLowLevelOperandUsage, operandIndex)) |
| 2545 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSARegister(0); |
| 2546 | throw LowLevelILInstructionAccessException(); |
| 2547 | } |
| 2548 | |
| 2549 | |
| 2550 | SSARegister LowLevelILInstruction::GetTopSSARegister() const |
nothing calls this directly
no test coverage detected