From: fred.konrad@greensocs.com
To: qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, mark.burton@greensocs.com,
fred.konrad@greensocs.com
Subject: [Qemu-devel] [RFC PATCH v2 12/12] cexe: allow to enable reverse execution.
Date: Tue, 25 Mar 2014 17:16:40 +0100 [thread overview]
Message-ID: <1395764200-7379-13-git-send-email-fred.konrad@greensocs.com> (raw)
In-Reply-To: <1395764200-7379-1-git-send-email-fred.konrad@greensocs.com>
From: KONRAD Frederic <fred.konrad@greensocs.com>
This creates QEMU options for reverse execution.
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
---
qemu-options.hx | 9 +++++++++
vl.c | 16 ++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/qemu-options.hx b/qemu-options.hx
index ee5437b..bd730f6 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -2828,6 +2828,15 @@ order cores with complex cache hierarchies. The number of instructions
executed often has little or no correlation with actual performance.
ETEXI
+DEF("cexe", 0, QEMU_OPTION_cexe, \
+ "-cexe\n" \
+ " enable reverse execution\n", QEMU_ARCH_ALL)
+STEXI
+@item -cexe
+@findex -cexe
+Enable reverse execution.
+ETEXI
+
DEF("watchdog", HAS_ARG, QEMU_OPTION_watchdog, \
"-watchdog i6300esb|ib700\n" \
" enable virtual hardware watchdog [default=none]\n",
diff --git a/vl.c b/vl.c
index 8ce3d8f..e8430ff 100644
--- a/vl.c
+++ b/vl.c
@@ -228,6 +228,7 @@ static int default_floppy = 1;
static int default_cdrom = 1;
static int default_sdcard = 1;
static int default_vga = 1;
+static int default_cexe;
static struct {
const char *driver;
@@ -3795,6 +3796,9 @@ int main(int argc, char **argv, char **envp)
case QEMU_OPTION_icount:
icount_option = optarg;
break;
+ case QEMU_OPTION_cexe:
+ default_cexe = true;
+ break;
case QEMU_OPTION_incoming:
incoming = optarg;
runstate_set(RUN_STATE_INMIGRATE);
@@ -4508,6 +4512,15 @@ int main(int argc, char **argv, char **envp)
vm_start();
}
+ if (default_cexe) {
+ if (!icount_option) {
+ fprintf(stderr, "Reverse execution requires icount.\n");
+ exit(1);
+ }
+
+ cexe_setup();
+ }
+
os_setup_post();
if (is_daemonized()) {
@@ -4524,5 +4537,8 @@ int main(int argc, char **argv, char **envp)
tpm_cleanup();
#endif
+ if (cexe_is_enabled()) {
+ cexe_cleanup();
+ }
return 0;
}
--
1.8.1.4
prev parent reply other threads:[~2014-03-25 18:09 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-25 16:16 [Qemu-devel] [RFC PATCH v2 00/12] Reverse execution fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 01/12] icount: put icount variables into TimerState fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 02/12] migration: migrate icount fields fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 03/12] migration: make qemu_savevm_state public fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 04/12] icount: introduce icount timer fred.konrad
2014-03-25 19:22 ` Lluís Vilanova
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 05/12] icount: check for icount clock deadline when cpu loop exits fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 06/12] icount: make icount extra computed on icount clock as well fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 07/12] timer: add cpu_icount_to_ns function fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 08/12] introduce reverse execution mechanism fred.konrad
2014-03-25 19:27 ` Lluís Vilanova
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 09/12] gdbstub: allow reverse execution in gdb stub fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 10/12] cpu-exec: trigger a debug request when rexec stops fred.konrad
2014-03-25 16:16 ` [Qemu-devel] [RFC PATCH v2 11/12] cexe: synchronize icount on the next event fred.konrad
2014-03-25 16:16 ` fred.konrad [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1395764200-7379-13-git-send-email-fred.konrad@greensocs.com \
--to=fred.konrad@greensocs.com \
--cc=mark.burton@greensocs.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).