Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs223 insn(ebpf::SUB64_IMM, 1, 0, 0, 2), in test_alu_binary()
281 insn(ebpf::SUB64_IMM, 1, 0, 0, 2), in test_alu_binary()
/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs198 ebpf::SUB64_IMM => {} in check()
H A Debpf.rs279 pub const SUB64_IMM: u8 = BPF_ALU64 | BPF_K | BPF_SUB; constant
H A Ddisassembler.rs446 ebpf::SUB64_IMM => { in to_insn_vec()
H A Dinterpreter.rs374 ebpf::SUB64_IMM => reg[_dst] = reg[_dst].wrapping_sub(insn.imm as u64), in execute_program()
H A Djit.rs675 ebpf::SUB64_IMM => self.emit_alu64_imm32(mem, 0x81, 5, dst, insn.imm), in jit_compile()
H A Dcranelift.rs634 ebpf::SUB64_IMM => { in translate_program()