summaryrefslogtreecommitdiff
path: root/gdb/remote-hms.c
blob: 3ca8455d979243c7811800b4f1164d1ea55f425f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
/* Remote debugging interface for Hitachi HMS Monitor Version 1.0
   Copyright 1995 Free Software Foundation, Inc.
   Contributed by Cygnus Support.  Written by Steve Chamberlain
   (sac@cygnus.com).

   This file is part of GDB.

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */

#include "defs.h"
#include "gdbcore.h"
#include "target.h"
#include "monitor.h"
#include "serial.h"

static void hms_open PARAMS ((char *args, int from_tty));
static void
hms_supply_register (regname, regnamelen, val, vallen)
     char *regname;
     int regnamelen;
     char *val;
     int vallen;
{
  int regno;

  if (regnamelen != 2)
    return;
  if (regname[0] != 'P')
    return;
  /* We scan off all the registers in one go */

  val = monitor_supply_register (PC_REGNUM, val);
  /* Skip the ccr string */
  while (*val != '=' && *val)
    val++;

  val = monitor_supply_register (CCR_REGNUM, val + 1);

  /* Skip up to rest of regs */
  while (*val != '=' && *val)
    val++;

  for (regno = 0; regno < 7; regno++)
    {
      val = monitor_supply_register (regno, val + 1);
    }
}

/*
 * This array of registers needs to match the indexes used by GDB. The
 * whole reason this exists is because the various ROM monitors use
 * different names than GDB does, and don't support all the
 * registers either. So, typing "info reg sp" becomes a "r30".
 */

static char *hms_regnames[NUM_REGS] =
{
  "R0", "R1", "R2", "R3", "R4", "R5", "R6", "R7", "CCR", "PC"
};

/*
 * Define the monitor command strings. Since these are passed directly
 * through to a printf style function, we need can include formatting
 * strings. We also need a CR or LF on the end.
 */

static struct target_ops hms_ops;

static char *hms_inits[] =
{"\003",			/* Resets the prompt, and clears repeated cmds */
 NULL};

static struct monitor_ops hms_cmds ;

static void 
init_hms_cmds(void)
{
  hms_cmds.flags =   MO_CLR_BREAK_USES_ADDR | MO_FILL_USES_ADDR | MO_GETMEM_NEEDS_RANGE;
  hms_cmds.init =   hms_inits;		/* Init strings */
  hms_cmds.cont =   "g\r";		/* continue command */
  hms_cmds.step =   "s\r";		/* single step */
  hms_cmds.stop =   "\003";		/* ^C interrupts the program */
  hms_cmds.set_break =   "b %x\r";	/* set a breakpoint */
  hms_cmds.clr_break =   "b - %x\r";	/* clear a breakpoint */
  hms_cmds.clr_all_break =   "b -\r";	/* clear all breakpoints */
  hms_cmds.fill =   "f %x %x %x\r";	/* fill (start end val) */
  hms_cmds.setmem.cmdb =     "m.b %x=%x\r";	/* setmem.cmdb (addr, value) */
  hms_cmds.setmem.cmdw =     "m.w %x=%x\r";	/* setmem.cmdw (addr, value) */
  hms_cmds.setmem.cmdl =     NULL;	/* setmem.cmdl (addr, value) */
  hms_cmds.setmem.cmdll =     NULL;	/* setmem.cmdll (addr, value) */
  hms_cmds.setmem.resp_delim =     NULL;/* setreg.resp_delim */
  hms_cmds.setmem.term =     NULL;	/* setreg.term */
  hms_cmds.setmem.term_cmd =     NULL;	/* setreg.term_cmd */
  hms_cmds.getmem.cmdb =     "m.b %x %x\r";	/* getmem.cmdb (addr, addr) */
  hms_cmds.getmem.cmdw =     "m.w %x %x\r";	/* getmem.cmdw (addr, addr) */
  hms_cmds.getmem.cmdl =     NULL;	/* getmem.cmdl (addr, addr) */
  hms_cmds.getmem.cmdll =     NULL;	/* getmem.cmdll (addr, addr) */
  hms_cmds.getmem.resp_delim =     ": ";/* getmem.resp_delim */
  hms_cmds.getmem.term =     ">";	/* getmem.term */
  hms_cmds.getmem.term_cmd =     "\003";/* getmem.term_cmd */
  hms_cmds.setreg.cmd =     "r %s=%x\r";/* setreg.cmd (name, value) */
  hms_cmds.setreg.resp_delim =     NULL;/* setreg.resp_delim */
  hms_cmds.setreg.term =     NULL;	/* setreg.term */
  hms_cmds.setreg.term_cmd =     NULL;	/* setreg.term_cmd */
  hms_cmds.getreg.cmd =     "r %s\r";	/* getreg.cmd (name) */
  hms_cmds.getreg.resp_delim =     " (";/* getreg.resp_delim */
  hms_cmds.getreg.term =     ":";	/* getreg.term */
  hms_cmds.getreg.term_cmd =     "\003";/* getreg.term_cmd */
  hms_cmds.dump_registers =   "r\r";	/* dump_registers */
  hms_cmds.register_pattern =   "\\(\\w+\\)=\\([0-9a-fA-F]+\\)";	/* register_pattern */
  hms_cmds.supply_register =   hms_supply_register;	/* supply_register */
  hms_cmds.load_routine =   NULL;	/* load_routine (defaults to SRECs) */
  hms_cmds.load =   "tl\r";		/* download command */
  hms_cmds.loadresp =   NULL;		/* load response */
  hms_cmds.prompt =   ">";		/* monitor command prompt */
  hms_cmds.line_term =   "\r";		/* end-of-command delimitor */
  hms_cmds.cmd_end =   NULL;		/* optional command terminator */
  hms_cmds.target =   &hms_ops;		/* target operations */
  hms_cmds.stopbits =   SERIAL_1_STOPBITS;/* number of stop bits */
  hms_cmds.regnames =   hms_regnames;	/* registers names */
  hms_cmds.magic =   MONITOR_OPS_MAGIC;	/* magic */
} /* init_hms-cmds */

