| 2799 | |
| 2800 | |
| 2801 | LowLevelILSSARegisterOrFlagList LowLevelILInstruction::GetOutputSSARegisterOrFlagList() const |
| 2802 | { |
| 2803 | size_t operandIndex; |
| 2804 | if (GetOperandIndexForUsage(OutputSSARegisterOrFlagListLowLevelOperandUsage, operandIndex)) |
| 2805 | return GetRawOperandAsSSARegisterOrFlagList(operandIndex); |
| 2806 | if (GetOperandIndexForUsage(OutputMemoryIntrinsicLowLevelOperandUsage, operandIndex)) |
| 2807 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSARegisterOrFlagList(1); |
| 2808 | throw LowLevelILInstructionAccessException(); |
| 2809 | } |
| 2810 | |
| 2811 | |
| 2812 | LowLevelILIndexList LowLevelILInstruction::GetSourceMemoryVersions() const |
nothing calls this directly
no test coverage detected