Re: [PATCH 1/1] accel/tcg: Fix computing is_write for mips

2020-09-24 Thread Kele Huang
Sorry for the late reply. We make a new version submit as below. Subject: [PATCH v2 1/1] accel/tcg: Fix computing of is_write for mips Detect mips store instructions in cpu_signal_handler for all MIPS versions, and set is_write if encountering such store instructions. This fixed the error while

Re: [PATCH 1/1] accel/tcg: Fix computing is_write for mips

2020-09-10 Thread Richard Henderson
On 9/10/20 12:43 AM, Kele Huang wrote: > Detect mips store instructions SWXC1 and SDXC1 for MIPS64 since > MIPS64r1, and MIPS32 since MIPS32r2. > > Signed-off-by: Kele Huang > --- > accel/tcg/user-exec.c | 21 + > 1 file changed, 21 insertions(+) > > diff --git a/accel/tcg/u

[PATCH 1/1] accel/tcg: Fix computing is_write for mips

2020-09-10 Thread Kele Huang
Detect mips store instructions SWXC1 and SDXC1 for MIPS64 since MIPS64r1, and MIPS32 since MIPS32r2. Signed-off-by: Kele Huang --- accel/tcg/user-exec.c | 21 + 1 file changed, 21 insertions(+) diff --git a/accel/tcg/user-exec.c b/accel/tcg/user-exec.c index bb039eb32d..e69b