Home
last modified time | relevance | path

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

/DragonOS/kernel/crates/rbpf/tests/
H A Dassembler.rs79 Ok(vec![insn(ebpf::ST_W_REG, 2, 8, 5, 0)]) in test_stxw()
446 insn(ebpf::ST_W_REG, 1, 3, 2, 0), in test_store_reg()
/DragonOS/kernel/crates/rbpf/src/
H A Dverifier.rs153 ebpf::ST_W_REG => store = true, in check()
H A Debpf.rs205 pub const ST_W_REG: u8 = BPF_STX | BPF_MEM | BPF_W; constant
H A Dcranelift.rs355 | ebpf::ST_W_REG in translate_program()
360 ebpf::ST_W_IMM | ebpf::ST_W_REG => I32, 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.rs310 ebpf::ST_W_REG => { in to_insn_vec()
H A Dinterpreter.rs293 ebpf::ST_W_REG => unsafe { in execute_program()
H A Djit.rs604 ebpf::ST_W_REG => self.emit_store(mem, OperandSize::S32, src, dst, insn.off as i32), in jit_compile()