aboutsummaryrefslogtreecommitdiff
path: root/gdb/osabi.c
blob: a8ecc8c48232bbdfb9f19e99bdb591a1868d076b (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
/* OS ABI variant handling for GDB.

   Copyright (C) 2001, 2002, 2003, 2004, 2007, 2008, 2009
   Free Software Foundation, Inc.

   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 3 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, see <http://www.gnu.org/licenses/>.  */

#include "defs.h"

#include "gdb_assert.h"
#include "gdb_string.h"

#include "osabi.h"
#include "arch-utils.h"
#include "gdbcmd.h"
#include "command.h"

#include "elf-bfd.h"

#ifndef GDB_OSABI_DEFAULT
#define GDB_OSABI_DEFAULT GDB_OSABI_UNKNOWN
#endif

/* State for the "set osabi" command.  */
static enum { osabi_auto, osabi_default, osabi_user } user_osabi_state;
static enum gdb_osabi user_selected_osabi;
static const char *gdb_osabi_available_names[GDB_OSABI_INVALID + 3] = {
  "auto",
  "default",
  "none",
  NULL
};
static const char *set_osabi_string;

/* This table matches the indices assigned to enum gdb_osabi.  Keep
   them in sync.  */
static const char * const gdb_osabi_names[] =
{
  "none",

  "SVR4",
  "GNU/Hurd",
  "Solaris",
  "OSF/1",
  "GNU/Linux",
  "FreeBSD a.out",
  "FreeBSD ELF",
  "NetBSD a.out",
  "NetBSD ELF",
  "OpenBSD ELF",
  "Windows CE",
  "DJGPP",
  "Irix",
  "Interix",
  "HP/UX ELF",
  "HP/UX SOM",

  "QNX Neutrino",

  "Cygwin",
  "AIX",
  "DICOS",
  "Darwin",

  "<invalid>"
};

const char *
gdbarch_osabi_name (enum gdb_osabi osabi)
{
  if (osabi >= GDB_OSABI_UNKNOWN && osabi < GDB_OSABI_INVALID)
    return gdb_osabi_names[osabi];

  return gdb_osabi_names[GDB_OSABI_INVALID];
}

/* Lookup the OS ABI corresponding to the specified target description
   string.  */

enum gdb_osabi
osabi_from_tdesc_string (const char *name)
{
  int i;

  for (i = 0; i < ARRAY_SIZE (gdb_osabi_names); i++)
    if (strcmp (name, gdb_osabi_names[i]) == 0)
      {
	/* See note above: the name table matches the indices assigned
	   to enum gdb_osabi.  */
	enum gdb_osabi osabi = (enum gdb_osabi) i;

	if (osabi == GDB_OSABI_INVALID)
	  return GDB_OSABI_UNKNOWN;
	else
	  return osabi;
      }

  return GDB_OSABI_UNKNOWN;
}

/* Handler for a given architecture/OS ABI pair.  There should be only
   one handler for a given OS ABI each architecture family.  */
struct gdb_osabi_handler  
{
  struct gdb_osabi_handler *next;
  const struct bfd_arch_info *arch_info;
  enum gdb_osabi osabi;
  void (*init_osabi)(struct gdbarch_info, struct gdbarch *);
};

static struct gdb_osabi_handler *gdb_osabi_handler_list;

void
gdbarch_register_osabi (enum bfd_architecture arch, unsigned long machine,
			enum gdb_osabi osabi,
                        void (*init_osabi)(struct gdbarch_info,
					   struct gdbarch *))
{
  struct gdb_osabi_handler **handler_p;
  const struct bfd_arch_info *arch_info = bfd_lookup_arch (arch, machine);
  const char **name_ptr;

  /* Registering an OS ABI handler for "unknown" is not allowed.  */
  if (osabi == GDB_OSABI_UNKNOWN)
    {
      internal_error
	(__FILE__, __LINE__,
	 _("gdbarch_register_osabi: An attempt to register a handler for "
         "OS ABI \"%s\" for architecture %s was made.  The handler will "
	 "not be registered"),
	 gdbarch_osabi_name (osabi),
	 bfd_printable_arch_mach (arch, machine));
      return;
    }

  gdb_assert (arch_info);

  for (handler_p = &gdb_osabi_handler_list; *handler_p != NULL;
       handler_p = &(*handler_p)->next)
    {
      if ((*handler_p)->arch_info == arch_info
	  && (*handler_p)->osabi == osabi)
	{
	  internal_error
	    (__FILE__, __LINE__,
	     _("gdbarch_register_osabi: A handler for OS ABI \"%s\" "
	     "has already been registered for architecture %s"),
	     gdbarch_osabi_name (osabi),
	     arch_info->printable_name);
	  /* If user wants to continue, override previous definition.  */
	  (*handler_p)->init_osabi = init_osabi;
	  return;
	}
    }

  (*handler_p)
    = (struct gdb_osabi_handler *) xmalloc (sizeof (struct gdb_osabi_handler));
  (*handler_p)->next = NULL;
  (*handler_p)->arch_info = arch_info;
  (*handler_p)->osabi = osabi;
  (*handler_p)->init_osabi = init_osabi;

  /* Add this OS ABI to the list of enum values for "set osabi", if it isn't
     already there.  */
  for (name_ptr = gdb_osabi_available_names; *name_ptr; name_ptr ++)
    {
      if (*name_ptr == gdbarch_osabi_name (osabi))
	return;
    }
  *name_ptr++ = gdbarch_osabi_name (osabi);
  *name_ptr = NULL;
}


/* Sniffer to find the OS ABI for a given file's architecture and flavour. 
   It is legal to have multiple sniffers for each arch/flavour pair, to
   disambiguate one OS's a.out from another, for example.  The first sniffer
   to return something other than GDB_OSABI_UNKNOWN wins, so a sniffer should
   be careful to claim a file only if it knows for sure what it is.  */
struct gdb_osabi_sniffer
{
  struct gdb_osabi_sniffer *next;
  enum bfd_architecture arch;   /* bfd_arch_unknown == wildcard */
  enum bfd_flavour flavour;
  enum gdb_osabi (*sniffer)(bfd *);
};

static struct gdb_osabi_sniffer *gdb_osabi_sniffer_list;

void
gdbarch_register_osabi_sniffer (enum bfd_architecture arch,
                                enum bfd_flavour flavour,
				enum gdb_osabi (*sniffer_fn)(bfd *))
{
  struct gdb_osabi_sniffer *sniffer;

  sniffer =
    (struct gdb_osabi_sniffer *) xmalloc (sizeof (struct gdb_osabi_sniffer));
  sniffer->arch = arch;
  sniffer->flavour = flavour;
  sniffer->sniffer = sniffer_fn;

  sniffer->next = gdb_osabi_sniffer_list;
  gdb_osabi_sniffer_list = sniffer;
}


enum gdb_osabi
gdbarch_lookup_osabi (bfd *abfd)
{
  struct gdb_osabi_sniffer *sniffer;
  enum gdb_osabi osabi, match;
  int match_specific;

  /* If we aren't in "auto" mode, return the specified OS ABI.  */
  if (user_osabi_state == osabi_user)
    return user_selected_osabi;

  /* If we don't have a binary, just return unknown.  The caller may
     have other sources the OSABI can be extracted from, e.g., the
     target description.  */
  if (abfd == NULL) 
    return GDB_OSABI_UNKNOWN;

  match = GDB_OSABI_UNKNOWN;
  match_specific = 0;

  for (sniffer = gdb_osabi_sniffer_list; sniffer != NULL;
       sniffer = sniffer->next)
    {
      if ((sniffer->arch == bfd_arch_unknown /* wildcard */
	   || sniffer->arch == bfd_get_arch (abfd))
	  && sniffer->flavour == bfd_get_flavour (abfd))
	{
	  osabi = (*sniffer->sniffer) (abfd);
	  if (osabi < GDB_OSABI_UNKNOWN || osabi >= GDB_OSABI_INVALID)
	    {
	      internal_error
		(__FILE__, __LINE__,
		 _("gdbarch_lookup_osabi: invalid OS ABI (%d) from sniffer "
		 "for architecture %s flavour %d"),
		 (int) osabi,
		 bfd_printable_arch_mach (bfd_get_arch (abfd), 0),
		 (int) bfd_get_flavour (abfd));
	    }
	  else if (osabi != GDB_OSABI_UNKNOWN)
	    {
	      /* A specific sniffer always overrides a generic sniffer.
		 Croak on multiple match if the two matches are of the
		 same class.  If the user wishes to continue, we'll use
		 the first match.  */
	      if (match != GDB_OSABI_UNKNOWN)
		{
		  if ((match_specific && sniffer->arch != bfd_arch_unknown)
		   || (!match_specific && sniffer->arch == bfd_arch_unknown))
		    {
		      internal_error
		        (__FILE__, __LINE__,
		         _("gdbarch_lookup_osabi: multiple %sspecific OS ABI "
			 "match for architecture %s flavour %d: first "
			 "match \"%s\", second match \"%s\""),
			 match_specific ? "" : "non-",
		         bfd_printable_arch_mach (bfd_get_arch (abfd), 0),
		         (int) bfd_get_flavour (abfd),
		         gdbarch_osabi_name (match),
		         gdbarch_osabi_name (osabi));
		    }
		  else if (sniffer->arch != bfd_arch_unknown)
		    {
		      match = osabi;
		      match_specific = 1;
		    }
		}
	      else
		{
		  match = osabi;
		  if (sniffer->arch != bfd_arch_unknown)
		    match_specific = 1;
		}
	    }
	}
    }

  return match;
}


/* Return non-zero if architecture A can run code written for
   architecture B.  */
static int
can_run_code_for (const struct bfd_arch_info *a, const struct bfd_arch_info *b)
{
  /* BFD's 'A->compatible (A, B)' functions return zero if A and B are
     incompatible.  But if they are compatible, it returns the 'more
     featureful' of the two arches.  That is, if A can run code
     written for B, but B can't run code written for A, then it'll
     return A.

     struct bfd_arch_info objects are singletons: that is, there's
     supposed to be exactly one instance for a given machine.  So you
     can tell whether two are equivalent by comparing pointers.  */
  return (a == b || a->compatible (a, b) == a);
}


void
gdbarch_init_osabi (struct gdbarch_info info, struct gdbarch *gdbarch)
{
  struct gdb_osabi_handler *handler;

  if (info.osabi == GDB_OSABI_UNKNOWN)
    {
      /* Don't complain about an unknown OSABI.  Assume the user knows
         what they are doing.  */
      return;
    }

  for (handler = gdb_osabi_handler_list; handler != NULL;
       handler = handler->next)
    {
      if (handler->osabi != info.osabi)
	continue;

      /* If the architecture described by ARCH_INFO can run code for
         the architcture we registered the handler for, then the
         handler is applicable.  Note, though, that if the handler is
         for an architecture that is a superset of ARCH_INFO, we can't
         use that --- it would be perfectly correct for it to install
         gdbarch methods that refer to registers / instructions /
         other facilities ARCH_INFO doesn't have.

         NOTE: kettenis/20021027: There may be more than one machine
	 type that is compatible with the desired machine type.  Right
	 now we simply return the first match, which is fine for now.
	 However, we might want to do something smarter in the future.  */
      /* NOTE: cagney/2003-10-23: The code for "a can_run_code_for b"
         is implemented using BFD's compatible method (a->compatible
         (b) == a -- the lowest common denominator between a and b is
         a).  That method's definition of compatible may not be as you
         expect.  For instance the test "amd64 can run code for i386"
         (or more generally "64-bit ISA can run code for the 32-bit
         ISA").  BFD doesn't normally consider 32-bit and 64-bit
         "compatible" so it doesn't succeed.  */
      if (can_run_code_for (info.bfd_arch_info, handler->arch_info))
	{
	  (*handler->init_osabi) (info, gdbarch);
	  return;
	}
    }

  warning
    ("A handler for the OS ABI \"%s\" is not built into this configuration\n"
     "of GDB.  Attempting to continue with the default %s settings.\n",
     gdbarch_osabi_name (info.osabi),
     info.bfd_arch_info->printable_name);
}

/* Limit on the amount of data to be read.  */
#define MAX_NOTESZ	128

/* Return non-zero if NOTE matches NAME, DESCSZ and TYPE.  */

static int
check_note (bfd *abfd, asection *sect, const char *note,
	    const char *name, unsigned long descsz, unsigned long type)
{
  unsigned long notesz;

  /* Calculate the size of this note.  */
  notesz = strlen (name) + 1;
  notesz = ((notesz + 3) & ~3);
  notesz += descsz;
  notesz = ((notesz + 3) & ~3);

  /* If this assertion triggers, increase MAX_NOTESZ.  */
  gdb_assert (notesz <= MAX_NOTESZ);

  /* Check whether SECT is big enough to comtain the complete note.  */
  if (notesz > bfd_section_size (abfd, sect))
    return 0;

  /* Check the note name.  */
  if (bfd_h_get_32 (abfd, note) != (strlen (name) + 1)
      || strcmp (note + 12, name) != 0)
    return 0;

  /* Check the descriptor size.  */
  if (bfd_h_get_32 (abfd, note + 4) != descsz)
    return 0;

  /* Check the note type.  */
  if (bfd_h_get_32 (abfd, note + 8) != type)
    return 0;

  return 1;
}

/* Generic sniffer for ELF flavoured files.  */

void
generic_elf_osabi_sniff_abi_tag_sections (bfd *abfd, asection *sect, void *obj)
{
  enum gdb_osabi *osabi = obj;
  const char *name;
  unsigned int sectsize;
  char *note;

  name = bfd_get_section_name (abfd, sect);
  sectsize = bfd_section_size (abfd, sect);

  /* Limit the amount of data to read.  */
  if (sectsize > MAX_NOTESZ)
    sectsize = MAX_NOTESZ;

  note = alloca (sectsize);
  bfd_get_section_contents (abfd, sect, note, 0, sectsize);

  /* .note.ABI-tag notes, used by GNU/Linux and FreeBSD.  */
  if (strcmp (name, ".note.ABI-tag") == 0)
    {
      /* GNU.  */
      if (check_note (abfd, sect, note, "GNU", 16, NT_GNU_ABI_TAG))
	{
	  unsigned int abi_tag = bfd_h_get_32 (abfd, note + 16);

	  switch (abi_tag)
	    {
	    case GNU_ABI_TAG_LINUX:
	      *osabi = GDB_OSABI_LINUX;
	      break;

	    case GNU_ABI_TAG_HURD:
	      *osabi = GDB_OSABI_HURD;
	      break;

	    case GNU_ABI_TAG_SOLARIS:
	      *osabi = GDB_OSABI_SOLARIS;
	      break;

	    case GNU_ABI_TAG_FREEBSD:
	      *osabi = GDB_OSABI_FREEBSD_ELF;
	      break;

	    case GNU_ABI_TAG_NETBSD:
	      *osabi = GDB_OSABI_NETBSD_ELF;
	      break;

	    default:
	      internal_error (__FILE__, __LINE__, _("\
generic_elf_osabi_sniff_abi_tag_sections: unknown OS number %d"),
			      abi_tag);
	    }
	  return;
	}

      /* FreeBSD.  */
      if (check_note (abfd, sect, note, "FreeBSD", 4, NT_FREEBSD_ABI_TAG))
	{
	  /* There is no need to check the version yet.  */
	  *osabi = GDB_OSABI_FREEBSD_ELF;
	  return;
	}

      return;
    }
      
  /* .note.netbsd.ident notes, used by NetBSD.  */
  if (strcmp (name, ".note.netbsd.ident") == 0
      && check_note (abfd, sect, note, "NetBSD", 4, NT_NETBSD_IDENT))
    {
      /* There is no need to check the version yet.  */
      *osabi = GDB_OSABI_NETBSD_ELF;
      return;
    }

  /* .note.openbsd.ident notes, used by OpenBSD.  */
  if (strcmp (name, ".note.openbsd.ident") == 0
      && check_note (abfd, sect, note, "OpenBSD", 4, NT_OPENBSD_IDENT))
    {
      /* There is no need to check the version yet.  */
      *osabi = GDB_OSABI_OPENBSD_ELF;
      return;
    }

  /* .note.netbsdcore.procinfo notes, used by NetBSD.  */
  if (strcmp (name, ".note.netbsdcore.procinfo") == 0)
    {
      *osabi = GDB_OSABI_NETBSD_ELF;
      return;
    }
}

static enum gdb_osabi
generic_elf_osabi_sniffer (bfd *abfd)
{
  unsigned int elfosabi;
  enum gdb_osabi osabi = GDB_OSABI_UNKNOWN;

  elfosabi = elf_elfheader (abfd)->e_ident[EI_OSABI];

  switch (elfosabi)
    {
    case ELFOSABI_NONE:
      /* When the EI_OSABI field in the ELF header is ELFOSABI_NONE
         (0), then the ELF structures in the file are conforming to
         the base specification for that machine (there are no
         OS-specific extensions).  In order to determine the real OS
         in use we must look for OS-specific notes.  */
      bfd_map_over_sections (abfd,
			     generic_elf_osabi_sniff_abi_tag_sections,
			     &osabi);
      break;

    case ELFOSABI_FREEBSD:
      osabi = GDB_OSABI_FREEBSD_ELF;
      break;

    case ELFOSABI_NETBSD:
      osabi = GDB_OSABI_NETBSD_ELF;
      break;

    case ELFOSABI_LINUX:
      osabi = GDB_OSABI_LINUX;
      break;

    case ELFOSABI_HURD:
      osabi = GDB_OSABI_HURD;
      break;

    case ELFOSABI_SOLARIS:
      osabi = GDB_OSABI_SOLARIS;
      break;

    case ELFOSABI_HPUX:
      /* For some reason the default value for the EI_OSABI field is
         ELFOSABI_HPUX for all PA-RISC targets (with the exception of
         GNU/Linux).  We use HP-UX ELF as the default, but let any
         OS-specific notes override this.  */
      osabi = GDB_OSABI_HPUX_ELF;
      bfd_map_over_sections (abfd,
			     generic_elf_osabi_sniff_abi_tag_sections,
			     &osabi);
      break;
    }

  if (osabi == GDB_OSABI_UNKNOWN)
    {
      /* The FreeBSD folks have been naughty; they stored the string
         "FreeBSD" in the padding of the e_ident field of the ELF
         header to "brand" their ELF binaries in FreeBSD 3.x.  */
      if (memcmp (&elf_elfheader (abfd)->e_ident[8],
		  "FreeBSD", sizeof ("FreeBSD")) == 0)
	osabi = GDB_OSABI_FREEBSD_ELF;
    }

  return osabi;
}

static void
set_osabi (char *args, int from_tty, struct cmd_list_element *c)
{
  struct gdbarch_info info;

  if (strcmp (set_osabi_string, "auto") == 0)
    user_osabi_state = osabi_auto;
  else if (strcmp (set_osabi_string, "default") == 0)
    {
      user_selected_osabi = GDB_OSABI_DEFAULT;
      user_osabi_state = osabi_user;
    }
  else if (strcmp (set_osabi_string, "none") == 0)
    {
      user_selected_osabi = GDB_OSABI_UNKNOWN;
      user_osabi_state = osabi_user;
    }
  else
    {
      int i;
      for (i = 1; i < GDB_OSABI_INVALID; i++)
	if (strcmp (set_osabi_string, gdbarch_osabi_name (i)) == 0)
	  {
	    user_selected_osabi = i;
	    user_osabi_state = osabi_user;
	    break;
	  }
      if (i == GDB_OSABI_INVALID)
	internal_error (__FILE__, __LINE__,
			_("Invalid OS ABI \"%s\" passed to command handler."),
			set_osabi_string);
    }

  /* NOTE: At some point (true multiple architectures) we'll need to be more
     graceful here.  */
  gdbarch_info_init (&info);
  if (! gdbarch_update_p (info))
    internal_error (__FILE__, __LINE__, _("Updating OS ABI failed."));
}

static void
show_osabi (struct ui_file *file, int from_tty, struct cmd_list_element *c,
	    const char *value)
{
  if (user_osabi_state == osabi_auto)
    fprintf_filtered (file,
		      _("The current OS ABI is \"auto\" (currently \"%s\").\n"),
		      gdbarch_osabi_name (gdbarch_osabi (get_current_arch ())));
  else
    fprintf_filtered (file, _("The current OS ABI is \"%s\".\n"),
		      gdbarch_osabi_name (user_selected_osabi));

  if (GDB_OSABI_DEFAULT != GDB_OSABI_UNKNOWN)
    fprintf_filtered (file, _("The default OS ABI is \"%s\".\n"),
		      gdbarch_osabi_name (GDB_OSABI_DEFAULT));
}

extern initialize_file_ftype _initialize_gdb_osabi; /* -Wmissing-prototype */

void
_initialize_gdb_osabi (void)
{
  struct cmd_list_element *c;

  if (strcmp (gdb_osabi_names[GDB_OSABI_INVALID], "<invalid>") != 0)
    internal_error
      (__FILE__, __LINE__,
       _("_initialize_gdb_osabi: gdb_osabi_names[] is inconsistent"));

  /* Register a generic sniffer for ELF flavoured files.  */
  gdbarch_register_osabi_sniffer (bfd_arch_unknown,
				  bfd_target_elf_flavour,
				  generic_elf_osabi_sniffer);

  /* Register the "set osabi" command.  */
  add_setshow_enum_cmd ("osabi", class_support, gdb_osabi_available_names,
			&set_osabi_string, _("\
Set OS ABI of target."), _("\
Show OS ABI of target."), NULL,
			set_osabi,
			show_osabi,
			&setlist, &showlist);
  user_osabi_state = osabi_auto;
}
>*args, char **env, int from_tty) { CORE_ADDR entry_pt; if (args && *args) error (_("Cannot pass arguments to remote STDEBUG process")); if (execfile == 0 || exec_bfd == 0) error (_("No executable file specified")); if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_create_inferior(%s,%s)\n", execfile, args); entry_pt = bfd_get_start_address (exec_bfd); /* The "process" (board) is already stopped awaiting our commands, and the program is already downloaded. We just set its PC and go. */ clear_proceed_status (); /* Tell wait_for_inferior that we've started a new process. */ init_wait_for_inferior (); /* Set up the "saved terminal modes" of the inferior based on what modes we are starting it with. */ target_terminal_init (); /* Install inferior's terminal modes. */ target_terminal_inferior (); regcache_write_pc (get_current_regcache (), entry_pt); } /* Open a connection to a remote debugger. NAME is the filename used for communication. */ static void m32r_open (char *args, int from_tty) { struct hostent *host_ent; struct sockaddr_in server_addr; char *port_str, hostname[256]; int port; int i, n; int yes = 1; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_open(%d)\n", from_tty); target_preopen (from_tty); push_target (&m32r_ops); if (args == NULL) sprintf (hostname, "localhost:%d", SDIPORT); else { port_str = strchr (args, ':'); if (port_str == NULL) sprintf (hostname, "%s:%d", args, SDIPORT); else strcpy (hostname, args); } sdi_desc = serial_open (hostname); if (!sdi_desc) error (_("Connection refused.")); if (get_ack () == -1) error (_("Cannot connect to SDI target.")); if (send_cmd (SDI_OPEN) == -1) error (_("Cannot connect to SDI target.")); /* Get maximum number of ib breakpoints. */ send_one_arg_cmd (SDI_GET_ATTR, SDI_ATTR_BRK); max_ib_breakpoints = recv_char_data (); if (remote_debug) printf_filtered ("Max IB Breakpoints = %d\n", max_ib_breakpoints); /* Initialize breakpoints. */ for (i = 0; i < MAX_BREAKPOINTS; i++) bp_address[i] = 0xffffffff; /* Get maximum number of access breaks. */ send_one_arg_cmd (SDI_GET_ATTR, SDI_ATTR_ABRK); max_access_breaks = recv_char_data (); if (remote_debug) printf_filtered ("Max Access Breaks = %d\n", max_access_breaks); /* Initialize access breask. */ for (i = 0; i < MAX_ACCESS_BREAKS; i++) ab_address[i] = 0x00000000; check_mmu_status (); /* Get the name of chip on target board. */ send_one_arg_cmd (SDI_GET_ATTR, SDI_ATTR_NAME); recv_data (chip_name, 64); if (from_tty) printf_filtered ("Remote %s connected to %s\n", target_shortname, chip_name); } /* Close out all files and local state before this target loses control. */ static void m32r_close (int quitting) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_close(%d)\n", quitting); if (sdi_desc) { send_cmd (SDI_CLOSE); serial_close (sdi_desc); sdi_desc = NULL; } inferior_ptid = null_ptid; delete_thread_silent (remote_m32r_ptid); return; } /* Tell the remote machine to resume. */ static void m32r_resume (struct target_ops *ops, ptid_t ptid, int step, enum gdb_signal sig) { unsigned long pc_addr, bp_addr, ab_addr; int ib_breakpoints; unsigned char buf[13]; int i; if (remote_debug) { if (step) fprintf_unfiltered (gdb_stdlog, "\nm32r_resume(step)\n"); else fprintf_unfiltered (gdb_stdlog, "\nm32r_resume(cont)\n"); } check_mmu_status (); pc_addr = regcache_read_pc (get_current_regcache ()); if (remote_debug) fprintf_unfiltered (gdb_stdlog, "pc <= 0x%lx\n", pc_addr); /* At pc address there is a parallel instruction with +2 offset, so we have to make it a serial instruction or avoid it. */ if (pc_addr == last_pc_addr) { /* Avoid a parallel nop. */ if (last_pc_addr_data[0] == 0xf0 && last_pc_addr_data[1] == 0x00) { pc_addr += 2; /* Now we can forget this instruction. */ last_pc_addr = 0xffffffff; } /* Clear a parallel bit. */ else { buf[0] = SDI_WRITE_MEMORY; if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) store_long_parameter (buf + 1, pc_addr); else store_long_parameter (buf + 1, pc_addr - 1); store_long_parameter (buf + 5, 1); buf[9] = last_pc_addr_data[0] & 0x7f; send_data (buf, 10); } } /* Set PC. */ send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_BPC, pc_addr); /* step mode. */ step_mode = step; if (step) { /* Set PBP. */ send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_PBP, pc_addr | 1); } else { /* Unset PBP. */ send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_PBP, 0x00000000); } if (use_ib_breakpoints) ib_breakpoints = max_ib_breakpoints; else ib_breakpoints = 0; /* Set ib breakpoints. */ for (i = 0; i < ib_breakpoints; i++) { bp_addr = bp_address[i]; if (bp_addr == 0xffffffff) continue; /* Set PBP. */ if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8000 + 4 * i, 4, 0x00000006); else send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8000 + 4 * i, 4, 0x06000000); send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8080 + 4 * i, 4, bp_addr); } /* Set dbt breakpoints. */ for (i = ib_breakpoints; i < MAX_BREAKPOINTS; i++) { bp_addr = bp_address[i]; if (bp_addr == 0xffffffff) continue; if (!mmu_on) bp_addr &= 0x7fffffff; /* Write DBT instruction. */ buf[0] = SDI_WRITE_MEMORY; store_long_parameter (buf + 1, (bp_addr & 0xfffffffc)); store_long_parameter (buf + 5, 4); if ((bp_addr & 2) == 0 && bp_addr != (pc_addr & 0xfffffffc)) { if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) { buf[9] = dbt_bp_entry[0]; buf[10] = dbt_bp_entry[1]; buf[11] = dbt_bp_entry[2]; buf[12] = dbt_bp_entry[3]; } else { buf[9] = dbt_bp_entry[3]; buf[10] = dbt_bp_entry[2]; buf[11] = dbt_bp_entry[1]; buf[12] = dbt_bp_entry[0]; } } else { if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) { if ((bp_addr & 2) == 0) { buf[9] = dbt_bp_entry[0]; buf[10] = dbt_bp_entry[1]; buf[11] = bp_data[i][2] & 0x7f; buf[12] = bp_data[i][3]; } else { buf[9] = bp_data[i][0]; buf[10] = bp_data[i][1]; buf[11] = dbt_bp_entry[0]; buf[12] = dbt_bp_entry[1]; } } else { if ((bp_addr & 2) == 0) { buf[9] = bp_data[i][0]; buf[10] = bp_data[i][1] & 0x7f; buf[11] = dbt_bp_entry[1]; buf[12] = dbt_bp_entry[0]; } else { buf[9] = dbt_bp_entry[1]; buf[10] = dbt_bp_entry[0]; buf[11] = bp_data[i][2]; buf[12] = bp_data[i][3]; } } } send_data (buf, 13); } /* Set access breaks. */ for (i = 0; i < max_access_breaks; i++) { ab_addr = ab_address[i]; if (ab_addr == 0x00000000) continue; /* DBC register. */ if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) { switch (ab_type[i]) { case 0: /* write watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x00000086); break; case 1: /* read watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x00000046); break; case 2: /* access watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x00000006); break; } } else { switch (ab_type[i]) { case 0: /* write watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x86000000); break; case 1: /* read watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x46000000); break; case 2: /* access watch */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x06000000); break; } } /* DBAH register. */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8180 + 4 * i, 4, ab_addr); /* DBAL register. */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8200 + 4 * i, 4, 0xffffffff); /* DBD register. */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8280 + 4 * i, 4, 0x00000000); /* DBDM register. */ send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8300 + 4 * i, 4, 0x00000000); } /* Resume program. */ send_cmd (SDI_EXEC_CPU); /* Without this, some commands which require an active target (such as kill) won't work. This variable serves (at least) double duty as both the pid of the target process (if it has such), and as a flag indicating that a target is active. These functions should be split out into seperate variables, especially since GDB will someday have a notion of debugging several processes. */ inferior_ptid = remote_m32r_ptid; add_thread_silent (remote_m32r_ptid); return; } /* Wait until the remote machine stops, then return, storing status in STATUS just as `wait' would. */ static void gdb_cntrl_c (int signo) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "interrupt\n"); interrupted = 1; } static ptid_t m32r_wait (struct target_ops *ops, ptid_t ptid, struct target_waitstatus *status, int options) { static RETSIGTYPE (*prev_sigint) (); unsigned long bp_addr, pc_addr; int ib_breakpoints; long i; unsigned char buf[13]; int ret, c; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_wait()\n"); status->kind = TARGET_WAITKIND_EXITED; status->value.sig = GDB_SIGNAL_0; interrupted = 0; prev_sigint = signal (SIGINT, gdb_cntrl_c); /* Wait for ready. */ buf[0] = SDI_WAIT_FOR_READY; if (serial_write (sdi_desc, buf, 1) != 0) error (_("Remote connection closed")); while (1) { c = serial_readchar (sdi_desc, SDI_TIMEOUT); if (c < 0) error (_("Remote connection closed")); if (c == '-') /* error */ { status->kind = TARGET_WAITKIND_STOPPED; status->value.sig = GDB_SIGNAL_HUP; return inferior_ptid; } else if (c == '+') /* stopped */ break; if (interrupted) ret = serial_write (sdi_desc, "!", 1); /* packet to interrupt */ else ret = serial_write (sdi_desc, ".", 1); /* packet to wait */ if (ret != 0) error (_("Remote connection closed")); } status->kind = TARGET_WAITKIND_STOPPED; if (interrupted) status->value.sig = GDB_SIGNAL_INT; else status->value.sig = GDB_SIGNAL_TRAP; interrupted = 0; signal (SIGINT, prev_sigint); check_mmu_status (); /* Recover parallel bit. */ if (last_pc_addr != 0xffffffff) { buf[0] = SDI_WRITE_MEMORY; if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) store_long_parameter (buf + 1, last_pc_addr); else store_long_parameter (buf + 1, last_pc_addr - 1); store_long_parameter (buf + 5, 1); buf[9] = last_pc_addr_data[0]; send_data (buf, 10); last_pc_addr = 0xffffffff; } if (use_ib_breakpoints) ib_breakpoints = max_ib_breakpoints; else ib_breakpoints = 0; /* Set back pc by 2 if m32r is stopped with dbt. */ last_pc_addr = 0xffffffff; send_one_arg_cmd (SDI_READ_CPU_REG, SDI_REG_BPC); pc_addr = recv_long_data () - 2; for (i = ib_breakpoints; i < MAX_BREAKPOINTS; i++) { if (pc_addr == bp_address[i]) { send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_BPC, pc_addr); /* If there is a parallel instruction with +2 offset at pc address, we have to take care of it later. */ if ((pc_addr & 0x2) != 0) { if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) { if ((bp_data[i][2] & 0x80) != 0) { last_pc_addr = pc_addr; last_pc_addr_data[0] = bp_data[i][2]; last_pc_addr_data[1] = bp_data[i][3]; } } else { if ((bp_data[i][1] & 0x80) != 0) { last_pc_addr = pc_addr; last_pc_addr_data[0] = bp_data[i][1]; last_pc_addr_data[1] = bp_data[i][0]; } } } break; } } /* Remove ib breakpoints. */ for (i = 0; i < ib_breakpoints; i++) { if (bp_address[i] != 0xffffffff) send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8000 + 4 * i, 4, 0x00000000); } /* Remove dbt breakpoints. */ for (i = ib_breakpoints; i < MAX_BREAKPOINTS; i++) { bp_addr = bp_address[i]; if (bp_addr != 0xffffffff) { if (!mmu_on) bp_addr &= 0x7fffffff; buf[0] = SDI_WRITE_MEMORY; store_long_parameter (buf + 1, bp_addr & 0xfffffffc); store_long_parameter (buf + 5, 4); buf[9] = bp_data[i][0]; buf[10] = bp_data[i][1]; buf[11] = bp_data[i][2]; buf[12] = bp_data[i][3]; send_data (buf, 13); } } /* Remove access breaks. */ hit_watchpoint_addr = 0; for (i = 0; i < max_access_breaks; i++) { if (ab_address[i] != 0x00000000) { buf[0] = SDI_READ_MEMORY; store_long_parameter (buf + 1, 0xffff8100 + 4 * i); store_long_parameter (buf + 5, 4); serial_write (sdi_desc, buf, 9); c = serial_readchar (sdi_desc, SDI_TIMEOUT); if (c != '-' && recv_data (buf, 4) != -1) { if (gdbarch_byte_order (target_gdbarch) == BFD_ENDIAN_BIG) { if ((buf[3] & 0x1) == 0x1) hit_watchpoint_addr = ab_address[i]; } else { if ((buf[0] & 0x1) == 0x1) hit_watchpoint_addr = ab_address[i]; } } send_three_arg_cmd (SDI_WRITE_MEMORY, 0xffff8100 + 4 * i, 4, 0x00000000); } } if (remote_debug) fprintf_unfiltered (gdb_stdlog, "pc => 0x%lx\n", pc_addr); return inferior_ptid; } /* Terminate the open connection to the remote debugger. Use this when you want to detach and do something else with your gdb. */ static void m32r_detach (struct target_ops *ops, char *args, int from_tty) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_detach(%d)\n", from_tty); m32r_resume (ops, inferior_ptid, 0, GDB_SIGNAL_0); /* Calls m32r_close to do the real work. */ pop_target (); if (from_tty) fprintf_unfiltered (gdb_stdlog, "Ending remote %s debugging\n", target_shortname); } /* Return the id of register number REGNO. */ static int get_reg_id (int regno) { switch (regno) { case 20: return SDI_REG_BBPC; case 21: return SDI_REG_BPC; case 22: return SDI_REG_ACCL; case 23: return SDI_REG_ACCH; case 24: return SDI_REG_EVB; } return regno; } /* Fetch register REGNO, or all registers if REGNO is -1. Returns errno value. */ static void m32r_fetch_register (struct target_ops *ops, struct regcache *regcache, int regno) { struct gdbarch *gdbarch = get_regcache_arch (regcache); enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); unsigned long val, val2, regid; if (regno == -1) { for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache)); regno++) m32r_fetch_register (ops, regcache, regno); } else { char buffer[MAX_REGISTER_SIZE]; regid = get_reg_id (regno); send_one_arg_cmd (SDI_READ_CPU_REG, regid); val = recv_long_data (); if (regid == SDI_REG_PSW) { send_one_arg_cmd (SDI_READ_CPU_REG, SDI_REG_BBPSW); val2 = recv_long_data (); val = ((0x00cf & val2) << 8) | ((0xcf00 & val) >> 8); } if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_fetch_register(%d,0x%08lx)\n", regno, val); /* We got the number the register holds, but gdb expects to see a value in the target byte ordering. */ store_unsigned_integer (buffer, 4, byte_order, val); regcache_raw_supply (regcache, regno, buffer); } return; } /* Store register REGNO, or all if REGNO == 0. Return errno value. */ static void m32r_store_register (struct target_ops *ops, struct regcache *regcache, int regno) { int regid; ULONGEST regval, tmp; if (regno == -1) { for (regno = 0; regno < gdbarch_num_regs (get_regcache_arch (regcache)); regno++) m32r_store_register (ops, regcache, regno); } else { regcache_cooked_read_unsigned (regcache, regno, &regval); regid = get_reg_id (regno); if (regid == SDI_REG_PSW) { unsigned long psw, bbpsw; send_one_arg_cmd (SDI_READ_CPU_REG, SDI_REG_PSW); psw = recv_long_data (); send_one_arg_cmd (SDI_READ_CPU_REG, SDI_REG_BBPSW); bbpsw = recv_long_data (); tmp = (0x00cf & psw) | ((0x00cf & regval) << 8); send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_PSW, tmp); tmp = (0x0030 & bbpsw) | ((0xcf00 & regval) >> 8); send_two_arg_cmd (SDI_WRITE_CPU_REG, SDI_REG_BBPSW, tmp); } else { send_two_arg_cmd (SDI_WRITE_CPU_REG, regid, regval); } if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_store_register(%d,0x%08lu)\n", regno, (unsigned long) regval); } } /* 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. */ static void m32r_prepare_to_store (struct regcache *regcache) { /* Do nothing, since we can store individual regs. */ if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_prepare_to_store()\n"); } static void m32r_files_info (struct target_ops *target) { const char *file = "nothing"; if (exec_bfd) { file = bfd_get_filename (exec_bfd); printf_filtered ("\tAttached to %s running program %s\n", chip_name, file); } } /* Read/Write memory. */ static int m32r_xfer_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len, int write, struct mem_attrib *attrib, struct target_ops *target) { unsigned long taddr; unsigned char buf[0x2000]; int ret, c; taddr = memaddr; if (!mmu_on) { if ((taddr & 0xa0000000) == 0x80000000) taddr &= 0x7fffffff; } if (remote_debug) { if (write) fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory(%s,%d,write)\n", paddress (target_gdbarch, memaddr), len); else fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory(%s,%d,read)\n", paddress (target_gdbarch, memaddr), len); } if (write) { buf[0] = SDI_WRITE_MEMORY; store_long_parameter (buf + 1, taddr); store_long_parameter (buf + 5, len); if (len < 0x1000) { memcpy (buf + 9, myaddr, len); ret = send_data (buf, len + 9) - 9; } else { if (serial_write (sdi_desc, buf, 9) != 0) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory() failed\n"); return 0; } ret = send_data (myaddr, len); } } else { buf[0] = SDI_READ_MEMORY; store_long_parameter (buf + 1, taddr); store_long_parameter (buf + 5, len); if (serial_write (sdi_desc, buf, 9) != 0) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory() failed\n"); return 0; } c = serial_readchar (sdi_desc, SDI_TIMEOUT); if (c < 0 || c == '-') { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory() failed\n"); return 0; } ret = recv_data (myaddr, len); } if (ret <= 0) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_xfer_memory() fails\n"); return 0; } return ret; } static void m32r_kill (struct target_ops *ops) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_kill()\n"); inferior_ptid = null_ptid; delete_thread_silent (remote_m32r_ptid); return; } /* Clean up when a program exits. The program actually lives on in the remote processor's RAM, and may be run again without a download. Don't leave it full of breakpoint instructions. */ static void m32r_mourn_inferior (struct target_ops *ops) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_mourn_inferior()\n"); remove_breakpoints (); generic_mourn_inferior (); } static int m32r_insert_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) { CORE_ADDR addr = bp_tgt->placed_address; int ib_breakpoints; unsigned char buf[13]; int i, c; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_insert_breakpoint(%s,...)\n", paddress (gdbarch, addr)); if (use_ib_breakpoints) ib_breakpoints = max_ib_breakpoints; else ib_breakpoints = 0; for (i = 0; i < MAX_BREAKPOINTS; i++) { if (bp_address[i] == 0xffffffff) { bp_address[i] = addr; if (i >= ib_breakpoints) { buf[0] = SDI_READ_MEMORY; if (mmu_on) store_long_parameter (buf + 1, addr & 0xfffffffc); else store_long_parameter (buf + 1, addr & 0x7ffffffc); store_long_parameter (buf + 5, 4); serial_write (sdi_desc, buf, 9); c = serial_readchar (sdi_desc, SDI_TIMEOUT); if (c != '-') recv_data (bp_data[i], 4); } return 0; } } error (_("Too many breakpoints")); return 1; } static int m32r_remove_breakpoint (struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) { CORE_ADDR addr = bp_tgt->placed_address; int i; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_remove_breakpoint(%s)\n", paddress (gdbarch, addr)); for (i = 0; i < MAX_BREAKPOINTS; i++) { if (bp_address[i] == addr) { bp_address[i] = 0xffffffff; break; } } return 0; } static void m32r_load (char *args, int from_tty) { struct cleanup *old_chain; asection *section; bfd *pbfd; bfd_vma entry; char *filename; int quiet; int nostart; struct timeval start_time, end_time; unsigned long data_count; /* Number of bytes transferred to memory. */ static RETSIGTYPE (*prev_sigint) (); /* for direct tcp connections, we can do a fast binary download. */ quiet = 0; nostart = 0; filename = NULL; while (*args != '\000') { char *arg; while (isspace (*args)) args++; arg = args; while ((*args != '\000') && !isspace (*args)) args++; if (*args != '\000') *args++ = '\000'; if (*arg != '-') filename = arg; else if (strncmp (arg, "-quiet", strlen (arg)) == 0) quiet = 1; else if (strncmp (arg, "-nostart", strlen (arg)) == 0) nostart = 1; else error (_("Unknown option `%s'"), arg); } if (!filename) filename = get_exec_file (1); pbfd = bfd_openr (filename, gnutarget); gdb_bfd_ref (pbfd); if (pbfd == NULL) { perror_with_name (filename); return; } old_chain = make_cleanup_bfd_unref (pbfd); if (!bfd_check_format (pbfd, bfd_object)) error (_("\"%s\" is not an object file: %s"), filename, bfd_errmsg (bfd_get_error ())); gettimeofday (&start_time, NULL); data_count = 0; interrupted = 0; prev_sigint = signal (SIGINT, gdb_cntrl_c); for (section = pbfd->sections; section; section = section->next) { if (bfd_get_section_flags (pbfd, section) & SEC_LOAD) { bfd_vma section_address; bfd_size_type section_size; file_ptr fptr; int n; section_address = bfd_section_lma (pbfd, section); section_size = bfd_get_section_size (section); if (!mmu_on) { if ((section_address & 0xa0000000) == 0x80000000) section_address &= 0x7fffffff; } if (!quiet) printf_filtered ("[Loading section %s at 0x%lx (%d bytes)]\n", bfd_get_section_name (pbfd, section), (unsigned long) section_address, (int) section_size); fptr = 0; data_count += section_size; n = 0; while (section_size > 0) { char unsigned buf[0x1000 + 9]; int count; count = min (section_size, 0x1000); buf[0] = SDI_WRITE_MEMORY; store_long_parameter (buf + 1, section_address); store_long_parameter (buf + 5, count); bfd_get_section_contents (pbfd, section, buf + 9, fptr, count); if (send_data (buf, count + 9) <= 0) error (_("Error while downloading %s section."), bfd_get_section_name (pbfd, section)); if (!quiet) { printf_unfiltered ("."); if (n++ > 60) { printf_unfiltered ("\n"); n = 0; } gdb_flush (gdb_stdout); } section_address += count; fptr += count; section_size -= count; if (interrupted) break; } if (!quiet && !interrupted) { printf_unfiltered ("done.\n"); gdb_flush (gdb_stdout); } } if (interrupted) { printf_unfiltered ("Interrupted.\n"); break; } } interrupted = 0; signal (SIGINT, prev_sigint); gettimeofday (&end_time, NULL); /* Make the PC point at the start address. */ if (exec_bfd) regcache_write_pc (get_current_regcache (), bfd_get_start_address (exec_bfd)); inferior_ptid = null_ptid; /* No process now. */ delete_thread_silent (remote_m32r_ptid); /* This is necessary because many things were based on the PC at the time that we attached to the monitor, which is no longer valid now that we have loaded new code (and just changed the PC). Another way to do this might be to call normal_stop, except that the stack may not be valid, and things would get horribly confused... */ clear_symtab_users (0); if (!nostart) { entry = bfd_get_start_address (pbfd); if (!quiet) printf_unfiltered ("[Starting %s at 0x%lx]\n", filename, (unsigned long) entry); } print_transfer_performance (gdb_stdout, data_count, 0, &start_time, &end_time); do_cleanups (old_chain); } static void m32r_stop (ptid_t ptid) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_stop()\n"); send_cmd (SDI_STOP_CPU); return; } /* Tell whether this target can support a hardware breakpoint. CNT is the number of hardware breakpoints already installed. This implements the target_can_use_hardware_watchpoint macro. */ static int m32r_can_use_hw_watchpoint (int type, int cnt, int othertype) { return sdi_desc != NULL && cnt < max_access_breaks; } /* Set a data watchpoint. ADDR and LEN should be obvious. TYPE is 0 for a write watchpoint, 1 for a read watchpoint, or 2 for a read/write watchpoint. */ static int m32r_insert_watchpoint (CORE_ADDR addr, int len, int type, struct expression *cond) { int i; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_insert_watchpoint(%s,%d,%d)\n", paddress (target_gdbarch, addr), len, type); for (i = 0; i < MAX_ACCESS_BREAKS; i++) { if (ab_address[i] == 0x00000000) { ab_address[i] = addr; ab_size[i] = len; ab_type[i] = type; return 0; } } error (_("Too many watchpoints")); return 1; } static int m32r_remove_watchpoint (CORE_ADDR addr, int len, int type, struct expression *cond) { int i; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_remove_watchpoint(%s,%d,%d)\n", paddress (target_gdbarch, addr), len, type); for (i = 0; i < MAX_ACCESS_BREAKS; i++) { if (ab_address[i] == addr) { ab_address[i] = 0x00000000; break; } } return 0; } static int m32r_stopped_data_address (struct target_ops *target, CORE_ADDR *addr_p) { int rc = 0; if (hit_watchpoint_addr != 0x00000000) { *addr_p = hit_watchpoint_addr; rc = 1; } return rc; } static int m32r_stopped_by_watchpoint (void) { CORE_ADDR addr; return m32r_stopped_data_address (&current_target, &addr); } /* Check to see if a thread is still alive. */ static int m32r_thread_alive (struct target_ops *ops, ptid_t ptid) { if (ptid_equal (ptid, remote_m32r_ptid)) /* The main task is always alive. */ return 1; return 0; } /* Convert a thread ID to a string. Returns the string in a static buffer. */ static char * m32r_pid_to_str (struct target_ops *ops, ptid_t ptid) { static char buf[64]; if (ptid_equal (remote_m32r_ptid, ptid)) { xsnprintf (buf, sizeof buf, "Thread <main>"); return buf; } return normal_pid_to_str (ptid); } static void sdireset_command (char *args, int from_tty) { if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_sdireset()\n"); send_cmd (SDI_OPEN); inferior_ptid = null_ptid; delete_thread_silent (remote_m32r_ptid); } static void sdistatus_command (char *args, int from_tty) { unsigned char buf[4096]; int i, c; if (remote_debug) fprintf_unfiltered (gdb_stdlog, "m32r_sdireset()\n"); if (!sdi_desc) return; send_cmd (SDI_STATUS); for (i = 0; i < 4096; i++) { c = serial_readchar (sdi_desc, SDI_TIMEOUT); if (c < 0) return; buf[i] = c; if (c == 0) break; } printf_filtered ("%s", buf); } static void debug_chaos_command (char *args, int from_tty) { unsigned char buf[3]; buf[0] = SDI_SET_ATTR; buf[1] = SDI_ATTR_CACHE; buf[2] = SDI_CACHE_TYPE_CHAOS; send_data (buf, 3); } static void use_debug_dma_command (char *args, int from_tty) { unsigned char buf[3]; buf[0] = SDI_SET_ATTR; buf[1] = SDI_ATTR_MEM_ACCESS; buf[2] = SDI_MEM_ACCESS_DEBUG_DMA; send_data (buf, 3); } static void use_mon_code_command (char *args, int from_tty) { unsigned char buf[3]; buf[0] = SDI_SET_ATTR; buf[1] = SDI_ATTR_MEM_ACCESS; buf[2] = SDI_MEM_ACCESS_MON_CODE; send_data (buf, 3); } static void use_ib_breakpoints_command (char *args, int from_tty) { use_ib_breakpoints = 1; } static void use_dbt_breakpoints_command (char *args, int from_tty) { use_ib_breakpoints = 0; } static int m32r_return_one (struct target_ops *target) { return 1; } /* Implementation of the to_has_execution method. */ static int m32r_has_execution (struct target_ops *target, ptid_t the_ptid) { return 1; } /* Define the target subroutine names. */ struct target_ops m32r_ops; static void init_m32r_ops (void) { m32r_ops.to_shortname = "m32rsdi"; m32r_ops.to_longname = "Remote M32R debugging over SDI interface"; m32r_ops.to_doc = "Use an M32R board using SDI debugging protocol."; m32r_ops.to_open = m32r_open; m32r_ops.to_close = m32r_close; m32r_ops.to_detach = m32r_detach; m32r_ops.to_resume = m32r_resume; m32r_ops.to_wait = m32r_wait; m32r_ops.to_fetch_registers = m32r_fetch_register; m32r_ops.to_store_registers = m32r_store_register; m32r_ops.to_prepare_to_store = m32r_prepare_to_store; m32r_ops.deprecated_xfer_memory = m32r_xfer_memory; m32r_ops.to_files_info = m32r_files_info; m32r_ops.to_insert_breakpoint = m32r_insert_breakpoint; m32r_ops.to_remove_breakpoint = m32r_remove_breakpoint; m32r_ops.to_can_use_hw_breakpoint = m32r_can_use_hw_watchpoint; m32r_ops.to_insert_watchpoint = m32r_insert_watchpoint; m32r_ops.to_remove_watchpoint = m32r_remove_watchpoint; m32r_ops.to_stopped_by_watchpoint = m32r_stopped_by_watchpoint; m32r_ops.to_stopped_data_address = m32r_stopped_data_address; m32r_ops.to_kill = m32r_kill; m32r_ops.to_load = m32r_load; m32r_ops.to_create_inferior = m32r_create_inferior; m32r_ops.to_mourn_inferior = m32r_mourn_inferior; m32r_ops.to_stop = m32r_stop; m32r_ops.to_log_command = serial_log_command; m32r_ops.to_thread_alive = m32r_thread_alive; m32r_ops.to_pid_to_str = m32r_pid_to_str; m32r_ops.to_stratum = process_stratum; m32r_ops.to_has_all_memory = m32r_return_one; m32r_ops.to_has_memory = m32r_return_one; m32r_ops.to_has_stack = m32r_return_one; m32r_ops.to_has_registers = m32r_return_one; m32r_ops.to_has_execution = m32r_has_execution; m32r_ops.to_magic = OPS_MAGIC; }; extern initialize_file_ftype _initialize_remote_m32r; void _initialize_remote_m32r (void) { int i; init_m32r_ops (); /* Initialize breakpoints. */ for (i = 0; i < MAX_BREAKPOINTS; i++) bp_address[i] = 0xffffffff; /* Initialize access breaks. */ for (i = 0; i < MAX_ACCESS_BREAKS; i++) ab_address[i] = 0x00000000; add_target (&m32r_ops); add_com ("sdireset", class_obscure, sdireset_command, _("Reset SDI connection.")); add_com ("sdistatus", class_obscure, sdistatus_command, _("Show status of SDI connection.")); add_com ("debug_chaos", class_obscure, debug_chaos_command, _("Debug M32R/Chaos.")); add_com ("use_debug_dma", class_obscure, use_debug_dma_command, _("Use debug DMA mem access.")); add_com ("use_mon_code", class_obscure, use_mon_code_command, _("Use mon code mem access.")); add_com ("use_ib_break", class_obscure, use_ib_breakpoints_command, _("Set breakpoints by IB break.")); add_com ("use_dbt_break", class_obscure, use_dbt_breakpoints_command, _("Set breakpoints by dbt.")); /* Yes, 42000 is arbitrary. The only sense out of it, is that it isn't 0. */ remote_m32r_ptid = ptid_build (42000, 0, 42000); }