qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Pierre Mallard <mallard.pierre@gmail.com>
To: qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Cc: Pierre Mallard <mallard.pierre@gmail.com>, tommusta@gmail.com
Subject: [Qemu-devel] [PATCH] target-ppc : Make hreg_store_msr returns exception
Date: Fri,  5 Sep 2014 15:45:17 +0200	[thread overview]
Message-ID: <1409924717-9133-1-git-send-email-mallard.pierre@gmail.com> (raw)

hreg_store_msr was both returning 0 or an exception number which could be 
POWERPC_EXCP_NONE. In case POWERPC_EXCP_NONE was returned, helper_store_msr 
was handling uncorrectly this return value and raise an exception. This patch 
correct this behavior by making hreg_store_msr always return an exception 
number, and helper_store_msr test for POWERPC_EXCP_NONE.

Signed-off-by: Pierre Mallard <mallard.pierre@gmail.com>
---
 target-ppc/excp_helper.c |    2 +-
 target-ppc/helper_regs.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/target-ppc/excp_helper.c b/target-ppc/excp_helper.c
index 922e86d..f76942b 100644
--- a/target-ppc/excp_helper.c
+++ b/target-ppc/excp_helper.c
@@ -855,7 +855,7 @@ void helper_store_msr(CPUPPCState *env, target_ulong val)
     CPUState *cs;
 
     val = hreg_store_msr(env, val, 0);
-    if (val != 0) {
+    if (val != POWERPC_EXCP_NONE) {
         cs = CPU(ppc_env_get_cpu(env));
         cs->interrupt_request |= CPU_INTERRUPT_EXITTB;
         helper_raise_exception(env, val);
diff --git a/target-ppc/helper_regs.h b/target-ppc/helper_regs.h
index 271fddf..36a522a 100644
--- a/target-ppc/helper_regs.h
+++ b/target-ppc/helper_regs.h
@@ -72,7 +72,7 @@ static inline int hreg_store_msr(CPUPPCState *env, target_ulong value,
     CPUState *cs = CPU(ppc_env_get_cpu(env));
 #endif
 
-    excp = 0;
+    excp = POWERPC_EXCP_NONE;
     value &= env->msr_mask;
 #if !defined(CONFIG_USER_ONLY)
     if (!alter_hv) {
-- 
1.7.10.4

             reply	other threads:[~2014-09-05 14:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-05 13:45 Pierre Mallard [this message]
2014-09-10 13:19 ` [Qemu-devel] [Qemu-ppc] [PATCH] target-ppc : Make hreg_store_msr returns exception Alexander Graf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1409924717-9133-1-git-send-email-mallard.pierre@gmail.com \
    --to=mallard.pierre@gmail.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=tommusta@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).