From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:51254) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBvwf-00062j-EY for qemu-devel@nongnu.org; Sun, 25 Mar 2012 18:29:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SBvwd-00080m-CA for qemu-devel@nongnu.org; Sun, 25 Mar 2012 18:29:53 -0400 Received: from mail-pb0-f45.google.com ([209.85.160.45]:64515) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SBvwd-00080i-2e for qemu-devel@nongnu.org; Sun, 25 Mar 2012 18:29:51 -0400 Received: by pbcuo5 with SMTP id uo5so6349315pbc.4 for ; Sun, 25 Mar 2012 15:29:49 -0700 (PDT) Sender: Richard Henderson Message-ID: <4F6F9C5B.9000601@twiddle.net> Date: Sun, 25 Mar 2012 15:29:47 -0700 From: Richard Henderson MIME-Version: 1.0 References: In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/6] ARM: AREG0 conversion List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: Peter Maydell , qemu-devel , Paul Brook On 03/24/2012 11:58 AM, Blue Swirl wrote: > v2: fix patch 1, tweak patch 2 and rebase to master. > > URL git://repo.or.cz/qemu/blueswirl.git > http://repo.or.cz/r/qemu/blueswirl.git > > Blue Swirl (6): > arm: move neon_tbl to neon_helper.c > arm: move saturating arithmetic to helper.c > arm: move other arithmetic to helper.c > arm: move cpsr and banked register access to helper.c > arm: move exception and wfi helpers to helper.c > arm: move load and store helpers, switch to AREG0 free mode > > Makefile.target | 6 +- > configure | 2 +- > target-arm/helper.c | 387 +++++++++++++++++++++++++++++++++++++++++- > target-arm/helper.h | 60 ++++---- > target-arm/neon_helper.c | 22 +++ > target-arm/op_helper.c | 430 ---------------------------------------------- > target-arm/translate.c | 148 ++++++++-------- > 7 files changed, 512 insertions(+), 543 deletions(-) > delete mode 100644 target-arm/op_helper.c > Reviewed-by: Richard Henderson r~