1 /* Remote debugging interface for boot monitors, for GDB.
3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2006, 2007, 2008 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 3 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, see <http://www.gnu.org/licenses/>. */
24 /* This file was derived from various remote-* modules. It is a collection
25 of generic support functions so GDB can talk directly to a ROM based
26 monitor. This saves use from having to hack an exception based handler
27 into existence, and makes for quick porting.
29 This module talks to a debug monitor called 'MONITOR', which
30 We communicate with MONITOR via either a direct serial line, or a TCP
31 (or possibly TELNET) stream to a terminal multiplexor,
32 which in turn talks to the target board. */
34 /* FIXME 32x64: This code assumes that registers and addresses are at
35 most 32 bits long. If they can be larger, you will need to declare
36 values as LONGEST and use %llx or some such to print values when
37 building commands to send to the monitor. Since we don't know of
38 any actual 64-bit targets with ROM monitors that use this code,
39 it's not an issue right now. -sts 4/18/96 */
44 #include "exceptions.h"
47 #include "gdb_string.h"
48 #include <sys/types.h>
54 #include "gdb_regex.h"
57 #include "gdbthread.h"
59 static char *dev_name;
60 static struct target_ops *targ_ops;
62 static void monitor_interrupt_query (void);
63 static void monitor_interrupt_twice (int);
64 static void monitor_stop (void);
65 static void monitor_dump_regs (struct regcache *regcache);
68 static int from_hex (int a);
71 static struct monitor_ops *current_monitor;
73 static int hashmark; /* flag set by "set hash" */
75 static int timeout = 30;
77 static int in_monitor_wait = 0; /* Non-zero means we are in monitor_wait() */
79 static void (*ofunc) (); /* Old SIGINT signal handler */
81 static CORE_ADDR *breakaddr;
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
87 static struct serial *monitor_desc = NULL;
89 /* Pointer to regexp pattern matching data */
91 static struct re_pattern_buffer register_pattern;
92 static char register_fastmap[256];
94 static struct re_pattern_buffer getmem_resp_delim_pattern;
95 static char getmem_resp_delim_fastmap[256];
97 static struct re_pattern_buffer setmem_resp_delim_pattern;
98 static char setmem_resp_delim_fastmap[256];
100 static struct re_pattern_buffer setreg_resp_delim_pattern;
101 static char setreg_resp_delim_fastmap[256];
103 static int dump_reg_flag; /* Non-zero means do a dump_registers cmd when
104 monitor_wait wakes up. */
106 static int first_time = 0; /* is this the first time we're executing after
107 gaving created the child proccess? */
109 #define TARGET_BUF_SIZE 2048
111 /* Monitor specific debugging information. Typically only useful to
112 the developer of a new monitor interface. */
114 static void monitor_debug (const char *fmt, ...) ATTR_FORMAT(printf, 1, 2);
116 static int monitor_debug_p = 0;
118 /* NOTE: This file alternates between monitor_debug_p and remote_debug
119 when determining if debug information is printed. Perhaps this
120 could be simplified. */
123 monitor_debug (const char *fmt, ...)
128 va_start (args, fmt);
129 vfprintf_filtered (gdb_stdlog, fmt, args);
135 /* Convert a string into a printable representation, Return # byte in
136 the new string. When LEN is >0 it specifies the size of the
137 string. Otherwize strlen(oldstr) is used. */
140 monitor_printable_string (char *newstr, char *oldstr, int len)
146 len = strlen (oldstr);
148 for (i = 0; i < len; i++)
159 sprintf (newstr, "\\x%02x", ch & 0xff);
198 /* Print monitor errors with a string, converting the string to printable
202 monitor_error (char *function, char *message,
203 CORE_ADDR memaddr, int len, char *string, int final_char)
205 int real_len = (len == 0 && string != (char *) 0) ? strlen (string) : len;
206 char *safe_string = alloca ((real_len * 4) + 1);
207 monitor_printable_string (safe_string, string, real_len);
210 error (_("%s (0x%s): %s: %s%c"), function, paddr_nz (memaddr), message, safe_string, final_char);
212 error (_("%s (0x%s): %s: %s"), function, paddr_nz (memaddr), message, safe_string);
215 /* Convert hex digit A to a number. */
220 if (a >= '0' && a <= '9')
222 else if (a >= 'a' && a <= 'f')
224 else if (a >= 'A' && a <= 'F')
227 error (_("Invalid hex digit %d"), a);
230 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
232 This function exists to get around the problem that many host platforms
233 don't have a printf that can print 64-bit addresses. The %A format
234 specification is recognized as a special case, and causes the argument
235 to be printed as a 64-bit hexadecimal address.
237 Only format specifiers of the form "[0-9]*[a-z]" are recognized.
238 If it is a '%s' format, the argument is a string; otherwise the
239 argument is assumed to be a long integer.
241 %% is also turned into a single %.
245 monitor_vsprintf (char *sndbuf, char *pattern, va_list args)
255 for (p = pattern; *p; p++)
259 /* Copy the format specifier to a separate buffer. */
261 for (i = 1; *p >= '0' && *p <= '9' && i < (int) sizeof (format) - 2;
264 format[i] = fmt = *p;
265 format[i + 1] = '\0';
267 /* Fetch the next argument and print it. */
271 strcpy (sndbuf, "%");
274 arg_addr = va_arg (args, CORE_ADDR);
275 strcpy (sndbuf, paddr_nz (arg_addr));
278 arg_string = va_arg (args, char *);
279 sprintf (sndbuf, format, arg_string);
282 arg_int = va_arg (args, long);
283 sprintf (sndbuf, format, arg_int);
286 sndbuf += strlen (sndbuf);
295 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
296 Works just like printf. */
299 monitor_printf_noecho (char *pattern,...)
305 va_start (args, pattern);
307 monitor_vsprintf (sndbuf, pattern, args);
309 len = strlen (sndbuf);
310 if (len + 1 > sizeof sndbuf)
311 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
315 char *safe_string = (char *) alloca ((strlen (sndbuf) * 4) + 1);
316 monitor_printable_string (safe_string, sndbuf, 0);
317 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
320 monitor_write (sndbuf, len);
323 /* monitor_printf -- Send data to monitor and check the echo. Works just like
327 monitor_printf (char *pattern,...)
333 va_start (args, pattern);
335 monitor_vsprintf (sndbuf, pattern, args);
337 len = strlen (sndbuf);
338 if (len + 1 > sizeof sndbuf)
339 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
343 char *safe_string = (char *) alloca ((len * 4) + 1);
344 monitor_printable_string (safe_string, sndbuf, 0);
345 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
348 monitor_write (sndbuf, len);
350 /* We used to expect that the next immediate output was the characters we
351 just output, but sometimes some extra junk appeared before the characters
352 we expected, like an extra prompt, or a portmaster sending telnet negotiations.
353 So, just start searching for what we sent, and skip anything unknown. */
354 monitor_debug ("ExpectEcho\n");
355 monitor_expect (sndbuf, (char *) 0, 0);
359 /* Write characters to the remote system. */
362 monitor_write (char *buf, int buflen)
364 if (serial_write (monitor_desc, buf, buflen))
365 fprintf_unfiltered (gdb_stderr, "serial_write failed: %s\n",
366 safe_strerror (errno));
370 /* Read a binary character from the remote system, doing all the fancy
371 timeout stuff, but without interpreting the character in any way,
372 and without printing remote debug information. */
375 monitor_readchar (void)
383 c = serial_readchar (monitor_desc, timeout);
386 c &= 0xff; /* don't lose bit 7 */
393 if (c == SERIAL_TIMEOUT)
394 error (_("Timeout reading from remote system."));
396 perror_with_name (_("remote-monitor"));
400 /* Read a character from the remote system, doing all the fancy
404 readchar (int timeout)
409 last_random, last_nl, last_cr, last_crnl
417 c = serial_readchar (monitor_desc, timeout);
422 /* This seems to interfere with proper function of the
424 if (monitor_debug_p || remote_debug)
429 puts_debug ("read -->", buf, "<--");
434 /* Canonicialize \n\r combinations into one \r */
435 if ((current_monitor->flags & MO_HANDLE_NL) != 0)
437 if ((c == '\r' && state == last_nl)
438 || (c == '\n' && state == last_cr))
459 if (c == SERIAL_TIMEOUT)
461 /* I fail to see how detaching here can be useful */
462 if (in_monitor_wait) /* Watchdog went off */
464 target_mourn_inferior ();
465 error (_("GDB serial timeout has expired. Target detached."));
469 error (_("Timeout reading from remote system."));
471 perror_with_name (_("remote-monitor"));
474 /* Scan input from the remote system, until STRING is found. If BUF is non-
475 zero, then collect input until we have collected either STRING or BUFLEN-1
476 chars. In either case we terminate BUF with a 0. If input overflows BUF
477 because STRING can't be found, return -1, else return number of chars in BUF
478 (minus the terminating NUL). Note that in the non-overflow case, STRING
479 will be at the end of BUF. */
482 monitor_expect (char *string, char *buf, int buflen)
485 int obuflen = buflen;
490 char *safe_string = (char *) alloca ((strlen (string) * 4) + 1);
491 monitor_printable_string (safe_string, string, 0);
492 fprintf_unfiltered (gdb_stdlog, "MON Expecting '%s'\n", safe_string);
507 c = readchar (timeout);
514 c = readchar (timeout);
516 /* Don't expect any ^C sent to be echoed */
518 if (*p == '\003' || c == *p)
528 return obuflen - buflen;
536 /* We got a character that doesn't match the string. We need to
537 back up p, but how far? If we're looking for "..howdy" and the
538 monitor sends "...howdy"? There's certainly a match in there,
539 but when we receive the third ".", we won't find it if we just
540 restart the matching at the beginning of the string.
542 This is a Boyer-Moore kind of situation. We want to reset P to
543 the end of the longest prefix of STRING that is a suffix of
544 what we've read so far. In the example above, that would be
545 ".." --- the longest prefix of "..howdy" that is a suffix of
546 "...". This longest prefix could be the empty string, if C
547 is nowhere to be found in STRING.
549 If this longest prefix is not the empty string, it must contain
550 C, so let's search from the end of STRING for instances of C,
551 and see if the portion of STRING before that is a suffix of
552 what we read before C. Actually, we can search backwards from
553 p, since we know no prefix can be longer than that.
555 Note that we can use STRING itself, along with C, as a record
556 of what we've received so far. :) */
559 for (i = (p - string) - 1; i >= 0; i--)
562 /* Is this prefix a suffix of what we've read so far?
564 string[0 .. i-1] == string[p - i, p - 1]? */
565 if (! memcmp (string, p - i, i))
577 /* Search for a regexp. */
580 monitor_expect_regexp (struct re_pattern_buffer *pat, char *buf, int buflen)
584 monitor_debug ("MON Expecting regexp\n");
589 mybuf = alloca (TARGET_BUF_SIZE);
590 buflen = TARGET_BUF_SIZE;
598 if (p - mybuf >= buflen)
599 { /* Buffer about to overflow */
601 /* On overflow, we copy the upper half of the buffer to the lower half. Not
602 great, but it usually works... */
604 memcpy (mybuf, mybuf + buflen / 2, buflen / 2);
605 p = mybuf + buflen / 2;
608 *p++ = readchar (timeout);
610 retval = re_search (pat, mybuf, p - mybuf, 0, p - mybuf, NULL);
616 /* Keep discarding input until we see the MONITOR prompt.
618 The convention for dealing with the prompt is that you
620 o *then* wait for the prompt.
622 Thus the last thing that a procedure does with the serial line will
623 be an monitor_expect_prompt(). Exception: monitor_resume does not
624 wait for the prompt, because the terminal is being handed over to
625 the inferior. However, the next thing which happens after that is
626 a monitor_wait which does wait for the prompt. Note that this
627 includes abnormal exit, e.g. error(). This is necessary to prevent
628 getting into states from which we can't recover. */
631 monitor_expect_prompt (char *buf, int buflen)
633 monitor_debug ("MON Expecting prompt\n");
634 return monitor_expect (current_monitor->prompt, buf, buflen);
637 /* Get N 32-bit words from remote, each preceded by a space, and put
638 them in registers starting at REGNO. */
649 ch = readchar (timeout);
650 while (isspace (ch));
654 for (i = 7; i >= 1; i--)
656 ch = readchar (timeout);
659 val = (val << 4) | from_hex (ch);
667 compile_pattern (char *pattern, struct re_pattern_buffer *compiled_pattern,
673 compiled_pattern->fastmap = fastmap;
675 tmp = re_set_syntax (RE_SYNTAX_EMACS);
676 val = re_compile_pattern (pattern,
682 error (_("compile_pattern: Can't compile pattern string `%s': %s!"), pattern, val);
685 re_compile_fastmap (compiled_pattern);
688 /* Open a connection to a remote debugger. NAME is the filename used
689 for communication. */
692 monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty)
697 if (mon_ops->magic != MONITOR_OPS_MAGIC)
698 error (_("Magic number of monitor_ops struct wrong."));
700 targ_ops = mon_ops->target;
701 name = targ_ops->to_shortname;
704 error (_("Use `target %s DEVICE-NAME' to use a serial port, or \n\
705 `target %s HOST-NAME:PORT-NUMBER' to use a network connection."), name, name);
707 target_preopen (from_tty);
709 /* Setup pattern for register dump */
711 if (mon_ops->register_pattern)
712 compile_pattern (mon_ops->register_pattern, ®ister_pattern,
715 if (mon_ops->getmem.resp_delim)
716 compile_pattern (mon_ops->getmem.resp_delim, &getmem_resp_delim_pattern,
717 getmem_resp_delim_fastmap);
719 if (mon_ops->setmem.resp_delim)
720 compile_pattern (mon_ops->setmem.resp_delim, &setmem_resp_delim_pattern,
721 setmem_resp_delim_fastmap);
723 if (mon_ops->setreg.resp_delim)
724 compile_pattern (mon_ops->setreg.resp_delim, &setreg_resp_delim_pattern,
725 setreg_resp_delim_fastmap);
727 unpush_target (targ_ops);
731 dev_name = xstrdup (args);
733 monitor_desc = serial_open (dev_name);
736 perror_with_name (dev_name);
740 if (serial_setbaudrate (monitor_desc, baud_rate))
742 serial_close (monitor_desc);
743 perror_with_name (dev_name);
747 serial_raw (monitor_desc);
749 serial_flush_input (monitor_desc);
751 /* some systems only work with 2 stop bits */
753 serial_setstopbits (monitor_desc, mon_ops->stopbits);
755 current_monitor = mon_ops;
757 /* See if we can wake up the monitor. First, try sending a stop sequence,
758 then send the init strings. Last, remove all breakpoints. */
760 if (current_monitor->stop)
763 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
765 monitor_debug ("EXP Open echo\n");
766 monitor_expect_prompt (NULL, 0);
770 /* wake up the monitor and see if it's alive */
771 for (p = mon_ops->init; *p != NULL; p++)
773 /* Some of the characters we send may not be echoed,
774 but we hope to get a prompt at the end of it all. */
776 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
779 monitor_printf_noecho (*p);
780 monitor_expect_prompt (NULL, 0);
783 serial_flush_input (monitor_desc);
785 /* Alloc breakpoints */
786 if (mon_ops->set_break != NULL)
788 if (mon_ops->num_breakpoints == 0)
789 mon_ops->num_breakpoints = 8;
791 breakaddr = (CORE_ADDR *) xmalloc (mon_ops->num_breakpoints * sizeof (CORE_ADDR));
792 memset (breakaddr, 0, mon_ops->num_breakpoints * sizeof (CORE_ADDR));
795 /* Remove all breakpoints */
797 if (mon_ops->clr_all_break)
799 monitor_printf (mon_ops->clr_all_break);
800 monitor_expect_prompt (NULL, 0);
804 printf_unfiltered (_("Remote target %s connected to %s\n"), name, dev_name);
806 push_target (targ_ops);
811 inferior_ptid = pid_to_ptid (42000); /* Make run command think we are busy... */
813 /* Give monitor_wait something to read */
815 monitor_printf (current_monitor->line_term);
817 start_remote (from_tty);
820 /* Close out all files and local state before this target loses
824 monitor_close (int quitting)
827 serial_close (monitor_desc);
829 /* Free breakpoint memory */
830 if (breakaddr != NULL)
839 /* Terminate the open connection to the remote debugger. Use this
840 when you want to detach and do something else with your gdb. */
843 monitor_detach (char *args, int from_tty)
845 pop_target (); /* calls monitor_close to do the real work */
847 printf_unfiltered (_("Ending remote %s debugging\n"), target_shortname);
850 /* Convert VALSTR into the target byte-ordered value of REGNO and store it. */
853 monitor_supply_register (struct regcache *regcache, int regno, char *valstr)
856 unsigned char regbuf[MAX_REGISTER_SIZE];
861 while (p && *p != '\0')
863 if (*p == '\r' || *p == '\n')
874 if (!isxdigit (*p) && *p != 'x')
880 val += fromhex (*p++);
882 monitor_debug ("Supplying Register %d %s\n", regno, valstr);
884 if (val == 0 && valstr == p)
885 error (_("monitor_supply_register (%d): bad value from monitor: %s."),
888 /* supply register stores in target byte order, so swap here */
890 store_unsigned_integer (regbuf,
891 register_size (get_regcache_arch (regcache), regno),
894 regcache_raw_supply (regcache, regno, regbuf);
899 /* Tell the remote machine to resume. */
902 monitor_resume (ptid_t ptid, int step, enum target_signal sig)
904 /* Some monitors require a different command when starting a program */
905 monitor_debug ("MON resume\n");
906 if (current_monitor->flags & MO_RUN_FIRST_TIME && first_time == 1)
909 monitor_printf ("run\r");
910 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
915 monitor_printf (current_monitor->step);
918 if (current_monitor->continue_hook)
919 (*current_monitor->continue_hook) ();
921 monitor_printf (current_monitor->cont);
922 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
927 /* Parse the output of a register dump command. A monitor specific
928 regexp is used to extract individual register descriptions of the
929 form REG=VAL. Each description is split up into a name and a value
930 string which are passed down to monitor specific code. */
933 parse_register_dump (struct regcache *regcache, char *buf, int len)
935 monitor_debug ("MON Parsing register dump\n");
938 int regnamelen, vallen;
940 /* Element 0 points to start of register name, and element 1
941 points to the start of the register value. */
942 struct re_registers register_strings;
944 memset (®ister_strings, 0, sizeof (struct re_registers));
946 if (re_search (®ister_pattern, buf, len, 0, len,
947 ®ister_strings) == -1)
950 regnamelen = register_strings.end[1] - register_strings.start[1];
951 regname = buf + register_strings.start[1];
952 vallen = register_strings.end[2] - register_strings.start[2];
953 val = buf + register_strings.start[2];
955 current_monitor->supply_register (regcache, regname, regnamelen,
958 buf += register_strings.end[0];
959 len -= register_strings.end[0];
963 /* Send ^C to target to halt it. Target will respond, and send us a
967 monitor_interrupt (int signo)
969 /* If this doesn't work, try more severe steps. */
970 signal (signo, monitor_interrupt_twice);
972 if (monitor_debug_p || remote_debug)
973 fprintf_unfiltered (gdb_stdlog, "monitor_interrupt called\n");
978 /* The user typed ^C twice. */
981 monitor_interrupt_twice (int signo)
983 signal (signo, ofunc);
985 monitor_interrupt_query ();
987 signal (signo, monitor_interrupt);
990 /* Ask the user what to do when an interrupt is received. */
993 monitor_interrupt_query (void)
995 target_terminal_ours ();
997 if (query ("Interrupted while waiting for the program.\n\
998 Give up (and stop debugging it)? "))
1000 target_mourn_inferior ();
1001 deprecated_throw_reason (RETURN_QUIT);
1004 target_terminal_inferior ();
1008 monitor_wait_cleanup (void *old_timeout)
1010 timeout = *(int *) old_timeout;
1011 signal (SIGINT, ofunc);
1012 in_monitor_wait = 0;
1018 monitor_wait_filter (char *buf,
1021 struct target_waitstatus *status)
1026 resp_len = monitor_expect_prompt (buf, bufmax);
1027 *ext_resp_len = resp_len;
1030 fprintf_unfiltered (gdb_stderr, "monitor_wait: excessive response from monitor: %s.", buf);
1032 while (resp_len < 0);
1034 /* Print any output characters that were preceded by ^O. */
1035 /* FIXME - This would be great as a user settabgle flag */
1036 if (monitor_debug_p || remote_debug
1037 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1041 for (i = 0; i < resp_len - 1; i++)
1043 putchar_unfiltered (buf[++i]);
1049 /* Wait until the remote machine stops, then return, storing status in
1050 status just as `wait' would. */
1053 monitor_wait (ptid_t ptid, struct target_waitstatus *status)
1055 int old_timeout = timeout;
1056 char buf[TARGET_BUF_SIZE];
1058 struct cleanup *old_chain;
1060 status->kind = TARGET_WAITKIND_EXITED;
1061 status->value.integer = 0;
1063 old_chain = make_cleanup (monitor_wait_cleanup, &old_timeout);
1064 monitor_debug ("MON wait\n");
1067 /* This is somthing other than a maintenance command */
1068 in_monitor_wait = 1;
1069 timeout = watchdog > 0 ? watchdog : -1;
1071 timeout = -1; /* Don't time out -- user program is running. */
1074 ofunc = (void (*)()) signal (SIGINT, monitor_interrupt);
1076 if (current_monitor->wait_filter)
1077 (*current_monitor->wait_filter) (buf, sizeof (buf), &resp_len, status);
1079 monitor_wait_filter (buf, sizeof (buf), &resp_len, status);
1081 #if 0 /* Transferred to monitor wait filter */
1084 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1087 fprintf_unfiltered (gdb_stderr, "monitor_wait: excessive response from monitor: %s.", buf);
1089 while (resp_len < 0);
1091 /* Print any output characters that were preceded by ^O. */
1092 /* FIXME - This would be great as a user settabgle flag */
1093 if (monitor_debug_p || remote_debug
1094 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1098 for (i = 0; i < resp_len - 1; i++)
1100 putchar_unfiltered (buf[++i]);
1104 signal (SIGINT, ofunc);
1106 timeout = old_timeout;
1108 if (dump_reg_flag && current_monitor->dump_registers)
1111 monitor_printf (current_monitor->dump_registers);
1112 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1115 if (current_monitor->register_pattern)
1116 parse_register_dump (get_current_regcache (), buf, resp_len);
1118 monitor_debug ("Wait fetching registers after stop\n");
1119 monitor_dump_regs (get_current_regcache ());
1122 status->kind = TARGET_WAITKIND_STOPPED;
1123 status->value.sig = TARGET_SIGNAL_TRAP;
1125 discard_cleanups (old_chain);
1127 in_monitor_wait = 0;
1129 return inferior_ptid;
1132 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
1136 monitor_fetch_register (struct regcache *regcache, int regno)
1143 regbuf = alloca (MAX_REGISTER_SIZE * 2 + 1);
1144 zerobuf = alloca (MAX_REGISTER_SIZE);
1145 memset (zerobuf, 0, MAX_REGISTER_SIZE);
1147 if (current_monitor->regname != NULL)
1148 name = current_monitor->regname (regno);
1150 name = current_monitor->regnames[regno];
1151 monitor_debug ("MON fetchreg %d '%s'\n", regno, name ? name : "(null name)");
1153 if (!name || (*name == '\0'))
1155 monitor_debug ("No register known for %d\n", regno);
1156 regcache_raw_supply (regcache, regno, zerobuf);
1160 /* send the register examine command */
1162 monitor_printf (current_monitor->getreg.cmd, name);
1164 /* If RESP_DELIM is specified, we search for that as a leading
1165 delimiter for the register value. Otherwise, we just start
1166 searching from the start of the buf. */
1168 if (current_monitor->getreg.resp_delim)
1170 monitor_debug ("EXP getreg.resp_delim\n");
1171 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1172 /* Handle case of first 32 registers listed in pairs. */
1173 if (current_monitor->flags & MO_32_REGS_PAIRED
1174 && (regno & 1) != 0 && regno < 32)
1176 monitor_debug ("EXP getreg.resp_delim\n");
1177 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1181 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set */
1182 if (current_monitor->flags & MO_HEX_PREFIX)
1185 c = readchar (timeout);
1187 c = readchar (timeout);
1188 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1191 error (_("Bad value returned from monitor while fetching register %x."),
1195 /* Read upto the maximum number of hex digits for this register, skipping
1196 spaces, but stop reading if something else is seen. Some monitors
1197 like to drop leading zeros. */
1199 for (i = 0; i < register_size (get_regcache_arch (regcache), regno) * 2; i++)
1202 c = readchar (timeout);
1204 c = readchar (timeout);
1212 regbuf[i] = '\000'; /* terminate the number */
1213 monitor_debug ("REGVAL '%s'\n", regbuf);
1215 /* If TERM is present, we wait for that to show up. Also, (if TERM
1216 is present), we will send TERM_CMD if that is present. In any
1217 case, we collect all of the output into buf, and then wait for
1218 the normal prompt. */
1220 if (current_monitor->getreg.term)
1222 monitor_debug ("EXP getreg.term\n");
1223 monitor_expect (current_monitor->getreg.term, NULL, 0); /* get response */
1226 if (current_monitor->getreg.term_cmd)
1228 monitor_debug ("EMIT getreg.term.cmd\n");
1229 monitor_printf (current_monitor->getreg.term_cmd);
1231 if (!current_monitor->getreg.term || /* Already expected or */
1232 current_monitor->getreg.term_cmd) /* ack expected */
1233 monitor_expect_prompt (NULL, 0); /* get response */
1235 monitor_supply_register (regcache, regno, regbuf);
1238 /* Sometimes, it takes several commands to dump the registers */
1239 /* This is a primitive for use by variations of monitor interfaces in
1240 case they need to compose the operation.
1243 monitor_dump_reg_block (struct regcache *regcache, char *block_cmd)
1245 char buf[TARGET_BUF_SIZE];
1247 monitor_printf (block_cmd);
1248 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1249 parse_register_dump (regcache, buf, resp_len);
1254 /* Read the remote registers into the block regs. */
1255 /* Call the specific function if it has been provided */
1258 monitor_dump_regs (struct regcache *regcache)
1260 char buf[TARGET_BUF_SIZE];
1262 if (current_monitor->dumpregs)
1263 (*(current_monitor->dumpregs)) (regcache); /* call supplied function */
1264 else if (current_monitor->dump_registers) /* default version */
1266 monitor_printf (current_monitor->dump_registers);
1267 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1268 parse_register_dump (regcache, buf, resp_len);
1271 internal_error (__FILE__, __LINE__, _("failed internal consistency check")); /* Need some way to read registers */
1275 monitor_fetch_registers (struct regcache *regcache, int regno)
1277 monitor_debug ("MON fetchregs\n");
1278 if (current_monitor->getreg.cmd)
1282 monitor_fetch_register (regcache, regno);
1286 for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1288 monitor_fetch_register (regcache, regno);
1292 monitor_dump_regs (regcache);
1296 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
1299 monitor_store_register (struct regcache *regcache, int regno)
1304 if (current_monitor->regname != NULL)
1305 name = current_monitor->regname (regno);
1307 name = current_monitor->regnames[regno];
1309 if (!name || (*name == '\0'))
1311 monitor_debug ("MON Cannot store unknown register\n");
1315 regcache_cooked_read_unsigned (regcache, regno, &val);
1316 monitor_debug ("MON storeg %d %s\n", regno,
1318 register_size (get_regcache_arch (regcache), regno)));
1320 /* send the register deposit command */
1322 if (current_monitor->flags & MO_REGISTER_VALUE_FIRST)
1323 monitor_printf (current_monitor->setreg.cmd, val, name);
1324 else if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1325 monitor_printf (current_monitor->setreg.cmd, name);
1327 monitor_printf (current_monitor->setreg.cmd, name, val);
1329 if (current_monitor->setreg.resp_delim)
1331 monitor_debug ("EXP setreg.resp_delim\n");
1332 monitor_expect_regexp (&setreg_resp_delim_pattern, NULL, 0);
1333 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1334 monitor_printf ("%s\r", paddr_nz (val));
1336 if (current_monitor->setreg.term)
1338 monitor_debug ("EXP setreg.term\n");
1339 monitor_expect (current_monitor->setreg.term, NULL, 0);
1340 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1341 monitor_printf ("%s\r", paddr_nz (val));
1342 monitor_expect_prompt (NULL, 0);
1345 monitor_expect_prompt (NULL, 0);
1346 if (current_monitor->setreg.term_cmd) /* Mode exit required */
1348 monitor_debug ("EXP setreg_termcmd\n");
1349 monitor_printf ("%s", current_monitor->setreg.term_cmd);
1350 monitor_expect_prompt (NULL, 0);
1352 } /* monitor_store_register */
1354 /* Store the remote registers. */
1357 monitor_store_registers (struct regcache *regcache, int regno)
1361 monitor_store_register (regcache, regno);
1365 for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1367 monitor_store_register (regcache, regno);
1370 /* Get ready to modify the registers array. On machines which store
1371 individual registers, this doesn't need to do anything. On machines
1372 which store all the registers in one fell swoop, this makes sure
1373 that registers contains all the registers from the program being
1377 monitor_prepare_to_store (struct regcache *regcache)
1379 /* Do nothing, since we can store individual regs */
1383 monitor_files_info (struct target_ops *ops)
1385 printf_unfiltered (_("\tAttached to %s at %d baud.\n"), dev_name, baud_rate);
1389 monitor_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
1391 unsigned int val, hostval;
1395 monitor_debug ("MON write %d %s\n", len, paddr (memaddr));
1397 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1398 memaddr = gdbarch_addr_bits_remove (current_gdbarch, memaddr);
1400 /* Use memory fill command for leading 0 bytes. */
1402 if (current_monitor->fill)
1404 for (i = 0; i < len; i++)
1408 if (i > 4) /* More than 4 zeros is worth doing */
1410 monitor_debug ("MON FILL %d\n", i);
1411 if (current_monitor->flags & MO_FILL_USES_ADDR)
1412 monitor_printf (current_monitor->fill, memaddr, (memaddr + i) - 1, 0);
1414 monitor_printf (current_monitor->fill, memaddr, i, 0);
1416 monitor_expect_prompt (NULL, 0);
1423 /* Can't actually use long longs if VAL is an int (nice idea, though). */
1424 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->setmem.cmdll)
1427 cmd = current_monitor->setmem.cmdll;
1431 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->setmem.cmdl)
1434 cmd = current_monitor->setmem.cmdl;
1436 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->setmem.cmdw)
1439 cmd = current_monitor->setmem.cmdw;
1444 cmd = current_monitor->setmem.cmdb;
1447 val = extract_unsigned_integer (myaddr, len);
1451 hostval = *(unsigned int *) myaddr;
1452 monitor_debug ("Hostval(%08x) val(%08x)\n", hostval, val);
1456 if (current_monitor->flags & MO_NO_ECHO_ON_SETMEM)
1457 monitor_printf_noecho (cmd, memaddr, val);
1458 else if (current_monitor->flags & MO_SETMEM_INTERACTIVE)
1461 monitor_printf_noecho (cmd, memaddr);
1463 if (current_monitor->setmem.resp_delim)
1465 monitor_debug ("EXP setmem.resp_delim");
1466 monitor_expect_regexp (&setmem_resp_delim_pattern, NULL, 0);
1467 monitor_printf ("%x\r", val);
1469 if (current_monitor->setmem.term)
1471 monitor_debug ("EXP setmem.term");
1472 monitor_expect (current_monitor->setmem.term, NULL, 0);
1473 monitor_printf ("%x\r", val);
1475 if (current_monitor->setmem.term_cmd)
1476 { /* Emit this to get out of the memory editing state */
1477 monitor_printf ("%s", current_monitor->setmem.term_cmd);
1478 /* Drop through to expecting a prompt */
1482 monitor_printf (cmd, memaddr, val);
1484 monitor_expect_prompt (NULL, 0);
1491 monitor_write_memory_bytes (CORE_ADDR memaddr, char *myaddr, int len)
1497 /* Enter the sub mode */
1498 monitor_printf (current_monitor->setmem.cmdb, memaddr);
1499 monitor_expect_prompt (NULL, 0);
1503 monitor_printf ("%x\r", val);
1507 /* If we wanted to, here we could validate the address */
1508 monitor_expect_prompt (NULL, 0);
1511 /* Now exit the sub mode */
1512 monitor_printf (current_monitor->getreg.term_cmd);
1513 monitor_expect_prompt (NULL, 0);
1519 longlongendswap (unsigned char *a)
1528 *(a + i) = *(a + j);
1533 /* Format 32 chars of long long value, advance the pointer */
1534 static char *hexlate = "0123456789abcdef";
1536 longlong_hexchars (unsigned long long value,
1546 static unsigned char disbuf[8]; /* disassembly buffer */
1547 unsigned char *scan, *limit; /* loop controls */
1548 unsigned char c, nib;
1553 unsigned long long *dp;
1554 dp = (unsigned long long *) scan;
1557 longlongendswap (disbuf); /* FIXME: ONly on big endian hosts */
1558 while (scan < limit)
1560 c = *scan++; /* a byte of our long long value */
1566 leadzero = 0; /* henceforth we print even zeroes */
1568 nib = c >> 4; /* high nibble bits */
1569 *outbuff++ = hexlate[nib];
1570 nib = c & 0x0f; /* low nibble bits */
1571 *outbuff++ = hexlate[nib];
1575 } /* longlong_hexchars */
1579 /* I am only going to call this when writing virtual byte streams.
1580 Which possably entails endian conversions
1583 monitor_write_memory_longlongs (CORE_ADDR memaddr, char *myaddr, int len)
1585 static char hexstage[20]; /* At least 16 digits required, plus null */
1590 llptr = (unsigned long long *) myaddr;
1593 monitor_printf (current_monitor->setmem.cmdll, memaddr);
1594 monitor_expect_prompt (NULL, 0);
1598 endstring = longlong_hexchars (*llptr, hexstage);
1599 *endstring = '\0'; /* NUll terminate for printf */
1600 monitor_printf ("%s\r", hexstage);
1604 /* If we wanted to, here we could validate the address */
1605 monitor_expect_prompt (NULL, 0);
1608 /* Now exit the sub mode */
1609 monitor_printf (current_monitor->getreg.term_cmd);
1610 monitor_expect_prompt (NULL, 0);
1616 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1617 /* This is for the large blocks of memory which may occur in downloading.
1618 And for monitors which use interactive entry,
1619 And for monitors which do not have other downloading methods.
1620 Without this, we will end up calling monitor_write_memory many times
1621 and do the entry and exit of the sub mode many times
1622 This currently assumes...
1623 MO_SETMEM_INTERACTIVE
1624 ! MO_NO_ECHO_ON_SETMEM
1625 To use this, the you have to patch the monitor_cmds block with
1626 this function. Otherwise, its not tuned up for use by all
1631 monitor_write_memory_block (CORE_ADDR memaddr, char *myaddr, int len)
1635 /* FIXME: This would be a good place to put the zero test */
1637 if ((len > 8) && (((len & 0x07)) == 0) && current_monitor->setmem.cmdll)
1639 return monitor_write_memory_longlongs (memaddr, myaddr, len);
1642 written = monitor_write_memory_bytes (memaddr, myaddr, len);
1646 /* This is an alternate form of monitor_read_memory which is used for monitors
1647 which can only read a single byte/word/etc. at a time. */
1650 monitor_read_memory_single (CORE_ADDR memaddr, char *myaddr, int len)
1653 char membuf[sizeof (int) * 2 + 1];
1657 monitor_debug ("MON read single\n");
1659 /* Can't actually use long longs (nice idea, though). In fact, the
1660 call to strtoul below will fail if it tries to convert a value
1661 that's too big to fit in a long. */
1662 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->getmem.cmdll)
1665 cmd = current_monitor->getmem.cmdll;
1669 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->getmem.cmdl)
1672 cmd = current_monitor->getmem.cmdl;
1674 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->getmem.cmdw)
1677 cmd = current_monitor->getmem.cmdw;
1682 cmd = current_monitor->getmem.cmdb;
1685 /* Send the examine command. */
1687 monitor_printf (cmd, memaddr);
1689 /* If RESP_DELIM is specified, we search for that as a leading
1690 delimiter for the memory value. Otherwise, we just start
1691 searching from the start of the buf. */
1693 if (current_monitor->getmem.resp_delim)
1695 monitor_debug ("EXP getmem.resp_delim\n");
1696 monitor_expect_regexp (&getmem_resp_delim_pattern, NULL, 0);
1699 /* Now, read the appropriate number of hex digits for this loc,
1702 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1703 if (current_monitor->flags & MO_HEX_PREFIX)
1707 c = readchar (timeout);
1709 c = readchar (timeout);
1710 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1713 monitor_error ("monitor_read_memory_single",
1714 "bad response from monitor",
1715 memaddr, 0, NULL, 0);
1720 for (i = 0; i < len * 2; i++)
1726 c = readchar (timeout);
1732 monitor_error ("monitor_read_memory_single",
1733 "bad response from monitor",
1734 memaddr, i, membuf, 0);
1738 membuf[i] = '\000'; /* terminate the number */
1741 /* If TERM is present, we wait for that to show up. Also, (if TERM is
1742 present), we will send TERM_CMD if that is present. In any case, we collect
1743 all of the output into buf, and then wait for the normal prompt. */
1745 if (current_monitor->getmem.term)
1747 monitor_expect (current_monitor->getmem.term, NULL, 0); /* get response */
1749 if (current_monitor->getmem.term_cmd)
1751 monitor_printf (current_monitor->getmem.term_cmd);
1752 monitor_expect_prompt (NULL, 0);
1756 monitor_expect_prompt (NULL, 0); /* get response */
1759 val = strtoul (membuf, &p, 16);
1761 if (val == 0 && membuf == p)
1762 monitor_error ("monitor_read_memory_single",
1763 "bad value from monitor",
1764 memaddr, 0, membuf, 0);
1766 /* supply register stores in target byte order, so swap here */
1768 store_unsigned_integer (myaddr, len, val);
1773 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1774 memory at MEMADDR. Returns length moved. Currently, we do no more
1775 than 16 bytes at a time. */
1778 monitor_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
1789 monitor_debug ("Zero length call to monitor_read_memory\n");
1793 monitor_debug ("MON read block ta(%s) ha(%lx) %d\n",
1794 paddr_nz (memaddr), (long) myaddr, len);
1796 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1797 memaddr = gdbarch_addr_bits_remove (current_gdbarch, memaddr);
1799 if (current_monitor->flags & MO_GETMEM_READ_SINGLE)
1800 return monitor_read_memory_single (memaddr, myaddr, len);
1802 len = min (len, 16);
1804 /* Some dumpers align the first data with the preceeding 16
1805 byte boundary. Some print blanks and start at the
1806 requested boundary. EXACT_DUMPADDR
1809 dumpaddr = (current_monitor->flags & MO_EXACT_DUMPADDR)
1810 ? memaddr : memaddr & ~0x0f;
1812 /* See if xfer would cross a 16 byte boundary. If so, clip it. */
1813 if (((memaddr ^ (memaddr + len - 1)) & ~0xf) != 0)
1814 len = ((memaddr + len) & ~0xf) - memaddr;
1816 /* send the memory examine command */
1818 if (current_monitor->flags & MO_GETMEM_NEEDS_RANGE)
1819 monitor_printf (current_monitor->getmem.cmdb, memaddr, memaddr + len);
1820 else if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1821 monitor_printf (current_monitor->getmem.cmdb, dumpaddr);
1823 monitor_printf (current_monitor->getmem.cmdb, memaddr, len);
1825 /* If TERM is present, we wait for that to show up. Also, (if TERM
1826 is present), we will send TERM_CMD if that is present. In any
1827 case, we collect all of the output into buf, and then wait for
1828 the normal prompt. */
1830 if (current_monitor->getmem.term)
1832 resp_len = monitor_expect (current_monitor->getmem.term, buf, sizeof buf); /* get response */
1835 monitor_error ("monitor_read_memory",
1836 "excessive response from monitor",
1837 memaddr, resp_len, buf, 0);
1839 if (current_monitor->getmem.term_cmd)
1841 serial_write (monitor_desc, current_monitor->getmem.term_cmd,
1842 strlen (current_monitor->getmem.term_cmd));
1843 monitor_expect_prompt (NULL, 0);
1847 resp_len = monitor_expect_prompt (buf, sizeof buf); /* get response */
1851 /* If RESP_DELIM is specified, we search for that as a leading
1852 delimiter for the values. Otherwise, we just start searching
1853 from the start of the buf. */
1855 if (current_monitor->getmem.resp_delim)
1858 struct re_registers resp_strings;
1859 monitor_debug ("MON getmem.resp_delim %s\n", current_monitor->getmem.resp_delim);
1861 memset (&resp_strings, 0, sizeof (struct re_registers));
1863 retval = re_search (&getmem_resp_delim_pattern, p, tmp, 0, tmp,
1867 monitor_error ("monitor_read_memory",
1868 "bad response from monitor",
1869 memaddr, resp_len, buf, 0);
1871 p += resp_strings.end[0];
1873 p = strstr (p, current_monitor->getmem.resp_delim);
1875 monitor_error ("monitor_read_memory",
1876 "bad response from monitor",
1877 memaddr, resp_len, buf, 0);
1878 p += strlen (current_monitor->getmem.resp_delim);
1881 monitor_debug ("MON scanning %d ,%lx '%s'\n", len, (long) p, p);
1882 if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1890 while (!(c == '\000' || c == '\n' || c == '\r') && i > 0)
1894 if ((dumpaddr >= memaddr) && (i > 0))
1896 val = fromhex (c) * 16 + fromhex (*(p + 1));
1898 if (monitor_debug_p || remote_debug)
1899 fprintf_unfiltered (gdb_stdlog, "[%02x]", val);
1906 ++p; /* skip a blank or other non hex char */
1910 error (_("Failed to read via monitor"));
1911 if (monitor_debug_p || remote_debug)
1912 fprintf_unfiltered (gdb_stdlog, "\n");
1913 return fetched; /* Return the number of bytes actually read */
1915 monitor_debug ("MON scanning bytes\n");
1917 for (i = len; i > 0; i--)
1919 /* Skip non-hex chars, but bomb on end of string and newlines */
1926 if (*p == '\000' || *p == '\n' || *p == '\r')
1927 monitor_error ("monitor_read_memory",
1928 "badly terminated response from monitor",
1929 memaddr, resp_len, buf, 0);
1933 val = strtoul (p, &p1, 16);
1935 if (val == 0 && p == p1)
1936 monitor_error ("monitor_read_memory",
1937 "bad value from monitor",
1938 memaddr, resp_len, buf, 0);
1951 /* Transfer LEN bytes between target address MEMADDR and GDB address
1952 MYADDR. Returns 0 for success, errno code for failure. TARGET is
1956 monitor_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
1957 struct mem_attrib *attrib, struct target_ops *target)
1963 if (current_monitor->flags & MO_HAS_BLOCKWRITES)
1964 res = monitor_write_memory_block(memaddr, myaddr, len);
1966 res = monitor_write_memory(memaddr, myaddr, len);
1970 res = monitor_read_memory(memaddr, myaddr, len);
1979 return; /* ignore attempts to kill target system */
1982 /* All we actually do is set the PC to the start address of exec_bfd. */
1985 monitor_create_inferior (char *exec_file, char *args, char **env,
1988 if (args && (*args != '\000'))
1989 error (_("Args are not supported by the monitor."));
1992 clear_proceed_status ();
1993 write_pc (bfd_get_start_address (exec_bfd));
1996 /* Clean up when a program exits.
1997 The program actually lives on in the remote processor's RAM, and may be
1998 run again without a download. Don't leave it full of breakpoint
2002 monitor_mourn_inferior (void)
2004 unpush_target (targ_ops);
2005 generic_mourn_inferior (); /* Do all the proper things now */
2008 /* Tell the monitor to add a breakpoint. */
2011 monitor_insert_breakpoint (struct bp_target_info *bp_tgt)
2013 CORE_ADDR addr = bp_tgt->placed_address;
2015 const unsigned char *bp;
2018 monitor_debug ("MON inst bkpt %s\n", paddr (addr));
2019 if (current_monitor->set_break == NULL)
2020 error (_("No set_break defined for this monitor"));
2022 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
2023 addr = gdbarch_addr_bits_remove (current_gdbarch, addr);
2025 /* Determine appropriate breakpoint size for this address. */
2026 bp = gdbarch_breakpoint_from_pc (current_gdbarch, &addr, &bplen);
2027 bp_tgt->placed_address = addr;
2028 bp_tgt->placed_size = bplen;
2030 for (i = 0; i < current_monitor->num_breakpoints; i++)
2032 if (breakaddr[i] == 0)
2034 breakaddr[i] = addr;
2035 monitor_printf (current_monitor->set_break, addr);
2036 monitor_expect_prompt (NULL, 0);
2041 error (_("Too many breakpoints (> %d) for monitor."), current_monitor->num_breakpoints);
2044 /* Tell the monitor to remove a breakpoint. */
2047 monitor_remove_breakpoint (struct bp_target_info *bp_tgt)
2049 CORE_ADDR addr = bp_tgt->placed_address;
2052 monitor_debug ("MON rmbkpt %s\n", paddr (addr));
2053 if (current_monitor->clr_break == NULL)
2054 error (_("No clr_break defined for this monitor"));
2056 for (i = 0; i < current_monitor->num_breakpoints; i++)
2058 if (breakaddr[i] == addr)
2061 /* some monitors remove breakpoints based on the address */
2062 if (current_monitor->flags & MO_CLR_BREAK_USES_ADDR)
2063 monitor_printf (current_monitor->clr_break, addr);
2064 else if (current_monitor->flags & MO_CLR_BREAK_1_BASED)
2065 monitor_printf (current_monitor->clr_break, i + 1);
2067 monitor_printf (current_monitor->clr_break, i);
2068 monitor_expect_prompt (NULL, 0);
2072 fprintf_unfiltered (gdb_stderr,
2073 "Can't find breakpoint associated with 0x%s\n",
2078 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2079 an S-record. Return non-zero if the ACK is received properly. */
2082 monitor_wait_srec_ack (void)
2086 if (current_monitor->flags & MO_SREC_ACK_PLUS)
2088 return (readchar (timeout) == '+');
2090 else if (current_monitor->flags & MO_SREC_ACK_ROTATE)
2092 /* Eat two backspaces, a "rotating" char (|/-\), and a space. */
2093 if ((ch = readchar (1)) < 0)
2095 if ((ch = readchar (1)) < 0)
2097 if ((ch = readchar (1)) < 0)
2099 if ((ch = readchar (1)) < 0)
2105 /* monitor_load -- download a file. */
2108 monitor_load (char *file, int from_tty)
2110 monitor_debug ("MON load\n");
2112 if (current_monitor->load_routine)
2113 current_monitor->load_routine (monitor_desc, file, hashmark);
2115 { /* The default is ascii S-records */
2117 unsigned long load_offset;
2120 /* enable user to specify address for downloading as 2nd arg to load */
2121 n = sscanf (file, "%s 0x%lx", buf, &load_offset);
2127 monitor_printf (current_monitor->load);
2128 if (current_monitor->loadresp)
2129 monitor_expect (current_monitor->loadresp, NULL, 0);
2131 load_srec (monitor_desc, file, (bfd_vma) load_offset,
2132 32, SREC_ALL, hashmark,
2133 current_monitor->flags & MO_SREC_ACK ?
2134 monitor_wait_srec_ack : NULL);
2136 monitor_expect_prompt (NULL, 0);
2139 /* Finally, make the PC point at the start address */
2141 write_pc (bfd_get_start_address (exec_bfd));
2143 /* There used to be code here which would clear inferior_ptid and
2144 call clear_symtab_users. None of that should be necessary:
2145 monitor targets should behave like remote protocol targets, and
2146 since generic_load does none of those things, this function
2149 Furthermore, clearing inferior_ptid is *incorrect*. After doing
2150 a load, we still have a valid connection to the monitor, with a
2151 live processor state to fiddle with. The user can type
2152 `continue' or `jump *start' and make the program run. If they do
2153 these things, however, GDB will be talking to a running program
2154 while inferior_ptid is null_ptid; this makes things like
2155 reinit_frame_cache very confused. */
2161 monitor_debug ("MON stop\n");
2162 if ((current_monitor->flags & MO_SEND_BREAK_ON_STOP) != 0)
2163 serial_send_break (monitor_desc);
2164 if (current_monitor->stop)
2165 monitor_printf_noecho (current_monitor->stop);
2168 /* Put a COMMAND string out to MONITOR. Output from MONITOR is placed
2169 in OUTPUT until the prompt is seen. FIXME: We read the characters
2170 ourseleves here cause of a nasty echo. */
2173 monitor_rcmd (char *command,
2174 struct ui_file *outbuf)
2180 if (monitor_desc == NULL)
2181 error (_("monitor target not open."));
2183 p = current_monitor->prompt;
2185 /* Send the command. Note that if no args were supplied, then we're
2186 just sending the monitor a newline, which is sometimes useful. */
2188 monitor_printf ("%s\r", (command ? command : ""));
2190 resp_len = monitor_expect_prompt (buf, sizeof buf);
2192 fputs_unfiltered (buf, outbuf); /* Output the response */
2195 /* Convert hex digit A to a number. */
2201 if (a >= '0' && a <= '9')
2203 if (a >= 'a' && a <= 'f')
2204 return a - 'a' + 10;
2205 if (a >= 'A' && a <= 'F')
2206 return a - 'A' + 10;
2208 error (_("Reply contains invalid hex digit 0x%x"), a);
2213 monitor_get_dev_name (void)
2218 static struct target_ops monitor_ops;
2221 init_base_monitor_ops (void)
2223 monitor_ops.to_close = monitor_close;
2224 monitor_ops.to_detach = monitor_detach;
2225 monitor_ops.to_resume = monitor_resume;
2226 monitor_ops.to_wait = monitor_wait;
2227 monitor_ops.to_fetch_registers = monitor_fetch_registers;
2228 monitor_ops.to_store_registers = monitor_store_registers;
2229 monitor_ops.to_prepare_to_store = monitor_prepare_to_store;
2230 monitor_ops.deprecated_xfer_memory = monitor_xfer_memory;
2231 monitor_ops.to_files_info = monitor_files_info;
2232 monitor_ops.to_insert_breakpoint = monitor_insert_breakpoint;
2233 monitor_ops.to_remove_breakpoint = monitor_remove_breakpoint;
2234 monitor_ops.to_kill = monitor_kill;
2235 monitor_ops.to_load = monitor_load;
2236 monitor_ops.to_create_inferior = monitor_create_inferior;
2237 monitor_ops.to_mourn_inferior = monitor_mourn_inferior;
2238 monitor_ops.to_stop = monitor_stop;
2239 monitor_ops.to_rcmd = monitor_rcmd;
2240 monitor_ops.to_log_command = serial_log_command;
2241 monitor_ops.to_stratum = process_stratum;
2242 monitor_ops.to_has_all_memory = 1;
2243 monitor_ops.to_has_memory = 1;
2244 monitor_ops.to_has_stack = 1;
2245 monitor_ops.to_has_registers = 1;
2246 monitor_ops.to_has_execution = 1;
2247 monitor_ops.to_magic = OPS_MAGIC;
2248 } /* init_base_monitor_ops */
2250 /* Init the target_ops structure pointed at by OPS */
2253 init_monitor_ops (struct target_ops *ops)
2255 if (monitor_ops.to_magic != OPS_MAGIC)
2256 init_base_monitor_ops ();
2258 memcpy (ops, &monitor_ops, sizeof monitor_ops);
2261 /* Define additional commands that are usually only used by monitors. */
2263 extern initialize_file_ftype _initialize_remote_monitors; /* -Wmissing-prototypes */
2266 _initialize_remote_monitors (void)
2268 init_base_monitor_ops ();
2269 add_setshow_boolean_cmd ("hash", no_class, &hashmark, _("\
2270 Set display of activity while downloading a file."), _("\
2271 Show display of activity while downloading a file."), _("\
2272 When enabled, a hashmark \'#\' is displayed."),
2274 NULL, /* FIXME: i18n: */
2275 &setlist, &showlist);
2277 add_setshow_zinteger_cmd ("monitor", no_class, &monitor_debug_p, _("\
2278 Set debugging of remote monitor communication."), _("\
2279 Show debugging of remote monitor communication."), _("\
2280 When enabled, communication between GDB and the remote monitor\n\
2283 NULL, /* FIXME: i18n: */
2284 &setdebuglist, &showdebuglist);