From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7ogq-0000yh-SL for qemu-devel@nongnu.org; Tue, 31 May 2016 14:46:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7ogo-0003Rp-Mp for qemu-devel@nongnu.org; Tue, 31 May 2016 14:46:55 -0400 Received: from mail-io0-x22a.google.com ([2607:f8b0:4001:c06::22a]:36633) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7ogo-0003Rj-Hp for qemu-devel@nongnu.org; Tue, 31 May 2016 14:46:54 -0400 Received: by mail-io0-x22a.google.com with SMTP id f8so142626874ioe.3 for ; Tue, 31 May 2016 11:46:54 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20160531183928.29406-1-bobby.prani@gmail.com> References: <20160531183928.29406-1-bobby.prani@gmail.com> From: Pranith Kumar Date: Tue, 31 May 2016 14:46:24 -0400 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [RFC v2 PATCH 00/13] tcg: Add fence gen support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Pranith Kumar Cc: =?UTF-8?B?QWxleCBCZW5uw6ll?= , Richard Henderson , qemu-devel , Sergey Fedorov Added correct email for Sergey in CC. I apologize for getting Sergey's email wrong. Please drop/correct his email when replying to the patches in this series otherwise you will see an email bounce. On Tue, May 31, 2016 at 2:39 PM, Pranith Kumar wrote: > Hello, > > The following series adds fence instruction generation support to > TCG. The current work has been rebased on-top of Richard's patch > series. > > This has been tested and confirmed to fix ordering issues on a x86 > host with MTTCG enabled ARMv7 guest using KVM unit tests. > > Pranith Kumar (13): > Introduce TCGOpcode for memory barrier > tcg/i386: Add support for fence > tcg/aarch64: Add support for fence > tcg/arm: Add support for fence > tcg/ia64: Add support for fence > tcg/mips: Add support for fence > tcg/ppc: Add support for fence > tcg/s390: Add support for fence > tcg/sparc: Add support for fence > tcg/tci: Add support for fence > target-arm: Generate fences in ARMv7 frontend > target-alpha: Generate fence op > tcg: Generate fences only for SMP MTTCG guests > > target-alpha/translate.c | 5 +++-- > target-arm/translate.c | 7 +++++-- > tcg/README | 17 +++++++++++++++++ > tcg/aarch64/tcg-target.inc.c | 7 +++++++ > tcg/arm/tcg-target.inc.c | 12 ++++++++++++ > tcg/i386/tcg-target.inc.c | 35 +++++++++++++++++++++++++++++++++++ > tcg/ia64/tcg-target.inc.c | 5 +++++ > tcg/mips/tcg-target.inc.c | 6 ++++++ > tcg/ppc/tcg-target.inc.c | 8 ++++++++ > tcg/s390/tcg-target.inc.c | 9 +++++++++ > tcg/sparc/tcg-target.inc.c | 8 ++++++++ > tcg/tcg-op.c | 9 +++++++++ > tcg/tcg-op.h | 2 ++ > tcg/tcg-opc.h | 2 ++ > tcg/tcg.h | 8 ++++++++ > tcg/tci/tcg-target.inc.c | 3 +++ > tci.c | 3 +++ > 17 files changed, 142 insertions(+), 4 deletions(-) > > -- > 2.8.3 > -- Pranith