diff mbox

[V2] PPC/GDB: handle read and write of fpscr

Message ID 1363714913-3804-1-git-send-email-chouteau@adacore.com
State New
Headers show

Commit Message

Fabien Chouteau March 19, 2013, 5:41 p.m. UTC
Although the support of this register may be uncomplete, there are no
reason to prevent the debugger from reading or writing it.

Signed-off-by: Fabien Chouteau <chouteau@adacore.com>
---
 gdbstub.c                   |    3 ++-
 target-ppc/cpu.h            |    2 ++
 target-ppc/fpu_helper.c     |    5 +++++
 target-ppc/translate_init.c |    2 +-
 4 files changed, 10 insertions(+), 2 deletions(-)

Comments

Alexander Graf March 21, 2013, 10:08 a.m. UTC | #1
On 19.03.2013, at 18:41, Fabien Chouteau wrote:

> Although the support of this register may be uncomplete, there are no
> reason to prevent the debugger from reading or writing it.
> 
> Signed-off-by: Fabien Chouteau <chouteau@adacore.com>

Thanks, applied to ppc-next.


Alex

> ---
> gdbstub.c                   |    3 ++-
> target-ppc/cpu.h            |    2 ++
> target-ppc/fpu_helper.c     |    5 +++++
> target-ppc/translate_init.c |    2 +-
> 4 files changed, 10 insertions(+), 2 deletions(-)
> 
> diff --git a/gdbstub.c b/gdbstub.c
> index e414ad9..d12ce52 100644
> --- a/gdbstub.c
> +++ b/gdbstub.c
> @@ -781,7 +781,8 @@ static int cpu_gdb_write_register(CPUPPCState *env, uint8_t *mem_buf, int n)
>             /* fpscr */
>             if (gdb_has_xml)
>                 return 0;
> -            return 4;
> +            store_fpscr(env, ldtul_p(mem_buf), 0xffffffff);
> +            return sizeof(target_ulong);
>         }
>     }
>     return 0;
> diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
> index 417abb0..543f367 100644
> --- a/target-ppc/cpu.h
> +++ b/target-ppc/cpu.h
> @@ -1181,6 +1181,8 @@ void ppc_tlb_invalidate_one (CPUPPCState *env, target_ulong addr);
> #endif
> #endif
> 
> +void store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask);
> +
> static inline uint64_t ppc_dump_gpr(CPUPPCState *env, int gprn)
> {
>     uint64_t gprv;
> diff --git a/target-ppc/fpu_helper.c b/target-ppc/fpu_helper.c
> index 9d67926..9e779ea 100644
> --- a/target-ppc/fpu_helper.c
> +++ b/target-ppc/fpu_helper.c
> @@ -463,6 +463,11 @@ void helper_store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask)
>     fpscr_set_rounding_mode(env);
> }
> 
> +void store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask)
> +{
> +    helper_store_fpscr(env, arg, mask);
> +}
> +
> void helper_float_check_status(CPUPPCState *env)
> {
>     if (env->exception_index == POWERPC_EXCP_PROGRAM &&
> diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c
> index 09ad4ba..8511b2f 100644
> --- a/target-ppc/translate_init.c
> +++ b/target-ppc/translate_init.c
> @@ -7693,7 +7693,7 @@ static int gdb_set_float_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
>         return 8;
>     }
>     if (n == 32) {
> -        /* FPSCR not implemented  */
> +        helper_store_fpscr(env, ldl_p(mem_buf), 0xffffffff);
>         return 4;
>     }
>     return 0;
> -- 
> 1.7.9.5
>
diff mbox

Patch

diff --git a/gdbstub.c b/gdbstub.c
index e414ad9..d12ce52 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -781,7 +781,8 @@  static int cpu_gdb_write_register(CPUPPCState *env, uint8_t *mem_buf, int n)
             /* fpscr */
             if (gdb_has_xml)
                 return 0;
-            return 4;
+            store_fpscr(env, ldtul_p(mem_buf), 0xffffffff);
+            return sizeof(target_ulong);
         }
     }
     return 0;
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index 417abb0..543f367 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -1181,6 +1181,8 @@  void ppc_tlb_invalidate_one (CPUPPCState *env, target_ulong addr);
 #endif
 #endif
 
+void store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask);
+
 static inline uint64_t ppc_dump_gpr(CPUPPCState *env, int gprn)
 {
     uint64_t gprv;
diff --git a/target-ppc/fpu_helper.c b/target-ppc/fpu_helper.c
index 9d67926..9e779ea 100644
--- a/target-ppc/fpu_helper.c
+++ b/target-ppc/fpu_helper.c
@@ -463,6 +463,11 @@  void helper_store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask)
     fpscr_set_rounding_mode(env);
 }
 
+void store_fpscr(CPUPPCState *env, uint64_t arg, uint32_t mask)
+{
+    helper_store_fpscr(env, arg, mask);
+}
+
 void helper_float_check_status(CPUPPCState *env)
 {
     if (env->exception_index == POWERPC_EXCP_PROGRAM &&
diff --git a/target-ppc/translate_init.c b/target-ppc/translate_init.c
index 09ad4ba..8511b2f 100644
--- a/target-ppc/translate_init.c
+++ b/target-ppc/translate_init.c
@@ -7693,7 +7693,7 @@  static int gdb_set_float_reg(CPUPPCState *env, uint8_t *mem_buf, int n)
         return 8;
     }
     if (n == 32) {
-        /* FPSCR not implemented  */
+        helper_store_fpscr(env, ldl_p(mem_buf), 0xffffffff);
         return 4;
     }
     return 0;