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