OSDN Git Service

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