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