| 227 | |
| 228 | |
| 229 | static ExprId GetShiftedRegister(LowLevelILFunction& il, InstructionOperand& op) |
| 230 | { |
| 231 | if (op.flags.offsetRegUsed == 1) |
| 232 | return GetRegisterShiftedRegister(il, op.reg, op.offset, op.shift); |
| 233 | return GetShifted(il, op.reg, op.imm, op.shift); |
| 234 | } |
| 235 | |
| 236 | |
| 237 | static ExprId ReadAddress(LowLevelILFunction& il, InstructionOperand& op, size_t addr) |
no test coverage detected