gdb: Convert TUI windows names to lower case.
[external/binutils.git] / gdb / monitor.c
1 /* Remote debugging interface for boot monitors, for GDB.
2
3    Copyright (C) 1990-2015 Free Software Foundation, Inc.
4
5    Contributed by Cygnus Support.  Written by Rob Savoye for Cygnus.
6    Resurrected from the ashes by Stu Grossman.
7
8    This file is part of GDB.
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
22
23 /* This file was derived from various remote-* modules.  It is a collection
24    of generic support functions so GDB can talk directly to a ROM based
25    monitor.  This saves use from having to hack an exception based handler
26    into existence, and makes for quick porting.
27
28    This module talks to a debug monitor called 'MONITOR', which
29    We communicate with MONITOR via either a direct serial line, or a TCP
30    (or possibly TELNET) stream to a terminal multiplexor,
31    which in turn talks to the target board.  */
32
33 /* FIXME 32x64: This code assumes that registers and addresses are at
34    most 32 bits long.  If they can be larger, you will need to declare
35    values as LONGEST and use %llx or some such to print values when
36    building commands to send to the monitor.  Since we don't know of
37    any actual 64-bit targets with ROM monitors that use this code,
38    it's not an issue right now.  -sts 4/18/96  */
39
40 #include "defs.h"
41 #include "gdbcore.h"
42 #include "target.h"
43 #include <signal.h>
44 #include <ctype.h>
45 #include <sys/types.h>
46 #include "command.h"
47 #include "serial.h"
48 #include "monitor.h"
49 #include "gdbcmd.h"
50 #include "inferior.h"
51 #include "infrun.h"
52 #include "gdb_regex.h"
53 #include "srec.h"
54 #include "regcache.h"
55 #include "gdbthread.h"
56 #include "readline/readline.h"
57 #include "rsp-low.h"
58
59 static char *dev_name;
60 static struct target_ops *targ_ops;
61
62 static void monitor_interrupt_query (void);
63 static void monitor_interrupt_twice (int);
64 static void monitor_stop (struct target_ops *self, ptid_t);
65 static void monitor_dump_regs (struct regcache *regcache);
66
67 #if 0
68 static int from_hex (int a);
69 #endif
70
71 static struct monitor_ops *current_monitor;
72
73 static int hashmark;            /* flag set by "set hash".  */
74
75 static int timeout = 30;
76
77 static int in_monitor_wait = 0; /* Non-zero means we are in monitor_wait().  */
78
79 static void (*ofunc) ();        /* Old SIGINT signal handler.  */
80
81 static CORE_ADDR *breakaddr;
82
83 /* Descriptor for I/O to remote machine.  Initialize it to NULL so
84    that monitor_open knows that we don't have a file open when the
85    program starts.  */
86
87 static struct serial *monitor_desc = NULL;
88
89 /* Pointer to regexp pattern matching data.  */
90
91 static struct re_pattern_buffer register_pattern;
92 static char register_fastmap[256];
93
94 static struct re_pattern_buffer getmem_resp_delim_pattern;
95 static char getmem_resp_delim_fastmap[256];
96
97 static struct re_pattern_buffer setmem_resp_delim_pattern;
98 static char setmem_resp_delim_fastmap[256];
99
100 static struct re_pattern_buffer setreg_resp_delim_pattern;
101 static char setreg_resp_delim_fastmap[256];
102
103 static int dump_reg_flag;       /* Non-zero means do a dump_registers cmd when
104                                    monitor_wait wakes up.  */
105
106 static int first_time = 0;      /* Is this the first time we're
107                                    executing after gaving created the
108                                    child proccess?  */
109
110
111 /* This is the ptid we use while we're connected to a monitor.  Its
112    value is arbitrary, as monitor targets don't have a notion of
113    processes or threads, but we need something non-null to place in
114    inferior_ptid.  */
115 static ptid_t monitor_ptid;
116
117 #define TARGET_BUF_SIZE 2048
118
119 /* Monitor specific debugging information.  Typically only useful to
120    the developer of a new monitor interface.  */
121
122 static void monitor_debug (const char *fmt, ...) ATTRIBUTE_PRINTF (1, 2);
123
124 static unsigned int monitor_debug_p = 0;
125
126 /* NOTE: This file alternates between monitor_debug_p and remote_debug
127    when determining if debug information is printed.  Perhaps this
128    could be simplified.  */
129
130 static void
131 monitor_debug (const char *fmt, ...)
132 {
133   if (monitor_debug_p)
134     {
135       va_list args;
136
137       va_start (args, fmt);
138       vfprintf_filtered (gdb_stdlog, fmt, args);
139       va_end (args);
140     }
141 }
142
143
144 /* Convert a string into a printable representation, Return # byte in
145    the new string.  When LEN is >0 it specifies the size of the
146    string.  Otherwize strlen(oldstr) is used.  */
147
148 static void
149 monitor_printable_string (char *newstr, char *oldstr, int len)
150 {
151   int ch;
152   int i;
153
154   if (len <= 0)
155     len = strlen (oldstr);
156
157   for (i = 0; i < len; i++)
158     {
159       ch = oldstr[i];
160       switch (ch)
161         {
162         default:
163           if (isprint (ch))
164             *newstr++ = ch;
165
166           else
167             {
168               sprintf (newstr, "\\x%02x", ch & 0xff);
169               newstr += 4;
170             }
171           break;
172
173         case '\\':
174           *newstr++ = '\\';
175           *newstr++ = '\\';
176           break;
177         case '\b':
178           *newstr++ = '\\';
179           *newstr++ = 'b';
180           break;
181         case '\f':
182           *newstr++ = '\\';
183           *newstr++ = 't';
184           break;
185         case '\n':
186           *newstr++ = '\\';
187           *newstr++ = 'n';
188           break;
189         case '\r':
190           *newstr++ = '\\';
191           *newstr++ = 'r';
192           break;
193         case '\t':
194           *newstr++ = '\\';
195           *newstr++ = 't';
196           break;
197         case '\v':
198           *newstr++ = '\\';
199           *newstr++ = 'v';
200           break;
201         }
202     }
203
204   *newstr++ = '\0';
205 }
206
207 /* Print monitor errors with a string, converting the string to printable
208    representation.  */
209
210 static void
211 monitor_error (char *function, char *message,
212                CORE_ADDR memaddr, int len, char *string, int final_char)
213 {
214   int real_len = (len == 0 && string != (char *) 0) ? strlen (string) : len;
215   char *safe_string = alloca ((real_len * 4) + 1);
216
217   monitor_printable_string (safe_string, string, real_len);
218
219   if (final_char)
220     error (_("%s (%s): %s: %s%c"),
221            function, paddress (target_gdbarch (), memaddr),
222            message, safe_string, final_char);
223   else
224     error (_("%s (%s): %s: %s"),
225            function, paddress (target_gdbarch (), memaddr),
226            message, safe_string);
227 }
228
229 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
230
231    This function exists to get around the problem that many host platforms
232    don't have a printf that can print 64-bit addresses.  The %A format
233    specification is recognized as a special case, and causes the argument
234    to be printed as a 64-bit hexadecimal address.
235
236    Only format specifiers of the form "[0-9]*[a-z]" are recognized.
237    If it is a '%s' format, the argument is a string; otherwise the
238    argument is assumed to be a long integer.
239
240    %% is also turned into a single %.  */
241
242 static void
243 monitor_vsprintf (char *sndbuf, char *pattern, va_list args)
244 {
245   int addr_bit = gdbarch_addr_bit (target_gdbarch ());
246   char format[10];
247   char fmt;
248   char *p;
249   int i;
250   long arg_int;
251   CORE_ADDR arg_addr;
252   char *arg_string;
253
254   for (p = pattern; *p; p++)
255     {
256       if (*p == '%')
257         {
258           /* Copy the format specifier to a separate buffer.  */
259           format[0] = *p++;
260           for (i = 1; *p >= '0' && *p <= '9' && i < (int) sizeof (format) - 2;
261                i++, p++)
262             format[i] = *p;
263           format[i] = fmt = *p;
264           format[i + 1] = '\0';
265
266           /* Fetch the next argument and print it.  */
267           switch (fmt)
268             {
269             case '%':
270               strcpy (sndbuf, "%");
271               break;
272             case 'A':
273               arg_addr = va_arg (args, CORE_ADDR);
274               strcpy (sndbuf, phex_nz (arg_addr, addr_bit / 8));
275               break;
276             case 's':
277               arg_string = va_arg (args, char *);
278               sprintf (sndbuf, format, arg_string);
279               break;
280             default:
281               arg_int = va_arg (args, long);
282               sprintf (sndbuf, format, arg_int);
283               break;
284             }
285           sndbuf += strlen (sndbuf);
286         }
287       else
288         *sndbuf++ = *p;
289     }
290   *sndbuf = '\0';
291 }
292
293
294 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
295    Works just like printf.  */
296
297 void
298 monitor_printf_noecho (char *pattern,...)
299 {
300   va_list args;
301   char sndbuf[2000];
302   int len;
303
304   va_start (args, pattern);
305
306   monitor_vsprintf (sndbuf, pattern, args);
307
308   len = strlen (sndbuf);
309   if (len + 1 > sizeof sndbuf)
310     internal_error (__FILE__, __LINE__,
311                     _("failed internal consistency check"));
312
313   if (monitor_debug_p)
314     {
315       char *safe_string = (char *) alloca ((strlen (sndbuf) * 4) + 1);
316
317       monitor_printable_string (safe_string, sndbuf, 0);
318       fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
319     }
320
321   monitor_write (sndbuf, len);
322 }
323
324 /* monitor_printf -- Send data to monitor and check the echo.  Works just like
325    printf.  */
326
327 void
328 monitor_printf (char *pattern,...)
329 {
330   va_list args;
331   char sndbuf[2000];
332   int len;
333
334   va_start (args, pattern);
335
336   monitor_vsprintf (sndbuf, pattern, args);
337
338   len = strlen (sndbuf);
339   if (len + 1 > sizeof sndbuf)
340     internal_error (__FILE__, __LINE__,
341                     _("failed internal consistency check"));
342
343   if (monitor_debug_p)
344     {
345       char *safe_string = (char *) alloca ((len * 4) + 1);
346
347       monitor_printable_string (safe_string, sndbuf, 0);
348       fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
349     }
350
351   monitor_write (sndbuf, len);
352
353   /* We used to expect that the next immediate output was the
354      characters we just output, but sometimes some extra junk appeared
355      before the characters we expected, like an extra prompt, or a
356      portmaster sending telnet negotiations.  So, just start searching
357      for what we sent, and skip anything unknown.  */
358   monitor_debug ("ExpectEcho\n");
359   monitor_expect (sndbuf, (char *) 0, 0);
360 }
361
362
363 /* Write characters to the remote system.  */
364
365 void
366 monitor_write (char *buf, int buflen)
367 {
368   if (serial_write (monitor_desc, buf, buflen))
369     fprintf_unfiltered (gdb_stderr, "serial_write failed: %s\n",
370                         safe_strerror (errno));
371 }
372
373
374 /* Read a binary character from the remote system, doing all the fancy
375    timeout stuff, but without interpreting the character in any way,
376    and without printing remote debug information.  */
377
378 int
379 monitor_readchar (void)
380 {
381   int c;
382   int looping;
383
384   do
385     {
386       looping = 0;
387       c = serial_readchar (monitor_desc, timeout);
388
389       if (c >= 0)
390         c &= 0xff;              /* don't lose bit 7 */
391     }
392   while (looping);
393
394   if (c >= 0)
395     return c;
396
397   if (c == SERIAL_TIMEOUT)
398     error (_("Timeout reading from remote system."));
399
400   perror_with_name (_("remote-monitor"));
401 }
402
403
404 /* Read a character from the remote system, doing all the fancy
405    timeout stuff.  */
406
407 static int
408 readchar (int timeout)
409 {
410   int c;
411   static enum
412     {
413       last_random, last_nl, last_cr, last_crnl
414     }
415   state = last_random;
416   int looping;
417
418   do
419     {
420       looping = 0;
421       c = serial_readchar (monitor_desc, timeout);
422
423       if (c >= 0)
424         {
425           c &= 0x7f;
426           /* This seems to interfere with proper function of the
427              input stream.  */
428           if (monitor_debug_p || remote_debug)
429             {
430               char buf[2];
431
432               buf[0] = c;
433               buf[1] = '\0';
434               puts_debug ("read -->", buf, "<--");
435             }
436
437         }
438
439       /* Canonicialize \n\r combinations into one \r.  */
440       if ((current_monitor->flags & MO_HANDLE_NL) != 0)
441         {
442           if ((c == '\r' && state == last_nl)
443               || (c == '\n' && state == last_cr))
444             {
445               state = last_crnl;
446               looping = 1;
447             }
448           else if (c == '\r')
449             state = last_cr;
450           else if (c != '\n')
451             state = last_random;
452           else
453             {
454               state = last_nl;
455               c = '\r';
456             }
457         }
458     }
459   while (looping);
460
461   if (c >= 0)
462     return c;
463
464   if (c == SERIAL_TIMEOUT)
465 #if 0
466     /* I fail to see how detaching here can be useful.  */
467     if (in_monitor_wait)        /* Watchdog went off.  */
468       {
469         target_mourn_inferior ();
470         error (_("GDB serial timeout has expired.  Target detached."));
471       }
472     else
473 #endif
474       error (_("Timeout reading from remote system."));
475
476   perror_with_name (_("remote-monitor"));
477 }
478
479 /* Scan input from the remote system, until STRING is found.  If BUF is non-
480    zero, then collect input until we have collected either STRING or BUFLEN-1
481    chars.  In either case we terminate BUF with a 0.  If input overflows BUF
482    because STRING can't be found, return -1, else return number of chars in BUF
483    (minus the terminating NUL).  Note that in the non-overflow case, STRING
484    will be at the end of BUF.  */
485
486 int
487 monitor_expect (char *string, char *buf, int buflen)
488 {
489   char *p = string;
490   int obuflen = buflen;
491   int c;
492
493   if (monitor_debug_p)
494     {
495       char *safe_string = (char *) alloca ((strlen (string) * 4) + 1);
496       monitor_printable_string (safe_string, string, 0);
497       fprintf_unfiltered (gdb_stdlog, "MON Expecting '%s'\n", safe_string);
498     }
499
500   immediate_quit++;
501   QUIT;
502   while (1)
503     {
504       if (buf)
505         {
506           if (buflen < 2)
507             {
508               *buf = '\000';
509               immediate_quit--;
510               return -1;
511             }
512
513           c = readchar (timeout);
514           if (c == '\000')
515             continue;
516           *buf++ = c;
517           buflen--;
518         }
519       else
520         c = readchar (timeout);
521
522       /* Don't expect any ^C sent to be echoed.  */
523
524       if (*p == '\003' || c == *p)
525         {
526           p++;
527           if (*p == '\0')
528             {
529               immediate_quit--;
530
531               if (buf)
532                 {
533                   *buf++ = '\000';
534                   return obuflen - buflen;
535                 }
536               else
537                 return 0;
538             }
539         }
540       else
541         {
542           /* We got a character that doesn't match the string.  We need to
543              back up p, but how far?  If we're looking for "..howdy" and the
544              monitor sends "...howdy"?  There's certainly a match in there,
545              but when we receive the third ".", we won't find it if we just
546              restart the matching at the beginning of the string.
547
548              This is a Boyer-Moore kind of situation.  We want to reset P to
549              the end of the longest prefix of STRING that is a suffix of
550              what we've read so far.  In the example above, that would be
551              ".." --- the longest prefix of "..howdy" that is a suffix of
552              "...".  This longest prefix could be the empty string, if C
553              is nowhere to be found in STRING.
554
555              If this longest prefix is not the empty string, it must contain
556              C, so let's search from the end of STRING for instances of C,
557              and see if the portion of STRING before that is a suffix of
558              what we read before C.  Actually, we can search backwards from
559              p, since we know no prefix can be longer than that.
560
561              Note that we can use STRING itself, along with C, as a record
562              of what we've received so far.  :)  */
563           int i;
564
565           for (i = (p - string) - 1; i >= 0; i--)
566             if (string[i] == c)
567               {
568                 /* Is this prefix a suffix of what we've read so far?
569                    In other words, does
570                      string[0 .. i-1] == string[p - i, p - 1]?  */
571                 if (! memcmp (string, p - i, i))
572                   {
573                     p = string + i + 1;
574                     break;
575                   }
576               }
577           if (i < 0)
578             p = string;
579         }
580     }
581 }
582
583 /* Search for a regexp.  */
584
585 static int
586 monitor_expect_regexp (struct re_pattern_buffer *pat, char *buf, int buflen)
587 {
588   char *mybuf;
589   char *p;
590
591   monitor_debug ("MON Expecting regexp\n");
592   if (buf)
593     mybuf = buf;
594   else
595     {
596       mybuf = alloca (TARGET_BUF_SIZE);
597       buflen = TARGET_BUF_SIZE;
598     }
599
600   p = mybuf;
601   while (1)
602     {
603       int retval;
604
605       if (p - mybuf >= buflen)
606         {                       /* Buffer about to overflow.  */
607
608 /* On overflow, we copy the upper half of the buffer to the lower half.  Not
609    great, but it usually works...  */
610
611           memcpy (mybuf, mybuf + buflen / 2, buflen / 2);
612           p = mybuf + buflen / 2;
613         }
614
615       *p++ = readchar (timeout);
616
617       retval = re_search (pat, mybuf, p - mybuf, 0, p - mybuf, NULL);
618       if (retval >= 0)
619         return 1;
620     }
621 }
622
623 /* Keep discarding input until we see the MONITOR prompt.
624
625    The convention for dealing with the prompt is that you
626    o give your command
627    o *then* wait for the prompt.
628
629    Thus the last thing that a procedure does with the serial line will
630    be an monitor_expect_prompt().  Exception: monitor_resume does not
631    wait for the prompt, because the terminal is being handed over to
632    the inferior.  However, the next thing which happens after that is
633    a monitor_wait which does wait for the prompt.  Note that this
634    includes abnormal exit, e.g. error().  This is necessary to prevent
635    getting into states from which we can't recover.  */
636
637 int
638 monitor_expect_prompt (char *buf, int buflen)
639 {
640   monitor_debug ("MON Expecting prompt\n");
641   return monitor_expect (current_monitor->prompt, buf, buflen);
642 }
643
644 /* Get N 32-bit words from remote, each preceded by a space, and put
645    them in registers starting at REGNO.  */
646
647 #if 0
648 static unsigned long
649 get_hex_word (void)
650 {
651   unsigned long val;
652   int i;
653   int ch;
654
655   do
656     ch = readchar (timeout);
657   while (isspace (ch));
658
659   val = from_hex (ch);
660
661   for (i = 7; i >= 1; i--)
662     {
663       ch = readchar (timeout);
664       if (!isxdigit (ch))
665         break;
666       val = (val << 4) | from_hex (ch);
667     }
668
669   return val;
670 }
671 #endif
672
673 static void
674 compile_pattern (char *pattern, struct re_pattern_buffer *compiled_pattern,
675                  char *fastmap)
676 {
677   int tmp;
678   const char *val;
679
680   compiled_pattern->fastmap = fastmap;
681
682   tmp = re_set_syntax (RE_SYNTAX_EMACS);
683   val = re_compile_pattern (pattern,
684                             strlen (pattern),
685                             compiled_pattern);
686   re_set_syntax (tmp);
687
688   if (val)
689     error (_("compile_pattern: Can't compile pattern string `%s': %s!"),
690            pattern, val);
691
692   if (fastmap)
693     re_compile_fastmap (compiled_pattern);
694 }
695
696 /* Open a connection to a remote debugger.  NAME is the filename used
697    for communication.  */
698
699 void
700 monitor_open (const char *args, struct monitor_ops *mon_ops, int from_tty)
701 {
702   const char *name;
703   char **p;
704   struct inferior *inf;
705
706   if (mon_ops->magic != MONITOR_OPS_MAGIC)
707     error (_("Magic number of monitor_ops struct wrong."));
708
709   targ_ops = mon_ops->target;
710   name = targ_ops->to_shortname;
711
712   if (!args)
713     error (_("Use `target %s DEVICE-NAME' to use a serial port, or\n\
714 `target %s HOST-NAME:PORT-NUMBER' to use a network connection."), name, name);
715
716   target_preopen (from_tty);
717
718   /* Setup pattern for register dump.  */
719
720   if (mon_ops->register_pattern)
721     compile_pattern (mon_ops->register_pattern, &register_pattern,
722                      register_fastmap);
723
724   if (mon_ops->getmem.resp_delim)
725     compile_pattern (mon_ops->getmem.resp_delim, &getmem_resp_delim_pattern,
726                      getmem_resp_delim_fastmap);
727
728   if (mon_ops->setmem.resp_delim)
729     compile_pattern (mon_ops->setmem.resp_delim, &setmem_resp_delim_pattern,
730                      setmem_resp_delim_fastmap);
731
732   if (mon_ops->setreg.resp_delim)
733     compile_pattern (mon_ops->setreg.resp_delim, &setreg_resp_delim_pattern,
734                      setreg_resp_delim_fastmap);
735   
736   unpush_target (targ_ops);
737
738   if (dev_name)
739     xfree (dev_name);
740   dev_name = xstrdup (args);
741
742   monitor_desc = serial_open (dev_name);
743
744   if (!monitor_desc)
745     perror_with_name (dev_name);
746
747   if (baud_rate != -1)
748     {
749       if (serial_setbaudrate (monitor_desc, baud_rate))
750         {
751           serial_close (monitor_desc);
752           perror_with_name (dev_name);
753         }
754     }
755
756   serial_setparity (monitor_desc, serial_parity);
757   serial_raw (monitor_desc);
758
759   serial_flush_input (monitor_desc);
760
761   /* some systems only work with 2 stop bits.  */
762
763   serial_setstopbits (monitor_desc, mon_ops->stopbits);
764
765   current_monitor = mon_ops;
766
767   /* See if we can wake up the monitor.  First, try sending a stop sequence,
768      then send the init strings.  Last, remove all breakpoints.  */
769
770   if (current_monitor->stop)
771     {
772       monitor_stop (targ_ops, inferior_ptid);
773       if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
774         {
775           monitor_debug ("EXP Open echo\n");
776           monitor_expect_prompt (NULL, 0);
777         }
778     }
779
780   /* wake up the monitor and see if it's alive.  */
781   for (p = mon_ops->init; *p != NULL; p++)
782     {
783       /* Some of the characters we send may not be echoed,
784          but we hope to get a prompt at the end of it all.  */
785
786       if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
787         monitor_printf (*p);
788       else
789         monitor_printf_noecho (*p);
790       monitor_expect_prompt (NULL, 0);
791     }
792
793   serial_flush_input (monitor_desc);
794
795   /* Alloc breakpoints */
796   if (mon_ops->set_break != NULL)
797     {
798       if (mon_ops->num_breakpoints == 0)
799         mon_ops->num_breakpoints = 8;
800
801       breakaddr = (CORE_ADDR *)
802         xmalloc (mon_ops->num_breakpoints * sizeof (CORE_ADDR));
803       memset (breakaddr, 0, mon_ops->num_breakpoints * sizeof (CORE_ADDR));
804     }
805
806   /* Remove all breakpoints.  */
807
808   if (mon_ops->clr_all_break)
809     {
810       monitor_printf (mon_ops->clr_all_break);
811       monitor_expect_prompt (NULL, 0);
812     }
813
814   if (from_tty)
815     printf_unfiltered (_("Remote target %s connected to %s\n"),
816                        name, dev_name);
817
818   push_target (targ_ops);
819
820   /* Start afresh.  */
821   init_thread_list ();
822
823   /* Make run command think we are busy...  */
824   inferior_ptid = monitor_ptid;
825   inf = current_inferior ();
826   inferior_appeared (inf, ptid_get_pid (inferior_ptid));
827   add_thread_silent (inferior_ptid);
828
829   /* Give monitor_wait something to read.  */
830
831   monitor_printf (current_monitor->line_term);
832
833   init_wait_for_inferior ();
834
835   start_remote (from_tty);
836 }
837
838 /* Close out all files and local state before this target loses
839    control.  */
840
841 void
842 monitor_close (struct target_ops *self)
843 {
844   if (monitor_desc)
845     serial_close (monitor_desc);
846
847   /* Free breakpoint memory.  */
848   if (breakaddr != NULL)
849     {
850       xfree (breakaddr);
851       breakaddr = NULL;
852     }
853
854   monitor_desc = NULL;
855
856   discard_all_inferiors ();
857 }
858
859 /* Terminate the open connection to the remote debugger.  Use this
860    when you want to detach and do something else with your gdb.  */
861
862 static void
863 monitor_detach (struct target_ops *ops, const char *args, int from_tty)
864 {
865   unpush_target (ops);          /* calls monitor_close to do the real work.  */
866   if (from_tty)
867     printf_unfiltered (_("Ending remote %s debugging\n"), target_shortname);
868 }
869
870 /* Convert VALSTR into the target byte-ordered value of REGNO and store it.  */
871
872 char *
873 monitor_supply_register (struct regcache *regcache, int regno, char *valstr)
874 {
875   struct gdbarch *gdbarch = get_regcache_arch (regcache);
876   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
877   ULONGEST val;
878   unsigned char regbuf[MAX_REGISTER_SIZE];
879   char *p;
880
881   val = 0;
882   p = valstr;
883   while (p && *p != '\0')
884     {
885       if (*p == '\r' || *p == '\n')
886         {
887           while (*p != '\0') 
888               p++;
889           break;
890         }
891       if (isspace (*p))
892         {
893           p++;
894           continue;
895         }
896       if (!isxdigit (*p) && *p != 'x')
897         {
898           break;
899         }
900
901       val <<= 4;
902       val += fromhex (*p++);
903     }
904   monitor_debug ("Supplying Register %d %s\n", regno, valstr);
905
906   if (val == 0 && valstr == p)
907     error (_("monitor_supply_register (%d):  bad value from monitor: %s."),
908            regno, valstr);
909
910   /* supply register stores in target byte order, so swap here.  */
911
912   store_unsigned_integer (regbuf, register_size (gdbarch, regno), byte_order,
913                           val);
914
915   regcache_raw_supply (regcache, regno, regbuf);
916
917   return p;
918 }
919
920 /* Tell the remote machine to resume.  */
921
922 static void
923 monitor_resume (struct target_ops *ops,
924                 ptid_t ptid, int step, enum gdb_signal sig)
925 {
926   /* Some monitors require a different command when starting a program.  */
927   monitor_debug ("MON resume\n");
928   if (current_monitor->flags & MO_RUN_FIRST_TIME && first_time == 1)
929     {
930       first_time = 0;
931       monitor_printf ("run\r");
932       if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
933         dump_reg_flag = 1;
934       return;
935     }
936   if (step)
937     monitor_printf (current_monitor->step);
938   else
939     {
940       if (current_monitor->continue_hook)
941         (*current_monitor->continue_hook) ();
942       else
943         monitor_printf (current_monitor->cont);
944       if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
945         dump_reg_flag = 1;
946     }
947 }
948
949 /* Parse the output of a register dump command.  A monitor specific
950    regexp is used to extract individual register descriptions of the
951    form REG=VAL.  Each description is split up into a name and a value
952    string which are passed down to monitor specific code.  */
953
954 static void
955 parse_register_dump (struct regcache *regcache, char *buf, int len)
956 {
957   monitor_debug ("MON Parsing  register dump\n");
958   while (1)
959     {
960       int regnamelen, vallen;
961       char *regname, *val;
962
963       /* Element 0 points to start of register name, and element 1
964          points to the start of the register value.  */
965       struct re_registers register_strings;
966
967       memset (&register_strings, 0, sizeof (struct re_registers));
968
969       if (re_search (&register_pattern, buf, len, 0, len,
970                      &register_strings) == -1)
971         break;
972
973       regnamelen = register_strings.end[1] - register_strings.start[1];
974       regname = buf + register_strings.start[1];
975       vallen = register_strings.end[2] - register_strings.start[2];
976       val = buf + register_strings.start[2];
977
978       current_monitor->supply_register (regcache, regname, regnamelen,
979                                         val, vallen);
980
981       buf += register_strings.end[0];
982       len -= register_strings.end[0];
983     }
984 }
985
986 /* Send ^C to target to halt it.  Target will respond, and send us a
987    packet.  */
988
989 static void
990 monitor_interrupt (int signo)
991 {
992   /* If this doesn't work, try more severe steps.  */
993   signal (signo, monitor_interrupt_twice);
994
995   if (monitor_debug_p || remote_debug)
996     fprintf_unfiltered (gdb_stdlog, "monitor_interrupt called\n");
997
998   target_stop (inferior_ptid);
999 }
1000
1001 /* The user typed ^C twice.  */
1002
1003 static void
1004 monitor_interrupt_twice (int signo)
1005 {
1006   signal (signo, ofunc);
1007
1008   monitor_interrupt_query ();
1009
1010   signal (signo, monitor_interrupt);
1011 }
1012
1013 /* Ask the user what to do when an interrupt is received.  */
1014
1015 static void
1016 monitor_interrupt_query (void)
1017 {
1018   target_terminal_ours ();
1019
1020   if (query (_("Interrupted while waiting for the program.\n\
1021 Give up (and stop debugging it)? ")))
1022     {
1023       target_mourn_inferior ();
1024       quit ();
1025     }
1026
1027   target_terminal_inferior ();
1028 }
1029
1030 static void
1031 monitor_wait_cleanup (void *old_timeout)
1032 {
1033   timeout = *(int *) old_timeout;
1034   signal (SIGINT, ofunc);
1035   in_monitor_wait = 0;
1036 }
1037
1038
1039
1040 static void
1041 monitor_wait_filter (char *buf,
1042                      int bufmax,
1043                      int *ext_resp_len,
1044                      struct target_waitstatus *status)
1045 {
1046   int resp_len;
1047
1048   do
1049     {
1050       resp_len = monitor_expect_prompt (buf, bufmax);
1051       *ext_resp_len = resp_len;
1052
1053       if (resp_len <= 0)
1054         fprintf_unfiltered (gdb_stderr,
1055                             "monitor_wait:  excessive "
1056                             "response from monitor: %s.", buf);
1057     }
1058   while (resp_len < 0);
1059
1060   /* Print any output characters that were preceded by ^O.  */
1061   /* FIXME - This would be great as a user settabgle flag.  */
1062   if (monitor_debug_p || remote_debug
1063       || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1064     {
1065       int i;
1066
1067       for (i = 0; i < resp_len - 1; i++)
1068         if (buf[i] == 0x0f)
1069           putchar_unfiltered (buf[++i]);
1070     }
1071 }
1072
1073
1074
1075 /* Wait until the remote machine stops, then return, storing status in
1076    status just as `wait' would.  */
1077
1078 static ptid_t
1079 monitor_wait (struct target_ops *ops,
1080               ptid_t ptid, struct target_waitstatus *status, int options)
1081 {
1082   int old_timeout = timeout;
1083   char buf[TARGET_BUF_SIZE];
1084   int resp_len;
1085   struct cleanup *old_chain;
1086
1087   status->kind = TARGET_WAITKIND_EXITED;
1088   status->value.integer = 0;
1089
1090   old_chain = make_cleanup (monitor_wait_cleanup, &old_timeout);
1091   monitor_debug ("MON wait\n");
1092
1093 #if 0
1094   /* This is somthing other than a maintenance command.  */
1095     in_monitor_wait = 1;
1096   timeout = watchdog > 0 ? watchdog : -1;
1097 #else
1098   timeout = -1;         /* Don't time out -- user program is running.  */
1099 #endif
1100
1101   ofunc = (void (*)()) signal (SIGINT, monitor_interrupt);
1102
1103   if (current_monitor->wait_filter)
1104     (*current_monitor->wait_filter) (buf, sizeof (buf), &resp_len, status);
1105   else
1106     monitor_wait_filter (buf, sizeof (buf), &resp_len, status);
1107
1108 #if 0                           /* Transferred to monitor wait filter.  */
1109   do
1110     {
1111       resp_len = monitor_expect_prompt (buf, sizeof (buf));
1112
1113       if (resp_len <= 0)
1114         fprintf_unfiltered (gdb_stderr,
1115                             "monitor_wait:  excessive "
1116                             "response from monitor: %s.", buf);
1117     }
1118   while (resp_len < 0);
1119
1120   /* Print any output characters that were preceded by ^O.  */
1121   /* FIXME - This would be great as a user settabgle flag.  */
1122   if (monitor_debug_p || remote_debug
1123       || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1124     {
1125       int i;
1126
1127       for (i = 0; i < resp_len - 1; i++)
1128         if (buf[i] == 0x0f)
1129           putchar_unfiltered (buf[++i]);
1130     }
1131 #endif
1132
1133   signal (SIGINT, ofunc);
1134
1135   timeout = old_timeout;
1136 #if 0
1137   if (dump_reg_flag && current_monitor->dump_registers)
1138     {
1139       dump_reg_flag = 0;
1140       monitor_printf (current_monitor->dump_registers);
1141       resp_len = monitor_expect_prompt (buf, sizeof (buf));
1142     }
1143
1144   if (current_monitor->register_pattern)
1145     parse_register_dump (get_current_regcache (), buf, resp_len);
1146 #else
1147   monitor_debug ("Wait fetching registers after stop\n");
1148   monitor_dump_regs (get_current_regcache ());
1149 #endif
1150
1151   status->kind = TARGET_WAITKIND_STOPPED;
1152   status->value.sig = GDB_SIGNAL_TRAP;
1153
1154   discard_cleanups (old_chain);
1155
1156   in_monitor_wait = 0;
1157
1158   return inferior_ptid;
1159 }
1160
1161 /* Fetch register REGNO, or all registers if REGNO is -1.  Returns
1162    errno value.  */
1163
1164 static void
1165 monitor_fetch_register (struct regcache *regcache, int regno)
1166 {
1167   const char *name;
1168   char *zerobuf;
1169   char *regbuf;
1170   int i;
1171
1172   regbuf  = alloca (MAX_REGISTER_SIZE * 2 + 1);
1173   zerobuf = alloca (MAX_REGISTER_SIZE);
1174   memset (zerobuf, 0, MAX_REGISTER_SIZE);
1175
1176   if (current_monitor->regname != NULL)
1177     name = current_monitor->regname (regno);
1178   else
1179     name = current_monitor->regnames[regno];
1180   monitor_debug ("MON fetchreg %d '%s'\n", regno, name ? name : "(null name)");
1181
1182   if (!name || (*name == '\0'))
1183     {
1184       monitor_debug ("No register known for %d\n", regno);
1185       regcache_raw_supply (regcache, regno, zerobuf);
1186       return;
1187     }
1188
1189   /* Send the register examine command.  */
1190
1191   monitor_printf (current_monitor->getreg.cmd, name);
1192
1193   /* If RESP_DELIM is specified, we search for that as a leading
1194      delimiter for the register value.  Otherwise, we just start
1195      searching from the start of the buf.  */
1196
1197   if (current_monitor->getreg.resp_delim)
1198     {
1199       monitor_debug ("EXP getreg.resp_delim\n");
1200       monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1201       /* Handle case of first 32 registers listed in pairs.  */
1202       if (current_monitor->flags & MO_32_REGS_PAIRED
1203           && (regno & 1) != 0 && regno < 32)
1204         {
1205           monitor_debug ("EXP getreg.resp_delim\n");
1206           monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1207         }
1208     }
1209
1210   /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set.  */
1211   if (current_monitor->flags & MO_HEX_PREFIX)
1212     {
1213       int c;
1214
1215       c = readchar (timeout);
1216       while (c == ' ')
1217         c = readchar (timeout);
1218       if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1219         ;
1220       else
1221         error (_("Bad value returned from monitor "
1222                  "while fetching register %x."),
1223                regno);
1224     }
1225
1226   /* Read upto the maximum number of hex digits for this register, skipping
1227      spaces, but stop reading if something else is seen.  Some monitors
1228      like to drop leading zeros.  */
1229
1230   for (i = 0; i < register_size (get_regcache_arch (regcache), regno) * 2; i++)
1231     {
1232       int c;
1233
1234       c = readchar (timeout);
1235       while (c == ' ')
1236         c = readchar (timeout);
1237
1238       if (!isxdigit (c))
1239         break;
1240
1241       regbuf[i] = c;
1242     }
1243
1244   regbuf[i] = '\000';           /* Terminate the number.  */
1245   monitor_debug ("REGVAL '%s'\n", regbuf);
1246
1247   /* If TERM is present, we wait for that to show up.  Also, (if TERM
1248      is present), we will send TERM_CMD if that is present.  In any
1249      case, we collect all of the output into buf, and then wait for
1250      the normal prompt.  */
1251
1252   if (current_monitor->getreg.term)
1253     {
1254       monitor_debug ("EXP getreg.term\n");
1255       monitor_expect (current_monitor->getreg.term, NULL, 0); /* Get
1256                                                                  response.  */
1257     }
1258
1259   if (current_monitor->getreg.term_cmd)
1260     {
1261       monitor_debug ("EMIT getreg.term.cmd\n");
1262       monitor_printf (current_monitor->getreg.term_cmd);
1263     }
1264   if (!current_monitor->getreg.term ||  /* Already expected or */
1265       current_monitor->getreg.term_cmd)         /* ack expected.  */
1266     monitor_expect_prompt (NULL, 0);    /* Get response.  */
1267
1268   monitor_supply_register (regcache, regno, regbuf);
1269 }
1270
1271 /* Sometimes, it takes several commands to dump the registers.  */
1272 /* This is a primitive for use by variations of monitor interfaces in
1273    case they need to compose the operation.  */
1274
1275 int
1276 monitor_dump_reg_block (struct regcache *regcache, char *block_cmd)
1277 {
1278   char buf[TARGET_BUF_SIZE];
1279   int resp_len;
1280
1281   monitor_printf (block_cmd);
1282   resp_len = monitor_expect_prompt (buf, sizeof (buf));
1283   parse_register_dump (regcache, buf, resp_len);
1284   return 1;
1285 }
1286
1287
1288 /* Read the remote registers into the block regs.  */
1289 /* Call the specific function if it has been provided.  */
1290
1291 static void
1292 monitor_dump_regs (struct regcache *regcache)
1293 {
1294   char buf[TARGET_BUF_SIZE];
1295   int resp_len;
1296
1297   if (current_monitor->dumpregs)
1298     (*(current_monitor->dumpregs)) (regcache);  /* Call supplied function.  */
1299   else if (current_monitor->dump_registers)     /* Default version.  */
1300     {
1301       monitor_printf (current_monitor->dump_registers);
1302       resp_len = monitor_expect_prompt (buf, sizeof (buf));
1303       parse_register_dump (regcache, buf, resp_len);
1304     }
1305   else
1306     /* Need some way to read registers.  */
1307     internal_error (__FILE__, __LINE__,
1308                     _("failed internal consistency check"));
1309 }
1310
1311 static void
1312 monitor_fetch_registers (struct target_ops *ops,
1313                          struct regcache *regcache, int regno)
1314 {
1315   monitor_debug ("MON fetchregs\n");
1316   if (current_monitor->getreg.cmd)
1317     {
1318       if (regno >= 0)
1319         {
1320           monitor_fetch_register (regcache, regno);
1321           return;
1322         }
1323
1324       for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1325            regno++)
1326         monitor_fetch_register (regcache, regno);
1327     }
1328   else
1329     {
1330       monitor_dump_regs (regcache);
1331     }
1332 }
1333
1334 /* Store register REGNO, or all if REGNO == 0.  Return errno value.  */
1335
1336 static void
1337 monitor_store_register (struct regcache *regcache, int regno)
1338 {
1339   int reg_size = register_size (get_regcache_arch (regcache), regno);
1340   const char *name;
1341   ULONGEST val;
1342   
1343   if (current_monitor->regname != NULL)
1344     name = current_monitor->regname (regno);
1345   else
1346     name = current_monitor->regnames[regno];
1347   
1348   if (!name || (*name == '\0'))
1349     {
1350       monitor_debug ("MON Cannot store unknown register\n");
1351       return;
1352     }
1353
1354   regcache_cooked_read_unsigned (regcache, regno, &val);
1355   monitor_debug ("MON storeg %d %s\n", regno, phex (val, reg_size));
1356
1357   /* Send the register deposit command.  */
1358
1359   if (current_monitor->flags & MO_REGISTER_VALUE_FIRST)
1360     monitor_printf (current_monitor->setreg.cmd, val, name);
1361   else if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1362     monitor_printf (current_monitor->setreg.cmd, name);
1363   else
1364     monitor_printf (current_monitor->setreg.cmd, name, val);
1365
1366   if (current_monitor->setreg.resp_delim)
1367     {
1368       monitor_debug ("EXP setreg.resp_delim\n");
1369       monitor_expect_regexp (&setreg_resp_delim_pattern, NULL, 0);
1370       if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1371         monitor_printf ("%s\r", phex_nz (val, reg_size));
1372     }
1373   if (current_monitor->setreg.term)
1374     {
1375       monitor_debug ("EXP setreg.term\n");
1376       monitor_expect (current_monitor->setreg.term, NULL, 0);
1377       if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1378         monitor_printf ("%s\r", phex_nz (val, reg_size));
1379       monitor_expect_prompt (NULL, 0);
1380     }
1381   else
1382     monitor_expect_prompt (NULL, 0);
1383   if (current_monitor->setreg.term_cmd)         /* Mode exit required.  */
1384     {
1385       monitor_debug ("EXP setreg_termcmd\n");
1386       monitor_printf ("%s", current_monitor->setreg.term_cmd);
1387       monitor_expect_prompt (NULL, 0);
1388     }
1389 }                               /* monitor_store_register */
1390
1391 /* Store the remote registers.  */
1392
1393 static void
1394 monitor_store_registers (struct target_ops *ops,
1395                          struct regcache *regcache, int regno)
1396 {
1397   if (regno >= 0)
1398     {
1399       monitor_store_register (regcache, regno);
1400       return;
1401     }
1402
1403   for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1404        regno++)
1405     monitor_store_register (regcache, regno);
1406 }
1407
1408 /* Get ready to modify the registers array.  On machines which store
1409    individual registers, this doesn't need to do anything.  On machines
1410    which store all the registers in one fell swoop, this makes sure
1411    that registers contains all the registers from the program being
1412    debugged.  */
1413
1414 static void
1415 monitor_prepare_to_store (struct target_ops *self, struct regcache *regcache)
1416 {
1417   /* Do nothing, since we can store individual regs.  */
1418 }
1419
1420 static void
1421 monitor_files_info (struct target_ops *ops)
1422 {
1423   printf_unfiltered (_("\tAttached to %s at %d baud.\n"), dev_name, baud_rate);
1424 }
1425
1426 static int
1427 monitor_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1428 {
1429   enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
1430   unsigned int val, hostval;
1431   char *cmd;
1432   int i;
1433
1434   monitor_debug ("MON write %d %s\n", len, paddress (target_gdbarch (), memaddr));
1435
1436   if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1437     memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
1438
1439   /* Use memory fill command for leading 0 bytes.  */
1440
1441   if (current_monitor->fill)
1442     {
1443       for (i = 0; i < len; i++)
1444         if (myaddr[i] != 0)
1445           break;
1446
1447       if (i > 4)                /* More than 4 zeros is worth doing.  */
1448         {
1449           monitor_debug ("MON FILL %d\n", i);
1450           if (current_monitor->flags & MO_FILL_USES_ADDR)
1451             monitor_printf (current_monitor->fill, memaddr,
1452                             (memaddr + i) - 1, 0);
1453           else
1454             monitor_printf (current_monitor->fill, memaddr, i, 0);
1455
1456           monitor_expect_prompt (NULL, 0);
1457
1458           return i;
1459         }
1460     }
1461
1462 #if 0
1463   /* Can't actually use long longs if VAL is an int (nice idea, though).  */
1464   if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->setmem.cmdll)
1465     {
1466       len = 8;
1467       cmd = current_monitor->setmem.cmdll;
1468     }
1469   else
1470 #endif
1471   if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->setmem.cmdl)
1472     {
1473       len = 4;
1474       cmd = current_monitor->setmem.cmdl;
1475     }
1476   else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->setmem.cmdw)
1477     {
1478       len = 2;
1479       cmd = current_monitor->setmem.cmdw;
1480     }
1481   else
1482     {
1483       len = 1;
1484       cmd = current_monitor->setmem.cmdb;
1485     }
1486
1487   val = extract_unsigned_integer (myaddr, len, byte_order);
1488
1489   if (len == 4)
1490     {
1491       hostval = *(unsigned int *) myaddr;
1492       monitor_debug ("Hostval(%08x) val(%08x)\n", hostval, val);
1493     }
1494
1495
1496   if (current_monitor->flags & MO_NO_ECHO_ON_SETMEM)
1497     monitor_printf_noecho (cmd, memaddr, val);
1498   else if (current_monitor->flags & MO_SETMEM_INTERACTIVE)
1499     {
1500       monitor_printf_noecho (cmd, memaddr);
1501
1502       if (current_monitor->setmem.resp_delim)
1503         {
1504           monitor_debug ("EXP setmem.resp_delim");
1505           monitor_expect_regexp (&setmem_resp_delim_pattern, NULL, 0); 
1506           monitor_printf ("%x\r", val);
1507        }
1508       if (current_monitor->setmem.term)
1509         {
1510           monitor_debug ("EXP setmem.term");
1511           monitor_expect (current_monitor->setmem.term, NULL, 0);
1512           monitor_printf ("%x\r", val);
1513         }
1514       if (current_monitor->setmem.term_cmd)
1515         {       /* Emit this to get out of the memory editing state.  */
1516           monitor_printf ("%s", current_monitor->setmem.term_cmd);
1517           /* Drop through to expecting a prompt.  */
1518         }
1519     }
1520   else
1521     monitor_printf (cmd, memaddr, val);
1522
1523   monitor_expect_prompt (NULL, 0);
1524
1525   return len;
1526 }
1527
1528
1529 static int
1530 monitor_write_memory_bytes (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1531 {
1532   unsigned char val;
1533   int written = 0;
1534
1535   if (len == 0)
1536     return 0;
1537   /* Enter the sub mode.  */
1538   monitor_printf (current_monitor->setmem.cmdb, memaddr);
1539   monitor_expect_prompt (NULL, 0);
1540   while (len)
1541     {
1542       val = *myaddr;
1543       monitor_printf ("%x\r", val);
1544       myaddr++;
1545       memaddr++;
1546       written++;
1547       /* If we wanted to, here we could validate the address.  */
1548       monitor_expect_prompt (NULL, 0);
1549       len--;
1550     }
1551   /* Now exit the sub mode.  */
1552   monitor_printf (current_monitor->getreg.term_cmd);
1553   monitor_expect_prompt (NULL, 0);
1554   return written;
1555 }
1556
1557
1558 static void
1559 longlongendswap (unsigned char *a)
1560 {
1561   int i, j;
1562   unsigned char x;
1563
1564   i = 0;
1565   j = 7;
1566   while (i < 4)
1567     {
1568       x = *(a + i);
1569       *(a + i) = *(a + j);
1570       *(a + j) = x;
1571       i++, j--;
1572     }
1573 }
1574 /* Format 32 chars of long long value, advance the pointer.  */
1575 static char *hexlate = "0123456789abcdef";
1576 static char *
1577 longlong_hexchars (unsigned long long value,
1578                    char *outbuff)
1579 {
1580   if (value == 0)
1581     {
1582       *outbuff++ = '0';
1583       return outbuff;
1584     }
1585   else
1586     {
1587       static unsigned char disbuf[8];   /* disassembly buffer */
1588       unsigned char *scan, *limit;      /* loop controls */
1589       unsigned char c, nib;
1590       int leadzero = 1;
1591
1592       scan = disbuf;
1593       limit = scan + 8;
1594       {
1595         unsigned long long *dp;
1596
1597         dp = (unsigned long long *) scan;
1598         *dp = value;
1599       }
1600       longlongendswap (disbuf); /* FIXME: ONly on big endian hosts.  */
1601       while (scan < limit)
1602         {
1603           c = *scan++;          /* A byte of our long long value.  */
1604           if (leadzero)
1605             {
1606               if (c == 0)
1607                 continue;
1608               else
1609                 leadzero = 0;   /* Henceforth we print even zeroes.  */
1610             }
1611           nib = c >> 4;         /* high nibble bits */
1612           *outbuff++ = hexlate[nib];
1613           nib = c & 0x0f;       /* low nibble bits */
1614           *outbuff++ = hexlate[nib];
1615         }
1616       return outbuff;
1617     }
1618 }                               /* longlong_hexchars */
1619
1620
1621
1622 /* I am only going to call this when writing virtual byte streams.
1623    Which possably entails endian conversions.  */
1624
1625 static int
1626 monitor_write_memory_longlongs (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1627 {
1628   static char hexstage[20];     /* At least 16 digits required, plus null.  */
1629   char *endstring;
1630   long long *llptr;
1631   long long value;
1632   int written = 0;
1633
1634   llptr = (long long *) myaddr;
1635   if (len == 0)
1636     return 0;
1637   monitor_printf (current_monitor->setmem.cmdll, memaddr);
1638   monitor_expect_prompt (NULL, 0);
1639   while (len >= 8)
1640     {
1641       value = *llptr;
1642       endstring = longlong_hexchars (*llptr, hexstage);
1643       *endstring = '\0';        /* NUll terminate for printf.  */
1644       monitor_printf ("%s\r", hexstage);
1645       llptr++;
1646       memaddr += 8;
1647       written += 8;
1648       /* If we wanted to, here we could validate the address.  */
1649       monitor_expect_prompt (NULL, 0);
1650       len -= 8;
1651     }
1652   /* Now exit the sub mode.  */
1653   monitor_printf (current_monitor->getreg.term_cmd);
1654   monitor_expect_prompt (NULL, 0);
1655   return written;
1656 }                               /* */
1657
1658
1659
1660 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1661 /* This is for the large blocks of memory which may occur in downloading.
1662    And for monitors which use interactive entry,
1663    And for monitors which do not have other downloading methods.
1664    Without this, we will end up calling monitor_write_memory many times
1665    and do the entry and exit of the sub mode many times
1666    This currently assumes...
1667    MO_SETMEM_INTERACTIVE
1668    ! MO_NO_ECHO_ON_SETMEM
1669    To use this, the you have to patch the monitor_cmds block with
1670    this function.  Otherwise, its not tuned up for use by all
1671    monitor variations.  */
1672
1673 static int
1674 monitor_write_memory_block (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
1675 {
1676   int written;
1677
1678   written = 0;
1679   /* FIXME: This would be a good place to put the zero test.  */
1680 #if 1
1681   if ((len > 8) && (((len & 0x07)) == 0) && current_monitor->setmem.cmdll)
1682     {
1683       return monitor_write_memory_longlongs (memaddr, myaddr, len);
1684     }
1685 #endif
1686   written = monitor_write_memory_bytes (memaddr, myaddr, len);
1687   return written;
1688 }
1689
1690 /* This is an alternate form of monitor_read_memory which is used for monitors
1691    which can only read a single byte/word/etc. at a time.  */
1692
1693 static int
1694 monitor_read_memory_single (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1695 {
1696   enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
1697   unsigned int val;
1698   char membuf[sizeof (int) * 2 + 1];
1699   char *p;
1700   char *cmd;
1701
1702   monitor_debug ("MON read single\n");
1703 #if 0
1704   /* Can't actually use long longs (nice idea, though).  In fact, the
1705      call to strtoul below will fail if it tries to convert a value
1706      that's too big to fit in a long.  */
1707   if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->getmem.cmdll)
1708     {
1709       len = 8;
1710       cmd = current_monitor->getmem.cmdll;
1711     }
1712   else
1713 #endif
1714   if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->getmem.cmdl)
1715     {
1716       len = 4;
1717       cmd = current_monitor->getmem.cmdl;
1718     }
1719   else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->getmem.cmdw)
1720     {
1721       len = 2;
1722       cmd = current_monitor->getmem.cmdw;
1723     }
1724   else
1725     {
1726       len = 1;
1727       cmd = current_monitor->getmem.cmdb;
1728     }
1729
1730   /* Send the examine command.  */
1731
1732   monitor_printf (cmd, memaddr);
1733
1734   /* If RESP_DELIM is specified, we search for that as a leading
1735      delimiter for the memory value.  Otherwise, we just start
1736      searching from the start of the buf.  */
1737
1738   if (current_monitor->getmem.resp_delim)
1739     {
1740       monitor_debug ("EXP getmem.resp_delim\n");
1741       monitor_expect_regexp (&getmem_resp_delim_pattern, NULL, 0);
1742     }
1743
1744   /* Now, read the appropriate number of hex digits for this loc,
1745      skipping spaces.  */
1746
1747   /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set.  */
1748   if (current_monitor->flags & MO_HEX_PREFIX)
1749     {
1750       int c;
1751
1752       c = readchar (timeout);
1753       while (c == ' ')
1754         c = readchar (timeout);
1755       if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1756         ;
1757       else
1758         monitor_error ("monitor_read_memory_single", 
1759                        "bad response from monitor",
1760                        memaddr, 0, NULL, 0);
1761     }
1762
1763   {
1764     int i;
1765
1766     for (i = 0; i < len * 2; i++)
1767       {
1768         int c;
1769
1770         while (1)
1771           {
1772             c = readchar (timeout);
1773             if (isxdigit (c))
1774               break;
1775             if (c == ' ')
1776               continue;
1777             
1778             monitor_error ("monitor_read_memory_single",
1779                            "bad response from monitor",
1780                            memaddr, i, membuf, 0);
1781           }
1782       membuf[i] = c;
1783     }
1784     membuf[i] = '\000';         /* Terminate the number.  */
1785   }
1786
1787 /* If TERM is present, we wait for that to show up.  Also, (if TERM is
1788    present), we will send TERM_CMD if that is present.  In any case, we collect
1789    all of the output into buf, and then wait for the normal prompt.  */
1790
1791   if (current_monitor->getmem.term)
1792     {
1793       monitor_expect (current_monitor->getmem.term, NULL, 0); /* Get
1794                                                                  response.  */
1795
1796       if (current_monitor->getmem.term_cmd)
1797         {
1798           monitor_printf (current_monitor->getmem.term_cmd);
1799           monitor_expect_prompt (NULL, 0);
1800         }
1801     }
1802   else
1803     monitor_expect_prompt (NULL, 0);    /* Get response.  */
1804
1805   p = membuf;
1806   val = strtoul (membuf, &p, 16);
1807
1808   if (val == 0 && membuf == p)
1809     monitor_error ("monitor_read_memory_single",
1810                    "bad value from monitor",
1811                    memaddr, 0, membuf, 0);
1812
1813   /* supply register stores in target byte order, so swap here.  */
1814
1815   store_unsigned_integer (myaddr, len, byte_order, val);
1816
1817   return len;
1818 }
1819
1820 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1821    memory at MEMADDR.  Returns length moved.  Currently, we do no more
1822    than 16 bytes at a time.  */
1823
1824 static int
1825 monitor_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1826 {
1827   unsigned int val;
1828   char buf[512];
1829   char *p, *p1;
1830   int resp_len;
1831   int i;
1832   CORE_ADDR dumpaddr;
1833
1834   if (len <= 0)
1835     {
1836       monitor_debug ("Zero length call to monitor_read_memory\n");
1837       return 0;
1838     }
1839
1840   monitor_debug ("MON read block ta(%s) ha(%s) %d\n",
1841                  paddress (target_gdbarch (), memaddr),
1842                  host_address_to_string (myaddr), len);
1843
1844   if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1845     memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
1846
1847   if (current_monitor->flags & MO_GETMEM_READ_SINGLE)
1848     return monitor_read_memory_single (memaddr, myaddr, len);
1849
1850   len = min (len, 16);
1851
1852   /* Some dumpers align the first data with the preceding 16
1853      byte boundary.  Some print blanks and start at the
1854      requested boundary.  EXACT_DUMPADDR  */
1855
1856   dumpaddr = (current_monitor->flags & MO_EXACT_DUMPADDR)
1857     ? memaddr : memaddr & ~0x0f;
1858
1859   /* See if xfer would cross a 16 byte boundary.  If so, clip it.  */
1860   if (((memaddr ^ (memaddr + len - 1)) & ~0xf) != 0)
1861     len = ((memaddr + len) & ~0xf) - memaddr;
1862
1863   /* Send the memory examine command.  */
1864
1865   if (current_monitor->flags & MO_GETMEM_NEEDS_RANGE)
1866     monitor_printf (current_monitor->getmem.cmdb, memaddr, memaddr + len);
1867   else if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1868     monitor_printf (current_monitor->getmem.cmdb, dumpaddr);
1869   else
1870     monitor_printf (current_monitor->getmem.cmdb, memaddr, len);
1871
1872   /* If TERM is present, we wait for that to show up.  Also, (if TERM
1873      is present), we will send TERM_CMD if that is present.  In any
1874      case, we collect all of the output into buf, and then wait for
1875      the normal prompt.  */
1876
1877   if (current_monitor->getmem.term)
1878     {
1879       resp_len = monitor_expect (current_monitor->getmem.term,
1880                                  buf, sizeof buf);      /* Get response.  */
1881
1882       if (resp_len <= 0)
1883         monitor_error ("monitor_read_memory",
1884                        "excessive response from monitor",
1885                        memaddr, resp_len, buf, 0);
1886
1887       if (current_monitor->getmem.term_cmd)
1888         {
1889           serial_write (monitor_desc, current_monitor->getmem.term_cmd,
1890                         strlen (current_monitor->getmem.term_cmd));
1891           monitor_expect_prompt (NULL, 0);
1892         }
1893     }
1894   else
1895     resp_len = monitor_expect_prompt (buf, sizeof buf);  /* Get response.  */
1896
1897   p = buf;
1898
1899   /* If RESP_DELIM is specified, we search for that as a leading
1900      delimiter for the values.  Otherwise, we just start searching
1901      from the start of the buf.  */
1902
1903   if (current_monitor->getmem.resp_delim)
1904     {
1905       int retval, tmp;
1906       struct re_registers resp_strings;
1907
1908       monitor_debug ("MON getmem.resp_delim %s\n",
1909                      current_monitor->getmem.resp_delim);
1910
1911       memset (&resp_strings, 0, sizeof (struct re_registers));
1912       tmp = strlen (p);
1913       retval = re_search (&getmem_resp_delim_pattern, p, tmp, 0, tmp,
1914                           &resp_strings);
1915
1916       if (retval < 0)
1917         monitor_error ("monitor_read_memory",
1918                        "bad response from monitor",
1919                        memaddr, resp_len, buf, 0);
1920
1921       p += resp_strings.end[0];
1922 #if 0
1923       p = strstr (p, current_monitor->getmem.resp_delim);
1924       if (!p)
1925         monitor_error ("monitor_read_memory",
1926                        "bad response from monitor",
1927                        memaddr, resp_len, buf, 0);
1928       p += strlen (current_monitor->getmem.resp_delim);
1929 #endif
1930     }
1931   monitor_debug ("MON scanning  %d ,%s '%s'\n", len,
1932                  host_address_to_string (p), p);
1933   if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1934     {
1935       char c;
1936       int fetched = 0;
1937       i = len;
1938       c = *p;
1939
1940
1941       while (!(c == '\000' || c == '\n' || c == '\r') && i > 0)
1942         {
1943           if (isxdigit (c))
1944             {
1945               if ((dumpaddr >= memaddr) && (i > 0))
1946                 {
1947                   val = fromhex (c) * 16 + fromhex (*(p + 1));
1948                   *myaddr++ = val;
1949                   if (monitor_debug_p || remote_debug)
1950                     fprintf_unfiltered (gdb_stdlog, "[%02x]", val);
1951                   --i;
1952                   fetched++;
1953                 }
1954               ++dumpaddr;
1955               ++p;
1956             }
1957           ++p;                  /* Skip a blank or other non hex char.  */
1958           c = *p;
1959         }
1960       if (fetched == 0)
1961         error (_("Failed to read via monitor"));
1962       if (monitor_debug_p || remote_debug)
1963         fprintf_unfiltered (gdb_stdlog, "\n");
1964       return fetched;           /* Return the number of bytes actually
1965                                    read.  */
1966     }
1967   monitor_debug ("MON scanning bytes\n");
1968
1969   for (i = len; i > 0; i--)
1970     {
1971       /* Skip non-hex chars, but bomb on end of string and newlines.  */
1972
1973       while (1)
1974         {
1975           if (isxdigit (*p))
1976             break;
1977
1978           if (*p == '\000' || *p == '\n' || *p == '\r')
1979             monitor_error ("monitor_read_memory",
1980                            "badly terminated response from monitor",
1981                            memaddr, resp_len, buf, 0);
1982           p++;
1983         }
1984
1985       val = strtoul (p, &p1, 16);
1986
1987       if (val == 0 && p == p1)
1988         monitor_error ("monitor_read_memory",
1989                        "bad value from monitor",
1990                        memaddr, resp_len, buf, 0);
1991
1992       *myaddr++ = val;
1993
1994       if (i == 1)
1995         break;
1996
1997       p = p1;
1998     }
1999
2000   return len;
2001 }
2002
2003 /* Helper for monitor_xfer_partial that handles memory transfers.
2004    Arguments are like target_xfer_partial.  */
2005
2006 static enum target_xfer_status
2007 monitor_xfer_memory (gdb_byte *readbuf, const gdb_byte *writebuf,
2008                      ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
2009 {
2010   int res;
2011
2012   if (writebuf != NULL)
2013     {
2014       if (current_monitor->flags & MO_HAS_BLOCKWRITES)
2015         res = monitor_write_memory_block (memaddr, writebuf, len);
2016       else
2017         res = monitor_write_memory (memaddr, writebuf, len);
2018     }
2019   else
2020     {
2021       res = monitor_read_memory (memaddr, readbuf, len);
2022     }
2023
2024   if (res <= 0)
2025     return TARGET_XFER_E_IO;
2026   else
2027     {
2028       *xfered_len = (ULONGEST) res;
2029       return TARGET_XFER_OK;
2030     }
2031 }
2032
2033 /* Target to_xfer_partial implementation.  */
2034
2035 static enum target_xfer_status
2036 monitor_xfer_partial (struct target_ops *ops, enum target_object object,
2037                       const char *annex, gdb_byte *readbuf,
2038                       const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
2039                       ULONGEST *xfered_len)
2040 {
2041   switch (object)
2042     {
2043     case TARGET_OBJECT_MEMORY:
2044       return monitor_xfer_memory (readbuf, writebuf, offset, len, xfered_len);
2045
2046     default:
2047       return TARGET_XFER_E_IO;
2048     }
2049 }
2050
2051 static void
2052 monitor_kill (struct target_ops *ops)
2053 {
2054   return;                       /* Ignore attempts to kill target system.  */
2055 }
2056
2057 /* All we actually do is set the PC to the start address of exec_bfd.  */
2058
2059 static void
2060 monitor_create_inferior (struct target_ops *ops, char *exec_file,
2061                          char *args, char **env, int from_tty)
2062 {
2063   if (args && (*args != '\000'))
2064     error (_("Args are not supported by the monitor."));
2065
2066   first_time = 1;
2067   clear_proceed_status (0);
2068   regcache_write_pc (get_current_regcache (),
2069                      bfd_get_start_address (exec_bfd));
2070 }
2071
2072 /* Clean up when a program exits.
2073    The program actually lives on in the remote processor's RAM, and may be
2074    run again without a download.  Don't leave it full of breakpoint
2075    instructions.  */
2076
2077 static void
2078 monitor_mourn_inferior (struct target_ops *ops)
2079 {
2080   unpush_target (targ_ops);
2081   generic_mourn_inferior ();    /* Do all the proper things now.  */
2082   delete_thread_silent (monitor_ptid);
2083 }
2084
2085 /* Tell the monitor to add a breakpoint.  */
2086
2087 static int
2088 monitor_insert_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
2089                            struct bp_target_info *bp_tgt)
2090 {
2091   CORE_ADDR addr = bp_tgt->placed_address = bp_tgt->reqstd_address;
2092   int i;
2093   int bplen;
2094
2095   monitor_debug ("MON inst bkpt %s\n", paddress (gdbarch, addr));
2096   if (current_monitor->set_break == NULL)
2097     error (_("No set_break defined for this monitor"));
2098
2099   if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
2100     addr = gdbarch_addr_bits_remove (gdbarch, addr);
2101
2102   /* Determine appropriate breakpoint size for this address.  */
2103   gdbarch_breakpoint_from_pc (gdbarch, &addr, &bplen);
2104   bp_tgt->placed_address = addr;
2105   bp_tgt->placed_size = bplen;
2106
2107   for (i = 0; i < current_monitor->num_breakpoints; i++)
2108     {
2109       if (breakaddr[i] == 0)
2110         {
2111           breakaddr[i] = addr;
2112           monitor_printf (current_monitor->set_break, addr);
2113           monitor_expect_prompt (NULL, 0);
2114           return 0;
2115         }
2116     }
2117
2118   error (_("Too many breakpoints (> %d) for monitor."),
2119          current_monitor->num_breakpoints);
2120 }
2121
2122 /* Tell the monitor to remove a breakpoint.  */
2123
2124 static int
2125 monitor_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
2126                            struct bp_target_info *bp_tgt)
2127 {
2128   CORE_ADDR addr = bp_tgt->placed_address;
2129   int i;
2130
2131   monitor_debug ("MON rmbkpt %s\n", paddress (gdbarch, addr));
2132   if (current_monitor->clr_break == NULL)
2133     error (_("No clr_break defined for this monitor"));
2134
2135   for (i = 0; i < current_monitor->num_breakpoints; i++)
2136     {
2137       if (breakaddr[i] == addr)
2138         {
2139           breakaddr[i] = 0;
2140           /* Some monitors remove breakpoints based on the address.  */
2141           if (current_monitor->flags & MO_CLR_BREAK_USES_ADDR)
2142             monitor_printf (current_monitor->clr_break, addr);
2143           else if (current_monitor->flags & MO_CLR_BREAK_1_BASED)
2144             monitor_printf (current_monitor->clr_break, i + 1);
2145           else
2146             monitor_printf (current_monitor->clr_break, i);
2147           monitor_expect_prompt (NULL, 0);
2148           return 0;
2149         }
2150     }
2151   fprintf_unfiltered (gdb_stderr,
2152                       "Can't find breakpoint associated with %s\n",
2153                       paddress (gdbarch, addr));
2154   return 1;
2155 }
2156
2157 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2158    an S-record.  Return non-zero if the ACK is received properly.  */
2159
2160 static int
2161 monitor_wait_srec_ack (void)
2162 {
2163   int ch;
2164
2165   if (current_monitor->flags & MO_SREC_ACK_PLUS)
2166     {
2167       return (readchar (timeout) == '+');
2168     }
2169   else if (current_monitor->flags & MO_SREC_ACK_ROTATE)
2170     {
2171       /* Eat two backspaces, a "rotating" char (|/-\), and a space.  */
2172       if ((ch = readchar (1)) < 0)
2173         return 0;
2174       if ((ch = readchar (1)) < 0)
2175         return 0;
2176       if ((ch = readchar (1)) < 0)
2177         return 0;
2178       if ((ch = readchar (1)) < 0)
2179         return 0;
2180     }
2181   return 1;
2182 }
2183
2184 /* monitor_load -- download a file.  */
2185
2186 static void
2187 monitor_load (struct target_ops *self, const char *args, int from_tty)
2188 {
2189   CORE_ADDR load_offset = 0;
2190   char **argv;
2191   struct cleanup *old_cleanups;
2192   char *filename;
2193
2194   monitor_debug ("MON load\n");
2195
2196   if (args == NULL)
2197     error_no_arg (_("file to load"));
2198
2199   argv = gdb_buildargv (args);
2200   old_cleanups = make_cleanup_freeargv (argv);
2201
2202   filename = tilde_expand (argv[0]);
2203   make_cleanup (xfree, filename);
2204
2205   /* Enable user to specify address for downloading as 2nd arg to load.  */
2206   if (argv[1] != NULL)
2207     {
2208       const char *endptr;
2209
2210       load_offset = strtoulst (argv[1], &endptr, 0);
2211
2212       /* If the last word was not a valid number then
2213          treat it as a file name with spaces in.  */
2214       if (argv[1] == endptr)
2215         error (_("Invalid download offset:%s."), argv[1]);
2216
2217       if (argv[2] != NULL)
2218         error (_("Too many parameters."));
2219     }
2220
2221   monitor_printf (current_monitor->load);
2222   if (current_monitor->loadresp)
2223     monitor_expect (current_monitor->loadresp, NULL, 0);
2224
2225   load_srec (monitor_desc, filename, load_offset,
2226              32, SREC_ALL, hashmark,
2227              current_monitor->flags & MO_SREC_ACK ?
2228              monitor_wait_srec_ack : NULL);
2229
2230   monitor_expect_prompt (NULL, 0);
2231
2232   do_cleanups (old_cleanups);
2233
2234   /* Finally, make the PC point at the start address.  */
2235   if (exec_bfd)
2236     regcache_write_pc (get_current_regcache (),
2237                        bfd_get_start_address (exec_bfd));
2238
2239   /* There used to be code here which would clear inferior_ptid and
2240      call clear_symtab_users.  None of that should be necessary:
2241      monitor targets should behave like remote protocol targets, and
2242      since generic_load does none of those things, this function
2243      shouldn't either.
2244
2245      Furthermore, clearing inferior_ptid is *incorrect*.  After doing
2246      a load, we still have a valid connection to the monitor, with a
2247      live processor state to fiddle with.  The user can type
2248      `continue' or `jump *start' and make the program run.  If they do
2249      these things, however, GDB will be talking to a running program
2250      while inferior_ptid is null_ptid; this makes things like
2251      reinit_frame_cache very confused.  */
2252 }
2253
2254 static void
2255 monitor_stop (struct target_ops *self, ptid_t ptid)
2256 {
2257   monitor_debug ("MON stop\n");
2258   if ((current_monitor->flags & MO_SEND_BREAK_ON_STOP) != 0)
2259     serial_send_break (monitor_desc);
2260   if (current_monitor->stop)
2261     monitor_printf_noecho (current_monitor->stop);
2262 }
2263
2264 /* Put a COMMAND string out to MONITOR.  Output from MONITOR is placed
2265    in OUTPUT until the prompt is seen.  FIXME: We read the characters
2266    ourseleves here cause of a nasty echo.  */
2267
2268 static void
2269 monitor_rcmd (struct target_ops *self, const char *command,
2270               struct ui_file *outbuf)
2271 {
2272   char *p;
2273   int resp_len;
2274   char buf[1000];
2275
2276   if (monitor_desc == NULL)
2277     error (_("monitor target not open."));
2278
2279   p = current_monitor->prompt;
2280
2281   /* Send the command.  Note that if no args were supplied, then we're
2282      just sending the monitor a newline, which is sometimes useful.  */
2283
2284   monitor_printf ("%s\r", (command ? command : ""));
2285
2286   resp_len = monitor_expect_prompt (buf, sizeof buf);
2287
2288   fputs_unfiltered (buf, outbuf);       /* Output the response.  */
2289 }
2290
2291 /* Convert hex digit A to a number.  */
2292
2293 #if 0
2294 static int
2295 from_hex (int a)
2296 {
2297   if (a >= '0' && a <= '9')
2298     return a - '0';
2299   if (a >= 'a' && a <= 'f')
2300     return a - 'a' + 10;
2301   if (a >= 'A' && a <= 'F')
2302     return a - 'A' + 10;
2303
2304   error (_("Reply contains invalid hex digit 0x%x"), a);
2305 }
2306 #endif
2307
2308 char *
2309 monitor_get_dev_name (void)
2310 {
2311   return dev_name;
2312 }
2313
2314 /* Check to see if a thread is still alive.  */
2315
2316 static int
2317 monitor_thread_alive (struct target_ops *ops, ptid_t ptid)
2318 {
2319   if (ptid_equal (ptid, monitor_ptid))
2320     /* The monitor's task is always alive.  */
2321     return 1;
2322
2323   return 0;
2324 }
2325
2326 /* Convert a thread ID to a string.  Returns the string in a static
2327    buffer.  */
2328
2329 static char *
2330 monitor_pid_to_str (struct target_ops *ops, ptid_t ptid)
2331 {
2332   static char buf[64];
2333
2334   if (ptid_equal (monitor_ptid, ptid))
2335     {
2336       xsnprintf (buf, sizeof buf, "Thread <main>");
2337       return buf;
2338     }
2339
2340   return normal_pid_to_str (ptid);
2341 }
2342
2343 static struct target_ops monitor_ops;
2344
2345 static void
2346 init_base_monitor_ops (void)
2347 {
2348   monitor_ops.to_close = monitor_close;
2349   monitor_ops.to_detach = monitor_detach;
2350   monitor_ops.to_resume = monitor_resume;
2351   monitor_ops.to_wait = monitor_wait;
2352   monitor_ops.to_fetch_registers = monitor_fetch_registers;
2353   monitor_ops.to_store_registers = monitor_store_registers;
2354   monitor_ops.to_prepare_to_store = monitor_prepare_to_store;
2355   monitor_ops.to_xfer_partial = monitor_xfer_partial;
2356   monitor_ops.to_files_info = monitor_files_info;
2357   monitor_ops.to_insert_breakpoint = monitor_insert_breakpoint;
2358   monitor_ops.to_remove_breakpoint = monitor_remove_breakpoint;
2359   monitor_ops.to_kill = monitor_kill;
2360   monitor_ops.to_load = monitor_load;
2361   monitor_ops.to_create_inferior = monitor_create_inferior;
2362   monitor_ops.to_mourn_inferior = monitor_mourn_inferior;
2363   monitor_ops.to_stop = monitor_stop;
2364   monitor_ops.to_rcmd = monitor_rcmd;
2365   monitor_ops.to_log_command = serial_log_command;
2366   monitor_ops.to_thread_alive = monitor_thread_alive;
2367   monitor_ops.to_pid_to_str = monitor_pid_to_str;
2368   monitor_ops.to_stratum = process_stratum;
2369   monitor_ops.to_has_all_memory = default_child_has_all_memory;
2370   monitor_ops.to_has_memory = default_child_has_memory;
2371   monitor_ops.to_has_stack = default_child_has_stack;
2372   monitor_ops.to_has_registers = default_child_has_registers;
2373   monitor_ops.to_has_execution = default_child_has_execution;
2374   monitor_ops.to_magic = OPS_MAGIC;
2375 }                               /* init_base_monitor_ops */
2376
2377 /* Init the target_ops structure pointed at by OPS.  */
2378
2379 void
2380 init_monitor_ops (struct target_ops *ops)
2381 {
2382   if (monitor_ops.to_magic != OPS_MAGIC)
2383     init_base_monitor_ops ();
2384
2385   memcpy (ops, &monitor_ops, sizeof monitor_ops);
2386 }
2387
2388 /* Define additional commands that are usually only used by monitors.  */
2389
2390 /* -Wmissing-prototypes */
2391 extern initialize_file_ftype _initialize_remote_monitors;
2392
2393 void
2394 _initialize_remote_monitors (void)
2395 {
2396   init_base_monitor_ops ();
2397   add_setshow_boolean_cmd ("hash", no_class, &hashmark, _("\
2398 Set display of activity while downloading a file."), _("\
2399 Show display of activity while downloading a file."), _("\
2400 When enabled, a hashmark \'#\' is displayed."),
2401                            NULL,
2402                            NULL, /* FIXME: i18n: */
2403                            &setlist, &showlist);
2404
2405   add_setshow_zuinteger_cmd ("monitor", no_class, &monitor_debug_p, _("\
2406 Set debugging of remote monitor communication."), _("\
2407 Show debugging of remote monitor communication."), _("\
2408 When enabled, communication between GDB and the remote monitor\n\
2409 is displayed."),
2410                              NULL,
2411                              NULL, /* FIXME: i18n: */
2412                              &setdebuglist, &showdebuglist);
2413
2414   /* Yes, 42000 is arbitrary.  The only sense out of it, is that it
2415      isn't 0.  */
2416   monitor_ptid = ptid_build (42000, 0, 42000);
2417 }