Eliminate some uses of __STDC__.
[external/binutils.git] / gdb / remote-eb.c
1 /* Remote debugging interface for AMD 29000 EBMON on IBM PC, for GDB.
2    Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001
3    Free Software Foundation, Inc.
4    Contributed by Cygnus Support.  Written by Jim Kingdon for Cygnus.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 59 Temple Place - Suite 330,
21    Boston, MA 02111-1307, USA.  */
22
23 /* This is like remote.c but is for an esoteric situation--
24    having a a29k board in a PC hooked up to a unix machine with
25    a serial line, and running ctty com1 on the PC, through which
26    the unix machine can run ebmon.  Not to mention that the PC
27    has PC/NFS, so it can access the same executables that gdb can,
28    over the net in real time.  */
29
30 #include "defs.h"
31 #include "gdb_string.h"
32 #include "regcache.h"
33
34 #include "inferior.h"
35 #include "bfd.h"
36 #include "symfile.h"
37 #include "value.h"
38 #include <ctype.h>
39 #include <fcntl.h>
40 #include <signal.h>
41 #include <errno.h>
42 #include "terminal.h"
43 #include "target.h"
44 #include "gdbcore.h"
45
46 extern struct target_ops eb_ops;        /* Forward declaration */
47
48 static void eb_close ();
49
50 #define LOG_FILE "eb.log"
51 #if defined (LOG_FILE)
52 FILE *log_file;
53 #endif
54
55 static int timeout = 24;
56
57 /* Descriptor for I/O to remote machine.  Initialize it to -1 so that
58    eb_open knows that we don't have a file open when the program
59    starts.  */
60 int eb_desc = -1;
61
62 /* stream which is fdopen'd from eb_desc.  Only valid when
63    eb_desc != -1.  */
64 FILE *eb_stream;
65
66 /* Read a character from the remote system, doing all the fancy
67    timeout stuff.  */
68 static int
69 readchar (void)
70 {
71   char buf;
72
73   buf = '\0';
74 #ifdef HAVE_TERMIO
75   /* termio does the timeout for us.  */
76   read (eb_desc, &buf, 1);
77 #else
78   alarm (timeout);
79   if (read (eb_desc, &buf, 1) < 0)
80     {
81       if (errno == EINTR)
82         error ("Timeout reading from remote system.");
83       else
84         perror_with_name ("remote");
85     }
86   alarm (0);
87 #endif
88
89   if (buf == '\0')
90     error ("Timeout reading from remote system.");
91 #if defined (LOG_FILE)
92   putc (buf & 0x7f, log_file);
93 #endif
94   return buf & 0x7f;
95 }
96
97 /* Keep discarding input from the remote system, until STRING is found. 
98    Let the user break out immediately.  */
99 static void
100 expect (char *string)
101 {
102   char *p = string;
103
104   immediate_quit++;
105   while (1)
106     {
107       if (readchar () == *p)
108         {
109           p++;
110           if (*p == '\0')
111             {
112               immediate_quit--;
113               return;
114             }
115         }
116       else
117         p = string;
118     }
119 }
120
121 /* Keep discarding input until we see the ebmon prompt.
122
123    The convention for dealing with the prompt is that you
124    o give your command
125    o *then* wait for the prompt.
126
127    Thus the last thing that a procedure does with the serial line
128    will be an expect_prompt().  Exception:  eb_resume does not
129    wait for the prompt, because the terminal is being handed over
130    to the inferior.  However, the next thing which happens after that
131    is a eb_wait which does wait for the prompt.
132    Note that this includes abnormal exit, e.g. error().  This is
133    necessary to prevent getting into states from which we can't
134    recover.  */
135 static void
136 expect_prompt (void)
137 {
138 #if defined (LOG_FILE)
139   /* This is a convenient place to do this.  The idea is to do it often
140      enough that we never lose much data if we terminate abnormally.  */
141   fflush (log_file);
142 #endif
143   expect ("\n# ");
144 }
145
146 /* Get a hex digit from the remote system & return its value.
147    If ignore_space is nonzero, ignore spaces (not newline, tab, etc).  */
148 static int
149 get_hex_digit (int ignore_space)
150 {
151   int ch;
152   while (1)
153     {
154       ch = readchar ();
155       if (ch >= '0' && ch <= '9')
156         return ch - '0';
157       else if (ch >= 'A' && ch <= 'F')
158         return ch - 'A' + 10;
159       else if (ch >= 'a' && ch <= 'f')
160         return ch - 'a' + 10;
161       else if (ch == ' ' && ignore_space)
162         ;
163       else
164         {
165           expect_prompt ();
166           error ("Invalid hex digit from remote system.");
167         }
168     }
169 }
170
171 /* Get a byte from eb_desc and put it in *BYT.  Accept any number
172    leading spaces.  */
173 static void
174 get_hex_byte (char *byt)
175 {
176   int val;
177
178   val = get_hex_digit (1) << 4;
179   val |= get_hex_digit (0);
180   *byt = val;
181 }
182
183 /* Get N 32-bit words from remote, each preceded by a space,
184    and put them in registers starting at REGNO.  */
185 static void
186 get_hex_regs (int n, int regno)
187 {
188   long val;
189   int i;
190
191   for (i = 0; i < n; i++)
192     {
193       int j;
194
195       val = 0;
196       for (j = 0; j < 8; j++)
197         val = (val << 4) + get_hex_digit (j == 0);
198       supply_register (regno++, (char *) &val);
199     }
200 }
201
202 /* Called when SIGALRM signal sent due to alarm() timeout.  */
203 #ifndef HAVE_TERMIO
204
205 volatile int n_alarms;
206
207 void
208 eb_timer (void)
209 {
210 #if 0
211   if (kiodebug)
212     printf ("eb_timer called\n");
213 #endif
214   n_alarms++;
215 }
216 #endif
217
218 /* malloc'd name of the program on the remote system.  */
219 static char *prog_name = NULL;
220
221 /* Nonzero if we have loaded the file ("yc") and not yet issued a "gi"
222    command.  "gi" is supposed to happen exactly once for each "yc".  */
223 static int need_gi = 0;
224
225 /* Number of SIGTRAPs we need to simulate.  That is, the next
226    NEED_ARTIFICIAL_TRAP calls to eb_wait should just return
227    SIGTRAP without actually waiting for anything.  */
228
229 static int need_artificial_trap = 0;
230
231 /* This is called not only when we first attach, but also when the
232    user types "run" after having attached.  */
233 static void
234 eb_create_inferior (char *execfile, char *args, char **env)
235 {
236   int entry_pt;
237
238   if (args && *args)
239     error ("Can't pass arguments to remote EBMON process");
240
241   if (execfile == 0 || exec_bfd == 0)
242     error ("No executable file specified");
243
244   entry_pt = (int) bfd_get_start_address (exec_bfd);
245
246   {
247     /* OK, now read in the file.  Y=read, C=COFF, D=no symbols
248        0=start address, %s=filename.  */
249
250     fprintf (eb_stream, "YC D,0:%s", prog_name);
251
252     if (args != NULL)
253       fprintf (eb_stream, " %s", args);
254
255     fprintf (eb_stream, "\n");
256     fflush (eb_stream);
257
258     expect_prompt ();
259
260     need_gi = 1;
261   }
262
263 /* The "process" (board) is already stopped awaiting our commands, and
264    the program is already downloaded.  We just set its PC and go.  */
265
266   clear_proceed_status ();
267
268   /* Tell wait_for_inferior that we've started a new process.  */
269   init_wait_for_inferior ();
270
271   /* Set up the "saved terminal modes" of the inferior
272      based on what modes we are starting it with.  */
273   target_terminal_init ();
274
275   /* Install inferior's terminal modes.  */
276   target_terminal_inferior ();
277
278   /* insert_step_breakpoint ();  FIXME, do we need this?  */
279   proceed ((CORE_ADDR) entry_pt, TARGET_SIGNAL_DEFAULT, 0);     /* Let 'er rip... */
280 }
281
282 /* Translate baud rates from integers to damn B_codes.  Unix should
283    have outgrown this crap years ago, but even POSIX wouldn't buck it.  */
284
285 #ifndef B19200
286 #define B19200 EXTA
287 #endif
288 #ifndef B38400
289 #define B38400 EXTB
290 #endif
291
292 struct
293 {
294   int rate, damn_b;
295 }
296 baudtab[] =
297 {
298   {
299     0, B0
300   }
301   ,
302   {
303     50, B50
304   }
305   ,
306   {
307     75, B75
308   }
309   ,
310   {
311     110, B110
312   }
313   ,
314   {
315     134, B134
316   }
317   ,
318   {
319     150, B150
320   }
321   ,
322   {
323     200, B200
324   }
325   ,
326   {
327     300, B300
328   }
329   ,
330   {
331     600, B600
332   }
333   ,
334   {
335     1200, B1200
336   }
337   ,
338   {
339     1800, B1800
340   }
341   ,
342   {
343     2400, B2400
344   }
345   ,
346   {
347     4800, B4800
348   }
349   ,
350   {
351     9600, B9600
352   }
353   ,
354   {
355     19200, B19200
356   }
357   ,
358   {
359     38400, B38400
360   }
361   ,
362   {
363     -1, -1
364   }
365   ,
366 };
367
368 int
369 damn_b (int rate)
370 {
371   int i;
372
373   for (i = 0; baudtab[i].rate != -1; i++)
374     if (rate == baudtab[i].rate)
375       return baudtab[i].damn_b;
376   return B38400;                /* Random */
377 }
378
379
380 /* Open a connection to a remote debugger.
381    NAME is the filename used for communication, then a space,
382    then the name of the program as we should name it to EBMON.  */
383
384 static int baudrate = 9600;
385 static char *dev_name;
386 void
387 eb_open (char *name, int from_tty)
388 {
389   TERMINAL sg;
390
391   char *p;
392
393   target_preopen (from_tty);
394
395   /* Find the first whitespace character, it separates dev_name from
396      prog_name.  */
397   if (name == 0)
398     goto erroid;
399
400   for (p = name;
401        *p != '\0' && !isspace (*p); p++)
402     ;
403   if (*p == '\0')
404   erroid:
405     error ("\
406 Please include the name of the device for the serial port,\n\
407 the baud rate, and the name of the program to run on the remote system.");
408   dev_name = alloca (p - name + 1);
409   strncpy (dev_name, name, p - name);
410   dev_name[p - name] = '\0';
411
412   /* Skip over the whitespace after dev_name */
413   for (; isspace (*p); p++)
414     /*EMPTY */ ;
415
416   if (1 != sscanf (p, "%d ", &baudrate))
417     goto erroid;
418
419   /* Skip the number and then the spaces */
420   for (; isdigit (*p); p++)
421     /*EMPTY */ ;
422   for (; isspace (*p); p++)
423     /*EMPTY */ ;
424
425   if (prog_name != NULL)
426     xfree (prog_name);
427   prog_name = savestring (p, strlen (p));
428
429   eb_close (0);
430
431   eb_desc = open (dev_name, O_RDWR);
432   if (eb_desc < 0)
433     perror_with_name (dev_name);
434   ioctl (eb_desc, TIOCGETP, &sg);
435 #ifdef HAVE_TERMIO
436   sg.c_cc[VMIN] = 0;            /* read with timeout.  */
437   sg.c_cc[VTIME] = timeout * 10;
438   sg.c_lflag &= ~(ICANON | ECHO);
439   sg.c_cflag = (sg.c_cflag & ~CBAUD) | damn_b (baudrate);
440 #else
441   sg.sg_ispeed = damn_b (baudrate);
442   sg.sg_ospeed = damn_b (baudrate);
443   sg.sg_flags |= RAW | ANYP;
444   sg.sg_flags &= ~ECHO;
445 #endif
446
447   ioctl (eb_desc, TIOCSETP, &sg);
448   eb_stream = fdopen (eb_desc, "r+");
449
450   push_target (&eb_ops);
451   if (from_tty)
452     printf ("Remote %s debugging %s using %s\n", target_shortname,
453             prog_name, dev_name);
454
455 #ifndef HAVE_TERMIO
456 #ifndef NO_SIGINTERRUPT
457   /* Cause SIGALRM's to make reads fail with EINTR instead of resuming
458      the read.  */
459   if (siginterrupt (SIGALRM, 1) != 0)
460     perror ("eb_open: error in siginterrupt");
461 #endif
462
463   /* Set up read timeout timer.  */
464   if ((void (*)) signal (SIGALRM, eb_timer) == (void (*)) -1)
465     perror ("eb_open: error in signal");
466 #endif
467
468 #if defined (LOG_FILE)
469   log_file = fopen (LOG_FILE, "w");
470   if (log_file == NULL)
471     perror_with_name (LOG_FILE);
472 #endif
473
474   /* Hello?  Are you there?  */
475   write (eb_desc, "\n", 1);
476
477   expect_prompt ();
478 }
479
480 /* Close out all files and local state before this target loses control. */
481
482 static void
483 eb_close (int quitting)
484 {
485
486   /* Due to a bug in Unix, fclose closes not only the stdio stream,
487      but also the file descriptor.  So we don't actually close
488      eb_desc.  */
489   if (eb_stream)
490     fclose (eb_stream);         /* This also closes eb_desc */
491   if (eb_desc >= 0)
492     /* close (eb_desc); */
493
494     /* Do not try to close eb_desc again, later in the program.  */
495     eb_stream = NULL;
496   eb_desc = -1;
497
498 #if defined (LOG_FILE)
499   if (log_file)
500     {
501       if (ferror (log_file))
502         printf ("Error writing log file.\n");
503       if (fclose (log_file) != 0)
504         printf ("Error closing log file.\n");
505     }
506 #endif
507 }
508
509 /* Terminate the open connection to the remote debugger.
510    Use this when you want to detach and do something else
511    with your gdb.  */
512 void
513 eb_detach (int from_tty)
514 {
515   pop_target ();                /* calls eb_close to do the real work */
516   if (from_tty)
517     printf ("Ending remote %s debugging\n", target_shortname);
518 }
519
520 /* Tell the remote machine to resume.  */
521
522 void
523 eb_resume (int pid, int step, enum target_signal sig)
524 {
525   if (step)
526     {
527       write (eb_desc, "t 1,s\n", 6);
528       /* Wait for the echo.  */
529       expect ("t 1,s\r");
530       /* Then comes a line containing the instruction we stepped to.  */
531       expect ("\n@");
532       /* Then we get the prompt.  */
533       expect_prompt ();
534
535       /* Force the next eb_wait to return a trap.  Not doing anything
536          about I/O from the target means that the user has to type
537          "continue" to see any.  This should be fixed.  */
538       need_artificial_trap = 1;
539     }
540   else
541     {
542       if (need_gi)
543         {
544           need_gi = 0;
545           write (eb_desc, "gi\n", 3);
546
547           /* Swallow the echo of "gi".  */
548           expect ("gi\r");
549         }
550       else
551         {
552           write (eb_desc, "GR\n", 3);
553           /* Swallow the echo.  */
554           expect ("GR\r");
555         }
556     }
557 }
558
559 /* Wait until the remote machine stops, then return,
560    storing status in STATUS just as `wait' would.  */
561
562 int
563 eb_wait (struct target_waitstatus *status)
564 {
565   /* Strings to look for.  '?' means match any single character.  
566      Note that with the algorithm we use, the initial character
567      of the string cannot recur in the string, or we will not
568      find some cases of the string in the input.  */
569
570   static char bpt[] = "Invalid interrupt taken - #0x50 - ";
571   /* It would be tempting to look for "\n[__exit + 0x8]\n"
572      but that requires loading symbols with "yc i" and even if
573      we did do that we don't know that the file has symbols.  */
574   static char exitmsg[] = "\n@????????I    JMPTI     GR121,LR0";
575   char *bp = bpt;
576   char *ep = exitmsg;
577
578   /* Large enough for either sizeof (bpt) or sizeof (exitmsg) chars.  */
579   char swallowed[50];
580   /* Current position in swallowed.  */
581   char *swallowed_p = swallowed;
582
583   int ch;
584   int ch_handled;
585
586   int old_timeout = timeout;
587
588   status->kind = TARGET_WAITKIND_EXITED;
589   status->value.integer = 0;
590
591   if (need_artificial_trap != 0)
592     {
593       status->kind = TARGET_WAITKIND_STOPPED;
594       status->value.sig = TARGET_SIGNAL_TRAP;
595       need_artificial_trap--;
596       return 0;
597     }
598
599   timeout = 0;                  /* Don't time out -- user program is running. */
600   while (1)
601     {
602       ch_handled = 0;
603       ch = readchar ();
604       if (ch == *bp)
605         {
606           bp++;
607           if (*bp == '\0')
608             break;
609           ch_handled = 1;
610
611           *swallowed_p++ = ch;
612         }
613       else
614         bp = bpt;
615
616       if (ch == *ep || *ep == '?')
617         {
618           ep++;
619           if (*ep == '\0')
620             break;
621
622           if (!ch_handled)
623             *swallowed_p++ = ch;
624           ch_handled = 1;
625         }
626       else
627         ep = exitmsg;
628
629       if (!ch_handled)
630         {
631           char *p;
632
633           /* Print out any characters which have been swallowed.  */
634           for (p = swallowed; p < swallowed_p; ++p)
635             putc (*p, stdout);
636           swallowed_p = swallowed;
637
638           putc (ch, stdout);
639         }
640     }
641   expect_prompt ();
642   if (*bp == '\0')
643     {
644       status->kind = TARGET_WAITKIND_STOPPED;
645       status->value.sig = TARGET_SIGNAL_TRAP;
646     }
647   else
648     {
649       status->kind = TARGET_WAITKIND_EXITED;
650       status->value.integer = 0;
651     }
652   timeout = old_timeout;
653
654   return 0;
655 }
656
657 /* Return the name of register number REGNO
658    in the form input and output by EBMON.
659
660    Returns a pointer to a static buffer containing the answer.  */
661 static char *
662 get_reg_name (int regno)
663 {
664   static char buf[80];
665   if (regno >= GR96_REGNUM && regno < GR96_REGNUM + 32)
666     sprintf (buf, "GR%03d", regno - GR96_REGNUM + 96);
667   else if (regno >= LR0_REGNUM && regno < LR0_REGNUM + 128)
668     sprintf (buf, "LR%03d", regno - LR0_REGNUM);
669   else if (regno == Q_REGNUM)
670     strcpy (buf, "SR131");
671   else if (regno >= BP_REGNUM && regno <= CR_REGNUM)
672     sprintf (buf, "SR%03d", regno - BP_REGNUM + 133);
673   else if (regno == ALU_REGNUM)
674     strcpy (buf, "SR132");
675   else if (regno >= IPC_REGNUM && regno <= IPB_REGNUM)
676     sprintf (buf, "SR%03d", regno - IPC_REGNUM + 128);
677   else if (regno >= VAB_REGNUM && regno <= LRU_REGNUM)
678     sprintf (buf, "SR%03d", regno - VAB_REGNUM);
679   else if (regno == GR1_REGNUM)
680     strcpy (buf, "GR001");
681   return buf;
682 }
683
684 /* Read the remote registers into the block REGS.  */
685
686 static void
687 eb_fetch_registers (void)
688 {
689   int reg_index;
690   int regnum_index;
691   char tempbuf[10];
692   int i;
693
694 #if 0
695   /* This should not be necessary, because one is supposed to read the
696      registers only when the inferior is stopped (at least with
697      ptrace() and why not make it the same for remote?).  */
698   /* ^A is the "normal character" used to make sure we are talking to EBMON
699      and not to the program being debugged.  */
700   write (eb_desc, "\001\n");
701   expect_prompt ();
702 #endif
703
704   write (eb_desc, "dw gr96,gr127\n", 14);
705   for (reg_index = 96, regnum_index = GR96_REGNUM;
706        reg_index < 128;
707        reg_index += 4, regnum_index += 4)
708     {
709       sprintf (tempbuf, "GR%03d ", reg_index);
710       expect (tempbuf);
711       get_hex_regs (4, regnum_index);
712       expect ("\n");
713     }
714
715   for (i = 0; i < 128; i += 32)
716     {
717       /* The PC has a tendency to hang if we get these
718          all in one fell swoop ("dw lr0,lr127").  */
719       sprintf (tempbuf, "dw lr%d\n", i);
720       write (eb_desc, tempbuf, strlen (tempbuf));
721       for (reg_index = i, regnum_index = LR0_REGNUM + i;
722            reg_index < i + 32;
723            reg_index += 4, regnum_index += 4)
724         {
725           sprintf (tempbuf, "LR%03d ", reg_index);
726           expect (tempbuf);
727           get_hex_regs (4, regnum_index);
728           expect ("\n");
729         }
730     }
731
732   write (eb_desc, "dw sr133,sr133\n", 15);
733   expect ("SR133          ");
734   get_hex_regs (1, BP_REGNUM);
735   expect ("\n");
736
737   write (eb_desc, "dw sr134,sr134\n", 15);
738   expect ("SR134                   ");
739   get_hex_regs (1, FC_REGNUM);
740   expect ("\n");
741
742   write (eb_desc, "dw sr135,sr135\n", 15);
743   expect ("SR135                            ");
744   get_hex_regs (1, CR_REGNUM);
745   expect ("\n");
746
747   write (eb_desc, "dw sr131,sr131\n", 15);
748   expect ("SR131                            ");
749   get_hex_regs (1, Q_REGNUM);
750   expect ("\n");
751
752   write (eb_desc, "dw sr0,sr14\n", 12);
753   for (reg_index = 0, regnum_index = VAB_REGNUM;
754        regnum_index <= LRU_REGNUM;
755        regnum_index += 4, reg_index += 4)
756     {
757       sprintf (tempbuf, "SR%03d ", reg_index);
758       expect (tempbuf);
759       get_hex_regs (reg_index == 12 ? 3 : 4, regnum_index);
760       expect ("\n");
761     }
762
763   /* There doesn't seem to be any way to get these.  */
764   {
765     int val = -1;
766     supply_register (FPE_REGNUM, (char *) &val);
767     supply_register (INTE_REGNUM, (char *) &val);
768     supply_register (FPS_REGNUM, (char *) &val);
769     supply_register (EXO_REGNUM, (char *) &val);
770   }
771
772   write (eb_desc, "dw gr1,gr1\n", 11);
773   expect ("GR001 ");
774   get_hex_regs (1, GR1_REGNUM);
775   expect_prompt ();
776 }
777
778 /* Fetch register REGNO, or all registers if REGNO is -1.
779    Returns errno value.  */
780 void
781 eb_fetch_register (int regno)
782 {
783   if (regno == -1)
784     eb_fetch_registers ();
785   else
786     {
787       char *name = get_reg_name (regno);
788       fprintf (eb_stream, "dw %s,%s\n", name, name);
789       expect (name);
790       expect (" ");
791       get_hex_regs (1, regno);
792       expect_prompt ();
793     }
794   return;
795 }
796
797 /* Store the remote registers from the contents of the block REGS.  */
798
799 static void
800 eb_store_registers (void)
801 {
802   int i, j;
803   fprintf (eb_stream, "s gr1,%x\n", read_register (GR1_REGNUM));
804   expect_prompt ();
805
806   for (j = 0; j < 32; j += 16)
807     {
808       fprintf (eb_stream, "s gr%d,", j + 96);
809       for (i = 0; i < 15; ++i)
810         fprintf (eb_stream, "%x,", read_register (GR96_REGNUM + j + i));
811       fprintf (eb_stream, "%x\n", read_register (GR96_REGNUM + j + 15));
812       expect_prompt ();
813     }
814
815   for (j = 0; j < 128; j += 16)
816     {
817       fprintf (eb_stream, "s lr%d,", j);
818       for (i = 0; i < 15; ++i)
819         fprintf (eb_stream, "%x,", read_register (LR0_REGNUM + j + i));
820       fprintf (eb_stream, "%x\n", read_register (LR0_REGNUM + j + 15));
821       expect_prompt ();
822     }
823
824   fprintf (eb_stream, "s sr133,%x,%x,%x\n", read_register (BP_REGNUM),
825            read_register (FC_REGNUM), read_register (CR_REGNUM));
826   expect_prompt ();
827   fprintf (eb_stream, "s sr131,%x\n", read_register (Q_REGNUM));
828   expect_prompt ();
829   fprintf (eb_stream, "s sr0,");
830   for (i = 0; i < 11; ++i)
831     fprintf (eb_stream, "%x,", read_register (VAB_REGNUM + i));
832   fprintf (eb_stream, "%x\n", read_register (VAB_REGNUM + 11));
833   expect_prompt ();
834 }
835
836 /* Store register REGNO, or all if REGNO == 0.
837    Return errno value.  */
838 void
839 eb_store_register (int regno)
840 {
841   if (regno == -1)
842     eb_store_registers ();
843   else
844     {
845       char *name = get_reg_name (regno);
846       fprintf (eb_stream, "s %s,%x\n", name, read_register (regno));
847       /* Setting GR1 changes the numbers of all the locals, so
848          invalidate the register cache.  Do this *after* calling
849          read_register, because we want read_register to return the
850          value that write_register has just stuffed into the registers
851          array, not the value of the register fetched from the
852          inferior.  */
853       if (regno == GR1_REGNUM)
854         registers_changed ();
855       expect_prompt ();
856     }
857 }
858
859 /* Get ready to modify the registers array.  On machines which store
860    individual registers, this doesn't need to do anything.  On machines
861    which store all the registers in one fell swoop, this makes sure
862    that registers contains all the registers from the program being
863    debugged.  */
864
865 void
866 eb_prepare_to_store (void)
867 {
868   /* Do nothing, since we can store individual regs */
869 }
870
871 /* Transfer LEN bytes between GDB address MYADDR and target address
872    MEMADDR.  If WRITE is non-zero, transfer them to the target,
873    otherwise transfer them from the target.  TARGET is unused.
874
875    Returns the number of bytes transferred. */
876
877 int
878 eb_xfer_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
879                          struct mem_attrib *attrib ATTRIBUTE_UNUSED,
880                          struct target_ops *target ATTRIBUTE_UNUSED)
881 {
882   if (write)
883     return eb_write_inferior_memory (memaddr, myaddr, len);
884   else
885     return eb_read_inferior_memory (memaddr, myaddr, len);
886 }
887
888 void
889 eb_files_info (void)
890 {
891   printf ("\tAttached to %s at %d baud and running program %s.\n",
892           dev_name, baudrate, prog_name);
893 }
894
895 /* Copy LEN bytes of data from debugger memory at MYADDR
896    to inferior's memory at MEMADDR.  Returns length moved.  */
897 int
898 eb_write_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len)
899 {
900   int i;
901
902   for (i = 0; i < len; i++)
903     {
904       if ((i % 16) == 0)
905         fprintf (eb_stream, "sb %x,", memaddr + i);
906       if ((i % 16) == 15 || i == len - 1)
907         {
908           fprintf (eb_stream, "%x\n", ((unsigned char *) myaddr)[i]);
909           expect_prompt ();
910         }
911       else
912         fprintf (eb_stream, "%x,", ((unsigned char *) myaddr)[i]);
913     }
914   return len;
915 }
916
917 /* Read LEN bytes from inferior memory at MEMADDR.  Put the result
918    at debugger address MYADDR.  Returns length moved.  */
919 int
920 eb_read_inferior_memory (CORE_ADDR memaddr, char *myaddr, int len)
921 {
922   int i;
923
924   /* Number of bytes read so far.  */
925   int count;
926
927   /* Starting address of this pass.  */
928   unsigned long startaddr;
929
930   /* Number of bytes to read in this pass.  */
931   int len_this_pass;
932
933   /* Note that this code works correctly if startaddr is just less
934      than UINT_MAX (well, really CORE_ADDR_MAX if there was such a
935      thing).  That is, something like
936      eb_read_bytes (CORE_ADDR_MAX - 4, foo, 4)
937      works--it never adds len to memaddr and gets 0.  */
938   /* However, something like
939      eb_read_bytes (CORE_ADDR_MAX - 3, foo, 4)
940      doesn't need to work.  Detect it and give up if there's an attempt
941      to do that.  */
942   if (((memaddr - 1) + len) < memaddr)
943     {
944       errno = EIO;
945       return 0;
946     }
947
948   startaddr = memaddr;
949   count = 0;
950   while (count < len)
951     {
952       len_this_pass = 16;
953       if ((startaddr % 16) != 0)
954         len_this_pass -= startaddr % 16;
955       if (len_this_pass > (len - count))
956         len_this_pass = (len - count);
957
958       fprintf (eb_stream, "db %x,%x\n", startaddr,
959                (startaddr - 1) + len_this_pass);
960       expect ("\n");
961
962       /* Look for 8 hex digits.  */
963       i = 0;
964       while (1)
965         {
966           if (isxdigit (readchar ()))
967             ++i;
968           else
969             {
970               expect_prompt ();
971               error ("Hex digit expected from remote system.");
972             }
973           if (i >= 8)
974             break;
975         }
976
977       expect ("  ");
978
979       for (i = 0; i < len_this_pass; i++)
980         get_hex_byte (&myaddr[count++]);
981
982       expect_prompt ();
983
984       startaddr += len_this_pass;
985     }
986   return len;
987 }
988
989 static void
990 eb_kill (char *args, int from_tty)
991 {
992   return;                       /* Ignore attempts to kill target system */
993 }
994
995 /* Clean up when a program exits.
996
997    The program actually lives on in the remote processor's RAM, and may be
998    run again without a download.  Don't leave it full of breakpoint
999    instructions.  */
1000
1001 void
1002 eb_mourn_inferior (void)
1003 {
1004   remove_breakpoints ();
1005   unpush_target (&eb_ops);
1006   generic_mourn_inferior ();    /* Do all the proper things now */
1007 }
1008 /* Define the target subroutine names */
1009
1010 struct target_ops eb_ops;
1011
1012 static void
1013 init_eb_ops (void)
1014 {
1015   eb_ops.to_shortname = "amd-eb";
1016   eb_ops.to_longname = "Remote serial AMD EBMON target";
1017   eb_ops.to_doc = "Use a remote computer running EBMON connected by a serial line.\n\
1018 Arguments are the name of the device for the serial line,\n\
1019 the speed to connect at in bits per second, and the filename of the\n\
1020 executable as it exists on the remote computer.  For example,\n\
1021 target amd-eb /dev/ttya 9600 demo",
1022     eb_ops.to_open = eb_open;
1023   eb_ops.to_close = eb_close;
1024   eb_ops.to_attach = 0;
1025   eb_ops.to_post_attach = NULL;
1026   eb_ops.to_require_attach = NULL;
1027   eb_ops.to_detach = eb_detach;
1028   eb_ops.to_require_detach = NULL;
1029   eb_ops.to_resume = eb_resume;
1030   eb_ops.to_wait = eb_wait;
1031   eb_ops.to_post_wait = NULL;
1032   eb_ops.to_fetch_registers = eb_fetch_register;
1033   eb_ops.to_store_registers = eb_store_register;
1034   eb_ops.to_prepare_to_store = eb_prepare_to_store;
1035   eb_ops.to_xfer_memory = eb_xfer_inferior_memory;
1036   eb_ops.to_files_info = eb_files_info;
1037   eb_ops.to_insert_breakpoint = 0;
1038   eb_ops.to_remove_breakpoint = 0;      /* Breakpoints */
1039   eb_ops.to_terminal_init = 0;
1040   eb_ops.to_terminal_inferior = 0;
1041   eb_ops.to_terminal_ours_for_output = 0;
1042   eb_ops.to_terminal_ours = 0;
1043   eb_ops.to_terminal_info = 0;  /* Terminal handling */
1044   eb_ops.to_kill = eb_kill;
1045   eb_ops.to_load = generic_load;        /* load */
1046   eb_ops.to_lookup_symbol = 0;  /* lookup_symbol */
1047   eb_ops.to_create_inferior = eb_create_inferior;
1048   eb_ops.to_post_startup_inferior = NULL;
1049   eb_ops.to_acknowledge_created_inferior = NULL;
1050   eb_ops.to_clone_and_follow_inferior = NULL;
1051   eb_ops.to_post_follow_inferior_by_clone = NULL;
1052   eb_ops.to_insert_fork_catchpoint = NULL;
1053   eb_ops.to_remove_fork_catchpoint = NULL;
1054   eb_ops.to_insert_vfork_catchpoint = NULL;
1055   eb_ops.to_remove_vfork_catchpoint = NULL;
1056   eb_ops.to_has_forked = NULL;
1057   eb_ops.to_has_vforked = NULL;
1058   eb_ops.to_can_follow_vfork_prior_to_exec = NULL;
1059   eb_ops.to_post_follow_vfork = NULL;
1060   eb_ops.to_insert_exec_catchpoint = NULL;
1061   eb_ops.to_remove_exec_catchpoint = NULL;
1062   eb_ops.to_has_execd = NULL;
1063   eb_ops.to_reported_exec_events_per_exec_call = NULL;
1064   eb_ops.to_has_exited = NULL;
1065   eb_ops.to_mourn_inferior = eb_mourn_inferior;
1066   eb_ops.to_can_run = 0;        /* can_run */
1067   eb_ops.to_notice_signals = 0; /* notice_signals */
1068   eb_ops.to_thread_alive = 0;   /* thread-alive */
1069   eb_ops.to_stop = 0;           /* to_stop */
1070   eb_ops.to_pid_to_exec_file = NULL;
1071   eb_ops.to_core_file_to_sym_file = NULL;
1072   eb_ops.to_stratum = process_stratum;
1073   eb_ops.DONT_USE = 0;          /* next */
1074   eb_ops.to_has_all_memory = 1;
1075   eb_ops.to_has_memory = 1;
1076   eb_ops.to_has_stack = 1;
1077   eb_ops.to_has_registers = 1;
1078   eb_ops.to_has_execution = 1;  /* all mem, mem, stack, regs, exec */
1079   eb_ops.to_sections = 0;       /* sections */
1080   eb_ops.to_sections_end = 0;   /* sections end */
1081   eb_ops.to_magic = OPS_MAGIC;  /* Always the last thing */
1082 };
1083
1084 void
1085 _initialize_remote_eb (void)
1086 {
1087   init_eb_ops ();
1088   add_target (&eb_ops);
1089 }