| 241 | |
| 242 | |
| 243 | static ExprId WriteSplitOperands(LowLevelILFunction& il, decomp_result *instr, size_t operandHi, size_t operandLo, ExprId value, |
| 244 | size_t size = 4, uint32_t flags = 0) |
| 245 | { |
| 246 | uint32_t regHi = instr->fields[instr->format->operands[operandHi].field0]; |
| 247 | uint32_t regLo = instr->fields[instr->format->operands[operandLo].field0]; |
| 248 | |
| 249 | return il.SetRegisterSplit(size, GetRegisterByIndex(regHi), GetRegisterByIndex(regLo), value, flags); |
| 250 | } |
| 251 | |
| 252 | |
| 253 | static bool HasWriteback(decomp_result* instr, size_t operand) |
no test coverage detected