* stabsread.c (get_substring): Declare second arg as int.
[deliverable/binutils-gdb.git] / gdb / remote-arc.c
index 90ddf3c96edc1de4e5189018a766174ebf24ab51..60ed914473046f0ba49019116e13eab843a26689 100644 (file)
@@ -15,10 +15,10 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include "defs.h"
-#include <string.h>
+#include "gdb_string.h"
 #include <fcntl.h>
 #include "frame.h"
 #include "inferior.h"
@@ -894,20 +894,10 @@ arc_mourn ()
 }
 
 \f
-#ifdef REMOTE_BREAKPOINT
 
-/* On some machines, e.g. 68k, we may use a different breakpoint instruction
-   than other targets.  */
-static unsigned char break_insn[] = REMOTE_BREAKPOINT;
-
-/* Check that it fits in BREAKPOINT_MAX bytes.  */
-static unsigned char check_break_insn_size[BREAKPOINT_MAX] = REMOTE_BREAKPOINT;
-
-#else /* No REMOTE_BREAKPOINT.  */
-
-static unsigned char break_insn[] = BREAKPOINT;
-
-#endif /* No REMOTE_BREAKPOINT.  */
+static unsigned char big_break_insn[] = BIG_BREAKPOINT;
+static unsigned char little_break_insn[] = LITTLE_BREAKPOINT;
+#define BREAKPOINT_LEN (sizeof little_break_insn)
 
 /* Insert a breakpoint on targets that don't have any better breakpoint
    support.  We read the contents of the target location and stash it,
@@ -924,9 +914,16 @@ arc_insert_breakpoint (addr, contents_cache)
 {
   int val;
 
-  val = target_read_memory (addr, contents_cache, sizeof break_insn);
+  val = target_read_memory (addr, contents_cache, BREAKPOINT_LEN);
   if (val == 0)
-    val = target_write_memory (addr, (char *)break_insn, sizeof break_insn);
+    {
+      if (TARGET_BYTE_ORDER == BIG_ENDIAN)
+       val = target_write_memory (addr, (char *) big_break_insn,
+                                  BREAKPOINT_LEN);
+      else
+       val = target_write_memory (addr, (char *) little_break_insn,
+                                  BREAKPOINT_LEN);
+    }
   return val;
 }
 
@@ -935,7 +932,7 @@ arc_remove_breakpoint (addr, contents_cache)
      CORE_ADDR addr;
      char *contents_cache;
 {
-  return target_write_memory (addr, contents_cache, sizeof break_insn);
+  return target_write_memory (addr, contents_cache, BREAKPOINT_LEN);
 }
 
 /* switch_command
@@ -961,13 +958,16 @@ switch_command (args, fromtty)
   switch (proc)
     {
     case 0:
-      tm_print_insn = arc_get_disassembler (bfd_mach_arc_audio);
+      tm_print_insn = arc_get_disassembler (bfd_mach_arc_audio,
+                                           TARGET_BYTE_ORDER == BIG_ENDIAN);
       break;
     case 1:
-      tm_print_insn = arc_get_disassembler (bfd_mach_arc_graphics);
+      tm_print_insn = arc_get_disassembler (bfd_mach_arc_graphics,
+                                           TARGET_BYTE_ORDER == BIG_ENDIAN);
       break;
     case 2:
-      tm_print_insn = arc_get_disassembler (bfd_mach_arc_host);
+      tm_print_insn = arc_get_disassembler (bfd_mach_arc_host,
+                                           TARGET_BYTE_ORDER == BIG_ENDIAN);
       break;
     }
 
@@ -1009,6 +1009,7 @@ Specify the device it is connected to.",  /* to_doc */
   arc_mourn,                   /* to_mourn_inferior */
   0,                           /* to_can_run */
   0,                           /* to_notice_signals */
+  0,                           /* to_thread_alive */
   0,                           /* to_stop */
   process_stratum,             /* to_stratum */
   NULL,                                /* to_next */
@@ -1026,7 +1027,4 @@ void
 _initialize_remote_arc ()
 {
   add_target (&arc_ops);
-  add_com ("switch <processor>", class_obscure, switch_command,
-          "Switch to debug a different processor, can be one of 'host', \
-'graphic' and 'audio'.");
 }
This page took 0.025186 seconds and 4 git commands to generate.