* target.c (target_read): Stop if target_read_partial returns 0
[deliverable/binutils-gdb.git] / gdb / remote.c
index 80798ee915e07193f7ffd4f122cfa853a1ec56f8..eef8bf2f5f4590a6a36510490063e13bd9c59d95 100644 (file)
@@ -1,7 +1,7 @@
 /* Remote target communications for serial-line targets in custom GDB protocol
 
-   Copyright 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
-   1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
+   Copyright (C) 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
+   1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
    Free Software Foundation, Inc.
 
    This file is part of GDB.
 
    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., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor,
+   Boston, MA 02110-1301, USA.  */
 
-/* See the GDB User Guide for details of the GDB remote protocol. */
+/* See the GDB User Guide for details of the GDB remote protocol.  */
 
 #include "defs.h"
 #include "gdb_string.h"
@@ -30,6 +30,7 @@
 #include "inferior.h"
 #include "bfd.h"
 #include "symfile.h"
+#include "exceptions.h"
 #include "target.h"
 /*#include "terminal.h" */
 #include "gdbcmd.h"
 #include "regcache.h"
 #include "value.h"
 #include "gdb_assert.h"
+#include "observer.h"
+#include "solib.h"
+#include "cli/cli-decode.h"
+#include "cli/cli-setshow.h"
 
 #include <ctype.h>
 #include <sys/time.h>
-#ifdef USG
-#include <sys/types.h>
-#endif
 
 #include "event-loop.h"
 #include "event-top.h"
 
 #include "remote-fileio.h"
 
-/* Prototypes for local functions */
+/* Prototypes for local functions */
 static void cleanup_sigint_signal_handler (void *dummy);
 static void initialize_sigint_signal_handler (void);
-static int getpkt_sane (char *buf, long sizeof_buf, int forever);
+static int getpkt_sane (char **buf, long *sizeof_buf, int forever);
 
 static void handle_remote_sigint (int);
 static void handle_remote_sigint_twice (int);
@@ -72,11 +74,6 @@ static void build_remote_gdbarch_data (void);
 
 static void remote_files_info (struct target_ops *ignore);
 
-static int remote_xfer_memory (CORE_ADDR memaddr, char *myaddr,
-                              int len, int should_write,
-                              struct mem_attrib *attrib,
-                              struct target_ops *target);
-
 static void remote_prepare_to_store (void);
 
 static void remote_fetch_registers (int regno);
@@ -85,8 +82,6 @@ static void remote_resume (ptid_t ptid, int step,
                            enum target_signal siggnal);
 static void remote_async_resume (ptid_t ptid, int step,
                                 enum target_signal siggnal);
-static int remote_start_remote (struct ui_out *uiout, void *dummy);
-
 static void remote_open (char *name, int from_tty);
 static void remote_async_open (char *name, int from_tty);
 
@@ -109,7 +104,7 @@ static void extended_remote_mourn (void);
 
 static void remote_mourn_1 (struct target_ops *);
 
-static void remote_send (char *buf, long sizeof_buf);
+static void remote_send (char **buf, long *sizeof_buf_p);
 
 static int readchar (int timeout);
 
@@ -137,11 +132,9 @@ static int remote_thread_alive (ptid_t);
 
 static void get_offsets (void);
 
-static long read_frame (char *buf, long sizeof_buf);
-
-static int remote_insert_breakpoint (CORE_ADDR, char *);
+static void skip_frame (void);
 
-static int remote_remove_breakpoint (CORE_ADDR, char *);
+static long read_frame (char **buf_p, long *sizeof_buf);
 
 static int hexnumlen (ULONGEST num);
 
@@ -179,9 +172,9 @@ static void record_currthread (int currthread);
 
 static int fromhex (int a);
 
-static int hex2bin (const char *hex, char *bin, int count);
+static int hex2bin (const char *hex, gdb_byte *bin, int count);
 
-static int bin2hex (const char *bin, char *hex, int count);
+static int bin2hex (const gdb_byte *bin, char *hex, int count);
 
 static int putpkt_binary (char *buf, int cnt);
 
@@ -193,14 +186,56 @@ static void show_packet_config_cmd (struct packet_config *config);
 
 static void update_packet_config (struct packet_config *config);
 
+static void set_remote_protocol_packet_cmd (char *args, int from_tty,
+                                           struct cmd_list_element *c);
+
+static void show_remote_protocol_packet_cmd (struct ui_file *file,
+                                            int from_tty,
+                                            struct cmd_list_element *c,
+                                            const char *value);
+
 void _initialize_remote (void);
 
-/* Description of the remote protocol.  Strictly speaking, when the
-   target is open()ed, remote.c should create a per-target description
-   of the remote protocol using that target's architecture.
-   Unfortunately, the target stack doesn't include local state.  For
-   the moment keep the information in the target's architecture
-   object.  Sigh..  */
+/* For "set remote" and "show remote".  */
+
+static struct cmd_list_element *remote_set_cmdlist;
+static struct cmd_list_element *remote_show_cmdlist;
+
+/* Description of the remote protocol state for the currently
+   connected target.  This is per-target state, and independent of the
+   selected architecture.  */
+
+struct remote_state
+{
+  /* A buffer to use for incoming packets, and its current size.  The
+     buffer is grown dynamically for larger incoming packets.
+     Outgoing packets may also be constructed in this buffer.
+     BUF_SIZE is always at least REMOTE_PACKET_SIZE;
+     REMOTE_PACKET_SIZE should be used to limit the length of outgoing
+     packets.  */
+  char *buf;
+  long buf_size;
+
+  /* If we negotiated packet size explicitly (and thus can bypass
+     heuristics for the largest packet size that will not overflow
+     a buffer in the stub), this will be set to that packet size.
+     Otherwise zero, meaning to use the guessed size.  */
+  long explicit_packet_size;
+};
+
+/* This data could be associated with a target, but we do not always
+   have access to the current target when we need it, so for now it is
+   static.  This will be fine for as long as only one target is in use
+   at a time.  */
+static struct remote_state remote_state;
+
+static struct remote_state *
+get_remote_state (void)
+{
+  return &remote_state;
+}
+
+/* Description of the remote protocol for a given architecture.  */
 
 struct packet_reg
 {
@@ -208,11 +243,12 @@ struct packet_reg
   long regnum; /* GDB's internal register number.  */
   LONGEST pnum; /* Remote protocol register number.  */
   int in_g_packet; /* Always part of G packet.  */
-  /* long size in bytes;  == DEPRECATED_REGISTER_RAW_SIZE (regnum); at present.  */
+  /* long size in bytes;  == register_size (current_gdbarch, regnum); 
+     at present.  */
   /* char *name; == REGISTER_NAME (regnum); at present.  */
 };
 
-struct remote_state
+struct remote_arch_state
 {
   /* Description of the remote protocol registers.  */
   long sizeof_g_packet;
@@ -226,11 +262,11 @@ struct remote_state
      size of memory-read and memory-write packets.  A target will
      typically only reserve a buffer large enough to hold the ``g''
      packet.  The size does not include packet overhead (headers and
-     trailers). */
+     trailers).  */
   long actual_register_packet_size;
 
   /* This is the maximum size (in chars) of a non read/write packet.
-     It is also used as a cap on the size of read/write packets. */
+     It is also used as a cap on the size of read/write packets.  */
   long remote_packet_size;
 };
 
@@ -238,8 +274,8 @@ struct remote_state
 /* Handle for retreving the remote protocol data from gdbarch.  */
 static struct gdbarch_data *remote_gdbarch_data_handle;
 
-static struct remote_state *
-get_remote_state (void)
+static struct remote_arch_state *
+get_remote_arch_state (void)
 {
   return gdbarch_data (current_gdbarch, remote_gdbarch_data_handle);
 }
@@ -248,28 +284,28 @@ static void *
 init_remote_state (struct gdbarch *gdbarch)
 {
   int regnum;
-  struct remote_state *rs = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_state);
+  struct remote_state *rs = get_remote_state ();
+  struct remote_arch_state *rsa;
 
-  if (DEPRECATED_REGISTER_BYTES != 0)
-    rs->sizeof_g_packet = DEPRECATED_REGISTER_BYTES;
-  else
-    rs->sizeof_g_packet = 0;
+  rsa = GDBARCH_OBSTACK_ZALLOC (gdbarch, struct remote_arch_state);
+
+  rsa->sizeof_g_packet = 0;
 
   /* Assume a 1:1 regnum<->pnum table.  */
-  rs->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, NUM_REGS + NUM_PSEUDO_REGS,
-                                    struct packet_reg);
+  rsa->regs = GDBARCH_OBSTACK_CALLOC (gdbarch, NUM_REGS + NUM_PSEUDO_REGS,
+                                     struct packet_reg);
   for (regnum = 0; regnum < NUM_REGS + NUM_PSEUDO_REGS; regnum++)
     {
-      struct packet_reg *r = &rs->regs[regnum];
+      struct packet_reg *r = &rsa->regs[regnum];
       r->pnum = regnum;
       r->regnum = regnum;
       r->offset = DEPRECATED_REGISTER_BYTE (regnum);
       r->in_g_packet = (regnum < NUM_REGS);
       /* ...name = REGISTER_NAME (regnum); */
 
-      /* Compute packet size by accumulating the size of all registers. */
-      if (DEPRECATED_REGISTER_BYTES == 0)
-        rs->sizeof_g_packet += register_size (current_gdbarch, regnum);
+      /* Compute packet size by accumulating the size of all registers.  */
+      if (regnum < NUM_REGS)
+       rsa->sizeof_g_packet += register_size (current_gdbarch, regnum);
     }
 
   /* Default maximum number of characters in a packet body. Many
@@ -278,44 +314,67 @@ init_remote_state (struct gdbarch *gdbarch)
      as the maximum packet-size to ensure that the packet and an extra
      NUL character can always fit in the buffer.  This stops GDB
      trashing stubs that try to squeeze an extra NUL into what is
-     already a full buffer (As of 1999-12-04 that was most stubs. */
-  rs->remote_packet_size = 400 - 1;
+     already a full buffer (As of 1999-12-04 that was most stubs).  */
+  rsa->remote_packet_size = 400 - 1;
 
-  /* Should rs->sizeof_g_packet needs more space than the
+  /* This one is filled in when a ``g'' packet is received.  */
+  rsa->actual_register_packet_size = 0;
+
+  /* Should rsa->sizeof_g_packet needs more space than the
      default, adjust the size accordingly. Remember that each byte is
      encoded as two characters. 32 is the overhead for the packet
      header / footer. NOTE: cagney/1999-10-26: I suspect that 8
      (``$NN:G...#NN'') is a better guess, the below has been padded a
-     little. */
-  if (rs->sizeof_g_packet > ((rs->remote_packet_size - 32) / 2))
-    rs->remote_packet_size = (rs->sizeof_g_packet * 2 + 32);
+     little.  */
+  if (rsa->sizeof_g_packet > ((rsa->remote_packet_size - 32) / 2))
+    rsa->remote_packet_size = (rsa->sizeof_g_packet * 2 + 32);
 
-  /* This one is filled in when a ``g'' packet is received. */
-  rs->actual_register_packet_size = 0;
+  /* Make sure that the packet buffer is plenty big enough for
+     this architecture.  */
+  if (rs->buf_size < rsa->remote_packet_size)
+    {
+      rs->buf_size = 2 * rsa->remote_packet_size;
+      rs->buf = xrealloc (rs->buf, rs->buf_size);
+    }
 
-  return rs;
+  return rsa;
+}
+
+/* Return the current allowed size of a remote packet.  This is
+   inferred from the current architecture, and should be used to
+   limit the length of outgoing packets.  */
+static long
+get_remote_packet_size (void)
+{
+  struct remote_state *rs = get_remote_state ();
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+
+  if (rs->explicit_packet_size)
+    return rs->explicit_packet_size;
+
+  return rsa->remote_packet_size;
 }
 
 static struct packet_reg *
-packet_reg_from_regnum (struct remote_state *rs, long regnum)
+packet_reg_from_regnum (struct remote_arch_state *rsa, long regnum)
 {
   if (regnum < 0 && regnum >= NUM_REGS + NUM_PSEUDO_REGS)
     return NULL;
   else
     {
-      struct packet_reg *r = &rs->regs[regnum];
+      struct packet_reg *r = &rsa->regs[regnum];
       gdb_assert (r->regnum == regnum);
       return r;
     }
 }
 
 static struct packet_reg *
-packet_reg_from_pnum (struct remote_state *rs, LONGEST pnum)
+packet_reg_from_pnum (struct remote_arch_state *rsa, LONGEST pnum)
 {
   int i;
   for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
     {
-      struct packet_reg *r = &rs->regs[i];
+      struct packet_reg *r = &rsa->regs[i];
       if (r->pnum == pnum)
        return r;
     }
@@ -330,16 +389,15 @@ packet_reg_from_pnum (struct remote_state *rs, LONGEST pnum)
    to stop for a watchpoint.  */
 static CORE_ADDR remote_watch_data_address;
 
-/* This is non-zero if taregt stopped for a watchpoint. */
+/* This is non-zero if target stopped for a watchpoint.  */
 static int remote_stopped_by_watchpoint_p;
 
-
 static struct target_ops remote_ops;
 
 static struct target_ops extended_remote_ops;
 
 /* Temporary target ops. Just like the remote_ops and
-   extended_remote_ops, but with asynchronous support. */
+   extended_remote_ops, but with asynchronous support.  */
 static struct target_ops remote_async_ops;
 
 static struct target_ops extended_async_remote_ops;
@@ -350,7 +408,7 @@ static struct target_ops extended_async_remote_ops;
    during the initial connect always time-out.  Once getpkt has been
    modified to return a timeout indication and, in turn
    remote_wait()/wait_for_inferior() have gained a timeout parameter
-   this can go away. */
+   this can go away.  */
 static int wait_forever_enabled_p = 1;
 
 
@@ -375,7 +433,7 @@ static struct serial *remote_desc = NULL;
    bits).  Consequently, for 64 bit targets, the upper 32 bits of an
    address was never sent.  Since fixing this bug may cause a break in
    some remote targets this variable is principly provided to
-   facilitate backward compatibility. */
+   facilitate backward compatibility.  */
 
 static int remote_address_size;
 
@@ -386,12 +444,12 @@ static int remote_async_terminal_ours_p;
 
 \f
 /* User configurable variables for the number of characters in a
-   memory read/write packet.  MIN ((rs->remote_packet_size),
-   rs->sizeof_g_packet) is the default.  Some targets need smaller
-   values (fifo overruns, et.al.)  and some users need larger values
+   memory read/write packet.  MIN (rsa->remote_packet_size,
+   rsa->sizeof_g_packet) is the default.  Some targets need smaller
+   values (fifo overruns, et.al.) and some users need larger values
    (speed up transfers).  The variables ``preferred_*'' (the user
    request), ``current_*'' (what was actually set) and ``forced_*''
-   (Positive - a soft limit, negative - a hard limit). */
+   (Positive - a soft limit, negative - a hard limit).  */
 
 struct memory_packet_config
 {
@@ -407,17 +465,19 @@ static long
 get_memory_packet_size (struct memory_packet_config *config)
 {
   struct remote_state *rs = get_remote_state ();
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+
   /* NOTE: The somewhat arbitrary 16k comes from the knowledge (folk
      law?) that some hosts don't cope very well with large alloca()
      calls.  Eventually the alloca() code will be replaced by calls to
      xmalloc() and make_cleanups() allowing this restriction to either
-     be lifted or removed. */
+     be lifted or removed.  */
 #ifndef MAX_REMOTE_PACKET_SIZE
 #define MAX_REMOTE_PACKET_SIZE 16384
 #endif
-  /* NOTE: 16 is just chosen at random. */
+  /* NOTE: 20 ensures we can write at least one byte.  */
 #ifndef MIN_REMOTE_PACKET_SIZE
-#define MIN_REMOTE_PACKET_SIZE 16
+#define MIN_REMOTE_PACKET_SIZE 20
 #endif
   long what_they_get;
   if (config->fixed_p)
@@ -429,25 +489,37 @@ get_memory_packet_size (struct memory_packet_config *config)
     }
   else
     {
-      what_they_get = (rs->remote_packet_size);
-      /* Limit the packet to the size specified by the user. */
+      what_they_get = get_remote_packet_size ();
+      /* Limit the packet to the size specified by the user.  */
       if (config->size > 0
          && what_they_get > config->size)
        what_they_get = config->size;
-      /* Limit it to the size of the targets ``g'' response. */
-      if ((rs->actual_register_packet_size) > 0
-         && what_they_get > (rs->actual_register_packet_size))
-       what_they_get = (rs->actual_register_packet_size);
+
+      /* Limit it to the size of the targets ``g'' response unless we have
+        permission from the stub to use a larger packet size.  */
+      if (rs->explicit_packet_size == 0
+         && rsa->actual_register_packet_size > 0
+         && what_they_get > rsa->actual_register_packet_size)
+       what_they_get = rsa->actual_register_packet_size;
     }
   if (what_they_get > MAX_REMOTE_PACKET_SIZE)
     what_they_get = MAX_REMOTE_PACKET_SIZE;
   if (what_they_get < MIN_REMOTE_PACKET_SIZE)
     what_they_get = MIN_REMOTE_PACKET_SIZE;
+
+  /* Make sure there is room in the global buffer for this packet
+     (including its trailing NUL byte).  */
+  if (rs->buf_size < what_they_get + 1)
+    {
+      rs->buf_size = 2 * what_they_get;
+      rs->buf = xrealloc (rs->buf, 2 * what_they_get);
+    }
+
   return what_they_get;
 }
 
 /* Update the size of a read/write packet. If they user wants
-   something really big then do a sanity check. */
+   something really big then do a sanity check.  */
 
 static void
 set_memory_packet_size (char *args, struct memory_packet_config *config)
@@ -455,7 +527,7 @@ set_memory_packet_size (char *args, struct memory_packet_config *config)
   int fixed_p = config->fixed_p;
   long size = config->size;
   if (args == NULL)
-    error ("Argument required (integer, `fixed' or `limited').");
+    error (_("Argument required (integer, `fixed' or `limited')."));
   else if (strcmp (args, "hard") == 0
       || strcmp (args, "fixed") == 0)
     fixed_p = 1;
@@ -467,25 +539,25 @@ set_memory_packet_size (char *args, struct memory_packet_config *config)
       char *end;
       size = strtoul (args, &end, 0);
       if (args == end)
-       error ("Invalid %s (bad syntax).", config->name);
+       error (_("Invalid %s (bad syntax)."), config->name);
 #if 0
       /* Instead of explicitly capping the size of a packet to
          MAX_REMOTE_PACKET_SIZE or dissallowing it, the user is
          instead allowed to set the size to something arbitrarily
-         large. */
+         large.  */
       if (size > MAX_REMOTE_PACKET_SIZE)
-       error ("Invalid %s (too large).", config->name);
+       error (_("Invalid %s (too large)."), config->name);
 #endif
     }
-  /* Extra checks? */
+  /* Extra checks?  */
   if (fixed_p && !config->fixed_p)
     {
-      if (! query ("The target may not be able to correctly handle a %s\n"
-                  "of %ld bytes. Change the packet size? ",
+      if (! query (_("The target may not be able to correctly handle a %s\n"
+                  "of %ld bytes. Change the packet size? "),
                   config->name, size))
-       error ("Packet size not changed.");
+       error (_("Packet size not changed."));
     }
-  /* Update the config. */
+  /* Update the config.  */
   config->fixed_p = fixed_p;
   config->size = size;
 }
@@ -493,12 +565,12 @@ set_memory_packet_size (char *args, struct memory_packet_config *config)
 static void
 show_memory_packet_size (struct memory_packet_config *config)
 {
-  printf_filtered ("The %s is %ld. ", config->name, config->size);
+  printf_filtered (_("The %s is %ld. "), config->name, config->size);
   if (config->fixed_p)
-    printf_filtered ("Packets are fixed at %ld bytes.\n",
+    printf_filtered (_("Packets are fixed at %ld bytes.\n"),
                     get_memory_packet_size (config));
   else
-    printf_filtered ("Packets are limited to %ld bytes.\n",
+    printf_filtered (_("Packets are limited to %ld bytes.\n"),
                     get_memory_packet_size (config));
 }
 
@@ -545,20 +617,19 @@ show_memory_read_packet_size (char *args, int from_tty)
 static long
 get_memory_read_packet_size (void)
 {
-  struct remote_state *rs = get_remote_state ();
   long size = get_memory_packet_size (&memory_read_packet_config);
   /* FIXME: cagney/1999-11-07: Functions like getpkt() need to get an
      extra buffer size argument before the memory read size can be
-     increased beyond (rs->remote_packet_size). */
-  if (size > (rs->remote_packet_size))
-    size = (rs->remote_packet_size);
+     increased beyond this.  */
+  if (size > get_remote_packet_size ())
+    size = get_remote_packet_size ();
   return size;
 }
 
 \f
 /* Generic configuration support for packets the stub optionally
    supports. Allows the user to specify the use of the packet as well
-   as allowing GDB to auto-detect support in the remote stub. */
+   as allowing GDB to auto-detect support in the remote stub.  */
 
 enum packet_support
   {
@@ -569,14 +640,14 @@ enum packet_support
 
 struct packet_config
   {
-    char *name;
-    char *title;
+    const char *name;
+    const char *title;
     enum auto_boolean detect;
     enum packet_support support;
   };
 
 /* Analyze a packet's return value and update the packet config
-   accordingly. */
+   accordingly.  */
 
 enum packet_result
 {
@@ -621,32 +692,25 @@ show_packet_config_cmd (struct packet_config *config)
   switch (config->detect)
     {
     case AUTO_BOOLEAN_AUTO:
-      printf_filtered ("Support for remote protocol `%s' (%s) packet is auto-detected, currently %s.\n",
-                      config->name, config->title, support);
+      printf_filtered (_("Support for the `%s' packet is auto-detected, currently %s.\n"),
+                      config->name, support);
       break;
     case AUTO_BOOLEAN_TRUE:
     case AUTO_BOOLEAN_FALSE:
-      printf_filtered ("Support for remote protocol `%s' (%s) packet is currently %s.\n",
-                      config->name, config->title, support);
+      printf_filtered (_("Support for the `%s' packet is currently %s.\n"),
+                      config->name, support);
       break;
     }
 }
 
 static void
-add_packet_config_cmd (struct packet_config *config,
-                      char *name,
-                      char *title,
-                      cmd_sfunc_ftype *set_func,
-                      cmd_sfunc_ftype *show_func,
-                      struct cmd_list_element **set_remote_list,
-                      struct cmd_list_element **show_remote_list,
-                      int legacy)
-{
-  struct cmd_list_element *set_cmd;
-  struct cmd_list_element *show_cmd;
+add_packet_config_cmd (struct packet_config *config, const char *name,
+                      const char *title, int legacy)
+{
   char *set_doc;
   char *show_doc;
   char *cmd_name;
+
   config->name = name;
   config->title = title;
   config->detect = AUTO_BOOLEAN_AUTO;
@@ -658,18 +722,19 @@ add_packet_config_cmd (struct packet_config *config,
   /* set/show TITLE-packet {auto,on,off} */
   cmd_name = xstrprintf ("%s-packet", title);
   add_setshow_auto_boolean_cmd (cmd_name, class_obscure,
-                               &config->detect, set_doc, show_doc,
-                               set_func, show_func,
-                               set_remote_list, show_remote_list);
-  /* set/show remote NAME-packet {auto,on,off} -- legacy */
+                               &config->detect, set_doc, show_doc, NULL, /* help_doc */
+                               set_remote_protocol_packet_cmd,
+                               show_remote_protocol_packet_cmd,
+                               &remote_set_cmdlist, &remote_show_cmdlist);
+  /* set/show remote NAME-packet {auto,on,off} -- legacy.  */
   if (legacy)
     {
       char *legacy_name;
       legacy_name = xstrprintf ("%s-packet", name);
       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
-                    set_remote_list);
+                    &remote_set_cmdlist);
       add_alias_cmd (legacy_name, cmd_name, class_obscure, 0,
-                    show_remote_list);
+                    &remote_show_cmdlist);
     }
 }
 
@@ -679,7 +744,7 @@ packet_ok (const char *buf, struct packet_config *config)
   if (buf[0] != '\0')
     {
       /* The stub recognized the packet request.  Check that the
-        operation succeeded. */
+        operation succeeded.  */
       switch (config->support)
        {
        case PACKET_SUPPORT_UNKNOWN:
@@ -691,36 +756,36 @@ packet_ok (const char *buf, struct packet_config *config)
          break;
        case PACKET_DISABLE:
          internal_error (__FILE__, __LINE__,
-                         "packet_ok: attempt to use a disabled packet");
+                         _("packet_ok: attempt to use a disabled packet"));
          break;
        case PACKET_ENABLE:
          break;
        }
       if (buf[0] == 'O' && buf[1] == 'K' && buf[2] == '\0')
-       /* "OK" - definitly OK. */
+       /* "OK" - definitly OK.  */
        return PACKET_OK;
       if (buf[0] == 'E'
          && isxdigit (buf[1]) && isxdigit (buf[2])
          && buf[3] == '\0')
-       /* "Enn"  - definitly an error. */
+       /* "Enn"  - definitly an error.  */
        return PACKET_ERROR;
-      /* The packet may or may not be OK.  Just assume it is */
+      /* The packet may or may not be OK.  Just assume it is */
       return PACKET_OK;
     }
   else
     {
-      /* The stub does not support the packet. */
+      /* The stub does not support the packet.  */
       switch (config->support)
        {
        case PACKET_ENABLE:
          if (config->detect == AUTO_BOOLEAN_AUTO)
            /* If the stub previously indicated that the packet was
-              supported then there is a protocol error.. */
-           error ("Protocol error: %s (%s) conflicting enabled responses.",
+              supported then there is a protocol error..  */
+           error (_("Protocol error: %s (%s) conflicting enabled responses."),
                   config->name, config->title);
          else
-           /* The user set it wrong. */
-           error ("Enabled packet %s (%s) not recognized by stub",
+           /* The user set it wrong.  */
+           error (_("Enabled packet %s (%s) not recognized by stub"),
                   config->name, config->title);
          break;
        case PACKET_SUPPORT_UNKNOWN:
@@ -737,56 +802,64 @@ packet_ok (const char *buf, struct packet_config *config)
     }
 }
 
-/* Should we try the 'vCont' (descriptive resume) request? */
-static struct packet_config remote_protocol_vcont;
-
-static void
-set_remote_protocol_vcont_packet_cmd (char *args, int from_tty,
-                                     struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_vcont);
-}
-
-static void
-show_remote_protocol_vcont_packet_cmd (char *args, int from_tty,
-                                      struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_vcont);
-}
+enum {
+  PACKET_vCont = 0,
+  PACKET_X,
+  PACKET_qSymbol,
+  PACKET_P,
+  PACKET_p,
+  PACKET_Z0,
+  PACKET_Z1,
+  PACKET_Z2,
+  PACKET_Z3,
+  PACKET_Z4,
+  PACKET_qPart_auxv,
+  PACKET_qGetTLSAddr,
+  PACKET_qSupported,
+  PACKET_MAX
+};
 
-/* Should we try the 'qSymbol' (target symbol lookup service) request? */
-static struct packet_config remote_protocol_qSymbol;
+static struct packet_config remote_protocol_packets[PACKET_MAX];
 
 static void
-set_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty,
-                                 struct cmd_list_element *c)
+set_remote_protocol_packet_cmd (char *args, int from_tty,
+                               struct cmd_list_element *c)
 {
-  update_packet_config (&remote_protocol_qSymbol);
-}
+  struct packet_config *packet;
 
