Searched refs:DIV64_IMM (Results 1 – 7 of 7) sorted by relevance
/DragonOS/kernel/crates/rbpf/tests/ |
H A D | assembler.rs | 225 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 D | verifier.rs | 202 ebpf::DIV64_IMM => {} in check()
|
H A D | ebpf.rs | 287 pub const DIV64_IMM: u8 = BPF_ALU64 | BPF_K | BPF_DIV; constant
|
H A D | interpreter.rs | 378 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 D | disassembler.rs | 462 ebpf::DIV64_IMM => { in to_insn_vec()
|
H A D | jit.rs | 679 | ebpf::DIV64_IMM in jit_compile()
|
H A D | cranelift.rs | 662 ebpf::DIV64_IMM => { in translate_program()
|