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, 2009, 2010
5 Free Software Foundation, Inc.
7 Contributed by Cygnus Support. Written by Rob Savoye for Cygnus.
8 Resurrected from the ashes by Stu Grossman.
10 This file is part of GDB.
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or
15 (at your option) any later version.
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>. */
25 /* This file was derived from various remote-* modules. It is a collection
26 of generic support functions so GDB can talk directly to a ROM based
27 monitor. This saves use from having to hack an exception based handler
28 into existence, and makes for quick porting.
30 This module talks to a debug monitor called 'MONITOR', which
31 We communicate with MONITOR via either a direct serial line, or a TCP
32 (or possibly TELNET) stream to a terminal multiplexor,
33 which in turn talks to the target board. */
35 /* FIXME 32x64: This code assumes that registers and addresses are at
36 most 32 bits long. If they can be larger, you will need to declare
37 values as LONGEST and use %llx or some such to print values when
38 building commands to send to the monitor. Since we don't know of
39 any actual 64-bit targets with ROM monitors that use this code,
40 it's not an issue right now. -sts 4/18/96 */
45 #include "exceptions.h"
48 #include "gdb_string.h"
49 #include <sys/types.h>
55 #include "gdb_regex.h"
58 #include "gdbthread.h"
60 static char *dev_name
;
61 static struct target_ops
*targ_ops
;
63 static void monitor_interrupt_query (void);
64 static void monitor_interrupt_twice (int);
65 static void monitor_stop (ptid_t
);
66 static void monitor_dump_regs (struct regcache
*regcache
);
69 static int from_hex (int a
);
72 static struct monitor_ops
*current_monitor
;
74 static int hashmark
; /* flag set by "set hash" */
76 static int timeout
= 30;
78 static int in_monitor_wait
= 0; /* Non-zero means we are in monitor_wait() */
80 static void (*ofunc
) (); /* Old SIGINT signal handler */
82 static CORE_ADDR
*breakaddr
;
84 /* Descriptor for I/O to remote machine. Initialize it to NULL so
85 that monitor_open knows that we don't have a file open when the
88 static struct serial
*monitor_desc
= NULL
;
90 /* Pointer to regexp pattern matching data */
92 static struct re_pattern_buffer register_pattern
;
93 static char register_fastmap
[256];
95 static struct re_pattern_buffer getmem_resp_delim_pattern
;
96 static char getmem_resp_delim_fastmap
[256];
98 static struct re_pattern_buffer setmem_resp_delim_pattern
;
99 static char setmem_resp_delim_fastmap
[256];
101 static struct re_pattern_buffer setreg_resp_delim_pattern
;
102 static char setreg_resp_delim_fastmap
[256];
104 static int dump_reg_flag
; /* Non-zero means do a dump_registers cmd when
105 monitor_wait wakes up. */
107 static int first_time
= 0; /* is this the first time we're executing after
108 gaving created the child proccess? */
111 /* This is the ptid we use while we're connected to a monitor. Its
112 value is arbitrary, as monitor targets don't have a notion of
113 processes or threads, but we need something non-null to place in
115 static ptid_t monitor_ptid
;
117 #define TARGET_BUF_SIZE 2048
119 /* Monitor specific debugging information. Typically only useful to
120 the developer of a new monitor interface. */
122 static void monitor_debug (const char *fmt
, ...) ATTRIBUTE_PRINTF (1, 2);
124 static int monitor_debug_p
= 0;
126 /* NOTE: This file alternates between monitor_debug_p and remote_debug
127 when determining if debug information is printed. Perhaps this
128 could be simplified. */
131 monitor_debug (const char *fmt
, ...)
137 va_start (args
, fmt
);
138 vfprintf_filtered (gdb_stdlog
, fmt
, args
);
144 /* Convert a string into a printable representation, Return # byte in
145 the new string. When LEN is >0 it specifies the size of the
146 string. Otherwize strlen(oldstr) is used. */
149 monitor_printable_string (char *newstr
, char *oldstr
, int len
)
155 len
= strlen (oldstr
);
157 for (i
= 0; i
< len
; i
++)
168 sprintf (newstr
, "\\x%02x", ch
& 0xff);
207 /* Print monitor errors with a string, converting the string to printable
211 monitor_error (char *function
, char *message
,
212 CORE_ADDR memaddr
, int len
, char *string
, int final_char
)
214 int real_len
= (len
== 0 && string
!= (char *) 0) ? strlen (string
) : len
;
215 char *safe_string
= alloca ((real_len
* 4) + 1);
217 monitor_printable_string (safe_string
, string
, real_len
);
220 error (_("%s (%s): %s: %s%c"),
221 function
, paddress (target_gdbarch
, memaddr
),
222 message
, safe_string
, final_char
);
224 error (_("%s (%s): %s: %s"),
225 function
, paddress (target_gdbarch
, memaddr
),
226 message
, safe_string
);
229 /* Convert hex digit A to a number. */
234 if (a
>= '0' && a
<= '9')
236 else if (a
>= 'a' && a
<= 'f')
238 else if (a
>= 'A' && a
<= 'F')
241 error (_("Invalid hex digit %d"), a
);
244 /* monitor_vsprintf - similar to vsprintf but handles 64-bit addresses
246 This function exists to get around the problem that many host platforms
247 don't have a printf that can print 64-bit addresses. The %A format
248 specification is recognized as a special case, and causes the argument
249 to be printed as a 64-bit hexadecimal address.
251 Only format specifiers of the form "[0-9]*[a-z]" are recognized.
252 If it is a '%s' format, the argument is a string; otherwise the
253 argument is assumed to be a long integer.
255 %% is also turned into a single %.
259 monitor_vsprintf (char *sndbuf
, char *pattern
, va_list args
)
261 int addr_bit
= gdbarch_addr_bit (target_gdbarch
);
270 for (p
= pattern
; *p
; p
++)
274 /* Copy the format specifier to a separate buffer. */
276 for (i
= 1; *p
>= '0' && *p
<= '9' && i
< (int) sizeof (format
) - 2;
279 format
[i
] = fmt
= *p
;
280 format
[i
+ 1] = '\0';
282 /* Fetch the next argument and print it. */
286 strcpy (sndbuf
, "%");
289 arg_addr
= va_arg (args
, CORE_ADDR
);
290 strcpy (sndbuf
, phex_nz (arg_addr
, addr_bit
/ 8));
293 arg_string
= va_arg (args
, char *);
294 sprintf (sndbuf
, format
, arg_string
);
297 arg_int
= va_arg (args
, long);
298 sprintf (sndbuf
, format
, arg_int
);
301 sndbuf
+= strlen (sndbuf
);
310 /* monitor_printf_noecho -- Send data to monitor, but don't expect an echo.
311 Works just like printf. */
314 monitor_printf_noecho (char *pattern
,...)
320 va_start (args
, pattern
);
322 monitor_vsprintf (sndbuf
, pattern
, args
);
324 len
= strlen (sndbuf
);
325 if (len
+ 1 > sizeof sndbuf
)
326 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check"));
330 char *safe_string
= (char *) alloca ((strlen (sndbuf
) * 4) + 1);
332 monitor_printable_string (safe_string
, sndbuf
, 0);
333 fprintf_unfiltered (gdb_stdlog
, "sent[%s]\n", safe_string
);
336 monitor_write (sndbuf
, len
);
339 /* monitor_printf -- Send data to monitor and check the echo. Works just like
343 monitor_printf (char *pattern
,...)
349 va_start (args
, pattern
);
351 monitor_vsprintf (sndbuf
, pattern
, args
);
353 len
= strlen (sndbuf
);
354 if (len
+ 1 > sizeof sndbuf
)
355 internal_error (__FILE__
, __LINE__
, _("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 characters we
368 just output, but sometimes some extra junk appeared before the characters
369 we expected, like an extra prompt, or a portmaster sending telnet negotiations.
370 So, just start searching for what we sent, and skip anything unknown. */
371 monitor_debug ("ExpectEcho\n");
372 monitor_expect (sndbuf
, (char *) 0, 0);
376 /* Write characters to the remote system. */
379 monitor_write (char *buf
, int buflen
)
381 if (serial_write (monitor_desc
, buf
, buflen
))
382 fprintf_unfiltered (gdb_stderr
, "serial_write failed: %s\n",
383 safe_strerror (errno
));
387 /* Read a binary character from the remote system, doing all the fancy
388 timeout stuff, but without interpreting the character in any way,
389 and without printing remote debug information. */
392 monitor_readchar (void)
400 c
= serial_readchar (monitor_desc
, timeout
);
403 c
&= 0xff; /* don't lose bit 7 */
410 if (c
== SERIAL_TIMEOUT
)
411 error (_("Timeout reading from remote system."));
413 perror_with_name (_("remote-monitor"));
417 /* Read a character from the remote system, doing all the fancy
421 readchar (int timeout
)
426 last_random
, last_nl
, last_cr
, last_crnl
434 c
= serial_readchar (monitor_desc
, timeout
);
439 /* This seems to interfere with proper function of the
441 if (monitor_debug_p
|| remote_debug
)
447 puts_debug ("read -->", buf
, "<--");
452 /* Canonicialize \n\r combinations into one \r */
453 if ((current_monitor
->flags
& MO_HANDLE_NL
) != 0)
455 if ((c
== '\r' && state
== last_nl
)
456 || (c
== '\n' && state
== last_cr
))
477 if (c
== SERIAL_TIMEOUT
)
479 /* I fail to see how detaching here can be useful */
480 if (in_monitor_wait
) /* Watchdog went off */
482 target_mourn_inferior ();
483 error (_("GDB serial timeout has expired. Target detached."));
487 error (_("Timeout reading from remote system."));
489 perror_with_name (_("remote-monitor"));
492 /* Scan input from the remote system, until STRING is found. If BUF is non-
493 zero, then collect input until we have collected either STRING or BUFLEN-1
494 chars. In either case we terminate BUF with a 0. If input overflows BUF
495 because STRING can't be found, return -1, else return number of chars in BUF
496 (minus the terminating NUL). Note that in the non-overflow case, STRING
497 will be at the end of BUF. */
500 monitor_expect (char *string
, char *buf
, int buflen
)
503 int obuflen
= buflen
;
508 char *safe_string
= (char *) alloca ((strlen (string
) * 4) + 1);
509 monitor_printable_string (safe_string
, string
, 0);
510 fprintf_unfiltered (gdb_stdlog
, "MON Expecting '%s'\n", safe_string
);
525 c
= readchar (timeout
);
532 c
= readchar (timeout
);
534 /* Don't expect any ^C sent to be echoed */
536 if (*p
== '\003' || c
== *p
)
546 return obuflen
- buflen
;
554 /* We got a character that doesn't match the string. We need to
555 back up p, but how far? If we're looking for "..howdy" and the
556 monitor sends "...howdy"? There's certainly a match in there,
557 but when we receive the third ".", we won't find it if we just
558 restart the matching at the beginning of the string.
560 This is a Boyer-Moore kind of situation. We want to reset P to
561 the end of the longest prefix of STRING that is a suffix of
562 what we've read so far. In the example above, that would be
563 ".." --- the longest prefix of "..howdy" that is a suffix of
564 "...". This longest prefix could be the empty string, if C
565 is nowhere to be found in STRING.
567 If this longest prefix is not the empty string, it must contain
568 C, so let's search from the end of STRING for instances of C,
569 and see if the portion of STRING before that is a suffix of
570 what we read before C. Actually, we can search backwards from
571 p, since we know no prefix can be longer than that.
573 Note that we can use STRING itself, along with C, as a record
574 of what we've received so far. :) */
577 for (i
= (p
- string
) - 1; i
>= 0; i
--)
580 /* Is this prefix a suffix of what we've read so far?
582 string[0 .. i-1] == string[p - i, p - 1]? */
583 if (! memcmp (string
, p
- i
, i
))
595 /* Search for a regexp. */
598 monitor_expect_regexp (struct re_pattern_buffer
*pat
, char *buf
, int buflen
)
603 monitor_debug ("MON Expecting regexp\n");
608 mybuf
= alloca (TARGET_BUF_SIZE
);
609 buflen
= TARGET_BUF_SIZE
;
617 if (p
- mybuf
>= buflen
)
618 { /* Buffer about to overflow */
620 /* On overflow, we copy the upper half of the buffer to the lower half. Not
621 great, but it usually works... */
623 memcpy (mybuf
, mybuf
+ buflen
/ 2, buflen
/ 2);
624 p
= mybuf
+ buflen
/ 2;
627 *p
++ = readchar (timeout
);
629 retval
= re_search (pat
, mybuf
, p
- mybuf
, 0, p
- mybuf
, NULL
);
635 /* Keep discarding input until we see the MONITOR prompt.
637 The convention for dealing with the prompt is that you
639 o *then* wait for the prompt.
641 Thus the last thing that a procedure does with the serial line will
642 be an monitor_expect_prompt(). Exception: monitor_resume does not
643 wait for the prompt, because the terminal is being handed over to
644 the inferior. However, the next thing which happens after that is
645 a monitor_wait which does wait for the prompt. Note that this
646 includes abnormal exit, e.g. error(). This is necessary to prevent
647 getting into states from which we can't recover. */
650 monitor_expect_prompt (char *buf
, int buflen
)
652 monitor_debug ("MON Expecting prompt\n");
653 return monitor_expect (current_monitor
->prompt
, buf
, buflen
);
656 /* Get N 32-bit words from remote, each preceded by a space, and put
657 them in registers starting at REGNO. */
668 ch
= readchar (timeout
);
669 while (isspace (ch
));
673 for (i
= 7; i
>= 1; i
--)
675 ch
= readchar (timeout
);
678 val
= (val
<< 4) | from_hex (ch
);
686 compile_pattern (char *pattern
, struct re_pattern_buffer
*compiled_pattern
,
692 compiled_pattern
->fastmap
= fastmap
;
694 tmp
= re_set_syntax (RE_SYNTAX_EMACS
);
695 val
= re_compile_pattern (pattern
,
701 error (_("compile_pattern: Can't compile pattern string `%s': %s!"), pattern
, val
);
704 re_compile_fastmap (compiled_pattern
);
707 /* Open a connection to a remote debugger. NAME is the filename used
708 for communication. */
711 monitor_open (char *args
, struct monitor_ops
*mon_ops
, int from_tty
)
715 struct inferior
*inf
;
717 if (mon_ops
->magic
!= MONITOR_OPS_MAGIC
)
718 error (_("Magic number of monitor_ops struct wrong."));
720 targ_ops
= mon_ops
->target
;
721 name
= targ_ops
->to_shortname
;
724 error (_("Use `target %s DEVICE-NAME' to use a serial port, or\n\
725 `target %s HOST-NAME:PORT-NUMBER' to use a network connection."), name
, name
);
727 target_preopen (from_tty
);
729 /* Setup pattern for register dump */
731 if (mon_ops
->register_pattern
)
732 compile_pattern (mon_ops
->register_pattern
, ®ister_pattern
,
735 if (mon_ops
->getmem
.resp_delim
)
736 compile_pattern (mon_ops
->getmem
.resp_delim
, &getmem_resp_delim_pattern
,
737 getmem_resp_delim_fastmap
);
739 if (mon_ops
->setmem
.resp_delim
)
740 compile_pattern (mon_ops
->setmem
.resp_delim
, &setmem_resp_delim_pattern
,
741 setmem_resp_delim_fastmap
);
743 if (mon_ops
->setreg
.resp_delim
)
744 compile_pattern (mon_ops
->setreg
.resp_delim
, &setreg_resp_delim_pattern
,
745 setreg_resp_delim_fastmap
);
747 unpush_target (targ_ops
);
751 dev_name
= xstrdup (args
);
753 monitor_desc
= serial_open (dev_name
);
756 perror_with_name (dev_name
);
760 if (serial_setbaudrate (monitor_desc
, baud_rate
))
762 serial_close (monitor_desc
);
763 perror_with_name (dev_name
);
767 serial_raw (monitor_desc
);
769 serial_flush_input (monitor_desc
);
771 /* some systems only work with 2 stop bits */
773 serial_setstopbits (monitor_desc
, mon_ops
->stopbits
);
775 current_monitor
= mon_ops
;
777 /* See if we can wake up the monitor. First, try sending a stop sequence,
778 then send the init strings. Last, remove all breakpoints. */
780 if (current_monitor
->stop
)
782 monitor_stop (inferior_ptid
);
783 if ((current_monitor
->flags
& MO_NO_ECHO_ON_OPEN
) == 0)
785 monitor_debug ("EXP Open echo\n");
786 monitor_expect_prompt (NULL
, 0);
790 /* wake up the monitor and see if it's alive */
791 for (p
= mon_ops
->init
; *p
!= NULL
; p
++)
793 /* Some of the characters we send may not be echoed,
794 but we hope to get a prompt at the end of it all. */
796 if ((current_monitor
->flags
& MO_NO_ECHO_ON_OPEN
) == 0)
799 monitor_printf_noecho (*p
);
800 monitor_expect_prompt (NULL
, 0);
803 serial_flush_input (monitor_desc
);
805 /* Alloc breakpoints */
806 if (mon_ops
->set_break
!= NULL
)
808 if (mon_ops
->num_breakpoints
== 0)
809 mon_ops
->num_breakpoints
= 8;
811 breakaddr
= (CORE_ADDR
*) xmalloc (mon_ops
->num_breakpoints
* sizeof (CORE_ADDR
));
812 memset (breakaddr
, 0, mon_ops
->num_breakpoints
* sizeof (CORE_ADDR
));
815 /* Remove all breakpoints */
817 if (mon_ops
->clr_all_break
)
819 monitor_printf (mon_ops
->clr_all_break
);
820 monitor_expect_prompt (NULL
, 0);
824 printf_unfiltered (_("Remote target %s connected to %s\n"), name
, dev_name
);
826 push_target (targ_ops
);
831 /* Make run command think we are busy... */
832 inferior_ptid
= monitor_ptid
;
833 inf
= current_inferior ();
834 inferior_appeared (inf
, ptid_get_pid (inferior_ptid
));
835 add_thread_silent (inferior_ptid
);
837 /* Give monitor_wait something to read */
839 monitor_printf (current_monitor
->line_term
);
841 start_remote (from_tty
);
844 /* Close out all files and local state before this target loses
848 monitor_close (int quitting
)
851 serial_close (monitor_desc
);
853 /* Free breakpoint memory */
854 if (breakaddr
!= NULL
)
862 delete_thread_silent (monitor_ptid
);
863 delete_inferior_silent (ptid_get_pid (monitor_ptid
));
866 /* Terminate the open connection to the remote debugger. Use this
867 when you want to detach and do something else with your gdb. */
870 monitor_detach (struct target_ops
*ops
, char *args
, int from_tty
)
872 pop_target (); /* calls monitor_close to do the real work */
874 printf_unfiltered (_("Ending remote %s debugging\n"), target_shortname
);
877 /* Convert VALSTR into the target byte-ordered value of REGNO and store it. */
880 monitor_supply_register (struct regcache
*regcache
, int regno
, char *valstr
)
882 struct gdbarch
*gdbarch
= get_regcache_arch (regcache
);
883 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
885 unsigned char regbuf
[MAX_REGISTER_SIZE
];
890 while (p
&& *p
!= '\0')
892 if (*p
== '\r' || *p
== '\n')
903 if (!isxdigit (*p
) && *p
!= 'x')
909 val
+= fromhex (*p
++);
911 monitor_debug ("Supplying Register %d %s\n", regno
, valstr
);
913 if (val
== 0 && valstr
== p
)
914 error (_("monitor_supply_register (%d): bad value from monitor: %s."),
917 /* supply register stores in target byte order, so swap here */
919 store_unsigned_integer (regbuf
, register_size (gdbarch
, regno
), byte_order
,
922 regcache_raw_supply (regcache
, regno
, regbuf
);
927 /* Tell the remote machine to resume. */
930 monitor_resume (struct target_ops
*ops
,
931 ptid_t ptid
, int step
, enum target_signal sig
)
933 /* Some monitors require a different command when starting a program */
934 monitor_debug ("MON resume\n");
935 if (current_monitor
->flags
& MO_RUN_FIRST_TIME
&& first_time
== 1)
938 monitor_printf ("run\r");
939 if (current_monitor
->flags
& MO_NEED_REGDUMP_AFTER_CONT
)
944 monitor_printf (current_monitor
->step
);
947 if (current_monitor
->continue_hook
)
948 (*current_monitor
->continue_hook
) ();
950 monitor_printf (current_monitor
->cont
);
951 if (current_monitor
->flags
& MO_NEED_REGDUMP_AFTER_CONT
)
956 /* Parse the output of a register dump command. A monitor specific
957 regexp is used to extract individual register descriptions of the
958 form REG=VAL. Each description is split up into a name and a value
959 string which are passed down to monitor specific code. */
962 parse_register_dump (struct regcache
*regcache
, char *buf
, int len
)
964 monitor_debug ("MON Parsing register dump\n");
967 int regnamelen
, vallen
;
970 /* Element 0 points to start of register name, and element 1
971 points to the start of the register value. */
972 struct re_registers register_strings
;
974 memset (®ister_strings
, 0, sizeof (struct re_registers
));
976 if (re_search (®ister_pattern
, buf
, len
, 0, len
,
977 ®ister_strings
) == -1)
980 regnamelen
= register_strings
.end
[1] - register_strings
.start
[1];
981 regname
= buf
+ register_strings
.start
[1];
982 vallen
= register_strings
.end
[2] - register_strings
.start
[2];
983 val
= buf
+ register_strings
.start
[2];
985 current_monitor
->supply_register (regcache
, regname
, regnamelen
,
988 buf
+= register_strings
.end
[0];
989 len
-= register_strings
.end
[0];
993 /* Send ^C to target to halt it. Target will respond, and send us a
997 monitor_interrupt (int signo
)
999 /* If this doesn't work, try more severe steps. */
1000 signal (signo
, monitor_interrupt_twice
);
1002 if (monitor_debug_p
|| remote_debug
)
1003 fprintf_unfiltered (gdb_stdlog
, "monitor_interrupt called\n");
1005 target_stop (inferior_ptid
);
1008 /* The user typed ^C twice. */
1011 monitor_interrupt_twice (int signo
)
1013 signal (signo
, ofunc
);
1015 monitor_interrupt_query ();
1017 signal (signo
, monitor_interrupt
);
1020 /* Ask the user what to do when an interrupt is received. */
1023 monitor_interrupt_query (void)
1025 target_terminal_ours ();
1027 if (query (_("Interrupted while waiting for the program.\n\
1028 Give up (and stop debugging it)? ")))
1030 target_mourn_inferior ();
1031 deprecated_throw_reason (RETURN_QUIT
);
1034 target_terminal_inferior ();
1038 monitor_wait_cleanup (void *old_timeout
)
1040 timeout
= *(int *) old_timeout
;
1041 signal (SIGINT
, ofunc
);
1042 in_monitor_wait
= 0;
1048 monitor_wait_filter (char *buf
,
1051 struct target_waitstatus
*status
)
1057 resp_len
= monitor_expect_prompt (buf
, bufmax
);
1058 *ext_resp_len
= resp_len
;
1061 fprintf_unfiltered (gdb_stderr
, "monitor_wait: excessive response from monitor: %s.", buf
);
1063 while (resp_len
< 0);
1065 /* Print any output characters that were preceded by ^O. */
1066 /* FIXME - This would be great as a user settabgle flag */
1067 if (monitor_debug_p
|| remote_debug
1068 || current_monitor
->flags
& MO_PRINT_PROGRAM_OUTPUT
)
1072 for (i
= 0; i
< resp_len
- 1; i
++)
1074 putchar_unfiltered (buf
[++i
]);
1080 /* Wait until the remote machine stops, then return, storing status in
1081 status just as `wait' would. */
1084 monitor_wait (struct target_ops
*ops
,
1085 ptid_t ptid
, struct target_waitstatus
*status
, int options
)
1087 int old_timeout
= timeout
;
1088 char buf
[TARGET_BUF_SIZE
];
1090 struct cleanup
*old_chain
;
1092 status
->kind
= TARGET_WAITKIND_EXITED
;
1093 status
->value
.integer
= 0;
1095 old_chain
= make_cleanup (monitor_wait_cleanup
, &old_timeout
);
1096 monitor_debug ("MON wait\n");
1099 /* This is somthing other than a maintenance command */
1100 in_monitor_wait
= 1;
1101 timeout
= watchdog
> 0 ? watchdog
: -1;
1103 timeout
= -1; /* Don't time out -- user program is running. */
1106 ofunc
= (void (*)()) signal (SIGINT
, monitor_interrupt
);
1108 if (current_monitor
->wait_filter
)
1109 (*current_monitor
->wait_filter
) (buf
, sizeof (buf
), &resp_len
, status
);
1111 monitor_wait_filter (buf
, sizeof (buf
), &resp_len
, status
);
1113 #if 0 /* Transferred to monitor wait filter */
1116 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1119 fprintf_unfiltered (gdb_stderr
, "monitor_wait: excessive response from monitor: %s.", buf
);
1121 while (resp_len
< 0);
1123 /* Print any output characters that were preceded by ^O. */
1124 /* FIXME - This would be great as a user settabgle flag */
1125 if (monitor_debug_p
|| remote_debug
1126 || current_monitor
->flags
& MO_PRINT_PROGRAM_OUTPUT
)
1130 for (i
= 0; i
< resp_len
- 1; i
++)
1132 putchar_unfiltered (buf
[++i
]);
1136 signal (SIGINT
, ofunc
);
1138 timeout
= old_timeout
;
1140 if (dump_reg_flag
&& current_monitor
->dump_registers
)
1143 monitor_printf (current_monitor
->dump_registers
);
1144 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1147 if (current_monitor
->register_pattern
)
1148 parse_register_dump (get_current_regcache (), buf
, resp_len
);
1150 monitor_debug ("Wait fetching registers after stop\n");
1151 monitor_dump_regs (get_current_regcache ());
1154 status
->kind
= TARGET_WAITKIND_STOPPED
;
1155 status
->value
.sig
= TARGET_SIGNAL_TRAP
;
1157 discard_cleanups (old_chain
);
1159 in_monitor_wait
= 0;
1161 return inferior_ptid
;
1164 /* Fetch register REGNO, or all registers if REGNO is -1. Returns
1168 monitor_fetch_register (struct regcache
*regcache
, int regno
)
1175 regbuf
= alloca (MAX_REGISTER_SIZE
* 2 + 1);
1176 zerobuf
= alloca (MAX_REGISTER_SIZE
);
1177 memset (zerobuf
, 0, MAX_REGISTER_SIZE
);
1179 if (current_monitor
->regname
!= NULL
)
1180 name
= current_monitor
->regname (regno
);
1182 name
= current_monitor
->regnames
[regno
];
1183 monitor_debug ("MON fetchreg %d '%s'\n", regno
, name
? name
: "(null name)");
1185 if (!name
|| (*name
== '\0'))
1187 monitor_debug ("No register known for %d\n", regno
);
1188 regcache_raw_supply (regcache
, regno
, zerobuf
);
1192 /* send the register examine command */
1194 monitor_printf (current_monitor
->getreg
.cmd
, name
);
1196 /* If RESP_DELIM is specified, we search for that as a leading
1197 delimiter for the register value. Otherwise, we just start
1198 searching from the start of the buf. */
1200 if (current_monitor
->getreg
.resp_delim
)
1202 monitor_debug ("EXP getreg.resp_delim\n");
1203 monitor_expect (current_monitor
->getreg
.resp_delim
, NULL
, 0);
1204 /* Handle case of first 32 registers listed in pairs. */
1205 if (current_monitor
->flags
& MO_32_REGS_PAIRED
1206 && (regno
& 1) != 0 && regno
< 32)
1208 monitor_debug ("EXP getreg.resp_delim\n");
1209 monitor_expect (current_monitor
->getreg
.resp_delim
, NULL
, 0);
1213 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set */
1214 if (current_monitor
->flags
& MO_HEX_PREFIX
)
1218 c
= readchar (timeout
);
1220 c
= readchar (timeout
);
1221 if ((c
== '0') && ((c
= readchar (timeout
)) == 'x'))
1224 error (_("Bad value returned from monitor while fetching register %x."),
1228 /* Read upto the maximum number of hex digits for this register, skipping
1229 spaces, but stop reading if something else is seen. Some monitors
1230 like to drop leading zeros. */
1232 for (i
= 0; i
< register_size (get_regcache_arch (regcache
), regno
) * 2; i
++)
1236 c
= readchar (timeout
);
1238 c
= readchar (timeout
);
1246 regbuf
[i
] = '\000'; /* terminate the number */
1247 monitor_debug ("REGVAL '%s'\n", regbuf
);
1249 /* If TERM is present, we wait for that to show up. Also, (if TERM
1250 is present), we will send TERM_CMD if that is present. In any
1251 case, we collect all of the output into buf, and then wait for
1252 the normal prompt. */
1254 if (current_monitor
->getreg
.term
)
1256 monitor_debug ("EXP getreg.term\n");
1257 monitor_expect (current_monitor
->getreg
.term
, NULL
, 0); /* get response */
1260 if (current_monitor
->getreg
.term_cmd
)
1262 monitor_debug ("EMIT getreg.term.cmd\n");
1263 monitor_printf (current_monitor
->getreg
.term_cmd
);
1265 if (!current_monitor
->getreg
.term
|| /* Already expected or */
1266 current_monitor
->getreg
.term_cmd
) /* ack expected */
1267 monitor_expect_prompt (NULL
, 0); /* get response */
1269 monitor_supply_register (regcache
, regno
, regbuf
);
1272 /* Sometimes, it takes several commands to dump the registers */
1273 /* This is a primitive for use by variations of monitor interfaces in
1274 case they need to compose the operation.
1277 monitor_dump_reg_block (struct regcache
*regcache
, char *block_cmd
)
1279 char buf
[TARGET_BUF_SIZE
];
1282 monitor_printf (block_cmd
);
1283 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1284 parse_register_dump (regcache
, buf
, resp_len
);
1289 /* Read the remote registers into the block regs. */
1290 /* Call the specific function if it has been provided */
1293 monitor_dump_regs (struct regcache
*regcache
)
1295 char buf
[TARGET_BUF_SIZE
];
1298 if (current_monitor
->dumpregs
)
1299 (*(current_monitor
->dumpregs
)) (regcache
); /* call supplied function */
1300 else if (current_monitor
->dump_registers
) /* default version */
1302 monitor_printf (current_monitor
->dump_registers
);
1303 resp_len
= monitor_expect_prompt (buf
, sizeof (buf
));
1304 parse_register_dump (regcache
, buf
, resp_len
);
1307 internal_error (__FILE__
, __LINE__
, _("failed internal consistency check")); /* Need some way to read registers */
1311 monitor_fetch_registers (struct target_ops
*ops
,
1312 struct regcache
*regcache
, int regno
)
1314 monitor_debug ("MON fetchregs\n");
1315 if (current_monitor
->getreg
.cmd
)
1319 monitor_fetch_register (regcache
, regno
);
1323 for (regno
= 0; regno
< gdbarch_num_regs (get_regcache_arch (regcache
));
1325 monitor_fetch_register (regcache
, regno
);
1329 monitor_dump_regs (regcache
);
1333 /* Store register REGNO, or all if REGNO == 0. Return errno value. */
1336 monitor_store_register (struct regcache
*regcache
, int regno
)
1338 int reg_size
= register_size (get_regcache_arch (regcache
), regno
);
1342 if (current_monitor
->regname
!= NULL
)
1343 name
= current_monitor
->regname (regno
);
1345 name
= current_monitor
->regnames
[regno
];
1347 if (!name
|| (*name
== '\0'))
1349 monitor_debug ("MON Cannot store unknown register\n");
1353 regcache_cooked_read_unsigned (regcache
, regno
, &val
);
1354 monitor_debug ("MON storeg %d %s\n", regno
, phex (val
, reg_size
));
1356 /* send the register deposit command */
1358 if (current_monitor
->flags
& MO_REGISTER_VALUE_FIRST
)
1359 monitor_printf (current_monitor
->setreg
.cmd
, val
, name
);
1360 else if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1361 monitor_printf (current_monitor
->setreg
.cmd
, name
);
1363 monitor_printf (current_monitor
->setreg
.cmd
, name
, val
);
1365 if (current_monitor
->setreg
.resp_delim
)
1367 monitor_debug ("EXP setreg.resp_delim\n");
1368 monitor_expect_regexp (&setreg_resp_delim_pattern
, NULL
, 0);
1369 if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1370 monitor_printf ("%s\r", phex_nz (val
, reg_size
));
1372 if (current_monitor
->setreg
.term
)
1374 monitor_debug ("EXP setreg.term\n");
1375 monitor_expect (current_monitor
->setreg
.term
, NULL
, 0);
1376 if (current_monitor
->flags
& MO_SETREG_INTERACTIVE
)
1377 monitor_printf ("%s\r", phex_nz (val
, reg_size
));
1378 monitor_expect_prompt (NULL
, 0);
1381 monitor_expect_prompt (NULL
, 0);
1382 if (current_monitor
->setreg
.term_cmd
) /* Mode exit required */
1384 monitor_debug ("EXP setreg_termcmd\n");
1385 monitor_printf ("%s", current_monitor
->setreg
.term_cmd
);
1386 monitor_expect_prompt (NULL
, 0);
1388 } /* monitor_store_register */
1390 /* Store the remote registers. */
1393 monitor_store_registers (struct target_ops
*ops
,
1394 struct regcache
*regcache
, int regno
)
1398 monitor_store_register (regcache
, regno
);
1402 for (regno
= 0; regno
< gdbarch_num_regs (get_regcache_arch (regcache
));
1404 monitor_store_register (regcache
, regno
);
1407 /* Get ready to modify the registers array. On machines which store
1408 individual registers, this doesn't need to do anything. On machines
1409 which store all the registers in one fell swoop, this makes sure
1410 that registers contains all the registers from the program being
1414 monitor_prepare_to_store (struct regcache
*regcache
)
1416 /* Do nothing, since we can store individual regs */
1420 monitor_files_info (struct target_ops
*ops
)
1422 printf_unfiltered (_("\tAttached to %s at %d baud.\n"), dev_name
, baud_rate
);
1426 monitor_write_memory (CORE_ADDR memaddr
, char *myaddr
, int len
)
1428 enum bfd_endian byte_order
= gdbarch_byte_order (target_gdbarch
);
1429 unsigned int val
, hostval
;
1433 monitor_debug ("MON write %d %s\n", len
, paddress (target_gdbarch
, memaddr
));
1435 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
1436 memaddr
= gdbarch_addr_bits_remove (target_gdbarch
, memaddr
);
1438 /* Use memory fill command for leading 0 bytes. */
1440 if (current_monitor
->fill
)
1442 for (i
= 0; i
< len
; i
++)
1446 if (i
> 4) /* More than 4 zeros is worth doing */
1448 monitor_debug ("MON FILL %d\n", i
);
1449 if (current_monitor
->flags
& MO_FILL_USES_ADDR
)
1450 monitor_printf (current_monitor
->fill
, memaddr
, (memaddr
+ i
) - 1, 0);
1452 monitor_printf (current_monitor
->fill
, memaddr
, i
, 0);
1454 monitor_expect_prompt (NULL
, 0);
1461 /* Can't actually use long longs if VAL is an int (nice idea, though). */
1462 if ((memaddr
& 0x7) == 0 && len
>= 8 && current_monitor
->setmem
.cmdll
)
1465 cmd
= current_monitor
->setmem
.cmdll
;
1469 if ((memaddr
& 0x3) == 0 && len
>= 4 && current_monitor
->setmem
.cmdl
)
1472 cmd
= current_monitor
->setmem
.cmdl
;
1474 else if ((memaddr
& 0x1) == 0 && len
>= 2 && current_monitor
->setmem
.cmdw
)
1477 cmd
= current_monitor
->setmem
.cmdw
;
1482 cmd
= current_monitor
->setmem
.cmdb
;
1485 val
= extract_unsigned_integer (myaddr
, len
, byte_order
);
1489 hostval
= *(unsigned int *) myaddr
;
1490 monitor_debug ("Hostval(%08x) val(%08x)\n", hostval
, val
);
1494 if (current_monitor
->flags
& MO_NO_ECHO_ON_SETMEM
)
1495 monitor_printf_noecho (cmd
, memaddr
, val
);
1496 else if (current_monitor
->flags
& MO_SETMEM_INTERACTIVE
)
1498 monitor_printf_noecho (cmd
, memaddr
);
1500 if (current_monitor
->setmem
.resp_delim
)
1502 monitor_debug ("EXP setmem.resp_delim");
1503 monitor_expect_regexp (&setmem_resp_delim_pattern
, NULL
, 0);
1504 monitor_printf ("%x\r", val
);
1506 if (current_monitor
->setmem
.term
)
1508 monitor_debug ("EXP setmem.term");
1509 monitor_expect (current_monitor
->setmem
.term
, NULL
, 0);
1510 monitor_printf ("%x\r", val
);
1512 if (current_monitor
->setmem
.term_cmd
)
1513 { /* Emit this to get out of the memory editing state */
1514 monitor_printf ("%s", current_monitor
->setmem
.term_cmd
);
1515 /* Drop through to expecting a prompt */
1519 monitor_printf (cmd
, memaddr
, val
);
1521 monitor_expect_prompt (NULL
, 0);
1528 monitor_write_memory_bytes (CORE_ADDR memaddr
, char *myaddr
, int len
)
1535 /* Enter the sub mode */
1536 monitor_printf (current_monitor
->setmem
.cmdb
, memaddr
);
1537 monitor_expect_prompt (NULL
, 0);
1541 monitor_printf ("%x\r", val
);
1545 /* If we wanted to, here we could validate the address */
1546 monitor_expect_prompt (NULL
, 0);
1549 /* Now exit the sub mode */
1550 monitor_printf (current_monitor
->getreg
.term_cmd
);
1551 monitor_expect_prompt (NULL
, 0);
1557 longlongendswap (unsigned char *a
)
1567 *(a
+ i
) = *(a
+ j
);
1572 /* Format 32 chars of long long value, advance the pointer */
1573 static char *hexlate
= "0123456789abcdef";
1575 longlong_hexchars (unsigned long long value
,
1585 static unsigned char disbuf
[8]; /* disassembly buffer */
1586 unsigned char *scan
, *limit
; /* loop controls */
1587 unsigned char c
, nib
;
1593 unsigned long long *dp
;
1595 dp
= (unsigned long long *) scan
;
1598 longlongendswap (disbuf
); /* FIXME: ONly on big endian hosts */
1599 while (scan
< limit
)
1601 c
= *scan
++; /* a byte of our long long value */
1607 leadzero
= 0; /* henceforth we print even zeroes */
1609 nib
= c
>> 4; /* high nibble bits */
1610 *outbuff
++ = hexlate
[nib
];
1611 nib
= c
& 0x0f; /* low nibble bits */
1612 *outbuff
++ = hexlate
[nib
];
1616 } /* longlong_hexchars */
1620 /* I am only going to call this when writing virtual byte streams.
1621 Which possably entails endian conversions
1624 monitor_write_memory_longlongs (CORE_ADDR memaddr
, char *myaddr
, int len
)
1626 static char hexstage
[20]; /* At least 16 digits required, plus null */
1632 llptr
= (unsigned long long *) myaddr
;
1635 monitor_printf (current_monitor
->setmem
.cmdll
, memaddr
);
1636 monitor_expect_prompt (NULL
, 0);
1640 endstring
= longlong_hexchars (*llptr
, hexstage
);
1641 *endstring
= '\0'; /* NUll terminate for printf */
1642 monitor_printf ("%s\r", hexstage
);
1646 /* If we wanted to, here we could validate the address */
1647 monitor_expect_prompt (NULL
, 0);
1650 /* Now exit the sub mode */
1651 monitor_printf (current_monitor
->getreg
.term_cmd
);
1652 monitor_expect_prompt (NULL
, 0);
1658 /* ----- MONITOR_WRITE_MEMORY_BLOCK ---------------------------- */
1659 /* This is for the large blocks of memory which may occur in downloading.
1660 And for monitors which use interactive entry,
1661 And for monitors which do not have other downloading methods.
1662 Without this, we will end up calling monitor_write_memory many times
1663 and do the entry and exit of the sub mode many times
1664 This currently assumes...
1665 MO_SETMEM_INTERACTIVE
1666 ! MO_NO_ECHO_ON_SETMEM
1667 To use this, the you have to patch the monitor_cmds block with
1668 this function. Otherwise, its not tuned up for use by all
1673 monitor_write_memory_block (CORE_ADDR memaddr
, char *myaddr
, int len
)
1678 /* FIXME: This would be a good place to put the zero test */
1680 if ((len
> 8) && (((len
& 0x07)) == 0) && current_monitor
->setmem
.cmdll
)
1682 return monitor_write_memory_longlongs (memaddr
, myaddr
, len
);
1685 written
= monitor_write_memory_bytes (memaddr
, myaddr
, len
);
1689 /* This is an alternate form of monitor_read_memory which is used for monitors
1690 which can only read a single byte/word/etc. at a time. */
1693 monitor_read_memory_single (CORE_ADDR memaddr
, char *myaddr
, int len
)
1695 enum bfd_endian byte_order
= gdbarch_byte_order (target_gdbarch
);
1697 char membuf
[sizeof (int) * 2 + 1];
1701 monitor_debug ("MON read single\n");
1703 /* Can't actually use long longs (nice idea, though). In fact, the
1704 call to strtoul below will fail if it tries to convert a value
1705 that's too big to fit in a long. */
1706 if ((memaddr
& 0x7) == 0 && len
>= 8 && current_monitor
->getmem
.cmdll
)
1709 cmd
= current_monitor
->getmem
.cmdll
;
1713 if ((memaddr
& 0x3) == 0 && len
>= 4 && current_monitor
->getmem
.cmdl
)
1716 cmd
= current_monitor
->getmem
.cmdl
;
1718 else if ((memaddr
& 0x1) == 0 && len
>= 2 && current_monitor
->getmem
.cmdw
)
1721 cmd
= current_monitor
->getmem
.cmdw
;
1726 cmd
= current_monitor
->getmem
.cmdb
;
1729 /* Send the examine command. */
1731 monitor_printf (cmd
, memaddr
);
1733 /* If RESP_DELIM is specified, we search for that as a leading
1734 delimiter for the memory value. Otherwise, we just start
1735 searching from the start of the buf. */
1737 if (current_monitor
->getmem
.resp_delim
)
1739 monitor_debug ("EXP getmem.resp_delim\n");
1740 monitor_expect_regexp (&getmem_resp_delim_pattern
, NULL
, 0);
1743 /* Now, read the appropriate number of hex digits for this loc,
1746 /* Skip leading spaces and "0x" if MO_HEX_PREFIX flag is set. */
1747 if (current_monitor
->flags
& MO_HEX_PREFIX
)
1751 c
= readchar (timeout
);
1753 c
= readchar (timeout
);
1754 if ((c
== '0') && ((c
= readchar (timeout
)) == 'x'))
1757 monitor_error ("monitor_read_memory_single",
1758 "bad response from monitor",
1759 memaddr
, 0, NULL
, 0);
1765 for (i
= 0; i
< len
* 2; i
++)
1771 c
= readchar (timeout
);
1777 monitor_error ("monitor_read_memory_single",
1778 "bad response from monitor",
1779 memaddr
, i
, membuf
, 0);
1783 membuf
[i
] = '\000'; /* terminate the number */
1786 /* If TERM is present, we wait for that to show up. Also, (if TERM is
1787 present), we will send TERM_CMD if that is present. In any case, we collect
1788 all of the output into buf, and then wait for the normal prompt. */
1790 if (current_monitor
->getmem
.term
)
1792 monitor_expect (current_monitor
->getmem
.term
, NULL
, 0); /* get response */
1794 if (current_monitor
->getmem
.term_cmd
)
1796 monitor_printf (current_monitor
->getmem
.term_cmd
);
1797 monitor_expect_prompt (NULL
, 0);
1801 monitor_expect_prompt (NULL
, 0); /* get response */
1804 val
= strtoul (membuf
, &p
, 16);
1806 if (val
== 0 && membuf
== p
)
1807 monitor_error ("monitor_read_memory_single",
1808 "bad value from monitor",
1809 memaddr
, 0, membuf
, 0);
1811 /* supply register stores in target byte order, so swap here */
1813 store_unsigned_integer (myaddr
, len
, byte_order
, val
);
1818 /* Copy LEN bytes of data from debugger memory at MYADDR to inferior's
1819 memory at MEMADDR. Returns length moved. Currently, we do no more
1820 than 16 bytes at a time. */
1823 monitor_read_memory (CORE_ADDR memaddr
, char *myaddr
, int len
)
1834 monitor_debug ("Zero length call to monitor_read_memory\n");
1838 monitor_debug ("MON read block ta(%s) ha(%s) %d\n",
1839 paddress (target_gdbarch
, memaddr
),
1840 host_address_to_string (myaddr
), len
);
1842 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
1843 memaddr
= gdbarch_addr_bits_remove (target_gdbarch
, memaddr
);
1845 if (current_monitor
->flags
& MO_GETMEM_READ_SINGLE
)
1846 return monitor_read_memory_single (memaddr
, myaddr
, len
);
1848 len
= min (len
, 16);
1850 /* Some dumpers align the first data with the preceeding 16
1851 byte boundary. Some print blanks and start at the
1852 requested boundary. EXACT_DUMPADDR
1855 dumpaddr
= (current_monitor
->flags
& MO_EXACT_DUMPADDR
)
1856 ? memaddr
: memaddr
& ~0x0f;
1858 /* See if xfer would cross a 16 byte boundary. If so, clip it. */
1859 if (((memaddr
^ (memaddr
+ len
- 1)) & ~0xf) != 0)
1860 len
= ((memaddr
+ len
) & ~0xf) - memaddr
;
1862 /* send the memory examine command */
1864 if (current_monitor
->flags
& MO_GETMEM_NEEDS_RANGE
)
1865 monitor_printf (current_monitor
->getmem
.cmdb
, memaddr
, memaddr
+ len
);
1866 else if (current_monitor
->flags
& MO_GETMEM_16_BOUNDARY
)
1867 monitor_printf (current_monitor
->getmem
.cmdb
, dumpaddr
);
1869 monitor_printf (current_monitor
->getmem
.cmdb
, memaddr
, len
);
1871 /* If TERM is present, we wait for that to show up. Also, (if TERM
1872 is present), we will send TERM_CMD if that is present. In any
1873 case, we collect all of the output into buf, and then wait for
1874 the normal prompt. */
1876 if (current_monitor
->getmem
.term
)
1878 resp_len
= monitor_expect (current_monitor
->getmem
.term
, buf
, sizeof buf
); /* get response */
1881 monitor_error ("monitor_read_memory",
1882 "excessive response from monitor",
1883 memaddr
, resp_len
, buf
, 0);
1885 if (current_monitor
->getmem
.term_cmd
)
1887 serial_write (monitor_desc
, current_monitor
->getmem
.term_cmd
,
1888 strlen (current_monitor
->getmem
.term_cmd
));
1889 monitor_expect_prompt (NULL
, 0);
1893 resp_len
= monitor_expect_prompt (buf
, sizeof buf
); /* get response */
1897 /* If RESP_DELIM is specified, we search for that as a leading
1898 delimiter for the values. Otherwise, we just start searching
1899 from the start of the buf. */
1901 if (current_monitor
->getmem
.resp_delim
)
1904 struct re_registers resp_strings
;
1906 monitor_debug ("MON getmem.resp_delim %s\n", current_monitor
->getmem
.resp_delim
);
1908 memset (&resp_strings
, 0, sizeof (struct re_registers
));
1910 retval
= re_search (&getmem_resp_delim_pattern
, p
, tmp
, 0, tmp
,
1914 monitor_error ("monitor_read_memory",
1915 "bad response from monitor",
1916 memaddr
, resp_len
, buf
, 0);
1918 p
+= resp_strings
.end
[0];
1920 p
= strstr (p
, current_monitor
->getmem
.resp_delim
);
1922 monitor_error ("monitor_read_memory",
1923 "bad response from monitor",
1924 memaddr
, resp_len
, buf
, 0);
1925 p
+= strlen (current_monitor
->getmem
.resp_delim
);
1928 monitor_debug ("MON scanning %d ,%s '%s'\n", len
,
1929 host_address_to_string (p
), p
);
1930 if (current_monitor
->flags
& MO_GETMEM_16_BOUNDARY
)
1938 while (!(c
== '\000' || c
== '\n' || c
== '\r') && i
> 0)
1942 if ((dumpaddr
>= memaddr
) && (i
> 0))
1944 val
= fromhex (c
) * 16 + fromhex (*(p
+ 1));
1946 if (monitor_debug_p
|| remote_debug
)
1947 fprintf_unfiltered (gdb_stdlog
, "[%02x]", val
);
1954 ++p
; /* skip a blank or other non hex char */
1958 error (_("Failed to read via monitor"));
1959 if (monitor_debug_p
|| remote_debug
)
1960 fprintf_unfiltered (gdb_stdlog
, "\n");
1961 return fetched
; /* Return the number of bytes actually read */
1963 monitor_debug ("MON scanning bytes\n");
1965 for (i
= len
; i
> 0; i
--)
1967 /* Skip non-hex chars, but bomb on end of string and newlines */
1974 if (*p
== '\000' || *p
== '\n' || *p
== '\r')
1975 monitor_error ("monitor_read_memory",
1976 "badly terminated response from monitor",
1977 memaddr
, resp_len
, buf
, 0);
1981 val
= strtoul (p
, &p1
, 16);
1983 if (val
== 0 && p
== p1
)
1984 monitor_error ("monitor_read_memory",
1985 "bad value from monitor",
1986 memaddr
, resp_len
, buf
, 0);
1999 /* Transfer LEN bytes between target address MEMADDR and GDB address
2000 MYADDR. Returns 0 for success, errno code for failure. TARGET is
2004 monitor_xfer_memory (CORE_ADDR memaddr
, gdb_byte
*myaddr
, int len
, int write
,
2005 struct mem_attrib
*attrib
, struct target_ops
*target
)
2011 if (current_monitor
->flags
& MO_HAS_BLOCKWRITES
)
2012 res
= monitor_write_memory_block(memaddr
, myaddr
, len
);
2014 res
= monitor_write_memory(memaddr
, myaddr
, len
);
2018 res
= monitor_read_memory(memaddr
, myaddr
, len
);
2025 monitor_kill (struct target_ops
*ops
)
2027 return; /* ignore attempts to kill target system */
2030 /* All we actually do is set the PC to the start address of exec_bfd. */
2033 monitor_create_inferior (struct target_ops
*ops
, char *exec_file
,
2034 char *args
, char **env
, int from_tty
)
2036 if (args
&& (*args
!= '\000'))
2037 error (_("Args are not supported by the monitor."));
2040 clear_proceed_status ();
2041 regcache_write_pc (get_current_regcache (),
2042 bfd_get_start_address (exec_bfd
));
2045 /* Clean up when a program exits.
2046 The program actually lives on in the remote processor's RAM, and may be
2047 run again without a download. Don't leave it full of breakpoint
2051 monitor_mourn_inferior (struct target_ops
*ops
)
2053 unpush_target (targ_ops
);
2054 generic_mourn_inferior (); /* Do all the proper things now */
2055 delete_thread_silent (monitor_ptid
);
2058 /* Tell the monitor to add a breakpoint. */
2061 monitor_insert_breakpoint (struct gdbarch
*gdbarch
,
2062 struct bp_target_info
*bp_tgt
)
2064 CORE_ADDR addr
= bp_tgt
->placed_address
;
2068 monitor_debug ("MON inst bkpt %s\n", paddress (gdbarch
, addr
));
2069 if (current_monitor
->set_break
== NULL
)
2070 error (_("No set_break defined for this monitor"));
2072 if (current_monitor
->flags
& MO_ADDR_BITS_REMOVE
)
2073 addr
= gdbarch_addr_bits_remove (gdbarch
, addr
);
2075 /* Determine appropriate breakpoint size for this address. */
2076 gdbarch_breakpoint_from_pc (gdbarch
, &addr
, &bplen
);
2077 bp_tgt
->placed_address
= addr
;
2078 bp_tgt
->placed_size
= bplen
;
2080 for (i
= 0; i
< current_monitor
->num_breakpoints
; i
++)
2082 if (breakaddr
[i
] == 0)
2084 breakaddr
[i
] = addr
;
2085 monitor_printf (current_monitor
->set_break
, addr
);
2086 monitor_expect_prompt (NULL
, 0);
2091 error (_("Too many breakpoints (> %d) for monitor."), current_monitor
->num_breakpoints
);
2094 /* Tell the monitor to remove a breakpoint. */
2097 monitor_remove_breakpoint (struct gdbarch
*gdbarch
,
2098 struct bp_target_info
*bp_tgt
)
2100 CORE_ADDR addr
= bp_tgt
->placed_address
;
2103 monitor_debug ("MON rmbkpt %s\n", paddress (gdbarch
, addr
));
2104 if (current_monitor
->clr_break
== NULL
)
2105 error (_("No clr_break defined for this monitor"));
2107 for (i
= 0; i
< current_monitor
->num_breakpoints
; i
++)
2109 if (breakaddr
[i
] == addr
)
2112 /* some monitors remove breakpoints based on the address */
2113 if (current_monitor
->flags
& MO_CLR_BREAK_USES_ADDR
)
2114 monitor_printf (current_monitor
->clr_break
, addr
);
2115 else if (current_monitor
->flags
& MO_CLR_BREAK_1_BASED
)
2116 monitor_printf (current_monitor
->clr_break
, i
+ 1);
2118 monitor_printf (current_monitor
->clr_break
, i
);
2119 monitor_expect_prompt (NULL
, 0);
2123 fprintf_unfiltered (gdb_stderr
,
2124 "Can't find breakpoint associated with %s\n",
2125 paddress (gdbarch
, addr
));
2129 /* monitor_wait_srec_ack -- wait for the target to send an acknowledgement for
2130 an S-record. Return non-zero if the ACK is received properly. */
2133 monitor_wait_srec_ack (void)
2137 if (current_monitor
->flags
& MO_SREC_ACK_PLUS
)
2139 return (readchar (timeout
) == '+');
2141 else if (current_monitor
->flags
& MO_SREC_ACK_ROTATE
)
2143 /* Eat two backspaces, a "rotating" char (|/-\), and a space. */
2144 if ((ch
= readchar (1)) < 0)
2146 if ((ch
= readchar (1)) < 0)
2148 if ((ch
= readchar (1)) < 0)
2150 if ((ch
= readchar (1)) < 0)
2156 /* monitor_load -- download a file. */
2159 monitor_load (char *file
, int from_tty
)
2161 monitor_debug ("MON load\n");
2163 if (current_monitor
->load_routine
)
2164 current_monitor
->load_routine (monitor_desc
, file
, hashmark
);
2166 { /* The default is ascii S-records */
2168 unsigned long load_offset
;
2171 /* enable user to specify address for downloading as 2nd arg to load */
2172 n
= sscanf (file
, "%s 0x%lx", buf
, &load_offset
);
2178 monitor_printf (current_monitor
->load
);
2179 if (current_monitor
->loadresp
)
2180 monitor_expect (current_monitor
->loadresp
, NULL
, 0);
2182 load_srec (monitor_desc
, file
, (bfd_vma
) load_offset
,
2183 32, SREC_ALL
, hashmark
,
2184 current_monitor
->flags
& MO_SREC_ACK
?
2185 monitor_wait_srec_ack
: NULL
);
2187 monitor_expect_prompt (NULL
, 0);
2190 /* Finally, make the PC point at the start address */
2192 regcache_write_pc (get_current_regcache (),
2193 bfd_get_start_address (exec_bfd
));
2195 /* There used to be code here which would clear inferior_ptid and
2196 call clear_symtab_users. None of that should be necessary:
2197 monitor targets should behave like remote protocol targets, and
2198 since generic_load does none of those things, this function
2201 Furthermore, clearing inferior_ptid is *incorrect*. After doing
2202 a load, we still have a valid connection to the monitor, with a
2203 live processor state to fiddle with. The user can type
2204 `continue' or `jump *start' and make the program run. If they do
2205 these things, however, GDB will be talking to a running program
2206 while inferior_ptid is null_ptid; this makes things like
2207 reinit_frame_cache very confused. */
2211 monitor_stop (ptid_t ptid
)
2213 monitor_debug ("MON stop\n");
2214 if ((current_monitor
->flags
& MO_SEND_BREAK_ON_STOP
) != 0)
2215 serial_send_break (monitor_desc
);
2216 if (current_monitor
->stop
)
2217 monitor_printf_noecho (current_monitor
->stop
);
2220 /* Put a COMMAND string out to MONITOR. Output from MONITOR is placed
2221 in OUTPUT until the prompt is seen. FIXME: We read the characters
2222 ourseleves here cause of a nasty echo. */
2225 monitor_rcmd (char *command
,
2226 struct ui_file
*outbuf
)
2232 if (monitor_desc
== NULL
)
2233 error (_("monitor target not open."));
2235 p
= current_monitor
->prompt
;
2237 /* Send the command. Note that if no args were supplied, then we're
2238 just sending the monitor a newline, which is sometimes useful. */
2240 monitor_printf ("%s\r", (command
? command
: ""));
2242 resp_len
= monitor_expect_prompt (buf
, sizeof buf
);
2244 fputs_unfiltered (buf
, outbuf
); /* Output the response */
2247 /* Convert hex digit A to a number. */
2253 if (a
>= '0' && a
<= '9')
2255 if (a
>= 'a' && a
<= 'f')
2256 return a
- 'a' + 10;
2257 if (a
>= 'A' && a
<= 'F')
2258 return a
- 'A' + 10;
2260 error (_("Reply contains invalid hex digit 0x%x"), a
);
2265 monitor_get_dev_name (void)
2270 /* Check to see if a thread is still alive. */
2273 monitor_thread_alive (struct target_ops
*ops
, ptid_t ptid
)
2275 if (ptid_equal (ptid
, monitor_ptid
))
2276 /* The monitor's task is always alive. */
2282 /* Convert a thread ID to a string. Returns the string in a static
2286 monitor_pid_to_str (struct target_ops
*ops
, ptid_t ptid
)
2288 static char buf
[64];
2290 if (ptid_equal (monitor_ptid
, ptid
))
2292 xsnprintf (buf
, sizeof buf
, "Thread <main>");
2296 return normal_pid_to_str (ptid
);
2299 static struct target_ops monitor_ops
;
2302 init_base_monitor_ops (void)
2304 monitor_ops
.to_close
= monitor_close
;
2305 monitor_ops
.to_detach
= monitor_detach
;
2306 monitor_ops
.to_resume
= monitor_resume
;
2307 monitor_ops
.to_wait
= monitor_wait
;
2308 monitor_ops
.to_fetch_registers
= monitor_fetch_registers
;
2309 monitor_ops
.to_store_registers
= monitor_store_registers
;
2310 monitor_ops
.to_prepare_to_store
= monitor_prepare_to_store
;
2311 monitor_ops
.deprecated_xfer_memory
= monitor_xfer_memory
;
2312 monitor_ops
.to_files_info
= monitor_files_info
;
2313 monitor_ops
.to_insert_breakpoint
= monitor_insert_breakpoint
;
2314 monitor_ops
.to_remove_breakpoint
= monitor_remove_breakpoint
;
2315 monitor_ops
.to_kill
= monitor_kill
;
2316 monitor_ops
.to_load
= monitor_load
;
2317 monitor_ops
.to_create_inferior
= monitor_create_inferior
;
2318 monitor_ops
.to_mourn_inferior
= monitor_mourn_inferior
;
2319 monitor_ops
.to_stop
= monitor_stop
;
2320 monitor_ops
.to_rcmd
= monitor_rcmd
;
2321 monitor_ops
.to_log_command
= serial_log_command
;
2322 monitor_ops
.to_thread_alive
= monitor_thread_alive
;
2323 monitor_ops
.to_pid_to_str
= monitor_pid_to_str
;
2324 monitor_ops
.to_stratum
= process_stratum
;
2325 monitor_ops
.to_has_all_memory
= default_child_has_all_memory
;
2326 monitor_ops
.to_has_memory
= default_child_has_memory
;
2327 monitor_ops
.to_has_stack
= default_child_has_stack
;
2328 monitor_ops
.to_has_registers
= default_child_has_registers
;
2329 monitor_ops
.to_has_execution
= default_child_has_execution
;
2330 monitor_ops
.to_magic
= OPS_MAGIC
;
2331 } /* init_base_monitor_ops */
2333 /* Init the target_ops structure pointed at by OPS */
2336 init_monitor_ops (struct target_ops
*ops
)
2338 if (monitor_ops
.to_magic
!= OPS_MAGIC
)
2339 init_base_monitor_ops ();
2341 memcpy (ops
, &monitor_ops
, sizeof monitor_ops
);
2344 /* Define additional commands that are usually only used by monitors. */
2346 extern initialize_file_ftype _initialize_remote_monitors
; /* -Wmissing-prototypes */
2349 _initialize_remote_monitors (void)
2351 init_base_monitor_ops ();
2352 add_setshow_boolean_cmd ("hash", no_class
, &hashmark
, _("\
2353 Set display of activity while downloading a file."), _("\
2354 Show display of activity while downloading a file."), _("\
2355 When enabled, a hashmark \'#\' is displayed."),
2357 NULL
, /* FIXME: i18n: */
2358 &setlist
, &showlist
);
2360 add_setshow_zinteger_cmd ("monitor", no_class
, &monitor_debug_p
, _("\
2361 Set debugging of remote monitor communication."), _("\
2362 Show debugging of remote monitor communication."), _("\
2363 When enabled, communication between GDB and the remote monitor\n\
2366 NULL
, /* FIXME: i18n: */
2367 &setdebuglist
, &showdebuglist
);
2369 /* Yes, 42000 is arbitrary. The only sense out of it, is that it
2371 monitor_ptid
= ptid_build (42000, 0, 42000);