various evax patches
[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)
9fda1a39
SC
105. bfd_arch_mips, {* MIPS Rxxxx *}
106. bfd_arch_i386, {* Intel 386 *}
9676e446
SG
107.#define bfd_mach_i386_i386 0
108.#define bfd_mach_i386_i8086 1
71c0bae0 109. bfd_arch_we32k, {* AT&T WE32xxx *}
9fda1a39
SC
110. bfd_arch_tahoe, {* CCI/Harris Tahoe *}
111. bfd_arch_i860, {* Intel 860 *}
112. bfd_arch_romp, {* IBM ROMP PC/RT *}
113. bfd_arch_alliant, {* Alliant *}
114. bfd_arch_convex, {* Convex *}
115. bfd_arch_m88k, {* Motorola 88xxx *}
116. bfd_arch_pyramid, {* Pyramid Technology *}
117. bfd_arch_h8300, {* Hitachi H8/300 *}
2e235c93
ILT
118.#define bfd_mach_h8300 1
119.#define bfd_mach_h8300h 2
34255b70 120.#define bfd_mach_h8300s 3
d94aca1a 121. bfd_arch_powerpc, {* PowerPC *}
9fda1a39 122. bfd_arch_rs6000, {* IBM RS/6000 *}
e3c01e92 123. bfd_arch_hppa, {* HP PA RISC *}
efc2b064 124. bfd_arch_d10v, {* Mitsubishi D10V *}
fd8d7c31
MH
125. {* start-sanitize-d30v *}
126. bfd_arch_d30v, {* Mitsubishi D30V *}
127. {* end-sanitize-d30v *}
71c0bae0
KR
128. bfd_arch_z8k, {* Zilog Z8000 *}
129.#define bfd_mach_z8001 1
130.#define bfd_mach_z8002 2
2e235c93
ILT
131. bfd_arch_h8500, {* Hitachi H8/500 *}
132. bfd_arch_sh, {* Hitachi SH *}
f40d28bf
AC
133.#define bfd_mach_sh 0
134.#define bfd_mach_sh3 0x30
135.#define bfd_mach_sh3e 0x3e
136. {* start-sanitize-sh4 *}
137.#define bfd_mach_sh4 0x40
138. {* end-sanitize-sh4 *}
2e235c93 139. bfd_arch_alpha, {* Dec Alpha *}
d94aca1a 140. bfd_arch_arm, {* Advanced Risc Machines ARM *}
76af94b9
DE
141.#define bfd_mach_arm_2 1
142.#define bfd_mach_arm_2a 2
143.#define bfd_mach_arm_3 3
144.#define bfd_mach_arm_3M 4
145.#define bfd_mach_arm_4 5
146.#define bfd_mach_arm_4T 6
d94aca1a 147. bfd_arch_ns32k, {* National Semiconductors ns32000 *}
b7577823 148. bfd_arch_w65, {* WDC 65816 *}
fd8d7c31
MH
149. {* start-sanitize-tic80 *}
150. bfd_arch_tic80, {* TI TMS320c80 (MVP) *}
151. {* end-sanitize-tic80 *}
efc2b064 152. bfd_arch_v850, {* NEC V850 *}
f40d28bf 153.#define bfd_mach_v850 0
8988d935 154. {* start-sanitize-v850e *}
f40d28bf 155.#define bfd_mach_v850e 'E'
8988d935
NC
156. {* end-sanitize-v850e *}
157. {* start-sanitize-v850eq *}
aa7bd5a5 158.#define bfd_mach_v850eq 'Q'
8988d935 159. {* end-sanitize-v850eq *}
37648010 160. bfd_arch_arc, {* Argonaut RISC Core *}
b7577823 161.#define bfd_mach_arc_base 0
76af94b9 162. bfd_arch_m32r, {* Mitsubishi M32R/D *}
cd6213ff
FF
163. bfd_arch_mn10200, {* Matsushita MN10200 *}
164. bfd_arch_mn10300, {* Matsushita MN10300 *}
9fda1a39
SC
165. bfd_arch_last
166. };
c618de01 167
c618de01
SC
168
169*/
170
9fda1a39
SC
171/*
172
173SUBSECTION
174 bfd_arch_info
175
176DESCRIPTION
177 This structure contains information on architectures for use
178 within BFD.
179
9fda1a39
SC
180.
181.typedef struct bfd_arch_info
182.{
183. int bits_per_word;
184. int bits_per_address;
185. int bits_per_byte;
186. enum bfd_architecture arch;
ae115e51 187. unsigned long mach;
5bc513b4
DE
188. const char *arch_name;
189. const char *printable_name;
ce07dd7c
KR
190. unsigned int section_align_power;
191. {* true if this is the default machine for the architecture *}
9fda1a39 192. boolean the_default;
5bc513b4
DE
193. const struct bfd_arch_info * (*compatible)
194. PARAMS ((const struct bfd_arch_info *a,
195. const struct bfd_arch_info *b));
9fda1a39 196.
5bc513b4 197. boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *));
9fda1a39 198.
5bc513b4 199. const struct bfd_arch_info *next;
9fda1a39 200.} bfd_arch_info_type;
4e6f9223
SC
201*/
202
5bc513b4
DE
203extern const bfd_arch_info_type bfd_a29k_arch;
204extern const bfd_arch_info_type bfd_alpha_arch;
5bc513b4 205extern const bfd_arch_info_type bfd_arc_arch;
5bc513b4 206extern const bfd_arch_info_type bfd_arm_arch;
efc2b064 207extern const bfd_arch_info_type bfd_d10v_arch;
fd8d7c31
MH
208/* start-sanitize-d30v */
209extern const bfd_arch_info_type bfd_d30v_arch;
210/* end-sanitize-d30v */
5bc513b4
DE
211extern const bfd_arch_info_type bfd_h8300_arch;
212extern const bfd_arch_info_type bfd_h8500_arch;
213extern const bfd_arch_info_type bfd_hppa_arch;
214extern const bfd_arch_info_type bfd_i386_arch;
215extern const bfd_arch_info_type bfd_i860_arch;
216extern const bfd_arch_info_type bfd_i960_arch;
efc2b064 217extern const bfd_arch_info_type bfd_m32r_arch;
5bc513b4
DE
218extern const bfd_arch_info_type bfd_m68k_arch;
219extern const bfd_arch_info_type bfd_m88k_arch;
220extern const bfd_arch_info_type bfd_mips_arch;
cd6213ff
FF
221extern const bfd_arch_info_type bfd_mn10200_arch;
222extern const bfd_arch_info_type bfd_mn10300_arch;
5bc513b4
DE
223extern const bfd_arch_info_type bfd_powerpc_arch;
224extern const bfd_arch_info_type bfd_rs6000_arch;
225extern const bfd_arch_info_type bfd_sh_arch;
5bc513b4 226extern const bfd_arch_info_type bfd_sparc_arch;
cd6213ff
FF
227/* start-sanitize-tic80 */
228extern const bfd_arch_info_type bfd_tic80_arch;
229/* end-sanitize-tic80 */
5bc513b4
DE
230extern const bfd_arch_info_type bfd_vax_arch;
231extern const bfd_arch_info_type bfd_we32k_arch;
232extern const bfd_arch_info_type bfd_z8k_arch;
233extern const bfd_arch_info_type bfd_ns32k_arch;
234extern const bfd_arch_info_type bfd_w65_arch;
efc2b064 235extern const bfd_arch_info_type bfd_v850_arch;
5bc513b4
DE
236
237static const bfd_arch_info_type * const bfd_archures_list[] =
238{
239#ifdef SELECT_ARCHITECTURES
240 SELECT_ARCHITECTURES,
241#else
242 &bfd_a29k_arch,
243 &bfd_alpha_arch,
5bc513b4 244 &bfd_arc_arch,
5bc513b4 245 &bfd_arm_arch,
efc2b064 246 &bfd_d10v_arch,
fd8d7c31
MH
247/* start-sanitize-d30v */
248 &bfd_d30v_arch,
249/* end-sanitize-d30v */
5bc513b4
DE
250 &bfd_h8300_arch,
251 &bfd_h8500_arch,
252 &bfd_hppa_arch,
253 &bfd_i386_arch,
254 &bfd_i860_arch,
255 &bfd_i960_arch,
efc2b064 256 &bfd_m32r_arch,
5bc513b4
DE
257 &bfd_m68k_arch,
258 &bfd_m88k_arch,
259 &bfd_mips_arch,
cd6213ff
FF
260 &bfd_mn10200_arch,
261 &bfd_mn10300_arch,
5bc513b4
DE
262 &bfd_powerpc_arch,
263 &bfd_rs6000_arch,
264 &bfd_sh_arch,
5bc513b4 265 &bfd_sparc_arch,
fd8d7c31
MH
266/* start-sanitize-tic80 */
267 &bfd_tic80_arch,
268/* end-sanitize-tic80 */
5bc513b4
DE
269 &bfd_vax_arch,
270 &bfd_we32k_arch,
271 &bfd_z8k_arch,
272 &bfd_ns32k_arch,
273 &bfd_w65_arch,
efc2b064 274 &bfd_v850_arch,
8988d935 275#endif
2f88c324 276 0
5bc513b4 277};
4a81b561 278
9fda1a39 279/*
9fda1a39
SC
280FUNCTION
281 bfd_printable_name
4e6f9223 282
ce07dd7c 283SYNOPSIS
5bc513b4 284 const char *bfd_printable_name(bfd *abfd);
ce07dd7c 285
9fda1a39
SC
286DESCRIPTION
287 Return a printable string representing the architecture and machine
c188b0be 288 from the pointer to the architecture info structure.
4e6f9223 289
4e6f9223
SC
290*/
291
5bc513b4 292const char *
d94aca1a
MT
293bfd_printable_name (abfd)
294 bfd *abfd;
4e6f9223
SC
295{
296 return abfd->arch_info->printable_name;
4a81b561
DHW
297}
298
4e6f9223
SC
299
300
9fda1a39
SC
301/*
302FUNCTION
303 bfd_scan_arch
4e6f9223 304
ce07dd7c 305SYNOPSIS
5bc513b4 306 const bfd_arch_info_type *bfd_scan_arch(const char *string);
ce07dd7c 307
9fda1a39 308DESCRIPTION
c188b0be
DM
309 Figure out if BFD supports any cpu which could be described with
310 the name @var{string}. Return a pointer to an <<arch_info>>
9fda1a39
SC
311 structure if a machine is found, otherwise NULL.
312
c618de01 313*/
4a81b561 314
5bc513b4 315const bfd_arch_info_type *
d94aca1a 316bfd_scan_arch (string)
5bc513b4 317 const char *string;
4a81b561 318{
5bc513b4 319 const bfd_arch_info_type * const *app, *ap;
4e6f9223
SC
320
321 /* Look through all the installed architectures */
5bc513b4
DE
322 for (app = bfd_archures_list; *app != NULL; app++)
323 {
324 for (ap = *app; ap != NULL; ap = ap->next)
325 {
326 if (ap->scan (ap, string))
327 return ap;
328 }
329 }
330
331 return NULL;
4e6f9223
SC
332}
333
4a81b561 334
4a81b561 335
eaa9c2e7
AC
336/*
337FUNCTION
338 bfd_arch_list
339
340SYNOPSIS
341 const char **bfd_arch_list(void);
342
343DESCRIPTION
344 Return a freshly malloced NULL-terminated vector of the names
345 of all the valid BFD architectures. Do not modify the names.
346
347*/
348
349const char **
350bfd_arch_list ()
351{
352 int vec_length = 0;
353 const char **name_ptr;
354 const char **name_list;
355 const bfd_arch_info_type * const *app;
356
357 /* Determine the number of architectures */
358 vec_length = 0;
359 for (app = bfd_archures_list; *app != NULL; app++)
360 {
361 const bfd_arch_info_type *ap;
362 for (ap = *app; ap != NULL; ap = ap->next)
363 {
364 vec_length++;
365 }
366 }
367
368 name_list = (CONST char **)
369 bfd_malloc ((vec_length + 1) * sizeof (char **));
370 if (name_list == NULL)
371 return NULL;
372
373 /* Point the list at each of the names */
374 name_ptr = name_list;
375 for (app = bfd_archures_list; *app != NULL; app++)
376 {
377 const bfd_arch_info_type *ap;
378 for (ap = *app; ap != NULL; ap = ap->next)
379 {
380 *name_ptr = ap->printable_name;
381 name_ptr++;
382 }
383 }
384 *name_ptr = NULL;
385
386 return name_list;
387}
388
389
390
9fda1a39
SC
391/*
392FUNCTION
393 bfd_arch_get_compatible
394
ce07dd7c 395SYNOPSIS
5bc513b4
DE
396 const bfd_arch_info_type *bfd_arch_get_compatible(
397 const bfd *abfd,
398 const bfd *bbfd);
4e6f9223 399
ce07dd7c 400DESCRIPTION
c188b0be
DM
401 Determine whether two BFDs'
402 architectures and machine types are compatible. Calculates
9fda1a39
SC
403 the lowest common denominator between the two architectures
404 and machine types implied by the BFDs and returns a pointer to
c188b0be 405 an <<arch_info>> structure describing the compatible machine.
4e6f9223
SC
406*/
407
5bc513b4 408const bfd_arch_info_type *
d94aca1a 409bfd_arch_get_compatible (abfd, bbfd)
5bc513b4
DE
410 const bfd *abfd;
411 const bfd *bbfd;
4e6f9223 412{
b7577823
ILT
413 /* If either architecture is unknown, then all we can do is assume
414 the user knows what he's doing. */
415 if (abfd->arch_info->arch == bfd_arch_unknown)
416 return bbfd->arch_info;
417 if (bbfd->arch_info->arch == bfd_arch_unknown)
418 return abfd->arch_info;
419
420 /* Otherwise architecture-specific code has to decide. */
5bc513b4 421 return abfd->arch_info->compatible (abfd->arch_info, bbfd->arch_info);
4a81b561
DHW
422}
423
4e6f9223 424
9fda1a39 425/*
ce07dd7c 426INTERNAL_DEFINITION
9fda1a39 427 bfd_default_arch_struct
4e6f9223 428
9fda1a39 429DESCRIPTION
ce07dd7c
KR
430 The <<bfd_default_arch_struct>> is an item of
431 <<bfd_arch_info_type>> which has been initialized to a fairly
432 generic state. A BFD starts life by pointing to this
433 structure, until the correct back end has determined the real
434 architecture of the file.
9fda1a39 435
5bc513b4 436.extern const bfd_arch_info_type bfd_default_arch_struct;
4e6f9223 437
4e6f9223
SC
438*/
439
5bc513b4 440const bfd_arch_info_type bfd_default_arch_struct =
9fda1a39 441{
2e235c93 442 32,32,8,bfd_arch_unknown,0,"unknown","unknown",2,true,
9fda1a39
SC
443 bfd_default_compatible,
444 bfd_default_scan,
445 0,
9fda1a39 446};
4e6f9223 447
9fda1a39
SC
448/*
449FUNCTION
450 bfd_set_arch_info
4e6f9223 451
9fda1a39 452SYNOPSIS
5bc513b4 453 void bfd_set_arch_info(bfd *abfd, const bfd_arch_info_type *arg);
4e6f9223 454
c188b0be
DM
455DESCRIPTION
456 Set the architecture info of @var{abfd} to @var{arg}.
4e6f9223
SC
457*/
458
d94aca1a
MT
459void
460bfd_set_arch_info (abfd, arg)
461 bfd *abfd;
5bc513b4 462 const bfd_arch_info_type *arg;
4a81b561 463{
4e6f9223
SC
464 abfd->arch_info = arg;
465}
466
9fda1a39 467/*
ce07dd7c 468INTERNAL_FUNCTION
9fda1a39
SC
469 bfd_default_set_arch_mach
470
9fda1a39
SC
471SYNOPSIS
472 boolean bfd_default_set_arch_mach(bfd *abfd,
473 enum bfd_architecture arch,
474 unsigned long mach);
4e6f9223 475
ce07dd7c 476DESCRIPTION
c188b0be
DM
477 Set the architecture and machine type in BFD @var{abfd}
478 to @var{arch} and @var{mach}. Find the correct
479 pointer to a structure and insert it into the <<arch_info>>
ce07dd7c 480 pointer.
4e6f9223
SC
481*/
482
d94aca1a
MT
483boolean
484bfd_default_set_arch_mach (abfd, arch, mach)
485 bfd *abfd;
486 enum bfd_architecture arch;
5bc513b4 487 unsigned long mach;
4e6f9223 488{
5bc513b4 489 const bfd_arch_info_type * const *app, *ap;
4a81b561 490
5bc513b4
DE
491 for (app = bfd_archures_list; *app != NULL; app++)
492 {
493 for (ap = *app; ap != NULL; ap = ap->next)
494 {
495 if (ap->arch == arch
496 && (ap->mach == mach
497 || (mach == 0 && ap->the_default)))
498 {
499 abfd->arch_info = ap;
500 return true;
501 }
502 }
503 }
4e6f9223 504
5bc513b4
DE
505 abfd->arch_info = &bfd_default_arch_struct;
506 bfd_set_error (bfd_error_bad_value);
507 return false;
4a81b561 508}
4a81b561 509
4e6f9223 510
9fda1a39
SC
511/*
512FUNCTION
513 bfd_get_arch
4e6f9223 514
ce07dd7c
KR
515SYNOPSIS
516 enum bfd_architecture bfd_get_arch(bfd *abfd);
517
9fda1a39 518DESCRIPTION
c188b0be
DM
519 Return the enumerated type which describes the BFD @var{abfd}'s
520 architecture.
4e6f9223 521
4e6f9223
SC
522*/
523
d94aca1a
MT
524enum bfd_architecture
525bfd_get_arch (abfd)
526 bfd *abfd;
9fda1a39 527{
4e6f9223 528 return abfd->arch_info->arch;
9fda1a39 529}
4e6f9223 530
9fda1a39
SC
531/*
532FUNCTION
533 bfd_get_mach
4e6f9223 534
ce07dd7c
KR
535SYNOPSIS
536 unsigned long bfd_get_mach(bfd *abfd);
537
9fda1a39 538DESCRIPTION
c188b0be
DM
539 Return the long type which describes the BFD @var{abfd}'s
540 machine.
4e6f9223
SC
541*/
542
9fda1a39 543unsigned long
d94aca1a
MT
544bfd_get_mach (abfd)
545 bfd *abfd;
4a81b561 546{
4e6f9223 547 return abfd->arch_info->mach;
9fda1a39 548}
4e6f9223 549
9fda1a39
SC
550/*
551FUNCTION
552 bfd_arch_bits_per_byte
4e6f9223 553
ce07dd7c
KR
554SYNOPSIS
555 unsigned int bfd_arch_bits_per_byte(bfd *abfd);
556
9fda1a39 557DESCRIPTION
c188b0be
DM
558 Return the number of bits in one of the BFD @var{abfd}'s
559 architecture's bytes.
4e6f9223 560
4e6f9223
SC
561*/
562
d94aca1a
MT
563unsigned int
564bfd_arch_bits_per_byte (abfd)
565 bfd *abfd;
c188b0be
DM
566{
567 return abfd->arch_info->bits_per_byte;
568}
4e6f9223 569
9fda1a39
SC
570/*
571FUNCTION
572 bfd_arch_bits_per_address
4e6f9223 573
9fda1a39
SC
574SYNOPSIS
575 unsigned int bfd_arch_bits_per_address(bfd *abfd);
ce07dd7c
KR
576
577DESCRIPTION
c188b0be
DM
578 Return the number of bits in one of the BFD @var{abfd}'s
579 architecture's addresses.
4e6f9223
SC
580*/
581
d94aca1a
MT
582unsigned int
583bfd_arch_bits_per_address (abfd)
584 bfd *abfd;
c188b0be
DM
585{
586 return abfd->arch_info->bits_per_address;
587}
4e6f9223
SC
588
589
9fda1a39 590/*
ce07dd7c 591INTERNAL_FUNCTION
9fda1a39 592 bfd_default_compatible
4e6f9223 593
9fda1a39 594SYNOPSIS
5bc513b4
DE
595 const bfd_arch_info_type *bfd_default_compatible
596 (const bfd_arch_info_type *a,
597 const bfd_arch_info_type *b);
ce07dd7c
KR
598
599DESCRIPTION
600 The default function for testing for compatibility.
4e6f9223
SC
601*/
602
5bc513b4 603const bfd_arch_info_type *
d94aca1a 604bfd_default_compatible (a,b)
5bc513b4
DE
605 const bfd_arch_info_type *a;
606 const bfd_arch_info_type *b;
4e6f9223 607{
5bc513b4
DE
608 if (a->arch != b->arch)
609 return NULL;
4e6f9223 610
5bc513b4 611 if (a->mach > b->mach)
4e6f9223 612 return a;
5bc513b4
DE
613
614 if (b->mach > a->mach)
4e6f9223 615 return b;
5bc513b4 616
4e6f9223 617 return a;
4a81b561
DHW
618}
619
620
9fda1a39 621/*
ce07dd7c 622INTERNAL_FUNCTION
9fda1a39
SC
623 bfd_default_scan
624
9fda1a39 625SYNOPSIS
5bc513b4 626 boolean bfd_default_scan(const struct bfd_arch_info *info, const char *string);
4e6f9223 627
ce07dd7c
KR
628DESCRIPTION
629 The default function for working out whether this is an
630 architecture hit and a machine hit.
4e6f9223
SC
631*/
632
633boolean
d94aca1a 634bfd_default_scan (info, string)
5bc513b4
DE
635 const struct bfd_arch_info *info;
636 const char *string;
4a81b561 637{
5bc513b4
DE
638 const char *ptr_src;
639 const char *ptr_tst;
b7577823
ILT
640 unsigned long number;
641 enum bfd_architecture arch;
eaa9c2e7
AC
642 const char *printable_name_colon;
643
644 /* Exact match of the architecture name (ARCH_NAME) and also the
645 default architecture? */
646 if (strcasecmp (string, info->arch_name) == 0
647 && info->the_default)
648 return true;
5bc513b4 649
eaa9c2e7
AC
650 /* Exact match of the machine name (PRINTABLE_NAME)? */
651 if (strcasecmp (string, info->printable_name) == 0)
5bc513b4 652 return true;
eaa9c2e7
AC
653
654 /* Given that printable_name contains no colon, attempt to match:
655 ARCH_NAME [ ":" ] PRINTABLE_NAME? */
656 printable_name_colon = strchr (info->printable_name, ':');
657 if (printable_name_colon == NULL)
658 {
659 int strlen_arch_name = strlen (info->arch_name);
660 if (strncasecmp (string, info->arch_name, strlen_arch_name) == 0)
661 if (string[strlen_arch_name] == ':')
662 {
663 if (strcasecmp (string + strlen_arch_name + 1,
664 info->printable_name) == 0)
665 return true;
666 }
667 else
668 {
669 if (strcasecmp (string + strlen_arch_name,
670 info->printable_name) == 0)
671 return true;
672 }
673 }
674
675 /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>;
676 Attempt to match: <arch> <mach>? */
677 if (printable_name_colon != NULL)
678 {
679 int colon_index = printable_name_colon - info->printable_name;
680 if (strncasecmp (string, info->printable_name, colon_index) == 0
681 && strcasecmp (string + colon_index,
682 info->printable_name + colon_index + 1) == 0)
683 return true;
684 }
685
686 /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>; Do not
687 attempt to match just <mach>, it could be ambigious. This test
688 is left until later. */
689
690 /* NOTE: The below is retained for compatibility only. Please do not
691 add to this code */
b7577823
ILT
692
693 /* See how much of the supplied string matches with the
694 architecture, eg the string m68k:68020 would match the 68k entry
695 up to the :, then we get left with the machine number */
696
5bc513b4 697 for (ptr_src = string, ptr_tst = info->arch_name;
b7577823 698 *ptr_src && *ptr_tst;
5bc513b4 699 ptr_src++, ptr_tst++)
9fda1a39 700 {
b7577823 701 if (*ptr_src != *ptr_tst) break;
9fda1a39 702 }
4e6f9223 703
b7577823
ILT
704 /* Chewed up as much of the architecture as will match, skip any
705 colons */
5bc513b4
DE
706 if (*ptr_src == ':')
707 ptr_src++;
4e6f9223 708
5bc513b4
DE
709 if (*ptr_src == 0)
710 {
711 /* nothing more, then only keep this one if it is the default
712 machine for this architecture */
713 return info->the_default;
714 }
715
b7577823 716 number = 0;
5bc513b4
DE
717 while (isdigit(*ptr_src))
718 {
719 number = number * 10 + *ptr_src - '0';
720 ptr_src++;
721 }
b7577823 722
eaa9c2e7
AC
723 /* NOTE: The below is retained for compatibility only. Please do
724 not add to this code. */
725
b7577823 726 switch (number)
9fda1a39 727 {
b7577823
ILT
728 case 68010:
729 case 68020:
730 case 68030:
731 case 68040:
732 case 68332:
733 case 68050:
734 case 68000:
735 arch = bfd_arch_m68k;
736 break;
5bc513b4 737
b7577823
ILT
738 case 32000:
739 arch = bfd_arch_we32k;
740 break;
4e6f9223 741
b7577823
ILT
742 case 3000:
743 case 4000:
b7577823
ILT
744 arch = bfd_arch_mips;
745 break;
4a81b561 746
b7577823
ILT
747 case 6000:
748 arch = bfd_arch_rs6000;
749 break;
9fda1a39 750
b7577823
ILT
751 default:
752 return false;
9fda1a39 753 }
5bc513b4 754
b7577823
ILT
755 if (arch != info->arch)
756 return false;
9fda1a39 757
b7577823
ILT
758 if (number != info->mach)
759 return false;
9fda1a39 760
b7577823 761 return true;
4a81b561 762}
c618de01
SC
763
764
9fda1a39
SC
765/*
766FUNCTION
767 bfd_get_arch_info
c618de01 768
9fda1a39 769SYNOPSIS
5bc513b4 770 const bfd_arch_info_type * bfd_get_arch_info(bfd *abfd);
c618de01 771
c188b0be
DM
772DESCRIPTION
773 Return the architecture info struct in @var{abfd}.
4e6f9223 774*/
c618de01 775
5bc513b4 776const bfd_arch_info_type *
d94aca1a
MT
777bfd_get_arch_info (abfd)
778 bfd *abfd;
4e6f9223 779{
5bc513b4 780 return abfd->arch_info;
4e6f9223 781}
cbdc7909
JG
782
783
9fda1a39
SC
784/*
785FUNCTION
786 bfd_lookup_arch
787
9fda1a39 788SYNOPSIS
5bc513b4 789 const bfd_arch_info_type *bfd_lookup_arch
9fda1a39
SC
790 (enum bfd_architecture
791 arch,
ae115e51 792 unsigned long machine);
cbdc7909 793
ce07dd7c 794DESCRIPTION
c188b0be
DM
795 Look for the architecure info structure which matches the
796 arguments @var{arch} and @var{machine}. A machine of 0 matches the
ce07dd7c
KR
797 machine/architecture structure which marks itself as the
798 default.
cbdc7909
JG
799*/
800
5bc513b4 801const bfd_arch_info_type *
d94aca1a
MT
802bfd_lookup_arch (arch, machine)
803 enum bfd_architecture arch;
ae115e51 804 unsigned long machine;
cbdc7909 805{
5bc513b4
DE
806 const bfd_arch_info_type * const *app, *ap;
807
808 for (app = bfd_archures_list; *app != NULL; app++)
809 {
810 for (ap = *app; ap != NULL; ap = ap->next)
811 {
812 if (ap->arch == arch
813 && (ap->mach == machine
814 || (machine == 0 && ap->the_default)))
815 return ap;
9fda1a39 816 }
5bc513b4
DE
817 }
818
819 return NULL;
cbdc7909
JG
820}
821
822
9fda1a39
SC
823/*
824FUNCTION
825 bfd_printable_arch_mach
826
ce07dd7c 827SYNOPSIS
5bc513b4 828 const char *bfd_printable_arch_mach
ce07dd7c
KR
829 (enum bfd_architecture arch, unsigned long machine);
830
9fda1a39
SC
831DESCRIPTION
832 Return a printable string representing the architecture and
833 machine type.
cbdc7909 834
c188b0be 835 This routine is depreciated.
cbdc7909
JG
836*/
837
5bc513b4 838const char *
d94aca1a
MT
839bfd_printable_arch_mach (arch, machine)
840 enum bfd_architecture arch;
841 unsigned long machine;
cbdc7909 842{
5bc513b4
DE
843 const bfd_arch_info_type *ap = bfd_lookup_arch (arch, machine);
844
845 if (ap)
846 return ap->printable_name;
9fda1a39 847 return "UNKNOWN!";
cbdc7909 848}
This page took 0.247549 seconds and 4 git commands to generate.