Re: [PATCH 13/18] target/i386: split eflags computation out of gen_compute_eflags

2023-10-18 Thread Richard Henderson
On 10/14/23 03:01, Paolo Bonzini wrote: The new x86 decoder wants to compute EFLAGS before writeback, which can be an issue for some instructions such as ARPL. Extract code to compute the EFLAGS without clobbering CC_SRC, in case the ARPL memory write causes a fault. Signed-off-by: Paolo Bonzin

[PATCH 13/18] target/i386: split eflags computation out of gen_compute_eflags

2023-10-14 Thread Paolo Bonzini
The new x86 decoder wants to compute EFLAGS before writeback, which can be an issue for some instructions such as ARPL. Extract code to compute the EFLAGS without clobbering CC_SRC, in case the ARPL memory write causes a fault. Signed-off-by: Paolo Bonzini --- target/i386/tcg/translate.c | 18 +