| 72 | |
| 73 | #[derive(Debug, Clone)] |
| 74 | pub struct BinaryInstruction { |
| 75 | pub opcode: OlaOpcode, |
| 76 | pub op0: Option<OlaOperand>, |
| 77 | pub op1: Option<OlaOperand>, |
| 78 | pub dst: Option<OlaOperand>, |
| 79 | pub prophet: Option<OlaProphet>, |
| 80 | } |
| 81 | |
| 82 | impl BinaryInstruction { |
| 83 | pub const BIT_SHIFT_OP1_IMM: usize = 62; |
nothing calls this directly
no outgoing calls
no test coverage detected