static void
hms_open (args, from_tty)
     char *args;
     int from_tty;
{
  monitor_open (args, &hms_cmds, from_tty);
}

int write_dos_tick_delay;

void
_initialize_remote_hms ()
{
  init_hms_cmds() ;
  init_monitor_ops (&hms_ops);

  hms_ops.to_shortname = "hms";
  hms_ops.to_longname = "Hitachi Microsystems H8/300 debug monitor";
  hms_ops.to_doc = "Debug via the HMS monitor.\n\
Specify the serial device it is connected to (e.g. /dev/ttya).";
  hms_ops.to_open = hms_open;
  /* By trial and error I've found that this delay doesn't break things */
  write_dos_tick_delay = 1;
  add_target (&hms_ops);
}

#if 0
/* This is kept here because we used to support the H8/500 in this module,
   and I haven't done the H8/500 yet */
#include "defs.h"
#include "inferior.h"
#include "wait.h"
#include "value.h"
#include "gdb_string.h"
#include <ctype.h>
#include <fcntl.h>
#include <signal.h>
#include <setjmp.h>
#include <errno.h>
#include "terminal.h"
#include "target.h"
#include "gdbcore.h"
#include "serial.h"
#include "remote-utils.h"
/* External data declarations */
extern int stop_soon_quietly;	/* for wait_for_inferior */

/* Forward data declarations */
extern struct target_ops hms_ops;	/* Forward declaration */

/* Forward function declarations */
static void hms_fetch_registers ();
static int hms_store_registers ();
static void hms_close ();
static int hms_clear_breakpoints ();

extern struct target_ops hms_ops;
static void hms_drain ();
static void add_commands ();
static void remove_commands ();

static int quiet = 1;		/* FIXME - can be removed after Dec '94 */



/***********************************************************************
 * I/O stuff stolen from remote-eb.c
 ***********************************************************************/

static int timeout = 2;

static const char *dev_name;

/* Descriptor for I/O to remote machine.  Initialize it to -1 so that
   hms_open knows that we don't have a file open when the program
   starts.  */

static int before = 0xdead;
static int is_open = 0;
static int after = 0xdead;
int
check_open ()
{
  if (before != 0xdead
      || after != 0xdead)
    printf ("OUTCH! \n");
  if (!is_open)
    {
      error ("remote device not open");
    }
}

#define ON	1
#define OFF	0

/* Read a character from the remote system, doing all the fancy
   timeout stuff.  */
static int
readchar ()
{
  int buf;

  buf = SERIAL_READCHAR (desc, timeout);

  if (buf == SERIAL_TIMEOUT)
    {
      hms_write (".\r\n", 3);
      error ("Timeout reading from remote system.");
    }
  if (buf == SERIAL_ERROR)
    {
      error ("Serial port error!");
    }

  if (!quiet || remote_debug)
    printf_unfiltered ("%c", buf);

  return buf & 0x7f;
}

static void
flush ()
{
  while (1)
    {
      int b = SERIAL_READCHAR (desc, 0);
      if (b == SERIAL_TIMEOUT)
	return;
    }
}

static int
readchar_nofail ()
{
  int buf;

  buf = SERIAL_READCHAR (desc, timeout);
  if (buf == SERIAL_TIMEOUT)
    buf = 0;
  if (!quiet || remote_debug)
    printf_unfiltered ("%c", buf);

  return buf & 0x7f;

}

/* Keep discarding input from the remote system, until STRING is found.
   Let the user break out immediately.  */
static void
expect (string)
     char *string;
{
  char *p = string;
  char c;
  immediate_quit = 1;
  while (1)
    {
      c = readchar ();
      if (c == *p)
	{
	  p++;
	  if (*p == '\0')
	    {
	      immediate_quit = 0;
	      return;
	    }
	}
      else
	{
	  p = string;
	  if (c == *p)
	    p++;
	}
    }
}

