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