From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52409) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqhY3-000366-SR for qemu-devel@nongnu.org; Thu, 14 Apr 2016 09:43:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aqhXy-0001qX-IL for qemu-devel@nongnu.org; Thu, 14 Apr 2016 09:43:07 -0400 Received: from chuckie.co.uk ([82.165.15.123]:49874 helo=s16892447.onlinehome-server.info) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aqhXy-0001pR-Bm for qemu-devel@nongnu.org; Thu, 14 Apr 2016 09:43:02 -0400 References: From: Mark Cave-Ayland Message-ID: <570F9E3A.4030809@ilande.co.uk> Date: Thu, 14 Apr 2016 14:42:18 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 1/2 for-2.6] target-sparc: fix Nucleus quad LDD 128 bit access for windowed registers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Artyom Tarasenko Cc: qemu-devel On 14/04/16 10:29, Artyom Tarasenko wrote: > Fix register offset calculation when regwptr is used. > > Signed-off-by: Artyom Tarasenko > --- > target-sparc/ldst_helper.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > > diff --git a/target-sparc/ldst_helper.c b/target-sparc/ldst_helper.c > index 2b0221c..a383074 100644 > --- a/target-sparc/ldst_helper.c > +++ b/target-sparc/ldst_helper.c > @@ -2059,11 +2059,11 @@ void helper_ldda_asi(CPUSPARCState *env, target_ulong addr, int asi, int rd) > bswap64s(&env->gregs[rd + 1]); > } > } else { > - env->regwptr[rd] = cpu_ldq_nucleus(env, addr); > - env->regwptr[rd + 1] = cpu_ldq_nucleus(env, addr + 8); > + env->regwptr[rd - 8] = cpu_ldq_nucleus(env, addr); > + env->regwptr[rd + 1 - 8] = cpu_ldq_nucleus(env, addr + 8); > if (asi == 0x2c) { > - bswap64s(&env->regwptr[rd]); > - bswap64s(&env->regwptr[rd + 1]); > + bswap64s(&env->regwptr[rd - 8]); > + bswap64s(&env->regwptr[rd + 1 - 8]); > } > } > break; > @@ -2076,8 +2076,8 @@ void helper_ldda_asi(CPUSPARCState *env, target_ulong addr, int asi, int rd) > env->gregs[rd] = helper_ld_asi(env, addr, asi, 4, 0); > env->gregs[rd + 1] = helper_ld_asi(env, addr + 4, asi, 4, 0); > } else { > - env->regwptr[rd] = helper_ld_asi(env, addr, asi, 4, 0); > - env->regwptr[rd + 1] = helper_ld_asi(env, addr + 4, asi, 4, 0); > + env->regwptr[rd - 8] = helper_ld_asi(env, addr, asi, 4, 0); > + env->regwptr[rd + 1 - 8] = helper_ld_asi(env, addr + 4, asi, 4, 0); > } > break; > } > So it seems that without this patch any ldda on a non-global register is placing the result into the wrong register which is fairly nasty. The patch does apply, but only with fuzz, and checkpatch.pl reports several warnings with spacing/line endings. If you can rebase to master and resend then you can add my Reviewed-by and I'm okay with this for 2.6 - register corruption is not good. ATB, Mark.