Home
last modified time | relevance | path

Searched refs:InstructionType (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/crates/rbpf/src/
H A Dassembler.rs14 use self::InstructionType::{
27 enum InstructionType { enum
43 fn make_instruction_map() -> BTreeMap<String, (InstructionType, u8)> { in make_instruction_map()
83 let mut entry = |name: &str, inst_type: InstructionType, opc: u8| { in make_instruction_map()
187 fn encode(inst_type: InstructionType, opc: u8, operands: &[Operand]) -> Result<Insn, String> { in encode() argument