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