Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs165 ebpf::SUB32_IMM => {} in check()
H A Debpf.rs219 pub const SUB32_IMM: u8 = BPF_ALU | BPF_K | BPF_SUB; constant
H A Ddisassembler.rs336 ebpf::SUB32_IMM => { in to_insn_vec()
H A Dinterpreter.rs314 ebpf::SUB32_IMM => reg[_dst] = (reg[_dst] as i32).wrapping_sub(insn.imm) as u64, in execute_program()
H A Djit.rs614 ebpf::SUB32_IMM => self.emit_alu32_imm32(mem, 0x81, 5, dst, insn.imm), in jit_compile()
H A Dcranelift.rs406 ebpf::SUB32_IMM => { in translate_program()
/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs339 insn(ebpf::SUB32_IMM, 1, 0, 0, 2), in test_alu_binary()