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