xref: /netbsd-src/external/gpl3/gdb.old/dist/bfd/archures.c (revision 8b657b0747480f8989760d71343d6dd33f8d4cf9)
1 /* BFD library support routines for architectures.
2    Copyright (C) 1990-2022 Free Software Foundation, Inc.
3    Hacked by John Gilmore and Steve Chamberlain of Cygnus Support.
4 
5    This file is part of BFD, the Binary File Descriptor library.
6 
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11 
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16 
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20    MA 02110-1301, USA.  */
21 
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "libbfd.h"
25 #include "safe-ctype.h"
26 
27 /*
28 
29 SECTION
30 	Architectures
31 
32 	BFD keeps one atom in a BFD describing the
33 	architecture of the data attached to the BFD: a pointer to a
34 	<<bfd_arch_info_type>>.
35 
36 	Pointers to structures can be requested independently of a BFD
37 	so that an architecture's information can be interrogated
38 	without access to an open BFD.
39 
40 	The architecture information is provided by each architecture package.
41 	The set of default architectures is selected by the macro
42 	<<SELECT_ARCHITECTURES>>.  This is normally set up in the
43 	@file{config/@var{target}.mt} file of your choice.  If the name is not
44 	defined, then all the architectures supported are included.
45 
46 	When BFD starts up, all the architectures are called with an
47 	initialize method.  It is up to the architecture back end to
48 	insert as many items into the list of architectures as it wants to;
49 	generally this would be one for each machine and one for the
50 	default case (an item with a machine field of 0).
51 
52 	BFD's idea of an architecture is implemented in	@file{archures.c}.
53 */
54 
55 /*
56 
57 SUBSECTION
58 	bfd_architecture
59 
60 DESCRIPTION
61 	This enum gives the object file's CPU architecture, in a
62 	global sense---i.e., what processor family does it belong to?
63 	Another field indicates which processor within
64 	the family is in use.  The machine gives a number which
65 	distinguishes different versions of the architecture,
66 	containing, for example, 68020 for Motorola 68020.
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 .#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
81 .#define bfd_mach_fido			9
82 .#define bfd_mach_mcf_isa_a_nodiv	10
83 .#define bfd_mach_mcf_isa_a		11
84 .#define bfd_mach_mcf_isa_a_mac		12
85 .#define bfd_mach_mcf_isa_a_emac	13
86 .#define bfd_mach_mcf_isa_aplus		14
87 .#define bfd_mach_mcf_isa_aplus_mac	15
88 .#define bfd_mach_mcf_isa_aplus_emac	16
89 .#define bfd_mach_mcf_isa_b_nousp	17
90 .#define bfd_mach_mcf_isa_b_nousp_mac	18
91 .#define bfd_mach_mcf_isa_b_nousp_emac	19
92 .#define bfd_mach_mcf_isa_b		20
93 .#define bfd_mach_mcf_isa_b_mac		21
94 .#define bfd_mach_mcf_isa_b_emac	22
95 .#define bfd_mach_mcf_isa_b_float	23
96 .#define bfd_mach_mcf_isa_b_float_mac	24
97 .#define bfd_mach_mcf_isa_b_float_emac	25
98 .#define bfd_mach_mcf_isa_c		26
99 .#define bfd_mach_mcf_isa_c_mac		27
100 .#define bfd_mach_mcf_isa_c_emac	28
101 .#define bfd_mach_mcf_isa_c_nodiv	29
102 .#define bfd_mach_mcf_isa_c_nodiv_mac	30
103 .#define bfd_mach_mcf_isa_c_nodiv_emac	31
104 .  bfd_arch_vax,       {* DEC Vax.  *}
105 .
106 .  bfd_arch_or1k,      {* OpenRISC 1000.  *}
107 .#define bfd_mach_or1k		1
108 .#define bfd_mach_or1knd	2
109 .
110 .  bfd_arch_sparc,     {* SPARC.  *}
111 .#define bfd_mach_sparc			1
112 .{* The difference between v8plus and v9 is that v9 is a true 64 bit env.  *}
113 .#define bfd_mach_sparc_sparclet	2
114 .#define bfd_mach_sparc_sparclite	3
115 .#define bfd_mach_sparc_v8plus		4
116 .#define bfd_mach_sparc_v8plusa		5 {* with ultrasparc add'ns.  *}
117 .#define bfd_mach_sparc_sparclite_le	6
118 .#define bfd_mach_sparc_v9		7
119 .#define bfd_mach_sparc_v9a		8 {* with ultrasparc add'ns.  *}
120 .#define bfd_mach_sparc_v8plusb		9 {* with cheetah add'ns.  *}
121 .#define bfd_mach_sparc_v9b		10 {* with cheetah add'ns.  *}
122 .#define bfd_mach_sparc_v8plusc		11 {* with UA2005 and T1 add'ns.  *}
123 .#define bfd_mach_sparc_v9c		12 {* with UA2005 and T1 add'ns.  *}
124 .#define bfd_mach_sparc_v8plusd		13 {* with UA2007 and T3 add'ns.  *}
125 .#define bfd_mach_sparc_v9d		14 {* with UA2007 and T3 add'ns.  *}
126 .#define bfd_mach_sparc_v8pluse		15 {* with OSA2001 and T4 add'ns (no IMA).  *}
127 .#define bfd_mach_sparc_v9e		16 {* with OSA2001 and T4 add'ns (no IMA).  *}
128 .#define bfd_mach_sparc_v8plusv		17 {* with OSA2011 and T4 and IMA and FJMAU add'ns.  *}
129 .#define bfd_mach_sparc_v9v		18 {* with OSA2011 and T4 and IMA and FJMAU add'ns.  *}
130 .#define bfd_mach_sparc_v8plusm		19 {* with OSA2015 and M7 add'ns.  *}
131 .#define bfd_mach_sparc_v9m		20 {* with OSA2015 and M7 add'ns.  *}
132 .#define bfd_mach_sparc_v8plusm8	21 {* with OSA2017 and M8 add'ns.  *}
133 .#define bfd_mach_sparc_v9m8		22 {* with OSA2017 and M8 add'ns.  *}
134 .{* Nonzero if MACH has the v9 instruction set.  *}
135 .#define bfd_mach_sparc_v9_p(mach) \
136 .  ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9m8 \
137 .   && (mach) != bfd_mach_sparc_sparclite_le)
138 .{* Nonzero if MACH is a 64 bit sparc architecture.  *}
139 .#define bfd_mach_sparc_64bit_p(mach) \
140 .  ((mach) >= bfd_mach_sparc_v9 \
141 .   && (mach) != bfd_mach_sparc_v8plusb \
142 .   && (mach) != bfd_mach_sparc_v8plusc \
143 .   && (mach) != bfd_mach_sparc_v8plusd \
144 .   && (mach) != bfd_mach_sparc_v8pluse \
145 .   && (mach) != bfd_mach_sparc_v8plusv \
146 .   && (mach) != bfd_mach_sparc_v8plusm \
147 .   && (mach) != bfd_mach_sparc_v8plusm8)
148 .  bfd_arch_spu,       {* PowerPC SPU.  *}
149 .#define bfd_mach_spu		256
150 .  bfd_arch_mips,      {* MIPS Rxxxx.  *}
151 .#define bfd_mach_mips3000		3000
152 .#define bfd_mach_mips3900		3900
153 .#define bfd_mach_mips4000		4000
154 .#define bfd_mach_mips4010		4010
155 .#define bfd_mach_mips4100		4100
156 .#define bfd_mach_mips4111		4111
157 .#define bfd_mach_mips4120		4120
158 .#define bfd_mach_mips4300		4300
159 .#define bfd_mach_mips4400		4400
160 .#define bfd_mach_mips4600		4600
161 .#define bfd_mach_mips4650		4650
162 .#define bfd_mach_mips5000		5000
163 .#define bfd_mach_mips5400		5400
164 .#define bfd_mach_mips5500		5500
165 .#define bfd_mach_mips5900		5900
166 .#define bfd_mach_mips6000		6000
167 .#define bfd_mach_mips7000		7000
168 .#define bfd_mach_mips8000		8000
169 .#define bfd_mach_mips9000		9000
170 .#define bfd_mach_mips10000		10000
171 .#define bfd_mach_mips12000		12000
172 .#define bfd_mach_mips14000		14000
173 .#define bfd_mach_mips16000		16000
174 .#define bfd_mach_mips16		16
175 .#define bfd_mach_mips5			5
176 .#define bfd_mach_mips_loongson_2e	3001
177 .#define bfd_mach_mips_loongson_2f	3002
178 .#define bfd_mach_mips_gs464		3003
179 .#define bfd_mach_mips_gs464e		3004
180 .#define bfd_mach_mips_gs264e		3005
181 .#define bfd_mach_mips_sb1		12310201 {* octal 'SB', 01.  *}
182 .#define bfd_mach_mips_octeon		6501
183 .#define bfd_mach_mips_octeonp		6601
184 .#define bfd_mach_mips_octeon2		6502
185 .#define bfd_mach_mips_octeon3		6503
186 .#define bfd_mach_mips_xlr		887682	 {* decimal 'XLR'.  *}
187 .#define bfd_mach_mips_interaptiv_mr2	736550	 {* decimal 'IA2'.  *}
188 .#define bfd_mach_mipsisa32		32
189 .#define bfd_mach_mipsisa32r2		33
190 .#define bfd_mach_mipsisa32r3		34
191 .#define bfd_mach_mipsisa32r5		36
192 .#define bfd_mach_mipsisa32r6		37
193 .#define bfd_mach_mipsisa64		64
194 .#define bfd_mach_mipsisa64r2		65
195 .#define bfd_mach_mipsisa64r3		66
196 .#define bfd_mach_mipsisa64r5		68
197 .#define bfd_mach_mipsisa64r6		69
198 .#define bfd_mach_mips_micromips	96
199 .  bfd_arch_i386,      {* Intel 386.  *}
200 .#define bfd_mach_i386_intel_syntax	(1 << 0)
201 .#define bfd_mach_i386_i8086		(1 << 1)
202 .#define bfd_mach_i386_i386		(1 << 2)
203 .#define bfd_mach_x86_64		(1 << 3)
204 .#define bfd_mach_x64_32		(1 << 4)
205 .#define bfd_mach_i386_i386_intel_syntax (bfd_mach_i386_i386 | bfd_mach_i386_intel_syntax)
206 .#define bfd_mach_x86_64_intel_syntax	(bfd_mach_x86_64 | bfd_mach_i386_intel_syntax)
207 .#define bfd_mach_x64_32_intel_syntax	(bfd_mach_x64_32 | bfd_mach_i386_intel_syntax)
208 .  bfd_arch_iamcu,     {* Intel MCU.  *}
209 .#define bfd_mach_iamcu			(1 << 8)
210 .#define bfd_mach_i386_iamcu		(bfd_mach_i386_i386 | bfd_mach_iamcu)
211 .#define bfd_mach_i386_iamcu_intel_syntax (bfd_mach_i386_iamcu | bfd_mach_i386_intel_syntax)
212 .  bfd_arch_romp,      {* IBM ROMP PC/RT.  *}
213 .  bfd_arch_convex,    {* Convex.  *}
214 .  bfd_arch_m98k,      {* Motorola 98xxx.  *}
215 .  bfd_arch_pyramid,   {* Pyramid Technology.  *}
216 .  bfd_arch_h8300,     {* Renesas H8/300 (formerly Hitachi H8/300).  *}
217 .#define bfd_mach_h8300		1
218 .#define bfd_mach_h8300h	2
219 .#define bfd_mach_h8300s	3
220 .#define bfd_mach_h8300hn	4
221 .#define bfd_mach_h8300sn	5
222 .#define bfd_mach_h8300sx	6
223 .#define bfd_mach_h8300sxn	7
224 .  bfd_arch_pdp11,     {* DEC PDP-11.  *}
225 .  bfd_arch_powerpc,   {* PowerPC.  *}
226 .#define bfd_mach_ppc		32
227 .#define bfd_mach_ppc64		64
228 .#define bfd_mach_ppc_403	403
229 .#define bfd_mach_ppc_403gc	4030
230 .#define bfd_mach_ppc_405	405
231 .#define bfd_mach_ppc_505	505
232 .#define bfd_mach_ppc_601	601
233 .#define bfd_mach_ppc_602	602
234 .#define bfd_mach_ppc_603	603
235 .#define bfd_mach_ppc_ec603e	6031
236 .#define bfd_mach_ppc_604	604
237 .#define bfd_mach_ppc_620	620
238 .#define bfd_mach_ppc_630	630
239 .#define bfd_mach_ppc_750	750
240 .#define bfd_mach_ppc_860	860
241 .#define bfd_mach_ppc_a35	35
242 .#define bfd_mach_ppc_rs64ii	642
243 .#define bfd_mach_ppc_rs64iii	643
244 .#define bfd_mach_ppc_7400	7400
245 .#define bfd_mach_ppc_e500	500
246 .#define bfd_mach_ppc_e500mc	5001
247 .#define bfd_mach_ppc_e500mc64	5005
248 .#define bfd_mach_ppc_e5500	5006
249 .#define bfd_mach_ppc_e6500	5007
250 .#define bfd_mach_ppc_titan	83
251 .#define bfd_mach_ppc_vle	84
252 .  bfd_arch_rs6000,    {* IBM RS/6000.  *}
253 .#define bfd_mach_rs6k		6000
254 .#define bfd_mach_rs6k_rs1	6001
255 .#define bfd_mach_rs6k_rsc	6003
256 .#define bfd_mach_rs6k_rs2	6002
257 .  bfd_arch_hppa,      {* HP PA RISC.  *}
258 .#define bfd_mach_hppa10	10
259 .#define bfd_mach_hppa11	11
260 .#define bfd_mach_hppa20	20
261 .#define bfd_mach_hppa20w	25
262 .  bfd_arch_d10v,      {* Mitsubishi D10V.  *}
263 .#define bfd_mach_d10v		1
264 .#define bfd_mach_d10v_ts2	2
265 .#define bfd_mach_d10v_ts3	3
266 .  bfd_arch_d30v,      {* Mitsubishi D30V.  *}
267 .  bfd_arch_dlx,       {* DLX.  *}
268 .  bfd_arch_m68hc11,   {* Motorola 68HC11.  *}
269 .  bfd_arch_m68hc12,   {* Motorola 68HC12.  *}
270 .#define bfd_mach_m6812_default 0
271 .#define bfd_mach_m6812		1
272 .#define bfd_mach_m6812s	2
273 .  bfd_arch_m9s12x,    {* Freescale S12X.  *}
274 .  bfd_arch_m9s12xg,   {* Freescale XGATE.  *}
275 .  bfd_arch_s12z,    {* Freescale S12Z.  *}
276 .#define bfd_mach_s12z_default 0
277 .  bfd_arch_z8k,       {* Zilog Z8000.  *}
278 .#define bfd_mach_z8001		1
279 .#define bfd_mach_z8002		2
280 .  bfd_arch_sh,	       {* Renesas / SuperH SH (formerly Hitachi SH).  *}
281 .#define bfd_mach_sh				1
282 .#define bfd_mach_sh2				0x20
283 .#define bfd_mach_sh_dsp			0x2d
284 .#define bfd_mach_sh2a				0x2a
285 .#define bfd_mach_sh2a_nofpu			0x2b
286 .#define bfd_mach_sh2a_nofpu_or_sh4_nommu_nofpu 0x2a1
287 .#define bfd_mach_sh2a_nofpu_or_sh3_nommu	0x2a2
288 .#define bfd_mach_sh2a_or_sh4			0x2a3
289 .#define bfd_mach_sh2a_or_sh3e			0x2a4
290 .#define bfd_mach_sh2e				0x2e
291 .#define bfd_mach_sh3				0x30
292 .#define bfd_mach_sh3_nommu			0x31
293 .#define bfd_mach_sh3_dsp			0x3d
294 .#define bfd_mach_sh3e				0x3e
295 .#define bfd_mach_sh4				0x40
296 .#define bfd_mach_sh4_nofpu			0x41
297 .#define bfd_mach_sh4_nommu_nofpu		0x42
298 .#define bfd_mach_sh4a				0x4a
299 .#define bfd_mach_sh4a_nofpu			0x4b
300 .#define bfd_mach_sh4al_dsp			0x4d
301 .  bfd_arch_alpha,     {* Dec Alpha.  *}
302 .#define bfd_mach_alpha_ev4	0x10
303 .#define bfd_mach_alpha_ev5	0x20
304 .#define bfd_mach_alpha_ev6	0x30
305 .  bfd_arch_arm,       {* Advanced Risc Machines ARM.  *}
306 .#define bfd_mach_arm_unknown	0
307 .#define bfd_mach_arm_2		1
308 .#define bfd_mach_arm_2a	2
309 .#define bfd_mach_arm_3		3
310 .#define bfd_mach_arm_3M	4
311 .#define bfd_mach_arm_4		5
312 .#define bfd_mach_arm_4T	6
313 .#define bfd_mach_arm_5		7
314 .#define bfd_mach_arm_5T	8
315 .#define bfd_mach_arm_5TE	9
316 .#define bfd_mach_arm_XScale	10
317 .#define bfd_mach_arm_ep9312	11
318 .#define bfd_mach_arm_iWMMXt	12
319 .#define bfd_mach_arm_iWMMXt2	13
320 .#define bfd_mach_arm_5TEJ      14
321 .#define bfd_mach_arm_6         15
322 .#define bfd_mach_arm_6KZ       16
323 .#define bfd_mach_arm_6T2       17
324 .#define bfd_mach_arm_6K        18
325 .#define bfd_mach_arm_7         19
326 .#define bfd_mach_arm_6M        20
327 .#define bfd_mach_arm_6SM       21
328 .#define bfd_mach_arm_7EM       22
329 .#define bfd_mach_arm_8         23
330 .#define bfd_mach_arm_8R        24
331 .#define bfd_mach_arm_8M_BASE   25
332 .#define bfd_mach_arm_8M_MAIN   26
333 .#define bfd_mach_arm_8_1M_MAIN 27
334 .#define bfd_mach_arm_9         28
335 .  bfd_arch_nds32,     {* Andes NDS32.  *}
336 .#define bfd_mach_n1		1
337 .#define bfd_mach_n1h		2
338 .#define bfd_mach_n1h_v2	3
339 .#define bfd_mach_n1h_v3	4
340 .#define bfd_mach_n1h_v3m	5
341 .  bfd_arch_ns32k,     {* National Semiconductors ns32000.  *}
342 .  bfd_arch_tic30,     {* Texas Instruments TMS320C30.  *}
343 .  bfd_arch_tic4x,     {* Texas Instruments TMS320C3X/4X.  *}
344 .#define bfd_mach_tic3x		30
345 .#define bfd_mach_tic4x		40
346 .  bfd_arch_tic54x,    {* Texas Instruments TMS320C54X.  *}
347 .  bfd_arch_tic6x,     {* Texas Instruments TMS320C6X.  *}
348 .  bfd_arch_v850,      {* NEC V850.  *}
349 .  bfd_arch_v850_rh850,{* NEC V850 (using RH850 ABI).  *}
350 .#define bfd_mach_v850		1
351 .#define bfd_mach_v850e		'E'
352 .#define bfd_mach_v850e1	'1'
353 .#define bfd_mach_v850e2	0x4532
354 .#define bfd_mach_v850e2v3	0x45325633
355 .#define bfd_mach_v850e3v5	0x45335635 {* ('E'|'3'|'V'|'5').  *}
356 .  bfd_arch_arc,       {* ARC Cores.  *}
357 .#define bfd_mach_arc_a4	0
358 .#define bfd_mach_arc_a5	1
359 .#define bfd_mach_arc_arc600	2
360 .#define bfd_mach_arc_arc601	4
361 .#define bfd_mach_arc_arc700	3
362 .#define bfd_mach_arc_arcv2	5
363 . bfd_arch_m32c,       {* Renesas M16C/M32C.  *}
364 .#define bfd_mach_m16c		0x75
365 .#define bfd_mach_m32c		0x78
366 .  bfd_arch_m32r,      {* Renesas M32R (formerly Mitsubishi M32R/D).  *}
367 .#define bfd_mach_m32r		1 {* For backwards compatibility.  *}
368 .#define bfd_mach_m32rx		'x'
369 .#define bfd_mach_m32r2		'2'
370 .  bfd_arch_mn10200,   {* Matsushita MN10200.  *}
371 .  bfd_arch_mn10300,   {* Matsushita MN10300.  *}
372 .#define bfd_mach_mn10300	300
373 .#define bfd_mach_am33		330
374 .#define bfd_mach_am33_2	332
375 .  bfd_arch_fr30,
376 .#define bfd_mach_fr30		0x46523330
377 .  bfd_arch_frv,
378 .#define bfd_mach_frv		1
379 .#define bfd_mach_frvsimple	2
380 .#define bfd_mach_fr300		300
381 .#define bfd_mach_fr400		400
382 .#define bfd_mach_fr450		450
383 .#define bfd_mach_frvtomcat	499	{* fr500 prototype.  *}
384 .#define bfd_mach_fr500		500
385 .#define bfd_mach_fr550		550
386 .  bfd_arch_moxie,     {* The moxie processor.  *}
387 .#define bfd_mach_moxie		1
388 .  bfd_arch_ft32,      {* The ft32 processor.  *}
389 .#define bfd_mach_ft32		1
390 .#define bfd_mach_ft32b		2
391 .  bfd_arch_mcore,
392 .  bfd_arch_mep,
393 .#define bfd_mach_mep		1
394 .#define bfd_mach_mep_h1	0x6831
395 .#define bfd_mach_mep_c5	0x6335
396 .  bfd_arch_metag,
397 .#define bfd_mach_metag		1
398 .  bfd_arch_ia64,      {* HP/Intel ia64.  *}
399 .#define bfd_mach_ia64_elf64	64
400 .#define bfd_mach_ia64_elf32	32
401 .  bfd_arch_ip2k,      {* Ubicom IP2K microcontrollers. *}
402 .#define bfd_mach_ip2022	1
403 .#define bfd_mach_ip2022ext	2
404 . bfd_arch_iq2000,     {* Vitesse IQ2000.  *}
405 .#define bfd_mach_iq2000	1
406 .#define bfd_mach_iq10		2
407 .  bfd_arch_bpf,       {* Linux eBPF.  *}
408 .#define bfd_mach_bpf		1
409 .#define bfd_mach_xbpf		2
410 .  bfd_arch_epiphany,  {* Adapteva EPIPHANY.  *}
411 .#define bfd_mach_epiphany16	1
412 .#define bfd_mach_epiphany32	2
413 .  bfd_arch_mt,
414 .#define bfd_mach_ms1		1
415 .#define bfd_mach_mrisc2	2
416 .#define bfd_mach_ms2		3
417 .  bfd_arch_pj,
418 .  bfd_arch_avr,       {* Atmel AVR microcontrollers.  *}
419 .#define bfd_mach_avr1		1
420 .#define bfd_mach_avr2		2
421 .#define bfd_mach_avr25		25
422 .#define bfd_mach_avr3		3
423 .#define bfd_mach_avr31		31
424 .#define bfd_mach_avr35		35
425 .#define bfd_mach_avr4		4
426 .#define bfd_mach_avr5		5
427 .#define bfd_mach_avr51		51
428 .#define bfd_mach_avr6		6
429 .#define bfd_mach_avrtiny	100
430 .#define bfd_mach_avrxmega1	101
431 .#define bfd_mach_avrxmega2	102
432 .#define bfd_mach_avrxmega3	103
433 .#define bfd_mach_avrxmega4	104
434 .#define bfd_mach_avrxmega5	105
435 .#define bfd_mach_avrxmega6	106
436 .#define bfd_mach_avrxmega7	107
437 .  bfd_arch_bfin,      {* ADI Blackfin.  *}
438 .#define bfd_mach_bfin		1
439 .  bfd_arch_cr16,      {* National Semiconductor CompactRISC (ie CR16).  *}
440 .#define bfd_mach_cr16		1
441 .  bfd_arch_crx,       {*  National Semiconductor CRX.  *}
442 .#define bfd_mach_crx		1
443 .  bfd_arch_cris,      {* Axis CRIS.  *}
444 .#define bfd_mach_cris_v0_v10	255
445 .#define bfd_mach_cris_v32	32
446 .#define bfd_mach_cris_v10_v32	1032
447 .  bfd_arch_riscv,
448 .#define bfd_mach_riscv32	132
449 .#define bfd_mach_riscv64	164
450 .  bfd_arch_rl78,
451 .#define bfd_mach_rl78		0x75
452 .  bfd_arch_rx,	       {* Renesas RX.  *}
453 .#define bfd_mach_rx		0x75
454 .#define bfd_mach_rx_v2		0x76
455 .#define bfd_mach_rx_v3		0x77
456 .  bfd_arch_s390,      {* IBM s390.  *}
457 .#define bfd_mach_s390_31	31
458 .#define bfd_mach_s390_64	64
459 .  bfd_arch_score,     {* Sunplus score.  *}
460 .#define bfd_mach_score3	3
461 .#define bfd_mach_score7	7
462 .  bfd_arch_mmix,      {* Donald Knuth's educational processor.  *}
463 .  bfd_arch_xstormy16,
464 .#define bfd_mach_xstormy16	1
465 .  bfd_arch_msp430,    {* Texas Instruments MSP430 architecture.  *}
466 .#define bfd_mach_msp11		11
467 .#define bfd_mach_msp110	110
468 .#define bfd_mach_msp12		12
469 .#define bfd_mach_msp13		13
470 .#define bfd_mach_msp14		14
471 .#define bfd_mach_msp15		15
472 .#define bfd_mach_msp16		16
473 .#define bfd_mach_msp20		20
474 .#define bfd_mach_msp21		21
475 .#define bfd_mach_msp22		22
476 .#define bfd_mach_msp23		23
477 .#define bfd_mach_msp24		24
478 .#define bfd_mach_msp26		26
479 .#define bfd_mach_msp31		31
480 .#define bfd_mach_msp32		32
481 .#define bfd_mach_msp33		33
482 .#define bfd_mach_msp41		41
483 .#define bfd_mach_msp42		42
484 .#define bfd_mach_msp43		43
485 .#define bfd_mach_msp44		44
486 .#define bfd_mach_msp430x	45
487 .#define bfd_mach_msp46		46
488 .#define bfd_mach_msp47		47
489 .#define bfd_mach_msp54		54
490 .  bfd_arch_xgate,     {* Freescale XGATE.  *}
491 .#define bfd_mach_xgate		1
492 .  bfd_arch_xtensa,    {* Tensilica's Xtensa cores.  *}
493 .#define bfd_mach_xtensa	1
494 .  bfd_arch_z80,
495 .{* Zilog Z80 without undocumented opcodes.  *}
496 .#define bfd_mach_z80strict	1
497 .{* Zilog Z180: successor with additional instructions, but without
498 . halves of ix and iy.  *}
499 .#define bfd_mach_z180		2
500 .{* Zilog Z80 with ixl, ixh, iyl, and iyh.  *}
501 .#define bfd_mach_z80		3
502 .{* Zilog eZ80 (successor of Z80 & Z180) in Z80 (16-bit address) mode.  *}
503 .#define bfd_mach_ez80_z80	4
504 .{* Zilog eZ80 (successor of Z80 & Z180) in ADL (24-bit address) mode.  *}
505 .#define bfd_mach_ez80_adl	5
506 .{* Z80N *}
507 .#define bfd_mach_z80n		6
508 .{* Zilog Z80 with all undocumented instructions.  *}
509 .#define bfd_mach_z80full	7
510 .{* GameBoy Z80 (reduced instruction set).  *}
511 .#define bfd_mach_gbz80		8
512 .{* ASCII R800: successor with multiplication.  *}
513 .#define bfd_mach_r800		11
514 .  bfd_arch_lm32,      {* Lattice Mico32.  *}
515 .#define bfd_mach_lm32		1
516 .  bfd_arch_microblaze,{* Xilinx MicroBlaze.  *}
517 .  bfd_arch_tilepro,   {* Tilera TILEPro.  *}
518 .  bfd_arch_tilegx,    {* Tilera TILE-Gx.  *}
519 .#define bfd_mach_tilepro	1
520 .#define bfd_mach_tilegx	1
521 .#define bfd_mach_tilegx32	2
522 .  bfd_arch_aarch64,   {* AArch64.  *}
523 .#define bfd_mach_aarch64 0
524 .#define bfd_mach_aarch64_8R	1
525 .#define bfd_mach_aarch64_ilp32	32
526 .#define bfd_mach_aarch64_llp64 64
527 .  bfd_arch_nios2,     {* Nios II.  *}
528 .#define bfd_mach_nios2		0
529 .#define bfd_mach_nios2r1	1
530 .#define bfd_mach_nios2r2	2
531 .  bfd_arch_visium,    {* Visium.  *}
532 .#define bfd_mach_visium	1
533 .  bfd_arch_wasm32,    {* WebAssembly.  *}
534 .#define bfd_mach_wasm32	1
535 .  bfd_arch_pru,       {* PRU.  *}
536 .#define bfd_mach_pru		0
537 .  bfd_arch_nfp,       {* Netronome Flow Processor *}
538 .#define bfd_mach_nfp3200	0x3200
539 .#define bfd_mach_nfp6000	0x6000
540 .  bfd_arch_csky,      {* C-SKY.  *}
541 .#define bfd_mach_ck_unknown    0
542 .#define bfd_mach_ck510		1
543 .#define bfd_mach_ck610		2
544 .#define bfd_mach_ck801		3
545 .#define bfd_mach_ck802		4
546 .#define bfd_mach_ck803		5
547 .#define bfd_mach_ck807		6
548 .#define bfd_mach_ck810		7
549 .#define bfd_mach_ck860		8
550 .  bfd_arch_loongarch,       {* LoongArch *}
551 .#define bfd_mach_loongarch32	1
552 .#define bfd_mach_loongarch64	2
553 .  bfd_arch_amdgcn,     {* AMDGCN *}
554 .#define bfd_mach_amdgcn_unknown 0x000
555 .#define bfd_mach_amdgcn_gfx900  0x02c
556 .#define bfd_mach_amdgcn_gfx904  0x02e
557 .#define bfd_mach_amdgcn_gfx906  0x02f
558 .#define bfd_mach_amdgcn_gfx908  0x030
559 .#define bfd_mach_amdgcn_gfx90a  0x03f
560 .#define bfd_mach_amdgcn_gfx1010 0x033
561 .#define bfd_mach_amdgcn_gfx1011 0x034
562 .#define bfd_mach_amdgcn_gfx1012 0x035
563 .#define bfd_mach_amdgcn_gfx1030 0x036
564 .#define bfd_mach_amdgcn_gfx1031 0x037
565 .#define bfd_mach_amdgcn_gfx1032 0x038
566 .  bfd_arch_last
567 .  };
568 */
569 
570 /*
571 SUBSECTION
572 	bfd_arch_info
573 
574 DESCRIPTION
575 	This structure contains information on architectures for use
576 	within BFD.
577 
578 .
579 .typedef struct bfd_arch_info
580 .{
581 .  int bits_per_word;
582 .  int bits_per_address;
583 .  int bits_per_byte;
584 .  enum bfd_architecture arch;
585 .  unsigned long mach;
586 .  const char *arch_name;
587 .  const char *printable_name;
588 .  unsigned int section_align_power;
589 .  {* TRUE if this is the default machine for the architecture.
590 .     The default arch should be the first entry for an arch so that
591 .     all the entries for that arch can be accessed via <<next>>.  *}
592 .  bool the_default;
593 .  const struct bfd_arch_info * (*compatible) (const struct bfd_arch_info *,
594 .					       const struct bfd_arch_info *);
595 .
596 .  bool (*scan) (const struct bfd_arch_info *, const char *);
597 .
598 .  {* Allocate via bfd_malloc and return a fill buffer of size COUNT.  If
599 .     IS_BIGENDIAN is TRUE, the order of bytes is big endian.  If CODE is
600 .     TRUE, the buffer contains code.  *}
601 .  void *(*fill) (bfd_size_type count, bool is_bigendian, bool code);
602 .
603 .  const struct bfd_arch_info *next;
604 .
605 .  {* On some architectures the offset for a relocation can point into
606 .     the middle of an instruction.  This field specifies the maximum
607 .     offset such a relocation can have (in octets).  This affects the
608 .     behaviour of the disassembler, since a value greater than zero
609 .     means that it may need to disassemble an instruction twice, once
610 .     to get its length and then a second time to display it.  If the
611 .     value is negative then this has to be done for every single
612 .     instruction, regardless of the offset of the reloc.  *}
613 .  signed int max_reloc_offset_into_insn;
614 .}
615 .bfd_arch_info_type;
616 .
617 */
618 
619 extern const bfd_arch_info_type bfd_aarch64_arch;
620 extern const bfd_arch_info_type bfd_alpha_arch;
621 extern const bfd_arch_info_type bfd_amdgcn_arch;
622 extern const bfd_arch_info_type bfd_arc_arch;
623 extern const bfd_arch_info_type bfd_arm_arch;
624 extern const bfd_arch_info_type bfd_avr_arch;
625 extern const bfd_arch_info_type bfd_bfin_arch;
626 extern const bfd_arch_info_type bfd_cr16_arch;
627 extern const bfd_arch_info_type bfd_cris_arch;
628 extern const bfd_arch_info_type bfd_crx_arch;
629 extern const bfd_arch_info_type bfd_csky_arch;
630 extern const bfd_arch_info_type bfd_d10v_arch;
631 extern const bfd_arch_info_type bfd_d30v_arch;
632 extern const bfd_arch_info_type bfd_dlx_arch;
633 extern const bfd_arch_info_type bfd_bpf_arch;
634 extern const bfd_arch_info_type bfd_epiphany_arch;
635 extern const bfd_arch_info_type bfd_fr30_arch;
636 extern const bfd_arch_info_type bfd_frv_arch;
637 extern const bfd_arch_info_type bfd_h8300_arch;
638 extern const bfd_arch_info_type bfd_hppa_arch;
639 extern const bfd_arch_info_type bfd_i386_arch;
640 extern const bfd_arch_info_type bfd_iamcu_arch;
641 extern const bfd_arch_info_type bfd_ia64_arch;
642 extern const bfd_arch_info_type bfd_ip2k_arch;
643 extern const bfd_arch_info_type bfd_iq2000_arch;
644 extern const bfd_arch_info_type bfd_lm32_arch;
645 extern const bfd_arch_info_type bfd_loongarch_arch;
646 extern const bfd_arch_info_type bfd_m32c_arch;
647 extern const bfd_arch_info_type bfd_m32r_arch;
648 extern const bfd_arch_info_type bfd_m68hc11_arch;
649 extern const bfd_arch_info_type bfd_m68hc12_arch;
650 extern const bfd_arch_info_type bfd_m9s12x_arch;
651 extern const bfd_arch_info_type bfd_m9s12xg_arch;
652 extern const bfd_arch_info_type bfd_s12z_arch;
653 extern const bfd_arch_info_type bfd_m68k_arch;
654 extern const bfd_arch_info_type bfd_mcore_arch;
655 extern const bfd_arch_info_type bfd_mep_arch;
656 extern const bfd_arch_info_type bfd_metag_arch;
657 extern const bfd_arch_info_type bfd_mips_arch;
658 extern const bfd_arch_info_type bfd_microblaze_arch;
659 extern const bfd_arch_info_type bfd_mmix_arch;
660 extern const bfd_arch_info_type bfd_mn10200_arch;
661 extern const bfd_arch_info_type bfd_mn10300_arch;
662 extern const bfd_arch_info_type bfd_moxie_arch;
663 extern const bfd_arch_info_type bfd_ft32_arch;
664 extern const bfd_arch_info_type bfd_msp430_arch;
665 extern const bfd_arch_info_type bfd_mt_arch;
666 extern const bfd_arch_info_type bfd_nds32_arch;
667 extern const bfd_arch_info_type bfd_nfp_arch;
668 extern const bfd_arch_info_type bfd_nios2_arch;
669 extern const bfd_arch_info_type bfd_ns32k_arch;
670 extern const bfd_arch_info_type bfd_or1k_arch;
671 extern const bfd_arch_info_type bfd_pdp11_arch;
672 extern const bfd_arch_info_type bfd_pj_arch;
673 extern const bfd_arch_info_type bfd_powerpc_archs[];
674 #define bfd_powerpc_arch bfd_powerpc_archs[0]
675 extern const bfd_arch_info_type bfd_pru_arch;
676 extern const bfd_arch_info_type bfd_riscv_arch;
677 extern const bfd_arch_info_type bfd_rs6000_arch;
678 extern const bfd_arch_info_type bfd_rl78_arch;
679 extern const bfd_arch_info_type bfd_rx_arch;
680 extern const bfd_arch_info_type bfd_s390_arch;
681 extern const bfd_arch_info_type bfd_score_arch;
682 extern const bfd_arch_info_type bfd_sh_arch;
683 extern const bfd_arch_info_type bfd_sparc_arch;
684 extern const bfd_arch_info_type bfd_spu_arch;
685 extern const bfd_arch_info_type bfd_tic30_arch;
686 extern const bfd_arch_info_type bfd_tic4x_arch;
687 extern const bfd_arch_info_type bfd_tic54x_arch;
688 extern const bfd_arch_info_type bfd_tic6x_arch;
689 extern const bfd_arch_info_type bfd_tilegx_arch;
690 extern const bfd_arch_info_type bfd_tilepro_arch;
691 extern const bfd_arch_info_type bfd_v850_arch;
692 extern const bfd_arch_info_type bfd_v850_rh850_arch;
693 extern const bfd_arch_info_type bfd_vax_arch;
694 extern const bfd_arch_info_type bfd_visium_arch;
695 extern const bfd_arch_info_type bfd_wasm32_arch;
696 extern const bfd_arch_info_type bfd_xstormy16_arch;
697 extern const bfd_arch_info_type bfd_xtensa_arch;
698 extern const bfd_arch_info_type bfd_xgate_arch;
699 extern const bfd_arch_info_type bfd_z80_arch;
700 extern const bfd_arch_info_type bfd_z8k_arch;
701 
702 static const bfd_arch_info_type * const bfd_archures_list[] =
703   {
704 #ifdef SELECT_ARCHITECTURES
705     SELECT_ARCHITECTURES,
706 #else
707     &bfd_aarch64_arch,
708     &bfd_alpha_arch,
709     &bfd_amdgcn_arch,
710     &bfd_arc_arch,
711     &bfd_arm_arch,
712     &bfd_avr_arch,
713     &bfd_bfin_arch,
714     &bfd_cr16_arch,
715     &bfd_cris_arch,
716     &bfd_crx_arch,
717     &bfd_csky_arch,
718     &bfd_d10v_arch,
719     &bfd_d30v_arch,
720     &bfd_dlx_arch,
721     &bfd_bpf_arch,
722     &bfd_epiphany_arch,
723     &bfd_fr30_arch,
724     &bfd_frv_arch,
725     &bfd_h8300_arch,
726     &bfd_hppa_arch,
727     &bfd_i386_arch,
728     &bfd_iamcu_arch,
729     &bfd_ia64_arch,
730     &bfd_ip2k_arch,
731     &bfd_iq2000_arch,
732     &bfd_lm32_arch,
733     &bfd_loongarch_arch,
734     &bfd_m32c_arch,
735     &bfd_m32r_arch,
736     &bfd_m68hc11_arch,
737     &bfd_m68hc12_arch,
738     &bfd_m9s12x_arch,
739     &bfd_m9s12xg_arch,
740     &bfd_s12z_arch,
741     &bfd_m68k_arch,
742     &bfd_mcore_arch,
743     &bfd_mep_arch,
744     &bfd_metag_arch,
745     &bfd_microblaze_arch,
746     &bfd_mips_arch,
747     &bfd_mmix_arch,
748     &bfd_mn10200_arch,
749     &bfd_mn10300_arch,
750     &bfd_moxie_arch,
751     &bfd_ft32_arch,
752     &bfd_msp430_arch,
753     &bfd_mt_arch,
754     &bfd_nds32_arch,
755     &bfd_nfp_arch,
756     &bfd_nios2_arch,
757     &bfd_ns32k_arch,
758     &bfd_or1k_arch,
759     &bfd_pdp11_arch,
760     &bfd_powerpc_arch,
761     &bfd_pru_arch,
762     &bfd_riscv_arch,
763     &bfd_rl78_arch,
764     &bfd_rs6000_arch,
765     &bfd_rx_arch,
766     &bfd_s390_arch,
767     &bfd_score_arch,
768     &bfd_sh_arch,
769     &bfd_sparc_arch,
770     &bfd_spu_arch,
771     &bfd_tic30_arch,
772     &bfd_tic4x_arch,
773     &bfd_tic54x_arch,
774     &bfd_tic6x_arch,
775     &bfd_tilegx_arch,
776     &bfd_tilepro_arch,
777     &bfd_v850_arch,
778     &bfd_v850_rh850_arch,
779     &bfd_vax_arch,
780     &bfd_visium_arch,
781     &bfd_wasm32_arch,
782     &bfd_xstormy16_arch,
783     &bfd_xtensa_arch,
784     &bfd_xgate_arch,
785     &bfd_z80_arch,
786     &bfd_z8k_arch,
787 #endif
788   0
789 };
790 
791 /*
792 FUNCTION
793 	bfd_printable_name
794 
795 SYNOPSIS
796 	const char *bfd_printable_name (bfd *abfd);
797 
798 DESCRIPTION
799 	Return a printable string representing the architecture and machine
800 	from the pointer to the architecture info structure.
801 
802 */
803 
804 const char *
805 bfd_printable_name (bfd *abfd)
806 {
807   return abfd->arch_info->printable_name;
808 }
809 
810 /*
811 FUNCTION
812 	bfd_scan_arch
813 
814 SYNOPSIS
815 	const bfd_arch_info_type *bfd_scan_arch (const char *string);
816 
817 DESCRIPTION
818 	Figure out if BFD supports any cpu which could be described with
819 	the name @var{string}.  Return a pointer to an <<arch_info>>
820 	structure if a machine is found, otherwise NULL.
821 */
822 
823 const bfd_arch_info_type *
824 bfd_scan_arch (const char *string)
825 {
826   const bfd_arch_info_type * const *app, *ap;
827 
828   /* Look through all the installed architectures.  */
829   for (app = bfd_archures_list; *app != NULL; app++)
830     {
831       for (ap = *app; ap != NULL; ap = ap->next)
832 	{
833 	  if (ap->scan (ap, string))
834 	    return ap;
835 	}
836     }
837 
838   return NULL;
839 }
840 
841 /*
842 FUNCTION
843 	bfd_arch_list
844 
845 SYNOPSIS
846 	const char **bfd_arch_list (void);
847 
848 DESCRIPTION
849 	Return a freshly malloced NULL-terminated vector of the names
850 	of all the valid BFD architectures.  Do not modify the names.
851 */
852 
853 const char **
854 bfd_arch_list (void)
855 {
856   int vec_length = 0;
857   const char **name_ptr;
858   const char **name_list;
859   const bfd_arch_info_type * const *app;
860   size_t amt;
861 
862   /* Determine the number of architectures.  */
863   vec_length = 0;
864   for (app = bfd_archures_list; *app != NULL; app++)
865     {
866       const bfd_arch_info_type *ap;
867       for (ap = *app; ap != NULL; ap = ap->next)
868 	{
869 	  vec_length++;
870 	}
871     }
872 
873   amt = (vec_length + 1) * sizeof (char *);
874   name_list = (const char **) bfd_malloc (amt);
875   if (name_list == NULL)
876     return NULL;
877 
878   /* Point the list at each of the names.  */
879   name_ptr = name_list;
880   for (app = bfd_archures_list; *app != NULL; app++)
881     {
882       const bfd_arch_info_type *ap;
883       for (ap = *app; ap != NULL; ap = ap->next)
884 	{
885 	  *name_ptr = ap->printable_name;
886 	  name_ptr++;
887 	}
888     }
889   *name_ptr = NULL;
890 
891   return name_list;
892 }
893 
894 /*
895 FUNCTION
896 	bfd_arch_get_compatible
897 
898 SYNOPSIS
899 	const bfd_arch_info_type *bfd_arch_get_compatible
900 	  (const bfd *abfd, const bfd *bbfd, bool accept_unknowns);
901 
902 DESCRIPTION
903 	Determine whether two BFDs' architectures and machine types
904 	are compatible.  Calculates the lowest common denominator
905 	between the two architectures and machine types implied by
906 	the BFDs and returns a pointer to an <<arch_info>> structure
907 	describing the compatible machine.
908 */
909 
910 const bfd_arch_info_type *
911 bfd_arch_get_compatible (const bfd *abfd,
912 			 const bfd *bbfd,
913 			 bool accept_unknowns)
914 {
915   const bfd *ubfd, *kbfd;
916 
917   /* Look for an unknown architecture.  */
918   if (abfd->arch_info->arch == bfd_arch_unknown)
919     ubfd = abfd, kbfd = bbfd;
920   else if (bbfd->arch_info->arch == bfd_arch_unknown)
921     ubfd = bbfd, kbfd = abfd;
922   else
923     /* Otherwise architecture-specific code has to decide.  */
924     return abfd->arch_info->compatible (abfd->arch_info, bbfd->arch_info);
925 
926   /* We can allow an unknown architecture if accept_unknowns is true,
927      if UBFD is an IR object, or if the target is the "binary" format,
928      which has an unknown architecture.  Since the binary format can
929      only be set by explicit request from the user, it is safe
930      to assume that they know what they are doing.  */
931   if (accept_unknowns
932       || ubfd->plugin_format == bfd_plugin_yes
933       || strcmp (bfd_get_target (ubfd), "binary") == 0)
934     return kbfd->arch_info;
935   return NULL;
936 }
937 
938 /*
939 INTERNAL_DEFINITION
940 	bfd_default_arch_struct
941 
942 DESCRIPTION
943 	The <<bfd_default_arch_struct>> is an item of
944 	<<bfd_arch_info_type>> which has been initialized to a fairly
945 	generic state.  A BFD starts life by pointing to this
946 	structure, until the correct back end has determined the real
947 	architecture of the file.
948 
949 .extern const bfd_arch_info_type bfd_default_arch_struct;
950 */
951 
952 const bfd_arch_info_type bfd_default_arch_struct =
953 {
954   32, 32, 8, bfd_arch_unknown, 0, "unknown", "unknown", 2, true,
955   bfd_default_compatible,
956   bfd_default_scan,
957   bfd_arch_default_fill,
958   0, 0
959 };
960 
961 /*
962 FUNCTION
963 	bfd_set_arch_info
964 
965 SYNOPSIS
966 	void bfd_set_arch_info (bfd *abfd, const bfd_arch_info_type *arg);
967 
968 DESCRIPTION
969 	Set the architecture info of @var{abfd} to @var{arg}.
970 */
971 
972 void
973 bfd_set_arch_info (bfd *abfd, const bfd_arch_info_type *arg)
974 {
975   abfd->arch_info = arg;
976 }
977 
978 /*
979 FUNCTION
980 	bfd_default_set_arch_mach
981 
982 SYNOPSIS
983 	bool bfd_default_set_arch_mach
984 	  (bfd *abfd, enum bfd_architecture arch, unsigned long mach);
985 
986 DESCRIPTION
987 	Set the architecture and machine type in BFD @var{abfd}
988 	to @var{arch} and @var{mach}.  Find the correct
989 	pointer to a structure and insert it into the <<arch_info>>
990 	pointer.
991 */
992 
993 bool
994 bfd_default_set_arch_mach (bfd *abfd,
995 			   enum bfd_architecture arch,
996 			   unsigned long mach)
997 {
998   abfd->arch_info = bfd_lookup_arch (arch, mach);
999   if (abfd->arch_info != NULL)
1000     return true;
1001 
1002   abfd->arch_info = &bfd_default_arch_struct;
1003   bfd_set_error (bfd_error_bad_value);
1004   return false;
1005 }
1006 
1007 /*
1008 FUNCTION
1009 	bfd_get_arch
1010 
1011 SYNOPSIS
1012 	enum bfd_architecture bfd_get_arch (const bfd *abfd);
1013 
1014 DESCRIPTION
1015 	Return the enumerated type which describes the BFD @var{abfd}'s
1016 	architecture.
1017 */
1018 
1019 enum bfd_architecture
1020 bfd_get_arch (const bfd *abfd)
1021 {
1022   return abfd->arch_info->arch;
1023 }
1024 
1025 /*
1026 FUNCTION
1027 	bfd_get_mach
1028 
1029 SYNOPSIS
1030 	unsigned long bfd_get_mach (const bfd *abfd);
1031 
1032 DESCRIPTION
1033 	Return the long type which describes the BFD @var{abfd}'s
1034 	machine.
1035 */
1036 
1037 unsigned long
1038 bfd_get_mach (const bfd *abfd)
1039 {
1040   return abfd->arch_info->mach;
1041 }
1042 
1043 /*
1044 FUNCTION
1045 	bfd_arch_bits_per_byte
1046 
1047 SYNOPSIS
1048 	unsigned int bfd_arch_bits_per_byte (const bfd *abfd);
1049 
1050 DESCRIPTION
1051 	Return the number of bits in one of the BFD @var{abfd}'s
1052 	architecture's bytes.
1053 */
1054 
1055 unsigned int
1056 bfd_arch_bits_per_byte (const bfd *abfd)
1057 {
1058   return abfd->arch_info->bits_per_byte;
1059 }
1060 
1061 /*
1062 FUNCTION
1063 	bfd_arch_bits_per_address
1064 
1065 SYNOPSIS
1066 	unsigned int bfd_arch_bits_per_address (const bfd *abfd);
1067 
1068 DESCRIPTION
1069 	Return the number of bits in one of the BFD @var{abfd}'s
1070 	architecture's addresses.
1071 */
1072 
1073 unsigned int
1074 bfd_arch_bits_per_address (const bfd *abfd)
1075 {
1076   return abfd->arch_info->bits_per_address;
1077 }
1078 
1079 /*
1080 INTERNAL_FUNCTION
1081 	bfd_default_compatible
1082 
1083 SYNOPSIS
1084 	const bfd_arch_info_type *bfd_default_compatible
1085 	  (const bfd_arch_info_type *a, const bfd_arch_info_type *b);
1086 
1087 DESCRIPTION
1088 	The default function for testing for compatibility.
1089 */
1090 
1091 const bfd_arch_info_type *
1092 bfd_default_compatible (const bfd_arch_info_type *a,
1093 			const bfd_arch_info_type *b)
1094 {
1095   if (a->arch != b->arch)
1096     return NULL;
1097 
1098   if (a->bits_per_word != b->bits_per_word)
1099     return NULL;
1100 
1101   if (a->mach > b->mach)
1102     return a;
1103 
1104   if (b->mach > a->mach)
1105     return b;
1106 
1107   return a;
1108 }
1109 
1110 /*
1111 INTERNAL_FUNCTION
1112 	bfd_default_scan
1113 
1114 SYNOPSIS
1115 	bool bfd_default_scan
1116 	  (const struct bfd_arch_info *info, const char *string);
1117 
1118 DESCRIPTION
1119 	The default function for working out whether this is an
1120 	architecture hit and a machine hit.
1121 */
1122 
1123 bool
1124 bfd_default_scan (const bfd_arch_info_type *info, const char *string)
1125 {
1126   const char *ptr_src;
1127   const char *ptr_tst;
1128   unsigned long number;
1129   enum bfd_architecture arch;
1130   const char *printable_name_colon;
1131 
1132   /* Exact match of the architecture name (ARCH_NAME) and also the
1133      default architecture?  */
1134   if (strcasecmp (string, info->arch_name) == 0
1135       && info->the_default)
1136     return true;
1137 
1138   /* Exact match of the machine name (PRINTABLE_NAME)?  */
1139   if (strcasecmp (string, info->printable_name) == 0)
1140     return true;
1141 
1142   /* Given that printable_name contains no colon, attempt to match:
1143      ARCH_NAME [ ":" ] PRINTABLE_NAME?  */
1144   printable_name_colon = strchr (info->printable_name, ':');
1145   if (printable_name_colon == NULL)
1146     {
1147       size_t strlen_arch_name = strlen (info->arch_name);
1148       if (strncasecmp (string, info->arch_name, strlen_arch_name) == 0)
1149 	{
1150 	  if (string[strlen_arch_name] == ':')
1151 	    {
1152 	      if (strcasecmp (string + strlen_arch_name + 1,
1153 			      info->printable_name) == 0)
1154 		return true;
1155 	    }
1156 	  else
1157 	    {
1158 	      if (strcasecmp (string + strlen_arch_name,
1159 			      info->printable_name) == 0)
1160 		return true;
1161 	    }
1162 	}
1163     }
1164 
1165   /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>;
1166      Attempt to match: <arch> <mach>?  */
1167   if (printable_name_colon != NULL)
1168     {
1169       size_t colon_index = printable_name_colon - info->printable_name;
1170       if (strncasecmp (string, info->printable_name, colon_index) == 0
1171 	  && strcasecmp (string + colon_index,
1172 			 info->printable_name + colon_index + 1) == 0)
1173 	return true;
1174     }
1175 
1176   /* Given that PRINTABLE_NAME has the form: <arch> ":" <mach>; Do not
1177      attempt to match just <mach>, it could be ambiguous.  This test
1178      is left until later.  */
1179 
1180   /* NOTE: The below is retained for compatibility only.  Please do
1181      not add to this code.  */
1182 
1183   /* See how much of the supplied string matches with the
1184      architecture, eg the string m68k:68020 would match the 68k entry
1185      up to the :, then we get left with the machine number.  */
1186 
1187   for (ptr_src = string, ptr_tst = info->arch_name;
1188        *ptr_src && *ptr_tst;
1189        ptr_src++, ptr_tst++)
1190     {
1191       if (*ptr_src != *ptr_tst)
1192 	break;
1193     }
1194 
1195   /* Chewed up as much of the architecture as will match, skip any
1196      colons.  */
1197   if (*ptr_src == ':')
1198     ptr_src++;
1199 
1200   if (*ptr_src == 0)
1201     {
1202       /* Nothing more, then only keep this one if it is the default
1203 	 machine for this architecture.  */
1204       return info->the_default;
1205     }
1206 
1207   number = 0;
1208   while (ISDIGIT (*ptr_src))
1209     {
1210       number = number * 10 + *ptr_src - '0';
1211       ptr_src++;
1212     }
1213 
1214   /* NOTE: The below is retained for compatibility only.
1215      PLEASE DO NOT ADD TO THIS CODE.  */
1216 
1217   switch (number)
1218     {
1219     case 68000:
1220       arch = bfd_arch_m68k;
1221       number = bfd_mach_m68000;
1222       break;
1223     case 68010:
1224       arch = bfd_arch_m68k;
1225       number = bfd_mach_m68010;
1226       break;
1227     case 68020:
1228       arch = bfd_arch_m68k;
1229       number = bfd_mach_m68020;
1230       break;
1231     case 68030:
1232       arch = bfd_arch_m68k;
1233       number = bfd_mach_m68030;
1234       break;
1235     case 68040:
1236       arch = bfd_arch_m68k;
1237       number = bfd_mach_m68040;
1238       break;
1239     case 68060:
1240       arch = bfd_arch_m68k;
1241       number = bfd_mach_m68060;
1242       break;
1243     case 68332:
1244       arch = bfd_arch_m68k;
1245       number = bfd_mach_cpu32;
1246       break;
1247     case 5200:
1248       arch = bfd_arch_m68k;
1249       number = bfd_mach_mcf_isa_a_nodiv;
1250       break;
1251     case 5206:
1252       arch = bfd_arch_m68k;
1253       number = bfd_mach_mcf_isa_a_mac;
1254       break;
1255     case 5307:
1256       arch = bfd_arch_m68k;
1257       number = bfd_mach_mcf_isa_a_mac;
1258       break;
1259     case 5407:
1260       arch = bfd_arch_m68k;
1261       number = bfd_mach_mcf_isa_b_nousp_mac;
1262       break;
1263     case 5282:
1264       arch = bfd_arch_m68k;
1265       number = bfd_mach_mcf_isa_aplus_emac;
1266       break;
1267 
1268     case 3000:
1269       arch = bfd_arch_mips;
1270       number = bfd_mach_mips3000;
1271       break;
1272 
1273     case 4000:
1274       arch = bfd_arch_mips;
1275       number = bfd_mach_mips4000;
1276       break;
1277 
1278     case 6000:
1279       arch = bfd_arch_rs6000;
1280       break;
1281 
1282     case 7410:
1283       arch = bfd_arch_sh;
1284       number = bfd_mach_sh_dsp;
1285       break;
1286 
1287     case 7708:
1288       arch = bfd_arch_sh;
1289       number = bfd_mach_sh3;
1290       break;
1291 
1292     case 7729:
1293       arch = bfd_arch_sh;
1294       number = bfd_mach_sh3_dsp;
1295       break;
1296 
1297     case 7750:
1298       arch = bfd_arch_sh;
1299       number = bfd_mach_sh4;
1300       break;
1301 
1302     default:
1303       return false;
1304     }
1305 
1306   if (arch != info->arch)
1307     return false;
1308 
1309   if (number != info->mach)
1310     return false;
1311 
1312   return true;
1313 }
1314 
1315 /*
1316 FUNCTION
1317 	bfd_get_arch_info
1318 
1319 SYNOPSIS
1320 	const bfd_arch_info_type *bfd_get_arch_info (bfd *abfd);
1321 
1322 DESCRIPTION
1323 	Return the architecture info struct in @var{abfd}.
1324 */
1325 
1326 const bfd_arch_info_type *
1327 bfd_get_arch_info (bfd *abfd)
1328 {
1329   return abfd->arch_info;
1330 }
1331 
1332 /*
1333 FUNCTION
1334 	bfd_lookup_arch
1335 
1336 SYNOPSIS
1337 	const bfd_arch_info_type *bfd_lookup_arch
1338 	  (enum bfd_architecture arch, unsigned long machine);
1339 
1340 DESCRIPTION
1341 	Look for the architecture info structure which matches the
1342 	arguments @var{arch} and @var{machine}. A machine of 0 matches the
1343 	machine/architecture structure which marks itself as the
1344 	default.
1345 */
1346 
1347 const bfd_arch_info_type *
1348 bfd_lookup_arch (enum bfd_architecture arch, unsigned long machine)
1349 {
1350   const bfd_arch_info_type * const *app, *ap;
1351 
1352   for (app = bfd_archures_list; *app != NULL; app++)
1353     {
1354       for (ap = *app; ap != NULL; ap = ap->next)
1355 	{
1356 	  if (ap->arch == arch
1357 	      && (ap->mach == machine
1358 		  || (machine == 0 && ap->the_default)))
1359 	    return ap;
1360 	}
1361     }
1362 
1363   return NULL;
1364 }
1365 
1366 /*
1367 FUNCTION
1368 	bfd_printable_arch_mach
1369 
1370 SYNOPSIS
1371 	const char *bfd_printable_arch_mach
1372 	  (enum bfd_architecture arch, unsigned long machine);
1373 
1374 DESCRIPTION
1375 	Return a printable string representing the architecture and
1376 	machine type.
1377 
1378 	This routine is depreciated.
1379 */
1380 
1381 const char *
1382 bfd_printable_arch_mach (enum bfd_architecture arch, unsigned long machine)
1383 {
1384   const bfd_arch_info_type *ap = bfd_lookup_arch (arch, machine);
1385 
1386   if (ap)
1387     return ap->printable_name;
1388   return "UNKNOWN!";
1389 }
1390 
1391 /*
1392 FUNCTION
1393 	bfd_octets_per_byte
1394 
1395 SYNOPSIS
1396 	unsigned int bfd_octets_per_byte (const bfd *abfd,
1397 					  const asection *sec);
1398 
1399 DESCRIPTION
1400 	Return the number of octets (8-bit quantities) per target byte
1401 	(minimum addressable unit).  In most cases, this will be one, but some
1402 	DSP targets have 16, 32, or even 48 bits per byte.
1403 */
1404 
1405 unsigned int
1406 bfd_octets_per_byte (const bfd *abfd, const asection *sec)
1407 {
1408   if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
1409       && sec != NULL
1410       && (sec->flags & SEC_ELF_OCTETS) != 0)
1411     return 1;
1412 
1413   return bfd_arch_mach_octets_per_byte (bfd_get_arch (abfd),
1414 					bfd_get_mach (abfd));
1415 }
1416 
1417 /*
1418 FUNCTION
1419 	bfd_arch_mach_octets_per_byte
1420 
1421 SYNOPSIS
1422 	unsigned int bfd_arch_mach_octets_per_byte
1423 	  (enum bfd_architecture arch, unsigned long machine);
1424 
1425 DESCRIPTION
1426 	See bfd_octets_per_byte.
1427 
1428 	This routine is provided for those cases where a bfd * is not
1429 	available
1430 */
1431 
1432 unsigned int
1433 bfd_arch_mach_octets_per_byte (enum bfd_architecture arch,
1434 			       unsigned long mach)
1435 {
1436   const bfd_arch_info_type *ap = bfd_lookup_arch (arch, mach);
1437 
1438   if (ap)
1439     return ap->bits_per_byte / 8;
1440   return 1;
1441 }
1442 
1443 /*
1444 INTERNAL_FUNCTION
1445 	bfd_arch_default_fill
1446 
1447 SYNOPSIS
1448 	void *bfd_arch_default_fill (bfd_size_type count,
1449 				     bool is_bigendian,
1450 				     bool code);
1451 
1452 DESCRIPTION
1453 	Allocate via bfd_malloc and return a fill buffer of size COUNT.
1454 	If IS_BIGENDIAN is TRUE, the order of bytes is big endian.  If
1455 	CODE is TRUE, the buffer contains code.
1456 */
1457 
1458 void *
1459 bfd_arch_default_fill (bfd_size_type count,
1460 		       bool is_bigendian ATTRIBUTE_UNUSED,
1461 		       bool code ATTRIBUTE_UNUSED)
1462 {
1463   void *fill = bfd_malloc (count);
1464   if (fill != NULL)
1465     memset (fill, 0, count);
1466   return fill;
1467 }
1468 
1469 bool
1470 _bfd_nowrite_set_arch_mach (bfd *abfd,
1471 			    enum bfd_architecture arch ATTRIBUTE_UNUSED,
1472 			    unsigned long mach ATTRIBUTE_UNUSED)
1473 {
1474   return _bfd_bool_bfd_false_error (abfd);
1475 }
1476