Wed Aug 7 14:11:44 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
[deliverable/binutils-gdb.git] / bfd / archures.c
CommitLineData
c618de01 1/* BFD library support routines for architectures.
34255b70 2 Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 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 *}
71c0bae0
KR
124. bfd_arch_z8k, {* Zilog Z8000 *}
125.#define bfd_mach_z8001 1
126.#define bfd_mach_z8002 2
2e235c93
ILT
127. bfd_arch_h8500, {* Hitachi H8/500 *}
128. bfd_arch_sh, {* Hitachi SH *}
129. bfd_arch_alpha, {* Dec Alpha *}
d94aca1a
MT
130. bfd_arch_arm, {* Advanced Risc Machines ARM *}
131. bfd_arch_ns32k, {* National Semiconductors ns32000 *}
b7577823 132. bfd_arch_w65, {* WDC 65816 *}
37648010
KR
133. {* start-sanitize-arc *}
134. bfd_arch_arc, {* Argonaut RISC Core *}
b7577823
ILT
135.#define bfd_mach_arc_base 0
136.#define bfd_mach_arc_host 1
137.#define bfd_mach_arc_graphics 2
138.#define bfd_mach_arc_audio 3
37648010 139. {* end-sanitize-arc *}
9fda1a39
SC
140. bfd_arch_last
141. };
c618de01 142
c618de01
SC
143
144*/
145
9fda1a39
SC
146/*
147
148SUBSECTION
149 bfd_arch_info
150
151DESCRIPTION
152 This structure contains information on architectures for use
153 within BFD.
154
9fda1a39
SC
155.
156.typedef struct bfd_arch_info
157.{
158. int bits_per_word;
159. int bits_per_address;
160. int bits_per_byte;
161. enum bfd_architecture arch;
ae115e51 162. unsigned long mach;
5bc513b4
DE
163. const char *arch_name;
164. const char *printable_name;
ce07dd7c
KR
165. unsigned int section_align_power;
166. {* true if this is the default machine for the architecture *}
9fda1a39 167. boolean the_default;
5bc513b4
DE
168. const struct bfd_arch_info * (*compatible)
169. PARAMS ((const struct bfd_arch_info *a,
170. const struct bfd_arch_info *b));
9fda1a39 171.
5bc513b4 172. boolean (*scan) PARAMS ((const struct bfd_arch_info *, const char *));
9fda1a39 173.
5bc513b4 174. const struct bfd_arch_info *next;
9fda1a39 175.} bfd_arch_info_type;
4e6f9223
SC
176*/
177
5bc513b4
DE
178extern const bfd_arch_info_type bfd_a29k_arch;
179extern const bfd_arch_info_type bfd_alpha_arch;
180/* start-sanitize-arc */
181extern const bfd_arch_info_type bfd_arc_arch;
182/* end-sanitize-arc */
183extern const bfd_arch_info_type bfd_arm_arch;
184extern const bfd_arch_info_type bfd_h8300_arch;
185extern const bfd_arch_info_type bfd_h8500_arch;
186extern const bfd_arch_info_type bfd_hppa_arch;
187extern const bfd_arch_info_type bfd_i386_arch;
188extern const bfd_arch_info_type bfd_i860_arch;
189extern const bfd_arch_info_type bfd_i960_arch;
190extern const bfd_arch_info_type bfd_m68k_arch;
191extern const bfd_arch_info_type bfd_m88k_arch;
192extern const bfd_arch_info_type bfd_mips_arch;
193extern const bfd_arch_info_type bfd_powerpc_arch;
194extern const bfd_arch_info_type bfd_rs6000_arch;
195extern const bfd_arch_info_type bfd_sh_arch;
5bc513b4
DE
196extern const bfd_arch_info_type bfd_sparc_arch;
197extern const bfd_arch_info_type bfd_vax_arch;
198extern const bfd_arch_info_type bfd_we32k_arch;
199extern const bfd_arch_info_type bfd_z8k_arch;
200extern const bfd_arch_info_type bfd_ns32k_arch;
201extern const bfd_arch_info_type bfd_w65_arch;
202
203static const bfd_arch_info_type * const bfd_archures_list[] =
204{
205#ifdef SELECT_ARCHITECTURES
206 SELECT_ARCHITECTURES,
207#else
208 &bfd_a29k_arch,
209 &bfd_alpha_arch,
210/* start-sanitize-arc */
211 &bfd_arc_arch,
212/* end-sanitize-arc */
213 &bfd_arm_arch,
214 &bfd_h8300_arch,
215 &bfd_h8500_arch,
216 &bfd_hppa_arch,
217 &bfd_i386_arch,
218 &bfd_i860_arch,
219 &bfd_i960_arch,
220 &bfd_m68k_arch,
221 &bfd_m88k_arch,
222 &bfd_mips_arch,
223 &bfd_powerpc_arch,
224 &bfd_rs6000_arch,
225 &bfd_sh_arch,
5bc513b4
DE
226 &bfd_sparc_arch,
227 &bfd_vax_arch,
228 &bfd_we32k_arch,
229 &bfd_z8k_arch,
230 &bfd_ns32k_arch,
231 &bfd_w65_arch,
232#endif
233 0
234};
4a81b561 235
9fda1a39 236/*
9fda1a39
SC
237FUNCTION
238 bfd_printable_name
4e6f9223 239
ce07dd7c 240SYNOPSIS
5bc513b4 241 const char *bfd_printable_name(bfd *abfd);
ce07dd7c 242
9fda1a39
SC
243DESCRIPTION
244 Return a printable string representing the architecture and machine
c188b0be 245 from the pointer to the architecture info structure.
4e6f9223 246
4e6f9223
SC
247*/
248
5bc513b4 249const char *
d94aca1a
MT
250bfd_printable_name (abfd)
251 bfd *abfd;
4e6f9223
SC
252{
253 return abfd->arch_info->printable_name;
4a81b561
DHW
254}
255
4e6f9223
SC
256
257
9fda1a39
SC
258/*
259FUNCTION
260 bfd_scan_arch
4e6f9223 261
ce07dd7c 262SYNOPSIS
5bc513b4 263 const bfd_arch_info_type *bfd_scan_arch(const char *string);
ce07dd7c 264
9fda1a39 265DESCRIPTION
c188b0be
DM
266 Figure out if BFD supports any cpu which could be described with
267 the name @var{string}. Return a pointer to an <<arch_info>>
9fda1a39
SC
268 structure if a machine is found, otherwise NULL.
269
c618de01 270*/
4a81b561 271
5bc513b4 272const bfd_arch_info_type *
d94aca1a 273bfd_scan_arch (string)
5bc513b4 274 const char *string;
4a81b561 275{
5bc513b4 276 const bfd_arch_info_type * const *app, *ap;
4e6f9223
SC
277
278 /* Look through all the installed architectures */
5bc513b4
DE
279 for (app = bfd_archures_list; *app != NULL; app++)
280 {
281 for (ap = *app; ap != NULL; ap = ap->next)
282 {
283 if (ap->scan (ap, string))
284 return ap;
285 }
286 }
287
288 return NULL;
4e6f9223
SC
289}
290
4a81b561 291
4a81b561 292
9fda1a39
SC
293/*
294FUNCTION
295 bfd_arch_get_compatible
296
ce07dd7c 297SYNOPSIS
5bc513b4
DE
298 const bfd_arch_info_type *bfd_arch_get_compatible(
299 const bfd *abfd,
300 const bfd *bbfd);
4e6f9223 301
ce07dd7c 302DESCRIPTION
c188b0be
DM
303 Determine whether two BFDs'
304 architectures and machine types are compatible. Calculates
9fda1a39
SC
305 the lowest common denominator between the two architectures
306 and machine types implied by the BFDs and returns a pointer to
c188b0be 307 an <<arch_info>> structure describing the compatible machine.
4e6f9223
SC
308*/
309
5bc513b4 310const bfd_arch_info_type *
d94aca1a 311bfd_arch_get_compatible (abfd, bbfd)
5bc513b4
DE
312 const bfd *abfd;
313 const bfd *bbfd;
4e6f9223 314{
b7577823
ILT
315 /* If either architecture is unknown, then all we can do is assume
316 the user knows what he's doing. */
317 if (abfd->arch_info->arch == bfd_arch_unknown)
318 return bbfd->arch_info;
319 if (bbfd->arch_info->arch == bfd_arch_unknown)
320 return abfd->arch_info;
321
322 /* Otherwise architecture-specific code has to decide. */
5bc513b4 323 return abfd->arch_info->compatible (abfd->arch_info, bbfd->arch_info);
4a81b561
DHW
324}
325
4e6f9223 326
9fda1a39 327/*
ce07dd7c 328INTERNAL_DEFINITION
9fda1a39 329 bfd_default_arch_struct
4e6f9223 330
9fda1a39 331DESCRIPTION
ce07dd7c
KR
332 The <<bfd_default_arch_struct>> is an item of
333 <<bfd_arch_info_type>> which has been initialized to a fairly
334 generic state. A BFD starts life by pointing to this
335 structure, until the correct back end has determined the real
336 architecture of the file.
9fda1a39 337
5bc513b4 338.extern const bfd_arch_info_type bfd_default_arch_struct;
4e6f9223 339
4e6f9223
SC
340*/
341
5bc513b4 342const bfd_arch_info_type bfd_default_arch_struct =
9fda1a39 343{
2e235c93 344 32,32,8,bfd_arch_unknown,0,"unknown","unknown",2,true,
9fda1a39
SC
345 bfd_default_compatible,
346 bfd_default_scan,
347 0,
9fda1a39 348};
4e6f9223 349
9fda1a39
SC
350/*
351FUNCTION
352 bfd_set_arch_info
4e6f9223 353
9fda1a39 354SYNOPSIS
5bc513b4 355 void bfd_set_arch_info(bfd *abfd, const bfd_arch_info_type *arg);
4e6f9223 356
c188b0be
DM
357DESCRIPTION
358 Set the architecture info of @var{abfd} to @var{arg}.
4e6f9223
SC
359*/
360
d94aca1a
MT
361void
362bfd_set_arch_info (abfd, arg)
363 bfd *abfd;
5bc513b4 364 const bfd_arch_info_type *arg;
4a81b561 365{
4e6f9223
SC
366 abfd->arch_info = arg;
367}
368
9fda1a39 369/*
ce07dd7c 370INTERNAL_FUNCTION
9fda1a39
SC
371 bfd_default_set_arch_mach
372
9fda1a39
SC
373SYNOPSIS
374 boolean bfd_default_set_arch_mach(bfd *abfd,
375 enum bfd_architecture arch,
376 unsigned long mach);
4e6f9223 377
ce07dd7c 378DESCRIPTION
c188b0be
DM
379 Set the architecture and machine type in BFD @var{abfd}
380 to @var{arch} and @var{mach}. Find the correct
381 pointer to a structure and insert it into the <<arch_info>>
ce07dd7c 382 pointer.
4e6f9223
SC
383*/
384
d94aca1a
MT
385boolean
386bfd_default_set_arch_mach (abfd, arch, mach)
387 bfd *abfd;
388 enum bfd_architecture arch;
5bc513b4 389 unsigned long mach;
4e6f9223 390{
5bc513b4 391 const bfd_arch_info_type * const *app, *ap;
4a81b561 392
5bc513b4
DE
393 for (app = bfd_archures_list; *app != NULL; app++)
394 {
395 for (ap = *app; ap != NULL; ap = ap->next)
396 {
397 if (ap->arch == arch
398 && (ap->mach == mach
399 || (mach == 0 && ap->the_default)))
400 {
401 abfd->arch_info = ap;
402 return true;
403 }
404 }
405 }
4e6f9223 406
5bc513b4
DE
407 abfd->arch_info = &bfd_default_arch_struct;
408 bfd_set_error (bfd_error_bad_value);
409 return false;
4a81b561 410}
4a81b561 411
4e6f9223 412
9fda1a39
SC
413/*
414FUNCTION
415 bfd_get_arch
4e6f9223 416
ce07dd7c
KR
417SYNOPSIS
418 enum bfd_architecture bfd_get_arch(bfd *abfd);
419
9fda1a39 420DESCRIPTION
c188b0be
DM
421 Return the enumerated type which describes the BFD @var{abfd}'s
422 architecture.
4e6f9223 423
4e6f9223
SC
424*/
425
d94aca1a
MT
426enum bfd_architecture
427bfd_get_arch (abfd)
428 bfd *abfd;
9fda1a39 429{
4e6f9223 430 return abfd->arch_info->arch;
9fda1a39 431}
4e6f9223 432
9fda1a39
SC
433/*
434FUNCTION
435 bfd_get_mach
4e6f9223 436
ce07dd7c
KR
437SYNOPSIS
438 unsigned long bfd_get_mach(bfd *abfd);
439
9fda1a39 440DESCRIPTION
c188b0be
DM
441 Return the long type which describes the BFD @var{abfd}'s
442 machine.
4e6f9223
SC
443*/
444
9fda1a39 445unsigned long
d94aca1a
MT
446bfd_get_mach (abfd)
447 bfd *abfd;
4a81b561 448{
4e6f9223 449 return abfd->arch_info->mach;
9fda1a39 450}
4e6f9223 451
9fda1a39
SC
452/*
453FUNCTION
454 bfd_arch_bits_per_byte
4e6f9223 455
ce07dd7c
KR
456SYNOPSIS
457 unsigned int bfd_arch_bits_per_byte(bfd *abfd);
458
9fda1a39 459DESCRIPTION
c188b0be
DM
460 Return the number of bits in one of the BFD @var{abfd}'s
461 architecture's bytes.
4e6f9223 462
4e6f9223
SC
463*/
464
d94aca1a
MT
465unsigned int
466bfd_arch_bits_per_byte (abfd)
467 bfd *abfd;
c188b0be
DM
468{
469 return abfd->arch_info->bits_per_byte;
470}
4e6f9223 471
9fda1a39
SC
472/*
473FUNCTION
474 bfd_arch_bits_per_address
4e6f9223 475
9fda1a39
SC
476SYNOPSIS
477 unsigned int bfd_arch_bits_per_address(bfd *abfd);
ce07dd7c
KR
478
479DESCRIPTION
c188b0be
DM
480 Return the number of bits in one of the BFD @var{abfd}'s
481 architecture's addresses.
4e6f9223
SC
482*/
483
d94aca1a
MT
484unsigned int
485bfd_arch_bits_per_address (abfd)
486 bfd *abfd;
c188b0be
DM
487{
488 return abfd->arch_info->bits_per_address;
489}
4e6f9223
SC
490
491
9fda1a39 492/*
ce07dd7c 493INTERNAL_FUNCTION
9fda1a39 494 bfd_default_compatible
4e6f9223 495
9fda1a39 496SYNOPSIS
5bc513b4
DE
497 const bfd_arch_info_type *bfd_default_compatible
498 (const bfd_arch_info_type *a,
499 const bfd_arch_info_type *b);
ce07dd7c
KR
500
501DESCRIPTION
502 The default function for testing for compatibility.
4e6f9223
SC
503*/
504
5bc513b4 505const bfd_arch_info_type *
d94aca1a 506bfd_default_compatible (a,b)
5bc513b4
DE
507 const bfd_arch_info_type *a;
508 const bfd_arch_info_type *b;
4e6f9223 509{
5bc513b4
DE
510 if (a->arch != b->arch)
511 return NULL;
4e6f9223 512
5bc513b4 513 if (a->mach > b->mach)
4e6f9223 514 return a;
5bc513b4
DE
515
516 if (b->mach > a->mach)
4e6f9223 517 return b;
5bc513b4 518
4e6f9223 519 return a;
4a81b561
DHW
520}
521
522
9fda1a39 523/*
ce07dd7c 524INTERNAL_FUNCTION
9fda1a39
SC
525 bfd_default_scan
526
9fda1a39 527SYNOPSIS
5bc513b4 528 boolean bfd_default_scan(const struct bfd_arch_info *info, const char *string);
4e6f9223 529
ce07dd7c
KR
530DESCRIPTION
531 The default function for working out whether this is an
532 architecture hit and a machine hit.
4e6f9223
SC
533*/
534
535boolean
d94aca1a 536bfd_default_scan (info, string)
5bc513b4
DE
537 const struct bfd_arch_info *info;
538 const char *string;
4a81b561 539{
5bc513b4
DE
540 const char *ptr_src;
541 const char *ptr_tst;
b7577823
ILT
542 unsigned long number;
543 enum bfd_architecture arch;
5bc513b4 544
b7577823 545 /* First test for an exact match */
5bc513b4
DE
546 if (strcmp (string, info->printable_name) == 0)
547 return true;
b7577823
ILT
548
549 /* See how much of the supplied string matches with the
550 architecture, eg the string m68k:68020 would match the 68k entry
551 up to the :, then we get left with the machine number */
552
5bc513b4 553 for (ptr_src = string, ptr_tst = info->arch_name;
b7577823 554 *ptr_src && *ptr_tst;
5bc513b4 555 ptr_src++, ptr_tst++)
9fda1a39 556 {
b7577823 557 if (*ptr_src != *ptr_tst) break;
9fda1a39 558 }
4e6f9223 559
b7577823
ILT
560 /* Chewed up as much of the architecture as will match, skip any
561 colons */
5bc513b4
DE
562 if (*ptr_src == ':')
563 ptr_src++;
4e6f9223 564
5bc513b4
DE
565 if (*ptr_src == 0)
566 {
567 /* nothing more, then only keep this one if it is the default
568 machine for this architecture */
569 return info->the_default;
570 }
571
b7577823 572 number = 0;
5bc513b4
DE
573 while (isdigit(*ptr_src))
574 {
575 number = number * 10 + *ptr_src - '0';
576 ptr_src++;
577 }
b7577823
ILT
578
579 switch (number)
9fda1a39 580 {
b7577823
ILT
581 case 65:
582 arch = bfd_arch_w65;
583 break;
584
585 case 300:
2e235c93
ILT
586 arch = bfd_arch_h8300;
587 break;
588
b7577823 589 case 500:
2e235c93
ILT
590 arch = bfd_arch_h8500;
591 break;
592
b7577823
ILT
593 case 68010:
594 case 68020:
595 case 68030:
596 case 68040:
597 case 68332:
598 case 68050:
599 case 68000:
600 arch = bfd_arch_m68k;
601 break;
5bc513b4 602
b7577823
ILT
603 case 386:
604 case 80386:
605 case 486:
606 case 80486:
607 arch = bfd_arch_i386;
608 break;
5bc513b4 609
b7577823
ILT
610 case 29000:
611 arch = bfd_arch_a29k;
612 break;
4a81b561 613
b7577823
ILT
614 case 8000:
615 arch = bfd_arch_z8k;
616 break;
71c0bae0 617
b7577823
ILT
618 case 32000:
619 arch = bfd_arch_we32k;
620 break;
4e6f9223 621
b7577823
ILT
622 case 860:
623 case 80860:
624 arch = bfd_arch_i860;
625 break;
626 case 960:
627 case 80960:
628 arch = bfd_arch_i960;
629 break;
71c0bae0 630
b7577823
ILT
631 case 2000:
632 case 3000:
633 case 4000:
634 case 4400:
635 arch = bfd_arch_mips;
636 break;
4a81b561 637
b7577823
ILT
638 case 6000:
639 arch = bfd_arch_rs6000;
640 break;
9fda1a39 641
b7577823
ILT
642 default:
643 return false;
9fda1a39 644 }
5bc513b4 645
b7577823
ILT
646 if (arch != info->arch)
647 return false;
9fda1a39 648
b7577823
ILT
649 if (number != info->mach)
650 return false;
9fda1a39 651
b7577823 652 return true;
4a81b561 653}
c618de01
SC
654
655
9fda1a39
SC
656/*
657FUNCTION
658 bfd_get_arch_info
c618de01 659
9fda1a39 660SYNOPSIS
5bc513b4 661 const bfd_arch_info_type * bfd_get_arch_info(bfd *abfd);
c618de01 662
c188b0be
DM
663DESCRIPTION
664 Return the architecture info struct in @var{abfd}.
4e6f9223 665*/
c618de01 666
5bc513b4 667const bfd_arch_info_type *
d94aca1a
MT
668bfd_get_arch_info (abfd)
669 bfd *abfd;
4e6f9223 670{
5bc513b4 671 return abfd->arch_info;
4e6f9223 672}
cbdc7909
JG
673
674
9fda1a39
SC
675/*
676FUNCTION
677 bfd_lookup_arch
678
9fda1a39 679SYNOPSIS
5bc513b4 680 const bfd_arch_info_type *bfd_lookup_arch
9fda1a39
SC
681 (enum bfd_architecture
682 arch,
ae115e51 683 unsigned long machine);
cbdc7909 684
ce07dd7c 685DESCRIPTION
c188b0be
DM
686 Look for the architecure info structure which matches the
687 arguments @var{arch} and @var{machine}. A machine of 0 matches the
ce07dd7c
KR
688 machine/architecture structure which marks itself as the
689 default.
cbdc7909
JG
690*/
691
5bc513b4 692const bfd_arch_info_type *
d94aca1a
MT
693bfd_lookup_arch (arch, machine)
694 enum bfd_architecture arch;
ae115e51 695 unsigned long machine;
cbdc7909 696{
5bc513b4
DE
697 const bfd_arch_info_type * const *app, *ap;
698
699 for (app = bfd_archures_list; *app != NULL; app++)
700 {
701 for (ap = *app; ap != NULL; ap = ap->next)
702 {
703 if (ap->arch == arch
704 && (ap->mach == machine
705 || (machine == 0 && ap->the_default)))
706 return ap;
9fda1a39 707 }
5bc513b4
DE
708 }
709
710 return NULL;
cbdc7909
JG
711}
712
713
9fda1a39
SC
714/*
715FUNCTION
716 bfd_printable_arch_mach
717
ce07dd7c 718SYNOPSIS
5bc513b4 719 const char *bfd_printable_arch_mach
ce07dd7c
KR
720 (enum bfd_architecture arch, unsigned long machine);
721
9fda1a39
SC
722DESCRIPTION
723 Return a printable string representing the architecture and
724 machine type.
cbdc7909 725
c188b0be 726 This routine is depreciated.
cbdc7909
JG
727*/
728
5bc513b4 729const char *
d94aca1a
MT
730bfd_printable_arch_mach (arch, machine)
731 enum bfd_architecture arch;
732 unsigned long machine;
cbdc7909 733{
5bc513b4
DE
734 const bfd_arch_info_type *ap = bfd_lookup_arch (arch, machine);
735
736 if (ap)
737 return ap->printable_name;
9fda1a39 738 return "UNKNOWN!";
cbdc7909 739}
This page took 0.208718 seconds and 4 git commands to generate.