/* Keep discarding input until we see the hms prompt.

   The convention for dealing with the prompt is that you
   o give your command
   o *then* wait for the prompt.

   Thus the last thing that a procedure does with the serial line
   will be an expect_prompt().  Exception:  hms_resume does not
   wait for the prompt, because the terminal is being handed over
   to the inferior.  However, the next thing which happens after that
   is a hms_wait which does wait for the prompt.
   Note that this includes abnormal exit, e.g. error().  This is
   necessary to prevent getting into states from which we can't
   recover.  */
static void
expect_prompt ()
{
  expect ("HMS>");
}

/* Get a hex digit from the remote system & return its value.
   If ignore_space is nonzero, ignore spaces (not newline, tab, etc).  */
static int
get_hex_digit (ignore_space)
     int ignore_space;
{
  int ch;

  while (1)
    {
      ch = readchar ();
      if (ch >= '0' && ch <= '9')
	return ch - '0';
      else if (ch >= 'A' && ch <= 'F')
	return ch - 'A' + 10;
      else if (ch >= 'a' && ch <= 'f')
	return ch - 'a' + 10;
      else if (ch == ' ' && ignore_space)
	;
      else
	{
	  expect_prompt ();
	  error ("Invalid hex digit from remote system.");
	}
    }
}

/* Get a byte from hms_desc and put it in *BYT.  Accept any number
   leading spaces.  */
static void
get_hex_byte (byt)
     char *byt;
{
  int val;

  val = get_hex_digit (1) << 4;
  val |= get_hex_digit (0);
  *byt = val;
}

/* Read a 32-bit hex word from the hms, preceded by a space  */
static long
get_hex_word ()
{
  long val;
  int j;

  val = 0;
  for (j = 0; j < 8; j++)
    val = (val << 4) + get_hex_digit (j == 0);
  return val;
}

/* Called when SIGALRM signal sent due to alarm() timeout.  */

/* Number of SIGTRAPs we need to simulate.  That is, the next
   NEED_ARTIFICIAL_TRAP calls to hms_wait should just return
   SIGTRAP without actually waiting for anything.  */

static int need_artificial_trap = 0;

void
hms_kill (arg, from_tty)
     char *arg;
     int from_tty;
{

}

/* This is called not only when we first attach, but also when the
   user types "run" after having attached.  */
void
hms_create_inferior (execfile, args, env)
     char *execfile;
     char *args;
     char **env;
{
  int entry_pt;
  char buffer[100];

  if (args && *args)
    error ("Can't pass arguments to remote hms process.");

  if (execfile == 0 || exec_bfd == 0)
    error ("No executable file specified");

  entry_pt = (int) bfd_get_start_address (exec_bfd);
  check_open ();

  hms_kill (NULL, NULL);
  hms_clear_breakpoints ();
  init_wait_for_inferior ();
  hms_write_cr ("");
  expect_prompt ();

  insert_breakpoints ();	/* Needed to get correct instruction in cache */
  proceed (entry_pt, TARGET_SIGNAL_DEFAULT, 0);
}

/* Open a connection to a remote debugger.
   NAME is the filename used for communication, then a space,
   then the baud rate.
 */

static char *
find_end_of_word (s)
     char *s;
{
  while (*s && !isspace (*s))
    s++;
  return s;
}

static char *
get_word (p)
     char **p;
{
  char *s = *p;
  char *word;
  char *copy;
  size_t len;

  while (isspace (*s))
    s++;

  word = s;

  len = 0;

  while (*s && !isspace (*s))
    {
      s++;
      len++;

    }
  copy = xmalloc (len + 1);
  memcpy (copy, word, len);
  copy[len] = 0;
  *p = s;
  return copy;
}

static int baudrate = 9600;

static int
is_baudrate_right ()
{
  int ok;

  /* Put this port into NORMAL mode, send the 'normal' character */

  hms_write ("\001", 1);	/* Control A */
  hms_write ("\r\n", 2);	/* Cr */

  while (1)
    {
      ok = SERIAL_READCHAR (desc, timeout);
      if (ok < 0)
	break;
    }

  hms_write ("r", 1);

  if (readchar_nofail () == 'r')
    return 1;

  /* Not the right baudrate, or the board's not on */
  return 0;
}
static void
set_rate ()
{
  if (!SERIAL_SETBAUDRATE (desc, baudrate))
    error ("Can't set baudrate");
}



/* Close out all files and local state before this target loses control. */

static void
hms_close (quitting)
     int quitting;
{
  /* Clear any break points */
  remove_commands ();
  hms_clear_breakpoints ();
  sleep (1);			/* Let any output make it all the way back */
  if (is_open)
    {
      SERIAL_WRITE (desc, "R\r\n", 3);
      SERIAL_CLOSE (desc);
    }
  is_open = 0;
}

/* Terminate the open connection to the remote debugger.  Use this
   when you want to detach and do something else with your gdb.  */ void
hms_detach (args, from_tty)
     char *args;
     int from_tty;
{
  if (is_open)
    {
      hms_clear_breakpoints ();
    }

  pop_target ();		/* calls hms_close to do the real work
				 */
  if (from_tty)
    printf_filtered ("Ending remote %s debugging\n",
		     target_shortname);
}

