[GDBserver] Move Z packet defines and type convertion routines to shared code.
authorPedro Alves <palves@redhat.com>
Tue, 20 May 2014 17:24:27 +0000 (18:24 +0100)
committerPedro Alves <palves@redhat.com>
Tue, 20 May 2014 17:41:41 +0000 (18:41 +0100)
The Aarch64, MIPS and x86 Linux backends all have Z packet number
defines and corresponding protocol number to internal type convertion
routines.  Factor them all out to gdbserver's core code, so we only
have one shared copy.

Tested on x86_64 Fedora 20, and also cross built for aarch64-linux-gnu
and mips-linux-gnu.

gdb/gdbserver/
2014-05-20  Pedro Alves  <palves@redhat.com>

* mem-break.h: Include break-common.h.
(Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
(Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): New defines.
(Z_packet_to_target_hw_bp_type): New declaration.
* mem-break.c (Z_packet_to_target_hw_bp_type): New function.
* i386-low.c (Z_PACKET_HW_BP, Z_PACKET_WRITE_WP, Z_PACKET_READ_WP)
(Z_PACKET_ACCESS_WP): Delete macros.
(Z_packet_to_hw_type): Delete function.
* i386-low.h: Don't include break-common.h here.
(Z_packet_to_hw_type): Delete declaration.
* linux-x86-low.c (x86_insert_point, x86_insert_point): Call
Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
* win32-i386-low.c (i386_insert_point, i386_remove_point): Call
Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
* linux-aarch64-low.c: Don't include break-common.h here.
(Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
(Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): Delete macros.
(Z_packet_to_target_hw_bp_type): Delete function.
* linux-mips-low.c (rsp_bp_type_to_target_hw_bp_type): Delete
function.
(mips_insert_point, mips_remove_point): Use
Z_packet_to_target_hw_bp_type.

gdb/gdbserver/ChangeLog
gdb/gdbserver/i386-low.c
gdb/gdbserver/i386-low.h
gdb/gdbserver/linux-aarch64-low.c
gdb/gdbserver/linux-mips-low.c
gdb/gdbserver/linux-x86-low.c
gdb/gdbserver/mem-break.c
gdb/gdbserver/mem-break.h
gdb/gdbserver/win32-i386-low.c

index ef54cf9..dd80a6d 100644 (file)
@@ -1,5 +1,30 @@
 2014-05-20  Pedro Alves  <palves@redhat.com>
 
+       * mem-break.h: Include break-common.h.
+       (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
+       (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): New defines.
+       (Z_packet_to_target_hw_bp_type): New declaration.
+       * mem-break.c (Z_packet_to_target_hw_bp_type): New function.
+       * i386-low.c (Z_PACKET_HW_BP, Z_PACKET_WRITE_WP, Z_PACKET_READ_WP)
+       (Z_PACKET_ACCESS_WP): Delete macros.
+       (Z_packet_to_hw_type): Delete function.
+       * i386-low.h: Don't include break-common.h here.
+       (Z_packet_to_hw_type): Delete declaration.
+       * linux-x86-low.c (x86_insert_point, x86_insert_point): Call
+       Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
+       * win32-i386-low.c (i386_insert_point, i386_remove_point): Call
+       Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
+       * linux-aarch64-low.c: Don't include break-common.h here.
+       (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
+       (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): Delete macros.
+       (Z_packet_to_target_hw_bp_type): Delete function.
+       * linux-mips-low.c (rsp_bp_type_to_target_hw_bp_type): Delete
+       function.
+       (mips_insert_point, mips_remove_point): Use
+       Z_packet_to_target_hw_bp_type.
+
+2014-05-20  Pedro Alves  <palves@redhat.com>
+
        * linux-aarch64-low.c: Include break-common.h.
        (enum target_point_type): Delete.
        (Z_packet_to_point_type): Rename to ...
index 03eebd1..de2d11a 100644 (file)
@@ -402,29 +402,6 @@ Invalid value %d of operation in i386_handle_nonaligned_watchpoint.\n",
   return retval;
 }
 
-#define Z_PACKET_HW_BP '1'
-#define Z_PACKET_WRITE_WP '2'
-#define Z_PACKET_READ_WP '3'
-#define Z_PACKET_ACCESS_WP '4'
-
-enum target_hw_bp_type
-Z_packet_to_hw_type (char type)
-{
-  switch (type)
-    {
-    case Z_PACKET_HW_BP:
-      return hw_execute;
-    case Z_PACKET_WRITE_WP:
-      return hw_write;
-    case Z_PACKET_READ_WP:
-      return hw_read;
-    case Z_PACKET_ACCESS_WP:
-      return hw_access;
-    default:
-      fatal ("Z_packet_to_hw_type: bad watchpoint type %c", type);
-    }
-}
-
 /* Update the inferior debug registers state, in INF_STATE, with the
    new debug registers state, in NEW_STATE.  */
 
index d91c90a..8d8e73f 100644 (file)
    counts, and allow to watch regions up to 16 bytes long
    (32 bytes on 64 bit hosts).  */
 
-#include "break-common.h"
-
-/* Map the protocol watchpoint type TYPE to enum target_hw_bp_type.  */
-
-enum target_hw_bp_type Z_packet_to_hw_type (char type);
-
 /* Debug registers' indices.  */
 #define DR_FIRSTADDR 0
 #define DR_LASTADDR  3
index 8b32d79..7e425c9 100644 (file)
@@ -29,7 +29,6 @@
 #include <sys/uio.h>
 
 #include "gdb_proc_service.h"
-#include "break-common.h"
 
 /* Defined in auto-generated files.  */
 void init_registers_aarch64 (void);
@@ -209,33 +208,6 @@ struct arch_lwp_info
 static int aarch64_num_bp_regs;
 static int aarch64_num_wp_regs;
 
-#define Z_PACKET_SW_BP '0'
-#define Z_PACKET_HW_BP '1'
-#define Z_PACKET_WRITE_WP '2'
-#define Z_PACKET_READ_WP '3'
-#define Z_PACKET_ACCESS_WP '4'
-
-/* Map the protocol breakpoint/watchpoint type TYPE to enum
-   target_hw_bp_type.  */
-
-static enum target_hw_bp_type
-Z_packet_to_target_hw_bp_type (char type)
-{
-  switch (type)
-    {
-    case Z_PACKET_HW_BP:
-      return hw_execute;
-    case Z_PACKET_WRITE_WP:
-      return hw_write;
-    case Z_PACKET_READ_WP:
-      return hw_read;
-    case Z_PACKET_ACCESS_WP:
-      return hw_access;
-    default:
-      fatal ("bad watchpoint type %c", type);
-    }
-}
-
 static int
 aarch64_cannot_store_register (int regno)
 {
index 5a24bfe..112448c 100644 (file)
@@ -372,24 +372,6 @@ mips_linux_prepare_to_resume (struct lwp_info *lwp)
     }
 }
 
-/* Translate breakpoint type TYPE in rsp to 'enum target_hw_bp_type'.  */
-
-static enum target_hw_bp_type
-rsp_bp_type_to_target_hw_bp_type (char type)
-{
-  switch (type)
-    {
-    case '2':
-      return hw_write;
-    case '3':
-      return hw_read;
-    case '4':
-      return hw_access;
-    }
-
-  gdb_assert_not_reached ("unhandled RSP breakpoint type");
-}
-
 /* This is the implementation of linux_target_ops method
    insert_point.  */
 
@@ -434,7 +416,7 @@ mips_insert_point (char type, CORE_ADDR addr, int len)
   mips_linux_watch_populate_regs (private->current_watches, &regs);
 
   /* Now try to add the new watch.  */
-  watch_type = rsp_bp_type_to_target_hw_bp_type (type);
+  watch_type = Z_packet_to_target_hw_bp_type (type);
   irw = mips_linux_watch_type_to_irw (watch_type);
   if (!mips_linux_watch_try_one_watch (&regs, addr, len, irw))
     return -1;
@@ -490,7 +472,7 @@ mips_remove_point (char type, CORE_ADDR addr, int len)
     }
 
   /* Search for a known watch that matches.  Then unlink and free it.  */
-  watch_type = rsp_bp_type_to_target_hw_bp_type (type);
+  watch_type = Z_packet_to_target_hw_bp_type (type);
   deleted_one = 0;
   pw = &private->current_watches;
   while ((w = *pw))
index 10cd0d5..4e9564b 100644 (file)
@@ -668,7 +668,7 @@ x86_insert_point (char type, CORE_ADDR addr, int len)
     case '3': /* read watchpoint */
     case '4': /* access watchpoint */
       {
-       enum target_hw_bp_type hw_type = Z_packet_to_hw_type (type);
+       enum target_hw_bp_type hw_type = Z_packet_to_target_hw_bp_type (type);
        struct i386_debug_reg_state *state
          = &proc->private->arch_private->debug_reg_state;
 
@@ -703,7 +703,7 @@ x86_remove_point (char type, CORE_ADDR addr, int len)
     case '3': /* read watchpoint */
     case '4': /* access watchpoint */
       {
-       enum target_hw_bp_type hw_type = Z_packet_to_hw_type (type);
+       enum target_hw_bp_type hw_type = Z_packet_to_target_hw_bp_type (type);
        struct i386_debug_reg_state *state
          = &proc->private->arch_private->debug_reg_state;
 
index 680e97f..b19cbc8 100644 (file)
@@ -138,6 +138,24 @@ struct breakpoint
   int (*handler) (CORE_ADDR);
 };
 
+enum target_hw_bp_type
+Z_packet_to_target_hw_bp_type (char type)
+{
+  switch (type)
+    {
+    case Z_PACKET_HW_BP:
+      return hw_execute;
+    case Z_PACKET_WRITE_WP:
+      return hw_write;
+    case Z_PACKET_READ_WP:
+      return hw_read;
+    case Z_PACKET_ACCESS_WP:
+      return hw_access;
+    default:
+      fatal ("bad watchpoint type %c", type);
+    }
+}
+
 int
 any_persistent_commands ()
 {
index 74369a7..ffc1b80 100644 (file)
 #ifndef MEM_BREAK_H
 #define MEM_BREAK_H
 
+#include "break-common.h"
+
 /* Breakpoints are opaque.  */
 struct breakpoint;
 struct fast_tracepoint_jump;
 
+#define Z_PACKET_SW_BP '0'
+#define Z_PACKET_HW_BP '1'
+#define Z_PACKET_WRITE_WP '2'
+#define Z_PACKET_READ_WP '3'
+#define Z_PACKET_ACCESS_WP '4'
+
+/* Map the protocol breakpoint/watchpoint type TYPE to enum
+   target_hw_bp_type.  */
+
+enum target_hw_bp_type Z_packet_to_target_hw_bp_type (char type);
+
 /* Create a new GDB breakpoint at WHERE.  Returns -1 if breakpoints
    are not supported on this target, 0 otherwise.  */
 
index ce9b303..e70ca71 100644 (file)
@@ -106,7 +106,7 @@ i386_insert_point (char type, CORE_ADDR addr, int len)
     case '3':
     case '4':
       {
-       enum target_hw_bp_type hw_type = Z_packet_to_hw_type (type);
+       enum target_hw_bp_type hw_type = Z_packet_to_target_hw_bp_type (type);
 
        return i386_low_insert_watchpoint (&debug_reg_state,
                                           hw_type, addr, len);
@@ -126,7 +126,7 @@ i386_remove_point (char type, CORE_ADDR addr, int len)
     case '3':
     case '4':
       {
-       enum target_hw_bp_type hw_type = Z_packet_to_hw_type (type);
+       enum target_hw_bp_type hw_type = Z_packet_to_target_hw_bp_type (type);
 
        return i386_low_remove_watchpoint (&debug_reg_state,
                                           hw_type, addr, len);