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