All of lore.kernel.org
 help / color / mirror / Atom feed
From: Frederic Konrad <fred.konrad@greensocs.com>
To: "lig.fnst@cn.fujitsu.com" <lig.fnst@cn.fujitsu.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "peter.maydell@linaro.org" <peter.maydell@linaro.org>,
	"quintela@redhat.com" <quintela@redhat.com>,
	"mark.burton@greensocs.com" <mark.burton@greensocs.com>,
	"dgilbert@redhat.com" <dgilbert@redhat.com>,
	"amit.shah@redhat.com" <amit.shah@redhat.com>,
	"pbonzini@redhat.com" <pbonzini@redhat.com>,
	"vilanova@ac.upc.edu" <vilanova@ac.upc.edu>
Subject: Re: [Qemu-devel] 答复:  [RFC PATCH v5 09/13] introduce reverse execution mechanism.
Date: Thu, 26 Jun 2014 09:28:06 +0200	[thread overview]
Message-ID: <53ABCB86.9010000@greensocs.com> (raw)
In-Reply-To: <534C5107B281854290643468BBAAD41F172901@G08CNEXMBPEKD01.g08.fujitsu.local>

On 26/06/2014 04:31, lig.fnst@cn.fujitsu.com wrote:
> Hi, 
Hi,

>> -----邮件原件-----
>> 发件人: qemu-devel-bounces+lig.fnst=cn.fujitsu.com@nongnu.org
>> [mailto:qemu-devel-bounces+lig.fnst=cn.fujitsu.com@nongnu.org] 代表
>> fred.konrad@greensocs.com
>> 发送时间: 2014年6月25日 23:20
>> 收件人: qemu-devel@nongnu.org
>> 抄送: 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
>> 主题: [Qemu-devel] [RFC PATCH v5 09/13] introduce reverse execution
>> mechanism.
>>
>> From: KONRAD Frederic <fred.konrad@greensocs.com>
>>
>> This introduces the basic reverse-execution mechanism.
>>
>> Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
>> ---
>>  Makefile.target             |   1 +
>>  cpus.c                      |   6 +
>>  include/reverse-execution.h |  41 ++++++
>>  reverse-execution.c         | 306
>> ++++++++++++++++++++++++++++++++++++++++++++
>>  vl.c                        |   7 +-
>>  5 files changed, 360 insertions(+), 1 deletion(-)  create mode 100644
>> include/reverse-execution.h  create mode 100644 reverse-execution.c
[...]
>> +
>> +static QLIST_HEAD(, snapshot_entry) snapshot =
>> +QLIST_HEAD_INITIALIZER(snapshot);
>> +
>> +QEMUTimer *snap_timer;
> s/snap_/snapshot_/g ?
>
>> +QEMUTimer *stop_timer;
>> +
>> +struct cexe_state {
>> +    int stepping_back;
>> +    int continue_backward_mode;
>> +    int singlestep_was_enabled;
> boolize these 3 vars?
>
>> +    bool step_done;
Thanks for having looking into this,
I'll do these change.

>> +        saved_vm_running = runstate_is_running();
>> +        vm_stop(RUN_STATE_SAVE_VM);
>> +        snap->time = qemu_clock_get_ns(QEMU_CLOCK_ICOUNT);
>> +        sprintf(filename, ".save%04u", snap->id);
> File name should be more readable
What do you mean by more readable?

>> +
>> +        trace_snap_callback(snap->time, filename);
>> +
>> +        file = qemu_fopen(filename, "wb");
>> +        qemu_savevm_state(file);
>> +        qemu_fclose(file);
>> +
>> +        if (saved_vm_running) {
>> +            vm_start();
>> +        }
>> +        timer_mod_ns(snap_timer, snap->time + 100000000);
>> +    }
>> +}
>> +
>> +/*
>> + * Timer callback called when the VM have to stop.
>> + */
>> +static void stop_callback(void *opaque) {
>> +    trace_stop_callback(qemu_clock_get_ns(QEMU_CLOCK_ICOUNT));
>> +    cexe_state.stop_requested = true;
>> +}
>> +
>> +void cexe_setup(void)
> Sorry, but, what's the mean of cexe here and there?
This means "exec" in reverse..

Thanks,
Fred

>
> Thanks!
> Li Guang
>

  parent reply	other threads:[~2014-06-26  7:28 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-25 15:19 [Qemu-devel] [RFC PATCH v5 00/13] Reverse execution fred.konrad
2014-06-25 15:19 ` [Qemu-devel] [RFC PATCH v5 01/13] icount: put icount variables into TimerState fred.konrad
2014-06-25 15:19 ` [Qemu-devel] [RFC PATCH v5 02/13] migration: migrate icount fields fred.konrad
2014-06-25 17:38   ` Juan Quintela
2014-06-25 15:19 ` [Qemu-devel] [RFC PATCH v5 03/13] migration: make qemu_savevm_state public fred.konrad
2014-06-25 15:19 ` [Qemu-devel] [RFC PATCH v5 04/13] icount: introduce icount timer fred.konrad
2014-06-25 15:19 ` [Qemu-devel] [RFC PATCH v5 05/13] icount: check for icount clock deadline when cpu loop exits fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 06/13] icount: make icount extra computed on icount clock as well fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 07/13] timer: add cpu_icount_to_ns function fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 08/13] trace-events: add reverse-execution events fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 09/13] introduce reverse execution mechanism fred.konrad
     [not found]   ` <534C5107B281854290643468BBAAD41F172901@G08CNEXMBPEKD01.g08.fujitsu.local>
2014-06-26  7:28     ` Frederic Konrad [this message]
     [not found]       ` <534C5107B281854290643468BBAAD41F172C78@G08CNEXMBPEKD01.g08.fujitsu.local>
2014-06-26  8:20         ` [Qemu-devel] 答复: 答复: " Frederic Konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 10/13] gdbstub: allow reverse execution in gdb stub fred.konrad
     [not found]   ` <534C5107B281854290643468BBAAD41F17293E@G08CNEXMBPEKD01.g08.fujitsu.local>
2014-06-26  7:39     ` [Qemu-devel] 答复: " Frederic Konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 11/13] cpu-exec: trigger a debug request when rexec stops fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 12/13] cexe: synchronize icount on the next event fred.konrad
2014-06-25 15:20 ` [Qemu-devel] [RFC PATCH v5 13/13] cexe: allow to enable reverse execution fred.konrad
2014-06-25 15:43 ` [Qemu-devel] [RFC PATCH v5 00/13] Reverse execution Paolo Bonzini
2014-06-26  8:17   ` Frederic Konrad
2014-06-26 10:14     ` Paolo Bonzini
2014-06-26 13:55       ` Frederic Konrad
2014-06-26 13:56         ` Paolo Bonzini
2014-06-26 15:11           ` Frederic Konrad
2014-06-26 15:32             ` Paolo Bonzini
2014-06-26 15:52               ` Sebastian Tanase
2014-06-27  8:08                 ` Frederic Konrad

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=53ABCB86.9010000@greensocs.com \
    --to=fred.konrad@greensocs.com \
    --cc=amit.shah@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=lig.fnst@cn.fujitsu.com \
    --cc=mark.burton@greensocs.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=vilanova@ac.upc.edu \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.