Home
last modified time | relevance | path

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

/qemu/target/riscv/
H A Dcpu.h463 target_ulong *val, target_ulong new_val, target_ulong write_mask);
636 target_ulong write_mask),
845 target_ulong write_mask, uintptr_t ra);
849 target_ulong write_mask);
874 target_ulong write_mask);
880 Int128 write_mask, uintptr_t ra);
964 target_ulong write_mask);
H A Dcsr.c4793 target_ulong new_value, target_ulong write_mask) in rmw_hip() argument
4796 write_mask & hip_writable_mask); in rmw_hip()
5418 target_ulong write_mask) in riscv_new_csr_seed() argument
5448 target_ulong write_mask) in rmw_seed() argument
5452 rval = riscv_new_csr_seed(new_value, write_mask); in rmw_seed()
5536 target_ulong write_mask, in riscv_csrrw_do64() argument
5544 return csr_ops[csrno].op(env, csrno, ret_value, new_value, write_mask); in riscv_csrrw_do64()
5564 if (write_mask) { in riscv_csrrw_do64()
5565 new_value = (old_value & ~write_mask) | (new_value & write_mask); in riscv_csrrw_do64()
5595 target_ulong write_mask, uintptr_t ra) in riscv_csrrw() argument
[all …]
H A Dop_helper.c82 target_ulong src, target_ulong write_mask) in helper_csrrw() argument
85 RISCVException ret = riscv_csrrw(env, csr, &val, src, write_mask, GETPC()); in helper_csrrw()
H A Dcpu_helper.c774 target_ulong write_mask), in riscv_cpu_set_aia_ireg_rmw_fn() argument
/qemu/hw/display/
H A Dvga.c872 uint32_t write_mask, bit_mask, set_mask; in vga_mem_writeb() local
1019 write_mask = mask16[mask]; in vga_mem_writeb()
1021 (((uint32_t *)s->vram_ptr)[addr] & ~write_mask) | in vga_mem_writeb()
1022 (val & write_mask); in vga_mem_writeb()
1025 addr * 4, write_mask, val); in vga_mem_writeb()
/qemu/target/riscv/kvm/
H A Dkvm-cpu.c1659 target_ulong write_mask = run->riscv_csr.write_mask; in kvm_riscv_handle_csr() local
1664 run->riscv_csr.ret_value = riscv_new_csr_seed(new_value, write_mask); in kvm_riscv_handle_csr()
/qemu/linux-headers/linux/
H A Dkvm.h427 unsigned long write_mask; member