From: Claudio Fontana <cfontana@suse.de>
To: "Richard Henderson" <richard.henderson@linaro.org>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Peter Maydell" <peter.maydell@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
"Roman Bolshakov" <r.bolshakov@yadro.com>
Cc: Laurent Vivier <lvivier@redhat.com>,
Thomas Huth <thuth@redhat.com>,
Eduardo Habkost <ehabkost@redhat.com>,
Marcelo Tosatti <mtosatti@redhat.com>,
qemu-devel@nongnu.org, Markus Armbruster <armbru@redhat.com>,
Pavel Dovgalyuk <dovgaluk@ispras.ru>,
Wenchao Wang <wenchao.wang@intel.com>,
haxm-team@intel.com, Sunil Muthuswamy <sunilmut@microsoft.com>,
Richard Henderson <rth@twiddle.net>,
Colin Xu <colin.xu@intel.com>
Subject: Re: [PATCH v5 01/14] cpu-timers, icount: new modules
Date: Wed, 19 Aug 2020 15:49:26 +0200 [thread overview]
Message-ID: <32b4d35a-a9f9-1303-117e-3d6a981f71f8@suse.de> (raw)
In-Reply-To: <10efbc6b-8e10-39f4-53cd-9a627e436f62@linaro.org>
Hello Richard,
On 8/14/20 10:20 PM, Richard Henderson wrote:
> On 8/12/20 11:32 AM, Claudio Fontana wrote:
>> +/*
>> + * Return the icount enablement state:
>> + *
>> + * 0 = Disabled - Do not count executed instructions.
>> + * 1 = Enabled - Fixed conversion of insn to ns via "shift" option
>> + * 2 = Enabled - Runtime adaptive algorithm to compute shift
>> + */
>> +int icount_enabled(void);
>
> Why does use_icount need to change to a function?
It is not useful at this point, I'll change this.
>
> If it does, or even if this just comes under the heading of cleanup, it should
> certainly be done in a separate patch.
Yes, I'll move it to a different series entirely.
>
> Either way, I think we should expose the fact that this is always disabled when
> #ifndef CONFIG_TCG, just like we do for tcg_enabled().
Will do.
>
>> - if (use_icount) {
>> - return cpu_get_icount();
>> + if (icount_enabled()) {
>> + return icount_get();
>
> Renaming of other functions like this should also be done in a separate patch.
Is there a compelling reason to separate the new module/class from what are effectively its methods?
It seemed to me that creating a new icount module would warrant the name changes in the same patch.
>
>
> r~
>
I will be out of office until end of the month,
thanks,
Claudio
next prev parent reply other threads:[~2020-08-19 13:50 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-12 18:32 [PATCH v5 00/14] QEMU cpus.c refactoring part2 Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 01/14] cpu-timers, icount: new modules Claudio Fontana
2020-08-14 20:20 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana [this message]
2020-08-12 18:32 ` [PATCH v5 02/14] cpus: prepare new CpusAccel cpu accelerator interface Claudio Fontana
2020-08-14 20:28 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 03/14] cpus: extract out TCG-specific code to accel/tcg Claudio Fontana
2020-08-14 20:39 ` Richard Henderson
2020-08-19 13:49 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 04/14] cpus: extract out qtest-specific code to accel/qtest Claudio Fontana
2020-08-14 20:42 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 05/14] cpus: extract out kvm-specific code to accel/kvm Claudio Fontana
2020-08-14 20:44 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 06/14] cpus: extract out hax-specific code to target/i386/ Claudio Fontana
2020-08-14 20:48 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 07/14] cpus: extract out whpx-specific " Claudio Fontana
2020-08-14 20:49 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 08/14] cpus: extract out hvf-specific code to target/i386/hvf/ Claudio Fontana
2020-08-14 20:51 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 09/14] cpus: cleanup now unneeded includes Claudio Fontana
2020-08-14 20:51 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 10/14] cpus: add handle_interrupt to the CpusAccel interface Claudio Fontana
2020-08-14 21:01 ` Richard Henderson
2020-08-17 12:31 ` Roman Bolshakov
2020-08-19 13:50 ` Claudio Fontana
2020-08-12 18:32 ` [PATCH v5 11/14] hvf: remove hvf specific functions from global includes Claudio Fontana
2020-08-14 21:02 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 12/14] whpx: remove whpx " Claudio Fontana
2020-08-14 21:03 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 13/14] hax: remove hax " Claudio Fontana
2020-08-14 21:06 ` Richard Henderson
2020-08-12 18:32 ` [PATCH v5 14/14] kvm: remove kvm " Claudio Fontana
2020-08-14 21:07 ` Richard Henderson
2020-08-13 14:16 ` [PATCH v5 00/14] QEMU cpus.c refactoring part2 no-reply
2020-08-13 16:06 ` Claudio Fontana
2020-08-14 7:49 ` Philippe Mathieu-Daudé
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=32b4d35a-a9f9-1303-117e-3d6a981f71f8@suse.de \
--to=cfontana@suse.de \
--cc=alex.bennee@linaro.org \
--cc=armbru@redhat.com \
--cc=colin.xu@intel.com \
--cc=dovgaluk@ispras.ru \
--cc=ehabkost@redhat.com \
--cc=haxm-team@intel.com \
--cc=lvivier@redhat.com \
--cc=mtosatti@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=r.bolshakov@yadro.com \
--cc=richard.henderson@linaro.org \
--cc=rth@twiddle.net \
--cc=sunilmut@microsoft.com \
--cc=thuth@redhat.com \
--cc=wenchao.wang@intel.com \
/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).