From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37242) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UufrE-0002Mi-6d for qemu-devel@nongnu.org; Thu, 04 Jul 2013 05:29:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uufr4-0000n1-8e for qemu-devel@nongnu.org; Thu, 04 Jul 2013 05:29:44 -0400 Received: from lhrrgout.huawei.com ([194.213.3.17]:43542) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uufr3-0000mO-WC for qemu-devel@nongnu.org; Thu, 04 Jul 2013 05:29:34 -0400 Message-ID: <51D5404F.70103@huawei.com> Date: Thu, 4 Jul 2013 11:28:47 +0200 From: Claudio Fontana MIME-Version: 1.0 References: <1372886968-17497-1-git-send-email-rth@twiddle.net> In-Reply-To: <1372886968-17497-1-git-send-email-rth@twiddle.net> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 00/14] tcg: remainder and tcg-arm updates List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org, afaerber@suse.de On 03.07.2013 23:29, Richard Henderson wrote: > Changes v2-v3: > * Add myself to tcg maintainers, as per afaerber's suggestion. > * Fix rebase error wrt aarch64, as per claudio. > * Include tcg-arm unwind patch set; no point in half measures. > > > r~ > > > The following changes since commit ab8bf29078e0ab8347e2ff8b4e5542f7a0c751cf: > > Merge remote-tracking branch 'qemu-kvm/uq/master' into staging (2013-07-03 08:37:00 -0500) > > are available in the git repository at: > > git://github.com/rth7680/qemu.git tcg-next > > for you to fetch changes up to 6688d5d7eefa67b5f50b6f03a2456e4635781b3b: > > tcg-arm: Implement tcg_register_jit (2013-07-03 11:17:57 -0700) > > ---------------------------------------------------------------- > Richard Henderson (14): > tcg: Add myself to general TCG maintainership > tcg: Split rem requirement from div requirement > tcg-arm: Don't implement rem > tcg-ppc: Don't implement rem > tcg-ppc64: Don't implement rem > tcg: Allow non-constant control macros > tcg: Simplify logic using TCG_OPF_NOT_PRESENT > tcg-arm: Make use of conditional availability of opcodes for divide > tcg-arm: Simplify logic in detecting the ARM ISA in use > tcg-arm: Use AT_PLATFORM to detect the host ISA > tcg: Fix high_pc fields in .debug_info > tcg: Move the CIE and FDE header definitions to common code > tcg-i386: Use QEMU_BUILD_BUG_ON instead of assert for frame size > tcg-arm: Implement tcg_register_jit > > MAINTAINERS | 1 + > tcg/aarch64/tcg-target.h | 2 + > tcg/arm/tcg-target.c | 172 ++++++++++++++++++++++++++++++----------------- > tcg/arm/tcg-target.h | 15 +++-- > tcg/hppa/tcg-target.c | 35 +++------- > tcg/hppa/tcg-target.h | 1 + > tcg/i386/tcg-target.c | 45 +++++-------- > tcg/ia64/tcg-target.h | 2 + > tcg/mips/tcg-target.h | 1 + > tcg/ppc/tcg-target.c | 14 ---- > tcg/ppc/tcg-target.h | 1 + > tcg/ppc64/tcg-target.c | 26 ------- > tcg/ppc64/tcg-target.h | 2 + > tcg/sparc/tcg-target.c | 35 +++------- > tcg/sparc/tcg-target.h | 2 + > tcg/tcg-op.h | 32 +++++++-- > tcg/tcg-opc.h | 36 +++++----- > tcg/tcg.c | 26 +++++-- > tcg/tcg.h | 6 +- > tcg/tci/tcg-target.h | 2 + > 20 files changed, 242 insertions(+), 214 deletions(-) > Tested tcg/aarch64 on Aarch64 Foundationv8 (sparc-softmmu, arm-softmmu, x86_64-softmmu). Tested-by: Claudio Fontana Reviewed-by: Claudio Fontana