]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - bfd/archures.c
* Makefile.am (ALL_MACHINES,BFD32_BACKENDS): Add txvu support.
[thirdparty/binutils-gdb.git] / bfd / archures.c
1 /* BFD library support routines for architectures.
2 Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
3 Hacked by John Gilmore and Steve Chamberlain of Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include "bfd.h"
22 #include "sysdep.h"
23 #include "libbfd.h"
24 #include <ctype.h>
25
26 /*
27
28 SECTION
29 Architectures
30
31 BFD keeps one atom in a BFD describing the
32 architecture of the data attached to the BFD: a pointer to a
33 <<bfd_arch_info_type>>.
34
35 Pointers to structures can be requested independently of a BFD
36 so that an architecture's information can be interrogated
37 without access to an open BFD.
38
39 The architecture information is provided by each architecture package.
40 The set of default architectures is selected by the macro
41 <<SELECT_ARCHITECTURES>>. This is normally set up in the
42 @file{config/@var{target}.mt} file of your choice. If the name is not
43 defined, then all the architectures supported are included.
44
45 When BFD starts up, all the architectures are called with an
46 initialize method. It is up to the architecture back end to
47 insert as many items into the list of architectures as it wants to;
48 generally this would be one for each machine and one for the
49 default case (an item with a machine field of 0).
50
51 BFD's idea of an architecture is implemented in @file{archures.c}.
52 */
53
54 /*
55
56 SUBSECTION
57 bfd_architecture
58
59 DESCRIPTION
60 This enum gives the object file's CPU architecture, in a
61 global sense---i.e., what processor family does it belong to?
62 Another field indicates which processor within
63 the family is in use. The machine gives a number which
64 distinguishes different versions of the architecture,
65 containing, for example, 2 and 3 for Intel i960 KA and i960 KB,
66 and 68020 and 68030 for Motorola 68020 and 68030.
67
68 .enum bfd_architecture
69 .{
70 . bfd_arch_unknown, {* File arch not known *}
71 . bfd_arch_obscure, {* Arch known, not one of these *}
72 . bfd_arch_m68k, {* Motorola 68xxx *}
73 . bfd_arch_vax, {* DEC Vax *}
74 . bfd_arch_i960, {* Intel 960 *}
75 . {* The order of the following is important.
76 . lower number indicates a machine type that
77 . only accepts a subset of the instructions
78 . available to machines with higher numbers.
79 . The exception is the "ca", which is
80 . incompatible with all other machines except
81 . "core". *}
82 .
83 .#define bfd_mach_i960_core 1
84 .#define bfd_mach_i960_ka_sa 2
85 .#define bfd_mach_i960_kb_sb 3
86 .#define bfd_mach_i960_mc 4
87 .#define bfd_mach_i960_xa 5
88 .#define bfd_mach_i960_ca 6
89 .#define bfd_mach_i960_jx 7
90 .#define bfd_mach_i960_hx 8
91 .
92 . bfd_arch_a29k, {* AMD 29000 *}
93 . bfd_arch_sparc, {* SPARC *}
94 .#define bfd_mach_sparc 1
95 .{* The difference between v8plus and v9 is that v9 is a true 64 bit env. *}
96 .#define bfd_mach_sparc_sparclet 2
97 .#define bfd_mach_sparc_sparclite 3
98 .#define bfd_mach_sparc_v8plus 4
99 .#define bfd_mach_sparc_v8plusa 5 {* with ultrasparc add'ns *}
100 .#define bfd_mach_sparc_v9 6
101 .#define bfd_mach_sparc_v9a 7 {* with ultrasparc add'ns *}
102 .{* Nonzero if MACH has the v9 instruction set. *}
103 .#define bfd_mach_sparc_v9_p(mach) \
104 . ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9a)
105 . bfd_arch_mips, {* MIPS Rxxxx *}
106 .#define bfd_mach_mips3000 3000
107 .#define bfd_mach_mips6000 6000
108 .#define bfd_mach_mips4000 4000
109 .#define bfd_mach_mips8000 8000
110 .#define bfd_mach_mips16 16
111 . {* start-sanitize-vr5400 *}
112 .#define bfd_mach_vr5400 5400
113 .#define bfd_mach_vr5000 5000
114 . {* end-sanitize-vr5400 *}
115 . bfd_arch_i386, {* Intel 386 *}
116 .#define bfd_mach_i386_i386 0
117 .#define bfd_mach_i386_i8086 1
118 . bfd_arch_we32k, {* AT&T WE32xxx *}
119 . bfd_arch_tahoe, {* CCI/Harris Tahoe *}
120 . bfd_arch_i860, {* Intel 860 *}
121 . bfd_arch_romp, {* IBM ROMP PC/RT *}
122 . bfd_arch_alliant, {* Alliant *}
123 . bfd_arch_convex, {* Convex *}
124 . bfd_arch_m88k, {* Motorola 88xxx *}
125 . bfd_arch_pyramid, {* Pyramid Technology *}
126 . bfd_arch_h8300, {* Hitachi H8/300 *}
127 .#define bfd_mach_h8300 1
128 .#define bfd_mach_h8300h 2
129 .#define bfd_mach_h8300s 3
130 . bfd_arch_powerpc, {* PowerPC *}
131 . bfd_arch_rs6000, {* IBM RS/6000 *}
132 . bfd_arch_hppa, {* HP PA RISC *}
133 . bfd_arch_d10v, {* Mitsubishi D10V *}
134 . {* start-sanitize-d30v *}
135 . bfd_arch_d30v, {* Mitsubishi D30V *}
136 . {* end-sanitize-d30v *}
137 . bfd_arch_z8k, {* Zilog Z8000 *}
138 .#define bfd_mach_z8001 1
139 .#define bfd_mach_z8002 2
140 . bfd_arch_h8500, {* Hitachi H8/500 *}
141 . bfd_arch_sh, {* Hitachi SH *}
142 .#define bfd_mach_sh 0
143 .#define bfd_mach_sh3 0x30
144 .#define bfd_mach_sh3e 0x3e
145 . {* start-sanitize-sh4 *}
146 .#define bfd_mach_sh4 0x40
147 . {* end-sanitize-sh4 *}
148 . bfd_arch_alpha, {* Dec Alpha *}
149 . bfd_arch_arm, {* Advanced Risc Machines ARM *}
150 .#define bfd_mach_arm_2 1
151 .#define bfd_mach_arm_2a 2
152 .#define bfd_mach_arm_3 3
153 .#define bfd_mach_arm_3M 4
154 .#define bfd_mach_arm_4 5
155 .#define bfd_mach_arm_4T 6
156 . bfd_arch_ns32k, {* National Semiconductors ns32000 *}
157 . bfd_arch_w65, {* WDC 65816 *}
158 . {* start-sanitize-tic80 *}
159 . bfd_arch_tic80, {* TI TMS320c80 (MVP) *}
160 . {* end-sanitize-tic80 *}
161 . {* start-sanitize-sky *}
162 . bfd_arch_txvu, {* TX VU *}
163 .#define bfd_mach_txvu 0
164 . {* end-sanitize-sky *}
165 . bfd_arch_v850, {* NEC V850 *}
166 .#define bfd_mach_v850 0
167 . {* start-sanitize-v850e *}
168 .#define bfd_mach_v850e 'E'
169 .#define bfd_mach_v850ea 'A'
170 . {* end-sanitize-v850e *}
171 . bfd_arch_arc, {* Argonaut RISC Core *}
172 .#define bfd_mach_arc_base 0
173 . bfd_arch_m32r, {* Mitsubishi M32R/D *}
174 .#define bfd_mach_m32r 0 {* backwards compatibility *}
175 . {* start-sanitize-m32rx *}
176 .#define bfd_mach_m32rx 'x'
177 . {* end-sanitize-m32rx *}
178 . bfd_arch_mn10200, {* Matsushita MN10200 *}
179 . bfd_arch_mn10300, {* Matsushita MN10300 *}
180 . bfd_arch_last
181 . };
182
183
184 */
185
186 /*
187
188 SUBSECTION
189 bfd_arch_info
190
191 DESCRIPTION
192 This structure contains information on architectures for use
193 within BFD.
194
195 .
196 .typedef struct bfd_arch_info
197 .{
198 . int bits_per_word;
199 . int bits_per_address;
200 . int bits_per_byte;
201 . enum bfd_architecture arch;
202 . unsigned long mach;
203 . const char *arch_name;
204 . const char *printable_name;
205 . unsigned int section_align_power;
206 . {* true if this is the default machine for the architecture *}
207 . boolean the_default;
208 . const struct bfd_arch_info * (*compatible)
209 . PARAMS ((const struct bfd_arch_info *a,
210 . const struct bfd_arch_info *b));
211 .
212 . boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *));
213 .
214 . const struct bfd_arch_info *next;
215 .} bfd_arch_info_type;
216 */
217
218 extern const bfd_arch_info_type bfd_a29k_arch;
219 extern const bfd_arch_info_type bfd_alpha_arch;
220 extern const bfd_arch_info_type bfd_arc_arch;
221 extern const bfd_arch_info_type bfd_arm_arch;
222 extern const bfd_arch_info_type bfd_d10v_arch;
223 /* start-sanitize-d30v */
224 extern const bfd_arch_info_type bfd_d30v_arch;
225 /* end-sanitize-d30v */
226 extern const bfd_arch_info_type bfd_h8300_arch;
227 extern const bfd_arch_info_type bfd_h8500_arch;
228 extern const bfd_arch_info_type bfd_hppa_arch;
229 extern const bfd_arch_info_type bfd_i386_arch;
230 extern const bfd_arch_info_type bfd_i860_arch;
231 extern const bfd_arch_info_type bfd_i960_arch;
232 extern const bfd_arch_info_type bfd_m32r_arch;
233 extern const bfd_arch_info_type bfd_m68k_arch;
234 extern const bfd_arch_info_type bfd_m88k_arch;
235 extern const bfd_arch_info_type bfd_mips_arch;
236 extern const bfd_arch_info_type bfd_mn10200_arch;
237 extern const bfd_arch_info_type bfd_mn10300_arch;
238 extern const bfd_arch_info_type bfd_powerpc_arch;
239 extern const bfd_arch_info_type bfd_rs6000_arch;
240 extern const bfd_arch_info_type bfd_sh_arch;
241 extern const bfd_arch_info_type bfd_sparc_arch;
242 /* start-sanitize-tic80 */
243 extern const bfd_arch_info_type bfd_tic80_arch;
244 /* end-sanitize-tic80 */
245 /* start-sanitize-sky */
246 extern const bfd_arch_info_type bfd_txvu_arch;
247 /* end-sanitize-sky */
248 extern const bfd_arch_info_type bfd_vax_arch;
249 extern const bfd_arch_info_type bfd_we32k_arch;
250 extern const bfd_arch_info_type bfd_z8k_arch;
251 extern const bfd_arch_info_type bfd_ns32k_arch;
252 extern const bfd_arch_info_type bfd_w65_arch;
253 extern const bfd_arch_info_type bfd_v850_arch;
254
255 static const bfd_arch_info_type * const bfd_archures_list[] =
256 {
257 #ifdef SELECT_ARCHITECTURES
258 SELECT_ARCHITECTURES,
259 #else
260 &bfd_a29k_arch,
261 &bfd_alpha_arch,
262 &bfd_arc_arch,
263 &bfd_arm_arch,
264 &bfd_d10v_arch,
265 /* start-sanitize-d30v */
266 &bfd_d30v_arch,
267 /* end-sanitize-d30v */
268 &bfd_h8300_arch,
269 &bfd_h8500_arch,
270 &bfd_hppa_arch,
271 &bfd_i386_arch,
272 &bfd_i860_arch,
273 &bfd_i960_arch,
274 &bfd_m32r_arch,
275 &bfd_m68k_arch,
276 &bfd_m88k_arch,
277 &bfd_mips_arch,
278 &bfd_mn10200_arch,
279 &bfd_mn10300_arch,
280 &bfd_powerpc_arch,
281 &bfd_rs6000_arch,
282 &bfd_sh_arch,
283 &bfd_sparc_arch,
284 /* start-sanitize-tic80 */
285 &bfd_tic80_arch,
286 /* end-sanitize-tic80 */
287 /* start-sanitize-sky */
288 &bfd_txvu_arch,
289 /* end-sanitize-sky */
290 &bfd_vax_arch,
291 &bfd_we32k_arch,
292 &bfd_z8k_arch,
293 &bfd_ns32k_arch,
294 &bfd_w65_arch,
295 &bfd_v850_arch,
296 #endif
297 0
298 };
299
300 /*
301 FUNCTION
302 bfd_printable_name
303
304 SYNOPSIS
305 const char *bfd_printable_name(bfd *abfd);
306
307 DESCRIPTION
308 Return a printable string representing the architecture and machine
309 from the pointer to the architecture info structure.
310
311 */
312
313 const char *
314 bfd_printable_name (abfd)
315 bfd *abfd;
316 {
317 return abfd->arch_info->printable_name;
318 }
319
320
321
322 /*
323 FUNCTION
324 bfd_scan_arch
325
326 SYNOPSIS
327 const bfd_arch_info_type *bfd_scan_arch(const char *string);
328
329 DESCRIPTION
330 Figure out if BFD supports any cpu which could be described with
331 the name @var{string}. Return a pointer to an <<arch_info>>
332 structure if a machine is found, otherwise NULL.
333
334 */
335
336 const bfd_arch_info_type *
337 bfd_scan_arch (string)
338 const char *string;
339 {
340 const bfd_arch_info_type * const *app, *ap;
341
342 /* Look through all the installed architectures */
343 for (app = bfd_archures_list; *app != NULL; app++)
344 {
345 for (ap = *app; ap != NULL; ap = ap->next)
346 {
347 if (ap->scan (ap, string))
348 return ap;
349 }
350 }
351
352 return NULL;
353 }
354
355
356
357 /*
358 FUNCTION
359 bfd_arch_list
360
361 SYNOPSIS
362 const char **bfd_arch_list(void);
363
364 DESCRIPTION
365 Return a freshly malloced NULL-terminated vector of the names
366 of all the valid BFD architectures. Do not modify the names.
367
368 */
369
370 const char **
371 bfd_arch_list ()
372 {
373 int vec_length = 0;
374 const char **name_ptr;
375 const char **name_list;
376 const bfd_arch_info_type * const *app;
377
378 /* Determine the number of architectures */
379 vec_length = 0;
380 for (app = bfd_archures_list; *app != NULL; app++)
381 {
382 const bfd_arch_info_type *ap;
383 for (ap = *app; ap != NULL; ap = ap->next)
384 {
385 vec_length++;
386 }
387 }
388
389 name_list = (CONST char **)
390 bfd_malloc ((vec_length + 1) * sizeof (char **));
391 if (name_list == NULL)
392 return NULL;
393
394 /* Point the list at each of the names */
395 name_ptr = name_list;
396 for (app = bfd_archures_list; *app != NULL; app++)
397 {
398 const bfd_arch_info_type *ap;
399 for (ap = *app; ap != NULL; ap = ap->next)
400 {
401 *name_ptr = ap->printable_name;
402 name_ptr++;
403 }
404 }
405 *name_ptr = NULL;
406
407 return name_list;
408 }
409
410
411
412 /*
413 FUNCTION
414 bfd_arch_get_compatible
415
416 SYNOPSIS
417 const bfd_arch_info_type *bfd_arch_get_compatible(
418 const bfd *abfd,
419 const bfd *bbfd);
420
421 DESCRIPTION
422 Determine whether two BFDs'
423 architectures and machine types are compatible. Calculates
424 the lowest common denominator between the two architectures
425 and machine types implied by the BFDs and returns a pointer to
426 an <<arch_info>> structure describing the compatible machine.
427 */
428
429 const bfd_arch_info_type *
430 bfd_arch_get_compatible (abfd, bbfd)
431 const bfd *abfd;
432 const bfd *bbfd;
433 {
434 /* If either architecture is unknown, then all we can do is assume
435 the user knows what he's doing. */
436 if (abfd->arch_info->arch == bfd_arch_unknown)
437 return bbfd->arch_info;
438 if (bbfd->arch_info->arch == bfd_arch_unknown)
439 return abfd->arch_info;
440
441 /* Otherwise architecture-specific code has to decide. */
442 return abfd->arch_info->compatible (abfd->arch_info, bbfd->arch_info);
443 }
444
445
446 /*
447 INTERNAL_DEFINITION
448 bfd_default_arch_struct
449
450 DESCRIPTION
451 The <<bfd_default_arch_struct>> is an item of
452 <<bfd_arch_info_type>> which has been initialized to a fairly
453 generic state. A BFD starts life by pointing to this
454 structure, until the correct back end has determined the real
455 architecture of the file.
456
457 .extern const bfd_arch_info_type bfd_default_arch_struct;
458
459 */
460
461 const bfd_arch_info_type bfd_default_arch_struct =
462 {
463 32,32,8,bfd_arch_unknown,0,"unknown","unknown",2,true,
464 bfd_default_compatible,
465 bfd_default_scan,
466 0,
467 };
468
469 /*
470 FUNCTION
471 bfd_set_arch_info
472
473 SYNOPSIS
474 void bfd_set_arch_info(bfd *abfd, const bfd_arch_info_type *arg);
475
476 DESCRIPTION
477 Set the architecture info of @var{abfd} to @var{arg}.
478 */
479
480 void
481 bfd_set_arch_info (abfd, arg)
482 bfd *abfd;
483 const bfd_arch_info_type *arg;
484 {
485 abfd->arch_info = arg;
486 }
487
488 /*
489 INTERNAL_FUNCTION
490 bfd_default_set_arch_mach
491
492 SYNOPSIS
493 boolean bfd_default_set_arch_mach(bfd *abfd,
494 enum bfd_architecture arch,
495 unsigned long mach);
496
497 DESCRIPTION
498 Set the architecture and machine type in BFD @var{abfd}
499 to @var{arch} and @var{mach}. Find the correct
500 pointer to a structure and insert it into the <<arch_info>>
501 pointer.
502 */
503
504 boolean
505 bfd_default_set_arch_mach (abfd, arch, mach)
506 bfd *abfd;
507 enum bfd_architecture arch;
508 unsigned long mach;
509 {
510 const bfd_arch_info_type * const *app, *ap;
511
512 for (app = bfd_archures_list; *app != NULL; app++)
513 {
514 for (ap = *app; ap != NULL; ap = ap->next)
515 {
516 if (ap->arch == arch
517 && (ap->mach == mach
518 || (mach == 0 && ap->the_default)))
519 {
520 abfd->arch_info = ap;
521 return true;
522 }
523 }
524 }
525
526 abfd->arch_info = &bfd_default_arch_struct;
527 bfd_set_error (bfd_error_bad_value);
528 return false;
529 }
530
531
532 /*
533 FUNCTION
534 bfd_get_arch
535
536 SYNOPSIS
537 enum bfd_architecture bfd_get_arch(bfd *abfd);
538
539 DESCRIPTION
540 Return the enumerated type which describes the BFD @var{abfd}'s
541 architecture.
542
543 */
544
545 enum bfd_architecture
546 bfd_get_arch (abfd)
547 bfd *abfd;
548 {
549 return abfd->arch_info->arch;
550 }
551
552 /*
553 FUNCTION
554 bfd_get_mach
555
556 SYNOPSIS
557 unsigned long bfd_get_mach(bfd *abfd);
558
559 DESCRIPTION
560 Return the long type which describes the BFD @var{abfd}'s
561 machine.
562 */
563
564 unsigned long
565 bfd_get_mach (abfd)
566 bfd *abfd;
567 {
568 return abfd->arch_info->mach;
569 }
570
571 /*
572 FUNCTION
573 bfd_arch_bits_per_byte
574
575 SYNOPSIS
576 unsigned int bfd_arch_bits_per_byte(bfd *abfd);
577
578 DESCRIPTION
579 Return the number of bits in one of the BFD @var{abfd}'s
580 architecture's bytes.
581
582 */
583
584 unsigned int
585 bfd_arch_bits_per_byte (abfd)
586 bfd *abfd;
587 {
588 return abfd->arch_info->bits_per_byte;
589 }
590
591 /*
592 FUNCTION
593 bfd_arch_bits_per_address
594
595 SYNOPSIS
596 unsigned int bfd_arch_bits_per_address(bfd *abfd);
597
598 DESCRIPTION
599 Return the number of bits in one of the BFD @var{abfd}'s
600 architecture's addresses.
601 */
602
603 unsigned int
604 bfd_arch_bits_per_address (abfd)
605 bfd *abfd;
606 {
607 return abfd->arch_info->bits_per_address;
608 }
609
610
611 /*
612 INTERNAL_FUNCTION
613 bfd_default_compatible
614
615 SYNOPSIS
616 const bfd_arch_info_type *bfd_default_compatible
617 (const bfd_arch_info_type *a,
618 const bfd_arch_info_type *b);
619
620 DESCRIPTION
621 The default function for testing for compatibility.
622 */
623
624 const bfd_arch_info_type *
625 bfd_default_compatible (a,b)
626 const bfd_arch_info_type *a;
627 const bfd_arch_info_type *b;
628 {
629 if (a->arch != b->arch)
630 return NULL;
631
632 if (a->mach > b->mach)
633 return a;
634
635 if (b->mach > a->mach)
636 return b;
637
638 return a;
639 }
640
641
642 /*
643 INTERNAL_FUNCTION
644 bfd_default_scan
645
646 SYNOPSIS
647 boolean bfd_default_scan(const struct bfd_arch_info *info, const char *string);
648
649 DESCRIPTION
650 The default function for working out whether this is an
651 architecture hit and a machine hit.
652 */
653
654 boolean
655 bfd_default_scan (info, string)
656 const struct bfd_arch_info *info;
657 const char *string;
658 {
659 const char *ptr_src;
660 const char *ptr_tst;
661 unsigned long number;
662 enum bfd_architecture arch;
663 const char *printable_name_colon;
664
665 /* Exact match of the architecture name (ARCH_NAME) and also the
666 default architecture? */
667 if (strcasecmp (string, info->arch_name) == 0
668 && info->the_default)
669 return true;
670
671 /* Exact match of the machine name (PRINTABLE_NAME)? */
672 if (strcasecmp (string, info->printable_name) == 0)
673 return true;
674
675 /* Given that printable_name contains no colon, attempt to match:
676 ARCH_NAME [ ":" ] PRINTABLE_NAME? */
677 printable_name_colon = strchr (info->printable_name, ':');
678 if (printable_name_colon == NULL)
679 {
680 int strlen_arch_name = strlen (info->arch_name);
681 if (strncasecmp (string, info->arch_name, strlen_arch_name) == 0)
682 if (string[strlen_arch_name] == ':')
683 {
684 if (strcasecmp (string + strlen_arch_name + 1,
685 info->printable_name) == 0)
686 return true;
687 }
688 else
689 {
690 if (strcasecmp (string + strlen_arch_name,
691 info->printable_name) == 0)
692 return true;
693 }
694 }
695
696 /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>;
697 Attempt to match: <arch> <mach>? */
698 if (printable_name_colon != NULL)
699 {
700 int colon_index = printable_name_colon - info->printable_name;
701 if (strncasecmp (string, info->printable_name, colon_index) == 0
702 && strcasecmp (string + colon_index,
703 info->printable_name + colon_index + 1) == 0)
704 return true;
705 }
706
707 /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>; Do not
708 attempt to match just <mach>, it could be ambigious. This test
709 is left until later. */
710
711 /* NOTE: The below is retained for compatibility only. Please do not
712 add to this code */
713
714 /* See how much of the supplied string matches with the
715 architecture, eg the string m68k:68020 would match the 68k entry
716 up to the :, then we get left with the machine number */
717
718 for (ptr_src = string, ptr_tst = info->arch_name;
719 *ptr_src && *ptr_tst;
720 ptr_src++, ptr_tst++)
721 {
722 if (*ptr_src != *ptr_tst) break;
723 }
724
725 /* Chewed up as much of the architecture as will match, skip any
726 colons */
727 if (*ptr_src == ':')
728 ptr_src++;
729
730 if (*ptr_src == 0)
731 {
732 /* nothing more, then only keep this one if it is the default
733 machine for this architecture */
734 return info->the_default;
735 }
736
737 number = 0;
738 while (isdigit(*ptr_src))
739 {
740 number = number * 10 + *ptr_src - '0';
741 ptr_src++;
742 }
743
744 /* NOTE: The below is retained for compatibility only.
745 PLEASE DO NOT ADD TO THIS CODE. */
746
747 switch (number)
748 {
749 case 68010:
750 case 68020:
751 case 68030:
752 case 68040:
753 case 68332:
754 case 68050:
755 case 68000:
756 arch = bfd_arch_m68k;
757 break;
758
759 case 32000:
760 arch = bfd_arch_we32k;
761 break;
762
763 case 3000:
764 arch = bfd_arch_mips;
765 number = bfd_mach_mips3000;
766 break;
767
768 case 4000:
769 arch = bfd_arch_mips;
770 number = bfd_mach_mips4000;
771 break;
772
773 case 6000:
774 arch = bfd_arch_rs6000;
775 break;
776
777 default:
778 return false;
779 }
780
781 if (arch != info->arch)
782 return false;
783
784 if (number != info->mach)
785 return false;
786
787 return true;
788 }
789
790
791 /*
792 FUNCTION
793 bfd_get_arch_info
794
795 SYNOPSIS
796 const bfd_arch_info_type * bfd_get_arch_info(bfd *abfd);
797
798 DESCRIPTION
799 Return the architecture info struct in @var{abfd}.
800 */
801
802 const bfd_arch_info_type *
803 bfd_get_arch_info (abfd)
804 bfd *abfd;
805 {
806 return abfd->arch_info;
807 }
808
809
810 /*
811 FUNCTION
812 bfd_lookup_arch
813
814 SYNOPSIS
815 const bfd_arch_info_type *bfd_lookup_arch
816 (enum bfd_architecture
817 arch,
818 unsigned long machine);
819
820 DESCRIPTION
821 Look for the architecure info structure which matches the
822 arguments @var{arch} and @var{machine}. A machine of 0 matches the
823 machine/architecture structure which marks itself as the
824 default.
825 */
826
827 const bfd_arch_info_type *
828 bfd_lookup_arch (arch, machine)
829 enum bfd_architecture arch;
830 unsigned long machine;
831 {
832 const bfd_arch_info_type * const *app, *ap;
833
834 for (app = bfd_archures_list; *app != NULL; app++)
835 {
836 for (ap = *app; ap != NULL; ap = ap->next)
837 {
838 if (ap->arch == arch
839 && (ap->mach == machine
840 || (machine == 0 && ap->the_default)))
841 return ap;
842 }
843 }
844
845 return NULL;
846 }
847
848
849 /*
850 FUNCTION
851 bfd_printable_arch_mach
852
853 SYNOPSIS
854 const char *bfd_printable_arch_mach
855 (enum bfd_architecture arch, unsigned long machine);
856
857 DESCRIPTION
858 Return a printable string representing the architecture and
859 machine type.
860
861 This routine is depreciated.
862 */
863
864 const char *
865 bfd_printable_arch_mach (arch, machine)
866 enum bfd_architecture arch;
867 unsigned long machine;
868 {
869 const bfd_arch_info_type *ap = bfd_lookup_arch (arch, machine);
870
871 if (ap)
872 return ap->printable_name;
873 return "UNKNOWN!";
874 }