/* Tell the remote machine to resume.  */

void
hms_resume (pid, step, sig)
     int pid, step;
     enum target_signal
       sig;
{
  if (step)
    {
      hms_write_cr ("s");
      expect ("Step>");

      /* Force the next hms_wait to return a trap.  Not doing anything
         about I/O from the target means that the user has to type "continue"
         to see any.  FIXME, this should be fixed.  */
      need_artificial_trap = 1;
    }
  else
    {
      hms_write_cr ("g");
      expect ("g");
    }
}

/* Wait until the remote machine stops, then return, storing status in
   STATUS just as `wait' would.  */

int
hms_wait (pid, status)
     int pid;
     struct target_waitstatus *status;
{
  /* Strings to look for.  '?' means match any single character.  Note
     that with the algorithm we use, the initial character of the string
     cannot recur in the string, or we will not find some cases of the
     string in the input.  */

  static char bpt[] = "At breakpoint:";

  /* It would be tempting to look for "\n[__exit + 0x8]\n" but that
     requires loading symbols with "yc i" and even if we did do that we
     don't know that the file has symbols.  */
  static char exitmsg[] = "HMS>";
  char *bp = bpt;
  char *ep = exitmsg;

  /* Large enough for either sizeof (bpt) or sizeof (exitmsg) chars.
   */
  char swallowed[50];

  /* Current position in swallowed.  */
  char *swallowed_p = swallowed;

  int ch;
  int ch_handled;
  int old_timeout = timeout;
  int
    old_immediate_quit = immediate_quit;
  int swallowed_cr = 0;

  status->kind = TARGET_WAITKIND_EXITED;
  status->value.integer = 0;

  if (need_artificial_trap != 0)
    {
      status->kind =
	TARGET_WAITKIND_STOPPED;
      status->value.sig = TARGET_SIGNAL_TRAP;
      need_artificial_trap--;
      return 0;
    }

  timeout = 5;			/* Don't time out for a while - user program is running.
				 */
  immediate_quit = 1;		/* Helps ability to QUIT */
  while (1)
    {
      QUIT;			/* Let user quit and leave process running */
      ch_handled = 0;
      ch = readchar ();
      if (ch == *bp)
	{
	  bp++;
	  if (*bp == '\0')
	    break;
	  ch_handled = 1;

	  *swallowed_p++ = ch;
	}
      else
	{
	  bp = bpt;
	}
      if
	(ch == *ep || *ep == '?')
	{
	  ep++;
	  if (*ep == '\0')
	    break;

	  if (!ch_handled)
	    *swallowed_p++ = ch;
	  ch_handled =
	    1;
	}
      else
	{
	  ep = exitmsg;
	}

      if (!ch_handled)
	{
	  char *p;

	  /* Print out any characters which have been swallowed.  */
	  for (p = swallowed; p < swallowed_p; ++p)
	    putchar_unfiltered (*p);
	  swallowed_p = swallowed;

	  if ((ch != '\r' && ch != '\n') || swallowed_cr > 10)
	    {
	      putchar_unfiltered (ch);
	      swallowed_cr = 10;
	    }
	  swallowed_cr++;

	}
    }
  if (*bp == '\0')
    {
      status->kind = TARGET_WAITKIND_STOPPED;
      status->value.sig = TARGET_SIGNAL_TRAP;
      expect_prompt ();
    }
  else
    {
      status->kind = TARGET_WAITKIND_EXITED;
      status->value.integer =
	TARGET_SIGNAL_STOP;
    }

  timeout = old_timeout;
  immediate_quit = old_immediate_quit;
  return
    0;
}

/* Return the name of register number REGNO in the form input and
   output by hms.

   Returns a pointer to a static buffer containing the answer.  */
static char *
get_reg_name (regno)
     int regno;
{
  static char *rn[] =
  REGISTER_NAMES;

  return rn[regno];
}

/* Read the remote registers.  */

static int
gethex (length, start, ok)
     unsigned int length;
     char *start;
     int *ok;
{
  int result = 0;

  while (length--)
    {
      result <<= 4;
      if (*start >= 'a' && *start <= 'f')
	{
	  result += *start - 'a' + 10;
	}
      else if (*start >= 'A' &&
	       *start <= 'F')
	{
	  result += *start - 'A' + 10;
	}
      else if
	(*start >= '0' && *start <= '9')
	{
	  result += *start - '0';
	}
      else
	*ok = 0;
      start++;

    }
  return result;
}
static int
timed_read (buf, n, timeout)
     char
      *buf;

{
  int i;
  char c;

  i = 0;
  while (i < n)
    {
      c = readchar ();

      if (c == 0)
	return i;
      buf[i] = c;
      i++;

    }
  return i;
}

