Thu May 21 18:00:09 1992 Michael Tiemann (tiemann@rtl.cygnus.com)
[deliverable/binutils-gdb.git] / bfd / targets.c
CommitLineData
4e6f9223
SC
1/* Generic target-file-type support for the BFD library.
2 Copyright (C) 1990-1991 Free Software Foundation, Inc.
3 Written by Cygnus Support.
4a81b561 4
4e6f9223 5This file is part of BFD, the Binary File Descriptor library.
4a81b561 6
4e6f9223 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
4e6f9223
SC
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
4a81b561 11
4e6f9223 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
4e6f9223
SC
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
4a81b561
DHW
20
21/* $Id$ */
22
4a81b561 23#include "bfd.h"
bbc8d484 24#include "sysdep.h"
4a81b561
DHW
25#include "libbfd.h"
26
0cda46cf
SC
27/*
28SECTION
29 Targets
30
e98e6ec1 31DESCRIPTION
0cda46cf
SC
32 Each port of BFD to a different machine requries the creation
33 of a target back end. All the back end provides to the root
34 part of BFD is a structure containing pointers to functions
35 which perform certain low level operations on files. BFD
36 translates the applications's requests through a pointer into
37 calls to the back end routines.
38
39 When a file is opened with <<bfd_openr>>, its format and
40 target are unknown. BFD uses various mechanisms to determine
41 how to interpret the file. The operations performed are:
42
43 o First a BFD is created by calling the internal routine
44 <<new_bfd>>, then <<bfd_find_target>> is called with the
45 target string supplied to <<bfd_openr>> and the new BFD pointer.
46
47 o If a null target string was provided to <<bfd_find_target>>,
48 it looks up the environment variable <<GNUTARGET>> and uses
49 that as the target string.
50
51 o If the target string is still NULL, or the target string is
52 <<default>>, then the first item in the target vector is used
53 as the target type. @xref{bfd_target}.
54
55 o Otherwise, the elements in the target vector are inspected
56 one by one, until a match on target name is found. When found,
57 that is used.
58
59 o Otherwise the error <<invalid_target>> is returned to
60 <<bfd_openr>>.
61
62 o <<bfd_openr>> attempts to open the file using
63 <<bfd_open_file>>, and returns the BFD.
64
65 Once the BFD has been opened and the target selected, the file
66 format may be determined. This is done by calling
67 <<bfd_check_format>> on the BFD with a suggested format. The
68 routine returns <<true>> when the application guesses right.
92c78ee6 69@menu
e98e6ec1 70@* bfd_target::
92c78ee6 71@end menu
6f715d66
SC
72*/
73
74
0cda46cf
SC
75/*
76
e98e6ec1
SC
77INODE
78 bfd_target, , Targets, Targets
6f715d66 79
0cda46cf
SC
80SUBSECTION
81 bfd_target
82
e98e6ec1 83DESCRIPTION
0cda46cf
SC
84 This structure contains everything that BFD knows about a
85 target. It includes things like its byte order, name, what
86 routines to call to do various operations, etc.
6f715d66 87
0cda46cf
SC
88 Every BFD points to a target structure with its <<xvec>>
89 member.
6f715d66 90
0cda46cf
SC
91 Shortcut for declaring fields which are prototyped function
92 pointers, while avoiding anguish on compilers that don't
93 support protos.
6f715d66 94
0cda46cf
SC
95.#define SDEF(ret, name, arglist) \
96. PROTO(ret,(*name),arglist)
97.#define SDEF_FMT(ret, name, arglist) \
98. PROTO(ret,(*name[bfd_type_end]),arglist)
6f715d66 99
0cda46cf
SC
100 These macros are used to dispatch to functions through the
101 bfd_target vector. They are used in a number of macros further
102 down in @file{bfd.h}, and are also used when calling various
103 routines by hand inside the BFD implementation. The "arglist"
104 argument must be parenthesized; it contains all the arguments
105 to the called function.
6f715d66 106
6f715d66 107
0cda46cf
SC
108.#define BFD_SEND(bfd, message, arglist) \
109. ((*((bfd)->xvec->message)) arglist)
6f715d66 110
0cda46cf 111 For operations which index on the BFD format
6f715d66 112
0cda46cf
SC
113.#define BFD_SEND_FMT(bfd, message, arglist) \
114. (((bfd)->xvec->message[(int)((bfd)->format)]) arglist)
6f715d66 115
0cda46cf
SC
116 This is the struct which defines the type of BFD this is. The
117 <<xvec>> member of the struct <<bfd>> itself points here. Each
118 module that implements access to a different target under BFD,
119 defines one of these.
6f715d66 120
6f715d66 121
0cda46cf
SC
122 FIXME, these names should be rationalised with the names of
123 the entry points which call them. Too bad we can't have one
124 macro to define them both!
125
126.typedef struct bfd_target
127.{
6f715d66
SC
128
129identifies the kind of target, eg SunOS4, Ultrix, etc
130
0cda46cf 131. char *name;
6f715d66
SC
132
133The "flavour" of a back end is a general indication about the contents
134of a file.
135
0cda46cf
SC
136. enum target_flavour {
137. bfd_target_unknown_flavour,
138. bfd_target_aout_flavour,
139. bfd_target_coff_flavour,
140. bfd_target_elf_flavour,
141. bfd_target_ieee_flavour,
142. bfd_target_oasys_flavour,
69e0d34d 143. bfd_target_tekhex_flavour,
0cda46cf 144. bfd_target_srec_flavour} flavour;
6f715d66
SC
145
146The order of bytes within the data area of a file.
147
0cda46cf 148. boolean byteorder_big_p;
6f715d66
SC
149
150The order of bytes within the header parts of a file.
151
0cda46cf 152. boolean header_byteorder_big_p;
6f715d66
SC
153
154This is a mask of all the flags which an executable may have set -
0cda46cf 155from the set <<NO_FLAGS>>, <<HAS_RELOC>>, ...<<D_PAGED>>.
6f715d66 156
0cda46cf 157. flagword object_flags;
6f715d66
SC
158
159This is a mask of all the flags which a section may have set - from
0cda46cf 160the set <<SEC_NO_FLAGS>>, <<SEC_ALLOC>>, ...<<SET_NEVER_LOAD>>.
6f715d66 161
0cda46cf 162. flagword section_flags;
6f715d66
SC
163
164The pad character for filenames within an archive header.
165
0cda46cf 166. char ar_pad_char;
6f715d66
SC
167
168The maximum number of characters in an archive header.
169
0cda46cf 170. unsigned short ar_max_namelen;
6f715d66
SC
171
172The minimum alignment restriction for any section.
173
0cda46cf 174. unsigned int align_power_min;
6f715d66
SC
175
176Entries for byte swapping for data. These are different to the other
4e6f9223 177entry points, since they don't take BFD as first arg. Certain other handlers
6f715d66
SC
178could do the same.
179
0cda46cf
SC
180. SDEF (bfd_vma, bfd_getx64, (bfd_byte *));
181. SDEF (void, bfd_putx64, (bfd_vma, bfd_byte *));
182. SDEF (bfd_vma, bfd_getx32, (bfd_byte *));
183. SDEF (void, bfd_putx32, (bfd_vma, bfd_byte *));
184. SDEF (bfd_vma, bfd_getx16, (bfd_byte *));
185. SDEF (void, bfd_putx16, (bfd_vma, bfd_byte *));
6f715d66
SC
186
187Byte swapping for the headers
188
0cda46cf
SC
189. SDEF (bfd_vma, bfd_h_getx64, (bfd_byte *));
190. SDEF (void, bfd_h_putx64, (bfd_vma, bfd_byte *));
191. SDEF (bfd_vma, bfd_h_getx32, (bfd_byte *));
192. SDEF (void, bfd_h_putx32, (bfd_vma, bfd_byte *));
193. SDEF (bfd_vma, bfd_h_getx16, (bfd_byte *));
194. SDEF (void, bfd_h_putx16, (bfd_vma, bfd_byte *));
6f715d66
SC
195
196Format dependent routines, these turn into vectors of entry points
197within the target vector structure; one for each format to check.
198
199Check the format of a file being read. Return bfd_target * or zero.
200
0cda46cf 201. SDEF_FMT (struct bfd_target *, _bfd_check_format, (bfd *));
6f715d66
SC
202
203Set the format of a file being written.
204
0cda46cf 205. SDEF_FMT (boolean, _bfd_set_format, (bfd *));
6f715d66
SC
206
207Write cached information into a file being written, at bfd_close.
208
0cda46cf 209. SDEF_FMT (boolean, _bfd_write_contents, (bfd *));
6f715d66 210
0cda46cf
SC
211The following functions are defined in <<JUMP_TABLE>>. The idea is
212that the back end writer of <<foo>> names all the routines
213<<foo_>>@var{entry_point}, <<JUMP_TABLE>> will built the entries
6f715d66
SC
214in this structure in the right order.
215
216Core file entry points
217
0cda46cf
SC
218. SDEF (char *, _core_file_failing_command, (bfd *));
219. SDEF (int, _core_file_failing_signal, (bfd *));
220. SDEF (boolean, _core_file_matches_executable_p, (bfd *, bfd *));
6f715d66
SC
221
222Archive entry points
223
0cda46cf
SC
224. SDEF (boolean, _bfd_slurp_armap, (bfd *));
225. SDEF (boolean, _bfd_slurp_extended_name_table, (bfd *));
226. SDEF (void, _bfd_truncate_arname, (bfd *, CONST char *, char *));
227. SDEF (boolean, write_armap, (bfd *arch,
228. unsigned int elength,
229. struct orl *map,
230. unsigned int orl_count,
231. int stridx));
6f715d66
SC
232
233Standard stuff.
234
0cda46cf
SC
235. SDEF (boolean, _close_and_cleanup, (bfd *));
236. SDEF (boolean, _bfd_set_section_contents, (bfd *, sec_ptr, PTR,
237. file_ptr, bfd_size_type));
238. SDEF (boolean, _bfd_get_section_contents, (bfd *, sec_ptr, PTR,
239. file_ptr, bfd_size_type));
240. SDEF (boolean, _new_section_hook, (bfd *, sec_ptr));
6f715d66
SC
241
242Symbols and reloctions
243
0cda46cf
SC
244. SDEF (unsigned int, _get_symtab_upper_bound, (bfd *));
245. SDEF (unsigned int, _bfd_canonicalize_symtab,
246. (bfd *, struct symbol_cache_entry **));
247. SDEF (unsigned int, _get_reloc_upper_bound, (bfd *, sec_ptr));
248. SDEF (unsigned int, _bfd_canonicalize_reloc, (bfd *, sec_ptr, arelent **,
249. struct symbol_cache_entry**));
250. SDEF (struct symbol_cache_entry *, _bfd_make_empty_symbol, (bfd *));
251. SDEF (void, _bfd_print_symbol, (bfd *, PTR, struct symbol_cache_entry *,
252. bfd_print_symbol_type));
253.#define bfd_print_symbol(b,p,s,e) BFD_SEND(b, _bfd_print_symbol, (b,p,s,e))
254. SDEF (alent *, _get_lineno, (bfd *, struct symbol_cache_entry *));
255.
256. SDEF (boolean, _bfd_set_arch_mach, (bfd *, enum bfd_architecture,
257. unsigned long));
258.
259. SDEF (bfd *, openr_next_archived_file, (bfd *arch, bfd *prev));
260. SDEF (boolean, _bfd_find_nearest_line,
261. (bfd *abfd, struct sec *section,
262. struct symbol_cache_entry **symbols,bfd_vma offset,
263. CONST char **file, CONST char **func, unsigned int *line));
264. SDEF (int, _bfd_stat_arch_elt, (bfd *, struct stat *));
265.
266. SDEF (int, _bfd_sizeof_headers, (bfd *, boolean));
267.
268. SDEF (void, _bfd_debug_info_start, (bfd *));
269. SDEF (void, _bfd_debug_info_end, (bfd *));
270. SDEF (void, _bfd_debug_info_accumulate, (bfd *, struct sec *));
e98e6ec1 271. SDEF (bfd_byte *, _bfd_get_relocated_section_contents, (bfd*,struct bfd_seclet_struct *));
69e0d34d 272. SDEF (boolean,_bfd_relax_section,(bfd *, struct sec *, struct symbol_cache_entry **));
6f715d66
SC
273Special entry points for gdb to swap in coff symbol table parts
274
0cda46cf
SC
275. SDEF(void, _bfd_coff_swap_aux_in,(
276. bfd *abfd ,
277. PTR ext,
278. int type,
279. int class ,
280. PTR in));
281.
282. SDEF(void, _bfd_coff_swap_sym_in,(
283. bfd *abfd ,
284. PTR ext,
285. PTR in));
286.
287. SDEF(void, _bfd_coff_swap_lineno_in, (
288. bfd *abfd,
289. PTR ext,
290. PTR in));
291.
0d740984
SC
292
293Special entry points for gas to swap coff parts
294
0cda46cf
SC
295. SDEF(unsigned int, _bfd_coff_swap_aux_out,(
296. bfd *abfd,
297. PTR in,
298. int type,
299. int class,
300. PTR ext));
301.
302. SDEF(unsigned int, _bfd_coff_swap_sym_out,(
303. bfd *abfd,
304. PTR in,
305. PTR ext));
306.
307. SDEF(unsigned int, _bfd_coff_swap_lineno_out,(
308. bfd *abfd,
309. PTR in,
310. PTR ext));
311.
312. SDEF(unsigned int, _bfd_coff_swap_reloc_out,(
313. bfd *abfd,
314. PTR src,
315. PTR dst));
316.
317. SDEF(unsigned int, _bfd_coff_swap_filehdr_out,(
318. bfd *abfd,
319. PTR in,
320. PTR out));
321.
322. SDEF(unsigned int, _bfd_coff_swap_aouthdr_out,(
323. bfd *abfd,
324. PTR in,
325. PTR out));
326.
327. SDEF(unsigned int, _bfd_coff_swap_scnhdr_out,(
328. bfd *abfd,
329. PTR in,
330. PTR out));
331.
332.} bfd_target;
6f715d66
SC
333
334*/
f8adc62d 335
616ebcfd
SC
336/* The default is to define a target_vector containing all the targets.
337 By setting MINIMIZE=1 on the "make" command line, the user can change this
338 to a vector containing just DEFAULT_VECTOR and any required
339 traditional-core-file handler. (This is to save space in the executables.)
340 The config files can also override the default large vector by giving an
341 explicit SELECT_VECS macro. */
f8adc62d
JG
342
343#if MINIMIZE && defined(DEFAULT_VECTOR) && !defined(SELECT_VECS)
344#ifdef TRAD_CORE
345#define SELECT_VECS &DEFAULT_VECTOR,&trad_core_vec
346#else
347#define SELECT_VECS &DEFAULT_VECTOR
348#endif
349#endif
350
616ebcfd
SC
351/* All known xvecs. They are listed a second time below, since
352 we can't intermix extern's and initializers. */
23b0b558
JG
353extern bfd_target ecoff_little_vec;
354extern bfd_target ecoff_big_vec;
2b1d8a50 355extern bfd_target sunos_big_vec;
7ed4093a 356extern bfd_target demo_64_vec;
4a81b561 357extern bfd_target srec_vec;
69e0d34d 358extern bfd_target tekhex_vec;
4a81b561
DHW
359extern bfd_target b_out_vec_little_host;
360extern bfd_target b_out_vec_big_host;
361extern bfd_target icoff_little_vec;
362extern bfd_target icoff_big_vec;
3f85ebce
JG
363extern bfd_target elf_little_vec;
364extern bfd_target elf_big_vec;
aacf30e3
DHW
365extern bfd_target ieee_vec;
366extern bfd_target oasys_vec;
f8adc62d 367extern bfd_target m88kbcs_vec;
c407897e 368extern bfd_target m68kcoff_vec;
20fdc627 369extern bfd_target i386coff_vec;
bbc8d484 370extern bfd_target i386aout_vec;
41f50af0 371extern bfd_target a29kcoff_big_vec;
f58809fd 372extern bfd_target trad_core_vec;
cbdc7909 373extern bfd_target rs6000coff_vec;
3b4f1a5d 374extern bfd_target h8300coff_vec;
4e6f9223 375
f8adc62d
JG
376#ifdef DEFAULT_VECTOR
377extern bfd_target DEFAULT_VECTOR;
378#endif
379
4e6f9223
SC
380#ifdef SELECT_VECS
381
382bfd_target *target_vector[] = {
f39b81f5 383 SELECT_VECS,
616ebcfd 384 0
4e6f9223 385};
c0e5039e 386
616ebcfd 387#else
4e6f9223 388
7d774e01 389bfd_target *target_vector[] = {
f39b81f5
SC
390
391#ifdef DEFAULT_VECTOR
392 &DEFAULT_VECTOR,
393#endif
394
395 &i386coff_vec,
396 &i386aout_vec,
397 &ecoff_little_vec,
398 &ecoff_big_vec,
399 &ieee_vec,
400#if 0
401 /* We have no oasys tools anymore, so we can't test any of this
402 anymore. If you want to test the stuff yourself, go ahead...
403 steve@cygnus.com */
404 &oasys_vec,
405#endif
406 &sunos_big_vec,
407#ifdef HOST_64_BIT
408 &demo_64_vec, /* Only compiled if host has long-long support */
409#endif
410 &h8300coff_vec,
411 &m88kbcs_vec,
412 &srec_vec,
69e0d34d 413/* &tekhex_vec,*/
616ebcfd 414 &icoff_little_vec,
f39b81f5
SC
415 &icoff_big_vec,
416 &elf_little_vec,
417 &elf_big_vec,
418 &b_out_vec_little_host,
419 &b_out_vec_big_host,
420 &m68kcoff_vec,
421 &a29kcoff_big_vec,
422 &rs6000coff_vec,
423
424#ifdef TRAD_CORE
425 &trad_core_vec,
426#endif
616ebcfd 427 NULL, /* end of list marker */
7d774e01 428};
c0e5039e 429
4e6f9223 430#endif
c0e5039e
JG
431
432/* default_vector[0] contains either the address of the default vector,
433 if there is one, or zero if there isn't. */
434
435bfd_target *default_vector[] = {
436#ifdef DEFAULT_VECTOR
616ebcfd 437 &DEFAULT_VECTOR,
c0e5039e 438#endif
616ebcfd 439 0,
c0e5039e 440};
6f715d66
SC
441
442
443
444
0cda46cf
SC
445/*
446FUNCTION
447 bfd_find_target
448
449DESCRIPTION
450 Returns a pointer to the transfer vector for the object target
451 named target_name. If target_name is NULL, chooses the one in
452 the environment variable GNUTARGET; if that is null or not
453 defined thenthe first entry in the target list is chosen.
454 Passing in the string "default" or setting the environment
455 variable to "default" will cause the first entry in the target
456 list to be returned, and "target_defaulted" will be set in the
457 BFD. This causes <<bfd_check_format>> to loop over all the
458 targets to find the one that matches the file being read.
459
460SYNOPSIS
461 bfd_target *bfd_find_target(CONST char *, bfd *);
462*/
6f715d66
SC
463
464bfd_target *
465DEFUN(bfd_find_target,(target_name, abfd),
466 CONST char *target_name AND
467 bfd *abfd)
468{
469 bfd_target **target;
470 extern char *getenv ();
f8adc62d
JG
471 CONST char *targname = (target_name ? target_name :
472 (CONST char *) getenv ("GNUTARGET"));
6f715d66
SC
473
474 /* This is safe; the vector cannot be null */
475 if (targname == NULL || !strcmp (targname, "default")) {
476 abfd->target_defaulted = true;
477 return abfd->xvec = target_vector[0];
478 }
479
480 abfd->target_defaulted = false;
481
482 for (target = &target_vector[0]; *target != NULL; target++) {
483 if (!strcmp (targname, (*target)->name))
484 return abfd->xvec = *target;
485 }
486
487 bfd_error = invalid_target;
488 return NULL;
489}
490
491
0cda46cf
SC
492/*
493FUNCTION
494 bfd_target_list
495
496DESCRIPTION
497 This function returns a freshly malloced NULL-terminated
498 vector of the names of all the valid BFD targets. Do not
499 modify the names
6f715d66 500
0cda46cf 501SYNOPSIS
69e0d34d 502 CONST char **bfd_target_list(void);
0cda46cf
SC
503
504*/
6f715d66
SC
505
506CONST char **
507DEFUN_VOID(bfd_target_list)
508{
509 int vec_length= 0;
510 bfd_target **target;
4e6f9223 511 CONST char **name_list, **name_ptr;
6f715d66
SC
512
513 for (target = &target_vector[0]; *target != NULL; target++)
514 vec_length++;
515
516 name_ptr =
517 name_list = (CONST char **) zalloc ((vec_length + 1) * sizeof (char **));
518
519 if (name_list == NULL) {
520 bfd_error = no_memory;
521 return NULL;
522 }
523
6f715d66
SC
524 for (target = &target_vector[0]; *target != NULL; target++)
525 *(name_ptr++) = (*target)->name;
526
527 return name_list;
528}
This page took 0.070997 seconds and 4 git commands to generate.