Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs225 insn(ebpf::DIV64_IMM, 1, 0, 0, 2), in test_alu_binary()
283 insn(ebpf::DIV64_IMM, 1, 0, 0, 2), in test_alu_binary()
/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs202 ebpf::DIV64_IMM => {} in check()
H A Debpf.rs287 pub const DIV64_IMM: u8 = BPF_ALU64 | BPF_K | BPF_DIV; constant
H A Dinterpreter.rs378 ebpf::DIV64_IMM if insn.imm == 0 => reg[_dst] = 0, in execute_program()
379 ebpf::DIV64_IMM => reg[_dst] /= insn.imm as u64, in execute_program()
H A Ddisassembler.rs462 ebpf::DIV64_IMM => { in to_insn_vec()
H A Djit.rs679 | ebpf::DIV64_IMM in jit_compile()
H A Dcranelift.rs662 ebpf::DIV64_IMM => { in translate_program()