Searched refs:SUB32_IMM (Results 1 – 7 of 7) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | verifier.rs | 165 ebpf::SUB32_IMM => {} in check()
|
H A D | ebpf.rs | 219 pub const SUB32_IMM: u8 = BPF_ALU | BPF_K | BPF_SUB; constant
|
H A D | disassembler.rs | 336 ebpf::SUB32_IMM => { in to_insn_vec()
|
H A D | interpreter.rs | 314 ebpf::SUB32_IMM => reg[_dst] = (reg[_dst] as i32).wrapping_sub(insn.imm) as u64, in execute_program()
|
H A D | jit.rs | 614 ebpf::SUB32_IMM => self.emit_alu32_imm32(mem, 0x81, 5, dst, insn.imm), in jit_compile()
|
H A D | cranelift.rs | 406 ebpf::SUB32_IMM => { in translate_program()
|
/DragonOS/kernel/crates/rbpf/tests/ |
H A D | assembler.rs | 339 insn(ebpf::SUB32_IMM, 1, 0, 0, 2), in test_alu_binary()
|