-static void
-show_remote_protocol_qSymbol_packet_cmd (char *args, int from_tty,
-                                        struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_qSymbol);
+  for (packet = remote_protocol_packets;
+       packet < &remote_protocol_packets[PACKET_MAX];
+       packet++)
+    {
+      if (&packet->detect == c->var)
+       {
+         update_packet_config (packet);
+         return;
+       }
+    }
+  internal_error (__FILE__, __LINE__, "Could not find config for %s",
+                 c->name);
 }
 
-/* Should we try the 'P' (set register) request?  */
-
-static struct packet_config remote_protocol_P;
-
 static void
-set_remote_protocol_P_packet_cmd (char *args, int from_tty,
-                                 struct cmd_list_element *c)
+show_remote_protocol_packet_cmd (struct ui_file *file, int from_tty,
+                                struct cmd_list_element *c,
+                                const char *value)
 {
-  update_packet_config (&remote_protocol_P);
-}
+  struct packet_config *packet;
 
-static void
-show_remote_protocol_P_packet_cmd (char *args, int from_tty,
-                                  struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_P);
+  for (packet = remote_protocol_packets;
+       packet < &remote_protocol_packets[PACKET_MAX];
+       packet++)
+    {
+      if (&packet->detect == c->var)
+       {
+         show_packet_config_cmd (packet);
+         return;
+       }
+    }
+  internal_error (__FILE__, __LINE__, "Could not find config for %s",
+                 c->name);
 }
 
 /* Should we try one of the 'Z' requests?  */
@@ -801,83 +874,8 @@ enum Z_packet_type
   NR_Z_PACKET_TYPES
 };
 
-static struct packet_config remote_protocol_Z[NR_Z_PACKET_TYPES];
-
-/* FIXME: Instead of having all these boiler plate functions, the
-   command callback should include a context argument. */
-
-static void
-set_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty,
-                                             struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
-}
-
-static void
-show_remote_protocol_Z_software_bp_packet_cmd (char *args, int from_tty,
-                                              struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP]);
-}
-
-static void
-set_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty,
-                                             struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
-}
-
-static void
-show_remote_protocol_Z_hardware_bp_packet_cmd (char *args, int from_tty,
-                                              struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP]);
-}
-
-static void
-set_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty,
-                                             struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
-}
-
-static void
-show_remote_protocol_Z_write_wp_packet_cmd (char *args, int from_tty,
-                                           struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP]);
-}
-
-static void
-set_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty,
-                                             struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_Z[Z_PACKET_READ_WP]);
-}
-
-static void
-show_remote_protocol_Z_read_wp_packet_cmd (char *args, int from_tty,
-                                          struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP]);
-}
-
-static void
-set_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty,
-                                             struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
-}
-
-static void
-show_remote_protocol_Z_access_wp_packet_cmd (char *args, int from_tty,
-                                            struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP]);
-}
-
 /* For compatibility with older distributions.  Provide a ``set remote
-   Z-packet ...'' command that updates all the Z packet types. */
+   Z-packet ...'' command that updates all the Z packet types.  */
 
 static enum auto_boolean remote_Z_packet_detect;
 
@@ -888,34 +886,23 @@ set_remote_protocol_Z_packet_cmd (char *args, int from_tty,
   int i;
   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
     {
-      remote_protocol_Z[i].detect = remote_Z_packet_detect;
-      update_packet_config (&remote_protocol_Z[i]);
+      remote_protocol_packets[PACKET_Z0 + i].detect = remote_Z_packet_detect;
+      update_packet_config (&remote_protocol_packets[PACKET_Z0 + i]);
     }
 }
 
 static void
-show_remote_protocol_Z_packet_cmd (char *args, int from_tty,
-                                  struct cmd_list_element *c)
+show_remote_protocol_Z_packet_cmd (struct ui_file *file, int from_tty,
+                                  struct cmd_list_element *c,
+                                  const char *value)
 {
   int i;
   for (i = 0; i < NR_Z_PACKET_TYPES; i++)
     {
-      show_packet_config_cmd (&remote_protocol_Z[i]);
+      show_packet_config_cmd (&remote_protocol_packets[PACKET_Z0 + i]);
     }
 }
 
-/* Should we try the 'X' (remote binary download) packet?
-
-   This variable (available to the user via "set remote X-packet")
-   dictates whether downloads are sent in binary (via the 'X' packet).
-   We assume that the stub can, and attempt to do it. This will be
-   cleared if the stub does not understand it. This switch is still
-   needed, though in cases when the packet is supported in the stub,
-   but the connection does not allow it (i.e., 7-bit serial connection
-   only). */
-
-static struct packet_config remote_protocol_binary_download;
-
 /* Should we try the 'ThreadInfo' query packet?
 
    This variable (NOT available to the user: auto-detect only!)
@@ -927,40 +914,7 @@ static struct packet_config remote_protocol_binary_download;
 static int use_threadinfo_query;
 static int use_threadextra_query;
 
-static void
-set_remote_protocol_binary_download_cmd (char *args,
-                                        int from_tty,
-                                        struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_binary_download);
-}
-
-static void
-show_remote_protocol_binary_download_cmd (char *args, int from_tty,
-                                         struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_binary_download);
-}
-
-/* Should we try the 'qPart:auxv' (target auxiliary vector read) request? */
-static struct packet_config remote_protocol_qPart_auxv;
-
-static void
-set_remote_protocol_qPart_auxv_packet_cmd (char *args, int from_tty,
-                                          struct cmd_list_element *c)
-{
-  update_packet_config (&remote_protocol_qPart_auxv);
-}
-
-static void
-show_remote_protocol_qPart_auxv_packet_cmd (char *args, int from_tty,
-                                           struct cmd_list_element *c)
-{
-  show_packet_config_cmd (&remote_protocol_qPart_auxv);
-}
-
-
-/* Tokens for use by the asynchronous signal handlers for SIGINT */
+/* Tokens for use by the asynchronous signal handlers for SIGINT.  */
 static void *sigint_remote_twice_token;
 static void *sigint_remote_token;
 
@@ -1005,7 +959,7 @@ static void
 set_thread (int th, int gen)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
+  char *buf = rs->buf;
   int state = gen ? general_thread : continue_thread;
 
   if (state == th)
@@ -1019,11 +973,11 @@ set_thread (int th, int gen)
       buf[3] = '\0';
     }
   else if (th < 0)
-    sprintf (&buf[2], "-%x", -th);
+    xsnprintf (&buf[2], get_remote_packet_size () - 2, "-%x", -th);
   else
-    sprintf (&buf[2], "%x", th);
+    xsnprintf (&buf[2], get_remote_packet_size () - 2, "%x", th);
   putpkt (buf);
-  getpkt (buf, (rs->remote_packet_size), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
   if (gen)
     general_thread = th;
   else
@@ -1035,15 +989,16 @@ set_thread (int th, int gen)
 static int
 remote_thread_alive (ptid_t ptid)
 {
+  struct remote_state *rs = get_remote_state ();
   int tid = PIDGET (ptid);
-  char buf[16];
+  char *buf = rs->buf;
 
   if (tid < 0)
-    sprintf (buf, "T-%08x", -tid);
+    xsnprintf (buf, get_remote_packet_size (), "T-%08x", -tid);
   else
-    sprintf (buf, "T%08x", tid);
+    xsnprintf (buf, get_remote_packet_size (), "T%08x", tid);
   putpkt (buf);
-  getpkt (buf, sizeof (buf), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
   return (buf[0] == 'O' && buf[1] == 'K');
 }
 
@@ -1058,25 +1013,29 @@ remote_thread_alive (ptid_t ptid)
 /* a 64 bit opaque identifier */
 typedef unsigned char threadref[OPAQUETHREADBYTES];
 
-/* WARNING: This threadref data structure comes from the remote O.S., libstub
-   protocol encoding, and remote.c. it is not particularly changable */
+/* WARNING: This threadref data structure comes from the remote O.S.,
+   libstub protocol encoding, and remote.c. it is not particularly
+   changable.  */
 
 /* Right now, the internal structure is int. We want it to be bigger.
    Plan to fix this.
  */
 
-typedef int gdb_threadref;     /* internal GDB thread reference */
+typedef int gdb_threadref;     /* Internal GDB thread reference.  */
 
 /* gdb_ext_thread_info is an internal GDB data structure which is
-   equivalint to the reply of the remote threadinfo packet */
+   equivalent to the reply of the remote threadinfo packet.  */
 
 struct gdb_ext_thread_info
   {
-    threadref threadid;                /* External form of thread reference */
-    int active;                        /* Has state interesting to GDB? , regs, stack */
-    char display[256];         /* Brief state display, name, blocked/syspended */
-    char shortname[32];                /* To be used to name threads */
-    char more_display[256];    /* Long info, statistics, queue depth, whatever */
+    threadref threadid;                /* External form of thread reference.  */
+    int active;                        /* Has state interesting to GDB? 
+                                  regs, stack.  */
+    char display[256];         /* Brief state display, name, 
+                                  blocked/suspended.  */
+    char shortname[32];                /* To be used to name threads.  */
+    char more_display[256];    /* Long info, statistics, queue depth, 
+                                  whatever.  */
   };
 
 /* The volume of remote transfers can be limited by submitting
@@ -1091,7 +1050,7 @@ struct gdb_ext_thread_info
 #define TAG_THREADNAME 8
 #define TAG_MOREDISPLAY 16
 
-#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES*2)
+#define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES * 2)
 
 char *unpack_varlen_hex (char *buff, ULONGEST *result);
 
@@ -1099,7 +1058,7 @@ static char *unpack_nibble (char *buf, int *val);
 
 static char *pack_nibble (char *buf, int nibble);
 
-static char *pack_hex_byte (char *pkt, int /*unsigned char */ byte);
+static char *pack_hex_byte (char *pkt, int /* unsigned char */ byte);
 
 static char *unpack_byte (char *buf, int *value);
 
@@ -1109,52 +1068,56 @@ static char *unpack_int (char *buf, int *value);
 
 static char *unpack_string (char *src, char *dest, int length);
 
-static char *pack_threadid (char *pkt, threadref * id);
+static char *pack_threadid (char *pkt, threadref *id);
 
-static char *unpack_threadid (char *inbuf, threadref * id);
+static char *unpack_threadid (char *inbuf, threadref *id);
 
-void int_to_threadref (threadref * id, int value);
+void int_to_threadref (threadref *id, int value);
 
-static int threadref_to_int (threadref * ref);
+static int threadref_to_int (threadref *ref);
 
-static void copy_threadref (threadref * dest, threadref * src);
+static void copy_threadref (threadref *dest, threadref *src);
 
-static int threadmatch (threadref * dest, threadref * src);
+static int threadmatch (threadref *dest, threadref *src);
 
-static char *pack_threadinfo_request (char *pkt, int mode, threadref * id);
+static char *pack_threadinfo_request (char *pkt, int mode, 
+                                     threadref *id);
 
 static int remote_unpack_thread_info_response (char *pkt,
-                                              threadref * expectedref,
+                                              threadref *expectedref,
                                               struct gdb_ext_thread_info
                                               *info);
 
 
-static int remote_get_threadinfo (threadref * threadid, int fieldset,  /*TAG mask */
+static int remote_get_threadinfo (threadref *threadid, 
+                                 int fieldset, /*TAG mask */
                                  struct gdb_ext_thread_info *info);
 
 static char *pack_threadlist_request (char *pkt, int startflag,
                                      int threadcount,
-                                     threadref * nextthread);
+                                     threadref *nextthread);
 
 static int parse_threadlist_response (char *pkt,
                                      int result_limit,
-                                     threadref * original_echo,
-                                     threadref * resultlist, int *doneflag);
+                                     threadref *original_echo,
+                                     threadref *resultlist, 
+                                     int *doneflag);
 
 static int remote_get_threadlist (int startflag,
-                                 threadref * nextthread,
+                                 threadref *nextthread,
                                  int result_limit,
                                  int *done,
-                                 int *result_count, threadref * threadlist);
+                                 int *result_count, 
+                                 threadref *threadlist);
 
-typedef int (*rmt_thread_action) (threadref * ref, void *context);
+typedef int (*rmt_thread_action) (threadref *ref, void *context);
 
 static int remote_threadlist_iterator (rmt_thread_action stepfunction,
                                       void *context, int looplimit);
 
-static int remote_newthread_step (threadref * ref, void *context);
+static int remote_newthread_step (threadref *ref, void *context);
 
-/* encode 64 bits in 16 chars of hex */
+/* Encode 64 bits in 16 chars of hex.  */
 
 static const char hexchars[] = "0123456789abcdef";
 
@@ -1271,7 +1234,7 @@ unpack_int (char *buf, int *value)
   return buf + 8;
 }
 
-#if 0                          /* currently unused, uncomment when needed */
+#if 0                  /* Currently unused, uncomment when needed.  */
 static char *pack_string (char *pkt, char *string);
 
 static char *
@@ -1282,13 +1245,13 @@ pack_string (char *pkt, char *string)
 
   len = strlen (string);
   if (len > 200)
-    len = 200;                 /* Bigger than most GDB packets, junk??? */
+    len = 200;         /* Bigger than most GDB packets, junk???  */
   pkt = pack_hex_byte (pkt, len);
   while (len-- > 0)
     {
       ch = *string++;
       if ((ch == '\0') || (ch == '#'))
-       ch = '*';               /* Protect encapsulation */
+       ch = '*';               /* Protect encapsulation */
       *pkt++ = ch;
     }
   return pkt;
@@ -1364,7 +1327,7 @@ threadref_to_int (threadref *ref)
   int i, value = 0;
   unsigned char *scan;
 
-  scan = (char *) ref;
+  scan = *ref;
   scan += 4;
   i = 4;
   while (i-- > 0)
