Re: [Qemu-devel] [PATCH 28/37] Move debug exception handling out of cpu_exec

2011-03-07 Thread TeLeMan
On Mon, Mar 7, 2011 at 16:54, Jan Kiszka wrote: > On 2011-03-07 09:26, Jan Kiszka wrote: >> On 2011-03-07 02:52, TeLeMan wrote: >>> This patch breaks the support for x86 hardware breakpoints because >>> cpu_resume_from_signal() and raise_exception_env() are used in >>> breakpoint_handler(). >> >>

Re: [Qemu-devel] [PATCH 28/37] Move debug exception handling out of cpu_exec

2011-03-07 Thread Jan Kiszka
On 2011-03-07 09:26, Jan Kiszka wrote: > On 2011-03-07 02:52, TeLeMan wrote: >> This patch breaks the support for x86 hardware breakpoints because >> cpu_resume_from_signal() and raise_exception_env() are used in >> breakpoint_handler(). > > Yeah, unfortunately true. The TCG bits of this refactori

Re: [Qemu-devel] [PATCH 28/37] Move debug exception handling out of cpu_exec

2011-03-07 Thread Jan Kiszka
On 2011-03-07 02:52, TeLeMan wrote: > This patch breaks the support for x86 hardware breakpoints because > cpu_resume_from_signal() and raise_exception_env() are used in > breakpoint_handler(). Yeah, unfortunately true. The TCG bits of this refactoring have to be moved back. Will fix. Thanks, Jan

Re: [Qemu-devel] [PATCH 28/37] Move debug exception handling out of cpu_exec

2011-03-06 Thread TeLeMan
This patch breaks the support for x86 hardware breakpoints because cpu_resume_from_signal() and raise_exception_env() are used in breakpoint_handler().

[Qemu-devel] [PATCH 28/37] Move debug exception handling out of cpu_exec

2011-02-14 Thread Marcelo Tosatti
From: Jan Kiszka To prepare splitting up KVM and TCG CPU entry/exit, move the debug exception into cpus.c and invoke cpu_handle_debug_exception on return from qemu_cpu_exec. This also allows to clean up the debug request signaling: We can assign the job of informing main-loop to qemu_system_debu