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