(self)
| 55 | /// Returns how many CodeUnits a instruction with this op_arg will be encoded as |
| 56 | #[inline] |
| 57 | pub const fn instr_size(self) -> usize { |
| 58 | (self.0 > 0xff) as usize + (self.0 > 0xff_ff) as usize + (self.0 > 0xff_ff_ff) as usize + 1 |
| 59 | } |
| 60 | |
| 61 | /// returns the arg split into any necessary ExtendedArg components (in big-endian order) and |
| 62 | /// the arg for the real opcode itself |
no outgoing calls
no test coverage detected