From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44517) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7oaf-0003OE-HR for qemu-devel@nongnu.org; Tue, 31 May 2016 14:40:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b7oab-0001XD-C8 for qemu-devel@nongnu.org; Tue, 31 May 2016 14:40:32 -0400 Received: from mail-yw0-x242.google.com ([2607:f8b0:4002:c05::242]:33654) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b7oab-0001X2-7E for qemu-devel@nongnu.org; Tue, 31 May 2016 14:40:29 -0400 Received: by mail-yw0-x242.google.com with SMTP id y6so20073559ywe.0 for ; Tue, 31 May 2016 11:40:29 -0700 (PDT) From: Pranith Kumar Date: Tue, 31 May 2016 14:39:15 -0400 Message-Id: <20160531183928.29406-1-bobby.prani@gmail.com> Subject: [Qemu-devel] [RFC v2 PATCH 00/13] tcg: Add fence gen support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: alex.bennee@linaro.org, serge.fdrv@linaro.org, rth@twiddle.net, qemu-devel@nongnu.org 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