From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38766) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgqAe-00018H-LB for qemu-devel@nongnu.org; Tue, 12 Jul 2011 23:31:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QgqAd-0004FE-6B for qemu-devel@nongnu.org; Tue, 12 Jul 2011 23:31:32 -0400 Received: from mail-iw0-f173.google.com ([209.85.214.173]:52793) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QgqAd-0004EG-0A for qemu-devel@nongnu.org; Tue, 12 Jul 2011 23:31:31 -0400 Received: by iwn3 with SMTP id 3so5877236iwn.4 for ; Tue, 12 Jul 2011 20:31:30 -0700 (PDT) From: Tsuneo Saito Date: Wed, 13 Jul 2011 12:30:46 +0900 Message-Id: <1310527849-784-2-git-send-email-tsnsaito@gmail.com> In-Reply-To: <1310527849-784-1-git-send-email-tsnsaito@gmail.com> References: <1310527849-784-1-git-send-email-tsnsaito@gmail.com> Subject: [Qemu-devel] [PATCH 1/4] SPARC64: Implement ldfa/lddfa/ldqfa instructions properly List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Tsuneo Saito This patch implements sparcv9 ldfa/lddfa/ldqfa instructions with non block-load ASIs. Signed-off-by: Tsuneo Saito --- target-sparc/op_helper.c | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/target-sparc/op_helper.c b/target-sparc/op_helper.c index fd0cfbd..a75ac4f 100644 --- a/target-sparc/op_helper.c +++ b/target-sparc/op_helper.c @@ -3331,7 +3331,7 @@ void helper_ldda_asi(target_ulong addr, int asi, int rd) void helper_ldf_asi(target_ulong addr, int asi, int size, int rd) { unsigned int i; - target_ulong val; + CPU_DoubleU u; helper_check_align(addr, 3); addr = asi_address_mask(env, asi, addr); @@ -3371,17 +3371,23 @@ void helper_ldf_asi(target_ulong addr, int asi, int size, int rd) break; } - val = helper_ld_asi(addr, asi, size, 0); switch(size) { default: case 4: - *((uint32_t *)&env->fpr[rd]) = val; + *((uint32_t *)&env->fpr[rd]) = helper_ld_asi(addr, asi, size, 0); break; case 8: - *((int64_t *)&DT0) = val; + u.ll = helper_ld_asi(addr, asi, size, 0); + *((uint32_t *)&env->fpr[rd++]) = u.l.upper; + *((uint32_t *)&env->fpr[rd++]) = u.l.lower; break; case 16: - // XXX + u.ll = helper_ld_asi(addr, asi, 8, 0); + *((uint32_t *)&env->fpr[rd++]) = u.l.upper; + *((uint32_t *)&env->fpr[rd++]) = u.l.lower; + u.ll = helper_ld_asi(addr + 8, asi, 8, 0); + *((uint32_t *)&env->fpr[rd++]) = u.l.upper; + *((uint32_t *)&env->fpr[rd++]) = u.l.lower; break; } } -- 1.7.5.4