From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WziXw-0002Ne-CC for qemu-devel@nongnu.org; Wed, 25 Jun 2014 04:27:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WziXq-0008K0-Jz for qemu-devel@nongnu.org; Wed, 25 Jun 2014 04:27:12 -0400 Received: from greensocs.com ([178.33.234.66]:50799) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WziXq-0008Jn-ET for qemu-devel@nongnu.org; Wed, 25 Jun 2014 04:27:06 -0400 From: fred.konrad@greensocs.com Date: Wed, 25 Jun 2014 10:26:46 +0200 Message-Id: <1403684808-23248-12-git-send-email-fred.konrad@greensocs.com> In-Reply-To: <1403684808-23248-1-git-send-email-fred.konrad@greensocs.com> References: <1403684808-23248-1-git-send-email-fred.konrad@greensocs.com> Subject: [Qemu-devel] [RFC PATCH v4 11/13] cpu-exec: trigger a debug request when rexec stops. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, quintela@redhat.com, mark.burton@greensocs.com, dgilbert@redhat.com, amit.shah@redhat.com, pbonzini@redhat.com, vilanova@ac.upc.edu, fred.konrad@greensocs.com From: KONRAD Frederic This allows QEMU to trigger a debug exception when cexe_dbg_requested is set. Signed-off-by: KONRAD Frederic --- cpu-exec.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/cpu-exec.c b/cpu-exec.c index 38e5f02..c92cfd1 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -22,6 +22,7 @@ #include "tcg.h" #include "qemu/atomic.h" #include "sysemu/qtest.h" +#include "reverse-execution.h" void cpu_loop_exit(CPUState *cpu) { @@ -230,6 +231,18 @@ int cpu_exec(CPUArchState *env) /* This must be volatile so it is not trashed by longjmp() */ volatile bool have_tb_lock = false; + #ifndef CONFIG_USER_ONLY + if (cexe_is_enabled() && cexe_dbg_requested()) { + /* + * Reverse execution need to stop right now. + * So just generate a EXCP_DEBUG. + */ + cpu->exception_index = EXCP_DEBUG; + cpu_handle_debug_exception(env); + return EXCP_DEBUG; + } + #endif /* !CONFIG_USER_ONLY */ + if (cpu->halted) { if (!cpu_has_work(cpu)) { return EXCP_HALTED; -- 1.9.0