From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42809) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uu65I-0002EX-17 for qemu-devel@nongnu.org; Tue, 02 Jul 2013 15:17:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uu65F-0001GZ-Ia for qemu-devel@nongnu.org; Tue, 02 Jul 2013 15:17:51 -0400 Received: from e8.ny.us.ibm.com ([32.97.182.138]:47927) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uu65F-0001GB-Dz for qemu-devel@nongnu.org; Tue, 02 Jul 2013 15:17:49 -0400 Received: from /spool/local by e8.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 2 Jul 2013 20:17:48 +0100 Received: from d01relay04.pok.ibm.com (d01relay04.pok.ibm.com [9.56.227.236]) by d01dlp03.pok.ibm.com (Postfix) with ESMTP id 54CEAC9005A for ; Tue, 2 Jul 2013 15:17:45 -0400 (EDT) Received: from d01av02.pok.ibm.com (d01av02.pok.ibm.com [9.56.224.216]) by d01relay04.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r62JHkbt210622 for ; Tue, 2 Jul 2013 15:17:46 -0400 Received: from d01av02.pok.ibm.com (loopback [127.0.0.1]) by d01av02.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r62JHi8W023606 for ; Tue, 2 Jul 2013 16:17:46 -0300 From: Anthony Liguori In-Reply-To: <51D2EEDA.8000606@twiddle.net> References: <1372279929-28836-1-git-send-email-rth@twiddle.net> <51D2EEDA.8000606@twiddle.net> Date: Tue, 02 Jul 2013 14:17:42 -0500 Message-ID: <871u7gvkix.fsf@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PATCH v2 0/9] tcg: remainder and arm runtime detection List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson , qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, Peter Maydell , claudio.fontana@huawei.com, aurelien@aurel32.net Richard Henderson writes: > Ping. Peter, could you take a look and bring in through the arm tree? Regards, Anthony Liguori > > On 06/26/2013 01:52 PM, Richard Henderson wrote: >> This patch set includes both the remainder series and arm runtime >> detection series that I've previouslyt posted separately, as there >> are small conflicts between the two series. >> >> Aside from rebasing vs master, the only other change is to fix the >> TCG_OPF_NOT_PRESENT problem wrt call that Claudio Fontana spotted. >> >> >> r~ >> >> >> Richard Henderson (9): >> 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/arm/tcg-target.c | 96 ++++++++++++++++++++++---------------------------- >> tcg/arm/tcg-target.h | 15 ++++---- >> tcg/hppa/tcg-target.h | 1 + >> 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.h | 2 ++ >> tcg/tcg-op.h | 32 ++++++++++++++--- >> tcg/tcg-opc.h | 36 ++++++++++--------- >> tcg/tcg.c | 4 +-- >> tcg/tcg.h | 6 +++- >> tcg/tci/tcg-target.h | 2 ++ >> 15 files changed, 116 insertions(+), 124 deletions(-) >>