Initialize Tizen 2.3
[external/binutils.git] / bfd / doc / archures.texi
1 @section Architectures
2 BFD keeps one atom in a BFD describing the
3 architecture of the data attached to the BFD: a pointer to a
4 @code{bfd_arch_info_type}.
5
6 Pointers to structures can be requested independently of a BFD
7 so that an architecture's information can be interrogated
8 without access to an open BFD.
9
10 The architecture information is provided by each architecture package.
11 The set of default architectures is selected by the macro
12 @code{SELECT_ARCHITECTURES}.  This is normally set up in the
13 @file{config/@var{target}.mt} file of your choice.  If the name is not
14 defined, then all the architectures supported are included.
15
16 When BFD starts up, all the architectures are called with an
17 initialize method.  It is up to the architecture back end to
18 insert as many items into the list of architectures as it wants to;
19 generally this would be one for each machine and one for the
20 default case (an item with a machine field of 0).
21
22 BFD's idea of an architecture is implemented in @file{archures.c}.
23
24 @subsection bfd_architecture
25
26
27 @strong{Description}@*
28 This enum gives the object file's CPU architecture, in a
29 global sense---i.e., what processor family does it belong to?
30 Another field indicates which processor within
31 the family is in use.  The machine gives a number which
32 distinguishes different versions of the architecture,
33 containing, for example, 2 and 3 for Intel i960 KA and i960 KB,
34 and 68020 and 68030 for Motorola 68020 and 68030.
35 @example
36 enum bfd_architecture
37 @{
38   bfd_arch_unknown,   /* File arch not known.  */
39   bfd_arch_obscure,   /* Arch known, not one of these.  */
40   bfd_arch_m68k,      /* Motorola 68xxx */
41 #define bfd_mach_m68000 1
42 #define bfd_mach_m68008 2
43 #define bfd_mach_m68010 3
44 #define bfd_mach_m68020 4
45 #define bfd_mach_m68030 5
46 #define bfd_mach_m68040 6
47 #define bfd_mach_m68060 7
48 #define bfd_mach_cpu32  8
49 #define bfd_mach_fido   9
50 #define bfd_mach_mcf_isa_a_nodiv 10
51 #define bfd_mach_mcf_isa_a 11
52 #define bfd_mach_mcf_isa_a_mac 12
53 #define bfd_mach_mcf_isa_a_emac 13
54 #define bfd_mach_mcf_isa_aplus 14
55 #define bfd_mach_mcf_isa_aplus_mac 15
56 #define bfd_mach_mcf_isa_aplus_emac 16
57 #define bfd_mach_mcf_isa_b_nousp 17
58 #define bfd_mach_mcf_isa_b_nousp_mac 18
59 #define bfd_mach_mcf_isa_b_nousp_emac 19
60 #define bfd_mach_mcf_isa_b 20
61 #define bfd_mach_mcf_isa_b_mac 21
62 #define bfd_mach_mcf_isa_b_emac 22
63 #define bfd_mach_mcf_isa_b_float 23
64 #define bfd_mach_mcf_isa_b_float_mac 24
65 #define bfd_mach_mcf_isa_b_float_emac 25
66 #define bfd_mach_mcf_isa_c 26
67 #define bfd_mach_mcf_isa_c_mac 27
68 #define bfd_mach_mcf_isa_c_emac 28
69 #define bfd_mach_mcf_isa_c_nodiv 29
70 #define bfd_mach_mcf_isa_c_nodiv_mac 30
71 #define bfd_mach_mcf_isa_c_nodiv_emac 31
72   bfd_arch_vax,       /* DEC Vax */
73   bfd_arch_i960,      /* Intel 960 */
74     /* The order of the following is important.
75        lower number indicates a machine type that
76        only accepts a subset of the instructions
77        available to machines with higher numbers.
78        The exception is the "ca", which is
79        incompatible with all other machines except
80        "core".  */
81
82 #define bfd_mach_i960_core      1
83 #define bfd_mach_i960_ka_sa     2
84 #define bfd_mach_i960_kb_sb     3
85 #define bfd_mach_i960_mc        4
86 #define bfd_mach_i960_xa        5
87 #define bfd_mach_i960_ca        6
88 #define bfd_mach_i960_jx        7
89 #define bfd_mach_i960_hx        8
90
91   bfd_arch_or32,      /* OpenRISC 32 */
92
93   bfd_arch_sparc,     /* SPARC */
94 #define bfd_mach_sparc                 1
95 /* The difference between v8plus and v9 is that v9 is a true 64 bit env.  */
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_sparclite_le    6
101 #define bfd_mach_sparc_v9              7
102 #define bfd_mach_sparc_v9a             8 /* with ultrasparc add'ns.  */
103 #define bfd_mach_sparc_v8plusb         9 /* with cheetah add'ns.  */
104 #define bfd_mach_sparc_v9b             10 /* with cheetah add'ns.  */
105 /* Nonzero if MACH has the v9 instruction set.  */
106 #define bfd_mach_sparc_v9_p(mach) \
107   ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9b \
108    && (mach) != bfd_mach_sparc_sparclite_le)
109 /* Nonzero if MACH is a 64 bit sparc architecture.  */
110 #define bfd_mach_sparc_64bit_p(mach) \
111   ((mach) >= bfd_mach_sparc_v9 && (mach) != bfd_mach_sparc_v8plusb)
112   bfd_arch_spu,       /* PowerPC SPU */
113 #define bfd_mach_spu           256 
114   bfd_arch_mips,      /* MIPS Rxxxx */
115 #define bfd_mach_mips3000              3000
116 #define bfd_mach_mips3900              3900
117 #define bfd_mach_mips4000              4000
118 #define bfd_mach_mips4010              4010
119 #define bfd_mach_mips4100              4100
120 #define bfd_mach_mips4111              4111
121 #define bfd_mach_mips4120              4120
122 #define bfd_mach_mips4300              4300
123 #define bfd_mach_mips4400              4400
124 #define bfd_mach_mips4600              4600
125 #define bfd_mach_mips4650              4650
126 #define bfd_mach_mips5000              5000
127 #define bfd_mach_mips5400              5400
128 #define bfd_mach_mips5500              5500
129 #define bfd_mach_mips6000              6000
130 #define bfd_mach_mips7000              7000
131 #define bfd_mach_mips8000              8000
132 #define bfd_mach_mips9000              9000
133 #define bfd_mach_mips10000             10000
134 #define bfd_mach_mips12000             12000
135 #define bfd_mach_mips14000             14000
136 #define bfd_mach_mips16000             16000
137 #define bfd_mach_mips16                16
138 #define bfd_mach_mips5                 5
139 #define bfd_mach_mips_loongson_2e      3001
140 #define bfd_mach_mips_loongson_2f      3002
141 #define bfd_mach_mips_loongson_3a      3003
142 #define bfd_mach_mips_sb1              12310201 /* octal 'SB', 01 */
143 #define bfd_mach_mips_octeon           6501
144 #define bfd_mach_mips_xlr              887682   /* decimal 'XLR'  */
145 #define bfd_mach_mipsisa32             32
146 #define bfd_mach_mipsisa32r2           33
147 #define bfd_mach_mipsisa64             64
148 #define bfd_mach_mipsisa64r2           65
149 #define bfd_mach_mips_micromips        96
150   bfd_arch_i386,      /* Intel 386 */
151 #define bfd_mach_i386_intel_syntax     (1 << 0)
152 #define bfd_mach_i386_i8086            (1 << 1)
153 #define bfd_mach_i386_i386             (1 << 2)
154 #define bfd_mach_x86_64                (1 << 3)
155 #define bfd_mach_x64_32                (1 << 4)
156 #define bfd_mach_i386_i386_intel_syntax (bfd_mach_i386_i386 | bfd_mach_i386_intel_syntax)
157 #define bfd_mach_x86_64_intel_syntax   (bfd_mach_x86_64 | bfd_mach_i386_intel_syntax)
158 #define bfd_mach_x64_32_intel_syntax   (bfd_mach_x64_32 | bfd_mach_i386_intel_syntax)
159   bfd_arch_l1om,   /* Intel L1OM */
160 #define bfd_mach_l1om                  (1 << 5)
161 #define bfd_mach_l1om_intel_syntax     (bfd_mach_l1om | bfd_mach_i386_intel_syntax)
162   bfd_arch_k1om,   /* Intel K1OM */
163 #define bfd_mach_k1om                  (1 << 6)
164 #define bfd_mach_k1om_intel_syntax     (bfd_mach_k1om | bfd_mach_i386_intel_syntax)
165   bfd_arch_we32k,     /* AT&T WE32xxx */
166   bfd_arch_tahoe,     /* CCI/Harris Tahoe */
167   bfd_arch_i860,      /* Intel 860 */
168   bfd_arch_i370,      /* IBM 360/370 Mainframes */
169   bfd_arch_romp,      /* IBM ROMP PC/RT */
170   bfd_arch_convex,    /* Convex */
171   bfd_arch_m88k,      /* Motorola 88xxx */
172   bfd_arch_m98k,      /* Motorola 98xxx */
173   bfd_arch_pyramid,   /* Pyramid Technology */
174   bfd_arch_h8300,     /* Renesas H8/300 (formerly Hitachi H8/300) */
175 #define bfd_mach_h8300    1
176 #define bfd_mach_h8300h   2
177 #define bfd_mach_h8300s   3
178 #define bfd_mach_h8300hn  4
179 #define bfd_mach_h8300sn  5
180 #define bfd_mach_h8300sx  6
181 #define bfd_mach_h8300sxn 7
182   bfd_arch_pdp11,     /* DEC PDP-11 */
183   bfd_arch_plugin,
184   bfd_arch_powerpc,   /* PowerPC */
185 #define bfd_mach_ppc           32
186 #define bfd_mach_ppc64         64
187 #define bfd_mach_ppc_403       403
188 #define bfd_mach_ppc_403gc     4030
189 #define bfd_mach_ppc_405       405
190 #define bfd_mach_ppc_505       505
191 #define bfd_mach_ppc_601       601
192 #define bfd_mach_ppc_602       602
193 #define bfd_mach_ppc_603       603
194 #define bfd_mach_ppc_ec603e    6031
195 #define bfd_mach_ppc_604       604
196 #define bfd_mach_ppc_620       620
197 #define bfd_mach_ppc_630       630
198 #define bfd_mach_ppc_750       750
199 #define bfd_mach_ppc_860       860
200 #define bfd_mach_ppc_a35       35
201 #define bfd_mach_ppc_rs64ii    642
202 #define bfd_mach_ppc_rs64iii   643
203 #define bfd_mach_ppc_7400      7400
204 #define bfd_mach_ppc_e500      500
205 #define bfd_mach_ppc_e500mc    5001
206 #define bfd_mach_ppc_e500mc64  5005
207 #define bfd_mach_ppc_titan     83
208   bfd_arch_rs6000,    /* IBM RS/6000 */
209 #define bfd_mach_rs6k          6000
210 #define bfd_mach_rs6k_rs1      6001
211 #define bfd_mach_rs6k_rsc      6003
212 #define bfd_mach_rs6k_rs2      6002
213   bfd_arch_hppa,      /* HP PA RISC */
214 #define bfd_mach_hppa10        10
215 #define bfd_mach_hppa11        11
216 #define bfd_mach_hppa20        20
217 #define bfd_mach_hppa20w       25
218   bfd_arch_d10v,      /* Mitsubishi D10V */
219 #define bfd_mach_d10v          1
220 #define bfd_mach_d10v_ts2      2
221 #define bfd_mach_d10v_ts3      3
222   bfd_arch_d30v,      /* Mitsubishi D30V */
223   bfd_arch_dlx,       /* DLX */
224   bfd_arch_m68hc11,   /* Motorola 68HC11 */
225   bfd_arch_m68hc12,   /* Motorola 68HC12 */
226 #define bfd_mach_m6812_default 0
227 #define bfd_mach_m6812         1
228 #define bfd_mach_m6812s        2
229   bfd_arch_z8k,       /* Zilog Z8000 */
230 #define bfd_mach_z8001         1
231 #define bfd_mach_z8002         2
232   bfd_arch_h8500,     /* Renesas H8/500 (formerly Hitachi H8/500) */
233   bfd_arch_sh,        /* Renesas / SuperH SH (formerly Hitachi SH) */
234 #define bfd_mach_sh            1
235 #define bfd_mach_sh2        0x20
236 #define bfd_mach_sh_dsp     0x2d
237 #define bfd_mach_sh2a       0x2a
238 #define bfd_mach_sh2a_nofpu 0x2b
239 #define bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu 0x2a1
240 #define bfd_mach_sh2a_nofpu_or_sh3_nommu 0x2a2
241 #define bfd_mach_sh2a_or_sh4  0x2a3
242 #define bfd_mach_sh2a_or_sh3e 0x2a4
243 #define bfd_mach_sh2e       0x2e
244 #define bfd_mach_sh3        0x30
245 #define bfd_mach_sh3_nommu  0x31
246 #define bfd_mach_sh3_dsp    0x3d
247 #define bfd_mach_sh3e       0x3e
248 #define bfd_mach_sh4        0x40
249 #define bfd_mach_sh4_nofpu  0x41
250 #define bfd_mach_sh4_nommu_nofpu  0x42
251 #define bfd_mach_sh4a       0x4a
252 #define bfd_mach_sh4a_nofpu 0x4b
253 #define bfd_mach_sh4al_dsp  0x4d
254 #define bfd_mach_sh5        0x50
255   bfd_arch_alpha,     /* Dec Alpha */
256 #define bfd_mach_alpha_ev4  0x10
257 #define bfd_mach_alpha_ev5  0x20
258 #define bfd_mach_alpha_ev6  0x30
259   bfd_arch_arm,       /* Advanced Risc Machines ARM.  */
260 #define bfd_mach_arm_unknown   0
261 #define bfd_mach_arm_2         1
262 #define bfd_mach_arm_2a        2
263 #define bfd_mach_arm_3         3
264 #define bfd_mach_arm_3M        4
265 #define bfd_mach_arm_4         5
266 #define bfd_mach_arm_4T        6
267 #define bfd_mach_arm_5         7
268 #define bfd_mach_arm_5T        8
269 #define bfd_mach_arm_5TE       9
270 #define bfd_mach_arm_XScale    10
271 #define bfd_mach_arm_ep9312    11
272 #define bfd_mach_arm_iWMMXt    12
273 #define bfd_mach_arm_iWMMXt2   13
274   bfd_arch_ns32k,     /* National Semiconductors ns32000 */
275   bfd_arch_w65,       /* WDC 65816 */
276   bfd_arch_tic30,     /* Texas Instruments TMS320C30 */
277   bfd_arch_tic4x,     /* Texas Instruments TMS320C3X/4X */
278 #define bfd_mach_tic3x         30
279 #define bfd_mach_tic4x         40
280   bfd_arch_tic54x,    /* Texas Instruments TMS320C54X */
281   bfd_arch_tic6x,     /* Texas Instruments TMS320C6X */
282   bfd_arch_tic80,     /* TI TMS320c80 (MVP) */
283   bfd_arch_v850,      /* NEC V850 */
284 #define bfd_mach_v850          1
285 #define bfd_mach_v850e         'E'
286 #define bfd_mach_v850e1        '1'
287 #define bfd_mach_v850e2        0x4532
288 #define bfd_mach_v850e2v3      0x45325633
289   bfd_arch_arc,       /* ARC Cores */
290 #define bfd_mach_arc_5         5
291 #define bfd_mach_arc_6         6
292 #define bfd_mach_arc_7         7
293 #define bfd_mach_arc_8         8
294  bfd_arch_m32c,     /* Renesas M16C/M32C.  */
295 #define bfd_mach_m16c        0x75
296 #define bfd_mach_m32c        0x78
297   bfd_arch_m32r,      /* Renesas M32R (formerly Mitsubishi M32R/D) */
298 #define bfd_mach_m32r          1 /* For backwards compatibility.  */
299 #define bfd_mach_m32rx         'x'
300 #define bfd_mach_m32r2         '2'
301   bfd_arch_mn10200,   /* Matsushita MN10200 */
302   bfd_arch_mn10300,   /* Matsushita MN10300 */
303 #define bfd_mach_mn10300               300
304 #define bfd_mach_am33          330
305 #define bfd_mach_am33_2        332
306   bfd_arch_fr30,
307 #define bfd_mach_fr30          0x46523330
308   bfd_arch_frv,
309 #define bfd_mach_frv           1
310 #define bfd_mach_frvsimple     2
311 #define bfd_mach_fr300         300
312 #define bfd_mach_fr400         400
313 #define bfd_mach_fr450         450
314 #define bfd_mach_frvtomcat     499     /* fr500 prototype */
315 #define bfd_mach_fr500         500
316 #define bfd_mach_fr550         550
317   bfd_arch_moxie,       /* The moxie processor */
318 #define bfd_mach_moxie         1
319   bfd_arch_mcore,
320   bfd_arch_mep,
321 #define bfd_mach_mep           1
322 #define bfd_mach_mep_h1        0x6831
323 #define bfd_mach_mep_c5        0x6335
324   bfd_arch_ia64,      /* HP/Intel ia64 */
325 #define bfd_mach_ia64_elf64    64
326 #define bfd_mach_ia64_elf32    32
327   bfd_arch_ip2k,      /* Ubicom IP2K microcontrollers. */
328 #define bfd_mach_ip2022        1
329 #define bfd_mach_ip2022ext     2
330  bfd_arch_iq2000,     /* Vitesse IQ2000.  */
331 #define bfd_mach_iq2000        1
332 #define bfd_mach_iq10          2
333   bfd_arch_mt,
334 #define bfd_mach_ms1           1
335 #define bfd_mach_mrisc2        2
336 #define bfd_mach_ms2           3
337   bfd_arch_pj,
338   bfd_arch_avr,       /* Atmel AVR microcontrollers.  */
339 #define bfd_mach_avr1          1
340 #define bfd_mach_avr2          2
341 #define bfd_mach_avr25         25
342 #define bfd_mach_avr3          3
343 #define bfd_mach_avr31         31
344 #define bfd_mach_avr35         35
345 #define bfd_mach_avr4          4
346 #define bfd_mach_avr5          5
347 #define bfd_mach_avr51         51
348 #define bfd_mach_avr6          6
349 #define bfd_mach_avrxmega1 101
350 #define bfd_mach_avrxmega2 102
351 #define bfd_mach_avrxmega3 103
352 #define bfd_mach_avrxmega4 104
353 #define bfd_mach_avrxmega5 105
354 #define bfd_mach_avrxmega6 106
355 #define bfd_mach_avrxmega7 107
356   bfd_arch_bfin,        /* ADI Blackfin */
357 #define bfd_mach_bfin          1
358   bfd_arch_cr16,       /* National Semiconductor CompactRISC (ie CR16). */
359 #define bfd_mach_cr16          1
360   bfd_arch_cr16c,       /* National Semiconductor CompactRISC. */
361 #define bfd_mach_cr16c         1
362   bfd_arch_crx,       /*  National Semiconductor CRX.  */
363 #define bfd_mach_crx           1
364   bfd_arch_cris,      /* Axis CRIS */
365 #define bfd_mach_cris_v0_v10   255
366 #define bfd_mach_cris_v32      32
367 #define bfd_mach_cris_v10_v32  1032
368   bfd_arch_rx,        /* Renesas RX.  */
369 #define bfd_mach_rx            0x75
370   bfd_arch_s390,      /* IBM s390 */
371 #define bfd_mach_s390_31       31
372 #define bfd_mach_s390_64       64
373   bfd_arch_score,     /* Sunplus score */ 
374 #define bfd_mach_score3         3
375 #define bfd_mach_score7         7
376   bfd_arch_openrisc,  /* OpenRISC */
377   bfd_arch_mmix,      /* Donald Knuth's educational processor.  */
378   bfd_arch_xstormy16,
379 #define bfd_mach_xstormy16     1
380   bfd_arch_msp430,    /* Texas Instruments MSP430 architecture.  */
381 #define bfd_mach_msp11          11
382 #define bfd_mach_msp110         110
383 #define bfd_mach_msp12          12
384 #define bfd_mach_msp13          13
385 #define bfd_mach_msp14          14
386 #define bfd_mach_msp15          15
387 #define bfd_mach_msp16          16
388 #define bfd_mach_msp21          21
389 #define bfd_mach_msp31          31
390 #define bfd_mach_msp32          32
391 #define bfd_mach_msp33          33
392 #define bfd_mach_msp41          41
393 #define bfd_mach_msp42          42
394 #define bfd_mach_msp43          43
395 #define bfd_mach_msp44          44
396   bfd_arch_xc16x,     /* Infineon's XC16X Series.               */
397 #define bfd_mach_xc16x         1
398 #define bfd_mach_xc16xl        2
399 #define bfd_mach_xc16xs         3
400   bfd_arch_xtensa,    /* Tensilica's Xtensa cores.  */
401 #define bfd_mach_xtensa        1
402   bfd_arch_z80,
403 #define bfd_mach_z80strict      1 /* No undocumented opcodes.  */
404 #define bfd_mach_z80            3 /* With ixl, ixh, iyl, and iyh.  */
405 #define bfd_mach_z80full        7 /* All undocumented instructions.  */
406 #define bfd_mach_r800           11 /* R800: successor with multiplication.  */
407   bfd_arch_lm32,      /* Lattice Mico32 */
408 #define bfd_mach_lm32      1
409   bfd_arch_microblaze,/* Xilinx MicroBlaze. */
410   bfd_arch_tilepro,   /* Tilera TILEPro */
411   bfd_arch_tilegx, /* Tilera TILE-Gx */
412 #define bfd_mach_tilepro   1
413 #define bfd_mach_tilegx    1
414   bfd_arch_last
415   @};
416 @end example
417
418 @subsection bfd_arch_info
419
420
421 @strong{Description}@*
422 This structure contains information on architectures for use
423 within BFD.
424 @example
425
426 typedef struct bfd_arch_info
427 @{
428   int bits_per_word;
429   int bits_per_address;
430   int bits_per_byte;
431   enum bfd_architecture arch;
432   unsigned long mach;
433   const char *arch_name;
434   const char *printable_name;
435   unsigned int section_align_power;
436   /* TRUE if this is the default machine for the architecture.
437      The default arch should be the first entry for an arch so that
438      all the entries for that arch can be accessed via @code{next}.  */
439   bfd_boolean the_default;
440   const struct bfd_arch_info * (*compatible)
441     (const struct bfd_arch_info *a, const struct bfd_arch_info *b);
442
443   bfd_boolean (*scan) (const struct bfd_arch_info *, const char *);
444
445   const struct bfd_arch_info *next;
446 @}
447 bfd_arch_info_type;
448
449 @end example
450
451 @findex bfd_printable_name
452 @subsubsection @code{bfd_printable_name}
453 @strong{Synopsis}
454 @example
455 const char *bfd_printable_name (bfd *abfd);
456 @end example
457 @strong{Description}@*
458 Return a printable string representing the architecture and machine
459 from the pointer to the architecture info structure.
460
461 @findex bfd_scan_arch
462 @subsubsection @code{bfd_scan_arch}
463 @strong{Synopsis}
464 @example
465 const bfd_arch_info_type *bfd_scan_arch (const char *string);
466 @end example
467 @strong{Description}@*
468 Figure out if BFD supports any cpu which could be described with
469 the name @var{string}.  Return a pointer to an @code{arch_info}
470 structure if a machine is found, otherwise NULL.
471
472 @findex bfd_arch_list
473 @subsubsection @code{bfd_arch_list}
474 @strong{Synopsis}
475 @example
476 const char **bfd_arch_list (void);
477 @end example
478 @strong{Description}@*
479 Return a freshly malloced NULL-terminated vector of the names
480 of all the valid BFD architectures.  Do not modify the names.
481
482 @findex bfd_arch_get_compatible
483 @subsubsection @code{bfd_arch_get_compatible}
484 @strong{Synopsis}
485 @example
486 const bfd_arch_info_type *bfd_arch_get_compatible
487    (const bfd *abfd, const bfd *bbfd, bfd_boolean accept_unknowns);
488 @end example
489 @strong{Description}@*
490 Determine whether two BFDs' architectures and machine types
491 are compatible.  Calculates the lowest common denominator
492 between the two architectures and machine types implied by
493 the BFDs and returns a pointer to an @code{arch_info} structure
494 describing the compatible machine.
495
496 @findex bfd_default_arch_struct
497 @subsubsection @code{bfd_default_arch_struct}
498 @strong{Description}@*
499 The @code{bfd_default_arch_struct} is an item of
500 @code{bfd_arch_info_type} which has been initialized to a fairly
501 generic state.  A BFD starts life by pointing to this
502 structure, until the correct back end has determined the real
503 architecture of the file.
504 @example
505 extern const bfd_arch_info_type bfd_default_arch_struct;
506 @end example
507
508 @findex bfd_set_arch_info
509 @subsubsection @code{bfd_set_arch_info}
510 @strong{Synopsis}
511 @example
512 void bfd_set_arch_info (bfd *abfd, const bfd_arch_info_type *arg);
513 @end example
514 @strong{Description}@*
515 Set the architecture info of @var{abfd} to @var{arg}.
516
517 @findex bfd_default_set_arch_mach
518 @subsubsection @code{bfd_default_set_arch_mach}
519 @strong{Synopsis}
520 @example
521 bfd_boolean bfd_default_set_arch_mach
522    (bfd *abfd, enum bfd_architecture arch, unsigned long mach);
523 @end example
524 @strong{Description}@*
525 Set the architecture and machine type in BFD @var{abfd}
526 to @var{arch} and @var{mach}.  Find the correct
527 pointer to a structure and insert it into the @code{arch_info}
528 pointer.
529
530 @findex bfd_get_arch
531 @subsubsection @code{bfd_get_arch}
532 @strong{Synopsis}
533 @example
534 enum bfd_architecture bfd_get_arch (bfd *abfd);
535 @end example
536 @strong{Description}@*
537 Return the enumerated type which describes the BFD @var{abfd}'s
538 architecture.
539
540 @findex bfd_get_mach
541 @subsubsection @code{bfd_get_mach}
542 @strong{Synopsis}
543 @example
544 unsigned long bfd_get_mach (bfd *abfd);
545 @end example
546 @strong{Description}@*
547 Return the long type which describes the BFD @var{abfd}'s
548 machine.
549
550 @findex bfd_arch_bits_per_byte
551 @subsubsection @code{bfd_arch_bits_per_byte}
552 @strong{Synopsis}
553 @example
554 unsigned int bfd_arch_bits_per_byte (bfd *abfd);
555 @end example
556 @strong{Description}@*
557 Return the number of bits in one of the BFD @var{abfd}'s
558 architecture's bytes.
559
560 @findex bfd_arch_bits_per_address
561 @subsubsection @code{bfd_arch_bits_per_address}
562 @strong{Synopsis}
563 @example
564 unsigned int bfd_arch_bits_per_address (bfd *abfd);
565 @end example
566 @strong{Description}@*
567 Return the number of bits in one of the BFD @var{abfd}'s
568 architecture's addresses.
569
570 @findex bfd_default_compatible
571 @subsubsection @code{bfd_default_compatible}
572 @strong{Synopsis}
573 @example
574 const bfd_arch_info_type *bfd_default_compatible
575    (const bfd_arch_info_type *a, const bfd_arch_info_type *b);
576 @end example
577 @strong{Description}@*
578 The default function for testing for compatibility.
579
580 @findex bfd_default_scan
581 @subsubsection @code{bfd_default_scan}
582 @strong{Synopsis}
583 @example
584 bfd_boolean bfd_default_scan
585    (const struct bfd_arch_info *info, const char *string);
586 @end example
587 @strong{Description}@*
588 The default function for working out whether this is an
589 architecture hit and a machine hit.
590
591 @findex bfd_get_arch_info
592 @subsubsection @code{bfd_get_arch_info}
593 @strong{Synopsis}
594 @example
595 const bfd_arch_info_type *bfd_get_arch_info (bfd *abfd);
596 @end example
597 @strong{Description}@*
598 Return the architecture info struct in @var{abfd}.
599
600 @findex bfd_lookup_arch
601 @subsubsection @code{bfd_lookup_arch}
602 @strong{Synopsis}
603 @example
604 const bfd_arch_info_type *bfd_lookup_arch
605    (enum bfd_architecture arch, unsigned long machine);
606 @end example
607 @strong{Description}@*
608 Look for the architecture info structure which matches the
609 arguments @var{arch} and @var{machine}. A machine of 0 matches the
610 machine/architecture structure which marks itself as the
611 default.
612
613 @findex bfd_printable_arch_mach
614 @subsubsection @code{bfd_printable_arch_mach}
615 @strong{Synopsis}
616 @example
617 const char *bfd_printable_arch_mach
618    (enum bfd_architecture arch, unsigned long machine);
619 @end example
620 @strong{Description}@*
621 Return a printable string representing the architecture and
622 machine type.
623
624 This routine is depreciated.
625
626 @findex bfd_octets_per_byte
627 @subsubsection @code{bfd_octets_per_byte}
628 @strong{Synopsis}
629 @example
630 unsigned int bfd_octets_per_byte (bfd *abfd);
631 @end example
632 @strong{Description}@*
633 Return the number of octets (8-bit quantities) per target byte
634 (minimum addressable unit).  In most cases, this will be one, but some
635 DSP targets have 16, 32, or even 48 bits per byte.
636
637 @findex bfd_arch_mach_octets_per_byte
638 @subsubsection @code{bfd_arch_mach_octets_per_byte}
639 @strong{Synopsis}
640 @example
641 unsigned int bfd_arch_mach_octets_per_byte
642    (enum bfd_architecture arch, unsigned long machine);
643 @end example
644 @strong{Description}@*
645 See bfd_octets_per_byte.
646
647 This routine is provided for those cases where a bfd * is not
648 available
649