| 55 | static Opcode FromCode(uint32_t); |
| 56 | static Opcode FromCode(uint8_t prefix, uint32_t code); |
| 57 | bool HasPrefix() const { return GetInfo().prefix != 0; } |
| 58 | uint8_t GetPrefix() const { return GetInfo().prefix; } |
| 59 | uint32_t GetCode() const { return GetInfo().code; } |
| 60 | size_t GetLength() const { return GetBytes().size(); } |