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