Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs172 Ok(vec![insn(ebpf::ST_H_REG, 1, 3, 2, 0)]) in test_stxh()
447 insn(ebpf::ST_H_REG, 1, 3, 2, 0), in test_store_reg()
/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs152 ebpf::ST_H_REG => store = true, in check()
H A Debpf.rs203 pub const ST_H_REG: u8 = BPF_STX | BPF_MEM | BPF_H; constant
H A Dcranelift.rs354 | ebpf::ST_H_REG in translate_program()
359 ebpf::ST_H_IMM | ebpf::ST_H_REG => I16, in translate_program()
366 ebpf::ST_B_REG | ebpf::ST_H_REG | ebpf::ST_W_REG | ebpf::ST_DW_REG => false, in translate_program()
H A Ddisassembler.rs306 ebpf::ST_H_REG => { in to_insn_vec()
H A Dinterpreter.rs287 ebpf::ST_H_REG => unsafe { in execute_program()
H A Djit.rs603 ebpf::ST_H_REG => self.emit_store(mem, OperandSize::S16, src, dst, insn.off as i32), in jit_compile()