From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "MTTCG Devel" <mttcg@listserver.greensocs.com>,
"QEMU Developers" <qemu-devel@nongnu.org>,
"KONRAD Frédéric" <fred.konrad@greensocs.com>,
"Alvise Rigo" <a.rigo@virtualopensystems.com>,
"Emilio G. Cota" <cota@braap.org>,
"Pranith Kumar" <bobby.prani@gmail.com>,
"Nikunj A Dadhania" <nikunj@linux.vnet.ibm.com>,
"Mark Burton" <mark.burton@greensocs.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Jan Kiszka" <jan.kiszka@siemens.com>,
"Fedorov Sergey" <serge.fdrv@gmail.com>,
"Richard Henderson" <rth@twiddle.net>,
"Bamvor Zhang Jian" <bamvor.zhangjian@linaro.org>,
"Peter Crosthwaite" <crosthwaite.peter@gmail.com>,
"open list:ARM" <qemu-arm@nongnu.org>
Subject: Re: [PATCH v9 25/25] tcg: enable MTTCG by default for ARM on x86 hosts
Date: Fri, 03 Feb 2017 12:07:39 +0000 [thread overview]
Message-ID: <87r33ffpf8.fsf@linaro.org> (raw)
In-Reply-To: <CAFEAcA8nAQy4NNZ0RG0wOJ6rQoKz54UN22Z9LL2o2EgMdtpObQ@mail.gmail.com>
Peter Maydell <peter.maydell@linaro.org> writes:
> On 1 February 2017 at 15:05, Alex Bennée <alex.bennee@linaro.org> wrote:
>> This enables the multi-threaded system emulation by default for ARMv7
>> and ARMv8 guests using the x86_64 TCG backend. This is because on the
>> guest side:
>>
>> - The ARM translate.c/translate-64.c have been converted to
>> - use MTTCG safe atomic primitives
>> - emit the appropriate barrier ops
>> - The ARM machine has been updated to
>> - hold the BQL when modifying shared cross-vCPU state
>> - defer cpu_reset to async safe work
>>
>> All the host backends support the barrier and atomic primitives but
>> need to provide same-or-better support for normal load/store
>> operations.
>
>> diff --git a/cpus.c b/cpus.c
>> index e3d9f3fe21..e1b82bcd49 100644
>> --- a/cpus.c
>> +++ b/cpus.c
>> @@ -176,8 +176,8 @@ bool mttcg_enabled;
>>
>> static bool check_tcg_memory_orders_compatible(void)
>> {
>> -#if defined(TCG_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
>> - return (TCG_DEFAULT_MO & ~TCG_TARGET_DEFAULT_MO) == 0;
>> +#if defined(TCG_GUEST_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
>> + return (TCG_GUEST_DEFAULT_MO & ~TCG_TARGET_DEFAULT_MO) == 0;
>
> This looks like maybe something that should have been squashed
> into an earlier part of the patchset?
Good catch. I shall fix that up.
>
>> #else
>> return false;
>> #endif
>> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
>> index a3c4d07817..0ef31db3e0 100644
>> --- a/target/arm/cpu.h
>> +++ b/target/arm/cpu.h
>> @@ -30,6 +30,9 @@
>> # define TARGET_LONG_BITS 32
>> #endif
>>
>> +/* ARM processors have a weak memory model */
>> +#define TCG_GUEST_DEFAULT_MO (0)
>
> Do you need the () ?
>
>
> That said, if Richard is happy with turning this on then
> I'm happy to do so.
>
> Acked-by: Peter Maydell <peter.maydell@linaro.org>
>
> thanks
> -- PMM
--
Alex Bennée
WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "MTTCG Devel" <mttcg@listserver.greensocs.com>,
"QEMU Developers" <qemu-devel@nongnu.org>,
"KONRAD Frédéric" <fred.konrad@greensocs.com>,
"Alvise Rigo" <a.rigo@virtualopensystems.com>,
"Emilio G. Cota" <cota@braap.org>,
"Pranith Kumar" <bobby.prani@gmail.com>,
"Nikunj A Dadhania" <nikunj@linux.vnet.ibm.com>,
"Mark Burton" <mark.burton@greensocs.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Jan Kiszka" <jan.kiszka@siemens.com>,
"Fedorov Sergey" <serge.fdrv@gmail.com>,
"Richard Henderson" <rth@twiddle.net>,
"Bamvor Zhang Jian" <bamvor.zhangjian@linaro.org>,
"Peter Crosthwaite" <crosthwaite.peter@gmail.com>,
"open list:ARM" <qemu-arm@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v9 25/25] tcg: enable MTTCG by default for ARM on x86 hosts
Date: Fri, 03 Feb 2017 12:07:39 +0000 [thread overview]
Message-ID: <87r33ffpf8.fsf@linaro.org> (raw)
In-Reply-To: <CAFEAcA8nAQy4NNZ0RG0wOJ6rQoKz54UN22Z9LL2o2EgMdtpObQ@mail.gmail.com>
Peter Maydell <peter.maydell@linaro.org> writes:
> On 1 February 2017 at 15:05, Alex Bennée <alex.bennee@linaro.org> wrote:
>> This enables the multi-threaded system emulation by default for ARMv7
>> and ARMv8 guests using the x86_64 TCG backend. This is because on the
>> guest side:
>>
>> - The ARM translate.c/translate-64.c have been converted to
>> - use MTTCG safe atomic primitives
>> - emit the appropriate barrier ops
>> - The ARM machine has been updated to
>> - hold the BQL when modifying shared cross-vCPU state
>> - defer cpu_reset to async safe work
>>
>> All the host backends support the barrier and atomic primitives but
>> need to provide same-or-better support for normal load/store
>> operations.
>
>> diff --git a/cpus.c b/cpus.c
>> index e3d9f3fe21..e1b82bcd49 100644
>> --- a/cpus.c
>> +++ b/cpus.c
>> @@ -176,8 +176,8 @@ bool mttcg_enabled;
>>
>> static bool check_tcg_memory_orders_compatible(void)
>> {
>> -#if defined(TCG_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
>> - return (TCG_DEFAULT_MO & ~TCG_TARGET_DEFAULT_MO) == 0;
>> +#if defined(TCG_GUEST_DEFAULT_MO) && defined(TCG_TARGET_DEFAULT_MO)
>> + return (TCG_GUEST_DEFAULT_MO & ~TCG_TARGET_DEFAULT_MO) == 0;
>
> This looks like maybe something that should have been squashed
> into an earlier part of the patchset?
Good catch. I shall fix that up.
>
>> #else
>> return false;
>> #endif
>> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
>> index a3c4d07817..0ef31db3e0 100644
>> --- a/target/arm/cpu.h
>> +++ b/target/arm/cpu.h
>> @@ -30,6 +30,9 @@
>> # define TARGET_LONG_BITS 32
>> #endif
>>
>> +/* ARM processors have a weak memory model */
>> +#define TCG_GUEST_DEFAULT_MO (0)
>
> Do you need the () ?
>
>
> That said, if Richard is happy with turning this on then
> I'm happy to do so.
>
> Acked-by: Peter Maydell <peter.maydell@linaro.org>
>
> thanks
> -- PMM
--
Alex Bennée
next prev parent reply other threads:[~2017-02-03 12:07 UTC|newest]
Thread overview: 60+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-01 15:05 [Qemu-devel] [PATCH v9 00/25] MTTCG Base enabling patches with ARM enablement Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 01/25] docs: new design document multi-thread-tcg.txt Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 02/25] mttcg: translate-all: Enable locking debug in a debug build Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 03/25] mttcg: Add missing tb_lock/unlock() in cpu_exec_step() Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 04/25] tcg: move TCG_MO/BAR types into own file Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 05/25] tcg: add options for enabling MTTCG Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 06/25] tcg: add kick timer for single-threaded vCPU emulation Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 07/25] tcg: rename tcg_current_cpu to tcg_current_rr_cpu Alex Bennée
2017-02-01 15:05 ` [PATCH v9 08/25] tcg: drop global lock during TCG code execution Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 10:09 ` Peter Maydell
2017-02-03 10:09 ` [Qemu-devel] " Peter Maydell
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 09/25] tcg: remove global exit_request Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 10/25] tcg: enable tb_lock() for SoftMMU Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 11/25] tcg: enable thread-per-vCPU Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 12/25] tcg: handle EXCP_ATOMIC exception for system emulation Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 13/25] cputlb: add assert_cpu_is_self checks Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 14/25] cputlb: tweak qemu_ram_addr_from_host_nofail reporting Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 15/25] cputlb: introduce tlb_flush_* async work Alex Bennée
2017-02-01 15:05 ` [PATCH v9 16/25] cputlb and arm/sparc targets: convert mmuidx flushes from varg to bitmap Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-01 21:29 ` Richard Henderson
2017-02-01 21:29 ` [Qemu-devel] " Richard Henderson
2017-02-03 10:15 ` Peter Maydell
2017-02-03 10:15 ` [Qemu-devel] " Peter Maydell
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 17/25] cputlb: add tlb_flush_by_mmuidx async routines Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 18/25] cputlb: atomically update tlb fields used by tlb_reset_dirty Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] [PATCH v9 19/25] cputlb: introduce tlb_flush_*_all_cpus[_synced] Alex Bennée
2017-02-01 15:05 ` [PATCH v9 20/25] target-arm/powerctl: defer cpu reset work to CPU context Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:15 ` Peter Maydell
2017-02-03 11:15 ` [Qemu-devel] " Peter Maydell
2017-02-03 15:02 ` Alex Bennée
2017-02-03 15:02 ` [Qemu-devel] " Alex Bennée
2017-02-01 15:05 ` [PATCH v9 21/25] target-arm: don't generate WFE/YIELD calls for MTTCG Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:17 ` Peter Maydell
2017-02-03 11:17 ` [Qemu-devel] " Peter Maydell
2017-02-03 11:30 ` Alex Bennée
2017-02-03 11:30 ` [Qemu-devel] " Alex Bennée
2017-02-01 15:05 ` [PATCH v9 22/25] target-arm/cpu.h: make ARM_CP defined consistent Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:19 ` Peter Maydell
2017-02-03 11:19 ` [Qemu-devel] " Peter Maydell
2017-02-01 15:05 ` [PATCH v9 23/25] target-arm: introduce ARM_CP_EXIT_PC Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:22 ` Peter Maydell
2017-02-03 11:22 ` [Qemu-devel] " Peter Maydell
2017-02-03 11:33 ` Alex Bennée
2017-02-03 11:33 ` [Qemu-devel] " Alex Bennée
2017-02-01 15:05 ` [PATCH v9 24/25] target-arm: ensure all cross vCPUs TLB flushes complete Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:33 ` Peter Maydell
2017-02-03 11:33 ` [Qemu-devel] " Peter Maydell
2017-02-01 15:05 ` [PATCH v9 25/25] tcg: enable MTTCG by default for ARM on x86 hosts Alex Bennée
2017-02-01 15:05 ` [Qemu-devel] " Alex Bennée
2017-02-03 11:25 ` Peter Maydell
2017-02-03 11:25 ` [Qemu-devel] " Peter Maydell
2017-02-03 12:07 ` Alex Bennée [this message]
2017-02-03 12:07 ` Alex Bennée
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=87r33ffpf8.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=a.rigo@virtualopensystems.com \
--cc=bamvor.zhangjian@linaro.org \
--cc=bobby.prani@gmail.com \
--cc=cota@braap.org \
--cc=crosthwaite.peter@gmail.com \
--cc=fred.konrad@greensocs.com \
--cc=jan.kiszka@siemens.com \
--cc=mark.burton@greensocs.com \
--cc=mttcg@listserver.greensocs.com \
--cc=nikunj@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
--cc=serge.fdrv@gmail.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 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.