Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs167 ebpf::MUL32_IMM => {} in check()
H A Debpf.rs223 pub const MUL32_IMM: u8 = BPF_ALU | BPF_K | BPF_MUL; constant
H A Djit.rs388 let mul = (opc & ebpf::BPF_ALU_OP_MASK) == (ebpf::MUL32_IMM & ebpf::BPF_ALU_OP_MASK); in emit_muldivmod()
616 ebpf::MUL32_IMM in jit_compile()
H A Ddisassembler.rs344 ebpf::MUL32_IMM => { in to_insn_vec()
H A Dinterpreter.rs316 ebpf::MUL32_IMM => reg[_dst] = (reg[_dst] as i32).wrapping_mul(insn.imm) as u64, in execute_program()
H A Dcranelift.rs420 ebpf::MUL32_IMM => { in translate_program()
/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs340 insn(ebpf::MUL32_IMM, 1, 0, 0, 2), in test_alu_binary()