hms_write (a, l)
     char *a;
{
  int i;

  SERIAL_WRITE (desc, a, l);

  if (!quiet || remote_debug)
    {
      printf_unfiltered ("<");
      for (i = 0; i < l; i++)
	{
	  printf_unfiltered ("%c", a[i]);
	}
      printf_unfiltered (">");
    }
}

hms_write_cr (s)
     char *s;
{
  hms_write (s, strlen (s));
  hms_write ("\r\n", 2);
}

#ifdef GDB_TARGET_IS_H8500

/* H8/500 monitor reg dump looks like:

   HMS>r
   PC:8000 SR:070C .7NZ.. CP:00 DP:00 EP:00 TP:00 BR:00
   R0-R7: FF5A 0001 F4FE F500 0000 F528 F528 F4EE
   HMS>


 */

supply_val (n, size, ptr, segptr)
     int n;
     int size;
     char *ptr;
     char *segptr;
{
  int ok;
  char raw[4];
  switch (size)
    {
    case 2:
      raw[0] = gethex (2, ptr, &ok);
      raw[1] = gethex (2, ptr + 2, &ok);
      supply_register (n, raw);
      break;
    case 1:
      raw[0] = gethex (2, ptr, &ok);
      supply_register (n, raw);
      break;
    case 4:
      {
	int v = gethex (4, ptr, &ok);
	v |= gethex (2, segptr, &ok) << 16;
	raw[0] = 0;
	raw[1] = (v >> 16) & 0xff;
	raw[2] = (v >> 8) & 0xff;
	raw[3] = (v >> 0) & 0xff;
	supply_register (n, raw);
      }
    }

}
static void
hms_fetch_register (dummy)
     int dummy;
{
#define REGREPLY_SIZE 108
  char linebuf[REGREPLY_SIZE + 1];
  int i;
  int s;
  int gottok;

  LONGEST reg[NUM_REGS];
  check_open ();

  do
    {

      hms_write_cr ("r");
      expect ("r");
      s = timed_read (linebuf + 1, REGREPLY_SIZE, 1);

      linebuf[REGREPLY_SIZE] = 0;
      gottok = 0;
      if (linebuf[3] == 'P' &&
	  linebuf[4] == 'C' &&
	  linebuf[5] == ':' &&
	  linebuf[105] == 'H' &&
	  linebuf[106] == 'M' &&
	  linebuf[107] == 'S')
	{

	  /*
	     012
	     r**
	     -------1---------2---------3---------4---------5-----
	     345678901234567890123456789012345678901234567890123456
	     PC:8000 SR:070C .7NZ.. CP:00 DP:00 EP:00 TP:00 BR:00**
	     ---6---------7---------8---------9--------10----
	     789012345678901234567890123456789012345678901234
	     R0-R7: FF5A 0001 F4FE F500 0000 F528 F528 F4EE**

	     56789
	     HMS>
	   */
	  gottok = 1;


	  supply_val (PC_REGNUM, 4, linebuf + 6, linebuf + 29);

	  supply_val (CCR_REGNUM, 2, linebuf + 14);
	  supply_val (SEG_C_REGNUM, 1, linebuf + 29);
	  supply_val (SEG_D_REGNUM, 1, linebuf + 35);
	  supply_val (SEG_E_REGNUM, 1, linebuf + 41);
	  supply_val (SEG_T_REGNUM, 1, linebuf + 47);
	  for (i = 0; i < 8; i++)
	    {
	      static int sr[8] =
	      {35, 35, 35, 35,
	       41, 41, 47, 47};

	      char raw[4];
	      char *src = linebuf + 64 + 5 * i;
	      char *segsrc = linebuf + sr[i];
	      supply_val (R0_REGNUM + i, 2, src);
	      supply_val (PR0_REGNUM + i, 4, src, segsrc);
	    }
	}
      if (!gottok)
	{
	  hms_write_cr ("");
	  expect ("HMS>");
	}
    }
  while (!gottok);
}
#endif

#ifdef GDB_TARGET_IS_H8300
static void
hms_fetch_register (dummy)
     int dummy;
{
#define REGREPLY_SIZE 79
  char linebuf[REGREPLY_SIZE + 1];
  int i;
  int s;
  int gottok;

  ULONGEST reg[NUM_REGS];

  check_open ();

  do
    {
      hms_write_cr ("r");

      s = timed_read (linebuf, 1, 1);

      while (linebuf[0] != 'r')
	s = timed_read (linebuf, 1, 1);

      s = timed_read (linebuf + 1, REGREPLY_SIZE - 1, 1);

      linebuf[REGREPLY_SIZE] = 0;
      gottok = 0;
      if (linebuf[0] == 'r' &&
	  linebuf[3] == 'P' &&
	  linebuf[4] == 'C' &&
	  linebuf[5] == '=' &&
	  linebuf[75] == 'H' &&
	  linebuf[76] == 'M' &&
	  linebuf[77] == 'S')
	{
	  /*
	     PC=XXXX CCR=XX:XXXXXXXX R0-R7= XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX
	     5436789012345678901234567890123456789012345678901234567890123456789012
	     0      1         2         3         4         5         6
	   */
	  gottok = 1;

	  reg[PC_REGNUM] = gethex (4, linebuf + 6, &gottok);
	  reg[CCR_REGNUM] = gethex (2, linebuf + 15, &gottok);
	  for (i = 0; i < 8; i++)
	    {
	      reg[i] = gethex (4, linebuf + 34 + 5 * i, &gottok);
	    }
	}
    }
  while (!gottok);
  for (i = 0; i < NUM_REGS; i++)
    {
      char swapped[2];

      swapped[1] = reg[i];
      swapped[0] = (reg[i]) >> 8;

      supply_register (i, swapped);
    }
}
#endif
/* Store register REGNO, or all if REGNO == -1.
   Return errno value.  */
