Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-10-02 Thread Kele Huang
> +case 015: /* SDXC1 */ I just found a comment mistake about SUXC1, and I have rectified it and resent a new patch. On Tue, 29 Sep 2020 at 09:59, Kele Huang wrote: > Thank you so much! > > > On Mon, 28 Sep 2020 at 16:14, Aleksandar Markovic < > aleksandar.qemu.de...@gmail.com> wrote:

Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-28 Thread Kele Huang
Thank you so much! On Mon, 28 Sep 2020 at 16:14, Aleksandar Markovic < aleksandar.qemu.de...@gmail.com> wrote: > > > On Sunday, September 27, 2020, Kele Huang wrote: > >> Sorry about that, I only got maintainers by './scripts/get_maintainer.pl >> -f accel/tcg/user-exec.c' and missed your

Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-28 Thread Aleksandar Markovic
On Sunday, September 27, 2020, Kele Huang wrote: > Sorry about that, I only got maintainers by './scripts/get_maintainer.pl > -f accel/tcg/user-exec.c' and missed your advice about maintainers. > In another words, I thought I had Cc'ed the TCG MIPS maintainers.  > And sorry to maintainers.  >

Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-27 Thread Kele Huang
Fixed! I have resent a v4 patch which contains SUXC1. Thank you! On Fri, 25 Sep 2020 at 22:58, Richard Henderson < richard.hender...@linaro.org> wrote: > On 9/25/20 1:33 AM, Kele Huang wrote: > > Detect all MIPS store instructions in cpu_signal_handler for all > available > > MIPS versions, and

Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-25 Thread Richard Henderson
On 9/25/20 1:33 AM, Kele Huang wrote: > Detect all MIPS store instructions in cpu_signal_handler for all available > MIPS versions, and set is_write if encountering such store instructions. > > This fixed the error while dealing with self-modified code for MIPS. > > Signed-off-by: Kele Huang >

Re: [PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-25 Thread Philippe Mathieu-Daudé
Cc'ing TCG MIPS maintainers *again*. On 9/25/20 10:33 AM, Kele Huang wrote: > Detect all MIPS store instructions in cpu_signal_handler for all available > MIPS versions, and set is_write if encountering such store instructions. > > This fixed the error while dealing with self-modified code for

[PATCH v3 1/1] accel/tcg: Fix computing of is_write for MIPS

2020-09-25 Thread Kele Huang
Detect all MIPS store instructions in cpu_signal_handler for all available MIPS versions, and set is_write if encountering such store instructions. This fixed the error while dealing with self-modified code for MIPS. Signed-off-by: Kele Huang Signed-off-by: Xu Zou --- accel/tcg/user-exec.c |