Add a register use, at the start of the instruction (`Before` position).
(&mut self, reg: &mut impl AsMut<Reg>)
| 428 | /// Add a register use, at the start of the instruction (`Before` |
| 429 | /// position). |
| 430 | fn reg_use(&mut self, reg: &mut impl AsMut<Reg>) { |
| 431 | self.reg_maybe_fixed(reg.as_mut(), OperandKind::Use, OperandPos::Early); |
| 432 | } |
| 433 | |
| 434 | /// Add a register use, at the end of the instruction (`After` position). |
| 435 | fn reg_late_use(&mut self, reg: &mut impl AsMut<Reg>) { |
no test coverage detected