Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-09-25 Thread Anton Johansson via
On 23/09/23, Michael Tokarev wrote: > [Trimming Cc list] > > 22.09.2023 13:45, Anton Johansson: > > On 21/09/23, Michael Tokarev wrote: > > > > > Anton Johansson (9): > > > > accel/kvm: Widen pc/saved_insn for kvm_sw_breakpoint > > > > accel/hvf: Widen pc/saved_insn for hvf_sw_breakpoint

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-09-22 Thread Michael Tokarev
[Trimming Cc list] 22.09.2023 13:45, Anton Johansson: On 21/09/23, Michael Tokarev wrote: Anton Johansson (9): accel/kvm: Widen pc/saved_insn for kvm_sw_breakpoint accel/hvf: Widen pc/saved_insn for hvf_sw_breakpoint target: Use vaddr for kvm_arch_[insert|remove]_hw_breakpoint

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-09-22 Thread Anton Johansson via
On 21/09/23, Michael Tokarev wrote: > 07.08.2023 18:56, Anton Johansson via wrote: > > This patchset replaces the remaining uses of target_ulong in the accel/ > > directory. Specifically, the address type of a few kvm/hvf functions > > is widened to vaddr, and the address type of the cpu_[st|ld]*(

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-09-21 Thread Michael Tokarev
07.08.2023 18:56, Anton Johansson via wrote: This patchset replaces the remaining uses of target_ulong in the accel/ directory. Specifically, the address type of a few kvm/hvf functions is widened to vaddr, and the address type of the cpu_[st|ld]*() functions is changed to abi_ptr (which is re-t

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-08-22 Thread Michael Tokarev
22.08.2023 22:33, Michael Tokarev wrote: 22.08.2023 22:02, timothee.coca...@gmail.com wrote: Hi, Maybe its too late for the 8.1 window, but I noticed that this patchset fixes a segfault in qemu-system-ppc (and other 32 bits archs ?) introduced by commit fb2c53c. Therefore maybe it would be rele

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-08-22 Thread Michael Tokarev
22.08.2023 22:02, timothee.coca...@gmail.com wrote: Hi, Maybe its too late for the 8.1 window, but I noticed that this patchset fixes a segfault in qemu-system-ppc (and other 32 bits archs ?) introduced by commit fb2c53c. Therefore maybe it would be relevant to get merge it before 8.2. It's de

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-08-22 Thread timothee . cocault
Hi, Maybe its too late for the 8.1 window, but I noticed that this patchset fixes a segfault in qemu-system-ppc (and other 32 bits archs ?) introduced by commit fb2c53c. Therefore maybe it would be relevant to get merge it before 8.2. I put the details below, please tell me if you prefer I file a

Re: [PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-08-08 Thread Richard Henderson
On 8/7/23 08:56, Anton Johansson wrote: This patchset replaces the remaining uses of target_ulong in the accel/ directory. Specifically, the address type of a few kvm/hvf functions is widened to vaddr, and the address type of the cpu_[st|ld]*() functions is changed to abi_ptr (which is re-typede

[PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-08-07 Thread Anton Johansson via
This patchset replaces the remaining uses of target_ulong in the accel/ directory. Specifically, the address type of a few kvm/hvf functions is widened to vaddr, and the address type of the cpu_[st|ld]*() functions is changed to abi_ptr (which is re-typedef'd to vaddr in system mode). As a starti

[PATCH 0/9] Replace remaining target_ulong in system-mode accel

2023-07-21 Thread Anton Johansson via
This patchset replaces the remaining uses of target_ulong in the accel/ directory. Specifically, the address type of a few kvm/hvf functions is widened to vaddr, and the address type of the cpu_[st|ld]*() functions is changed to abi_ptr (which is re-typedef'd to vaddr in system mode). As a starti