From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35691) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoehK-0002Ms-Bv for qemu-devel@nongnu.org; Thu, 05 Dec 2013 14:34:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VoehG-00011Z-19 for qemu-devel@nongnu.org; Thu, 05 Dec 2013 14:34:54 -0500 Received: from mail-yh0-x230.google.com ([2607:f8b0:4002:c01::230]:38023) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VoehF-00011T-Ra for qemu-devel@nongnu.org; Thu, 05 Dec 2013 14:34:49 -0500 Received: by mail-yh0-f48.google.com with SMTP id f73so12841914yha.21 for ; Thu, 05 Dec 2013 11:34:48 -0800 (PST) Sender: Richard Henderson Message-ID: <52A0D54A.6050406@twiddle.net> Date: Fri, 06 Dec 2013 08:34:34 +1300 From: Richard Henderson MIME-Version: 1.0 References: <1386247180-26994-1-git-send-email-peter.maydell@linaro.org> <1386247180-26994-9-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1386247180-26994-9-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 08/12] target-arm: A64: add support for B and BL insns List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel@nongnu.org Cc: patches@linaro.org, Michael Matz , C Fontana , Dirk Mueller , Laurent Desnogues , =?ISO-8859-1?Q?Alex_Benn=E9e?= , kvmarm@lists.cs.columbia.edu On 12/06/2013 01:39 AM, Peter Maydell wrote: > From: Alexander Graf > > Implement the B and BL instructions (PC relative branches and calls). > > For convenience in managing TCG temporaries which might be generated > if a source register is the zero-register XZR, we provide a simple > mechanism for creating a new temp which is automatically freed at the > end of decode of the instruction. > > Signed-off-by: Alexander Graf > [claudio: renamed functions, adapted to new decoder layout] > Signed-off-by: Claudio Fontana > Signed-off-by: Peter Maydell > --- > target-arm/translate-a64.c | 64 ++++++++++++++++++++++++++++++++++++++++++-- > target-arm/translate.h | 3 +++ > 2 files changed, 65 insertions(+), 2 deletions(-) Reviewed-by: Richard Henderson r~