1 /* Remote debugging interface for boot monitors, for GDB.
3 Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
4 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
6 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
7 Resurrected from the ashes by Stu Grossman.
9 This file is part of GDB.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
26 /* This file was derived from various remote-* modules. It is a collection
27 of generic support functions so GDB can talk directly to a ROM based
28 monitor. This saves use from having to hack an exception based handler
29 into existence, and makes for quick porting.
31 This module talks to a debug monitor called 'MONITOR', which
32 We communicate with MONITOR via either a direct serial line, or a TCP
33 (or possibly TELNET) stream to a terminal multiplexor,
34 which in turn talks to the target board. */
36 /* FIXME 32x64: This code assumes that registers and addresses are at
37 most 32 bits long. If they can be larger, you will need to declare
38 values as LONGEST and use %llx or some such to print values when
39 building commands to send to the monitor. Since we don't know of
40 any actual 64-bit targets with ROM monitors that use this code,
41 it's not an issue right now. -sts 4/18/96 */
48 #include "gdb_string.h"
49 #include <sys/types.h>
55 #include "gdb_regex.h"
59 static char *dev_name;
60 static struct target_ops *targ_ops;
62 static void monitor_vsprintf (char *sndbuf, char *pattern, va_list args);
64 static int readchar (int timeout);
66 static void monitor_fetch_register (int regno);
67 static void monitor_store_register (int regno);
69 static void monitor_printable_string (char *newstr, char *oldstr, int len);
70 static void monitor_error (char *function, char *message, CORE_ADDR memaddr, int len, char *string, int final_char);
71 static void monitor_detach (char *args, int from_tty);
72 static void monitor_resume (ptid_t ptid, int step, enum target_signal sig);
73 static void monitor_interrupt (int signo);
74 static void monitor_interrupt_twice (int signo);
75 static void monitor_interrupt_query (void);
76 static void monitor_wait_cleanup (void *old_timeout);
78 static ptid_t monitor_wait (ptid_t ptid, struct target_waitstatus *status);
79 static void monitor_fetch_registers (int regno);
80 static void monitor_store_registers (int regno);
81 static void monitor_prepare_to_store (void);
82 static int monitor_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
84 struct mem_attrib *attrib,
85 struct target_ops *target);
86 static void monitor_files_info (struct target_ops *ops);
87 static int monitor_insert_breakpoint (CORE_ADDR addr, char *shadow);
88 static int monitor_remove_breakpoint (CORE_ADDR addr, char *shadow);
89 static void monitor_kill (void);
90 static void monitor_load (char *file, int from_tty);
91 static void monitor_mourn_inferior (void);
92 static void monitor_stop (void);
94 static int monitor_read_memory (CORE_ADDR addr, char *myaddr, int len);
95 static int monitor_write_memory (CORE_ADDR addr, char *myaddr, int len);
96 static int monitor_write_memory_bytes (CORE_ADDR addr, char *myaddr, int len);
97 static int monitor_write_memory_block (CORE_ADDR memaddr,
98 char *myaddr, int len);
99 static int monitor_expect_regexp (struct re_pattern_buffer *pat,
100 char *buf, int buflen);
101 static void monitor_dump_regs (void);
103 static int from_hex (int a);
104 static unsigned long get_hex_word (void);
106 static void parse_register_dump (char *, int);
108 static struct monitor_ops *current_monitor;
110 static int hashmark; /* flag set by "set hash" */
112 static int timeout = 30;
114 static int in_monitor_wait = 0; /* Non-zero means we are in monitor_wait() */
116 static void (*ofunc) (); /* Old SIGINT signal handler */
118 static CORE_ADDR *breakaddr;
120 /* Descriptor for I/O to remote machine. Initialize it to NULL so
121 that monitor_open knows that we don't have a file open when the
124 static struct serial *monitor_desc = NULL;
126 /* Pointer to regexp pattern matching data */
128 static struct re_pattern_buffer register_pattern;
129 static char register_fastmap[256];
131 static struct re_pattern_buffer getmem_resp_delim_pattern;
132 static char getmem_resp_delim_fastmap[256];
134 static struct re_pattern_buffer setmem_resp_delim_pattern;
135 static char setmem_resp_delim_fastmap[256];
137 static struct re_pattern_buffer setreg_resp_delim_pattern;
138 static char setreg_resp_delim_fastmap[256];
140 static int dump_reg_flag; /* Non-zero means do a dump_registers cmd when
141 monitor_wait wakes up. */
143 static int first_time = 0; /* is this the first time we're executing after
144 gaving created the child proccess? */
146 #define TARGET_BUF_SIZE 2048
148 /* Monitor specific debugging information. Typically only useful to
149 the developer of a new monitor interface. */
151 static void monitor_debug (const char *fmt, ...) ATTR_FORMAT(printf, 1, 2);
153 static int monitor_debug_p = 0;
155 /* NOTE: This file alternates between monitor_debug_p and remote_debug
156 when determining if debug information is printed. Perhaphs this
157 could be simplified. */
160 monitor_debug (const char *fmt, ...)
165 va_start (args, fmt);
166 vfprintf_filtered (gdb_stdlog, fmt, args);
172 /* Convert a string into a printable representation, Return # byte in
173 the new string. When LEN is >0 it specifies the size of the
174 string. Otherwize strlen(oldstr) is used. */
177 monitor_printable_string (char *newstr, char *oldstr, int len)
183 len = strlen (oldstr);
185 for (i = 0; i < len; i++)
196 sprintf (newstr, "\\x%02x", ch & 0xff);
235 /* Print monitor errors with a string, converting the string to printable
239 monitor_error (char *function, char *message,
240 CORE_ADDR memaddr, int len, char *string, int final_char)
242 int real_len = (len == 0 && string != (char *) 0) ? strlen (string) : len;
243 char *safe_string = alloca ((real_len * 4) + 1);
244 monitor_printable_string (safe_string, string, real_len);
247 error ("%s (0x%s): %s: %s%c", function, paddr_nz (memaddr), message, safe_string, final_char);
249 error ("%s (0x%s): %s: %s", function, paddr_nz (memaddr), message, safe_string);
252 /* Convert hex digit A to a number. */
257 if (a >= '0' && a <= '9')
259 else if (a >= 'a' && a <= 'f')
261 else if (a >= 'A' && a <= 'F')
264 error ("Invalid hex digit %d", a);
267 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
269 This function exists to get around the problem that many host platforms
270 don't have a printf that can print 64-bit addresses. The %A format
271 specification is recognized as a special case, and causes the argument
272 to be printed as a 64-bit hexadecimal address.
274 Only format specifiers of the form "[0-9]*[a-z]" are recognized.
275 If it is a '%s' format, the argument is a string; otherwise the
276 argument is assumed to be a long integer.
278 %% is also turned into a single %.
282 monitor_vsprintf (char *sndbuf, char *pattern, va_list args)
292 for (p = pattern; *p; p++)
296 /* Copy the format specifier to a separate buffer. */
298 for (i = 1; *p >= '0' && *p <= '9' && i < (int) sizeof (format) - 2;
301 format[i] = fmt = *p;
302 format[i + 1] = '\0';
304 /* Fetch the next argument and print it. */
308 strcpy (sndbuf, "%");
311 arg_addr = va_arg (args, CORE_ADDR);
312 strcpy (sndbuf, paddr_nz (arg_addr));
315 arg_string = va_arg (args, char *);
316 sprintf (sndbuf, format, arg_string);
319 arg_int = va_arg (args, long);
320 sprintf (sndbuf, format, arg_int);
323 sndbuf += strlen (sndbuf);
332 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
333 Works just like printf. */
336 monitor_printf_noecho (char *pattern,...)
342 va_start (args, pattern);
344 monitor_vsprintf (sndbuf, pattern, args);
346 len = strlen (sndbuf);
347 if (len + 1 > sizeof sndbuf)
348 internal_error (__FILE__, __LINE__, "failed internal consistency check");
352 char *safe_string = (char *) alloca ((strlen (sndbuf) * 4) + 1);
353 monitor_printable_string (safe_string, sndbuf, 0);
354 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
357 monitor_write (sndbuf, len);
360 /* monitor_printf -- Send data to monitor and check the echo. Works just like
364 monitor_printf (char *pattern,...)
370 va_start (args, pattern);
372 monitor_vsprintf (sndbuf, pattern, args);
374 len = strlen (sndbuf);
375 if (len + 1 > sizeof sndbuf)
376 internal_error (__FILE__, __LINE__, "failed internal consistency check");
380 char *safe_string = (char *) alloca ((len * 4) + 1);
381 monitor_printable_string (safe_string, sndbuf, 0);
382 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
385 monitor_write (sndbuf, len);
387 /* We used to expect that the next immediate output was the characters we
388 just output, but sometimes some extra junk appeared before the characters
389 we expected, like an extra prompt, or a portmaster sending telnet negotiations.
390 So, just start searching for what we sent, and skip anything unknown. */
391 monitor_debug ("ExpectEcho\n");
392 monitor_expect (sndbuf, (char *) 0, 0);
396 /* Write characters to the remote system. */
399 monitor_write (char *buf, int buflen)
401 if (serial_write (monitor_desc, buf, buflen))
402 fprintf_unfiltered (gdb_stderr, "serial_write failed: %s\n",
403 safe_strerror (errno));
407 /* Read a binary character from the remote system, doing all the fancy
408 timeout stuff, but without interpreting the character in any way,
409 and without printing remote debug information. */
412 monitor_readchar (void)
420 c = serial_readchar (monitor_desc, timeout);
423 c &= 0xff; /* don't lose bit 7 */
430 if (c == SERIAL_TIMEOUT)
431 error ("Timeout reading from remote system.");
433 perror_with_name ("remote-monitor");
437 /* Read a character from the remote system, doing all the fancy
441 readchar (int timeout)
446 last_random, last_nl, last_cr, last_crnl
454 c = serial_readchar (monitor_desc, timeout);
459 /* This seems to interfere with proper function of the
461 if (monitor_debug_p || remote_debug)
466 puts_debug ("read -->", buf, "<--");
471 /* Canonicialize \n\r combinations into one \r */
472 if ((current_monitor->flags & MO_HANDLE_NL) != 0)
474 if ((c == '\r' && state == last_nl)
475 || (c == '\n' && state == last_cr))
496 if (c == SERIAL_TIMEOUT)
498 /* I fail to see how detaching here can be useful */
499 if (in_monitor_wait) /* Watchdog went off */
501 target_mourn_inferior ();
502 error ("GDB serial timeout has expired. Target detached.\n");
506 error ("Timeout reading from remote system.");
508 perror_with_name ("remote-monitor");
511 /* Scan input from the remote system, until STRING is found. If BUF is non-
512 zero, then collect input until we have collected either STRING or BUFLEN-1
513 chars. In either case we terminate BUF with a 0. If input overflows BUF
514 because STRING can't be found, return -1, else return number of chars in BUF
515 (minus the terminating NUL). Note that in the non-overflow case, STRING
516 will be at the end of BUF. */
519 monitor_expect (char *string, char *buf, int buflen)
522 int obuflen = buflen;
524 extern struct target_ops *targ_ops;
528 char *safe_string = (char *) alloca ((strlen (string) * 4) + 1);
529 monitor_printable_string (safe_string, string, 0);
530 fprintf_unfiltered (gdb_stdlog, "MON Expecting '%s'\n", safe_string);
545 c = readchar (timeout);
552 c = readchar (timeout);
554 /* Don't expect any ^C sent to be echoed */
556 if (*p == '\003' || c == *p)
566 return obuflen - buflen;
573 // OBSOLETE else if ((c == '\021' || c == '\023') &&
574 // OBSOLETE (STREQ (targ_ops->to_shortname, "m32r")
575 // OBSOLETE || STREQ (targ_ops->to_shortname, "mon2000")))
576 // OBSOLETE { /* m32r monitor emits random DC1/DC3 chars */
577 // OBSOLETE continue;
582 /* We got a character that doesn't match the string. We need to
583 back up p, but how far? If we're looking for "..howdy" and the
584 monitor sends "...howdy"? There's certainly a match in there,
585 but when we receive the third ".", we won't find it if we just
586 restart the matching at the beginning of the string.
588 This is a Boyer-Moore kind of situation. We want to reset P to
589 the end of the longest prefix of STRING that is a suffix of
590 what we've read so far. In the example above, that would be
591 ".." --- the longest prefix of "..howdy" that is a suffix of
592 "...". This longest prefix could be the empty string, if C
593 is nowhere to be found in STRING.
595 If this longest prefix is not the empty string, it must contain
596 C, so let's search from the end of STRING for instances of C,
597 and see if the portion of STRING before that is a suffix of
598 what we read before C. Actually, we can search backwards from
599 p, since we know no prefix can be longer than that.
601 Note that we can use STRING itself, along with C, as a record
602 of what we've received so far. :) */
605 for (i = (p - string) - 1; i >= 0; i--)
608 /* Is this prefix a suffix of what we've read so far?
610 string[0 .. i-1] == string[p - i, p - 1]? */
611 if (! memcmp (string, p - i, i))
623 /* Search for a regexp. */
626 monitor_expect_regexp (struct re_pattern_buffer *pat, char *buf, int buflen)
630 monitor_debug ("MON Expecting regexp\n");
635 mybuf = alloca (TARGET_BUF_SIZE);
636 buflen = TARGET_BUF_SIZE;
644 if (p - mybuf >= buflen)
645 { /* Buffer about to overflow */
647 /* On overflow, we copy the upper half of the buffer to the lower half. Not
648 great, but it usually works... */
650 memcpy (mybuf, mybuf + buflen / 2, buflen / 2);
651 p = mybuf + buflen / 2;
654 *p++ = readchar (timeout);
656 retval = re_search (pat, mybuf, p - mybuf, 0, p - mybuf, NULL);
662 /* Keep discarding input until we see the MONITOR prompt.
664 The convention for dealing with the prompt is that you
666 o *then* wait for the prompt.
668 Thus the last thing that a procedure does with the serial line will
669 be an monitor_expect_prompt(). Exception: monitor_resume does not
670 wait for the prompt, because the terminal is being handed over to
671 the inferior. However, the next thing which happens after that is
672 a monitor_wait which does wait for the prompt. Note that this
673 includes abnormal exit, e.g. error(). This is necessary to prevent
674 getting into states from which we can't recover. */
677 monitor_expect_prompt (char *buf, int buflen)
679 monitor_debug ("MON Expecting prompt\n");
680 return monitor_expect (current_monitor->prompt, buf, buflen);
683 /* Get N 32-bit words from remote, each preceded by a space, and put
684 them in registers starting at REGNO. */
695 ch = readchar (timeout);
696 while (isspace (ch));
700 for (i = 7; i >= 1; i--)
702 ch = readchar (timeout);
705 val = (val << 4) | from_hex (ch);
713 compile_pattern (char *pattern, struct re_pattern_buffer *compiled_pattern,
719 compiled_pattern->fastmap = fastmap;
721 tmp = re_set_syntax (RE_SYNTAX_EMACS);
722 val = re_compile_pattern (pattern,
728 error ("compile_pattern: Can't compile pattern string `%s': %s!", pattern, val);
731 re_compile_fastmap (compiled_pattern);
734 /* Open a connection to a remote debugger. NAME is the filename used
735 for communication. */
738 monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty)
743 if (mon_ops->magic != MONITOR_OPS_MAGIC)
744 error ("Magic number of monitor_ops struct wrong.");
746 targ_ops = mon_ops->target;
747 name = targ_ops->to_shortname;
750 error ("Use `target %s DEVICE-NAME' to use a serial port, or \n\
751 `target %s HOST-NAME:PORT-NUMBER' to use a network connection.", name, name);
753 target_preopen (from_tty);
755 /* Setup pattern for register dump */
757 if (mon_ops->register_pattern)
758 compile_pattern (mon_ops->register_pattern, ®ister_pattern,
761 if (mon_ops->getmem.resp_delim)
762 compile_pattern (mon_ops->getmem.resp_delim, &getmem_resp_delim_pattern,
763 getmem_resp_delim_fastmap);
765 if (mon_ops->setmem.resp_delim)
766 compile_pattern (mon_ops->setmem.resp_delim, &setmem_resp_delim_pattern,
767 setmem_resp_delim_fastmap);
769 if (mon_ops->setreg.resp_delim)
770 compile_pattern (mon_ops->setreg.resp_delim, &setreg_resp_delim_pattern,
771 setreg_resp_delim_fastmap);
773 unpush_target (targ_ops);
777 dev_name = xstrdup (args);
779 monitor_desc = serial_open (dev_name);
782 perror_with_name (dev_name);
786 if (serial_setbaudrate (monitor_desc, baud_rate))
788 serial_close (monitor_desc);
789 perror_with_name (dev_name);
793 serial_raw (monitor_desc);
795 serial_flush_input (monitor_desc);
797 /* some systems only work with 2 stop bits */
799 serial_setstopbits (monitor_desc, mon_ops->stopbits);
801 current_monitor = mon_ops;
803 /* See if we can wake up the monitor. First, try sending a stop sequence,
804 then send the init strings. Last, remove all breakpoints. */
806 if (current_monitor->stop)
809 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
811 monitor_debug ("EXP Open echo\n");
812 monitor_expect_prompt (NULL, 0);
816 /* wake up the monitor and see if it's alive */
817 for (p = mon_ops->init; *p != NULL; p++)
819 /* Some of the characters we send may not be echoed,
820 but we hope to get a prompt at the end of it all. */
822 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
825 monitor_printf_noecho (*p);
826 monitor_expect_prompt (NULL, 0);
829 serial_flush_input (monitor_desc);
831 /* Alloc breakpoints */
832 if (mon_ops->set_break != NULL)
834 if (mon_ops->num_breakpoints == 0)
835 mon_ops->num_breakpoints = 8;
837 breakaddr = (CORE_ADDR *) xmalloc (mon_ops->num_breakpoints * sizeof (CORE_ADDR));
838 memset (breakaddr, 0, mon_ops->num_breakpoints * sizeof (CORE_ADDR));
841 /* Remove all breakpoints */
843 if (mon_ops->clr_all_break)
845 monitor_printf (mon_ops->clr_all_break);
846 monitor_expect_prompt (NULL, 0);
850 printf_unfiltered ("Remote target %s connected to %s\n", name, dev_name);
852 push_target (targ_ops);
854 inferior_ptid = pid_to_ptid (42000); /* Make run command think we are busy... */
856 /* Give monitor_wait something to read */
858 monitor_printf (current_monitor->line_term);
863 /* Close out all files and local state before this target loses
867 monitor_close (int quitting)
870 serial_close (monitor_desc);
872 /* Free breakpoint memory */
873 if (breakaddr != NULL)
882 /* Terminate the open connection to the remote debugger. Use this
883 when you want to detach and do something else with your gdb. */
886 monitor_detach (char *args, int from_tty)
888 pop_target (); /* calls monitor_close to do the real work */
890 printf_unfiltered ("Ending remote %s debugging\n", target_shortname);
893 /* Convert VALSTR into the target byte-ordered value of REGNO and store it. */
896 monitor_supply_register (int regno, char *valstr)
899 unsigned char regbuf[MAX_REGISTER_SIZE];
904 while (p && *p != '\0')
906 if (*p == '\r' || *p == '\n')
917 if (!isxdigit (*p) && *p != 'x')
923 val += fromhex (*p++);
925 monitor_debug ("Supplying Register %d %s\n", regno, valstr);
927 if (val == 0 && valstr == p)
928 error ("monitor_supply_register (%d): bad value from monitor: %s.",
931 /* supply register stores in target byte order, so swap here */
933 store_unsigned_integer (regbuf, REGISTER_RAW_SIZE (regno), val);
935 supply_register (regno, regbuf);
940 /* Tell the remote machine to resume. */
943 monitor_resume (ptid_t ptid, int step, enum target_signal sig)
945 /* Some monitors require a different command when starting a program */
946 monitor_debug ("MON resume\n");
947 if (current_monitor->flags & MO_RUN_FIRST_TIME && first_time == 1)
950 monitor_printf ("run\r");
951 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
956 monitor_printf (current_monitor->step);
959 if (current_monitor->continue_hook)
960 (*current_monitor->continue_hook) ();
962 monitor_printf (current_monitor->cont);
963 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
968 /* Parse the output of a register dump command. A monitor specific
969 regexp is used to extract individual register descriptions of the
970 form REG=VAL. Each description is split up into a name and a value
971 string which are passed down to monitor specific code. */
974 parse_register_dump (char *buf, int len)
976 monitor_debug ("MON Parsing register dump\n");
979 int regnamelen, vallen;
981 /* Element 0 points to start of register name, and element 1
982 points to the start of the register value. */
983 struct re_registers register_strings;
985 memset (®ister_strings, 0, sizeof (struct re_registers));
987 if (re_search (®ister_pattern, buf, len, 0, len,
988 ®ister_strings) == -1)
991 regnamelen = register_strings.end[1] - register_strings.start[1];
992 regname = buf + register_strings.start[1];
993 vallen = register_strings.end[2] - register_strings.start[2];
994 val = buf + register_strings.start[2];
996 current_monitor->supply_register (regname, regnamelen, val, vallen);
998 buf += register_strings.end[0];
999 len -= register_strings.end[0];
1003 /* Send ^C to target to halt it. Target will respond, and send us a
1007 monitor_interrupt (int signo)
1009 /* If this doesn't work, try more severe steps. */
1010 signal (signo, monitor_interrupt_twice);
1012 if (monitor_debug_p || remote_debug)
1013 fprintf_unfiltered (gdb_stdlog, "monitor_interrupt called\n");
1018 /* The user typed ^C twice. */
1021 monitor_interrupt_twice (int signo)
1023 signal (signo, ofunc);
1025 monitor_interrupt_query ();
1027 signal (signo, monitor_interrupt);
1030 /* Ask the user what to do when an interrupt is received. */
1033 monitor_interrupt_query (void)
1035 target_terminal_ours ();
1037 if (query ("Interrupted while waiting for the program.\n\
1038 Give up (and stop debugging it)? "))
1040 target_mourn_inferior ();
1041 throw_exception (RETURN_QUIT);
1044 target_terminal_inferior ();
1048 monitor_wait_cleanup (void *old_timeout)
1050 timeout = *(int *) old_timeout;
1051 signal (SIGINT, ofunc);
1052 in_monitor_wait = 0;
1058 monitor_wait_filter (char *buf,
1061 struct target_waitstatus *status
1067 resp_len = monitor_expect_prompt (buf, bufmax);
1068 *ext_resp_len = resp_len;
1071 fprintf_unfiltered (gdb_stderr, "monitor_wait: excessive response from monitor: %s.", buf);
1073 while (resp_len < 0);
1075 /* Print any output characters that were preceded by ^O. */
1076 /* FIXME - This would be great as a user settabgle flag */
1077 if (monitor_debug_p || remote_debug
1078 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1082 for (i = 0; i < resp_len - 1; i++)
1084 putchar_unfiltered (buf[++i]);
1090 /* Wait until the remote machine stops, then return, storing status in
1091 status just as `wait' would. */
1094 monitor_wait (ptid_t ptid, struct target_waitstatus *status)
1096 int old_timeout = timeout;
1097 char buf[TARGET_BUF_SIZE];
1099 struct cleanup *old_chain;
1101 status->kind = TARGET_WAITKIND_EXITED;
1102 status->value.integer = 0;
1104 old_chain = make_cleanup (monitor_wait_cleanup, &old_timeout);
1105 monitor_debug ("MON wait\n");
1108 /* This is somthing other than a maintenance command */
1109 in_monitor_wait = 1;
1110 timeout = watchdog > 0 ? watchdog : -1;
1112 timeout = -1; /* Don't time out -- user program is running. */
1115 ofunc = (void (*)()) signal (SIGINT, monitor_interrupt);
1117 if (current_monitor->wait_filter)
1118 (*current_monitor->wait_filter) (buf, sizeof (buf), &resp_len, status);
1120 monitor_wait_filter (buf, sizeof (buf), &resp_len, status);
1122 #if 0 /* Transferred to monitor wait filter */
1125 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1128 fprintf_unfiltered (gdb_stderr, "monitor_wait: excessive response from monitor: %s.", buf);
1130 while (resp_len < 0);
1132 /* Print any output characters that were preceded by ^O. */
1133 /* FIXME - This would be great as a user settabgle flag */
1134 if (monitor_debug_p || remote_debug
1135 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1139 for (i = 0; i < resp_len - 1; i++)
1141 putchar_unfiltered (buf[++i]);
1145 signal (SIGINT, ofunc);
1147 timeout = old_timeout;
1149 if (dump_reg_flag && current_monitor->dump_registers)
1152 monitor_printf (current_monitor->dump_registers);
1153 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1156 if (current_monitor->register_pattern)
1157 parse_register_dump (buf, resp_len);
1159 monitor_debug ("Wait fetching registers after stop\n");
1160 monitor_dump_regs ();
1163 status->kind = TARGET_WAITKIND_STOPPED;
1164 status->value.sig = TARGET_SIGNAL_TRAP;
1166 discard_cleanups (old_chain);
1168 in_monitor_wait = 0;
1170 return inferior_ptid;
1173 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
1177 monitor_fetch_register (int regno)
1184 regbuf = alloca (MAX_REGISTER_SIZE * 2 + 1);
1185 zerobuf = alloca (MAX_REGISTER_SIZE);
1186 memset (zerobuf, 0, MAX_REGISTER_SIZE);
1188 if (current_monitor->regname != NULL)
1189 name = current_monitor->regname (regno);
1191 name = current_monitor->regnames[regno];
1192 monitor_debug ("MON fetchreg %d '%s'\n", regno, name ? name : "(null name)");
1194 if (!name || (*name == '\0'))
1196 monitor_debug ("No register known for %d\n", regno);
1197 supply_register (regno, zerobuf);
1201 /* send the register examine command */
1203 monitor_printf (current_monitor->getreg.cmd, name);
1205 /* If RESP_DELIM is specified, we search for that as a leading
1206 delimiter for the register value. Otherwise, we just start
1207 searching from the start of the buf. */
1209 if (current_monitor->getreg.resp_delim)
1211 monitor_debug ("EXP getreg.resp_delim\n");
1212 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1213 /* Handle case of first 32 registers listed in pairs. */
1214 if (current_monitor->flags & MO_32_REGS_PAIRED
1215 && (regno & 1) != 0 && regno < 32)
1217 monitor_debug ("EXP getreg.resp_delim\n");
1218 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1222 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set */
1223 if (current_monitor->flags & MO_HEX_PREFIX)
1226 c = readchar (timeout);
1228 c = readchar (timeout);
1229 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1232 error ("Bad value returned from monitor while fetching register %x.",
1236 /* Read upto the maximum number of hex digits for this register, skipping
1237 spaces, but stop reading if something else is seen. Some monitors
1238 like to drop leading zeros. */
1240 for (i = 0; i < REGISTER_RAW_SIZE (regno) * 2; i++)
1243 c = readchar (timeout);
1245 c = readchar (timeout);
1253 regbuf[i] = '\000'; /* terminate the number */
1254 monitor_debug ("REGVAL '%s'\n", regbuf);
1256 /* If TERM is present, we wait for that to show up. Also, (if TERM
1257 is present), we will send TERM_CMD if that is present. In any
1258 case, we collect all of the output into buf, and then wait for
1259 the normal prompt. */
1261 if (current_monitor->getreg.term)
1263 monitor_debug ("EXP getreg.term\n");
1264 monitor_expect (current_monitor->getreg.term, NULL, 0); /* get response */
1267 if (current_monitor->getreg.term_cmd)
1269 monitor_debug ("EMIT getreg.term.cmd\n");
1270 monitor_printf (current_monitor->getreg.term_cmd);
1272 if (!current_monitor->getreg.term || /* Already expected or */
1273 current_monitor->getreg.term_cmd) /* ack expected */
1274 monitor_expect_prompt (NULL, 0); /* get response */
1276 monitor_supply_register (regno, regbuf);
1279 /* Sometimes, it takes several commands to dump the registers */
1280 /* This is a primitive for use by variations of monitor interfaces in
1281 case they need to compose the operation.
1284 monitor_dump_reg_block (char *block_cmd)
1286 char buf[TARGET_BUF_SIZE];
1288 monitor_printf (block_cmd);
1289 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1290 parse_register_dump (buf, resp_len);
1295 /* Read the remote registers into the block regs. */
1296 /* Call the specific function if it has been provided */
1299 monitor_dump_regs (void)
1301 char buf[TARGET_BUF_SIZE];
1303 if (current_monitor->dumpregs)
1304 (*(current_monitor->dumpregs)) (); /* call supplied function */
1305 else if (current_monitor->dump_registers) /* default version */
1307 monitor_printf (current_monitor->dump_registers);
1308 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1309 parse_register_dump (buf, resp_len);
1312 internal_error (__FILE__, __LINE__, "failed internal consistency check"); /* Need some way to read registers */
1316 monitor_fetch_registers (int regno)
1318 monitor_debug ("MON fetchregs\n");
1319 if (current_monitor->getreg.cmd)
1323 monitor_fetch_register (regno);
1327 for (regno = 0; regno < NUM_REGS; regno++)
1328 monitor_fetch_register (regno);
1332 monitor_dump_regs ();
1336 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
1339 monitor_store_register (int regno)
1344 if (current_monitor->regname != NULL)
1345 name = current_monitor->regname (regno);
1347 name = current_monitor->regnames[regno];
1349 if (!name || (*name == '\0'))
1351 monitor_debug ("MON Cannot store unknown register\n");
1355 val = read_register (regno);
1356 monitor_debug ("MON storeg %d %s\n", regno,
1357 phex (val, REGISTER_RAW_SIZE (regno)));
1359 /* send the register deposit command */
1361 if (current_monitor->flags & MO_REGISTER_VALUE_FIRST)
1362 monitor_printf (current_monitor->setreg.cmd, val, name);
1363 else if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1364 monitor_printf (current_monitor->setreg.cmd, name);
1366 monitor_printf (current_monitor->setreg.cmd, name, val);
1368 if (current_monitor->setreg.resp_delim)
1370 monitor_debug ("EXP setreg.resp_delim\n");
1371 monitor_expect_regexp (&setreg_resp_delim_pattern, NULL, 0);
1372 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1373 monitor_printf ("%s\r", paddr_nz (val));
1375 if (current_monitor->setreg.term)
1377 monitor_debug ("EXP setreg.term\n");
1378 monitor_expect (current_monitor->setreg.term, NULL, 0);
1379 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1380 monitor_printf ("%s\r", paddr_nz (val));
1381 monitor_expect_prompt (NULL, 0);
1384 monitor_expect_prompt (NULL, 0);
1385 if (current_monitor->setreg.term_cmd) /* Mode exit required */
1387 monitor_debug ("EXP setreg_termcmd\n");
1388 monitor_printf ("%s", current_monitor->setreg.term_cmd);
1389 monitor_expect_prompt (NULL, 0);
1391 } /* monitor_store_register */
1393 /* Store the remote registers. */
1396 monitor_store_registers (int regno)
1400 monitor_store_register (regno);
1404 for (regno = 0; regno < NUM_REGS; regno++)
1405 monitor_store_register (regno);
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
1415 monitor_prepare_to_store (void)
1417 /* Do nothing, since we can store individual regs */
1421 monitor_files_info (struct target_ops *ops)
1423 printf_unfiltered ("\tAttached to %s at %d baud.\n", dev_name, baud_rate);
1427 monitor_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
1429 unsigned int val, hostval;
1433 monitor_debug ("MON write %d %s\n", len, paddr (memaddr));
1435 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1436 memaddr = ADDR_BITS_REMOVE (memaddr);
1438 /* Use memory fill command for leading 0 bytes. */
1440 if (current_monitor->fill)
1442 for (i = 0; i < len; i++)
1446 if (i > 4) /* More than 4 zeros is worth doing */
1448 monitor_debug ("MON FILL %d\n", i);
1449 if (current_monitor->flags & MO_FILL_USES_ADDR)
1450 monitor_printf (current_monitor->fill, memaddr, (memaddr + i) - 1, 0);
1452 monitor_printf (current_monitor->fill, memaddr, i, 0);
1454 monitor_expect_prompt (NULL, 0);
1461 /* Can't actually use long longs if VAL is an int (nice idea, though). */
1462 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->setmem.cmdll)
1465 cmd = current_monitor->setmem.cmdll;
1469 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->setmem.cmdl)
1472 cmd = current_monitor->setmem.cmdl;
1474 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->setmem.cmdw)
1477 cmd = current_monitor->setmem.cmdw;
1482 cmd = current_monitor->setmem.cmdb;
1485 val = extract_unsigned_integer (myaddr, len);
1489 hostval = *(unsigned int *) myaddr;
1490 monitor_debug ("Hostval(%08x) val(%08x)\n", hostval, val);
1494 if (current_monitor->flags & MO_NO_ECHO_ON_SETMEM)
1495 monitor_printf_noecho (cmd, memaddr, val);
1496 else if (current_monitor->flags & MO_SETMEM_INTERACTIVE)
1499 monitor_printf_noecho (cmd, memaddr);
1501 if (current_monitor->setmem.resp_delim)
1503 monitor_debug ("EXP setmem.resp_delim");
1504 monitor_expect_regexp (&setmem_resp_delim_pattern, NULL, 0);
1505 monitor_printf ("%x\r", val);
1507 if (current_monitor->setmem.term)
1509 monitor_debug ("EXP setmem.term");
1510 monitor_expect (current_monitor->setmem.term, NULL, 0);
1511 monitor_printf ("%x\r", val);
1513 if (current_monitor->setmem.term_cmd)
1514 { /* Emit this to get out of the memory editing state */
1515 monitor_printf ("%s", current_monitor->setmem.term_cmd);
1516 /* Drop through to expecting a prompt */
1520 monitor_printf (cmd, memaddr, val);
1522 monitor_expect_prompt (NULL, 0);
1529 monitor_write_even_block (CORE_ADDR memaddr, char *myaddr, int len)
1533 /* Enter the sub mode */
1534 monitor_printf (current_monitor->setmem.cmdl, memaddr);
1535 monitor_expect_prompt (NULL, 0);
1539 val = extract_unsigned_integer (myaddr, 4); /* REALLY */
1540 monitor_printf ("%x\r", val);
1544 monitor_debug (" @ %s\n", paddr (memaddr));
1545 /* If we wanted to, here we could validate the address */
1546 monitor_expect_prompt (NULL, 0);
1548 /* Now exit the sub mode */
1549 monitor_printf (current_monitor->getreg.term_cmd);
1550 monitor_expect_prompt (NULL, 0);
1556 monitor_write_memory_bytes (CORE_ADDR memaddr, char *myaddr, int len)
1562 /* Enter the sub mode */
1563 monitor_printf (current_monitor->setmem.cmdb, memaddr);
1564 monitor_expect_prompt (NULL, 0);
1568 monitor_printf ("%x\r", val);
1572 /* If we wanted to, here we could validate the address */
1573 monitor_expect_prompt (NULL, 0);
1576 /* Now exit the sub mode */
1577 monitor_printf (current_monitor->getreg.term_cmd);
1578 monitor_expect_prompt (NULL, 0);
1584 longlongendswap (unsigned char *a)
1593 *(a + i) = *(a + j);
1598 /* Format 32 chars of long long value, advance the pointer */
1599 static char *hexlate = "0123456789abcdef";
1601 longlong_hexchars (unsigned long long value,
1611 static unsigned char disbuf[8]; /* disassembly buffer */
1612 unsigned char *scan, *limit; /* loop controls */
1613 unsigned char c, nib;
1618 unsigned long long *dp;
1619 dp = (unsigned long long *) scan;
1622 longlongendswap (disbuf); /* FIXME: ONly on big endian hosts */
1623 while (scan < limit)
1625 c = *scan++; /* a byte of our long long value */
1631 leadzero = 0; /* henceforth we print even zeroes */
1633 nib = c >> 4; /* high nibble bits */
1634 *outbuff++ = hexlate[nib];
1635 nib = c & 0x0f; /* low nibble bits */
1636 *outbuff++ = hexlate[nib];
1640 } /* longlong_hexchars */
1644 /* I am only going to call this when writing virtual byte streams.
1645 Which possably entails endian conversions
1648 monitor_write_memory_longlongs (CORE_ADDR memaddr, char *myaddr, int len)
1650 static char hexstage[20]; /* At least 16 digits required, plus null */
1655 llptr = (unsigned long long *) myaddr;
1658 monitor_printf (current_monitor->setmem.cmdll, memaddr);
1659 monitor_expect_prompt (NULL, 0);
1663 endstring = longlong_hexchars (*llptr, hexstage);
1664 *endstring = '\0'; /* NUll terminate for printf */
1665 monitor_printf ("%s\r", hexstage);
1669 /* If we wanted to, here we could validate the address */
1670 monitor_expect_prompt (NULL, 0);
1673 /* Now exit the sub mode */
1674 monitor_printf (current_monitor->getreg.term_cmd);
1675 monitor_expect_prompt (NULL, 0);
1681 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1682 /* This is for the large blocks of memory which may occur in downloading.
1683 And for monitors which use interactive entry,
1684 And for monitors which do not have other downloading methods.
1685 Without this, we will end up calling monitor_write_memory many times
1686 and do the entry and exit of the sub mode many times
1687 This currently assumes...
1688 MO_SETMEM_INTERACTIVE
1689 ! MO_NO_ECHO_ON_SETMEM
1690 To use this, the you have to patch the monitor_cmds block with
1691 this function. Otherwise, its not tuned up for use by all
1696 monitor_write_memory_block (CORE_ADDR memaddr, char *myaddr, int len)
1700 /* FIXME: This would be a good place to put the zero test */
1702 if ((len > 8) && (((len & 0x07)) == 0) && current_monitor->setmem.cmdll)
1704 return monitor_write_memory_longlongs (memaddr, myaddr, len);
1711 written = monitor_write_even_block (memaddr, myaddr, len);
1712 /* Adjust calling parameters by written amount */
1718 written = monitor_write_memory_bytes (memaddr, myaddr, len);
1722 /* This is an alternate form of monitor_read_memory which is used for monitors
1723 which can only read a single byte/word/etc. at a time. */
1726 monitor_read_memory_single (CORE_ADDR memaddr, char *myaddr, int len)
1729 char membuf[sizeof (int) * 2 + 1];
1733 monitor_debug ("MON read single\n");
1735 /* Can't actually use long longs (nice idea, though). In fact, the
1736 call to strtoul below will fail if it tries to convert a value
1737 that's too big to fit in a long. */
1738 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->getmem.cmdll)
1741 cmd = current_monitor->getmem.cmdll;
1745 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->getmem.cmdl)
1748 cmd = current_monitor->getmem.cmdl;
1750 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->getmem.cmdw)
1753 cmd = current_monitor->getmem.cmdw;
1758 cmd = current_monitor->getmem.cmdb;
1761 /* Send the examine command. */
1763 monitor_printf (cmd, memaddr);
1765 /* If RESP_DELIM is specified, we search for that as a leading
1766 delimiter for the memory value. Otherwise, we just start
1767 searching from the start of the buf. */
1769 if (current_monitor->getmem.resp_delim)
1771 monitor_debug ("EXP getmem.resp_delim\n");
1772 monitor_expect_regexp (&getmem_resp_delim_pattern, NULL, 0);
1775 /* Now, read the appropriate number of hex digits for this loc,
1778 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1779 if (current_monitor->flags & MO_HEX_PREFIX)
1783 c = readchar (timeout);
1785 c = readchar (timeout);
1786 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1789 monitor_error ("monitor_read_memory_single",
1790 "bad response from monitor",
1791 memaddr, 0, NULL, 0);
1796 for (i = 0; i < len * 2; i++)
1802 c = readchar (timeout);
1808 monitor_error ("monitor_read_memory_single",
1809 "bad response from monitor",
1810 memaddr, i, membuf, 0);
1814 membuf[i] = '\000'; /* terminate the number */
1817 /* If TERM is present, we wait for that to show up. Also, (if TERM is
1818 present), we will send TERM_CMD if that is present. In any case, we collect
1819 all of the output into buf, and then wait for the normal prompt. */
1821 if (current_monitor->getmem.term)
1823 monitor_expect (current_monitor->getmem.term, NULL, 0); /* get response */
1825 if (current_monitor->getmem.term_cmd)
1827 monitor_printf (current_monitor->getmem.term_cmd);
1828 monitor_expect_prompt (NULL, 0);
1832 monitor_expect_prompt (NULL, 0); /* get response */
1835 val = strtoul (membuf, &p, 16);
1837 if (val == 0 && membuf == p)
1838 monitor_error ("monitor_read_memory_single",
1839 "bad value from monitor",
1840 memaddr, 0, membuf, 0);
1842 /* supply register stores in target byte order, so swap here */
1844 store_unsigned_integer (myaddr, len, val);
1849 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1850 memory at MEMADDR. Returns length moved. Currently, we do no more
1851 than 16 bytes at a time. */
1854 monitor_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
1865 monitor_debug ("Zero length call to monitor_read_memory\n");
1869 monitor_debug ("MON read block ta(%s) ha(%lx) %d\n",
1870 paddr_nz (memaddr), (long) myaddr, len);
1872 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1873 memaddr = ADDR_BITS_REMOVE (memaddr);
1875 if (current_monitor->flags & MO_GETMEM_READ_SINGLE)
1876 return monitor_read_memory_single (memaddr, myaddr, len);
1878 len = min (len, 16);
1880 /* Some dumpers align the first data with the preceeding 16
1881 byte boundary. Some print blanks and start at the
1882 requested boundary. EXACT_DUMPADDR
1885 dumpaddr = (current_monitor->flags & MO_EXACT_DUMPADDR)
1886 ? memaddr : memaddr & ~0x0f;
1888 /* See if xfer would cross a 16 byte boundary. If so, clip it. */
1889 if (((memaddr ^ (memaddr + len - 1)) & ~0xf) != 0)
1890 len = ((memaddr + len) & ~0xf) - memaddr;
1892 /* send the memory examine command */
1894 if (current_monitor->flags & MO_GETMEM_NEEDS_RANGE)
1895 monitor_printf (current_monitor->getmem.cmdb, memaddr, memaddr + len);
1896 else if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1897 monitor_printf (current_monitor->getmem.cmdb, dumpaddr);
1899 monitor_printf (current_monitor->getmem.cmdb, memaddr, len);
1901 /* If TERM is present, we wait for that to show up. Also, (if TERM
1902 is present), we will send TERM_CMD if that is present. In any
1903 case, we collect all of the output into buf, and then wait for
1904 the normal prompt. */
1906 if (current_monitor->getmem.term)
1908 resp_len = monitor_expect (current_monitor->getmem.term, buf, sizeof buf); /* get response */
1911 monitor_error ("monitor_read_memory",
1912 "excessive response from monitor",
1913 memaddr, resp_len, buf, 0);
1915 if (current_monitor->getmem.term_cmd)
1917 serial_write (monitor_desc, current_monitor->getmem.term_cmd,
1918 strlen (current_monitor->getmem.term_cmd));
1919 monitor_expect_prompt (NULL, 0);
1923 resp_len = monitor_expect_prompt (buf, sizeof buf); /* get response */
1927 /* If RESP_DELIM is specified, we search for that as a leading
1928 delimiter for the values. Otherwise, we just start searching
1929 from the start of the buf. */
1931 if (current_monitor->getmem.resp_delim)
1934 struct re_registers resp_strings;
1935 monitor_debug ("MON getmem.resp_delim %s\n", current_monitor->getmem.resp_delim);
1937 memset (&resp_strings, 0, sizeof (struct re_registers));
1939 retval = re_search (&getmem_resp_delim_pattern, p, tmp, 0, tmp,
1943 monitor_error ("monitor_read_memory",
1944 "bad response from monitor",
1945 memaddr, resp_len, buf, 0);
1947 p += resp_strings.end[0];
1949 p = strstr (p, current_monitor->getmem.resp_delim);
1951 monitor_error ("monitor_read_memory",
1952 "bad response from monitor",
1953 memaddr, resp_len, buf, 0);
1954 p += strlen (current_monitor->getmem.resp_delim);
1957 monitor_debug ("MON scanning %d ,%lx '%s'\n", len, (long) p, p);
1958 if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1966 while (!(c == '\000' || c == '\n' || c == '\r') && i > 0)
1970 if ((dumpaddr >= memaddr) && (i > 0))
1972 val = fromhex (c) * 16 + fromhex (*(p + 1));
1974 if (monitor_debug_p || remote_debug)
1975 fprintf_unfiltered (gdb_stdlog, "[%02x]", val);
1982 ++p; /* skip a blank or other non hex char */
1986 error ("Failed to read via monitor");
1987 if (monitor_debug_p || remote_debug)
1988 fprintf_unfiltered (gdb_stdlog, "\n");
1989 return fetched; /* Return the number of bytes actually read */
1991 monitor_debug ("MON scanning bytes\n");
1993 for (i = len; i > 0; i--)
1995 /* Skip non-hex chars, but bomb on end of string and newlines */
2002 if (*p == '\000' || *p == '\n' || *p == '\r')
2003 monitor_error ("monitor_read_memory",
2004 "badly terminated response from monitor",
2005 memaddr, resp_len, buf, 0);
2009 val = strtoul (p, &p1, 16);
2011 if (val == 0 && p == p1)
2012 monitor_error ("monitor_read_memory",
2013 "bad value from monitor",
2014 memaddr, resp_len, buf, 0);
2027 /* Transfer LEN bytes between target address MEMADDR and GDB address
2028 MYADDR. Returns 0 for success, errno code for failure. TARGET is
2032 monitor_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
2033 struct mem_attrib *attrib, struct target_ops *target)
2039 if (current_monitor->flags & MO_HAS_BLOCKWRITES)
2040 res = monitor_write_memory_block(memaddr, myaddr, len);
2042 res = monitor_write_memory(memaddr, myaddr, len);
2046 res = monitor_read_memory(memaddr, myaddr, len);
2055 return; /* ignore attempts to kill target system */
2058 /* All we actually do is set the PC to the start address of exec_bfd, and start
2059 the program at that point. */
2062 monitor_create_inferior (char *exec_file, char *args, char **env)
2064 if (args && (*args != '\000'))
2065 error ("Args are not supported by the monitor.");
2068 clear_proceed_status ();
2069 proceed (bfd_get_start_address (exec_bfd), TARGET_SIGNAL_0, 0);
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
2078 monitor_mourn_inferior (void)
2080 unpush_target (targ_ops);
2081 generic_mourn_inferior (); /* Do all the proper things now */
2084 /* Tell the monitor to add a breakpoint. */
2087 monitor_insert_breakpoint (CORE_ADDR addr, char *shadow)
2090 const unsigned char *bp;
2093 monitor_debug ("MON inst bkpt %s\n", paddr (addr));
2094 if (current_monitor->set_break == NULL)
2095 error ("No set_break defined for this monitor");
2097 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
2098 addr = ADDR_BITS_REMOVE (addr);
2100 /* Determine appropriate breakpoint size for this address. */
2101 bp = memory_breakpoint_from_pc (&addr, &bplen);
2103 for (i = 0; i < current_monitor->num_breakpoints; i++)
2105 if (breakaddr[i] == 0)
2107 breakaddr[i] = addr;
2108 monitor_read_memory (addr, shadow, bplen);
2109 monitor_printf (current_monitor->set_break, addr);
2110 monitor_expect_prompt (NULL, 0);
2115 error ("Too many breakpoints (> %d) for monitor.", current_monitor->num_breakpoints);
2118 /* Tell the monitor to remove a breakpoint. */
2121 monitor_remove_breakpoint (CORE_ADDR addr, char *shadow)
2125 monitor_debug ("MON rmbkpt %s\n", paddr (addr));
2126 if (current_monitor->clr_break == NULL)
2127 error ("No clr_break defined for this monitor");
2129 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
2130 addr = ADDR_BITS_REMOVE (addr);
2132 for (i = 0; i < current_monitor->num_breakpoints; i++)
2134 if (breakaddr[i] == addr)
2137 /* some monitors remove breakpoints based on the address */
2138 if (current_monitor->flags & MO_CLR_BREAK_USES_ADDR)
2139 monitor_printf (current_monitor->clr_break, addr);
2140 else if (current_monitor->flags & MO_CLR_BREAK_1_BASED)
2141 monitor_printf (current_monitor->clr_break, i + 1);
2143 monitor_printf (current_monitor->clr_break, i);
2144 monitor_expect_prompt (NULL, 0);
2148 fprintf_unfiltered (gdb_stderr,
2149 "Can't find breakpoint associated with 0x%s\n",
2154 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2155 an S-record. Return non-zero if the ACK is received properly. */
2158 monitor_wait_srec_ack (void)
2162 if (current_monitor->flags & MO_SREC_ACK_PLUS)
2164 return (readchar (timeout) == '+');
2166 else if (current_monitor->flags & MO_SREC_ACK_ROTATE)
2168 /* Eat two backspaces, a "rotating" char (|/-\), and a space. */
2169 if ((ch = readchar (1)) < 0)
2171 if ((ch = readchar (1)) < 0)
2173 if ((ch = readchar (1)) < 0)
2175 if ((ch = readchar (1)) < 0)
2181 /* monitor_load -- download a file. */
2184 monitor_load (char *file, int from_tty)
2186 monitor_debug ("MON load\n");
2188 if (current_monitor->load_routine)
2189 current_monitor->load_routine (monitor_desc, file, hashmark);
2191 { /* The default is ascii S-records */
2193 unsigned long load_offset;
2196 /* enable user to specify address for downloading as 2nd arg to load */
2197 n = sscanf (file, "%s 0x%lx", buf, &load_offset);
2203 monitor_printf (current_monitor->load);
2204 if (current_monitor->loadresp)
2205 monitor_expect (current_monitor->loadresp, NULL, 0);
2207 load_srec (monitor_desc, file, (bfd_vma) load_offset,
2208 32, SREC_ALL, hashmark,
2209 current_monitor->flags & MO_SREC_ACK ?
2210 monitor_wait_srec_ack : NULL);
2212 monitor_expect_prompt (NULL, 0);
2215 /* Finally, make the PC point at the start address */
2217 write_pc (bfd_get_start_address (exec_bfd));
2219 /* There used to be code here which would clear inferior_ptid and
2220 call clear_symtab_users. None of that should be necessary:
2221 monitor targets should behave like remote protocol targets, and
2222 since generic_load does none of those things, this function
2225 Furthermore, clearing inferior_ptid is *incorrect*. After doing
2226 a load, we still have a valid connection to the monitor, with a
2227 live processor state to fiddle with. The user can type
2228 `continue' or `jump *start' and make the program run. If they do
2229 these things, however, GDB will be talking to a running program
2230 while inferior_ptid is null_ptid; this makes things like
2231 reinit_frame_cache very confused. */
2237 monitor_debug ("MON stop\n");
2238 if ((current_monitor->flags & MO_SEND_BREAK_ON_STOP) != 0)
2239 serial_send_break (monitor_desc);
2240 if (current_monitor->stop)
2241 monitor_printf_noecho (current_monitor->stop);
2244 /* Put a COMMAND string out to MONITOR. Output from MONITOR is placed
2245 in OUTPUT until the prompt is seen. FIXME: We read the characters
2246 ourseleves here cause of a nasty echo. */
2249 monitor_rcmd (char *command,
2250 struct ui_file *outbuf)
2256 if (monitor_desc == NULL)
2257 error ("monitor target not open.");
2259 p = current_monitor->prompt;
2261 /* Send the command. Note that if no args were supplied, then we're
2262 just sending the monitor a newline, which is sometimes useful. */
2264 monitor_printf ("%s\r", (command ? command : ""));
2266 resp_len = monitor_expect_prompt (buf, sizeof buf);
2268 fputs_unfiltered (buf, outbuf); /* Output the response */
2271 /* Convert hex digit A to a number. */
2277 if (a >= '0' && a <= '9')
2279 if (a >= 'a' && a <= 'f')
2280 return a - 'a' + 10;
2281 if (a >= 'A' && a <= 'F')
2282 return a - 'A' + 10;
2284 error ("Reply contains invalid hex digit 0x%x", a);
2289 monitor_get_dev_name (void)
2294 static struct target_ops monitor_ops;
2297 init_base_monitor_ops (void)
2299 monitor_ops.to_close = monitor_close;
2300 monitor_ops.to_detach = monitor_detach;
2301 monitor_ops.to_resume = monitor_resume;
2302 monitor_ops.to_wait = monitor_wait;
2303 monitor_ops.to_fetch_registers = monitor_fetch_registers;
2304 monitor_ops.to_store_registers = monitor_store_registers;
2305 monitor_ops.to_prepare_to_store = monitor_prepare_to_store;
2306 monitor_ops.to_xfer_memory = monitor_xfer_memory;
2307 monitor_ops.to_files_info = monitor_files_info;
2308 monitor_ops.to_insert_breakpoint = monitor_insert_breakpoint;
2309 monitor_ops.to_remove_breakpoint = monitor_remove_breakpoint;
2310 monitor_ops.to_kill = monitor_kill;
2311 monitor_ops.to_load = monitor_load;
2312 monitor_ops.to_create_inferior = monitor_create_inferior;
2313 monitor_ops.to_mourn_inferior = monitor_mourn_inferior;
2314 monitor_ops.to_stop = monitor_stop;
2315 monitor_ops.to_rcmd = monitor_rcmd;
2316 monitor_ops.to_stratum = process_stratum;
2317 monitor_ops.to_has_all_memory = 1;
2318 monitor_ops.to_has_memory = 1;
2319 monitor_ops.to_has_stack = 1;
2320 monitor_ops.to_has_registers = 1;
2321 monitor_ops.to_has_execution = 1;
2322 monitor_ops.to_magic = OPS_MAGIC;
2323 } /* init_base_monitor_ops */
2325 /* Init the target_ops structure pointed at by OPS */
2328 init_monitor_ops (struct target_ops *ops)
2330 if (monitor_ops.to_magic != OPS_MAGIC)
2331 init_base_monitor_ops ();
2333 memcpy (ops, &monitor_ops, sizeof monitor_ops);
2336 /* Define additional commands that are usually only used by monitors. */
2339 _initialize_remote_monitors (void)
2341 init_base_monitor_ops ();
2342 add_show_from_set (add_set_cmd ("hash", no_class, var_boolean,
2344 "Set display of activity while downloading a file.\n\
2345 When enabled, a hashmark \'#\' is displayed.",
2350 (add_set_cmd ("monitor", no_class, var_zinteger,
2351 (char *) &monitor_debug_p,
2352 "Set debugging of remote monitor communication.\n\
2353 When enabled, communication between GDB and the remote monitor\n\
2354 is displayed.", &setdebuglist),