static void
hms_store_register (regno)
     int regno;
{
  if (regno == -1)
    {
      for (regno = 0; regno < NUM_REGS; regno++)
	{
	  hms_store_register (regno);
	}
    }
  else
    {
      char *name = get_reg_name (regno);
      char buffer[100];
      /* Some regs dont really exist */
      if (!(name[0] == 'p' && name[1] == 'r')
	  && !(name[0] == 'c' && name[1] == 'y')
	  && !(name[0] == 't' && name[1] == 'i')
	  && !(name[0] == 'i' && name[1] == 'n'))
	{
	  sprintf (buffer, "r %s=%x", name, read_register (regno));
	  hms_write_cr (buffer);
	  expect_prompt ();
	}
    }
}


/* Get ready to modify the registers array.  On machines which store
   individual registers, this doesn't need to do anything.  On machines
   which store all the registers in one fell swoop, this makes sure
   that registers contains all the registers from the program being
   debugged.  */

void
hms_prepare_to_store ()
{
  /* Do nothing, since we can store individual regs */
}

static CORE_ADDR
translate_addr (addr)
     CORE_ADDR addr;
{

  return (addr);

}


int
hms_xfer_inferior_memory (memaddr, myaddr, len, write, target)
     CORE_ADDR memaddr;
     char *myaddr;
     int len;
     int write;
     struct target_ops *target;	/* ignored */
{

  return len;
}

int
hms_write_inferior_memory (memaddr, myaddr, len)
     CORE_ADDR memaddr;
     unsigned char *myaddr;
     int len;
{
  bfd_vma addr;
  int done;
  int todo;
  char buffer[100];
  done = 0;
  hms_write_cr (".");
  expect_prompt ();
  while (done < len)
    {
      char *ptr = buffer;
      int thisgo;
      int idx;

      thisgo = len - done;
      if (thisgo > 20)
	thisgo = 20;

      sprintf (ptr, "M.B %4x =", memaddr + done);
      ptr += 10;
      for (idx = 0; idx < thisgo; idx++)
	{
	  sprintf (ptr, "%2x ", myaddr[idx + done]);
	  ptr += 3;
	}
      hms_write_cr (buffer);
      expect_prompt ();
      done += thisgo;
    }
}

void
hms_files_info ()
{
  char *file = "nothing";

  if (exec_bfd)
    file = bfd_get_filename (exec_bfd);

  if (exec_bfd)
#ifdef __GO32__
    printf_filtered ("\tAttached to DOS asynctsr and running program %s\n", file);
#else
    printf_filtered ("\tAttached to %s at %d baud and running program %s\n", dev_name, baudrate, file);
#endif
  printf_filtered ("\ton an H8/300 processor.\n");
}

/* Copy LEN bytes of data from debugger memory at MYADDR
   to inferior's memory at MEMADDR.  Returns errno value.
   * sb/sh instructions don't work on unaligned addresses, when TU=1.
 */

/* Read LEN bytes from inferior memory at MEMADDR.  Put the result
   at debugger address MYADDR.  Returns errno value.  */
int
hms_read_inferior_memory (memaddr, myaddr, len)
     CORE_ADDR memaddr;
     char *myaddr;
     int len;
{
  /* Align to nearest low 16 bits */
  int i;

  CORE_ADDR start = memaddr;
  CORE_ADDR end = memaddr + len - 1;

  int ok = 1;

  /*
     AAAA: XXXX XXXX XXXX XXXX XXXX XXXX XXXX XXXX '................'
     012345678901234567890123456789012345678901234567890123456789012345
     0         1         2         3         4         5         6
   */
  char buffer[66];

  if (memaddr & 0xf)
    abort ();
  if (len != 16)
    abort ();

  sprintf (buffer, "m %4x %4x", start & 0xffff, end & 0xffff);

  flush ();
  hms_write_cr (buffer);
  /* drop the echo and newline */
  for (i = 0; i < 13; i++)
    readchar ();

  /* Grab the lines as they come out and fill the area */
  /* Skip over cr */
  while (1)
    {
      int p;
      int i;
      int addr;
      size_t idx;

      char byte[16];

      buffer[0] = readchar ();
      while (buffer[0] == '\r'
	     || buffer[0] == '\n')
	buffer[0] = readchar ();

      if (buffer[0] == 'M')
	break;

      for (i = 1; i < 50; i++)
	{
	  buffer[i] = readchar ();
	}
      /* sometimes we loose characters in the ascii representation of the 
         data.  I don't know where.  So just scan for the end of line */
      i = readchar ();
      while (i != '\n' && i != '\r')
	i = readchar ();

      /* Now parse the line */

      addr = gethex (4, buffer, &ok);
      idx = 6;
      for (p = 0; p < 16; p += 2)
	{
	  byte[p] = gethex (2, buffer + idx, &ok);
	  byte[p + 1] = gethex (2, buffer + idx + 2, &ok);
	  idx += 5;
	}

      for (p = 0; p < 16; p++)
	{
	  if (addr + p >= memaddr &&
	      addr + p < memaddr + len)
	    {
	      myaddr[(addr + p) - memaddr] = byte[p];

	    }

	}
    }
#ifdef GDB_TARGET_IS_H8500
  expect ("ore>");
#endif
#ifdef GDB_TARGET_IS_H8300
  expect ("emory>");
#endif
  hms_write_cr (".");

  expect_prompt ();
  return len;
}



