Fixed buglet displaying machine architecture.
[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
9fda1a39
SC
336/*
337FUNCTION
338 bfd_arch_get_compatible
339
ce07dd7c 340SYNOPSIS
5bc513b4
DE
341 const bfd_arch_info_type *bfd_arch_get_compatible(
342 const bfd *abfd,
343 const bfd *bbfd);
4e6f9223 344
ce07dd7c 345DESCRIPTION
c188b0be
DM
346 Determine whether two BFDs'
347 architectures and machine types are compatible. Calculates
9fda1a39
SC
348 the lowest common denominator between the two architectures
349 and machine types implied by the BFDs and returns a pointer to
c188b0be 350 an <<arch_info>> structure describing the compatible machine.
4e6f9223
SC
351*/
352
5bc513b4 353const bfd_arch_info_type *
d94aca1a 354bfd_arch_get_compatible (abfd, bbfd)
5bc513b4
DE
355 const bfd *abfd;
356 const bfd *bbfd;
4e6f9223 357{
b7577823
ILT
358 /* If either architecture is unknown, then all we can do is assume
359 the user knows what he's doing. */
360 if (abfd->arch_info->arch == bfd_arch_unknown)
361 return bbfd->arch_info;
362 if (bbfd->arch_info->arch == bfd_arch_unknown)
363 return abfd->arch_info;
364
365 /* Otherwise architecture-specific code has to decide. */
5bc513b4 366 return abfd->arch_info->compatible (abfd->arch_info, bbfd->arch_info);
4a81b561
DHW
367}
368
4e6f9223 369
9fda1a39 370/*
ce07dd7c 371INTERNAL_DEFINITION
9fda1a39 372 bfd_default_arch_struct
4e6f9223 373
9fda1a39 374DESCRIPTION
ce07dd7c
KR
375 The <<bfd_default_arch_struct>> is an item of
376 <<bfd_arch_info_type>> which has been initialized to a fairly
377 generic state. A BFD starts life by pointing to this
378 structure, until the correct back end has determined the real
379 architecture of the file.
9fda1a39 380
5bc513b4 381.extern const bfd_arch_info_type bfd_default_arch_struct;
4e6f9223 382
4e6f9223
SC
383*/
384
5bc513b4 385const bfd_arch_info_type bfd_default_arch_struct =
9fda1a39 386{
2e235c93 387 32,32,8,bfd_arch_unknown,0,"unknown","unknown",2,true,
9fda1a39
SC
388 bfd_default_compatible,
389 bfd_default_scan,
390 0,
9fda1a39 391};
4e6f9223 392
9fda1a39
SC
393/*
394FUNCTION
395 bfd_set_arch_info
4e6f9223 396
9fda1a39 397SYNOPSIS
5bc513b4 398 void bfd_set_arch_info(bfd *abfd, const bfd_arch_info_type *arg);
4e6f9223 399
c188b0be
DM
400DESCRIPTION
401 Set the architecture info of @var{abfd} to @var{arg}.
4e6f9223
SC
402*/
403
d94aca1a
MT
404void
405bfd_set_arch_info (abfd, arg)
406 bfd *abfd;
5bc513b4 407 const bfd_arch_info_type *arg;
4a81b561 408{
4e6f9223
SC
409 abfd->arch_info = arg;
410}
411
9fda1a39 412/*
ce07dd7c 413INTERNAL_FUNCTION
9fda1a39
SC
414 bfd_default_set_arch_mach
415
9fda1a39
SC
416SYNOPSIS
417 boolean bfd_default_set_arch_mach(bfd *abfd,
418 enum bfd_architecture arch,
419 unsigned long mach);
4e6f9223 420
ce07dd7c 421DESCRIPTION
c188b0be
DM
422 Set the architecture and machine type in BFD @var{abfd}
423 to @var{arch} and @var{mach}. Find the correct
424 pointer to a structure and insert it into the <<arch_info>>
ce07dd7c 425 pointer.
4e6f9223
SC
426*/
427
d94aca1a
MT
428boolean
429bfd_default_set_arch_mach (abfd, arch, mach)
430 bfd *abfd;
431 enum bfd_architecture arch;
5bc513b4 432 unsigned long mach;
4e6f9223 433{
5bc513b4 434 const bfd_arch_info_type * const *app, *ap;
4a81b561 435
5bc513b4
DE
436 for (app = bfd_archures_list; *app != NULL; app++)
437 {
438 for (ap = *app; ap != NULL; ap = ap->next)
439 {
440 if (ap->arch == arch
441 && (ap->mach == mach
442 || (mach == 0 && ap->the_default)))
443 {
444 abfd->arch_info = ap;
445 return true;
446 }
447 }
448 }
4e6f9223 449
5bc513b4
DE
450 abfd->arch_info = &bfd_default_arch_struct;
451 bfd_set_error (bfd_error_bad_value);
452 return false;
4a81b561 453}
4a81b561 454
4e6f9223 455
9fda1a39
SC
456/*
457FUNCTION
458 bfd_get_arch
4e6f9223 459
ce07dd7c
KR
460SYNOPSIS
461 enum bfd_architecture bfd_get_arch(bfd *abfd);
462
9fda1a39 463DESCRIPTION
c188b0be
DM
464 Return the enumerated type which describes the BFD @var{abfd}'s
465 architecture.
4e6f9223 466
4e6f9223
SC
467*/
468
d94aca1a
MT
469enum bfd_architecture
470bfd_get_arch (abfd)
471 bfd *abfd;
9fda1a39 472{
4e6f9223 473 return abfd->arch_info->arch;
9fda1a39 474}
4e6f9223 475
9fda1a39
SC
476/*
477FUNCTION
478 bfd_get_mach
4e6f9223 479
ce07dd7c
KR
480SYNOPSIS
481 unsigned long bfd_get_mach(bfd *abfd);
482
9fda1a39 483DESCRIPTION
c188b0be
DM
484 Return the long type which describes the BFD @var{abfd}'s
485 machine.
4e6f9223
SC
486*/
487
9fda1a39 488unsigned long
d94aca1a
MT
489bfd_get_mach (abfd)
490 bfd *abfd;
4a81b561 491{
4e6f9223 492 return abfd->arch_info->mach;
9fda1a39 493}
4e6f9223 494
9fda1a39
SC
495/*
496FUNCTION
497 bfd_arch_bits_per_byte
4e6f9223 498
ce07dd7c
KR
499SYNOPSIS
500 unsigned int bfd_arch_bits_per_byte(bfd *abfd);
501
9fda1a39 502DESCRIPTION
c188b0be
DM
503 Return the number of bits in one of the BFD @var{abfd}'s
504 architecture's bytes.
4e6f9223 505
4e6f9223
SC
506*/
507
d94aca1a
MT
508unsigned int
509bfd_arch_bits_per_byte (abfd)
510 bfd *abfd;
c188b0be
DM
511{
512 return abfd->arch_info->bits_per_byte;
513}
4e6f9223 514
9fda1a39
SC
515/*
516FUNCTION
517 bfd_arch_bits_per_address
4e6f9223 518
9fda1a39
SC
519SYNOPSIS
520 unsigned int bfd_arch_bits_per_address(bfd *abfd);
ce07dd7c
KR
521
522DESCRIPTION
c188b0be
DM
523 Return the number of bits in one of the BFD @var{abfd}'s
524 architecture's addresses.
4e6f9223
SC
525*/
526
d94aca1a
MT
527unsigned int
528bfd_arch_bits_per_address (abfd)
529 bfd *abfd;
c188b0be
DM
530{
531 return abfd->arch_info->bits_per_address;
532}
4e6f9223
SC
533
534
9fda1a39 535/*
ce07dd7c 536INTERNAL_FUNCTION
9fda1a39 537 bfd_default_compatible
4e6f9223 538
9fda1a39 539SYNOPSIS
5bc513b4
DE
540 const bfd_arch_info_type *bfd_default_compatible
541 (const bfd_arch_info_type *a,
542 const bfd_arch_info_type *b);
ce07dd7c
KR
543
544DESCRIPTION
545 The default function for testing for compatibility.
4e6f9223
SC
546*/
547
5bc513b4 548const bfd_arch_info_type *
d94aca1a 549bfd_default_compatible (a,b)
5bc513b4
DE
550 const bfd_arch_info_type *a;
551 const bfd_arch_info_type *b;
4e6f9223 552{
5bc513b4
DE
553 if (a->arch != b->arch)
554 return NULL;
4e6f9223 555
5bc513b4 556 if (a->mach > b->mach)
4e6f9223 557 return a;
5bc513b4
DE
558
559 if (b->mach > a->mach)
4e6f9223 560 return b;
5bc513b4 561
4e6f9223 562 return a;
4a81b561
DHW
563}
564
565
9fda1a39 566/*
ce07dd7c 567INTERNAL_FUNCTION
9fda1a39
SC
568 bfd_default_scan
569
9fda1a39 570SYNOPSIS
5bc513b4 571 boolean bfd_default_scan(const struct bfd_arch_info *info, const char *string);
4e6f9223 572
ce07dd7c
KR
573DESCRIPTION
574 The default function for working out whether this is an
575 architecture hit and a machine hit.
4e6f9223
SC
576*/
577
578boolean
d94aca1a 579bfd_default_scan (info, string)
5bc513b4
DE
580 const struct bfd_arch_info *info;
581 const char *string;
4a81b561 582{
5bc513b4
DE
583 const char *ptr_src;
584 const char *ptr_tst;
b7577823
ILT
585 unsigned long number;
586 enum bfd_architecture arch;
5bc513b4 587
b7577823 588 /* First test for an exact match */
5bc513b4
DE
589 if (strcmp (string, info->printable_name) == 0)
590 return true;
b7577823
ILT
591
592 /* See how much of the supplied string matches with the
593 architecture, eg the string m68k:68020 would match the 68k entry
594 up to the :, then we get left with the machine number */
595
5bc513b4 596 for (ptr_src = string, ptr_tst = info->arch_name;
b7577823 597 *ptr_src && *ptr_tst;
5bc513b4 598 ptr_src++, ptr_tst++)
9fda1a39 599 {
b7577823 600 if (*ptr_src != *ptr_tst) break;
9fda1a39 601 }
4e6f9223 602
b7577823
ILT
603 /* Chewed up as much of the architecture as will match, skip any
604 colons */
5bc513b4
DE
605 if (*ptr_src == ':')
606 ptr_src++;
4e6f9223 607
5bc513b4
DE
608 if (*ptr_src == 0)
609 {
610 /* nothing more, then only keep this one if it is the default
611 machine for this architecture */
612 return info->the_default;
613 }
614
b7577823 615 number = 0;
5bc513b4
DE
616 while (isdigit(*ptr_src))
617 {
618 number = number * 10 + *ptr_src - '0';
619 ptr_src++;
620 }
b7577823
ILT
621
622 switch (number)
9fda1a39 623 {
b7577823
ILT
624 case 65:
625 arch = bfd_arch_w65;
626 break;
627
628 case 300:
2e235c93
ILT
629 arch = bfd_arch_h8300;
630 break;
631
b7577823 632 case 500:
2e235c93
ILT
633 arch = bfd_arch_h8500;
634 break;
635
b7577823
ILT
636 case 68010:
637 case 68020:
638 case 68030:
639 case 68040:
640 case 68332:
641 case 68050:
642 case 68000:
643 arch = bfd_arch_m68k;
644 break;
5bc513b4 645
b7577823
ILT
646 case 386:
647 case 80386:
648 case 486:
649 case 80486:
650 arch = bfd_arch_i386;
651 break;
5bc513b4 652
b7577823
ILT
653 case 29000:
654 arch = bfd_arch_a29k;
655 break;
4a81b561 656
b7577823
ILT
657 case 8000:
658 arch = bfd_arch_z8k;
659 break;
71c0bae0 660
b7577823
ILT
661 case 32000:
662 arch = bfd_arch_we32k;
663 break;
4e6f9223 664
b7577823
ILT
665 case 860:
666 case 80860:
667 arch = bfd_arch_i860;
668 break;
669 case 960:
670 case 80960:
671 arch = bfd_arch_i960;
672 break;
71c0bae0 673
b7577823
ILT
674 case 2000:
675 case 3000:
676 case 4000:
677 case 4400:
678 arch = bfd_arch_mips;
679 break;
4a81b561 680
b7577823
ILT
681 case 6000:
682 arch = bfd_arch_rs6000;
683 break;
9fda1a39 684
b7577823
ILT
685 default:
686 return false;
9fda1a39 687 }
5bc513b4 688
b7577823
ILT
689 if (arch != info->arch)
690 return false;
9fda1a39 691
b7577823
ILT
692 if (number != info->mach)
693 return false;
9fda1a39 694
b7577823 695 return true;
4a81b561 696}
c618de01
SC
697
698
9fda1a39
SC
699/*
700FUNCTION
701 bfd_get_arch_info
c618de01 702
9fda1a39 703SYNOPSIS
5bc513b4 704 const bfd_arch_info_type * bfd_get_arch_info(bfd *abfd);
c618de01 705
c188b0be
DM
706DESCRIPTION
707 Return the architecture info struct in @var{abfd}.
4e6f9223 708*/
c618de01 709
5bc513b4 710const bfd_arch_info_type *
d94aca1a
MT
711bfd_get_arch_info (abfd)
712 bfd *abfd;
4e6f9223 713{
5bc513b4 714 return abfd->arch_info;
4e6f9223 715}
cbdc7909
JG
716
717
9fda1a39
SC
718/*
719FUNCTION
720 bfd_lookup_arch
721
9fda1a39 722SYNOPSIS
5bc513b4 723 const bfd_arch_info_type *bfd_lookup_arch
9fda1a39
SC
724 (enum bfd_architecture
725 arch,
ae115e51 726 unsigned long machine);
cbdc7909 727
ce07dd7c 728DESCRIPTION
c188b0be
DM
729 Look for the architecure info structure which matches the
730 arguments @var{arch} and @var{machine}. A machine of 0 matches the
ce07dd7c
KR
731 machine/architecture structure which marks itself as the
732 default.
cbdc7909
JG
733*/
734
5bc513b4 735const bfd_arch_info_type *
d94aca1a
MT
736bfd_lookup_arch (arch, machine)
737 enum bfd_architecture arch;
ae115e51 738 unsigned long machine;
cbdc7909 739{
5bc513b4
DE
740 const bfd_arch_info_type * const *app, *ap;
741
742 for (app = bfd_archures_list; *app != NULL; app++)
743 {
744 for (ap = *app; ap != NULL; ap = ap->next)
745 {
746 if (ap->arch == arch
747 && (ap->mach == machine
748 || (machine == 0 && ap->the_default)))
749 return ap;
9fda1a39 750 }
5bc513b4
DE
751 }
752
753 return NULL;
cbdc7909
JG
754}
755
756
9fda1a39
SC
757/*
758FUNCTION
759 bfd_printable_arch_mach
760
ce07dd7c 761SYNOPSIS
5bc513b4 762 const char *bfd_printable_arch_mach
ce07dd7c
KR
763 (enum bfd_architecture arch, unsigned long machine);
764
9fda1a39
SC
765DESCRIPTION
766 Return a printable string representing the architecture and
767 machine type.
cbdc7909 768
c188b0be 769 This routine is depreciated.
cbdc7909
JG
770*/
771
5bc513b4 772const char *
d94aca1a
MT
773bfd_printable_arch_mach (arch, machine)
774 enum bfd_architecture arch;
775 unsigned long machine;
cbdc7909 776{
5bc513b4
DE
777 const bfd_arch_info_type *ap = bfd_lookup_arch (arch, machine);
778
779 if (ap)
780 return ap->printable_name;
9fda1a39 781 return "UNKNOWN!";
cbdc7909 782}
This page took 0.234241 seconds and 4 git commands to generate.