Searched refs:SUB32_REG (Results 1 – 7 of 7) sorted by relevance
/DragonOS/kernel/crates/rbpf/src/ |
H A D | verifier.rs | 166 ebpf::SUB32_REG => {} in check()
|
H A D | ebpf.rs | 221 pub const SUB32_REG: u8 = BPF_ALU | BPF_X | BPF_SUB; constant
|
H A D | disassembler.rs | 340 ebpf::SUB32_REG => { in to_insn_vec()
|
H A D | interpreter.rs | 315 ebpf::SUB32_REG => reg[_dst] = (reg[_dst] as i32).wrapping_sub(reg[_src] as i32) as u64, in execute_program()
|
H A D | jit.rs | 615 ebpf::SUB32_REG => self.emit_alu32(mem, 0x29, src, dst), in jit_compile()
|
H A D | cranelift.rs | 413 ebpf::SUB32_REG => { in translate_program()
|
/DragonOS/kernel/crates/rbpf/tests/ |
H A D | assembler.rs | 310 insn(ebpf::SUB32_REG, 1, 2, 0, 0), in test_alu_binary()
|