#define MAX_BREAKS	16
static int num_brkpts = 0;
static int
hms_insert_breakpoint (addr, save)
     CORE_ADDR addr;
     char *save;		/* Throw away, let hms save instructions */
{
  check_open ();

  if (num_brkpts < MAX_BREAKS)
    {
      char buffer[100];

      num_brkpts++;
      sprintf (buffer, "b %x", addr & 0xffff);
      hms_write_cr (buffer);
      expect_prompt ();
      return (0);
    }
  else
    {
      fprintf_filtered (gdb_stderr,
		      "Too many break points, break point not installed\n");
      return (1);
    }

}
static int
hms_remove_breakpoint (addr, save)
     CORE_ADDR addr;
     char *save;		/* Throw away, let hms save instructions */
{
  if (num_brkpts > 0)
    {
      char buffer[100];

      num_brkpts--;
      sprintf (buffer, "b - %x", addr & 0xffff);
      hms_write_cr (buffer);
      expect_prompt ();

    }
  return (0);
}

/* Clear the hmss notion of what the break points are */
static int
hms_clear_breakpoints ()
{

  if (is_open)
    {
      hms_write_cr ("b -");
      expect_prompt ();
    }
  num_brkpts = 0;
}
static void
hms_mourn ()
{
  hms_clear_breakpoints ();
  unpush_target (&hms_ops);
  generic_mourn_inferior ();
}

/* Put a command string, in args, out to the hms.  The hms is assumed to
   be in raw mode, all writing/reading done through desc.
   Ouput from the hms is placed on the users terminal until the
   prompt from the hms is seen.
   FIXME: Can't handle commands that take input.  */

void
hms_com (args, fromtty)
     char *args;
     int fromtty;
{
  check_open ();

  if (!args)
    return;

  /* Clear all input so only command relative output is displayed */

  hms_write_cr (args);
/*  hms_write ("\030", 1); */
  expect_prompt ();
}

static void
hms_open (name, from_tty)
     char *name;
     int from_tty;
{
  unsigned int prl;
  char *p;

  if (name == 0)
    {
      name = "";
    }
  if (is_open)
    hms_close (0);
  dev_name = strdup (name);

  if (!(desc = SERIAL_OPEN (dev_name)))
    perror_with_name ((char *) dev_name);

  SERIAL_RAW (desc);
  is_open = 1;
  push_target (&hms_ops);
  dcache_ptr = dcache_init (hms_read_inferior_memory,
			    hms_write_inferior_memory);
  remote_dcache = 1;
  /* Hello?  Are you there?  */
  SERIAL_WRITE (desc, "\r\n", 2);
  expect_prompt ();

  /* Clear any break points */
  hms_clear_breakpoints ();

  printf_filtered ("Connected to remote board running HMS monitor.\n");
  add_commands ();
/*  hms_drain (); */
}

/* Define the target subroutine names */

struct target_ops hms_ops ;