@@ -1388,7 +1351,7 @@ copy_threadref (threadref *dest, threadref *src)
 static int
 threadmatch (threadref *dest, threadref *src)
 {
-  /* things are broken right now, so just assume we got a match */
+  /* Things are broken right now, so just assume we got a match.  */
 #if 0
   unsigned char *srcp, *destp;
   int i, result;
@@ -1416,25 +1379,25 @@ threadmatch (threadref *dest, threadref *src)
 static char *
 pack_threadinfo_request (char *pkt, int mode, threadref *id)
 {
-  *pkt++ = 'q';                        /* Info Query */
-  *pkt++ = 'P';                        /* process or thread info */
-  pkt = pack_int (pkt, mode);  /* mode */
+  *pkt++ = 'q';                                /* Info Query */
+  *pkt++ = 'P';                                /* process or thread info */
+  pkt = pack_int (pkt, mode);          /* mode */
   pkt = pack_threadid (pkt, id);       /* threadid */
-  *pkt = '\0';                 /* terminate */
+  *pkt = '\0';                         /* terminate */
   return pkt;
 }
 
-/* These values tag the fields in a thread info response packet */
+/* These values tag the fields in a thread info response packet */
 /* Tagging the fields allows us to request specific fields and to
-   add more fields as time goes by */
+   add more fields as time goes by */
 
-#define TAG_THREADID 1         /* Echo the thread identifier */
+#define TAG_THREADID 1         /* Echo the thread identifier */
 #define TAG_EXISTS 2           /* Is this process defined enough to
-                                  fetch registers and its stack */
+                                  fetch registers and its stack */
 #define TAG_DISPLAY 4          /* A short thing maybe to put on a window */
-#define TAG_THREADNAME 8       /* string, maps 1-to-1 with a thread is */
+#define TAG_THREADNAME 8       /* string, maps 1-to-1 with a thread is */
 #define TAG_MOREDISPLAY 16     /* Whatever the kernel wants to say about
-                                  the process */
+                                  the process */
 
 static int
 remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
@@ -1442,39 +1405,41 @@ remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
 {
   struct remote_state *rs = get_remote_state ();
   int mask, length;
-  unsigned int tag;
+  int tag;
   threadref ref;
-  char *limit = pkt + (rs->remote_packet_size);        /* plausable parsing limit */
+  char *limit = pkt + rs->buf_size; /* Plausible parsing limit.  */
   int retval = 1;
 
-  /* info->threadid = 0; FIXME: implement zero_threadref */
+  /* info->threadid = 0; FIXME: implement zero_threadref */
   info->active = 0;
   info->display[0] = '\0';
   info->shortname[0] = '\0';
   info->more_display[0] = '\0';
 
-  /* Assume the characters indicating the packet type have been stripped */
+  /* Assume the characters indicating the packet type have been
+     stripped.  */
   pkt = unpack_int (pkt, &mask);       /* arg mask */
   pkt = unpack_threadid (pkt, &ref);
 
   if (mask == 0)
-    warning ("Incomplete response to threadinfo request\n");
+    warning (_("Incomplete response to threadinfo request."));
   if (!threadmatch (&ref, expectedref))
-    {                          /* This is an answer to a different request */
-      warning ("ERROR RMT Thread info mismatch\n");
+    {                  /* This is an answer to a different request.  */
+      warning (_("ERROR RMT Thread info mismatch."));
       return 0;
     }
   copy_threadref (&info->threadid, &ref);
 
-  /* Loop on tagged fields , try to bail if somthing goes wrong */
+  /* Loop on tagged fields , try to bail if somthing goes wrong */
 
-  while ((pkt < limit) && mask && *pkt)                /* packets are terminated with nulls */
+  /* Packets are terminated with nulls.  */
+  while ((pkt < limit) && mask && *pkt)
     {
       pkt = unpack_int (pkt, &tag);    /* tag */
-      pkt = unpack_byte (pkt, &length);                /* length */
-      if (!(tag & mask))       /* tags out of synch with mask */
+      pkt = unpack_byte (pkt, &length);        /* length */
+      if (!(tag & mask))               /* Tags out of synch with mask.  */
        {
-         warning ("ERROR RMT: threadinfo tag mismatch\n");
+         warning (_("ERROR RMT: threadinfo tag mismatch."));
          retval = 0;
          break;
        }
@@ -1482,7 +1447,7 @@ remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
        {
          if (length != 16)
            {
-             warning ("ERROR RMT: length of threadid is not 16\n");
+             warning (_("ERROR RMT: length of threadid is not 16."));
              retval = 0;
              break;
            }
@@ -1497,7 +1462,7 @@ remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
          mask = mask & ~(TAG_EXISTS);
          if (length > 8)
            {
-             warning ("ERROR RMT: 'exists' length too long\n");
+             warning (_("ERROR RMT: 'exists' length too long."));
              retval = 0;
              break;
            }
@@ -1521,8 +1486,8 @@ remote_unpack_thread_info_response (char *pkt, threadref *expectedref,
          mask = mask & ~TAG_MOREDISPLAY;
          continue;
        }
-      warning ("ERROR RMT: unknown thread info tag\n");
-      break;                   /* Not a tag we know about */
+      warning (_("ERROR RMT: unknown thread info tag."));
+      break;                   /* Not a tag we know about */
     }
   return retval;
 }
@@ -1533,13 +1498,13 @@ remote_get_threadinfo (threadref *threadid, int fieldset,       /* TAG mask */
 {
   struct remote_state *rs = get_remote_state ();
   int result;
-  char *threadinfo_pkt = alloca (rs->remote_packet_size);
+  char *threadinfo_pkt = rs->buf;
 
   pack_threadinfo_request (threadinfo_pkt, fieldset, threadid);
   putpkt (threadinfo_pkt);
-  getpkt (threadinfo_pkt, (rs->remote_packet_size), 0);
-  result = remote_unpack_thread_info_response (threadinfo_pkt + 2, threadid,
-                                              info);
+  getpkt (&rs->buf, &rs->buf_size, 0);
+  result = remote_unpack_thread_info_response (threadinfo_pkt + 2,
+                                              threadid, info);
   return result;
 }
 
@@ -1551,7 +1516,7 @@ pack_threadlist_request (char *pkt, int startflag, int threadcount,
 {
   *pkt++ = 'q';                        /* info query packet */
   *pkt++ = 'L';                        /* Process LIST or threadLIST request */
-  pkt = pack_nibble (pkt, startflag);  /* initflag 1 bytes */
+  pkt = pack_nibble (pkt, startflag);          /* initflag 1 bytes */
   pkt = pack_hex_byte (pkt, threadcount);      /* threadcount 2 bytes */
   pkt = pack_threadid (pkt, nextthread);       /* 64 bit thread identifier */
   *pkt = '\0';
@@ -1571,7 +1536,8 @@ parse_threadlist_response (char *pkt, int result_limit,
 
   resultcount = 0;
   /* Assume the 'q' and 'M chars have been stripped.  */
-  limit = pkt + ((rs->remote_packet_size) - BUF_THREAD_ID_SIZE);               /* done parse past here */
+  limit = pkt + (rs->buf_size - BUF_THREAD_ID_SIZE);
+  /* done parse past here */
   pkt = unpack_byte (pkt, &count);     /* count field */
   pkt = unpack_nibble (pkt, &done);
   /* The first threadid is the argument threadid.  */
@@ -1593,41 +1559,39 @@ remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
 {
   struct remote_state *rs = get_remote_state ();
   static threadref echo_nextthread;
-  char *threadlist_packet = alloca (rs->remote_packet_size);
-  char *t_response = alloca (rs->remote_packet_size);
+  char *threadlist_packet = rs->buf;
   int result = 1;
 
-  /* Trancate result limit to be smaller than the packet size */
-  if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= (rs->remote_packet_size))
-    result_limit = ((rs->remote_packet_size) / BUF_THREAD_ID_SIZE) - 2;
+  /* Trancate result limit to be smaller than the packet size */
+  if ((((result_limit + 1) * BUF_THREAD_ID_SIZE) + 10) >= get_remote_packet_size ())
+    result_limit = (get_remote_packet_size () / BUF_THREAD_ID_SIZE) - 2;
 
-  pack_threadlist_request (threadlist_packet,
-                          startflag, result_limit, nextthread);
-  putpkt (threadlist_packet);
-  getpkt (t_response, (rs->remote_packet_size), 0);
+  pack_threadlist_request (rs->buf, startflag, result_limit, nextthread);
+  putpkt (rs->buf);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
   *result_count =
-    parse_threadlist_response (t_response + 2, result_limit, &echo_nextthread,
+    parse_threadlist_response (rs->buf + 2, result_limit, &echo_nextthread,
                               threadlist, done);
 
   if (!threadmatch (&echo_nextthread, nextthread))
     {
-      /* FIXME: This is a good reason to drop the packet */
-      /* Possably, there is a duplicate response */
+      /* FIXME: This is a good reason to drop the packet */
+      /* Possably, there is a duplicate response */
       /* Possabilities :
          retransmit immediatly - race conditions
          retransmit after timeout - yes
          exit
          wait for packet, then exit
        */
-      warning ("HMM: threadlist did not echo arg thread, dropping it\n");
-      return 0;                        /* I choose simply exiting */
+      warning (_("HMM: threadlist did not echo arg thread, dropping it."));
+      return 0;                        /* I choose simply exiting */
     }
   if (*result_count <= 0)
     {
       if (*done != 1)
        {
-         warning ("RMT ERROR : failed to get remote thread list\n");
+         warning (_("RMT ERROR : failed to get remote thread list."));
          result = 0;
        }
       return result;           /* break; */
@@ -1635,13 +1599,14 @@ remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
   if (*result_count > result_limit)
     {
       *result_count = 0;
-      warning ("RMT ERROR: threadlist response longer than requested\n");
+      warning (_("RMT ERROR: threadlist response longer than requested."));
       return 0;
     }
   return result;
 }
 
-/* This is the interface between remote and threads, remotes upper interface */
+/* This is the interface between remote and threads, remotes upper
+   interface.  */
 
 /* remote_find_new_threads retrieves the thread list and for each
    thread in the list, looks up the thread in GDB's internal list,
@@ -1650,7 +1615,7 @@ remote_get_threadlist (int startflag, threadref *nextthread, int result_limit,
    quit_flag is required.  */
 
 
-/* About this many threadisds fit in a packet. */
+/* About this many threadisds fit in a packet.  */
 
 #define MAXTHREADLISTRESULTS 32
 
@@ -1671,7 +1636,7 @@ remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
       if (loopcount++ > looplimit)
        {
          result = 0;
-         warning ("Remote fetch threadlist -infinite loop-\n");
+         warning (_("Remote fetch threadlist -infinite loop-."));
          break;
        }
       if (!remote_get_threadlist (startflag, &nextthread, MAXTHREADLISTRESULTS,
@@ -1680,7 +1645,7 @@ remote_threadlist_iterator (rmt_thread_action stepfunction, void *context,
          result = 0;
          break;
        }
-      /* clear for later iterations */
+      /* Clear for later iterations.  */
       startflag = 0;
       /* Setup to resume next batch of thread references, set nextthread.  */
       if (result_count >= 1)
@@ -1711,12 +1676,17 @@ static ptid_t
 remote_current_thread (ptid_t oldpid)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
+  char *buf = rs->buf;
 
   putpkt ("qC");
-  getpkt (buf, (rs->remote_packet_size), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
   if (buf[0] == 'Q' && buf[1] == 'C')
-    return pid_to_ptid (strtol (&buf[2], NULL, 16));
+    /* Use strtoul here, so we'll correctly parse values whose highest
+       bit is set.  The protocol carries them as a simple series of
+       hex digits; in the absence of a sign, strtol will see such
+       values as positive numbers out of range for signed 'long', and
+       return LONG_MAX to indicate an overflow.  */
+    return pid_to_ptid (strtoul (&buf[2], NULL, 16));
   else
     return oldpid;
 }
@@ -1745,38 +1715,43 @@ static void
 remote_threads_info (void)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
   char *bufp;
   int tid;
 
   if (remote_desc == 0)                /* paranoia */
-    error ("Command can only be used when connected to the remote target.");
+    error (_("Command can only be used when connected to the remote target."));
 
   if (use_threadinfo_query)
     {
       putpkt ("qfThreadInfo");
-      bufp = buf;
-      getpkt (bufp, (rs->remote_packet_size), 0);
+      bufp = rs->buf;
+      getpkt (&rs->buf, &rs->buf_size, 0);
       if (bufp[0] != '\0')             /* q packet recognized */
        {
          while (*bufp++ == 'm')        /* reply contains one or more TID */
            {
              do
                {
-                 tid = strtol (bufp, &bufp, 16);
+                 /* Use strtoul here, so we'll correctly parse values
+                    whose highest bit is set.  The protocol carries
+                    them as a simple series of hex digits; in the
+                    absence of a sign, strtol will see such values as
+                    positive numbers out of range for signed 'long',
+                    and return LONG_MAX to indicate an overflow.  */
+                 tid = strtoul (bufp, &bufp, 16);
                  if (tid != 0 && !in_thread_list (pid_to_ptid (tid)))
                    add_thread (pid_to_ptid (tid));
                }
              while (*bufp++ == ',');   /* comma-separated list */
              putpkt ("qsThreadInfo");
-             bufp = buf;
-             getpkt (bufp, (rs->remote_packet_size), 0);
+             bufp = rs->buf;
+             getpkt (&rs->buf, &rs->buf_size, 0);
            }
          return;       /* done */
        }
     }
 
-  /* Else fall back to old method based on jmetzler protocol. */
+  /* Else fall back to old method based on jmetzler protocol.  */
   use_threadinfo_query = 0;
   remote_find_new_threads ();
   return;
@@ -1799,23 +1774,25 @@ remote_threads_extra_info (struct thread_info *tp)
   int set;
   threadref id;
   struct gdb_ext_thread_info threadinfo;
-  static char display_buf[100];        /* arbitrary... */
-  char *bufp = alloca (rs->remote_packet_size);
+  static char display_buf[100];        /* arbitrary...  */
   int n = 0;                    /* position in display_buf */
 
   if (remote_desc == 0)                /* paranoia */
     internal_error (__FILE__, __LINE__,
-                   "remote_threads_extra_info");
+                   _("remote_threads_extra_info"));
 
   if (use_threadextra_query)
     {
-      sprintf (bufp, "qThreadExtraInfo,%x", PIDGET (tp->ptid));
+      char *bufp = rs->buf;
+
+      xsnprintf (bufp, get_remote_packet_size (), "qThreadExtraInfo,%x",
+                PIDGET (tp->ptid));
       putpkt (bufp);
-      getpkt (bufp, (rs->remote_packet_size), 0);
+      getpkt (&rs->buf, &rs->buf_size, 0);
       if (bufp[0] != 0)
        {
          n = min (strlen (bufp) / 2, sizeof (display_buf));
-         result = hex2bin (bufp, display_buf, n);
+         result = hex2bin (bufp, (gdb_byte *) display_buf, n);
          display_buf [result] = '\0';
          return display_buf;
        }
@@ -1830,16 +1807,18 @@ remote_threads_extra_info (struct thread_info *tp)
     if (threadinfo.active)
       {
        if (*threadinfo.shortname)
-         n += sprintf(&display_buf[0], " Name: %s,", threadinfo.shortname);
+         n += xsnprintf (&display_buf[0], sizeof (display_buf) - n, 
+                         " Name: %s,", threadinfo.shortname);
        if (*threadinfo.display)
-         n += sprintf(&display_buf[n], " State: %s,", threadinfo.display);
+         n += xsnprintf (&display_buf[n], sizeof (display_buf) - n, 
+                         " State: %s,", threadinfo.display);
        if (*threadinfo.more_display)
-         n += sprintf(&display_buf[n], " Priority: %s",
-                      threadinfo.more_display);
+         n += xsnprintf (&display_buf[n], sizeof (display_buf) - n, 
+                         " Priority: %s", threadinfo.more_display);
 
        if (n > 0)
          {
-           /* for purely cosmetic reasons, clear up trailing commas */
+           /* For purely cosmetic reasons, clear up trailing commas.  */
            if (',' == display_buf[n-1])
              display_buf[n-1] = ' ';
            return display_buf;
@@ -1847,27 +1826,26 @@ remote_threads_extra_info (struct thread_info *tp)
       }
   return NULL;
 }
-
 \f
 
-/*  Restart the remote side; this is an extended protocol operation.  */
+/* Restart the remote side; this is an extended protocol operation.  */
 
 static void
 extended_remote_restart (void)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
 
   /* Send the restart command; for reasons I don't understand the
      remote side really expects a number after the "R".  */
-  buf[0] = 'R';
-  sprintf (&buf[1], "%x", 0);
-  putpkt (buf);
+  xsnprintf (rs->buf, get_remote_packet_size (), "R%x", 0);
+  putpkt (rs->buf);
 
+  remote_fileio_reset ();
+  
   /* Now query for status so this looks just like we restarted
      gdbserver from scratch.  */
   putpkt ("?");
-  getpkt (buf, (rs->remote_packet_size), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 }
 \f
 /* Clean up connection to a remote debugger.  */
@@ -1880,28 +1858,27 @@ remote_close (int quitting)
   remote_desc = NULL;
 }
 
-/* Query the remote side for the text, data and bss offsets. */
+/* Query the remote side for the text, data and bss offsets.  */
 
 static void
 get_offsets (void)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
+  char *buf = rs->buf;
   char *ptr;
   int lose;
   CORE_ADDR text_addr, data_addr, bss_addr;
   struct section_offsets *offs;
 
   putpkt ("qOffsets");
-
-  getpkt (buf, (rs->remote_packet_size), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
   if (buf[0] == '\000')
     return;                    /* Return silently.  Stub doesn't support
-                                  this command. */
+                                  this command.  */
   if (buf[0] == 'E')
     {
-      warning ("Remote failure reply: %s", buf);
+      warning (_("Remote failure reply: %s"), buf);
       return;
     }
 
@@ -1942,7 +1919,7 @@ get_offsets (void)
     lose = 1;
 
   if (lose)
-    error ("Malformed response to offset query, %s", buf);
+    error (_("Malformed response to offset query, %s"), buf);
 
   if (symfile_objfile == NULL)
     return;
@@ -1969,16 +1946,16 @@ get_offsets (void)
 static int
 remote_start_remote_dummy (struct ui_out *uiout, void *dummy)
 {
-  start_remote ();             /* Initialize gdb process mechanisms */
+  start_remote ();             /* Initialize gdb process mechanisms */
   /* NOTE: Return something >=0.  A -ve value is reserved for
      catch_exceptions.  */
   return 1;
 }
 
-static int
+static void
 remote_start_remote (struct ui_out *uiout, void *dummy)
 {
-  immediate_quit++;            /* Allow user to interrupt it */
+  immediate_quit++;            /* Allow user to interrupt it */
 
   /* Ack any packet which the remote side has already sent.  */
   serial_write (remote_desc, "+", 1);
@@ -1988,14 +1965,12 @@ remote_start_remote (struct ui_out *uiout, void *dummy)
 
   inferior_ptid = remote_current_thread (inferior_ptid);
 
-  get_offsets ();              /* Get text, data & bss offsets */
+  get_offsets ();              /* Get text, data & bss offsets */
 
-  putpkt ("?");                        /* initiate a query from remote machine */
+  putpkt ("?");                        /* Initiate a query from remote machine.  */
   immediate_quit--;
 
-  /* NOTE: See comment above in remote_start_remote_dummy().  This
-     function returns something >=0.  */
-  return remote_start_remote_dummy (uiout, dummy);
+  remote_start_remote_dummy (uiout, dummy);
 }
 
 /* Open a connection to a remote debugger.
@@ -2007,7 +1982,7 @@ remote_open (char *name, int from_tty)
   remote_open_1 (name, from_tty, &remote_ops, 0, 0);
 }
 
-/* Just like remote_open, but with asynchronous support. */
+/* Just like remote_open, but with asynchronous support.  */
 static void
 remote_async_open (char *name, int from_tty)
 {
@@ -2024,7 +1999,7 @@ extended_remote_open (char *name, int from_tty)
                 0 /* async_p */);
 }
 
-/* Just like extended_remote_open, but with asynchronous support. */
+/* Just like extended_remote_open, but with asynchronous support.  */
 static void
 extended_remote_async_open (char *name, int from_tty)
 {
@@ -2038,18 +2013,11 @@ static void
 init_all_packet_configs (void)
 {
   int i;
-  update_packet_config (&remote_protocol_P);
-  update_packet_config (&remote_protocol_qSymbol);
-  update_packet_config (&remote_protocol_vcont);
-  for (i = 0; i < NR_Z_PACKET_TYPES; i++)
-    update_packet_config (&remote_protocol_Z[i]);
-  /* Force remote_write_bytes to check whether target supports binary
-     downloading. */
-  update_packet_config (&remote_protocol_binary_download);
-  update_packet_config (&remote_protocol_qPart_auxv);
+  for (i = 0; i < PACKET_MAX; i++)
+    update_packet_config (&remote_protocol_packets[i]);
 }
 
-/* Symbol look-up. */
+/* Symbol look-up.  */
 
 static void
 remote_check_symbols (struct objfile *objfile)
@@ -2059,32 +2027,35 @@ remote_check_symbols (struct objfile *objfile)
   struct minimal_symbol *sym;
   int end;
 
-  if (remote_protocol_qSymbol.support == PACKET_DISABLE)
+  if (remote_protocol_packets[PACKET_qSymbol].support == PACKET_DISABLE)
     return;
 
-  msg   = alloca (rs->remote_packet_size);
-  reply = alloca (rs->remote_packet_size);
+  /* Allocate a message buffer.  We can't reuse the input buffer in RS,
+     because we need both at the same time.  */
+  msg = alloca (get_remote_packet_size ());
+
+  reply = rs->buf;
 
-  /* Invite target to request symbol lookups. */
+  /* Invite target to request symbol lookups.  */
 
   putpkt ("qSymbol::");
-  getpkt (reply, (rs->remote_packet_size), 0);
-  packet_ok (reply, &remote_protocol_qSymbol);
+  getpkt (&rs->buf, &rs->buf_size, 0);
+  packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSymbol]);
 
   while (strncmp (reply, "qSymbol:", 8) == 0)
     {
       tmp = &reply[8];
-      end = hex2bin (tmp, msg, strlen (tmp) / 2);
+      end = hex2bin (tmp, (gdb_byte *) msg, strlen (tmp) / 2);
       msg[end] = '\0';
       sym = lookup_minimal_symbol (msg, NULL, NULL);
       if (sym == NULL)
-       sprintf (msg, "qSymbol::%s", &reply[8]);
+       xsnprintf (msg, get_remote_packet_size (), "qSymbol::%s", &reply[8]);
       else
-       sprintf (msg, "qSymbol:%s:%s",
-                paddr_nz (SYMBOL_VALUE_ADDRESS (sym)),
-                &reply[8]);
+       xsnprintf (msg, get_remote_packet_size (), "qSymbol:%s:%s",
+                  paddr_nz (SYMBOL_VALUE_ADDRESS (sym)),
+                  &reply[8]);
       putpkt (msg);
-      getpkt (reply, (rs->remote_packet_size), 0);
+      getpkt (&rs->buf, &rs->buf_size, 0);
     }
 }
 
@@ -2099,37 +2070,253 @@ remote_serial_open (char *name)
      to be.  */
   if (!udp_warning && strncmp (name, "udp:", 4) == 0)
     {
-      warning ("The remote protocol may be unreliable over UDP.");
-      warning ("Some events may be lost, rendering further debugging "
-              "impossible.");
+      warning (_("\
+The remote protocol may be unreliable over UDP.\n\
+Some events may be lost, rendering further debugging impossible."));
       udp_warning = 1;
     }
 
   return serial_open (name);
 }
 
+/* This type describes each known response to the qSupported
+   packet.  */
+struct protocol_feature
+{
+  /* The name of this protocol feature.  */
+  const char *name;
+
+  /* The default for this protocol feature.  */
+  enum packet_support default_support;
+
+  /* The function to call when this feature is reported, or after
+     qSupported processing if the feature is not supported.
+     The first argument points to this structure.  The second
+     argument indicates whether the packet requested support be
+     enabled, disabled, or probed (or the default, if this function
+     is being called at the end of processing and this feature was
+     not reported).  The third argument may be NULL; if not NULL, it
+     is a NUL-terminated string taken from the packet following
+     this feature's name and an equals sign.  */
+  void (*func) (const struct protocol_feature *, enum packet_support,
+               const char *);
+
+  /* The corresponding packet for this feature.  Only used if
+     FUNC is remote_supported_packet.  */
+  int packet;
+};
+
+#if 0
+static void
+remote_supported_packet (const struct protocol_feature *feature,
+                        enum packet_support support,
+                        const char *argument)
+{
+  if (argument)
+    {
+      warning (_("Remote qSupported response supplied an unexpected value for"
+                " \"%s\"."), feature->name);
+      return;
+    }
+
+  if (remote_protocol_packets[feature->packet].support
+      == PACKET_SUPPORT_UNKNOWN)
+    remote_protocol_packets[feature->packet].support = support;
+}
+#endif
+
+static void
+remote_packet_size (const struct protocol_feature *feature,
+                   enum packet_support support, const char *value)
+{
+  struct remote_state *rs = get_remote_state ();
+
+  int packet_size;
+  char *value_end;
+
+  if (support != PACKET_ENABLE)
+    return;
+
+  if (value == NULL || *value == '\0')
+    {
+      warning (_("Remote target reported \"%s\" without a size."),
+              feature->name);
+      return;
+    }
+
+  errno = 0;
+  packet_size = strtol (value, &value_end, 16);
+  if (errno != 0 || *value_end != '\0' || packet_size < 0)
+    {
+      warning (_("Remote target reported \"%s\" with a bad size: \"%s\"."),
+              feature->name, value);
+      return;
+    }
+
+  if (packet_size > MAX_REMOTE_PACKET_SIZE)
+    {
+      warning (_("limiting remote suggested packet size (%d bytes) to %d"),
+              packet_size, MAX_REMOTE_PACKET_SIZE);
+      packet_size = MAX_REMOTE_PACKET_SIZE;
+    }
+
+  /* Record the new maximum packet size.  */
+  rs->explicit_packet_size = packet_size;
+}
+
+static struct protocol_feature remote_protocol_features[] = {
+  { "PacketSize", PACKET_DISABLE, remote_packet_size, -1 }
+};
+
+static void
+remote_query_supported (void)
+{
+  struct remote_state *rs = get_remote_state ();
+  char *next;
+  int i;
+  unsigned char seen [ARRAY_SIZE (remote_protocol_features)];
+
+  /* The packet support flags are handled differently for this packet
+     than for most others.  We treat an error, a disabled packet, and
+     an empty response identically: any features which must be reported
+     to be used will be automatically disabled.  An empty buffer
+     accomplishes this, since that is also the representation for a list
+     containing no features.  */
+
+  rs->buf[0] = 0;
+  if (remote_protocol_packets[PACKET_qSupported].support != PACKET_DISABLE)
+    {
+      putpkt ("qSupported");
+      getpkt (&rs->buf, &rs->buf_size, 0);
+
+      /* If an error occured, warn, but do not return - just reset the
+        buffer to empty and go on to disable features.  */
+      if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qSupported])
+         == PACKET_ERROR)
+       {
+         warning (_("Remote failure reply: %s"), rs->buf);
+         rs->buf[0] = 0;
+       }
+    }
+
+  memset (seen, 0, sizeof (seen));
+
+  next = rs->buf;
+  while (*next)
+    {
+      enum packet_support is_supported;
+      char *p, *end, *name_end, *value;
+
+      /* First separate out this item from the rest of the packet.  If
+        there's another item after this, we overwrite the separator
+        (terminated strings are much easier to work with).  */
+      p = next;
+      end = strchr (p, ';');
+      if (end == NULL)
+       {
+         end = p + strlen (p);
+         next = end;
+       }
+      else
+       {
+         if (end == p)
+           {
+             warning (_("empty item in \"qSupported\" response"));
+             continue;
+           }
+
+         *end = '\0';
+         next = end + 1;
+       }
+
+      name_end = strchr (p, '=');
+      if (name_end)
+       {
+         /* This is a name=value entry.  */
+         is_supported = PACKET_ENABLE;
+         value = name_end + 1;
+         *name_end = '\0';
+       }
+      else
+       {
+         value = NULL;
+         switch (end[-1])
+           {
+           case '+':
+             is_supported = PACKET_ENABLE;
+             break;
+
+           case '-':
+             is_supported = PACKET_DISABLE;
+             break;
+
+           case '?':
+             is_supported = PACKET_SUPPORT_UNKNOWN;
+             break;
+
+           default:
+             warning (_("unrecognized item \"%s\" in \"qSupported\" response"), p);
+             continue;
+           }
+         end[-1] = '\0';
+       }
+
+      for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
+       if (strcmp (remote_protocol_features[i].name, p) == 0)
+         {
+           const struct protocol_feature *feature;
+
+           seen[i] = 1;
+           feature = &remote_protocol_features[i];
+           feature->func (feature, is_supported, value);
+           break;
+         }
+    }
+
+  /* If we increased the packet size, make sure to increase the global
+     buffer size also.  We delay this until after parsing the entire
+     qSupported packet, because this is the same buffer we were
+     parsing.  */
+  if (rs->buf_size < rs->explicit_packet_size)
+    {
+      rs->buf_size = rs->explicit_packet_size;
+      rs->buf = xrealloc (rs->buf, rs->buf_size);
+    }
+
+  /* Handle the defaults for unmentioned features.  */
+  for (i = 0; i < ARRAY_SIZE (remote_protocol_features); i++)
+    if (!seen[i])
+      {
+       const struct protocol_feature *feature;
+
+       feature = &remote_protocol_features[i];
+       feature->func (feature, feature->default_support, NULL);
+      }
+}
+
+
 static void
 remote_open_1 (char *name, int from_tty, struct target_ops *target,
               int extended_p, int async_p)
 {
-  int ex;
   struct remote_state *rs = get_remote_state ();
   if (name == 0)
-    error ("To open a remote debug connection, you need to specify what\n"
+    error (_("To open a remote debug connection, you need to specify what\n"
           "serial device is attached to the remote system\n"
-          "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.).");
+          "(e.g. /dev/ttyS0, /dev/ttya, COM1, etc.)."));
 
-  /* See FIXME above */
+  /* See FIXME above */
   if (!async_p)
     wait_forever_enabled_p = 1;
 
-  reopen_exec_file ();
-  reread_symbols ();
-
   target_preopen (from_tty);
 
   unpush_target (target);
 
+  remote_fileio_reset ();
+  reopen_exec_file ();
+  reread_symbols ();
+
   remote_desc = remote_serial_open (name);
   if (!remote_desc)
     perror_with_name (name);
@@ -2160,9 +2347,12 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
       puts_filtered (name);
       puts_filtered ("\n");
     }
-  push_target (target);                /* Switch to using remote target now */
+  push_target (target);                /* Switch to using remote target now */
 
+  /* Reset the target state; these things will be queried either by
+     remote_query_supported or as they are needed.  */
   init_all_packet_configs ();
+  rs->explicit_packet_size = 0;
 
   general_thread = -2;
   continue_thread = -2;
@@ -2171,6 +2361,11 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
   use_threadinfo_query = 1;
   use_threadextra_query = 1;
 
+  /* The first packet we send to the target is the optional "supported
+     packets" request.  If the target can answer this, it will tell us
+     which later probes to skip.  */
+  remote_query_supported ();
+
   /* Without this, some commands which require an active target (such
      as kill) won't work.  This variable serves (at least) double duty
      as both the pid of the target process (if it has such), and as a
@@ -2182,7 +2377,7 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
 
   if (async_p)
     {
-      /* With this target we start out by owning the terminal. */
+      /* With this target we start out by owning the terminal.  */
       remote_async_terminal_ours_p = 1;
 
       /* FIXME: cagney/1999-09-23: During the initial connection it is
@@ -2191,14 +2386,12 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
         wait_for_inferior() with no timeout.  wait_forever_enabled_p gets
         around this. Eventually a mechanism that allows
         wait_for_inferior() to expect/get timeouts will be
-        implemented. */
+        implemented.  */
       wait_forever_enabled_p = 0;
     }
 
-#ifdef SOLIB_CREATE_INFERIOR_HOOK
-  /* First delete any symbols previously loaded from shared libraries. */
+  /* First delete any symbols previously loaded from shared libraries.  */
   no_shared_libraries (NULL, 0);
-#endif
 
   /* Start the remote connection.  If error() or QUIT, discard this
      target (we'd otherwise be in an inconsistent state) and then
@@ -2215,18 +2408,17 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
      been fixed - the function set_cmd_context() makes it possible for
      all the ``target ....'' commands to share a common callback
      function.  See cli-dump.c.  */
-  ex = catch_exceptions (uiout,
-                        remote_start_remote, NULL,
-                        "Couldn't establish connection to remote"
-                        " target\n",
-                        RETURN_MASK_ALL);
-  if (ex < 0)
-    {
-      pop_target ();
-      if (async_p)
-       wait_forever_enabled_p = 1;
-      throw_exception (ex);
-    }
+  {
+    struct gdb_exception ex
+      = catch_exception (uiout, remote_start_remote, NULL, RETURN_MASK_ALL);
+    if (ex.reason < 0)
+      {
+       pop_target ();
+       if (async_p)
+         wait_forever_enabled_p = 1;
+       throw_exception (ex);
+      }
+  }
 
   if (async_p)
     wait_forever_enabled_p = 1;
@@ -2234,24 +2426,14 @@ remote_open_1 (char *name, int from_tty, struct target_ops *target,
   if (extended_p)
     {
       /* Tell the remote that we are using the extended protocol.  */
-      char *buf = alloca (rs->remote_packet_size);
       putpkt ("!");
-      getpkt (buf, (rs->remote_packet_size), 0);
-    }
-#ifdef SOLIB_CREATE_INFERIOR_HOOK
-  /* FIXME: need a master target_open vector from which all
-     remote_opens can be called, so that stuff like this can
-     go there.  Failing that, the following code must be copied
-     to the open function for any remote target that wants to
-     support svr4 shared libraries.  */
-
-  /* Set up to detect and load shared libraries. */
-  if (exec_bfd)        /* No use without an exec file. */
-    {
-      SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
-      remote_check_symbols (symfile_objfile);
+      getpkt (&rs->buf, &rs->buf_size, 0);
     }
-#endif
+
+  post_create_inferior (&current_target, from_tty);
+
+  if (exec_bfd)        /* No use without an exec file.  */
+    remote_check_symbols (symfile_objfile);
 }
 
 /* This takes a program previously attached to and detaches it.  After
@@ -2263,16 +2445,15 @@ static void
 remote_detach (char *args, int from_tty)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
 
   if (args)
-    error ("Argument given to \"detach\" when remotely debugging.");
+    error (_("Argument given to \"detach\" when remotely debugging."));
 
   /* Tell the remote target to detach.  */
-  strcpy (buf, "D");
-  remote_send (buf, (rs->remote_packet_size));
+  strcpy (rs->buf, "D");
+  remote_send (&rs->buf, &rs->buf_size);
 
-  /* Unregister the file descriptor from the event loop. */
+  /* Unregister the file descriptor from the event loop.  */
   if (target_is_async_p ())
     serial_async (remote_desc, NULL, 0);
 
@@ -2284,15 +2465,12 @@ remote_detach (char *args, int from_tty)
 /* Same as remote_detach, but don't send the "D" packet; just disconnect.  */
 
 static void
-remote_disconnect (char *args, int from_tty)
+remote_disconnect (struct target_ops *target, char *args, int from_tty)
 {
-  struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
-
   if (args)
-    error ("Argument given to \"detach\" when remotely debugging.");
+    error (_("Argument given to \"detach\" when remotely debugging."));
 
-  /* Unregister the file descriptor from the event loop. */
+  /* Unregister the file descriptor from the event loop.  */
   if (target_is_async_p ())
     serial_async (remote_desc, NULL, 0);
 
@@ -2313,11 +2491,11 @@ fromhex (int a)
   else if (a >= 'A' && a <= 'F')
     return a - 'A' + 10;
   else
-    error ("Reply contains invalid hex digit %d", a);
+    error (_("Reply contains invalid hex digit %d"), a);
 }
 
 static int
-hex2bin (const char *hex, char *bin, int count)
+hex2bin (const char *hex, gdb_byte *bin, int count)
 {
   int i;
 
@@ -2326,7 +2504,7 @@ hex2bin (const char *hex, char *bin, int count)
       if (hex[0] == 0 || hex[1] == 0)
        {
          /* Hex string is short, or of uneven length.
-            Return the count that has been converted so far. */
+            Return the count that has been converted so far.  */
          return i;
        }
       *bin++ = fromhex (hex[0]) * 16 + fromhex (hex[1]);
@@ -2347,12 +2525,12 @@ tohex (int nib)
 }
 
 static int
-bin2hex (const char *bin, char *hex, int count)
+bin2hex (const gdb_byte *bin, char *hex, int count)
 {
   int i;
-  /* May use a length, or a nul-terminated string as input. */
+  /* May use a length, or a nul-terminated string as input.  */
   if (count == 0)
-    count = strlen (bin);
+    count = strlen ((char *) bin);
 
   for (i = 0; i < count; i++)
     {
@@ -2367,11 +2545,13 @@ bin2hex (const char *bin, char *hex, int count)
    the response.  */
 
 static void
-remote_vcont_probe (struct remote_state *rs, char *buf)
+remote_vcont_probe (struct remote_state *rs)
 {
+  char *buf = rs->buf;
+
   strcpy (buf, "vCont?");
   putpkt (buf);
-  getpkt (buf, rs->remote_packet_size, 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
   /* Make sure that the features we assume are supported.  */
   if (strncmp (buf, "vCont", 5) == 0)
@@ -2404,7 +2584,7 @@ remote_vcont_probe (struct remote_state *rs, char *buf)
        buf[0] = 0;
     }
 
-  packet_ok (buf, &remote_protocol_vcont);
+  packet_ok (buf, &remote_protocol_packets[PACKET_vCont]);
 }
 
 /* Resume the remote inferior by using a "vCont" packet.  The thread
@@ -2425,17 +2605,11 @@ remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
   char *buf = NULL, *outbuf;
   struct cleanup *old_cleanup;
 
-  buf = xmalloc (rs->remote_packet_size);
-  old_cleanup = make_cleanup (xfree, buf);
-
-  if (remote_protocol_vcont.support == PACKET_SUPPORT_UNKNOWN)
-    remote_vcont_probe (rs, buf);
+  if (remote_protocol_packets[PACKET_vCont].support == PACKET_SUPPORT_UNKNOWN)
+    remote_vcont_probe (rs);
 
-  if (remote_protocol_vcont.support == PACKET_DISABLE)
-    {
-      do_cleanups (old_cleanup);
-      return 0;
-    }
+  if (remote_protocol_packets[PACKET_vCont].support == PACKET_DISABLE)
+    return 0;
 
   /* If we could generate a wider range of packets, we'd have to worry
      about overflowing BUF.  Should there be a generic
@@ -2482,8 +2656,8 @@ remote_vcont_resume (ptid_t ptid, int step, enum target_signal siggnal)
        outbuf = xstrprintf ("vCont;c:%x", pid);
     }
 
-  gdb_assert (outbuf && strlen (outbuf) < rs->remote_packet_size);
-  make_cleanup (xfree, outbuf);
+  gdb_assert (outbuf && strlen (outbuf) < get_remote_packet_size ());
+  old_cleanup = make_cleanup (xfree, outbuf);
 
   putpkt (outbuf);
 
@@ -2502,9 +2676,8 @@ static void
 remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
+  char *buf = rs->buf;
   int pid = PIDGET (ptid);
-  char *p;
 
   last_sent_signal = siggnal;
   last_sent_step = step;
@@ -2520,9 +2693,9 @@ remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
 
   /* All other supported resume packets do use Hc, so call set_thread.  */
   if (pid == -1)
-    set_thread (0, 0);         /* run any thread */
+    set_thread (0, 0);         /* Run any thread.  */
   else
-    set_thread (pid, 0);       /* run this thread */
+    set_thread (pid, 0);       /* Run this thread.  */
 
   if (siggnal != TARGET_SIGNAL_0)
     {
@@ -2537,7 +2710,7 @@ remote_resume (ptid_t ptid, int step, enum target_signal siggnal)
   putpkt (buf);
 }
 
-/* Same as remote_resume, but with async support. */
+/* Same as remote_resume, but with async support.  */
 static void
 remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
 {
@@ -2546,13 +2719,13 @@ remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
   /* We are about to start executing the inferior, let's register it
      with the event loop. NOTE: this is the one place where all the
      execution commands end up. We could alternatively do this in each
-     of the execution commands in infcmd.c.*/
+     of the execution commands in infcmd.c.  */
   /* FIXME: ezannoni 1999-09-28: We may need to move this out of here
      into infcmd.c in order to allow inferior function calls to work
-     NOT asynchronously. */
-  if (event_loop_p && target_can_async_p ())
+     NOT asynchronously.  */
+  if (target_can_async_p ())
     target_async (inferior_event_handler, 0);
-  /* Tell the world that the target is now executing. */
+  /* Tell the world that the target is now executing.  */
   /* FIXME: cagney/1999-09-23: Is it the targets responsibility to set
      this?  Instead, should the client of target just assume (for
      async targets) that the target is going to start executing?  Is
@@ -2563,7 +2736,7 @@ remote_async_resume (ptid_t ptid, int step, enum target_signal siggnal)
 \f
 
 /* Set up the signal handler for SIGINT, while the target is
-   executing, ovewriting the 'regular' SIGINT signal handler. */
+   executing, ovewriting the 'regular' SIGINT signal handler.  */
 static void
 initialize_sigint_signal_handler (void)
 {
@@ -2572,7 +2745,7 @@ initialize_sigint_signal_handler (void)
   signal (SIGINT, handle_remote_sigint);
 }
 
-/* Signal handler for SIGINT, while the target is executing. */
+/* Signal handler for SIGINT, while the target is executing.  */
 static void
 handle_remote_sigint (int sig)
 {
@@ -2584,7 +2757,7 @@ handle_remote_sigint (int sig)
 
 /* Signal handler for SIGINT, installed after SIGINT has already been
    sent once.  It will take effect the second time that the user sends
-   a ^C. */
+   a ^C.  */
 static void
 handle_remote_sigint_twice (int sig)
 {
@@ -2595,7 +2768,7 @@ handle_remote_sigint_twice (int sig)
 }
 
 /* Perform the real interruption of the target execution, in response
-   to a ^C. */
+   to a ^C.  */
 static void
 async_remote_interrupt (gdb_client_data arg)
 {
@@ -2606,14 +2779,14 @@ async_remote_interrupt (gdb_client_data arg)
 }
 
 /* Perform interrupt, if the first attempt did not succeed. Just give
-   up on the target alltogether. */
+   up on the target alltogether.  */
 void
 async_remote_interrupt_twice (gdb_client_data arg)
 {
   if (remote_debug)
     fprintf_unfiltered (gdb_stdlog, "remote_interrupt_twice called\n");
   /* Do something only if the target was not killed by the previous
-     cntl-C. */
+     cntl-C.  */
   if (target_executing)
     {
       interrupt_query ();
@@ -2622,15 +2795,17 @@ async_remote_interrupt_twice (gdb_client_data arg)
 }
 
 /* Reinstall the usual SIGINT handlers, after the target has
-   stopped. */
+   stopped.  */
 static void
 cleanup_sigint_signal_handler (void *dummy)
 {
   signal (SIGINT, handle_sigint);
   if (sigint_remote_twice_token)
-    delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_twice_token);
+    delete_async_signal_handler ((struct async_signal_handler **) 
+                                &sigint_remote_twice_token);
   if (sigint_remote_token)
-    delete_async_signal_handler ((struct async_signal_handler **) & sigint_remote_token);
+    delete_async_signal_handler ((struct async_signal_handler **) 
+                                &sigint_remote_token);
 }
 
 /* Send ^C to target to halt it.  Target will respond, and send us a
@@ -2641,11 +2816,11 @@ static void (*ofunc) (int);
    as a signal handler for SIGINT. The first time a user requests a
    stop, we call remote_stop to send a break or ^C. If there is no
    response from the target (it didn't stop when the user requested it),
-   we ask the user if he'd like to detach from the target. */
+   we ask the user if he'd like to detach from the target.  */
 static void
 remote_interrupt (int signo)
 {
-  /* If this doesn't work, try more severe steps. */
+  /* If this doesn't work, try more severe steps.  */
   signal (signo, remote_interrupt_twice);
 
   if (remote_debug)
@@ -2666,7 +2841,7 @@ remote_interrupt_twice (int signo)
 
 /* This is the generic stop called via the target vector. When a target
    interrupt is requested, either by the command line or the GUI, we
-   will eventually end up here. */
+   will eventually end up here.  */
 static void
 remote_stop (void)
 {
@@ -2691,7 +2866,7 @@ interrupt_query (void)
 Give up (and stop debugging it)? "))
     {
       target_mourn_inferior ();
-      throw_exception (RETURN_QUIT);
+      deprecated_throw_reason (RETURN_QUIT);
     }
 
   target_terminal_inferior ();
@@ -2700,7 +2875,7 @@ Give up (and stop debugging it)? "))
 /* Enable/disable target terminal ownership.  Most targets can use
    terminal groups to control terminal ownership.  Remote targets are
    different in that explicit transfer of ownership to/from GDB/target
-   is required. */
+   is required.  */
 
 static void
 remote_async_terminal_inferior (void)
@@ -2709,7 +2884,7 @@ remote_async_terminal_inferior (void)
      sync_execution here.  This function should only be called when
      GDB is resuming the inferior in the forground.  A background
      resume (``run&'') should leave GDB in control of the terminal and
-     consequently should not call this code. */
+     consequently should not call this code.  */
   if (!sync_execution)
     return;
   /* FIXME: cagney/1999-09-27: Closely related to the above.  Make
@@ -2725,16 +2900,16 @@ remote_async_terminal_inferior (void)
   initialize_sigint_signal_handler ();
   /* NOTE: At this point we could also register our selves as the
      recipient of all input.  Any characters typed could then be
-     passed on down to the target. */
+     passed on down to the target.  */
 }
 
 static void
 remote_async_terminal_ours (void)
 {
-  /* See FIXME in remote_async_terminal_inferior. */
+  /* See FIXME in remote_async_terminal_inferior.  */
   if (!sync_execution)
     return;
-  /* See FIXME in remote_async_terminal_inferior. */
+  /* See FIXME in remote_async_terminal_inferior.  */
   if (remote_async_terminal_ours_p)
     return;
   cleanup_sigint_signal_handler (NULL);
@@ -2771,7 +2946,8 @@ static ptid_t
 remote_wait (ptid_t ptid, struct target_waitstatus *status)
 {
   struct remote_state *rs = get_remote_state ();
-  unsigned char *buf = alloca (rs->remote_packet_size);
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+  char *buf = rs->buf;
   ULONGEST thread_num = -1;
   ULONGEST addr;
 
@@ -2780,10 +2956,10 @@ remote_wait (ptid_t ptid, struct target_waitstatus *status)
 
   while (1)
     {
-      unsigned char *p;
+      char *p;
 
       ofunc = signal (SIGINT, remote_interrupt);
-      getpkt (buf, (rs->remote_packet_size), 1);
+      getpkt (&rs->buf, &rs->buf_size, 1);
       signal (SIGINT, ofunc);
 
       /* This is a hook for when we need to do something (perhaps the
@@ -2795,18 +2971,17 @@ remote_wait (ptid_t ptid, struct target_waitstatus *status)
 
       switch (buf[0])
        {
-       case 'E':               /* Error of some sort */
-         warning ("Remote failure reply: %s", buf);
+       case 'E':               /* Error of some sort */
+         warning (_("Remote failure reply: %s"), buf);
          continue;
-       case 'F':               /* File-I/O request */
+       case 'F':               /* File-I/O request */
          remote_fileio_request (buf);
          continue;
-       case 'T':               /* Status with PC, SP, FP, ... */
+       case 'T':               /* Status with PC, SP, FP, ...  */
          {
-           int i;
-           char regs[MAX_REGISTER_SIZE];
+           gdb_byte regs[MAX_REGISTER_SIZE];
 
-           /* Expedited reply, containing Signal, {regno, reg} repeat */
+           /* Expedited reply, containing Signal, {regno, reg} repeat */
            /*  format is:  'Tssn...:r...;n...:r...;n...:r...;#cc', where
               ss = signal number
               n... = register number
@@ -2816,39 +2991,39 @@ remote_wait (ptid_t ptid, struct target_waitstatus *status)
 
            while (*p)
              {
-               unsigned char *p1;
+               char *p1;
                char *p_temp;
                int fieldsize;
                LONGEST pnum = 0;
 
-               /* If the packet contains a register number save it in pnum
-                  and set p1 to point to the character following it.
-                  Otherwise p1 points to p.  */
+               /* If the packet contains a register number save it in
+                  pnum and set p1 to point to the character following
+                  it.  Otherwise p1 points to p.  */
 
-               /* If this packet is an awatch packet, don't parse the 'a'
-                  as a register number.  */
+               /* If this packet is an awatch packet, don't parse the
+                  'a' as a register number.  */
 
                if (strncmp (p, "awatch", strlen("awatch")) != 0)
                  {
                    /* Read the ``P'' register number.  */
                    pnum = strtol (p, &p_temp, 16);
-                   p1 = (unsigned char *) p_temp;
+                   p1 = p_temp;
                  }
                else
                  p1 = p;
 
-               if (p1 == p)    /* No register number present here */
+               if (p1 == p)    /* No register number present here */
                  {
-                   p1 = (unsigned char *) strchr (p, ':');
+                   p1 = strchr (p, ':');
                    if (p1 == NULL)
-                     warning ("Malformed packet(a) (missing colon): %s\n\
-Packet: '%s'\n",
-                              p, buf);
+                     error (_("Malformed packet(a) (missing colon): %s\n\
+Packet: '%s'\n"),
+                            p, buf);
                    if (strncmp (p, "thread", p1 - p) == 0)
                      {
                        p_temp = unpack_varlen_hex (++p1, &thread_num);
                        record_currthread (thread_num);
-                       p = (unsigned char *) p_temp;
+                       p = p_temp;
                      }
                    else if ((strncmp (p, "watch", p1 - p) == 0)
                             || (strncmp (p, "rwatch", p1 - p) == 0)
@@ -2863,35 +3038,42 @@ Packet: '%s'\n",
                        /* Silently skip unknown optional info.  */
                        p_temp = strchr (p1 + 1, ';');
                        if (p_temp)
-                         p = (unsigned char *) p_temp;
+                         p = p_temp;
                      }
                  }
                else
                  {
-                   struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
+                   struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
                    p = p1;
 
                    if (*p++ != ':')
-                     error ("Malformed packet(b) (missing colon): %s\nPacket: '%s'\n",
+                     error (_("Malformed packet(b) (missing colon): %s\n\
+Packet: '%s'\n"),
                             p, buf);
 
                    if (reg == NULL)
-                     error ("Remote sent bad register number %s: %s\nPacket: '%s'\n",
+                     error (_("Remote sent bad register number %s: %s\n\
+Packet: '%s'\n"),
                             phex_nz (pnum, 0), p, buf);
 
-                   fieldsize = hex2bin (p, regs, DEPRECATED_REGISTER_RAW_SIZE (reg->regnum));
+                   fieldsize = hex2bin (p, regs,
+                                        register_size (current_gdbarch, 
+                                                       reg->regnum));
                    p += 2 * fieldsize;
-                   if (fieldsize < DEPRECATED_REGISTER_RAW_SIZE (reg->regnum))
-                     warning ("Remote reply is too short: %s", buf);
-                   regcache_raw_supply (current_regcache, reg->regnum, regs);
+                   if (fieldsize < register_size (current_gdbarch, 
+                                                  reg->regnum))
+                     warning (_("Remote reply is too short: %s"), buf);
+                   regcache_raw_supply (current_regcache, 
+                                        reg->regnum, regs);
                  }
 
                if (*p++ != ';')
-                 error ("Remote register badly formatted: %s\nhere: %s", buf, p);
+                 error (_("Remote register badly formatted: %s\nhere: %s"), 
+                        buf, p);
              }
          }
          /* fall through */
-       case 'S':               /* Old style status, just signal only */
+       case 'S':               /* Old style status, just signal only */
          status->kind = TARGET_WAITKIND_STOPPED;
          status->value.sig = (enum target_signal)
            (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
@@ -2902,7 +3084,7 @@ Packet: '%s'\n",
              record_currthread (thread_num);
            }
          goto got_status;
-       case 'W':               /* Target exited */
+       case 'W':               /* Target exited */
          {
            /* The remote process exited.  */
            status->kind = TARGET_WAITKIND_EXITED;
@@ -2916,7 +3098,7 @@ Packet: '%s'\n",
          kill_kludge = 1;
 
          goto got_status;
-       case 'O':               /* Console output */
+       case 'O':               /* Console output */
          remote_console_output (buf + 1);
          continue;
        case '\0':
@@ -2937,7 +3119,7 @@ Packet: '%s'\n",
            }
          /* else fallthrough */
        default:
-         warning ("Invalid remote reply: %s", buf);
+         warning (_("Invalid remote reply: %s"), buf);
          continue;
        }
     }
@@ -2949,12 +3131,13 @@ got_status:
   return inferior_ptid;
 }
 
-/* Async version of remote_wait. */
+/* Async version of remote_wait.  */
 static ptid_t
 remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 {
   struct remote_state *rs = get_remote_state ();
-  unsigned char *buf = alloca (rs->remote_packet_size);
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+  char *buf = rs->buf;
   ULONGEST thread_num = -1;
   ULONGEST addr;
 
@@ -2965,15 +3148,15 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 
   while (1)
     {
-      unsigned char *p;
+      char *p;
 
       if (!target_is_async_p ())
        ofunc = signal (SIGINT, remote_interrupt);
       /* FIXME: cagney/1999-09-27: If we're in async mode we should
          _never_ wait for ever -> test on target_is_async_p().
          However, before we do that we need to ensure that the caller
-         knows how to take the target into/out of async mode. */
-      getpkt (buf, (rs->remote_packet_size), wait_forever_enabled_p);
+         knows how to take the target into/out of async mode.  */
+      getpkt (&rs->buf, &rs->buf_size, wait_forever_enabled_p);
       if (!target_is_async_p ())
        signal (SIGINT, ofunc);
 
@@ -2984,18 +3167,17 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 
       switch (buf[0])
        {
-       case 'E':               /* Error of some sort */
-         warning ("Remote failure reply: %s", buf);
+       case 'E':               /* Error of some sort */
+         warning (_("Remote failure reply: %s"), buf);
          continue;
-       case 'F':               /* File-I/O request */
+       case 'F':               /* File-I/O request */
          remote_fileio_request (buf);
          continue;
-       case 'T':               /* Status with PC, SP, FP, ... */
+       case 'T':               /* Status with PC, SP, FP, ...  */
          {
-           int i;
-           char regs[MAX_REGISTER_SIZE];
+           gdb_byte regs[MAX_REGISTER_SIZE];
 
-           /* Expedited reply, containing Signal, {regno, reg} repeat */
+           /* Expedited reply, containing Signal, {regno, reg} repeat */
            /*  format is:  'Tssn...:r...;n...:r...;n...:r...;#cc', where
               ss = signal number
               n... = register number
@@ -3005,14 +3187,14 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 
            while (*p)
              {
-               unsigned char *p1;
+               char *p1;
                char *p_temp;
                int fieldsize;
                long pnum = 0;
 
-               /* If the packet contains a register number, save it in pnum
-                  and set p1 to point to the character following it.
-                  Otherwise p1 points to p.  */
+               /* If the packet contains a register number, save it
+                  in pnum and set p1 to point to the character
+                  following it.  Otherwise p1 points to p.  */
 
                /* If this packet is an awatch packet, don't parse the 'a'
                   as a register number.  */
@@ -3021,22 +3203,23 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
                  {
                    /* Read the register number.  */
                    pnum = strtol (p, &p_temp, 16);
-                   p1 = (unsigned char *) p_temp;
+                   p1 = p_temp;
                  }
                else
                  p1 = p;
 
-               if (p1 == p)    /* No register number present here */
+               if (p1 == p)    /* No register number present here */
                  {
-                   p1 = (unsigned char *) strchr (p, ':');
+                   p1 = strchr (p, ':');
                    if (p1 == NULL)
-                     error ("Malformed packet(a) (missing colon): %s\nPacket: '%s'\n",
+                     error (_("Malformed packet(a) (missing colon): %s\n\
+Packet: '%s'\n"),
                             p, buf);
                    if (strncmp (p, "thread", p1 - p) == 0)
                      {
                        p_temp = unpack_varlen_hex (++p1, &thread_num);
                        record_currthread (thread_num);
-                       p = (unsigned char *) p_temp;
+                       p = p_temp;
                      }
                    else if ((strncmp (p, "watch", p1 - p) == 0)
                             || (strncmp (p, "rwatch", p1 - p) == 0)
@@ -3049,7 +3232,7 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
                    else
                      {
                        /* Silently skip unknown optional info.  */
-                       p_temp = (unsigned char *) strchr (p1 + 1, ';');
+                       p_temp = strchr (p1 + 1, ';');
                        if (p_temp)
                          p = p_temp;
                      }
@@ -3057,30 +3240,35 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 
                else
                  {
-                   struct packet_reg *reg = packet_reg_from_pnum (rs, pnum);
+                   struct packet_reg *reg = packet_reg_from_pnum (rsa, pnum);
                    p = p1;
                    if (*p++ != ':')
-                     error ("Malformed packet(b) (missing colon): %s\nPacket: '%s'\n",
+                     error (_("Malformed packet(b) (missing colon): %s\n\
+Packet: '%s'\n"),
                             p, buf);
 
                    if (reg == NULL)
-                     error ("Remote sent bad register number %ld: %s\nPacket: '%s'\n",
+                     error (_("Remote sent bad register number %ld: %s\n\
+Packet: '%s'\n"),
                             pnum, p, buf);
 
-                   fieldsize = hex2bin (p, regs, DEPRECATED_REGISTER_RAW_SIZE (reg->regnum));
+                   fieldsize = hex2bin (p, regs,
+                                        register_size (current_gdbarch, 
+                                                       reg->regnum));
                    p += 2 * fieldsize;
-                   if (fieldsize < DEPRECATED_REGISTER_RAW_SIZE (reg->regnum))
-                     warning ("Remote reply is too short: %s", buf);
+                   if (fieldsize < register_size (current_gdbarch, 
+                                                  reg->regnum))
+                     warning (_("Remote reply is too short: %s"), buf);
                    regcache_raw_supply (current_regcache, reg->regnum, regs);
                  }
 
                if (*p++ != ';')
-                 error ("Remote register badly formatted: %s\nhere: %s",
+                 error (_("Remote register badly formatted: %s\nhere: %s"),
                         buf, p);
              }
          }
          /* fall through */
-       case 'S':               /* Old style status, just signal only */
+       case 'S':               /* Old style status, just signal only */
          status->kind = TARGET_WAITKIND_STOPPED;
          status->value.sig = (enum target_signal)
            (((fromhex (buf[1])) << 4) + (fromhex (buf[2])));
@@ -3091,7 +3279,7 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
              record_currthread (thread_num);
            }
          goto got_status;
-       case 'W':               /* Target exited */
+       case 'W':               /* Target exited */
          {
            /* The remote process exited.  */
            status->kind = TARGET_WAITKIND_EXITED;
@@ -3105,10 +3293,10 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
          kill_kludge = 1;
 
          goto got_status;
-       case 'O':               /* Console output */
+       case 'O':               /* Console output */
          remote_console_output (buf + 1);
          /* Return immediately to the event loop. The event loop will
-             still be waiting on the inferior afterwards. */
+             still be waiting on the inferior afterwards.  */
           status->kind = TARGET_WAITKIND_IGNORE;
           goto got_status;
        case '\0':
@@ -3129,7 +3317,7 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
            }
          /* else fallthrough */
        default:
-         warning ("Invalid remote reply: %s", buf);
+         warning (_("Invalid remote reply: %s"), buf);
          continue;
        }
     }
@@ -3148,50 +3336,122 @@ static int register_bytes_found;
 /* Read the remote registers into the block REGS.  */
 /* Currently we just read all the registers, so we don't use regnum.  */
 
+static int
+fetch_register_using_p (int regnum)
+{
+  struct remote_state *rs = get_remote_state ();
+  char *buf = rs->buf, *p;
+  char regp[MAX_REGISTER_SIZE];
+  int i;
+
+  p = buf;
+  *p++ = 'p';
+  p += hexnumstr (p, regnum);
+  *p++ = '\0';
+  remote_send (&rs->buf, &rs->buf_size);
+
+  /* If the stub didn't recognize the packet, or if we got an error,
+     tell our caller.  */
+  if (buf[0] == '\0' || buf[0] == 'E')
+    return 0;
+
+  /* If this register is unfetchable, tell the regcache.  */
+  if (buf[0] == 'x')
+    {
+      regcache_raw_supply (current_regcache, regnum, NULL);
+      set_register_cached (regnum, -1);
+      return 1;
+    }
+
+  /* Otherwise, parse and supply the value.  */
+  p = buf;
+  i = 0;
+  while (p[0] != 0)
+    {
+      if (p[1] == 0)
+        {
+          error (_("fetch_register_using_p: early buf termination"));
+          return 0;
+        }
+
+      regp[i++] = fromhex (p[0]) * 16 + fromhex (p[1]);
+      p += 2;
+    }
+  regcache_raw_supply (current_regcache, regnum, regp);
+  return 1;
+}
+
 static void
 remote_fetch_registers (int regnum)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+  char *buf = rs->buf;
   int i;
   char *p;
-  char *regs = alloca (rs->sizeof_g_packet);
+  char *regs = alloca (rsa->sizeof_g_packet);
 
   set_thread (PIDGET (inferior_ptid), 1);
 
   if (regnum >= 0)
     {
-      struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
+      struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
       gdb_assert (reg != NULL);
       if (!reg->in_g_packet)
        internal_error (__FILE__, __LINE__,
-                       "Attempt to fetch a non G-packet register when this "
-                       "remote.c does not support the p-packet.");
+                       _("Attempt to fetch a non G-packet register when this "
+                       "remote.c does not support the p-packet."));
     }
+      switch (remote_protocol_packets[PACKET_p].support)
+       {
+       case PACKET_DISABLE:
+         break;
+       case PACKET_ENABLE:
+         if (fetch_register_using_p (regnum))
+           return;
+         else
+           error (_("Protocol error: p packet not recognized by stub"));
+       case PACKET_SUPPORT_UNKNOWN:
+         if (fetch_register_using_p (regnum))
+           {
+             /* The stub recognized the 'p' packet.  Remember this.  */
+             remote_protocol_packets[PACKET_p].support = PACKET_ENABLE;
+             return;
+           }
+         else
+           {
+             /* The stub does not support the 'P' packet.  Use 'G'
+                instead, and don't try using 'P' in the future (it
+                will just waste our time).  */
+             remote_protocol_packets[PACKET_p].support = PACKET_DISABLE;
+             break;
+           }
+       }
 
   sprintf (buf, "g");
-  remote_send (buf, (rs->remote_packet_size));
+  remote_send (&rs->buf, &rs->buf_size);
 
   /* Save the size of the packet sent to us by the target.  Its used
      as a heuristic when determining the max size of packets that the
-     target can safely receive. */
-  if ((rs->actual_register_packet_size) == 0)
-    (rs->actual_register_packet_size) = strlen (buf);
+     target can safely receive.  */
+  if ((rsa->actual_register_packet_size) == 0)
+    (rsa->actual_register_packet_size) = strlen (buf);
 
   /* Unimplemented registers read as all bits zero.  */
-  memset (regs, 0, rs->sizeof_g_packet);
+  memset (regs, 0, rsa->sizeof_g_packet);
 
   /* We can get out of synch in various cases.  If the first character
      in the buffer is not a hex character, assume that has happened
      and try to fetch another packet to read.  */
   while ((buf[0] < '0' || buf[0] > '9')
+        && (buf[0] < 'A' || buf[0] > 'F')
         && (buf[0] < 'a' || buf[0] > 'f')
-        && buf[0] != 'x')      /* New: unavailable register value */
+        && buf[0] != 'x')      /* New: unavailable register value */
     {
       if (remote_debug)
        fprintf_unfiltered (gdb_stdlog,
                            "Bad register packet; fetching a new packet\n");
-      getpkt (buf, (rs->remote_packet_size), 0);
+      getpkt (&rs->buf, &rs->buf_size, 0);
     }
 
   /* Reply describes registers byte by byte, each byte encoded as two
@@ -3199,13 +3459,13 @@ remote_fetch_registers (int regnum)
      register cacheing/storage mechanism.  */
 
   p = buf;
-  for (i = 0; i < rs->sizeof_g_packet; i++)
+  for (i = 0; i < rsa->sizeof_g_packet; i++)
     {
       if (p[0] == 0)
        break;
       if (p[1] == 0)
        {
-         warning ("Remote reply is of odd length: %s", buf);
+         warning (_("Remote reply is of odd length: %s"), buf);
          /* Don't change register_bytes_found in this case, and don't
             print a second warning.  */
          goto supply_them;
@@ -3222,7 +3482,7 @@ remote_fetch_registers (int regnum)
       register_bytes_found = i;
       if (REGISTER_BYTES_OK_P ()
          && !REGISTER_BYTES_OK (i))
-       warning ("Remote reply is too short: %s", buf);
+       warning (_("Remote reply is too short: %s"), buf);
     }
 
  supply_them:
@@ -3230,7 +3490,7 @@ remote_fetch_registers (int regnum)
     int i;
     for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
       {
-       struct packet_reg *r = &rs->regs[i];
+       struct packet_reg *r = &rsa->regs[i];
        if (r->in_g_packet)
          {
            if (r->offset * 2 >= strlen (buf))
@@ -3262,19 +3522,19 @@ remote_fetch_registers (int regnum)
 static void
 remote_prepare_to_store (void)
 {
-  struct remote_state *rs = get_remote_state ();
+  struct remote_arch_state *rsa = get_remote_arch_state ();
   int i;
-  char buf[MAX_REGISTER_SIZE];
+  gdb_byte buf[MAX_REGISTER_SIZE];
 
   /* Make sure the entire registers array is valid.  */
-  switch (remote_protocol_P.support)
+  switch (remote_protocol_packets[PACKET_P].support)
     {
     case PACKET_DISABLE:
     case PACKET_SUPPORT_UNKNOWN:
       /* Make sure all the necessary registers are cached.  */
       for (i = 0; i < NUM_REGS; i++)
-       if (rs->regs[i].in_g_packet)
-         regcache_raw_read (current_regcache, rs->regs[i].regnum, buf);
+       if (rsa->regs[i].in_g_packet)
+         regcache_raw_read (current_regcache, rsa->regs[i].regnum, buf);
       break;
     case PACKET_ENABLE:
       break;
@@ -3282,46 +3542,45 @@ remote_prepare_to_store (void)
 }
 
 /* Helper: Attempt to store REGNUM using the P packet.  Return fail IFF
-   packet was not recognized. */
+   packet was not recognized.  */
 
 static int
 store_register_using_P (int regnum)
 {
   struct remote_state *rs = get_remote_state ();
-  struct packet_reg *reg = packet_reg_from_regnum (rs, regnum);
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+  struct packet_reg *reg = packet_reg_from_regnum (rsa, regnum);
   /* Try storing a single register.  */
-  char *buf = alloca (rs->remote_packet_size);
-  char regp[MAX_REGISTER_SIZE];
+  char *buf = rs->buf;
+  gdb_byte regp[MAX_REGISTER_SIZE];
   char *p;
-  int i;
 
-  sprintf (buf, "P%s=", phex_nz (reg->pnum, 0));
+  xsnprintf (buf, get_remote_packet_size (), "P%s=", phex_nz (reg->pnum, 0));
   p = buf + strlen (buf);
   regcache_raw_collect (current_regcache, reg->regnum, regp);
-  bin2hex (regp, p, DEPRECATED_REGISTER_RAW_SIZE (reg->regnum));
-  remote_send (buf, rs->remote_packet_size);
+  bin2hex (regp, p, register_size (current_gdbarch, reg->regnum));
+  remote_send (&rs->buf, &rs->buf_size);
 
   return buf[0] != '\0';
 }
 
 
-/* Store register REGNUM, or all registers if REGNUM == -1, from the contents
-   of the register cache buffer.  FIXME: ignores errors.  */
+/* Store register REGNUM, or all registers if REGNUM == -1, from the
+   contents of the register cache buffer.  FIXME: ignores errors.  */
 
 static void
 remote_store_registers (int regnum)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf;
-  char *regs;
-  int i;
+  struct remote_arch_state *rsa = get_remote_arch_state ();
+  gdb_byte *regs;
   char *p;
 
   set_thread (PIDGET (inferior_ptid), 1);
 
   if (regnum >= 0)
     {
-      switch (remote_protocol_P.support)
+      switch (remote_protocol_packets[PACKET_P].support)
        {
        case PACKET_DISABLE:
          break;
@@ -3329,12 +3588,12 @@ remote_store_registers (int regnum)
          if (store_register_using_P (regnum))
            return;
          else
-           error ("Protocol error: P packet not recognized by stub");
+           error (_("Protocol error: P packet not recognized by stub"));
        case PACKET_SUPPORT_UNKNOWN:
          if (store_register_using_P (regnum))
            {
              /* The stub recognized the 'P' packet.  Remember this.  */
-             remote_protocol_P.support = PACKET_ENABLE;
+             remote_protocol_packets[PACKET_P].support = PACKET_ENABLE;
              return;
            }
          else
@@ -3342,7 +3601,7 @@ remote_store_registers (int regnum)
              /* The stub does not support the 'P' packet.  Use 'G'
                 instead, and don't try using 'P' in the future (it
                 will just waste our time).  */
-             remote_protocol_P.support = PACKET_DISABLE;
+             remote_protocol_packets[PACKET_P].support = PACKET_DISABLE;
              break;
            }
        }
@@ -3352,11 +3611,11 @@ remote_store_registers (int regnum)
      local buffer.  */
   {
     int i;
-    regs = alloca (rs->sizeof_g_packet);
-    memset (regs, rs->sizeof_g_packet, 0);
+    regs = alloca (rsa->sizeof_g_packet);
+    memset (regs, 0, rsa->sizeof_g_packet);
     for (i = 0; i < NUM_REGS + NUM_PSEUDO_REGS; i++)
       {
-       struct packet_reg *r = &rs->regs[i];
+       struct packet_reg *r = &rsa->regs[i];
        if (r->in_g_packet)
          regcache_raw_collect (current_regcache, r->regnum, regs + r->offset);
       }
@@ -3364,12 +3623,11 @@ remote_store_registers (int regnum)
 
   /* Command describes registers byte by byte,
      each byte encoded as two hex characters.  */
-  buf = alloca (rs->remote_packet_size);
-  p = buf;
+  p = rs->buf;
   *p++ = 'G';
   /* remote_prepare_to_store insures that register_bytes_found gets set.  */
   bin2hex (regs, p, register_bytes_found);
-  remote_send (buf, (rs->remote_packet_size));
+  remote_send (&rs->buf, &rs->buf_size);
 }
 \f
 
@@ -3414,7 +3672,7 @@ hexnumnstr (char *buf, ULONGEST num, int width)
   return width;
 }
 
-/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits. */
+/* Mask all but the least significant REMOTE_ADDRESS_SIZE bits.  */
 
 static CORE_ADDR
 remote_address_masked (CORE_ADDR addr)
@@ -3423,7 +3681,7 @@ remote_address_masked (CORE_ADDR addr)
       && remote_address_size < (sizeof (ULONGEST) * 8))
     {
       /* Only create a mask when that mask can safely be constructed
-         in a ULONGEST variable. */
+         in a ULONGEST variable.  */
       ULONGEST mask = 1;
       mask = (mask << remote_address_size) - 1;
       addr &= mask;
@@ -3431,21 +3689,62 @@ remote_address_masked (CORE_ADDR addr)
   return addr;
 }
 
+/* Convert BUFFER, binary data at least LEN bytes long, into escaped
+   binary data in OUT_BUF.  Set *OUT_LEN to the length of the data
+   encoded in OUT_BUF, and return the number of bytes in OUT_BUF
+   (which may be more than *OUT_LEN due to escape characters).  The
+   total number of bytes in the output buffer will be at most
+   OUT_MAXLEN.  */
+
+static int
+remote_escape_output (const gdb_byte *buffer, int len,
+                     gdb_byte *out_buf, int *out_len,
+                     int out_maxlen)
+{
+  int input_index, output_index;
+
+  output_index = 0;
+  for (input_index = 0; input_index < len; input_index++)
+    {
+      gdb_byte b = buffer[input_index];
+
+      if (b == '$' || b == '#' || b == '}')
+       {
+         /* These must be escaped.  */
+         if (output_index + 2 > out_maxlen)
+           break;
+         out_buf[output_index++] = '}';
+         out_buf[output_index++] = b ^ 0x20;
+       }
+      else
+       {
+         if (output_index + 1 > out_maxlen)
+           break;
+         out_buf[output_index++] = b;
+       }
+    }
+
+  *out_len = input_index;
+  return output_index;
+}
+
 /* Determine whether the remote target supports binary downloading.
    This is accomplished by sending a no-op memory write of zero length
    to the target at the specified address. It does not suffice to send
-   the whole packet, since many stubs strip the eighth bit and subsequently
-   compute a wrong checksum, which causes real havoc with remote_write_bytes.
+   the whole packet, since many stubs strip the eighth bit and
+   subsequently compute a wrong checksum, which causes real havoc with
+   remote_write_bytes.
 
    NOTE: This can still lose if the serial line is not eight-bit
    clean. In cases like this, the user should clear "remote
-   X-packet". */
+   X-packet".  */
 
 static void
 check_binary_download (CORE_ADDR addr)
 {
   struct remote_state *rs = get_remote_state ();
-  switch (remote_protocol_binary_download.support)
+
+  switch (remote_protocol_packets[PACKET_X].support)
     {
     case PACKET_DISABLE:
       break;
@@ -3453,7 +3752,7 @@ check_binary_download (CORE_ADDR addr)
       break;
     case PACKET_SUPPORT_UNKNOWN:
       {
-       char *buf = alloca (rs->remote_packet_size);
+       char *buf = rs->buf;
        char *p;
 
        p = buf;
@@ -3465,21 +3764,21 @@ check_binary_download (CORE_ADDR addr)
        *p = '\0';
 
        putpkt_binary (buf, (int) (p - buf));
-       getpkt (buf, (rs->remote_packet_size), 0);
+       getpkt (&rs->buf, &rs->buf_size, 0);
 
        if (buf[0] == '\0')
          {
            if (remote_debug)
              fprintf_unfiltered (gdb_stdlog,
                                  "binary downloading NOT suppported by target\n");
-           remote_protocol_binary_download.support = PACKET_DISABLE;
+           remote_protocol_packets[PACKET_X].support = PACKET_DISABLE;
          }
        else
          {
            if (remote_debug)
              fprintf_unfiltered (gdb_stdlog,
                                  "binary downloading suppported by target\n");
-           remote_protocol_binary_download.support = PACKET_ENABLE;
+           remote_protocol_packets[PACKET_X].support = PACKET_ENABLE;
          }
        break;
       }
@@ -3493,58 +3792,66 @@ check_binary_download (CORE_ADDR addr)
    LEN is the number of bytes.
 
    Returns number of bytes transferred, or 0 (setting errno) for
-   error.  Only transfer a single packet. */
+   error.  Only transfer a single packet.  */
 
 int
-remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
+remote_write_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
 {
-  unsigned char *buf;
-  unsigned char *p;
-  unsigned char *plen;
-  long sizeof_buf;
+  struct remote_state *rs = get_remote_state ();
+  char *buf;
+  char *p;
+  char *plen;
   int plenlen;
   int todo;
   int nr_bytes;
   int payload_size;
-  unsigned char *payload_start;
+  char *payload_start;
 
   /* Verify that the target can support a binary download.  */
   check_binary_download (memaddr);
 
-  /* Compute the size, and then allocate space for the largest
-     possible packet.  Include space for an extra trailing NUL.  */
-  sizeof_buf = get_memory_write_packet_size () + 1;
-  buf = alloca (sizeof_buf);
+  payload_size = get_memory_write_packet_size ();
+  
+  /* The packet buffer will be large enough for the payload;
+     get_memory_packet_size ensures this.  */
+  buf = rs->buf;
 
   /* Compute the size of the actual payload by subtracting out the
-     packet header and footer overhead: "$M<memaddr>,<len>:...#nn".  */
-  payload_size = (get_memory_write_packet_size () - (strlen ("$M,:#NN")
-                                                    + hexnumlen (memaddr)
-                                                    + hexnumlen (len)));
+     packet header and footer overhead: "$M<memaddr>,<len>:...#nn".
+     */
+  payload_size -= strlen ("$M,:#NN");
+  payload_size -= hexnumlen (memaddr);
 
   /* Construct the packet header: "[MX]<memaddr>,<len>:".   */
 
   /* Append "[XM]".  Compute a best guess of the number of bytes
-     actually transfered. */
+     actually transfered.  */
   p = buf;
-  switch (remote_protocol_binary_download.support)
+  switch (remote_protocol_packets[PACKET_X].support)
     {
     case PACKET_ENABLE:
       *p++ = 'X';
-      /* Best guess at number of bytes that will fit. */
+      /* Best guess at number of bytes that will fit.  */
       todo = min (len, payload_size);
+      payload_size -= hexnumlen (todo);
+      todo = min (todo, payload_size);
       break;
     case PACKET_DISABLE:
       *p++ = 'M';
-      /* num bytes that will fit */
+      /* Num bytes that will fit.  */
       todo = min (len, payload_size / 2);
+      payload_size -= hexnumlen (todo);
+      todo = min (todo, payload_size / 2);
       break;
     case PACKET_SUPPORT_UNKNOWN:
       internal_error (__FILE__, __LINE__,
-                     "remote_write_bytes: bad internal state");
+                     _("remote_write_bytes: bad internal state"));
     default:
-      internal_error (__FILE__, __LINE__, "bad switch");
+      internal_error (__FILE__, __LINE__, _("bad switch"));
     }
+  if (todo <= 0)
+    internal_error (__FILE__, __LINE__,
+                   _("minumum packet size too small to write data"));
 
   /* Append "<memaddr>".  */
   memaddr = remote_address_masked (memaddr);
@@ -3565,30 +3872,13 @@ remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
 
   /* Append the packet body.  */
   payload_start = p;
-  switch (remote_protocol_binary_download.support)
+  switch (remote_protocol_packets[PACKET_X].support)
     {
     case PACKET_ENABLE:
       /* Binary mode.  Send target system values byte by byte, in
         increasing byte addresses.  Only escape certain critical
         characters.  */
-      for (nr_bytes = 0;
-          (nr_bytes < todo) && (p - payload_start) < payload_size;
-          nr_bytes++)
-       {
-         switch (myaddr[nr_bytes] & 0xff)
-           {
-           case '$':
-           case '#':
-           case 0x7d:
-             /* These must be escaped */
-             *p++ = 0x7d;
-             *p++ = (myaddr[nr_bytes] & 0xff) ^ 0x20;
-             break;
-           default:
-             *p++ = myaddr[nr_bytes] & 0xff;
-             break;
-           }
-       }
+      p += remote_escape_output (myaddr, todo, p, &nr_bytes, payload_size);
       if (nr_bytes < todo)
        {
          /* Escape chars have filled up the buffer prematurely,
@@ -3608,13 +3898,13 @@ remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
       break;
     case PACKET_SUPPORT_UNKNOWN:
       internal_error (__FILE__, __LINE__,
-                     "remote_write_bytes: bad internal state");
+                     _("remote_write_bytes: bad internal state"));
     default:
-      internal_error (__FILE__, __LINE__, "bad switch");
+      internal_error (__FILE__, __LINE__, _("bad switch"));
     }
 
   putpkt_binary (buf, (int) (p - buf));
-  getpkt (buf, sizeof_buf, 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
   if (buf[0] == 'E')
     {
@@ -3626,8 +3916,8 @@ remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
       return 0;
     }
 
-  /* Return NR_BYTES, not TODO, in case escape chars caused us to send fewer
-     bytes than we'd planned.  */
+  /* Return NR_BYTES, not TODO, in case escape chars caused us to send
+     fewer bytes than we'd planned.  */
   return nr_bytes;
 }
 
@@ -3644,20 +3934,20 @@ remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len)
    Instead it should read a single packet worth of data and then
    return the byte size of that packet to the caller.  The caller (its
    caller and its callers caller ;-) already contains code for
-   handling partial reads. */
+   handling partial reads.  */
 
 int
-remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
+remote_read_bytes (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
 {
+  struct remote_state *rs = get_remote_state ();
   char *buf;
-  int max_buf_size;            /* Max size of packet output buffer */
-  long sizeof_buf;
+  int max_buf_size;            /* Max size of packet output buffer.  */
   int origlen;
 
-  /* Create a buffer big enough for this packet. */
   max_buf_size = get_memory_read_packet_size ();
-  sizeof_buf = max_buf_size + 1; /* Space for trailing NUL */
-  buf = alloca (sizeof_buf);
+  /* The packet buffer will be large enough for the payload;
+     get_memory_packet_size ensures this.  */
+  buf = rs->buf;
 
   origlen = len;
   while (len > 0)
@@ -3679,16 +3969,17 @@ remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
       *p = '\0';
 
       putpkt (buf);
-      getpkt (buf, sizeof_buf, 0);
+      getpkt (&rs->buf, &rs->buf_size, 0);
 
       if (buf[0] == 'E'
          && isxdigit (buf[1]) && isxdigit (buf[2])
          && buf[3] == '\0')
        {
-         /* There is no correspondance between what the remote protocol uses
-            for errors and errno codes.  We would like a cleaner way of
-            representing errors (big enough to include errno codes, bfd_error
-            codes, and others).  But for now just return EIO.  */
+         /* There is no correspondance between what the remote
+            protocol uses for errors and errno codes.  We would like
+            a cleaner way of representing errors (big enough to
+            include errno codes, bfd_error codes, and others).  But
+            for now just return EIO.  */
          errno = EIO;
          return 0;
        }
@@ -3700,7 +3991,7 @@ remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
       if ((i = hex2bin (p, myaddr, todo)) < todo)
        {
          /* Reply is short.  This means that we were able to read
-            only part of what we wanted to. */
+            only part of what we wanted to.  */
          return i + (origlen - len);
        }
       myaddr += todo;
@@ -3711,12 +4002,12 @@ remote_read_bytes (CORE_ADDR memaddr, char *myaddr, int len)
 }
 \f
 /* Read or write LEN bytes from inferior memory at MEMADDR,
-   transferring to or from debugger address BUFFER.  Write to inferior if
-   SHOULD_WRITE is nonzero.  Returns length of data written or read; 0
-   for error.  TARGET is unused.  */
+   transferring to or from debugger address BUFFER.  Write to inferior
+   if SHOULD_WRITE is nonzero.  Returns length of data written or
+   read; 0 for error.  TARGET is unused.  */
 
 static int
-remote_xfer_memory (CORE_ADDR mem_addr, char *buffer, int mem_len,
+remote_xfer_memory (CORE_ADDR mem_addr, gdb_byte *buffer, int mem_len,
                    int should_write, struct mem_attrib *attrib,
                    struct target_ops *target)
 {
@@ -3725,7 +4016,8 @@ remote_xfer_memory (CORE_ADDR mem_addr, char *buffer, int mem_len,
   int res;
 
   /* Should this be the selected frame?  */
-  gdbarch_remote_translate_xfer_address (current_gdbarch, current_regcache,
+  gdbarch_remote_translate_xfer_address (current_gdbarch, 
+                                        current_regcache,
                                         mem_addr, mem_len,
                                         &targ_addr, &targ_len);
   if (targ_len <= 0)
@@ -3748,7 +4040,8 @@ remote_files_info (struct target_ops *ignore)
 /* Stuff for dealing with the packets which are part of this protocol.
    See comment at top of file for details.  */
 
-/* Read a single character from the remote end, masking it down to 7 bits. */
+/* Read a single character from the remote end, masking it down to 7
+   bits.  */
 
 static int
 readchar (int timeout)
@@ -3764,10 +4057,10 @@ readchar (int timeout)
     {
     case SERIAL_EOF:
       target_mourn_inferior ();
-      error ("Remote connection closed");
+      error (_("Remote connection closed"));
       /* no return */
     case SERIAL_ERROR:
-      perror_with_name ("Remote communication error");
+      perror_with_name (_("Remote communication error"));
       /* no return */
     case SERIAL_TIMEOUT:
       break;
@@ -3775,18 +4068,20 @@ readchar (int timeout)
   return ch;
 }
 
-/* Send the command in BUF to the remote machine, and read the reply
-   into BUF.  Report an error if we get an error reply.  */
+/* Send the command in *BUF to the remote machine, and read the reply
+   into *BUF.  Report an error if we get an error reply.  Resize
+   *BUF using xrealloc if necessary to hold the result, and update
+   *SIZEOF_BUF.  */
 
 static void
-remote_send (char *buf,
-            long sizeof_buf)
+remote_send (char **buf,
+            long *sizeof_buf)
 {
-  putpkt (buf);
+  putpkt (*buf);
   getpkt (buf, sizeof_buf, 0);
 
-  if (buf[0] == 'E')
-    error ("Remote failure reply: %s", buf);
+  if ((*buf)[0] == 'E')
+    error (_("Remote failure reply: %s"), *buf);
 }
 
 /* Display a null-terminated packet on stdout, for debugging, using C
@@ -3807,19 +4102,17 @@ putpkt (char *buf)
 }
 
 /* Send a packet to the remote machine, with error checking.  The data
-   of the packet is in BUF.  The string in BUF can be at most  (rs->remote_packet_size) - 5
-   to account for the $, # and checksum, and for a possible /0 if we are
-   debugging (remote_debug) and want to print the sent packet as a string */
+   of the packet is in BUF.  The string in BUF can be at most
+   get_remote_packet_size () - 5 to account for the $, # and checksum,
+   and for a possible /0 if we are debugging (remote_debug) and want
+   to print the sent packet as a string.  */
 
 static int
 putpkt_binary (char *buf, int cnt)
 {
-  struct remote_state *rs = get_remote_state ();
   int i;
   unsigned char csum = 0;
   char *buf2 = alloca (cnt + 6);
-  long sizeof_junkbuf = (rs->remote_packet_size);
-  char *junkbuf = alloca (sizeof_junkbuf);
 
   int ch;
   int tcount = 0;
@@ -3855,9 +4148,9 @@ putpkt_binary (char *buf, int cnt)
          gdb_flush (gdb_stdlog);
        }
       if (serial_write (remote_desc, buf2, p - buf2))
-       perror_with_name ("putpkt: write failed");
+       perror_with_name (_("putpkt: write failed"));
 
-      /* read until either a timeout occurs (-2) or '+' is read */
+      /* Read until either a timeout occurs (-2) or '+' is read.  */
       while (1)
        {
          ch = readchar (remote_timeout);
@@ -3891,15 +4184,19 @@ putpkt_binary (char *buf, int cnt)
              tcount++;
              if (tcount > 3)
                return 0;
-             break;            /* Retransmit buffer */
+             break;            /* Retransmit buffer */
            case '$':
              {
                if (remote_debug)
-                 fprintf_unfiltered (gdb_stdlog, "Packet instead of Ack, ignoring it\n");
-               /* It's probably an old response, and we're out of sync.
-                  Just gobble up the packet and ignore it.  */
-               read_frame (junkbuf, sizeof_junkbuf);
-               continue;       /* Now, go look for + */
+                 fprintf_unfiltered (gdb_stdlog, 
+                                     "Packet instead of Ack, ignoring it\n");
+               /* It's probably an old response sent because an ACK
+                  was lost.  Gobble up the packet and ack it so it
+                  doesn't get retransmitted when we resend this
+                  packet.  */
+               skip_frame ();
+               serial_write (remote_desc, "+", 1);
+               continue;       /* Now, go look for +.  */
              }
            default:
              if (remote_debug)
@@ -3913,7 +4210,7 @@ putpkt_binary (char *buf, int cnt)
                }
              continue;
            }
-         break;                /* Here to retransmit */
+         break;                /* Here to retransmit */
        }
 
 #if 0
@@ -3931,29 +4228,65 @@ putpkt_binary (char *buf, int cnt)
     }
 }
 
+/* Come here after finding the start of a frame when we expected an
+   ack.  Do our best to discard the rest of this packet.  */
+
+static void
+skip_frame (void)
+{
+  int c;
+
+  while (1)
+    {
+      c = readchar (remote_timeout);
+      switch (c)
+       {
+       case SERIAL_TIMEOUT:
+         /* Nothing we can do.  */
+         return;
+       case '#':
+         /* Discard the two bytes of checksum and stop.  */
+         c = readchar (remote_timeout);
+         if (c >= 0)
+           c = readchar (remote_timeout);
+
+         return;
+       case '*':               /* Run length encoding.  */
+         /* Discard the repeat count.  */
+         c = readchar (remote_timeout);
+         if (c < 0)
+           return;
+         break;
+       default:
+         /* A regular character.  */
+         break;
+       }
+    }
+}
+
 /* Come here after finding the start of the frame.  Collect the rest
-   into BUF, verifying the checksum, length, and handling run-length
-   compression.  No more than sizeof_buf-1 characters are read so that
-   the buffer can be NUL terminated.
+   into *BUF, verifying the checksum, length, and handling run-length
+   compression.  NUL terminate the buffer.  If there is not enough room,
+   expand *BUF using xrealloc.
 
    Returns -1 on error, number of characters in buffer (ignoring the
    trailing NULL) on success. (could be extended to return one of the
-   SERIAL status indications). */
+   SERIAL status indications).  */
 
 static long
-read_frame (char *buf,
-           long sizeof_buf)
+read_frame (char **buf_p,
+           long *sizeof_buf)
 {
   unsigned char csum;
   long bc;
   int c;
+  char *buf = *buf_p;
 
   csum = 0;
   bc = 0;
 
   while (1)
     {
-      /* ASSERT (bc < sizeof_buf - 1) - space for trailing NUL */
       c = readchar (remote_timeout);
       switch (c)
        {
@@ -3965,7 +4298,7 @@ read_frame (char *buf,
          if (remote_debug)
            fputs_filtered ("Saw new packet start in middle of old one\n",
                            gdb_stdlog);
-         return -1;            /* Start a new packet, count retries */
+         return -1;            /* Start a new packet, count retries */
        case '#':
          {
            unsigned char pktcsum;
@@ -3981,13 +4314,15 @@ read_frame (char *buf,
            if (check_0 == SERIAL_TIMEOUT || check_1 == SERIAL_TIMEOUT)
              {
                if (remote_debug)
-                 fputs_filtered ("Timeout in checksum, retrying\n", gdb_stdlog);
+                 fputs_filtered ("Timeout in checksum, retrying\n", 
+                                 gdb_stdlog);
                return -1;
              }
            else if (check_0 < 0 || check_1 < 0)
              {
                if (remote_debug)
-                 fputs_filtered ("Communication error in checksum\n", gdb_stdlog);
+                 fputs_filtered ("Communication error in checksum\n", 
+                                 gdb_stdlog);
                return -1;
              }
 
@@ -4004,64 +4339,67 @@ read_frame (char *buf,
                fputs_filtered ("\n", gdb_stdlog);
              }
            /* Number of characters in buffer ignoring trailing
-               NUL. */
+               NULL.  */
            return -1;
          }
-       case '*':               /* Run length encoding */
+       case '*':               /* Run length encoding */
           {
            int repeat;
            csum += c;
 
            c = readchar (remote_timeout);
            csum += c;
-           repeat = c - ' ' + 3;       /* Compute repeat count */
+           repeat = c - ' ' + 3;       /* Compute repeat count */
 
-           /* The character before ``*'' is repeated. */
+           /* The character before ``*'' is repeated.  */
 
-           if (repeat > 0 && repeat <= 255
-               && bc > 0
-                && bc + repeat - 1 < sizeof_buf - 1)
+           if (repeat > 0 && repeat <= 255 && bc > 0)
              {
+               if (bc + repeat - 1 >= *sizeof_buf - 1)
+                 {
+                   /* Make some more room in the buffer.  */
+                   *sizeof_buf += repeat;
+                   *buf_p = xrealloc (*buf_p, *sizeof_buf);
+                   buf = *buf_p;
+                 }
+
                memset (&buf[bc], buf[bc - 1], repeat);
                bc += repeat;
                continue;
              }
 
            buf[bc] = '\0';
-           printf_filtered ("Repeat count %d too large for buffer: ", repeat);
-           puts_filtered (buf);
-           puts_filtered ("\n");
+           printf_filtered (_("Invalid run length encoding: %s\n"), buf);
            return -1;
          }
        default:
-         if (bc sizeof_buf - 1)
+         if (bc >= *sizeof_buf - 1)
            {
-             buf[bc++] = c;
-             csum += c;
-             continue;
+             /* Make some more room in the buffer.  */
+             *sizeof_buf *= 2;
+             *buf_p = xrealloc (*buf_p, *sizeof_buf);
+             buf = *buf_p;
            }
 
-         buf[bc] = '\0';
-         puts_filtered ("Remote packet too long: ");
-         puts_filtered (buf);
-         puts_filtered ("\n");
-
-         return -1;
+         buf[bc++] = c;
+         csum += c;
+         continue;
        }
     }
 }
 
 /* Read a packet from the remote machine, with error checking, and
-   store it in BUF.  If FOREVER, wait forever rather than timing out;
-   this is used (in synchronous mode) to wait for a target that is is
-   executing user code to stop.  */
+   store it in *BUF.  Resize *BUF using xrealloc if necessary to hold
+   the result, and update *SIZEOF_BUF.  If FOREVER, wait forever
+   rather than timing out; this is used (in synchronous mode) to wait
+   for a target that is is executing user code to stop.  */
 /* FIXME: ezannoni 2000-02-01 this wrapper is necessary so that we
    don't have to change all the calls to getpkt to deal with the
    return value, because at the moment I don't know what the right
-   thing to do it for those. */
+   thing to do it for those.  */
 void
-getpkt (char *buf,
-       long sizeof_buf,
+getpkt (char **buf,
+       long *sizeof_buf,
        int forever)
 {
   int timed_out;
@@ -4071,22 +4409,21 @@ getpkt (char *buf,
 
 
 /* Read a packet from the remote machine, with error checking, and
-   store it in BUF.  If FOREVER, wait forever rather than timing out;
-   this is used (in synchronous mode) to wait for a target that is is
-   executing user code to stop. If FOREVER == 0, this function is
-   allowed to time out gracefully and return an indication of this to
-   the caller. */
+   store it in *BUF.  Resize *BUF using xrealloc if necessary to hold
+   the result, and update *SIZEOF_BUF.  If FOREVER, wait forever
+   rather than timing out; this is used (in synchronous mode) to wait
+   for a target that is is executing user code to stop.  If FOREVER ==
+   0, this function is allowed to time out gracefully and return an
+   indication of this to the caller.  */
 static int
-getpkt_sane (char *buf,
-       long sizeof_buf,
-       int forever)
+getpkt_sane (char **buf, long *sizeof_buf, int forever)
 {
   int c;
   int tries;
   int timeout;
   int val;
 
-  strcpy (buf, "timeout");
+  strcpy (*buf, "timeout");
 
   if (forever)
     {
@@ -4101,12 +4438,14 @@ getpkt_sane (char *buf,
   for (tries = 1; tries <= MAX_TRIES; tries++)
     {
       /* This can loop forever if the remote side sends us characters
-         continuously, but if it pauses, we'll get a zero from readchar
-         because of timeout.  Then we'll count that as a retry.  */
+         continuously, but if it pauses, we'll get a zero from
+         readchar because of timeout.  Then we'll count that as a
+         retry.  */
 
-      /* Note that we will only wait forever prior to the start of a packet.
-         After that, we expect characters to arrive at a brisk pace.  They
-         should show up within remote_timeout intervals.  */
+      /* Note that we will only wait forever prior to the start of a
+         packet.  After that, we expect characters to arrive at a
+         brisk pace.  They should show up within remote_timeout
+         intervals.  */
 
       do
        {
@@ -4114,11 +4453,11 @@ getpkt_sane (char *buf,
 
          if (c == SERIAL_TIMEOUT)
            {
-             if (forever)      /* Watchdog went off?  Kill the target. */
+             if (forever)      /* Watchdog went off?  Kill the target.  */
                {
                  QUIT;
                  target_mourn_inferior ();
-                 error ("Watchdog has expired.  Target detached.\n");
+                 error (_("Watchdog has expired.  Target detached."));
                }
              if (remote_debug)
                fputs_filtered ("Timed out.\n", gdb_stdlog);
@@ -4136,7 +4475,7 @@ getpkt_sane (char *buf,
          if (remote_debug)
            {
              fprintf_unfiltered (gdb_stdlog, "Packet received: ");
-             fputstr_unfiltered (buf, 0, gdb_stdlog);
+             fputstr_unfiltered (*buf, 0, gdb_stdlog);
              fprintf_unfiltered (gdb_stdlog, "\n");
            }
          serial_write (remote_desc, "+", 1);
@@ -4148,9 +4487,10 @@ getpkt_sane (char *buf,
       serial_write (remote_desc, "-", 1);
     }
 
-  /* We have tried hard enough, and just can't receive the packet.  Give up. */
+  /* We have tried hard enough, and just can't receive the packet.  
+     Give up.  */
 
-  printf_unfiltered ("Ignoring packet error, continuing...\n");
+  printf_unfiltered (_("Ignoring packet error, continuing...\n"));
   serial_write (remote_desc, "+", 1);
   return 1;
 }
@@ -4176,11 +4516,11 @@ remote_kill (void)
   target_mourn_inferior ();
 }
 
-/* Async version of remote_kill. */
+/* Async version of remote_kill.  */
 static void
 remote_async_kill (void)
 {
-  /* Unregister the file descriptor from the event loop. */
+  /* Unregister the file descriptor from the event loop.  */
   if (target_is_async_p ())
     serial_async (remote_desc, NULL, 0);
 
@@ -4193,8 +4533,8 @@ remote_async_kill (void)
       return;
     }
 
-  /* Use catch_errors so the user can quit from gdb even when we aren't on
-     speaking terms with the remote system.  */
+  /* Use catch_errors so the user can quit from gdb even when we
+     aren't on speaking terms with the remote system.  */
   catch_errors ((catch_errors_ftype *) putpkt, "k", "", RETURN_MASK_ERROR);
 
   /* Don't wait for it to die.  I'm not really sure it matters whether
@@ -4243,8 +4583,8 @@ remote_mourn_1 (struct target_ops *target)
    we're debugging, arguments and an environment.  */
 
 static void
-extended_remote_create_inferior (char *exec_file, char *args, char **env,
-                                int from_tty)
+extended_remote_create_inferior (char *exec_file, char *args,
+                                char **env, int from_tty)
 {
   /* Rip out the breakpoints; we'll reinsert them after restarting
      the remote server.  */
@@ -4259,23 +4599,20 @@ extended_remote_create_inferior (char *exec_file, char *args, char **env,
 
   /* Clean up from the last time we were running.  */
   clear_proceed_status ();
-
-  /* Let the remote process run.  */
-  proceed (-1, TARGET_SIGNAL_0, 0);
 }
 
-/* Async version of extended_remote_create_inferior. */
+/* Async version of extended_remote_create_inferior.  */
 static void
-extended_remote_async_create_inferior (char *exec_file, char *args, char **env,
-                                      int from_tty)
+extended_remote_async_create_inferior (char *exec_file, char *args,
+                                      char **env, int from_tty)
 {
   /* Rip out the breakpoints; we'll reinsert them after restarting
      the remote server.  */
   remove_breakpoints ();
 
   /* If running asynchronously, register the target file descriptor
-     with the event loop. */
-  if (event_loop_p && target_can_async_p ())
+     with the event loop.  */
+  if (target_can_async_p ())
     target_async (inferior_event_handler, 0);
 
   /* Now restart the remote server.  */
@@ -4287,9 +4624,6 @@ extended_remote_async_create_inferior (char *exec_file, char *args, char **env,
 
   /* Clean up from the last time we were running.  */
   clear_proceed_status ();
-
-  /* Let the remote process run.  */
-  proceed (-1, TARGET_SIGNAL_0, 0);
 }
 \f
 
@@ -4322,45 +4656,40 @@ static unsigned char little_break_insn[] = DEPRECATED_LITTLE_REMOTE_BREAKPOINT;
 
 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
 
-/* Insert a breakpoint on targets that don't have any better
-   breakpoint support.  We read the contents of the target location
-   and stash it, then overwrite it with a breakpoint instruction.
-   ADDR is the target location in the target machine.  CONTENTS_CACHE
-   is a pointer to memory allocated for saving the target contents.
-   It is guaranteed by the caller to be long enough to save the number
-   of bytes returned by BREAKPOINT_FROM_PC.  */
+/* Insert a breakpoint.  On targets that have software breakpoint
+   support, we ask the remote target to do the work; on targets
+   which don't, we insert a traditional memory breakpoint.  */
 
 static int
-remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache)
+remote_insert_breakpoint (struct bp_target_info *bp_tgt)
 {
+  CORE_ADDR addr = bp_tgt->placed_address;
   struct remote_state *rs = get_remote_state ();
 #ifdef DEPRECATED_REMOTE_BREAKPOINT
   int val;
 #endif
-  int bp_size;
 
   /* Try the "Z" s/w breakpoint packet if it is not already disabled.
      If it succeeds, then set the support to PACKET_ENABLE.  If it
      fails, and the user has explicitly requested the Z support then
-     report an error, otherwise, mark it disabled and go on. */
+     report an error, otherwise, mark it disabled and go on.  */
 
-  if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
+  if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
     {
-      char *buf = alloca (rs->remote_packet_size);
-      char *p = buf;
+      char *p = rs->buf;
 
-      addr = remote_address_masked (addr);
       *(p++) = 'Z';
       *(p++) = '0';
       *(p++) = ',';
-      p += hexnumstr (p, (ULONGEST) addr);
-      BREAKPOINT_FROM_PC (&addr, &bp_size);
-      sprintf (p, ",%d", bp_size);
+      BREAKPOINT_FROM_PC (&bp_tgt->placed_address, &bp_tgt->placed_size);
+      addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
+      p += hexnumstr (p, addr);
+      sprintf (p, ",%d", bp_tgt->placed_size);
 
-      putpkt (buf);
-      getpkt (buf, (rs->remote_packet_size), 0);
+      putpkt (rs->buf);
+      getpkt (&rs->buf, &rs->buf_size, 0);
 
-      switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_SOFTWARE_BP]))
+      switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0]))
        {
        case PACKET_ERROR:
          return -1;
@@ -4372,7 +4701,8 @@ remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache)
     }
 
 #ifdef DEPRECATED_REMOTE_BREAKPOINT
-  val = target_read_memory (addr, contents_cache, sizeof big_break_insn);
+  bp_tgt->placed_size = bp_tgt->shadow_len = sizeof big_break_insn;
+  val = target_read_memory (addr, bp_tgt->shadow_contents, bp_tgt->shadow_len);
 
   if (val == 0)
     {
@@ -4386,40 +4716,40 @@ remote_insert_breakpoint (CORE_ADDR addr, char *contents_cache)
 
   return val;
 #else
-  return memory_insert_breakpoint (addr, contents_cache);
+  return memory_insert_breakpoint (bp_tgt);
 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
 }
 
 static int
-remote_remove_breakpoint (CORE_ADDR addr, char *contents_cache)
+remote_remove_breakpoint (struct bp_target_info *bp_tgt)
 {
+  CORE_ADDR addr = bp_tgt->placed_address;
   struct remote_state *rs = get_remote_state ();
   int bp_size;
 
-  if (remote_protocol_Z[Z_PACKET_SOFTWARE_BP].support != PACKET_DISABLE)
+  if (remote_protocol_packets[PACKET_Z0].support != PACKET_DISABLE)
     {
-      char *buf = alloca (rs->remote_packet_size);
-      char *p = buf;
+      char *p = rs->buf;
 
       *(p++) = 'z';
       *(p++) = '0';
       *(p++) = ',';
 
-      addr = remote_address_masked (addr);
-      p += hexnumstr (p, (ULONGEST) addr);
-      BREAKPOINT_FROM_PC (&addr, &bp_size);
-      sprintf (p, ",%d", bp_size);
+      addr = (ULONGEST) remote_address_masked (bp_tgt->placed_address);
+      p += hexnumstr (p, addr);
+      sprintf (p, ",%d", bp_tgt->placed_size);
 
-      putpkt (buf);
-      getpkt (buf, (rs->remote_packet_size), 0);
+      putpkt (rs->buf);
+      getpkt (&rs->buf, &rs->buf_size, 0);
 
-      return (buf[0] == 'E');
+      return (rs->buf[0] == 'E');
     }
 
 #ifdef DEPRECATED_REMOTE_BREAKPOINT
-  return target_write_memory (addr, contents_cache, sizeof big_break_insn);
+  return target_write_memory (bp_tgt->placed_address, bp_tgt->shadow_contents,
+                             bp_tgt->shadow_len);
 #else
-  return memory_remove_breakpoint (addr, contents_cache);
+  return memory_remove_breakpoint (bp_tgt);
 #endif /* DEPRECATED_REMOTE_BREAKPOINT */
 }
 
@@ -4429,17 +4759,17 @@ watchpoint_to_Z_packet (int type)
   switch (type)
     {
     case hw_write:
-      return 2;
+      return Z_PACKET_WRITE_WP;
       break;
     case hw_read:
-      return 3;
+      return Z_PACKET_READ_WP;
       break;
     case hw_access:
-      return 4;
+      return Z_PACKET_ACCESS_WP;
       break;
     default:
       internal_error (__FILE__, __LINE__,
-                     "hw_bp_to_z: bad watchpoint type %d", type);
+                     _("hw_bp_to_z: bad watchpoint type %d"), type);
     }
 }
 
@@ -4447,25 +4777,22 @@ static int
 remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
   char *p;
   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
 
-  if (remote_protocol_Z[packet].support == PACKET_DISABLE)
-    error ("Can't set hardware watchpoints without the '%s' (%s) packet\n",
-          remote_protocol_Z[packet].name,
-          remote_protocol_Z[packet].title);
+  if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
+    return -1;
 
-  sprintf (buf, "Z%x,", packet);
-  p = strchr (buf, '\0');
+  sprintf (rs->buf, "Z%x,", packet);
+  p = strchr (rs->buf, '\0');
   addr = remote_address_masked (addr);
   p += hexnumstr (p, (ULONGEST) addr);
   sprintf (p, ",%x", len);
 
-  putpkt (buf);
-  getpkt (buf, (rs->remote_packet_size), 0);
+  putpkt (rs->buf);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
-  switch (packet_ok (buf, &remote_protocol_Z[packet]))
+  switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
     {
     case PACKET_ERROR:
     case PACKET_UNKNOWN:
@@ -4474,7 +4801,7 @@ remote_insert_watchpoint (CORE_ADDR addr, int len, int type)
       return 0;
     }
   internal_error (__FILE__, __LINE__,
-                 "remote_insert_watchpoint: reached end of function");
+                 _("remote_insert_watchpoint: reached end of function"));
 }
 
 
@@ -4482,24 +4809,21 @@ static int
 remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
   char *p;
   enum Z_packet_type packet = watchpoint_to_Z_packet (type);
 
-  if (remote_protocol_Z[packet].support == PACKET_DISABLE)
-    error ("Can't clear hardware watchpoints without the '%s' (%s) packet\n",
-          remote_protocol_Z[packet].name,
-          remote_protocol_Z[packet].title);
+  if (remote_protocol_packets[PACKET_Z0 + packet].support == PACKET_DISABLE)
+    return -1;
 
-  sprintf (buf, "z%x,", packet);
-  p = strchr (buf, '\0');
+  sprintf (rs->buf, "z%x,", packet);
+  p = strchr (rs->buf, '\0');
   addr = remote_address_masked (addr);
   p += hexnumstr (p, (ULONGEST) addr);
   sprintf (p, ",%x", len);
-  putpkt (buf);
-  getpkt (buf, (rs->remote_packet_size), 0);
+  putpkt (rs->buf);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
-  switch (packet_ok (buf, &remote_protocol_Z[packet]))
+  switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z0 + packet]))
     {
     case PACKET_ERROR:
     case PACKET_UNKNOWN:
@@ -4508,7 +4832,7 @@ remote_remove_watchpoint (CORE_ADDR addr, int len, int type)
       return 0;
     }
   internal_error (__FILE__, __LINE__,
-                 "remote_remove_watchpoint: reached end of function");
+                 _("remote_remove_watchpoint: reached end of function"));
 }
 
 
@@ -4549,46 +4873,48 @@ remote_stopped_by_watchpoint (void)
 
 extern int stepped_after_stopped_by_watchpoint;
 
-static CORE_ADDR
-remote_stopped_data_address (void)
+static int
+remote_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p)
 {
+  int rc = 0;
   if (remote_stopped_by_watchpoint ()
       || stepped_after_stopped_by_watchpoint)
-    return remote_watch_data_address;
-  return (CORE_ADDR)0;
+    {
+      *addr_p = remote_watch_data_address;
+      rc = 1;
+    }
+
+  return rc;
 }
 
 
 static int
-remote_insert_hw_breakpoint (CORE_ADDR addr, char *shadow)
+remote_insert_hw_breakpoint (struct bp_target_info *bp_tgt)
 {
-  int len = 0;
+  CORE_ADDR addr;
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
-  char *p = buf;
+  char *p = rs->buf;
 
   /* The length field should be set to the size of a breakpoint
-     instruction.  */
-
-  BREAKPOINT_FROM_PC (&addr, &len);
+     instruction, even though we aren't inserting one ourselves.  */
 
-  if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
-    error ("Can't set hardware breakpoint without the '%s' (%s) packet\n",
-          remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
-          remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
+  BREAKPOINT_FROM_PC (&bp_tgt->placed_address, &bp_tgt->placed_size);
 
+  if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
+    return -1;
+  
   *(p++) = 'Z';
   *(p++) = '1';
   *(p++) = ',';
 
-  addr = remote_address_masked (addr);
+  addr = remote_address_masked (bp_tgt->placed_address);
   p += hexnumstr (p, (ULONGEST) addr);
-  sprintf (p, ",%x", len);
+  sprintf (p, ",%x", bp_tgt->placed_size);
 
-  putpkt (buf);
-  getpkt (buf, (rs->remote_packet_size), 0);
+  putpkt (rs->buf);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
-  switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
+  switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
     {
     case PACKET_ERROR:
     case PACKET_UNKNOWN:
@@ -4597,40 +4923,32 @@ remote_insert_hw_breakpoint (CORE_ADDR addr, char *shadow)
       return 0;
     }
   internal_error (__FILE__, __LINE__,
-                 "remote_insert_hw_breakpoint: reached end of function");
+                 _("remote_insert_hw_breakpoint: reached end of function"));
 }
 
 
 static int
-remote_remove_hw_breakpoint (CORE_ADDR addr, char *shadow)
+remote_remove_hw_breakpoint (struct bp_target_info *bp_tgt)
 {
-  int len;
+  CORE_ADDR addr;
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
-  char *p = buf;
-
-  /* The length field should be set to the size of a breakpoint
-     instruction.  */
+  char *p = rs->buf;
 
-  BREAKPOINT_FROM_PC (&addr, &len);
-
-  if (remote_protocol_Z[Z_PACKET_HARDWARE_BP].support == PACKET_DISABLE)
-    error ("Can't clear hardware breakpoint without the '%s' (%s) packet\n",
-          remote_protocol_Z[Z_PACKET_HARDWARE_BP].name,
-          remote_protocol_Z[Z_PACKET_HARDWARE_BP].title);
+  if (remote_protocol_packets[PACKET_Z1].support == PACKET_DISABLE)
+    return -1;
 
   *(p++) = 'z';
   *(p++) = '1';
   *(p++) = ',';
 
-  addr = remote_address_masked (addr);
+  addr = remote_address_masked (bp_tgt->placed_address);
   p += hexnumstr (p, (ULONGEST) addr);
-  sprintf (p, ",%x", len);
+  sprintf (p, ",%x", bp_tgt->placed_size);
 
-  putpkt(buf);
-  getpkt (buf, (rs->remote_packet_size), 0);
+  putpkt (rs->buf);
+  getpkt (&rs->buf, &rs->buf_size, 0);
 
-  switch (packet_ok (buf, &remote_protocol_Z[Z_PACKET_HARDWARE_BP]))
+  switch (packet_ok (rs->buf, &remote_protocol_packets[PACKET_Z1]))
     {
     case PACKET_ERROR:
     case PACKET_UNKNOWN:
@@ -4639,7 +4957,7 @@ remote_remove_hw_breakpoint (CORE_ADDR addr, char *shadow)
       return 0;
     }
   internal_error (__FILE__, __LINE__,
-                 "remote_remove_hw_breakpoint: reached end of function");
+                 _("remote_remove_hw_breakpoint: reached end of function"));
 }
 
 /* Some targets are only capable of doing downloads, and afterwards
@@ -4655,11 +4973,11 @@ remote_remove_hw_breakpoint (CORE_ADDR addr, char *shadow)
 void
 push_remote_target (char *name, int from_tty)
 {
-  printf_filtered ("Switching to remote protocol\n");
+  printf_filtered (_("Switching to remote protocol\n"));
   remote_open (name, from_tty);
 }
 
-/* Table used by the crc32 function to calcuate the checksum. */
+/* Table used by the crc32 function to calcuate the checksum.  */
 
 static unsigned long crc32_table[256] =
 {0, 0};
@@ -4669,7 +4987,7 @@ crc32 (unsigned char *buf, int len, unsigned int crc)
 {
   if (!crc32_table[1])
     {
-      /* Initialize the CRC table and the decoding table. */
+      /* Initialize the CRC table and the decoding table.  */
       int i, j;
       unsigned int c;
 
@@ -4699,7 +5017,7 @@ crc32 (unsigned char *buf, int len, unsigned int crc)
 /* FIXME: cagney/1999-10-26: This command should be broken down into a
    target method (target verify memory) and generic version of the
    actual command.  This will allow other high-level code (especially
-   generic_load()) to make use of this target functionality. */
+   generic_load()) to make use of this target functionality.  */
 
 static void
 compare_sections_command (char *args, int from_tty)
@@ -4712,17 +5030,16 @@ compare_sections_command (char *args, int from_tty)
   char *tmp;
   char *sectdata;
   const char *sectname;
-  char *buf = alloca (rs->remote_packet_size);
   bfd_size_type size;
   bfd_vma lma;
   int matched = 0;
   int mismatched = 0;
 
   if (!exec_bfd)
-    error ("command cannot be used without an exec file");
+    error (_("command cannot be used without an exec file"));
   if (!current_target.to_shortname ||
       strcmp (current_target.to_shortname, "remote") != 0)
-    error ("command can only be used with remote target");
+    error (_("command can only be used with remote target"));
 
   for (s = exec_bfd->sections; s; s = s->next)
     {
@@ -4739,24 +5056,26 @@ compare_sections_command (char *args, int from_tty)
 
       matched = 1;             /* do this section */
       lma = s->lma;
-      /* FIXME: assumes lma can fit into long */
-      sprintf (buf, "qCRC:%lx,%lx", (long) lma, (long) size);
-      putpkt (buf);
+      /* FIXME: assumes lma can fit into long.  */
+      xsnprintf (rs->buf, get_remote_packet_size (), "qCRC:%lx,%lx",
+                (long) lma, (long) size);
+      putpkt (rs->buf);
 
-      /* be clever; compute the host_crc before waiting for target reply */
+      /* Be clever; compute the host_crc before waiting for target
+        reply.  */
       sectdata = xmalloc (size);
       old_chain = make_cleanup (xfree, sectdata);
       bfd_get_section_contents (exec_bfd, s, sectdata, 0, size);
       host_crc = crc32 ((unsigned char *) sectdata, size, 0xffffffff);
 
-      getpkt (buf, (rs->remote_packet_size), 0);
-      if (buf[0] == 'E')
-       error ("target memory fault, section %s, range 0x%s -- 0x%s",
+      getpkt (&rs->buf, &rs->buf_size, 0);
+      if (rs->buf[0] == 'E')
+       error (_("target memory fault, section %s, range 0x%s -- 0x%s"),
               sectname, paddr (lma), paddr (lma + size));
-      if (buf[0] != 'C')
-       error ("remote target does not support this operation");
+      if (rs->buf[0] != 'C')
+       error (_("remote target does not support this operation"));
 
-      for (target_crc = 0, tmp = &buf[1]; *tmp; tmp++)
+      for (target_crc = 0, tmp = &rs->buf[1]; *tmp; tmp++)
        target_crc = target_crc * 16 + fromhex (*tmp);
 
       printf_filtered ("Section %s, range 0x%s -- 0x%s: ",
@@ -4772,23 +5091,47 @@ compare_sections_command (char *args, int from_tty)
       do_cleanups (old_chain);
     }
   if (mismatched > 0)
-    warning ("One or more sections of the remote executable does not match\n\
-the loaded file\n");
+    warning (_("One or more sections of the remote executable does not match\n\
+the loaded file\n"));
   if (args && !matched)
-    printf_filtered ("No loaded section named '%s'.\n", args);
+    printf_filtered (_("No loaded section named '%s'.\n"), args);
 }
 
 static LONGEST
 remote_xfer_partial (struct target_ops *ops, enum target_object object,
-                    const char *annex, void *readbuf, const void *writebuf,
-                    ULONGEST offset, LONGEST len)
+                    const char *annex, gdb_byte *readbuf,
+                    const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
 {
   struct remote_state *rs = get_remote_state ();
   int i;
-  char *buf2 = alloca (rs->remote_packet_size);
-  char *p2 = &buf2[0];
+  char *p2;
   char query_type;
 
+  /* Handle memory using remote_xfer_memory.  */
+  if (object == TARGET_OBJECT_MEMORY)
+    {
+      int xfered;
+      errno = 0;
+
+      if (writebuf != NULL)
+       {
+         void *buffer = xmalloc (len);
+         struct cleanup *cleanup = make_cleanup (xfree, buffer);
+         memcpy (buffer, writebuf, len);
+         xfered = remote_xfer_memory (offset, buffer, len, 1, NULL, ops);
+         do_cleanups (cleanup);
+       }
+      else
+       xfered = remote_xfer_memory (offset, readbuf, len, 0, NULL, ops);
+
+      if (xfered > 0)
+       return xfered;
+      else if (xfered == 0 && errno == 0)
+       return 0;
+      else
+       return -1;
+    }
+
   /* Only handle reads.  */
   if (writebuf != NULL || readbuf == NULL)
     return -1;
@@ -4797,44 +5140,30 @@ remote_xfer_partial (struct target_ops *ops, enum target_object object,
      objects!!!  Instead specify new query packets.  */
   switch (object)
     {
-    case TARGET_OBJECT_KOD:
-      query_type = 'K';
-      break;
     case TARGET_OBJECT_AVR:
       query_type = 'R';
       break;
 
     case TARGET_OBJECT_AUXV:
-      if (remote_protocol_qPart_auxv.support != PACKET_DISABLE)
+      if (remote_protocol_packets[PACKET_qPart_auxv].support != PACKET_DISABLE)
        {
-         unsigned int total = 0;
-         while (len > 0)
-           {
-             LONGEST n = min ((rs->remote_packet_size - 2) / 2, len);
-             snprintf (buf2, rs->remote_packet_size,
-                       "qPart:auxv:read::%s,%s",
-                       phex_nz (offset, sizeof offset),
-                       phex_nz (n, sizeof n));
-             i = putpkt (buf2);
-             if (i < 0)
-               return total > 0 ? total : i;
-             buf2[0] = '\0';
-             getpkt (buf2, rs->remote_packet_size, 0);
-             if (packet_ok (buf2, &remote_protocol_qPart_auxv) != PACKET_OK)
-               return total > 0 ? total : -1;
-             if (buf2[0] == 'O' && buf2[1] == 'K' && buf2[2] == '\0')
-               break;          /* Got EOF indicator.  */
-             /* Got some data.  */
-             i = hex2bin (buf2, readbuf, len);
-             if (i > 0)
-               {
-                 readbuf = (void *) ((char *) readbuf + i);
-                 offset += i;
-                 len -= i;
-                 total += i;
-               }
-           }
-         return total;
+         LONGEST n = min ((get_remote_packet_size () - 2) / 2, len);
+         snprintf (rs->buf, get_remote_packet_size (),
+                   "qPart:auxv:read::%s,%s",
+                   phex_nz (offset, sizeof offset),
+                   phex_nz (n, sizeof n));
+         i = putpkt (rs->buf);
+         if (i < 0)
+           return i;
+         rs->buf[0] = '\0';
+         getpkt (&rs->buf, &rs->buf_size, 0);
+         if (packet_ok (rs->buf, &remote_protocol_packets[PACKET_qPart_auxv])
+             != PACKET_OK)
+           return -1;
+         if (strcmp (rs->buf, "OK") == 0)
+           return 0;           /* Got EOF indicator.  */
+         /* Got some data.  */
+         return hex2bin (rs->buf, readbuf, len);
        }
       return -1;
 
@@ -4845,29 +5174,31 @@ remote_xfer_partial (struct target_ops *ops, enum target_object object,
   /* Note: a zero OFFSET and LEN can be used to query the minimum
      buffer size.  */
   if (offset == 0 && len == 0)
-    return (rs->remote_packet_size);
-  /* Minimum outbuf size is (rs->remote_packet_size) - if bufsiz is
-     not large enough let the caller.  */
-  if (len < (rs->remote_packet_size))
+    return (get_remote_packet_size ());
+  /* Minimum outbuf size is get_remote_packet_size (). If LEN is not
+     large enough let the caller deal with it.  */
+  if (len < get_remote_packet_size ())
     return -1;
-  len = rs->remote_packet_size;
+  len = get_remote_packet_size ();
 
-  /* except for querying the minimum buffer size, target must be open */
+  /* Except for querying the minimum buffer size, target must be open.  */
   if (!remote_desc)
-    error ("remote query is only available after target open");
+    error (_("remote query is only available after target open"));
 
   gdb_assert (annex != NULL);
   gdb_assert (readbuf != NULL);
 
+  p2 = rs->buf;
   *p2++ = 'q';
   *p2++ = query_type;
 
-  /* we used one buffer char for the remote protocol q command and another
-     for the query type.  As the remote protocol encapsulation uses 4 chars
-     plus one extra in case we are debugging (remote_debug),
-     we have PBUFZIZ - 7 left to pack the query string */
+  /* We used one buffer char for the remote protocol q command and
+     another for the query type.  As the remote protocol encapsulation
+     uses 4 chars plus one extra in case we are debugging
+     (remote_debug), we have PBUFZIZ - 7 left to pack the query
+     string.  */
   i = 0;
-  while (annex[i] && (i < ((rs->remote_packet_size) - 8)))
+  while (annex[i] && (i < (get_remote_packet_size () - 8)))
     {
       /* Bad caller may have sent forbidden characters.  */
       gdb_assert (isprint (annex[i]) && annex[i] != '$' && annex[i] != '#');
@@ -4877,13 +5208,14 @@ remote_xfer_partial (struct target_ops *ops, enum target_object object,
   *p2 = '\0';
   gdb_assert (annex[i] == '\0');
 
-  i = putpkt (buf2);
+  i = putpkt (rs->buf);
   if (i < 0)
     return i;
 
-  getpkt (readbuf, len, 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
+  strcpy ((char *) readbuf, rs->buf);
 
-  return strlen (readbuf);
+  return strlen ((char *) readbuf);
 }
 
 static void
@@ -4891,41 +5223,40 @@ remote_rcmd (char *command,
             struct ui_file *outbuf)
 {
   struct remote_state *rs = get_remote_state ();
-  int i;
-  char *buf = alloca (rs->remote_packet_size);
+  char *buf = rs->buf;
   char *p = buf;
 
   if (!remote_desc)
-    error ("remote rcmd is only available after target open");
+    error (_("remote rcmd is only available after target open"));
 
-  /* Send a NULL command across as an empty command */
+  /* Send a NULL command across as an empty command */
   if (command == NULL)
     command = "";
 
-  /* The query prefix */
+  /* The query prefix */
   strcpy (buf, "qRcmd,");
   p = strchr (buf, '\0');
 
-  if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > (rs->remote_packet_size))
-    error ("\"monitor\" command ``%s'' is too long\n", command);
+  if ((strlen (buf) + strlen (command) * 2 + 8/*misc*/) > get_remote_packet_size ())
+    error (_("\"monitor\" command ``%s'' is too long."), command);
 
-  /* Encode the actual command */
-  bin2hex (command, p, 0);
+  /* Encode the actual command */
+  bin2hex ((gdb_byte *) command, p, 0);
 
-  if (putpkt (buf) < 0)
-    error ("Communication problem with target\n");
+  if (putpkt (rs->buf) < 0)
+    error (_("Communication problem with target."));
 
   /* get/display the response */
   while (1)
     {
-      /* XXX - see also tracepoint.c:remote_get_noisy_reply() */
+      /* XXX - see also tracepoint.c:remote_get_noisy_reply() */
       buf[0] = '\0';
-      getpkt (buf, (rs->remote_packet_size), 0);
+      getpkt (&rs->buf, &rs->buf_size, 0);
       if (buf[0] == '\0')
-       error ("Target does not support this command\n");
+       error (_("Target does not support this command."));
       if (buf[0] == 'O' && buf[1] != 'K')
        {
-         remote_console_output (buf + 1); /* 'O' message from stub */
+         remote_console_output (buf + 1); /* 'O' message from stub */
          continue;
        }
       if (strcmp (buf, "OK") == 0)
@@ -4933,7 +5264,7 @@ remote_rcmd (char *command,
       if (strlen (buf) == 3 && buf[0] == 'E'
          && isdigit (buf[1]) && isdigit (buf[2]))
        {
-         error ("Protocol error with Rcmd");
+         error (_("Protocol error with Rcmd"));
        }
       for (p = buf; p[0] != '\0' && p[1] != '\0'; p += 2)
        {
@@ -4948,27 +5279,26 @@ static void
 packet_command (char *args, int from_tty)
 {
   struct remote_state *rs = get_remote_state ();
-  char *buf = alloca (rs->remote_packet_size);
 
   if (!remote_desc)
-    error ("command can only be used with remote target");
+    error (_("command can only be used with remote target"));
 
   if (!args)
-    error ("remote-packet command requires packet text as argument");
+    error (_("remote-packet command requires packet text as argument"));
 
   puts_filtered ("sending: ");
   print_packet (args);
   puts_filtered ("\n");
   putpkt (args);
 
-  getpkt (buf, (rs->remote_packet_size), 0);
+  getpkt (&rs->buf, &rs->buf_size, 0);
   puts_filtered ("received: ");
-  print_packet (buf);
+  print_packet (rs->buf);
   puts_filtered ("\n");
 }
 
 #if 0
-/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------------- */
+/* --------- UNIT_TEST for THREAD oriented PACKETS ------------------- */
 
 static void display_thread_info (struct gdb_ext_thread_info *info);
 
@@ -4978,24 +5308,24 @@ static void threadalive_test (char *cmd, int tty);
 
 static void threadlist_test_cmd (char *cmd, int tty);
 
-int get_and_display_threadinfo (threadref * ref);
+int get_and_display_threadinfo (threadref *ref);
 
 static void threadinfo_test_cmd (char *cmd, int tty);
 
-static int thread_display_step (threadref * ref, void *context);
+static int thread_display_step (threadref *ref, void *context);
 
 static void threadlist_update_test_cmd (char *cmd, int tty);
 
 static void init_remote_threadtests (void);
 
-#define SAMPLE_THREAD  0x05060708      /* Truncated 64 bit threadid */
+#define SAMPLE_THREAD  0x05060708      /* Truncated 64 bit threadid */
 
 static void
 threadset_test_cmd (char *cmd, int tty)
 {
   int sample_thread = SAMPLE_THREAD;
 
-  printf_filtered ("Remote threadset test\n");
+  printf_filtered (_("Remote threadset test\n"));
   set_thread (sample_thread, 1);
 }
 
@@ -5011,14 +5341,14 @@ threadalive_test (char *cmd, int tty)
     printf_filtered ("FAIL: Thread alive test\n");
 }
 
-void output_threadid (char *title, threadref * ref);
+void output_threadid (char *title, threadref *ref);
 
 void
 output_threadid (char *title, threadref *ref)
 {
   char hexid[20];
 
-  pack_threadid (&hexid[0], ref);      /* Convert threead id into hex */
+  pack_threadid (&hexid[0], ref);      /* Convert threead id into hex */
   hexid[16] = 0;
   printf_filtered ("%s  %s\n", title, (&hexid[0]));
 }
@@ -5098,16 +5428,16 @@ threadlist_update_test_cmd (char *cmd, int tty)
 static void
 init_remote_threadtests (void)
 {
-  add_com ("tlist", class_obscure, threadlist_test_cmd,
-     "Fetch and print the remote list of thread identifiers, one pkt only");
+  add_com ("tlist", class_obscure, threadlist_test_cmd, _("\
+Fetch and print the remote list of thread identifiers, one pkt only"));
   add_com ("tinfo", class_obscure, threadinfo_test_cmd,
-          "Fetch and display info about one thread");
+          _("Fetch and display info about one thread"));
   add_com ("tset", class_obscure, threadset_test_cmd,
-          "Test setting to a different thread");
+          _("Test setting to a different thread"));
   add_com ("tupd", class_obscure, threadlist_update_test_cmd,
-          "Iterate through updating all remote thread info");
+          _("Iterate through updating all remote thread info"));
   add_com ("talive", class_obscure, threadalive_test,
-          " Remote thread alive test ");
+          _(" Remote thread alive test "));
 }
 
 #endif /* 0 */
@@ -5118,12 +5448,57 @@ init_remote_threadtests (void)
 static char *
 remote_pid_to_str (ptid_t ptid)
 {
-  static char buf[30];
+  static char buf[32];
 
-  sprintf (buf, "Thread %d", PIDGET (ptid));
+  xsnprintf (buf, sizeof buf, "thread %d", ptid_get_pid (ptid));
   return buf;
 }
 
+/* Get the address of the thread local variable in OBJFILE which is
+   stored at OFFSET within the thread local storage for thread PTID.  */
+
+static CORE_ADDR
+remote_get_thread_local_address (ptid_t ptid, CORE_ADDR lm, CORE_ADDR offset)
+{
+  if (remote_protocol_packets[PACKET_qGetTLSAddr].support != PACKET_DISABLE)
+    {
+      struct remote_state *rs = get_remote_state ();
+      char *p = rs->buf;
+      enum packet_result result;
+
+      strcpy (p, "qGetTLSAddr:");
+      p += strlen (p);
+      p += hexnumstr (p, PIDGET (ptid));
+      *p++ = ',';
+      p += hexnumstr (p, offset);
+      *p++ = ',';
+      p += hexnumstr (p, lm);
+      *p++ = '\0';
+
+      putpkt (rs->buf);
+      getpkt (&rs->buf, &rs->buf_size, 0);
+      result = packet_ok (rs->buf, &remote_protocol_packets[PACKET_qGetTLSAddr]);
+      if (result == PACKET_OK)
+       {
+         ULONGEST result;
+
+         unpack_varlen_hex (rs->buf, &result);
+         return result;
+       }
+      else if (result == PACKET_UNKNOWN)
+       throw_error (TLS_GENERIC_ERROR,
+                    _("Remote target doesn't support qGetTLSAddr packet"));
+      else
+       throw_error (TLS_GENERIC_ERROR,
+                    _("Remote target failed to process qGetTLSAddr request"));
+    }
+  else
+    throw_error (TLS_GENERIC_ERROR,
+                _("TLS not supported or disabled on this target"));
+  /* Not reached.  */
+  return 0;
+}
+
 static void
 init_remote_ops (void)
 {
@@ -5142,7 +5517,7 @@ Specify the serial device it is connected to\n\
   remote_ops.to_fetch_registers = remote_fetch_registers;
   remote_ops.to_store_registers = remote_store_registers;
   remote_ops.to_prepare_to_store = remote_prepare_to_store;
-  remote_ops.to_xfer_memory = remote_xfer_memory;
+  remote_ops.deprecated_xfer_memory = remote_xfer_memory;
   remote_ops.to_files_info = remote_files_info;
   remote_ops.to_insert_breakpoint = remote_insert_breakpoint;
   remote_ops.to_remove_breakpoint = remote_remove_breakpoint;
@@ -5163,6 +5538,7 @@ Specify the serial device it is connected to\n\
   remote_ops.to_stop = remote_stop;
   remote_ops.to_xfer_partial = remote_xfer_partial;
   remote_ops.to_rcmd = remote_rcmd;
+  remote_ops.to_get_thread_local_address = remote_get_thread_local_address;
   remote_ops.to_stratum = process_stratum;
   remote_ops.to_has_all_memory = 1;
   remote_ops.to_has_memory = 1;
@@ -5195,22 +5571,23 @@ Specify the serial device it is connected to (e.g. /dev/ttya).",
 static int
 remote_can_async_p (void)
 {
-  /* We're async whenever the serial device is. */
+  /* We're async whenever the serial device is.  */
   return (current_target.to_async_mask_value) && serial_can_async_p (remote_desc);
 }
 
 static int
 remote_is_async_p (void)
 {
-  /* We're async whenever the serial device is. */
+  /* We're async whenever the serial device is.  */
   return (current_target.to_async_mask_value) && serial_is_async_p (remote_desc);
 }
 
 /* Pass the SERIAL event on and up to the client.  One day this code
    will be able to delay notifying the client of an event until the
-   point where an entire packet has been received. */
+   point where an entire packet has been received.  */
 
-static void (*async_client_callback) (enum inferior_event_type event_type, void *context);
+static void (*async_client_callback) (enum inferior_event_type event_type, 
+                                     void *context);
 static void *async_client_context;
 static serial_event_ftype remote_async_serial_handler;
 
@@ -5223,11 +5600,12 @@ remote_async_serial_handler (struct serial *scb, void *context)
 }
 
 static void
-remote_async (void (*callback) (enum inferior_event_type event_type, void *context), void *context)
+remote_async (void (*callback) (enum inferior_event_type event_type, 
+                               void *context), void *context)
 {
   if (current_target.to_async_mask_value == 0)
     internal_error (__FILE__, __LINE__,
-                   "Calling remote_async when async is masked");
+                   _("Calling remote_async when async is masked"));
 
   if (callback != NULL)
     {
@@ -5243,13 +5621,14 @@ remote_async (void (*callback) (enum inferior_event_type event_type, void *conte
 
    This are temporary targets, until it is all tested.  Eventually
    async support will be incorporated int the usual 'remote'
-   target. */
+   target.  */
 
 static void
 init_remote_async_ops (void)
 {
   remote_async_ops.to_shortname = "async";
-  remote_async_ops.to_longname = "Remote serial target in async version of the gdb-specific protocol";
+  remote_async_ops.to_longname = 
+    "Remote serial target in async version of the gdb-specific protocol";
   remote_async_ops.to_doc =
     "Use a remote computer via a serial line, using a gdb-specific protocol.\n\
 Specify the serial device it is connected to (e.g. /dev/ttya).";
@@ -5262,7 +5641,7 @@ Specify the serial device it is connected to (e.g. /dev/ttya).";
   remote_async_ops.to_fetch_registers = remote_fetch_registers;
   remote_async_ops.to_store_registers = remote_store_registers;
   remote_async_ops.to_prepare_to_store = remote_prepare_to_store;
-  remote_async_ops.to_xfer_memory = remote_xfer_memory;
+  remote_async_ops.deprecated_xfer_memory = remote_xfer_memory;
   remote_async_ops.to_files_info = remote_files_info;
   remote_async_ops.to_insert_breakpoint = remote_insert_breakpoint;
   remote_async_ops.to_remove_breakpoint = remote_remove_breakpoint;
@@ -5326,14 +5705,25 @@ set_remote_cmd (char *args, int from_tty)
 static void
 show_remote_cmd (char *args, int from_tty)
 {
-  /* FIXME: cagney/2002-06-15: This function should iterate over
-     remote_show_cmdlist for a list of sub commands to show.  */
-  show_remote_protocol_Z_packet_cmd (args, from_tty, NULL);
-  show_remote_protocol_P_packet_cmd (args, from_tty, NULL);
-  show_remote_protocol_qSymbol_packet_cmd (args, from_tty, NULL);
-  show_remote_protocol_vcont_packet_cmd (args, from_tty, NULL);
-  show_remote_protocol_binary_download_cmd (args, from_tty, NULL);
-  show_remote_protocol_qPart_auxv_packet_cmd (args, from_tty, NULL);
+  /* We can't just use cmd_show_list here, because we want to skip
+     the redundant "show remote Z-packet".  */
+  struct cleanup *showlist_chain;
+  struct cmd_list_element *list = remote_show_cmdlist;
+
+  showlist_chain = make_cleanup_ui_out_tuple_begin_end (uiout, "showlist");
+  for (; list != NULL; list = list->next)
+    if (strcmp (list->name, "Z-packet") == 0)
+      continue;
+    else if (list->type == show_cmd)
+      {
+       struct cleanup *option_chain
+         = make_cleanup_ui_out_tuple_begin_end (uiout, "option");
+       ui_out_field_string (uiout, "name", list->name);
+       ui_out_text (uiout, ":  ");
+       do_setshow_command ((char *) NULL, from_tty, list);
+       /* Close the tuple.  */
+       do_cleanups (option_chain);
+      }
 }
 
 static void
@@ -5342,18 +5732,18 @@ build_remote_gdbarch_data (void)
   remote_address_size = TARGET_ADDR_BIT;
 }
 
-/* Saved pointer to previous owner of the new_objfile event. */
+/* Saved pointer to previous owner of the new_objfile event.  */
 static void (*remote_new_objfile_chain) (struct objfile *);
 
-/* Function to be called whenever a new objfile (shlib) is detected. */
+/* Function to be called whenever a new objfile (shlib) is detected.  */
 static void
 remote_new_objfile (struct objfile *objfile)
 {
-  if (remote_desc != 0)                /* Have a remote connection */
+  if (remote_desc != 0)                /* Have a remote connection */
     {
       remote_check_symbols (objfile);
     }
-  /* Call predecessor on chain, if any. */
+  /* Call predecessor on chain, if any.  */
   if (remote_new_objfile_chain != 0 &&
       remote_desc == 0)
     remote_new_objfile_chain (objfile);
@@ -5362,18 +5752,25 @@ remote_new_objfile (struct objfile *objfile)
 void
 _initialize_remote (void)
 {
-  static struct cmd_list_element *remote_set_cmdlist;
-  static struct cmd_list_element *remote_show_cmdlist;
-  struct cmd_list_element *tmpcmd;
+  struct remote_state *rs;
 
   /* architecture specific data */
-  remote_gdbarch_data_handle = gdbarch_data_register_post_init (init_remote_state);
+  remote_gdbarch_data_handle = 
+    gdbarch_data_register_post_init (init_remote_state);
 
   /* Old tacky stuff.  NOTE: This comes after the remote protocol so
      that the remote protocol has been initialized.  */
   DEPRECATED_REGISTER_GDBARCH_SWAP (remote_address_size);
   deprecated_register_gdbarch_swap (NULL, 0, build_remote_gdbarch_data);
 
+  /* Initialize the per-target state.  At the moment there is only one
+     of these, not one per target.  Only one target is active at a
+     time.  The default buffer size is unimportant; it will be expanded
+     whenever a larger buffer is needed.  */
+  rs = get_remote_state ();
+  rs->buf_size = 400;
+  rs->buf = xmalloc (rs->buf_size);
+
   init_remote_ops ();
   add_target (&remote_ops);
 
@@ -5394,181 +5791,150 @@ _initialize_remote (void)
   init_remote_threadtests ();
 #endif
 
-  /* set/show remote ... */
+  /* set/show remote ...  */
 
-  add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, "\
+  add_prefix_cmd ("remote", class_maintenance, set_remote_cmd, _("\
 Remote protocol specific variables\n\
 Configure various remote-protocol specific variables such as\n\
-the packets being used",
+the packets being used"),
                  &remote_set_cmdlist, "set remote ",
-                 0/*allow-unknown*/, &setlist);
-  add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, "\
+                 0 /* allow-unknown */, &setlist);
+  add_prefix_cmd ("remote", class_maintenance, show_remote_cmd, _("\
 Remote protocol specific variables\n\
 Configure various remote-protocol specific variables such as\n\
-the packets being used",
+the packets being used"),
                  &remote_show_cmdlist, "show remote ",
-                 0/*allow-unknown*/, &showlist);
+                 0 /* allow-unknown */, &showlist);
 
-  add_cmd ("compare-sections", class_obscure, compare_sections_command,
-          "Compare section data on target to the exec file.\n\
-Argument is a single section name (default: all loaded sections).",
+  add_cmd ("compare-sections", class_obscure, compare_sections_command, _("\
+Compare section data on target to the exec file.\n\
+Argument is a single section name (default: all loaded sections)."),
           &cmdlist);
 
-  add_cmd ("packet", class_maintenance, packet_command,
-          "Send an arbitrary packet to a remote target.\n\
+  add_cmd ("packet", class_maintenance, packet_command, _("\
+Send an arbitrary packet to a remote target.\n\
    maintenance packet TEXT\n\
 If GDB is talking to an inferior via the GDB serial protocol, then\n\
 this command sends the string TEXT to the inferior, and displays the\n\
 response packet.  GDB supplies the initial `$' character, and the\n\
-terminating `#' character and checksum.",
+terminating `#' character and checksum."),
           &maintenancelist);
 
-  add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break,
-                          "Set whether to send break if interrupted.\n",
-                          "Show whether to send break if interrupted.\n",
-                          NULL, NULL,
+  add_setshow_boolean_cmd ("remotebreak", no_class, &remote_break, _("\
+Set whether to send break if interrupted."), _("\
+Show whether to send break if interrupted."), _("\
+If set, a break, instead of a cntrl-c, is sent to the remote target."),
+                          NULL, NULL, /* FIXME: i18n: Whether to send break if interrupted is %s.  */
                           &setlist, &showlist);
 
-  /* Install commands for configuring memory read/write packets. */
+  /* Install commands for configuring memory read/write packets.  */
 
-  add_cmd ("remotewritesize", no_class, set_memory_write_packet_size,
-          "Set the maximum number of bytes per memory write packet (deprecated).\n",
+  add_cmd ("remotewritesize", no_class, set_memory_write_packet_size, _("\
+Set the maximum number of bytes per memory write packet (deprecated)."),
           &setlist);
-  add_cmd ("remotewritesize", no_class, show_memory_write_packet_size,
-          "Show the maximum number of bytes per memory write packet (deprecated).\n",
+  add_cmd ("remotewritesize", no_class, show_memory_write_packet_size, _("\
+Show the maximum number of bytes per memory write packet (deprecated)."),
           &showlist);
   add_cmd ("memory-write-packet-size", no_class,
-          set_memory_write_packet_size,
-          "Set the maximum number of bytes per memory-write packet.\n"
-          "Specify the number of bytes in a packet or 0 (zero) for the\n"
-          "default packet size.  The actual limit is further reduced\n"
-          "dependent on the target.  Specify ``fixed'' to disable the\n"
-          "further restriction and ``limit'' to enable that restriction\n",
+          set_memory_write_packet_size, _("\
+Set the maximum number of bytes per memory-write packet.\n\
+Specify the number of bytes in a packet or 0 (zero) for the\n\
+default packet size.  The actual limit is further reduced\n\
+dependent on the target.  Specify ``fixed'' to disable the\n\
+further restriction and ``limit'' to enable that restriction."),
           &remote_set_cmdlist);
   add_cmd ("memory-read-packet-size", no_class,
-          set_memory_read_packet_size,
-          "Set the maximum number of bytes per memory-read packet.\n"
-          "Specify the number of bytes in a packet or 0 (zero) for the\n"
-          "default packet size.  The actual limit is further reduced\n"
-          "dependent on the target.  Specify ``fixed'' to disable the\n"
-          "further restriction and ``limit'' to enable that restriction\n",
+          set_memory_read_packet_size, _("\
+Set the maximum number of bytes per memory-read packet.\n\
+Specify the number of bytes in a packet or 0 (zero) for the\n\
+default packet size.  The actual limit is further reduced\n\
+dependent on the target.  Specify ``fixed'' to disable the\n\
+further restriction and ``limit'' to enable that restriction."),
           &remote_set_cmdlist);
   add_cmd ("memory-write-packet-size", no_class,
           show_memory_write_packet_size,
-          "Show the maximum number of bytes per memory-write packet.\n",
+          _("Show the maximum number of bytes per memory-write packet."),
           &remote_show_cmdlist);
   add_cmd ("memory-read-packet-size", no_class,
           show_memory_read_packet_size,
-          "Show the maximum number of bytes per memory-read packet.\n",
+          _("Show the maximum number of bytes per memory-read packet."),
           &remote_show_cmdlist);
 
-  add_setshow_cmd ("hardware-watchpoint-limit", no_class,
-                  var_zinteger, &remote_hw_watchpoint_limit, "\
-Set the maximum number of target hardware watchpoints.\n\
-Specify a negative limit for unlimited.", "\
-Show the maximum number of target hardware watchpoints.\n",
-                  NULL, NULL, &remote_set_cmdlist, &remote_show_cmdlist);
-  add_setshow_cmd ("hardware-breakpoint-limit", no_class,
-                  var_zinteger, &remote_hw_breakpoint_limit, "\
-Set the maximum number of target hardware breakpoints.\n\
-Specify a negative limit for unlimited.", "\
-Show the maximum number of target hardware breakpoints.\n",
-                  NULL, NULL, &remote_set_cmdlist, &remote_show_cmdlist);
-
-  add_show_from_set
-    (add_set_cmd ("remoteaddresssize", class_obscure,
-                 var_integer, (char *) &remote_address_size,
-                 "Set the maximum size of the address (in bits) \
-in a memory packet.\n",
-                 &setlist),
-     &showlist);
-
-  add_packet_config_cmd (&remote_protocol_binary_download,
-                        "X", "binary-download",
-                        set_remote_protocol_binary_download_cmd,
-                        show_remote_protocol_binary_download_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        1);
-#if 0
-  /* XXXX - should ``set remotebinarydownload'' be retained for
-     compatibility. */
-  add_show_from_set
-    (add_set_cmd ("remotebinarydownload", no_class,
-                 var_boolean, (char *) &remote_binary_download,
-                 "Set binary downloads.\n", &setlist),
-     &showlist);
-#endif
+  add_setshow_zinteger_cmd ("hardware-watchpoint-limit", no_class,
+                           &remote_hw_watchpoint_limit, _("\
+Set the maximum number of target hardware watchpoints."), _("\
+Show the maximum number of target hardware watchpoints."), _("\
+Specify a negative limit for unlimited."),
+                           NULL, NULL, /* FIXME: i18n: The maximum number of target hardware watchpoints is %s.  */
+                           &remote_set_cmdlist, &remote_show_cmdlist);
+  add_setshow_zinteger_cmd ("hardware-breakpoint-limit", no_class,
+                           &remote_hw_breakpoint_limit, _("\
+Set the maximum number of target hardware breakpoints."), _("\
+Show the maximum number of target hardware breakpoints."), _("\
+Specify a negative limit for unlimited."),
+                           NULL, NULL, /* FIXME: i18n: The maximum number of target hardware breakpoints is %s.  */
+                           &remote_set_cmdlist, &remote_show_cmdlist);
+
+  add_setshow_integer_cmd ("remoteaddresssize", class_obscure,
+                          &remote_address_size, _("\
+Set the maximum size of the address (in bits) in a memory packet."), _("\
+Show the maximum size of the address (in bits) in a memory packet."), NULL,
+                          NULL,
+                          NULL, /* FIXME: i18n: */
+                          &setlist, &showlist);
 
-  add_packet_config_cmd (&remote_protocol_vcont,
-                        "vCont", "verbose-resume",
-                        set_remote_protocol_vcont_packet_cmd,
-                        show_remote_protocol_vcont_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_X],
+                        "X", "binary-download", 1);
 
-  add_packet_config_cmd (&remote_protocol_qSymbol,
-                        "qSymbol", "symbol-lookup",
-                        set_remote_protocol_qSymbol_packet_cmd,
-                        show_remote_protocol_qSymbol_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_vCont],
+                        "vCont", "verbose-resume", 0);
 
-  add_packet_config_cmd (&remote_protocol_P,
-                        "P", "set-register",
-                        set_remote_protocol_P_packet_cmd,
-                        show_remote_protocol_P_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        1);
-
-  add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_SOFTWARE_BP],
-                        "Z0", "software-breakpoint",
-                        set_remote_protocol_Z_software_bp_packet_cmd,
-                        show_remote_protocol_Z_software_bp_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_qSymbol],
+                        "qSymbol", "symbol-lookup", 0);
 
-  add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_HARDWARE_BP],
-                        "Z1", "hardware-breakpoint",
-                        set_remote_protocol_Z_hardware_bp_packet_cmd,
-                        show_remote_protocol_Z_hardware_bp_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_P],
+                        "P", "set-register", 1);
 
-  add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_WRITE_WP],
-                        "Z2", "write-watchpoint",
-                        set_remote_protocol_Z_write_wp_packet_cmd,
-                        show_remote_protocol_Z_write_wp_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_p],
+                        "p", "fetch-register", 1);
 
-  add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_READ_WP],
-                        "Z3", "read-watchpoint",
-                        set_remote_protocol_Z_read_wp_packet_cmd,
-                        show_remote_protocol_Z_read_wp_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_Z0],
+                        "Z0", "software-breakpoint", 0);
 
-  add_packet_config_cmd (&remote_protocol_Z[Z_PACKET_ACCESS_WP],
-                        "Z4", "access-watchpoint",
-                        set_remote_protocol_Z_access_wp_packet_cmd,
-                        show_remote_protocol_Z_access_wp_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
-                        0);
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_Z1],
+                        "Z1", "hardware-breakpoint", 0);
+
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_Z2],
+                        "Z2", "write-watchpoint", 0);
+
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_Z3],
+                        "Z3", "read-watchpoint", 0);
 
-  add_packet_config_cmd (&remote_protocol_qPart_auxv,
-                        "qPart_auxv", "read-aux-vector",
-                        set_remote_protocol_qPart_auxv_packet_cmd,
-                        show_remote_protocol_qPart_auxv_packet_cmd,
-                        &remote_set_cmdlist, &remote_show_cmdlist,
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_Z4],
+                        "Z4", "access-watchpoint", 0);
+
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_qPart_auxv],
+                        "qPart:auxv", "read-aux-vector", 0);
+
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_qGetTLSAddr],
+                        "qGetTLSAddr", "get-thread-local-storage-address",
                         0);
 
-  /* Keep the old ``set remote Z-packet ...'' working. */
+  add_packet_config_cmd (&remote_protocol_packets[PACKET_qSupported],
+                        "qSupported", "supported-packets", 0);
+
+  /* Keep the old ``set remote Z-packet ...'' working.  Each individual
+     Z sub-packet has its own set and show commands, but users may
+     have sets to this variable in their .gdbinit files (or in their
+     documentation).  */
   add_setshow_auto_boolean_cmd ("Z-packet", class_obscure,
-                               &remote_Z_packet_detect, "\
-Set use of remote protocol `Z' packets",
-                               "Show use of remote protocol `Z' packets ",
+                               &remote_Z_packet_detect, _("\
+Set use of remote protocol `Z' packets"), _("\
+Show use of remote protocol `Z' packets "), _("\
+When set, GDB will attempt to use the remote breakpoint and watchpoint\n\
+packets."),
                                set_remote_protocol_Z_packet_cmd,
-                               show_remote_protocol_Z_packet_cmd,
+                               show_remote_protocol_Z_packet_cmd, /* FIXME: i18n: Use of remote protocol `Z' packets is %s.  */
                                &remote_set_cmdlist, &remote_show_cmdlist);
 
   /* Eventually initialize fileio.  See fileio.c */
This page took 0.114992 seconds and 4 git commands to generate.