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