gdbserver: fix killed-outside.exp
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-bfin-low.c
index 58ad288f0006031e3f62f1a997cf839bec4d707c..d3b83fc827e971996c5201dc4945a30dd5204784 100644 (file)
@@ -1,7 +1,6 @@
 /* GNU/Linux/BFIN specific low level interface, for the remote server for GDB.
 
-   Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011
-   Free Software Foundation, Inc.
+   Copyright (C) 2005-2015 Free Software Foundation, Inc.
 
    Contributed by Analog Devices, Inc.
 
 
 #include "server.h"
 #include "linux-low.h"
-#include "libiberty.h"
 #include <asm/ptrace.h>
 
 /* Defined in auto-generated file reg-bfin.c.  */
 void init_registers_bfin (void);
+extern const struct target_desc *tdesc_bfin;
 
 static int bfin_regmap[] =
 {
@@ -74,7 +73,16 @@ bfin_set_pc (struct regcache *regcache, CORE_ADDR pc)
 }
 
 #define bfin_breakpoint_len 2
-static const unsigned char bfin_breakpoint[bfin_breakpoint_len] = {0xa1, 0x00};
+static const gdb_byte bfin_breakpoint[bfin_breakpoint_len] = {0xa1, 0x00};
+
+/* Implementation of linux_target_ops method "sw_breakpoint_from_kind".  */
+
+static const gdb_byte *
+bfin_sw_breakpoint_from_kind (int kind, int *size)
+{
+  *size = bfin_breakpoint_len;
+  return bfin_breakpoint;
+}
 
 static int
 bfin_breakpoint_at (CORE_ADDR where)
@@ -91,17 +99,48 @@ bfin_breakpoint_at (CORE_ADDR where)
   return 0;
 }
 
+static void
+bfin_arch_setup (void)
+{
+  current_process ()->tdesc = tdesc_bfin;
+}
+
+static struct usrregs_info bfin_usrregs_info =
+  {
+    bfin_num_regs,
+    bfin_regmap,
+  };
+
+static struct regs_info regs_info =
+  {
+    NULL, /* regset_bitmap */
+    &bfin_usrregs_info,
+  };
+
+static const struct regs_info *
+bfin_regs_info (void)
+{
+  return &regs_info;
+}
+
 struct linux_target_ops the_low_target = {
-  init_registers_bfin,
-  bfin_num_regs,
-  bfin_regmap,
+  bfin_arch_setup,
+  bfin_regs_info,
   bfin_cannot_fetch_register,
   bfin_cannot_store_register,
+  NULL, /* fetch_register */
   bfin_get_pc,
   bfin_set_pc,
-  bfin_breakpoint,
-  bfin_breakpoint_len,
-  0,
+  NULL, /* breakpoint_kind_from_pc */
+  bfin_sw_breakpoint_from_kind,
+  NULL, /* breakpoint_reinsert_addr */
   2,
   bfin_breakpoint_at,
 };
+
+
+void
+initialize_low_arch (void)
+{
+  init_registers_bfin ();
+}
This page took 0.02471 seconds and 4 git commands to generate.