Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs194 insn(ebpf::SUB64_REG, 1, 2, 0, 0), in test_alu_binary()
252 insn(ebpf::SUB64_REG, 1, 2, 0, 0), in test_alu_binary()
/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs199 ebpf::SUB64_REG => {} in check()
H A Debpf.rs281 pub const SUB64_REG: u8 = BPF_ALU64 | BPF_X | BPF_SUB; constant
H A Ddisassembler.rs450 ebpf::SUB64_REG => { in to_insn_vec()
H A Dinterpreter.rs375 ebpf::SUB64_REG => reg[_dst] = reg[_dst].wrapping_sub(reg[_src]), in execute_program()
H A Djit.rs676 ebpf::SUB64_REG => self.emit_alu64(mem, 0x29, src, dst), in jit_compile()
H A Dcranelift.rs641 ebpf::SUB64_REG => { in translate_program()