[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC PATCH v4 13/13] cexe: allow to enable reverse executio
From: |
fred . konrad |
Subject: |
[Qemu-devel] [RFC PATCH v4 13/13] cexe: allow to enable reverse execution. |
Date: |
Wed, 25 Jun 2014 10:26:48 +0200 |
From: KONRAD Frederic <address@hidden>
This creates QEMU options for reverse execution.
Signed-off-by: KONRAD Frederic <address@hidden>
---
qemu-options.hx | 9 +++++++++
vl.c | 16 ++++++++++++++++
2 files changed, 25 insertions(+)
diff --git a/qemu-options.hx b/qemu-options.hx
index ff76ad4..2afb85d 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -2946,6 +2946,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
address@hidden -cexe
address@hidden -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 d0352e3..a94563a 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;
@@ -3821,6 +3822,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);
@@ -4520,6 +4524,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()) {
@@ -4536,5 +4549,8 @@ int main(int argc, char **argv, char **envp)
tpm_cleanup();
#endif
+ if (cexe_is_enabled()) {
+ cexe_cleanup();
+ }
return 0;
}
--
1.9.0
- Re: [Qemu-devel] [RFC PATCH v4 03/13] migration: make qemu_savevm_state public., (continued)
- [Qemu-devel] [RFC PATCH v4 05/13] icount: check for icount clock deadline when cpu loop exits., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 04/13] icount: introduce icount timer., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 06/13] icount: make icount extra computed on icount clock as well., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 09/13] introduce reverse execution mechanism., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 07/13] timer: add cpu_icount_to_ns function., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 08/13] trace-events: add reverse-execution events., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 10/13] gdbstub: allow reverse execution in gdb stub., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 11/13] cpu-exec: trigger a debug request when rexec stops., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 12/13] cexe: synchronize icount on the next event., fred . konrad, 2014/06/25
- [Qemu-devel] [RFC PATCH v4 13/13] cexe: allow to enable reverse execution.,
fred . konrad <=