| 33 | |
| 34 | |
| 35 | static inline ExprId ReadRegisterOrPointer(LowLevelILFunction& il, const InstructionOperand& op, size_t addr) |
| 36 | { |
| 37 | if (op.reg == REG_PC) |
| 38 | return il.ConstPointer(4, (addr+8)); |
| 39 | return il.Register(get_register_size(op.reg), op.reg); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | ExprId GetCondition(LowLevelILFunction& il, Condition cond) |
no test coverage detected