Re: [PATCH] target/i386: Eip error in x86_64-softmmu

2024-02-17 Thread Michael Tokarev
15.01.2024 05:08, guoguangyao wrote: When closing PCREL, qemu-system-x86_64 run into error. Eip modification here leads to the result. Using s->pc in func gen_update_eip_next() solves the problem. Fixes: b5e0d5d22fbf("target/i386: Fix 32-bit wrapping of pc/eip computation") It looks like the

Re: [PATCH] target/i386: Eip error in x86_64-softmmu

2024-01-14 Thread Michael Tokarev
15.01.2024 05:08, guoguangyao : When closing PCREL, qemu-system-x86_64 run into error. Eip modification here leads to the result. Using s->pc in func gen_update_eip_next() solves the problem. Fixes: b5e0d5d22fbf("target/i386: Fix 32-bit wrapping of pc/eip computation") Signed-off-by:

Re: [PATCH] target/i386: Eip error in x86_64-softmmu

2024-01-14 Thread Richard Henderson
On 1/15/24 13:08, guoguangyao wrote: When closing PCREL, qemu-system-x86_64 run into error. Eip modification here leads to the result. Using s->pc in func gen_update_eip_next() solves the problem. Fixes: b5e0d5d22fbf("target/i386: Fix 32-bit wrapping of pc/eip computation") Signed-off-by:

[PATCH] target/i386: Eip error in x86_64-softmmu

2024-01-14 Thread guoguangyao
When closing PCREL, qemu-system-x86_64 run into error. Eip modification here leads to the result. Using s->pc in func gen_update_eip_next() solves the problem. Fixes: b5e0d5d22fbf("target/i386: Fix 32-bit wrapping of pc/eip computation") Signed-off-by: guoguangyao modified: