1 /* Remote debugging interface for boot monitors, for GDB.
3 Copyright (C) 1990-2002, 2006-2012 Free Software Foundation, Inc.
5 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
6 Resurrected from the ashes by Stu Grossman.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 /* This file was derived from various remote-* modules. It is a collection
24 of generic support functions so GDB can talk directly to a ROM based
25 monitor. This saves use from having to hack an exception based handler
26 into existence, and makes for quick porting.
28 This module talks to a debug monitor called 'MONITOR', which
29 We communicate with MONITOR via either a direct serial line, or a TCP
30 (or possibly TELNET) stream to a terminal multiplexor,
31 which in turn talks to the target board. */
33 /* FIXME 32x64: This code assumes that registers and addresses are at
34 most 32 bits long. If they can be larger, you will need to declare
35 values as LONGEST and use %llx or some such to print values when
36 building commands to send to the monitor. Since we don't know of
37 any actual 64-bit targets with ROM monitors that use this code,
38 it's not an issue right now. -sts 4/18/96 */
43 #include "exceptions.h"
46 #include "gdb_string.h"
47 #include <sys/types.h>
53 #include "gdb_regex.h"
56 #include "gdbthread.h"
58 static char *dev_name;
59 static struct target_ops *targ_ops;
61 static void monitor_interrupt_query (void);
62 static void monitor_interrupt_twice (int);
63 static void monitor_stop (ptid_t);
64 static void monitor_dump_regs (struct regcache *regcache);
67 static int from_hex (int a);
70 static struct monitor_ops *current_monitor;
72 static int hashmark; /* flag set by "set hash". */
74 static int timeout = 30;
76 static int in_monitor_wait = 0; /* Non-zero means we are in monitor_wait(). */
78 static void (*ofunc) (); /* Old SIGINT signal handler. */
80 static CORE_ADDR *breakaddr;
82 /* Descriptor for I/O to remote machine. Initialize it to NULL so
83 that monitor_open knows that we don't have a file open when the
86 static struct serial *monitor_desc = NULL;
88 /* Pointer to regexp pattern matching data. */
90 static struct re_pattern_buffer register_pattern;
91 static char register_fastmap[256];
93 static struct re_pattern_buffer getmem_resp_delim_pattern;
94 static char getmem_resp_delim_fastmap[256];
96 static struct re_pattern_buffer setmem_resp_delim_pattern;
97 static char setmem_resp_delim_fastmap[256];
99 static struct re_pattern_buffer setreg_resp_delim_pattern;
100 static char setreg_resp_delim_fastmap[256];
102 static int dump_reg_flag; /* Non-zero means do a dump_registers cmd when
103 monitor_wait wakes up. */
105 static int first_time = 0; /* Is this the first time we're
106 executing after gaving created the
110 /* This is the ptid we use while we're connected to a monitor. Its
111 value is arbitrary, as monitor targets don't have a notion of
112 processes or threads, but we need something non-null to place in
114 static ptid_t monitor_ptid;
116 #define TARGET_BUF_SIZE 2048
118 /* Monitor specific debugging information. Typically only useful to
119 the developer of a new monitor interface. */
121 static void monitor_debug (const char *fmt, ...) ATTRIBUTE_PRINTF (1, 2);
123 static unsigned int monitor_debug_p = 0;
125 /* NOTE: This file alternates between monitor_debug_p and remote_debug
126 when determining if debug information is printed. Perhaps this
127 could be simplified. */
130 monitor_debug (const char *fmt, ...)
136 va_start (args, fmt);
137 vfprintf_filtered (gdb_stdlog, fmt, args);
143 /* Convert a string into a printable representation, Return # byte in
144 the new string. When LEN is >0 it specifies the size of the
145 string. Otherwize strlen(oldstr) is used. */
148 monitor_printable_string (char *newstr, char *oldstr, int len)
154 len = strlen (oldstr);
156 for (i = 0; i < len; i++)
167 sprintf (newstr, "\\x%02x", ch & 0xff);
206 /* Print monitor errors with a string, converting the string to printable
210 monitor_error (char *function, char *message,
211 CORE_ADDR memaddr, int len, char *string, int final_char)
213 int real_len = (len == 0 && string != (char *) 0) ? strlen (string) : len;
214 char *safe_string = alloca ((real_len * 4) + 1);
216 monitor_printable_string (safe_string, string, real_len);
219 error (_("%s (%s): %s: %s%c"),
220 function, paddress (target_gdbarch (), memaddr),
221 message, safe_string, final_char);
223 error (_("%s (%s): %s: %s"),
224 function, paddress (target_gdbarch (), memaddr),
225 message, safe_string);
228 /* Convert hex digit A to a number. */
233 if (a >= '0' && a <= '9')
235 else if (a >= 'a' && a <= 'f')
237 else if (a >= 'A' && a <= 'F')
240 error (_("Invalid hex digit %d"), a);
243 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
245 This function exists to get around the problem that many host platforms
246 don't have a printf that can print 64-bit addresses. The %A format
247 specification is recognized as a special case, and causes the argument
248 to be printed as a 64-bit hexadecimal address.
250 Only format specifiers of the form "[0-9]*[a-z]" are recognized.
251 If it is a '%s' format, the argument is a string; otherwise the
252 argument is assumed to be a long integer.
254 %% is also turned into a single %. */
257 monitor_vsprintf (char *sndbuf, char *pattern, va_list args)
259 int addr_bit = gdbarch_addr_bit (target_gdbarch ());
268 for (p = pattern; *p; p++)
272 /* Copy the format specifier to a separate buffer. */
274 for (i = 1; *p >= '0' && *p <= '9' && i < (int) sizeof (format) - 2;
277 format[i] = fmt = *p;
278 format[i + 1] = '\0';
280 /* Fetch the next argument and print it. */
284 strcpy (sndbuf, "%");
287 arg_addr = va_arg (args, CORE_ADDR);
288 strcpy (sndbuf, phex_nz (arg_addr, addr_bit / 8));
291 arg_string = va_arg (args, char *);
292 sprintf (sndbuf, format, arg_string);
295 arg_int = va_arg (args, long);
296 sprintf (sndbuf, format, arg_int);
299 sndbuf += strlen (sndbuf);
308 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
309 Works just like printf. */
312 monitor_printf_noecho (char *pattern,...)
318 va_start (args, pattern);
320 monitor_vsprintf (sndbuf, pattern, args);
322 len = strlen (sndbuf);
323 if (len + 1 > sizeof sndbuf)
324 internal_error (__FILE__, __LINE__,
325 _("failed internal consistency check"));
329 char *safe_string = (char *) alloca ((strlen (sndbuf) * 4) + 1);
331 monitor_printable_string (safe_string, sndbuf, 0);
332 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
335 monitor_write (sndbuf, len);
338 /* monitor_printf -- Send data to monitor and check the echo. Works just like
342 monitor_printf (char *pattern,...)
348 va_start (args, pattern);
350 monitor_vsprintf (sndbuf, pattern, args);
352 len = strlen (sndbuf);
353 if (len + 1 > sizeof sndbuf)
354 internal_error (__FILE__, __LINE__,
355 _("failed internal consistency check"));
359 char *safe_string = (char *) alloca ((len * 4) + 1);
361 monitor_printable_string (safe_string, sndbuf, 0);
362 fprintf_unfiltered (gdb_stdlog, "sent[%s]\n", safe_string);
365 monitor_write (sndbuf, len);
367 /* We used to expect that the next immediate output was the
368 characters we just output, but sometimes some extra junk appeared
369 before the characters we expected, like an extra prompt, or a
370 portmaster sending telnet negotiations. So, just start searching
371 for what we sent, and skip anything unknown. */
372 monitor_debug ("ExpectEcho\n");
373 monitor_expect (sndbuf, (char *) 0, 0);
377 /* Write characters to the remote system. */
380 monitor_write (char *buf, int buflen)
382 if (serial_write (monitor_desc, buf, buflen))
383 fprintf_unfiltered (gdb_stderr, "serial_write failed: %s\n",
384 safe_strerror (errno));
388 /* Read a binary character from the remote system, doing all the fancy
389 timeout stuff, but without interpreting the character in any way,
390 and without printing remote debug information. */
393 monitor_readchar (void)
401 c = serial_readchar (monitor_desc, timeout);
404 c &= 0xff; /* don't lose bit 7 */
411 if (c == SERIAL_TIMEOUT)
412 error (_("Timeout reading from remote system."));
414 perror_with_name (_("remote-monitor"));
418 /* Read a character from the remote system, doing all the fancy
422 readchar (int timeout)
427 last_random, last_nl, last_cr, last_crnl
435 c = serial_readchar (monitor_desc, timeout);
440 /* This seems to interfere with proper function of the
442 if (monitor_debug_p || remote_debug)
448 puts_debug ("read -->", buf, "<--");
453 /* Canonicialize \n\r combinations into one \r. */
454 if ((current_monitor->flags & MO_HANDLE_NL) != 0)
456 if ((c == '\r' && state == last_nl)
457 || (c == '\n' && state == last_cr))
478 if (c == SERIAL_TIMEOUT)
480 /* I fail to see how detaching here can be useful. */
481 if (in_monitor_wait) /* Watchdog went off. */
483 target_mourn_inferior ();
484 error (_("GDB serial timeout has expired. Target detached."));
488 error (_("Timeout reading from remote system."));
490 perror_with_name (_("remote-monitor"));
493 /* Scan input from the remote system, until STRING is found. If BUF is non-
494 zero, then collect input until we have collected either STRING or BUFLEN-1
495 chars. In either case we terminate BUF with a 0. If input overflows BUF
496 because STRING can't be found, return -1, else return number of chars in BUF
497 (minus the terminating NUL). Note that in the non-overflow case, STRING
498 will be at the end of BUF. */
501 monitor_expect (char *string, char *buf, int buflen)
504 int obuflen = buflen;
509 char *safe_string = (char *) alloca ((strlen (string) * 4) + 1);
510 monitor_printable_string (safe_string, string, 0);
511 fprintf_unfiltered (gdb_stdlog, "MON Expecting '%s'\n", safe_string);
527 c = readchar (timeout);
534 c = readchar (timeout);
536 /* Don't expect any ^C sent to be echoed. */
538 if (*p == '\003' || c == *p)
548 return obuflen - buflen;
556 /* We got a character that doesn't match the string. We need to
557 back up p, but how far? If we're looking for "..howdy" and the
558 monitor sends "...howdy"? There's certainly a match in there,
559 but when we receive the third ".", we won't find it if we just
560 restart the matching at the beginning of the string.
562 This is a Boyer-Moore kind of situation. We want to reset P to
563 the end of the longest prefix of STRING that is a suffix of
564 what we've read so far. In the example above, that would be
565 ".." --- the longest prefix of "..howdy" that is a suffix of
566 "...". This longest prefix could be the empty string, if C
567 is nowhere to be found in STRING.
569 If this longest prefix is not the empty string, it must contain
570 C, so let's search from the end of STRING for instances of C,
571 and see if the portion of STRING before that is a suffix of
572 what we read before C. Actually, we can search backwards from
573 p, since we know no prefix can be longer than that.
575 Note that we can use STRING itself, along with C, as a record
576 of what we've received so far. :) */
579 for (i = (p - string) - 1; i >= 0; i--)
582 /* Is this prefix a suffix of what we've read so far?
584 string[0 .. i-1] == string[p - i, p - 1]? */
585 if (! memcmp (string, p - i, i))
597 /* Search for a regexp. */
600 monitor_expect_regexp (struct re_pattern_buffer *pat, char *buf, int buflen)
605 monitor_debug ("MON Expecting regexp\n");
610 mybuf = alloca (TARGET_BUF_SIZE);
611 buflen = TARGET_BUF_SIZE;
619 if (p - mybuf >= buflen)
620 { /* Buffer about to overflow. */
622 /* On overflow, we copy the upper half of the buffer to the lower half. Not
623 great, but it usually works... */
625 memcpy (mybuf, mybuf + buflen / 2, buflen / 2);
626 p = mybuf + buflen / 2;
629 *p++ = readchar (timeout);
631 retval = re_search (pat, mybuf, p - mybuf, 0, p - mybuf, NULL);
637 /* Keep discarding input until we see the MONITOR prompt.
639 The convention for dealing with the prompt is that you
641 o *then* wait for the prompt.
643 Thus the last thing that a procedure does with the serial line will
644 be an monitor_expect_prompt(). Exception: monitor_resume does not
645 wait for the prompt, because the terminal is being handed over to
646 the inferior. However, the next thing which happens after that is
647 a monitor_wait which does wait for the prompt. Note that this
648 includes abnormal exit, e.g. error(). This is necessary to prevent
649 getting into states from which we can't recover. */
652 monitor_expect_prompt (char *buf, int buflen)
654 monitor_debug ("MON Expecting prompt\n");
655 return monitor_expect (current_monitor->prompt, buf, buflen);
658 /* Get N 32-bit words from remote, each preceded by a space, and put
659 them in registers starting at REGNO. */
670 ch = readchar (timeout);
671 while (isspace (ch));
675 for (i = 7; i >= 1; i--)
677 ch = readchar (timeout);
680 val = (val << 4) | from_hex (ch);
688 compile_pattern (char *pattern, struct re_pattern_buffer *compiled_pattern,
694 compiled_pattern->fastmap = fastmap;
696 tmp = re_set_syntax (RE_SYNTAX_EMACS);
697 val = re_compile_pattern (pattern,
703 error (_("compile_pattern: Can't compile pattern string `%s': %s!"),
707 re_compile_fastmap (compiled_pattern);
710 /* Open a connection to a remote debugger. NAME is the filename used
711 for communication. */
714 monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty)
718 struct inferior *inf;
720 if (mon_ops->magic != MONITOR_OPS_MAGIC)
721 error (_("Magic number of monitor_ops struct wrong."));
723 targ_ops = mon_ops->target;
724 name = targ_ops->to_shortname;
727 error (_("Use `target %s DEVICE-NAME' to use a serial port, or\n\
728 `target %s HOST-NAME:PORT-NUMBER' to use a network connection."), name, name);
730 target_preopen (from_tty);
732 /* Setup pattern for register dump. */
734 if (mon_ops->register_pattern)
735 compile_pattern (mon_ops->register_pattern, ®ister_pattern,
738 if (mon_ops->getmem.resp_delim)
739 compile_pattern (mon_ops->getmem.resp_delim, &getmem_resp_delim_pattern,
740 getmem_resp_delim_fastmap);
742 if (mon_ops->setmem.resp_delim)
743 compile_pattern (mon_ops->setmem.resp_delim, &setmem_resp_delim_pattern,
744 setmem_resp_delim_fastmap);
746 if (mon_ops->setreg.resp_delim)
747 compile_pattern (mon_ops->setreg.resp_delim, &setreg_resp_delim_pattern,
748 setreg_resp_delim_fastmap);
750 unpush_target (targ_ops);
754 dev_name = xstrdup (args);
756 monitor_desc = serial_open (dev_name);
759 perror_with_name (dev_name);
763 if (serial_setbaudrate (monitor_desc, baud_rate))
765 serial_close (monitor_desc);
766 perror_with_name (dev_name);
770 serial_raw (monitor_desc);
772 serial_flush_input (monitor_desc);
774 /* some systems only work with 2 stop bits. */
776 serial_setstopbits (monitor_desc, mon_ops->stopbits);
778 current_monitor = mon_ops;
780 /* See if we can wake up the monitor. First, try sending a stop sequence,
781 then send the init strings. Last, remove all breakpoints. */
783 if (current_monitor->stop)
785 monitor_stop (inferior_ptid);
786 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
788 monitor_debug ("EXP Open echo\n");
789 monitor_expect_prompt (NULL, 0);
793 /* wake up the monitor and see if it's alive. */
794 for (p = mon_ops->init; *p != NULL; p++)
796 /* Some of the characters we send may not be echoed,
797 but we hope to get a prompt at the end of it all. */
799 if ((current_monitor->flags & MO_NO_ECHO_ON_OPEN) == 0)
802 monitor_printf_noecho (*p);
803 monitor_expect_prompt (NULL, 0);
806 serial_flush_input (monitor_desc);
808 /* Alloc breakpoints */
809 if (mon_ops->set_break != NULL)
811 if (mon_ops->num_breakpoints == 0)
812 mon_ops->num_breakpoints = 8;
814 breakaddr = (CORE_ADDR *)
815 xmalloc (mon_ops->num_breakpoints * sizeof (CORE_ADDR));
816 memset (breakaddr, 0, mon_ops->num_breakpoints * sizeof (CORE_ADDR));
819 /* Remove all breakpoints. */
821 if (mon_ops->clr_all_break)
823 monitor_printf (mon_ops->clr_all_break);
824 monitor_expect_prompt (NULL, 0);
828 printf_unfiltered (_("Remote target %s connected to %s\n"),
831 push_target (targ_ops);
836 /* Make run command think we are busy... */
837 inferior_ptid = monitor_ptid;
838 inf = current_inferior ();
839 inferior_appeared (inf, ptid_get_pid (inferior_ptid));
840 add_thread_silent (inferior_ptid);
842 /* Give monitor_wait something to read. */
844 monitor_printf (current_monitor->line_term);
846 init_wait_for_inferior ();
848 start_remote (from_tty);
851 /* Close out all files and local state before this target loses
855 monitor_close (int quitting)
858 serial_close (monitor_desc);
860 /* Free breakpoint memory. */
861 if (breakaddr != NULL)
869 delete_thread_silent (monitor_ptid);
870 delete_inferior_silent (ptid_get_pid (monitor_ptid));
873 /* Terminate the open connection to the remote debugger. Use this
874 when you want to detach and do something else with your gdb. */
877 monitor_detach (struct target_ops *ops, char *args, int from_tty)
879 pop_target (); /* calls monitor_close to do the real work. */
881 printf_unfiltered (_("Ending remote %s debugging\n"), target_shortname);
884 /* Convert VALSTR into the target byte-ordered value of REGNO and store it. */
887 monitor_supply_register (struct regcache *regcache, int regno, char *valstr)
889 struct gdbarch *gdbarch = get_regcache_arch (regcache);
890 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
892 unsigned char regbuf[MAX_REGISTER_SIZE];
897 while (p && *p != '\0')
899 if (*p == '\r' || *p == '\n')
910 if (!isxdigit (*p) && *p != 'x')
916 val += fromhex (*p++);
918 monitor_debug ("Supplying Register %d %s\n", regno, valstr);
920 if (val == 0 && valstr == p)
921 error (_("monitor_supply_register (%d): bad value from monitor: %s."),
924 /* supply register stores in target byte order, so swap here. */
926 store_unsigned_integer (regbuf, register_size (gdbarch, regno), byte_order,
929 regcache_raw_supply (regcache, regno, regbuf);
934 /* Tell the remote machine to resume. */
937 monitor_resume (struct target_ops *ops,
938 ptid_t ptid, int step, enum gdb_signal sig)
940 /* Some monitors require a different command when starting a program. */
941 monitor_debug ("MON resume\n");
942 if (current_monitor->flags & MO_RUN_FIRST_TIME && first_time == 1)
945 monitor_printf ("run\r");
946 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
951 monitor_printf (current_monitor->step);
954 if (current_monitor->continue_hook)
955 (*current_monitor->continue_hook) ();
957 monitor_printf (current_monitor->cont);
958 if (current_monitor->flags & MO_NEED_REGDUMP_AFTER_CONT)
963 /* Parse the output of a register dump command. A monitor specific
964 regexp is used to extract individual register descriptions of the
965 form REG=VAL. Each description is split up into a name and a value
966 string which are passed down to monitor specific code. */
969 parse_register_dump (struct regcache *regcache, char *buf, int len)
971 monitor_debug ("MON Parsing register dump\n");
974 int regnamelen, vallen;
977 /* Element 0 points to start of register name, and element 1
978 points to the start of the register value. */
979 struct re_registers register_strings;
981 memset (®ister_strings, 0, sizeof (struct re_registers));
983 if (re_search (®ister_pattern, buf, len, 0, len,
984 ®ister_strings) == -1)
987 regnamelen = register_strings.end[1] - register_strings.start[1];
988 regname = buf + register_strings.start[1];
989 vallen = register_strings.end[2] - register_strings.start[2];
990 val = buf + register_strings.start[2];
992 current_monitor->supply_register (regcache, regname, regnamelen,
995 buf += register_strings.end[0];
996 len -= register_strings.end[0];
1000 /* Send ^C to target to halt it. Target will respond, and send us a
1004 monitor_interrupt (int signo)
1006 /* If this doesn't work, try more severe steps. */
1007 signal (signo, monitor_interrupt_twice);
1009 if (monitor_debug_p || remote_debug)
1010 fprintf_unfiltered (gdb_stdlog, "monitor_interrupt called\n");
1012 target_stop (inferior_ptid);
1015 /* The user typed ^C twice. */
1018 monitor_interrupt_twice (int signo)
1020 signal (signo, ofunc);
1022 monitor_interrupt_query ();
1024 signal (signo, monitor_interrupt);
1027 /* Ask the user what to do when an interrupt is received. */
1030 monitor_interrupt_query (void)
1032 target_terminal_ours ();
1034 if (query (_("Interrupted while waiting for the program.\n\
1035 Give up (and stop debugging it)? ")))
1037 target_mourn_inferior ();
1038 deprecated_throw_reason (RETURN_QUIT);
1041 target_terminal_inferior ();
1045 monitor_wait_cleanup (void *old_timeout)
1047 timeout = *(int *) old_timeout;
1048 signal (SIGINT, ofunc);
1049 in_monitor_wait = 0;
1055 monitor_wait_filter (char *buf,
1058 struct target_waitstatus *status)
1064 resp_len = monitor_expect_prompt (buf, bufmax);
1065 *ext_resp_len = resp_len;
1068 fprintf_unfiltered (gdb_stderr,
1069 "monitor_wait: excessive "
1070 "response from monitor: %s.", buf);
1072 while (resp_len < 0);
1074 /* Print any output characters that were preceded by ^O. */
1075 /* FIXME - This would be great as a user settabgle flag. */
1076 if (monitor_debug_p || remote_debug
1077 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1081 for (i = 0; i < resp_len - 1; i++)
1083 putchar_unfiltered (buf[++i]);
1089 /* Wait until the remote machine stops, then return, storing status in
1090 status just as `wait' would. */
1093 monitor_wait (struct target_ops *ops,
1094 ptid_t ptid, struct target_waitstatus *status, int options)
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,
1129 "monitor_wait: excessive "
1130 "response from monitor: %s.", buf);
1132 while (resp_len < 0);
1134 /* Print any output characters that were preceded by ^O. */
1135 /* FIXME - This would be great as a user settabgle flag. */
1136 if (monitor_debug_p || remote_debug
1137 || current_monitor->flags & MO_PRINT_PROGRAM_OUTPUT)
1141 for (i = 0; i < resp_len - 1; i++)
1143 putchar_unfiltered (buf[++i]);
1147 signal (SIGINT, ofunc);
1149 timeout = old_timeout;
1151 if (dump_reg_flag && current_monitor->dump_registers)
1154 monitor_printf (current_monitor->dump_registers);
1155 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1158 if (current_monitor->register_pattern)
1159 parse_register_dump (get_current_regcache (), buf, resp_len);
1161 monitor_debug ("Wait fetching registers after stop\n");
1162 monitor_dump_regs (get_current_regcache ());
1165 status->kind = TARGET_WAITKIND_STOPPED;
1166 status->value.sig = GDB_SIGNAL_TRAP;
1168 discard_cleanups (old_chain);
1170 in_monitor_wait = 0;
1172 return inferior_ptid;
1175 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
1179 monitor_fetch_register (struct regcache *regcache, int regno)
1186 regbuf = alloca (MAX_REGISTER_SIZE * 2 + 1);
1187 zerobuf = alloca (MAX_REGISTER_SIZE);
1188 memset (zerobuf, 0, MAX_REGISTER_SIZE);
1190 if (current_monitor->regname != NULL)
1191 name = current_monitor->regname (regno);
1193 name = current_monitor->regnames[regno];
1194 monitor_debug ("MON fetchreg %d '%s'\n", regno, name ? name : "(null name)");
1196 if (!name || (*name == '\0'))
1198 monitor_debug ("No register known for %d\n", regno);
1199 regcache_raw_supply (regcache, regno, zerobuf);
1203 /* Send the register examine command. */
1205 monitor_printf (current_monitor->getreg.cmd, name);
1207 /* If RESP_DELIM is specified, we search for that as a leading
1208 delimiter for the register value. Otherwise, we just start
1209 searching from the start of the buf. */
1211 if (current_monitor->getreg.resp_delim)
1213 monitor_debug ("EXP getreg.resp_delim\n");
1214 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1215 /* Handle case of first 32 registers listed in pairs. */
1216 if (current_monitor->flags & MO_32_REGS_PAIRED
1217 && (regno & 1) != 0 && regno < 32)
1219 monitor_debug ("EXP getreg.resp_delim\n");
1220 monitor_expect (current_monitor->getreg.resp_delim, NULL, 0);
1224 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1225 if (current_monitor->flags & MO_HEX_PREFIX)
1229 c = readchar (timeout);
1231 c = readchar (timeout);
1232 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1235 error (_("Bad value returned from monitor "
1236 "while fetching register %x."),
1240 /* Read upto the maximum number of hex digits for this register, skipping
1241 spaces, but stop reading if something else is seen. Some monitors
1242 like to drop leading zeros. */
1244 for (i = 0; i < register_size (get_regcache_arch (regcache), regno) * 2; i++)
1248 c = readchar (timeout);
1250 c = readchar (timeout);
1258 regbuf[i] = '\000'; /* Terminate the number. */
1259 monitor_debug ("REGVAL '%s'\n", regbuf);
1261 /* If TERM is present, we wait for that to show up. Also, (if TERM
1262 is present), we will send TERM_CMD if that is present. In any
1263 case, we collect all of the output into buf, and then wait for
1264 the normal prompt. */
1266 if (current_monitor->getreg.term)
1268 monitor_debug ("EXP getreg.term\n");
1269 monitor_expect (current_monitor->getreg.term, NULL, 0); /* Get
1273 if (current_monitor->getreg.term_cmd)
1275 monitor_debug ("EMIT getreg.term.cmd\n");
1276 monitor_printf (current_monitor->getreg.term_cmd);
1278 if (!current_monitor->getreg.term || /* Already expected or */
1279 current_monitor->getreg.term_cmd) /* ack expected. */
1280 monitor_expect_prompt (NULL, 0); /* Get response. */
1282 monitor_supply_register (regcache, regno, regbuf);
1285 /* Sometimes, it takes several commands to dump the registers. */
1286 /* This is a primitive for use by variations of monitor interfaces in
1287 case they need to compose the operation. */
1290 monitor_dump_reg_block (struct regcache *regcache, char *block_cmd)
1292 char buf[TARGET_BUF_SIZE];
1295 monitor_printf (block_cmd);
1296 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1297 parse_register_dump (regcache, buf, resp_len);
1302 /* Read the remote registers into the block regs. */
1303 /* Call the specific function if it has been provided. */
1306 monitor_dump_regs (struct regcache *regcache)
1308 char buf[TARGET_BUF_SIZE];
1311 if (current_monitor->dumpregs)
1312 (*(current_monitor->dumpregs)) (regcache); /* Call supplied function. */
1313 else if (current_monitor->dump_registers) /* Default version. */
1315 monitor_printf (current_monitor->dump_registers);
1316 resp_len = monitor_expect_prompt (buf, sizeof (buf));
1317 parse_register_dump (regcache, buf, resp_len);
1320 /* Need some way to read registers. */
1321 internal_error (__FILE__, __LINE__,
1322 _("failed internal consistency check"));
1326 monitor_fetch_registers (struct target_ops *ops,
1327 struct regcache *regcache, int regno)
1329 monitor_debug ("MON fetchregs\n");
1330 if (current_monitor->getreg.cmd)
1334 monitor_fetch_register (regcache, regno);
1338 for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1340 monitor_fetch_register (regcache, regno);
1344 monitor_dump_regs (regcache);
1348 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
1351 monitor_store_register (struct regcache *regcache, int regno)
1353 int reg_size = register_size (get_regcache_arch (regcache), regno);
1357 if (current_monitor->regname != NULL)
1358 name = current_monitor->regname (regno);
1360 name = current_monitor->regnames[regno];
1362 if (!name || (*name == '\0'))
1364 monitor_debug ("MON Cannot store unknown register\n");
1368 regcache_cooked_read_unsigned (regcache, regno, &val);
1369 monitor_debug ("MON storeg %d %s\n", regno, phex (val, reg_size));
1371 /* Send the register deposit command. */
1373 if (current_monitor->flags & MO_REGISTER_VALUE_FIRST)
1374 monitor_printf (current_monitor->setreg.cmd, val, name);
1375 else if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1376 monitor_printf (current_monitor->setreg.cmd, name);
1378 monitor_printf (current_monitor->setreg.cmd, name, val);
1380 if (current_monitor->setreg.resp_delim)
1382 monitor_debug ("EXP setreg.resp_delim\n");
1383 monitor_expect_regexp (&setreg_resp_delim_pattern, NULL, 0);
1384 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1385 monitor_printf ("%s\r", phex_nz (val, reg_size));
1387 if (current_monitor->setreg.term)
1389 monitor_debug ("EXP setreg.term\n");
1390 monitor_expect (current_monitor->setreg.term, NULL, 0);
1391 if (current_monitor->flags & MO_SETREG_INTERACTIVE)
1392 monitor_printf ("%s\r", phex_nz (val, reg_size));
1393 monitor_expect_prompt (NULL, 0);
1396 monitor_expect_prompt (NULL, 0);
1397 if (current_monitor->setreg.term_cmd) /* Mode exit required. */
1399 monitor_debug ("EXP setreg_termcmd\n");
1400 monitor_printf ("%s", current_monitor->setreg.term_cmd);
1401 monitor_expect_prompt (NULL, 0);
1403 } /* monitor_store_register */
1405 /* Store the remote registers. */
1408 monitor_store_registers (struct target_ops *ops,
1409 struct regcache *regcache, int regno)
1413 monitor_store_register (regcache, regno);
1417 for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache));
1419 monitor_store_register (regcache, regno);
1422 /* Get ready to modify the registers array. On machines which store
1423 individual registers, this doesn't need to do anything. On machines
1424 which store all the registers in one fell swoop, this makes sure
1425 that registers contains all the registers from the program being
1429 monitor_prepare_to_store (struct regcache *regcache)
1431 /* Do nothing, since we can store individual regs. */
1435 monitor_files_info (struct target_ops *ops)
1437 printf_unfiltered (_("\tAttached to %s at %d baud.\n"), dev_name, baud_rate);
1441 monitor_write_memory (CORE_ADDR memaddr, char *myaddr, int len)
1443 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
1444 unsigned int val, hostval;
1448 monitor_debug ("MON write %d %s\n", len, paddress (target_gdbarch (), memaddr));
1450 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1451 memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
1453 /* Use memory fill command for leading 0 bytes. */
1455 if (current_monitor->fill)
1457 for (i = 0; i < len; i++)
1461 if (i > 4) /* More than 4 zeros is worth doing. */
1463 monitor_debug ("MON FILL %d\n", i);
1464 if (current_monitor->flags & MO_FILL_USES_ADDR)
1465 monitor_printf (current_monitor->fill, memaddr,
1466 (memaddr + i) - 1, 0);
1468 monitor_printf (current_monitor->fill, memaddr, i, 0);
1470 monitor_expect_prompt (NULL, 0);
1477 /* Can't actually use long longs if VAL is an int (nice idea, though). */
1478 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->setmem.cmdll)
1481 cmd = current_monitor->setmem.cmdll;
1485 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->setmem.cmdl)
1488 cmd = current_monitor->setmem.cmdl;
1490 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->setmem.cmdw)
1493 cmd = current_monitor->setmem.cmdw;
1498 cmd = current_monitor->setmem.cmdb;
1501 val = extract_unsigned_integer (myaddr, len, byte_order);
1505 hostval = *(unsigned int *) myaddr;
1506 monitor_debug ("Hostval(%08x) val(%08x)\n", hostval, val);
1510 if (current_monitor->flags & MO_NO_ECHO_ON_SETMEM)
1511 monitor_printf_noecho (cmd, memaddr, val);
1512 else if (current_monitor->flags & MO_SETMEM_INTERACTIVE)
1514 monitor_printf_noecho (cmd, memaddr);
1516 if (current_monitor->setmem.resp_delim)
1518 monitor_debug ("EXP setmem.resp_delim");
1519 monitor_expect_regexp (&setmem_resp_delim_pattern, NULL, 0);
1520 monitor_printf ("%x\r", val);
1522 if (current_monitor->setmem.term)
1524 monitor_debug ("EXP setmem.term");
1525 monitor_expect (current_monitor->setmem.term, NULL, 0);
1526 monitor_printf ("%x\r", val);
1528 if (current_monitor->setmem.term_cmd)
1529 { /* Emit this to get out of the memory editing state. */
1530 monitor_printf ("%s", current_monitor->setmem.term_cmd);
1531 /* Drop through to expecting a prompt. */
1535 monitor_printf (cmd, memaddr, val);
1537 monitor_expect_prompt (NULL, 0);
1544 monitor_write_memory_bytes (CORE_ADDR memaddr, char *myaddr, int len)
1551 /* Enter the sub mode. */
1552 monitor_printf (current_monitor->setmem.cmdb, memaddr);
1553 monitor_expect_prompt (NULL, 0);
1557 monitor_printf ("%x\r", val);
1561 /* If we wanted to, here we could validate the address. */
1562 monitor_expect_prompt (NULL, 0);
1565 /* Now exit the sub mode. */
1566 monitor_printf (current_monitor->getreg.term_cmd);
1567 monitor_expect_prompt (NULL, 0);
1573 longlongendswap (unsigned char *a)
1583 *(a + i) = *(a + j);
1588 /* Format 32 chars of long long value, advance the pointer. */
1589 static char *hexlate = "0123456789abcdef";
1591 longlong_hexchars (unsigned long long value,
1601 static unsigned char disbuf[8]; /* disassembly buffer */
1602 unsigned char *scan, *limit; /* loop controls */
1603 unsigned char c, nib;
1609 unsigned long long *dp;
1611 dp = (unsigned long long *) scan;
1614 longlongendswap (disbuf); /* FIXME: ONly on big endian hosts. */
1615 while (scan < limit)
1617 c = *scan++; /* A byte of our long long value. */
1623 leadzero = 0; /* Henceforth we print even zeroes. */
1625 nib = c >> 4; /* high nibble bits */
1626 *outbuff++ = hexlate[nib];
1627 nib = c & 0x0f; /* low nibble bits */
1628 *outbuff++ = hexlate[nib];
1632 } /* longlong_hexchars */
1636 /* I am only going to call this when writing virtual byte streams.
1637 Which possably entails endian conversions. */
1640 monitor_write_memory_longlongs (CORE_ADDR memaddr, char *myaddr, int len)
1642 static char hexstage[20]; /* At least 16 digits required, plus null. */
1648 llptr = (unsigned long long *) myaddr;
1651 monitor_printf (current_monitor->setmem.cmdll, memaddr);
1652 monitor_expect_prompt (NULL, 0);
1656 endstring = longlong_hexchars (*llptr, hexstage);
1657 *endstring = '\0'; /* NUll terminate for printf. */
1658 monitor_printf ("%s\r", hexstage);
1662 /* If we wanted to, here we could validate the address. */
1663 monitor_expect_prompt (NULL, 0);
1666 /* Now exit the sub mode. */
1667 monitor_printf (current_monitor->getreg.term_cmd);
1668 monitor_expect_prompt (NULL, 0);
1674 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1675 /* This is for the large blocks of memory which may occur in downloading.
1676 And for monitors which use interactive entry,
1677 And for monitors which do not have other downloading methods.
1678 Without this, we will end up calling monitor_write_memory many times
1679 and do the entry and exit of the sub mode many times
1680 This currently assumes...
1681 MO_SETMEM_INTERACTIVE
1682 ! MO_NO_ECHO_ON_SETMEM
1683 To use this, the you have to patch the monitor_cmds block with
1684 this function. Otherwise, its not tuned up for use by all
1685 monitor variations. */
1688 monitor_write_memory_block (CORE_ADDR memaddr, char *myaddr, int len)
1693 /* FIXME: This would be a good place to put the zero test. */
1695 if ((len > 8) && (((len & 0x07)) == 0) && current_monitor->setmem.cmdll)
1697 return monitor_write_memory_longlongs (memaddr, myaddr, len);
1700 written = monitor_write_memory_bytes (memaddr, myaddr, len);
1704 /* This is an alternate form of monitor_read_memory which is used for monitors
1705 which can only read a single byte/word/etc. at a time. */
1708 monitor_read_memory_single (CORE_ADDR memaddr, char *myaddr, int len)
1710 enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
1712 char membuf[sizeof (int) * 2 + 1];
1716 monitor_debug ("MON read single\n");
1718 /* Can't actually use long longs (nice idea, though). In fact, the
1719 call to strtoul below will fail if it tries to convert a value
1720 that's too big to fit in a long. */
1721 if ((memaddr & 0x7) == 0 && len >= 8 && current_monitor->getmem.cmdll)
1724 cmd = current_monitor->getmem.cmdll;
1728 if ((memaddr & 0x3) == 0 && len >= 4 && current_monitor->getmem.cmdl)
1731 cmd = current_monitor->getmem.cmdl;
1733 else if ((memaddr & 0x1) == 0 && len >= 2 && current_monitor->getmem.cmdw)
1736 cmd = current_monitor->getmem.cmdw;
1741 cmd = current_monitor->getmem.cmdb;
1744 /* Send the examine command. */
1746 monitor_printf (cmd, memaddr);
1748 /* If RESP_DELIM is specified, we search for that as a leading
1749 delimiter for the memory value. Otherwise, we just start
1750 searching from the start of the buf. */
1752 if (current_monitor->getmem.resp_delim)
1754 monitor_debug ("EXP getmem.resp_delim\n");
1755 monitor_expect_regexp (&getmem_resp_delim_pattern, NULL, 0);
1758 /* Now, read the appropriate number of hex digits for this loc,
1761 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1762 if (current_monitor->flags & MO_HEX_PREFIX)
1766 c = readchar (timeout);
1768 c = readchar (timeout);
1769 if ((c == '0') && ((c = readchar (timeout)) == 'x'))
1772 monitor_error ("monitor_read_memory_single",
1773 "bad response from monitor",
1774 memaddr, 0, NULL, 0);
1780 for (i = 0; i < len * 2; i++)
1786 c = readchar (timeout);
1792 monitor_error ("monitor_read_memory_single",
1793 "bad response from monitor",
1794 memaddr, i, membuf, 0);
1798 membuf[i] = '\000'; /* Terminate the number. */
1801 /* If TERM is present, we wait for that to show up. Also, (if TERM is
1802 present), we will send TERM_CMD if that is present. In any case, we collect
1803 all of the output into buf, and then wait for the normal prompt. */
1805 if (current_monitor->getmem.term)
1807 monitor_expect (current_monitor->getmem.term, NULL, 0); /* Get
1810 if (current_monitor->getmem.term_cmd)
1812 monitor_printf (current_monitor->getmem.term_cmd);
1813 monitor_expect_prompt (NULL, 0);
1817 monitor_expect_prompt (NULL, 0); /* Get response. */
1820 val = strtoul (membuf, &p, 16);
1822 if (val == 0 && membuf == p)
1823 monitor_error ("monitor_read_memory_single",
1824 "bad value from monitor",
1825 memaddr, 0, membuf, 0);
1827 /* supply register stores in target byte order, so swap here. */
1829 store_unsigned_integer (myaddr, len, byte_order, val);
1834 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1835 memory at MEMADDR. Returns length moved. Currently, we do no more
1836 than 16 bytes at a time. */
1839 monitor_read_memory (CORE_ADDR memaddr, char *myaddr, int len)
1850 monitor_debug ("Zero length call to monitor_read_memory\n");
1854 monitor_debug ("MON read block ta(%s) ha(%s) %d\n",
1855 paddress (target_gdbarch (), memaddr),
1856 host_address_to_string (myaddr), len);
1858 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
1859 memaddr = gdbarch_addr_bits_remove (target_gdbarch (), memaddr);
1861 if (current_monitor->flags & MO_GETMEM_READ_SINGLE)
1862 return monitor_read_memory_single (memaddr, myaddr, len);
1864 len = min (len, 16);
1866 /* Some dumpers align the first data with the preceding 16
1867 byte boundary. Some print blanks and start at the
1868 requested boundary. EXACT_DUMPADDR */
1870 dumpaddr = (current_monitor->flags & MO_EXACT_DUMPADDR)
1871 ? memaddr : memaddr & ~0x0f;
1873 /* See if xfer would cross a 16 byte boundary. If so, clip it. */
1874 if (((memaddr ^ (memaddr + len - 1)) & ~0xf) != 0)
1875 len = ((memaddr + len) & ~0xf) - memaddr;
1877 /* Send the memory examine command. */
1879 if (current_monitor->flags & MO_GETMEM_NEEDS_RANGE)
1880 monitor_printf (current_monitor->getmem.cmdb, memaddr, memaddr + len);
1881 else if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1882 monitor_printf (current_monitor->getmem.cmdb, dumpaddr);
1884 monitor_printf (current_monitor->getmem.cmdb, memaddr, len);
1886 /* If TERM is present, we wait for that to show up. Also, (if TERM
1887 is present), we will send TERM_CMD if that is present. In any
1888 case, we collect all of the output into buf, and then wait for
1889 the normal prompt. */
1891 if (current_monitor->getmem.term)
1893 resp_len = monitor_expect (current_monitor->getmem.term,
1894 buf, sizeof buf); /* Get response. */
1897 monitor_error ("monitor_read_memory",
1898 "excessive response from monitor",
1899 memaddr, resp_len, buf, 0);
1901 if (current_monitor->getmem.term_cmd)
1903 serial_write (monitor_desc, current_monitor->getmem.term_cmd,
1904 strlen (current_monitor->getmem.term_cmd));
1905 monitor_expect_prompt (NULL, 0);
1909 resp_len = monitor_expect_prompt (buf, sizeof buf); /* Get response. */
1913 /* If RESP_DELIM is specified, we search for that as a leading
1914 delimiter for the values. Otherwise, we just start searching
1915 from the start of the buf. */
1917 if (current_monitor->getmem.resp_delim)
1920 struct re_registers resp_strings;
1922 monitor_debug ("MON getmem.resp_delim %s\n",
1923 current_monitor->getmem.resp_delim);
1925 memset (&resp_strings, 0, sizeof (struct re_registers));
1927 retval = re_search (&getmem_resp_delim_pattern, p, tmp, 0, tmp,
1931 monitor_error ("monitor_read_memory",
1932 "bad response from monitor",
1933 memaddr, resp_len, buf, 0);
1935 p += resp_strings.end[0];
1937 p = strstr (p, current_monitor->getmem.resp_delim);
1939 monitor_error ("monitor_read_memory",
1940 "bad response from monitor",
1941 memaddr, resp_len, buf, 0);
1942 p += strlen (current_monitor->getmem.resp_delim);
1945 monitor_debug ("MON scanning %d ,%s '%s'\n", len,
1946 host_address_to_string (p), p);
1947 if (current_monitor->flags & MO_GETMEM_16_BOUNDARY)
1955 while (!(c == '\000' || c == '\n' || c == '\r') && i > 0)
1959 if ((dumpaddr >= memaddr) && (i > 0))
1961 val = fromhex (c) * 16 + fromhex (*(p + 1));
1963 if (monitor_debug_p || remote_debug)
1964 fprintf_unfiltered (gdb_stdlog, "[%02x]", val);
1971 ++p; /* Skip a blank or other non hex char. */
1975 error (_("Failed to read via monitor"));
1976 if (monitor_debug_p || remote_debug)
1977 fprintf_unfiltered (gdb_stdlog, "\n");
1978 return fetched; /* Return the number of bytes actually
1981 monitor_debug ("MON scanning bytes\n");
1983 for (i = len; i > 0; i--)
1985 /* Skip non-hex chars, but bomb on end of string and newlines. */
1992 if (*p == '\000' || *p == '\n' || *p == '\r')
1993 monitor_error ("monitor_read_memory",
1994 "badly terminated response from monitor",
1995 memaddr, resp_len, buf, 0);
1999 val = strtoul (p, &p1, 16);
2001 if (val == 0 && p == p1)
2002 monitor_error ("monitor_read_memory",
2003 "bad value from monitor",
2004 memaddr, resp_len, buf, 0);
2017 /* Transfer LEN bytes between target address MEMADDR and GDB address
2018 MYADDR. Returns 0 for success, errno code for failure. TARGET is
2022 monitor_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write,
2023 struct mem_attrib *attrib, struct target_ops *target)
2029 if (current_monitor->flags & MO_HAS_BLOCKWRITES)
2030 res = monitor_write_memory_block(memaddr, myaddr, len);
2032 res = monitor_write_memory(memaddr, myaddr, len);
2036 res = monitor_read_memory(memaddr, myaddr, len);
2043 monitor_kill (struct target_ops *ops)
2045 return; /* Ignore attempts to kill target system. */
2048 /* All we actually do is set the PC to the start address of exec_bfd. */
2051 monitor_create_inferior (struct target_ops *ops, char *exec_file,
2052 char *args, char **env, int from_tty)
2054 if (args && (*args != '\000'))
2055 error (_("Args are not supported by the monitor."));
2058 clear_proceed_status ();
2059 regcache_write_pc (get_current_regcache (),
2060 bfd_get_start_address (exec_bfd));
2063 /* Clean up when a program exits.
2064 The program actually lives on in the remote processor's RAM, and may be
2065 run again without a download. Don't leave it full of breakpoint
2069 monitor_mourn_inferior (struct target_ops *ops)
2071 unpush_target (targ_ops);
2072 generic_mourn_inferior (); /* Do all the proper things now. */
2073 delete_thread_silent (monitor_ptid);
2076 /* Tell the monitor to add a breakpoint. */
2079 monitor_insert_breakpoint (struct gdbarch *gdbarch,
2080 struct bp_target_info *bp_tgt)
2082 CORE_ADDR addr = bp_tgt->placed_address;
2086 monitor_debug ("MON inst bkpt %s\n", paddress (gdbarch, addr));
2087 if (current_monitor->set_break == NULL)
2088 error (_("No set_break defined for this monitor"));
2090 if (current_monitor->flags & MO_ADDR_BITS_REMOVE)
2091 addr = gdbarch_addr_bits_remove (gdbarch, addr);
2093 /* Determine appropriate breakpoint size for this address. */
2094 gdbarch_breakpoint_from_pc (gdbarch, &addr, &bplen);
2095 bp_tgt->placed_address = addr;
2096 bp_tgt->placed_size = bplen;
2098 for (i = 0; i < current_monitor->num_breakpoints; i++)
2100 if (breakaddr[i] == 0)
2102 breakaddr[i] = addr;
2103 monitor_printf (current_monitor->set_break, addr);
2104 monitor_expect_prompt (NULL, 0);
2109 error (_("Too many breakpoints (> %d) for monitor."),
2110 current_monitor->num_breakpoints);
2113 /* Tell the monitor to remove a breakpoint. */
2116 monitor_remove_breakpoint (struct gdbarch *gdbarch,
2117 struct bp_target_info *bp_tgt)
2119 CORE_ADDR addr = bp_tgt->placed_address;
2122 monitor_debug ("MON rmbkpt %s\n", paddress (gdbarch, addr));
2123 if (current_monitor->clr_break == NULL)
2124 error (_("No clr_break defined for this monitor"));
2126 for (i = 0; i < current_monitor->num_breakpoints; i++)
2128 if (breakaddr[i] == addr)
2131 /* Some monitors remove breakpoints based on the address. */
2132 if (current_monitor->flags & MO_CLR_BREAK_USES_ADDR)
2133 monitor_printf (current_monitor->clr_break, addr);
2134 else if (current_monitor->flags & MO_CLR_BREAK_1_BASED)
2135 monitor_printf (current_monitor->clr_break, i + 1);
2137 monitor_printf (current_monitor->clr_break, i);
2138 monitor_expect_prompt (NULL, 0);
2142 fprintf_unfiltered (gdb_stderr,
2143 "Can't find breakpoint associated with %s\n",
2144 paddress (gdbarch, addr));
2148 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2149 an S-record. Return non-zero if the ACK is received properly. */
2152 monitor_wait_srec_ack (void)
2156 if (current_monitor->flags & MO_SREC_ACK_PLUS)
2158 return (readchar (timeout) == '+');
2160 else if (current_monitor->flags & MO_SREC_ACK_ROTATE)
2162 /* Eat two backspaces, a "rotating" char (|/-\), and a space. */
2163 if ((ch = readchar (1)) < 0)
2165 if ((ch = readchar (1)) < 0)
2167 if ((ch = readchar (1)) < 0)
2169 if ((ch = readchar (1)) < 0)
2175 /* monitor_load -- download a file. */
2178 monitor_load (char *file, int from_tty)
2180 monitor_debug ("MON load\n");
2182 if (current_monitor->load_routine)
2183 current_monitor->load_routine (monitor_desc, file, hashmark);
2185 { /* The default is ascii S-records. */
2187 unsigned long load_offset;
2190 /* Enable user to specify address for downloading as 2nd arg to load. */
2191 n = sscanf (file, "%s 0x%lx", buf, &load_offset);
2197 monitor_printf (current_monitor->load);
2198 if (current_monitor->loadresp)
2199 monitor_expect (current_monitor->loadresp, NULL, 0);
2201 load_srec (monitor_desc, file, (bfd_vma) load_offset,
2202 32, SREC_ALL, hashmark,
2203 current_monitor->flags & MO_SREC_ACK ?
2204 monitor_wait_srec_ack : NULL);
2206 monitor_expect_prompt (NULL, 0);
2209 /* Finally, make the PC point at the start address. */
2211 regcache_write_pc (get_current_regcache (),
2212 bfd_get_start_address (exec_bfd));
2214 /* There used to be code here which would clear inferior_ptid and
2215 call clear_symtab_users. None of that should be necessary:
2216 monitor targets should behave like remote protocol targets, and
2217 since generic_load does none of those things, this function
2220 Furthermore, clearing inferior_ptid is *incorrect*. After doing
2221 a load, we still have a valid connection to the monitor, with a
2222 live processor state to fiddle with. The user can type
2223 `continue' or `jump *start' and make the program run. If they do
2224 these things, however, GDB will be talking to a running program
2225 while inferior_ptid is null_ptid; this makes things like
2226 reinit_frame_cache very confused. */
2230 monitor_stop (ptid_t ptid)
2232 monitor_debug ("MON stop\n");
2233 if ((current_monitor->flags & MO_SEND_BREAK_ON_STOP) != 0)
2234 serial_send_break (monitor_desc);
2235 if (current_monitor->stop)
2236 monitor_printf_noecho (current_monitor->stop);
2239 /* Put a COMMAND string out to MONITOR. Output from MONITOR is placed
2240 in OUTPUT until the prompt is seen. FIXME: We read the characters
2241 ourseleves here cause of a nasty echo. */
2244 monitor_rcmd (char *command,
2245 struct ui_file *outbuf)
2251 if (monitor_desc == NULL)
2252 error (_("monitor target not open."));
2254 p = current_monitor->prompt;
2256 /* Send the command. Note that if no args were supplied, then we're
2257 just sending the monitor a newline, which is sometimes useful. */
2259 monitor_printf ("%s\r", (command ? command : ""));
2261 resp_len = monitor_expect_prompt (buf, sizeof buf);
2263 fputs_unfiltered (buf, outbuf); /* Output the response. */
2266 /* Convert hex digit A to a number. */
2272 if (a >= '0' && a <= '9')
2274 if (a >= 'a' && a <= 'f')
2275 return a - 'a' + 10;
2276 if (a >= 'A' && a <= 'F')
2277 return a - 'A' + 10;
2279 error (_("Reply contains invalid hex digit 0x%x"), a);
2284 monitor_get_dev_name (void)
2289 /* Check to see if a thread is still alive. */
2292 monitor_thread_alive (struct target_ops *ops, ptid_t ptid)
2294 if (ptid_equal (ptid, monitor_ptid))
2295 /* The monitor's task is always alive. */
2301 /* Convert a thread ID to a string. Returns the string in a static
2305 monitor_pid_to_str (struct target_ops *ops, ptid_t ptid)
2307 static char buf[64];
2309 if (ptid_equal (monitor_ptid, ptid))
2311 xsnprintf (buf, sizeof buf, "Thread <main>");
2315 return normal_pid_to_str (ptid);
2318 static struct target_ops monitor_ops;
2321 init_base_monitor_ops (void)
2323 monitor_ops.to_close = monitor_close;
2324 monitor_ops.to_detach = monitor_detach;
2325 monitor_ops.to_resume = monitor_resume;
2326 monitor_ops.to_wait = monitor_wait;
2327 monitor_ops.to_fetch_registers = monitor_fetch_registers;
2328 monitor_ops.to_store_registers = monitor_store_registers;
2329 monitor_ops.to_prepare_to_store = monitor_prepare_to_store;
2330 monitor_ops.deprecated_xfer_memory = monitor_xfer_memory;
2331 monitor_ops.to_files_info = monitor_files_info;
2332 monitor_ops.to_insert_breakpoint = monitor_insert_breakpoint;
2333 monitor_ops.to_remove_breakpoint = monitor_remove_breakpoint;
2334 monitor_ops.to_kill = monitor_kill;
2335 monitor_ops.to_load = monitor_load;
2336 monitor_ops.to_create_inferior = monitor_create_inferior;
2337 monitor_ops.to_mourn_inferior = monitor_mourn_inferior;
2338 monitor_ops.to_stop = monitor_stop;
2339 monitor_ops.to_rcmd = monitor_rcmd;
2340 monitor_ops.to_log_command = serial_log_command;
2341 monitor_ops.to_thread_alive = monitor_thread_alive;
2342 monitor_ops.to_pid_to_str = monitor_pid_to_str;
2343 monitor_ops.to_stratum = process_stratum;
2344 monitor_ops.to_has_all_memory = default_child_has_all_memory;
2345 monitor_ops.to_has_memory = default_child_has_memory;
2346 monitor_ops.to_has_stack = default_child_has_stack;
2347 monitor_ops.to_has_registers = default_child_has_registers;
2348 monitor_ops.to_has_execution = default_child_has_execution;
2349 monitor_ops.to_magic = OPS_MAGIC;
2350 } /* init_base_monitor_ops */
2352 /* Init the target_ops structure pointed at by OPS. */
2355 init_monitor_ops (struct target_ops *ops)
2357 if (monitor_ops.to_magic != OPS_MAGIC)
2358 init_base_monitor_ops ();
2360 memcpy (ops, &monitor_ops, sizeof monitor_ops);
2363 /* Define additional commands that are usually only used by monitors. */
2365 /* -Wmissing-prototypes */
2366 extern initialize_file_ftype _initialize_remote_monitors;
2369 _initialize_remote_monitors (void)
2371 init_base_monitor_ops ();
2372 add_setshow_boolean_cmd ("hash", no_class, &hashmark, _("\
2373 Set display of activity while downloading a file."), _("\
2374 Show display of activity while downloading a file."), _("\
2375 When enabled, a hashmark \'#\' is displayed."),
2377 NULL, /* FIXME: i18n: */
2378 &setlist, &showlist);
2380 add_setshow_zuinteger_cmd ("monitor", no_class, &monitor_debug_p, _("\
2381 Set debugging of remote monitor communication."), _("\
2382 Show debugging of remote monitor communication."), _("\
2383 When enabled, communication between GDB and the remote monitor\n\
2386 NULL, /* FIXME: i18n: */
2387 &setdebuglist, &showdebuglist);
2389 /* Yes, 42000 is arbitrary. The only sense out of it, is that it
2391 monitor_ptid = ptid_build (42000, 0, 42000);