| 2741 | |
| 2742 | |
| 2743 | LowLevelILSSARegisterList LowLevelILInstruction::GetOutputSSARegisters() const |
| 2744 | { |
| 2745 | size_t operandIndex; |
| 2746 | if (GetOperandIndexForUsage(OutputSSARegistersLowLevelOperandUsage, operandIndex)) |
| 2747 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSARegisterList(1); |
| 2748 | throw LowLevelILInstructionAccessException(); |
| 2749 | } |
| 2750 | |
| 2751 | |
| 2752 | LowLevelILInstructionList LowLevelILInstruction::GetParameterExprs() const |
nothing calls this directly
no test coverage detected