static void 
init_hms_ops(void)
{
  hms_ops.to_shortname =   "hms";
  hms_ops.to_longname =   "Remote HMS monitor";
  hms_ops.to_doc =   "Use the H8 evaluation board running the HMS monitor connected\n\
by a serial line.";
  hms_ops.to_open =   hms_open;
  hms_ops.to_close =   hms_close;
  hms_ops.to_attach =   0;
  hms_ops.to_post_attach = NULL;
  hms_ops.to_require_attach = NULL;
  hms_ops.to_detach =   hms_detach;
  hms_ops.to_require_detach = NULL;
  hms_ops.to_resume =   hms_resume;
  hms_ops.to_wait  =   hms_wait;
  hms_ops.to_post_wait = NULL;
  hms_ops.to_fetch_registers  =   hms_fetch_register;
  hms_ops.to_store_registers  =   hms_store_register;
  hms_ops.to_prepare_to_store =   hms_prepare_to_store;
  hms_ops.to_xfer_memory  =   hms_xfer_inferior_memory;
  hms_ops.to_files_info  =   hms_files_info;
  hms_ops.to_insert_breakpoint =   hms_insert_breakpoint;
  hms_ops.to_remove_breakpoint =   hms_remove_breakpoint;
  hms_ops.to_terminal_init  =   0;
  hms_ops.to_terminal_inferior =   0;
  hms_ops.to_terminal_ours_for_output =   0;
  hms_ops.to_terminal_ours  =   0;
  hms_ops.to_terminal_info  =   0;
  hms_ops.to_kill  =   hms_kill;	
  hms_ops.to_load  =   generic_load;
  hms_ops.to_lookup_symbol =   0;
  hms_ops.to_create_inferior =   hms_create_inferior;
  hms_ops.to_post_startup_inferior = NULL;
  hms_ops.to_acknowledge_created_inferior = NULL;
  hms_ops.to_clone_and_follow_inferior = NULL;
  hms_ops.to_post_follow_inferior_by_clone = NULL;
  hms_ops.to_insert_fork_catchpoint = NULL;
  hms_ops.to_remove_fork_catchpoint = NULL;
  hms_ops.to_insert_vfork_catchpoint = NULL;
  hms_ops.to_remove_vfork_catchpoint = NULL;
  hms_ops.to_has_forked = NULL;
  hms_ops.to_has_vforked = NULL;
  hms_ops.to_can_follow_vfork_prior_to_exec = NULL;
  hms_ops.to_post_follow_vfork = NULL;
  hms_ops.to_insert_exec_catchpoint = NULL;
  hms_ops.to_remove_exec_catchpoint = NULL;
  hms_ops.to_has_execd = NULL;
  hms_ops.to_reported_exec_events_per_exec_call = NULL;
  hms_ops.to_has_exited = NULL;
  hms_ops.to_mourn_inferior =   hms_mourn;
  hms_ops.to_can_run  =   0;
  hms_ops.to_notice_signals =   0;
  hms_ops.to_thread_alive  =   0;
  hms_ops.to_stop  =   0;
  hms_ops.to_pid_to_exec_file = NULL;
  hms_ops.to_core_file_to_sym_file = NULL;			
  hms_ops.to_stratum =   process_stratum;
  hms_ops.DONT_USE =   0;	
  hms_ops.to_has_all_memory =   1;
  hms_ops.to_has_memory =   1;
  hms_ops.to_has_stack =   1;
  hms_ops.to_has_registers =   1;
  hms_ops.to_has_execution =   1;
  hms_ops.to_sections =   0;
  hms_ops.to_sections_end =   0;			
  hms_ops.to_magic =   OPS_MAGIC;		
};

hms_quiet ()			/* FIXME - this routine can be removed after Dec '94 */
{
  quiet = !quiet;
  if (quiet)
    printf_filtered ("Snoop disabled\n");
  else
    printf_filtered ("Snoop enabled\n");

  printf_filtered ("`snoop' is obsolete, please use `set remotedebug'.\n");
}

hms_device (s)
     char *s;
{
  if (s)
    {
      dev_name = get_word (&s);
    }
}

static
hms_speed (s)
     char *s;
{
  check_open ();

  if (s)
    {
      char buffer[100];
      int newrate = atoi (s);
      int which = 0;

      if (SERIAL_SETBAUDRATE (desc, newrate))
	error ("Can't use %d baud\n", newrate);

      printf_filtered ("Checking target is in sync\n");

      printf_filtered ("Sending commands to set target to %d\n",
		       baudrate);

      sprintf (buffer, "tm %d. N 8 1", baudrate);
      hms_write_cr (buffer);
    }
}

/***********************************************************************/

static void
hms_drain (args, fromtty)
     char *args;
     int fromtty;
{
  int c;
  while (1)
    {
      c = SERIAL_READCHAR (desc, 1);
      if (c == SERIAL_TIMEOUT)
	break;
      if (c == SERIAL_ERROR)
	break;
      if (c > ' ' && c < 127)
	printf ("%c", c & 0xff);
      else
	printf ("<%x>", c & 0xff);
    }
}

static void
add_commands ()
{

  add_com ("hms_drain", class_obscure, hms_drain,
	   "Drain pending hms text buffers.");
}

static void
remove_commands ()
{
  extern struct cmd_list_element *cmdlist;
  delete_cmd ("hms-drain", &cmdlist);
}


void
_initialize_remote_hms ()
{
  init_hms_ops() ;
  add_target (&hms_ops);

  add_com ("hms <command>", class_obscure, hms_com,
	   "Send a command to the HMS monitor.");

  /* FIXME - hms_quiet and `snoop' can be removed after Dec '94 */
  add_com ("snoop", class_obscure, hms_quiet,
	   "Show what commands are going to the monitor (OBSOLETE - see 'set remotedebug')");

  add_com ("device", class_obscure, hms_device,
	   "Set the terminal line for HMS communications");

  add_com ("speed", class_obscure, hms_speed,
	   "Set the terminal line speed for HMS communications");

  dev_name = NULL;
}
#endif