* ecoff.c: First cut at new style of linker backend for
[deliverable/binutils-gdb.git] / bfd / bfd-in2.h
CommitLineData
fdcb0453 1/* Main header file for the bfd library -- portable access to object files.
fdcb0453
KR
2 Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
b66b07a2
KR
5** NOTE: bfd.h and bfd-in2.h are GENERATED files. Don't change them;
6** instead, change bfd-in.h or the other BFD source files processed to
7** generate these files.
8
fdcb0453
KR
9This file is part of BFD, the Binary File Descriptor library.
10
11This program is free software; you can redistribute it and/or modify
12it under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2 of the License, or
14(at your option) any later version.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software
23Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24
25/* bfd.h -- The only header file required by users of the bfd library
26
27The bfd.h file is generated from bfd-in.h and various .c files; if you
28change it, your changes will probably be lost.
29
30All the prototypes and definitions following the comment "THE FOLLOWING
31IS EXTRACTED FROM THE SOURCE" are extracted from the source files for
32BFD. If you change it, someone oneday will extract it from the source
33again, and your changes will be lost. To save yourself from this bind,
34change the definitions in the source in the bfd directory. Type "make
35docs" and then "make headers" in that directory, and magically this file
36will change to reflect your changes.
37
38If you don't have the tools to perform the extraction, then you are
39safe from someone on your system trampling over your header files.
40You should still maintain the equivalence between the source and this
41file though; every change you make to the .c file should be reflected
42here. */
43
44#ifndef __BFD_H_SEEN__
45#define __BFD_H_SEEN__
46
47#include "ansidecl.h"
48#include "obstack.h"
49
50#define BFD_VERSION "2.2"
51
52#define BFD_ARCH_SIZE @WORDSIZE@
53
54#if BFD_ARCH_SIZE >= 64
55#define BFD64
56#endif
57
c3e964b9
FF
58#ifndef INLINE
59#if __GNUC__ >= 2
60#define INLINE __inline__
61#else
62#define INLINE
63#endif
64#endif
65
87cc59ce
KR
66/* 64-bit type definition (if any) from bfd's sysdep.h goes here */
67
fdcb0453
KR
68
69/* forward declaration */
70typedef struct _bfd bfd;
71
72/* To squelch erroneous compiler warnings ("illegal pointer
73 combination") from the SVR3 compiler, we would like to typedef
74 boolean to int (it doesn't like functions which return boolean.
75 Making sure they are never implicitly declared to return int
76 doesn't seem to help). But this file is not configured based on
77 the host. */
78/* General rules: functions which are boolean return true on success
79 and false on failure (unless they're a predicate). -- bfd.doc */
80/* I'm sure this is going to break something and someone is going to
81 force me to change it. */
82/* typedef enum boolean {false, true} boolean; */
83/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
84typedef enum bfd_boolean {false, true} boolean;
85
86/* A pointer to a position in a file. */
87/* FIXME: This should be using off_t from <sys/types.h>.
88 For now, try to avoid breaking stuff by not including <sys/types.h> here.
89 This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
90 Probably the best long-term answer is to avoid using file_ptr AND off_t
91 in this header file, and to handle this in the BFD implementation
92 rather than in its interface. */
93/* typedef off_t file_ptr; */
94typedef long int file_ptr;
95
96/* Support for different sizes of target format ints and addresses. If the
97 host implements 64-bit values, it defines HOST_64_BIT to be the appropriate
98 type. Otherwise, this code will fall back on gcc's "long long" type if gcc
99 is being used. HOST_64_BIT must be defined in such a way as to be a valid
100 type name by itself or with "unsigned" prefixed. It should be a signed
101 type by itself.
102
103 If neither is the case, then compilation will fail if 64-bit targets are
104 requested. If you don't request any 64-bit targets, you should be safe. */
105
106#ifdef BFD64
107
108#if defined (__GNUC__) && !defined (HOST_64_BIT)
109#define HOST_64_BIT long long
110typedef HOST_64_BIT int64_type;
111typedef unsigned HOST_64_BIT uint64_type;
112#endif
113
fa5ba217
KR
114#if !defined (uint64_type) && defined (__GNUC__)
115#define uint64_type unsigned long long
116#define int64_type long long
4aed7f24
ILT
117#define uint64_typeLOW(x) ((unsigned long)(((x) & 0xffffffff)))
118#define uint64_typeHIGH(x) ((unsigned long)(((x) >> 32) & 0xffffffff))
fa5ba217
KR
119#endif
120
fdcb0453
KR
121typedef unsigned HOST_64_BIT bfd_vma;
122typedef HOST_64_BIT bfd_signed_vma;
123typedef unsigned HOST_64_BIT bfd_size_type;
124typedef unsigned HOST_64_BIT symvalue;
125#define fprintf_vma(s,x) \
4aed7f24 126 fprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
fa5ba217 127#define sprintf_vma(s,x) \
4aed7f24 128 sprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
fdcb0453
KR
129#else /* not BFD64 */
130
131/* Represent a target address. Also used as a generic unsigned type
132 which is guaranteed to be big enough to hold any arithmetic types
133 we need to deal with. */
134typedef unsigned long bfd_vma;
135
136/* A generic signed type which is guaranteed to be big enough to hold any
137 arithmetic types we need to deal with. Can be assumed to be compatible
138 with bfd_vma in the same way that signed and unsigned ints are compatible
139 (as parameters, in assignment, etc). */
140typedef long bfd_signed_vma;
141
142typedef unsigned long symvalue;
143typedef unsigned long bfd_size_type;
144
145/* Print a bfd_vma x on stream s. */
146#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
fa5ba217 147#define sprintf_vma(s,x) sprintf(s, "%08lx", x)
fdcb0453
KR
148#endif /* not BFD64 */
149#define printf_vma(x) fprintf_vma(stdout,x)
150
151typedef unsigned int flagword; /* 32 bits of flags */
152\f
153/** File formats */
154
155typedef enum bfd_format {
156 bfd_unknown = 0, /* file format is unknown */
157 bfd_object, /* linker/assember/compiler output */
158 bfd_archive, /* object archive file */
159 bfd_core, /* core dump */
160 bfd_type_end} /* marks the end; don't use it! */
161 bfd_format;
162
9e461dac
JK
163/* Values that may appear in the flags field of a BFD. These also
164 appear in the object_flags field of the bfd_target structure, where
165 they indicate the set of flags used by that backend (not all flags
166 are meaningful for all object file formats) (FIXME: at the moment,
167 the object_flags values have mostly just been copied from backend
168 to another, and are not necessarily correct). */
169
170/* No flags. */
fdcb0453 171#define NO_FLAGS 0x00
9e461dac
JK
172
173/* BFD contains relocation entries. */
fdcb0453 174#define HAS_RELOC 0x01
9e461dac
JK
175
176/* BFD is directly executable. */
fdcb0453 177#define EXEC_P 0x02
9e461dac
JK
178
179/* BFD has line number information (basically used for F_LNNO in a
180 COFF header). */
fdcb0453 181#define HAS_LINENO 0x04
9e461dac
JK
182
183/* BFD has debugging information. */
fdcb0453 184#define HAS_DEBUG 0x08
9e461dac
JK
185
186/* BFD has symbols. */
fdcb0453 187#define HAS_SYMS 0x10
9e461dac
JK
188
189/* BFD has local symbols (basically used for F_LSYMS in a COFF
190 header). */
fdcb0453 191#define HAS_LOCALS 0x20
9e461dac
JK
192
193/* BFD is a dynamic object. */
fdcb0453 194#define DYNAMIC 0x40
9e461dac
JK
195
196/* Text section is write protected (if D_PAGED is not set, this is
197 like an a.out NMAGIC file) (the linker sets this by default, but
198 clears it for -r or -N). */
fdcb0453 199#define WP_TEXT 0x80
9e461dac
JK
200
201/* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
202 linker sets this by default, but clears it for -r or -n or -N). */
fdcb0453 203#define D_PAGED 0x100
9e461dac
JK
204
205/* BFD is relaxable (this means that bfd_relax_section may be able to
206 do something). */
fdcb0453
KR
207#define BFD_IS_RELAXABLE 0x200
208\f
209/* symbols and relocation */
210
211typedef unsigned long symindex;
212
213#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
214
215typedef enum bfd_symclass {
216 bfd_symclass_unknown = 0,
217 bfd_symclass_fcommon, /* fortran common symbols */
218 bfd_symclass_global, /* global symbol, what a surprise */
219 bfd_symclass_debugger, /* some debugger symbol */
220 bfd_symclass_undefined /* none known */
221 } symclass;
222
223
fdcb0453
KR
224/* general purpose part of a symbol;
225 target specific parts will be found in libcoff.h, liba.out.h etc */
226
227
228#define bfd_get_section(x) ((x)->section)
229#define bfd_get_output_section(x) ((x)->section->output_section)
230#define bfd_set_section(x,y) ((x)->section) = (y)
231#define bfd_asymbol_base(x) ((x)->section->vma)
232#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
233#define bfd_asymbol_name(x) ((x)->name)
234/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
235#define bfd_asymbol_bfd(x) ((x)->the_bfd)
236#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
237
238/* This is a type pun with struct ranlib on purpose! */
239typedef struct carsym {
240 char *name;
241 file_ptr file_offset; /* look here to find the file */
242} carsym; /* to make these you call a carsymogen */
243
244
245/* Used in generating armaps. Perhaps just a forward definition would do? */
246struct orl { /* output ranlib */
247 char **name; /* symbol name */
248 file_ptr pos; /* bfd* or file position */
249 int namidx; /* index into string table */
250};
251
252\f
253
254/* Linenumber stuff */
255typedef struct lineno_cache_entry {
256 unsigned int line_number; /* Linenumber from start of function*/
257 union {
258 struct symbol_cache_entry *sym; /* Function name */
259 unsigned long offset; /* Offset into section */
260 } u;
261} alent;
262\f
263/* object and core file sections */
264
265
266#define align_power(addr, align) \
267 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
268
269typedef struct sec *sec_ptr;
270
271#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
272#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
273#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
274#define bfd_section_name(bfd, ptr) ((ptr)->name)
275#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
276#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
277#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
278#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
279#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
280
281#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
282
283#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = true), true)
284#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
285#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
286
287typedef struct stat stat_type;
288\f
4c3721d5 289/* Error handling */
fdcb0453 290
4c3721d5
ILT
291typedef enum bfd_error
292{
293 no_error = 0,
294 system_call_error,
295 invalid_target,
296 wrong_format,
297 invalid_operation,
298 no_memory,
299 no_symbols,
300 no_relocation_info,
301 no_more_archived_files,
302 malformed_archive,
303 symbol_not_found,
304 file_not_recognized,
305 file_ambiguously_recognized,
306 no_contents,
307 bfd_error_nonrepresentable_section,
308 no_debug_section,
309 bad_value,
310 file_truncated,
311 invalid_error_code
312} bfd_ec;
fdcb0453 313
4c3721d5 314extern bfd_ec bfd_error;
fdcb0453
KR
315
316CONST char *bfd_errmsg PARAMS ((bfd_ec error_tag));
317void bfd_perror PARAMS ((CONST char *message));
318\f
319
320typedef enum bfd_print_symbol
321{
322 bfd_print_symbol_name,
323 bfd_print_symbol_more,
324 bfd_print_symbol_all
325} bfd_print_symbol_type;
326
327\f
328/* Information about a symbol that nm needs. */
329
330typedef struct _symbol_info
331{
332 symvalue value;
333 char type; /* */
334 CONST char *name; /* Symbol name. */
335 char stab_other; /* Unused. */
336 short stab_desc; /* Info for N_TYPE. */
337 CONST char *stab_name;
338} symbol_info;
339\f
4c3721d5
ILT
340/* Hash table routines. There is no way to free up a hash table. */
341
342/* An element in the hash table. Most uses will actually use a larger
343 structure, and an instance of this will be the first field. */
344
345struct bfd_hash_entry
346{
347 /* Next entry for this hash code. */
348 struct bfd_hash_entry *next;
349 /* String being hashed. */
350 const char *string;
351 /* Hash code. This is the full hash code, not the index into the
352 table. */
353 unsigned long hash;
354};
355
356/* A hash table. */
357
358struct bfd_hash_table
359{
360 /* The hash array. */
361 struct bfd_hash_entry **table;
362 /* The number of slots in the hash table. */
363 unsigned int size;
364 /* A function used to create new elements in the hash table. The
365 first entry is itself a pointer to an element. When this
366 function is first invoked, this pointer will be NULL. However,
367 having the pointer permits a hierarchy of method functions to be
368 built each of which calls the function in the superclass. Thus
369 each function should be written to allocate a new block of memory
370 only if the argument is NULL. */
371 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
372 struct bfd_hash_table *,
373 const char *));
374 /* An obstack for this hash table. */
375 struct obstack memory;
376};
377
378/* Initialize a hash table. */
379extern boolean bfd_hash_table_init
380 PARAMS ((struct bfd_hash_table *,
381 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
382 struct bfd_hash_table *,
383 const char *)));
384
385/* Initialize a hash table specifying a size. */
386extern boolean bfd_hash_table_init_n
387 PARAMS ((struct bfd_hash_table *,
388 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
389 struct bfd_hash_table *,
390 const char *),
391 unsigned int size));
392
393/* Free up a hash table. */
394extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
395
396/* Look up a string in a hash table. If CREATE is true, a new entry
397 will be created for this string if one does not already exist. The
398 COPY argument must be true if this routine should copy the string
399 into newly allocated memory when adding an entry. */
400extern struct bfd_hash_entry *bfd_hash_lookup
401 PARAMS ((struct bfd_hash_table *, const char *, boolean create,
402 boolean copy));
403
404/* Base method for creating a hash table entry. */
405extern struct bfd_hash_entry *bfd_hash_newfunc
406 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
407 const char *));
408
409/* Grab some space for a hash table entry. */
966e0a16
ILT
410extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
411 unsigned int));
4c3721d5
ILT
412
413/* Traverse a hash table in a random order, calling a function on each
414 element. If the function returns false, the traversal stops. The
415 INFO argument is passed to the function. */
416extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
417 boolean (*) (struct bfd_hash_entry *,
418 PTR),
419 PTR info));
420\f
fdcb0453
KR
421/* The code that implements targets can initialize a jump table with this
422 macro. It must name all its routines the same way (a prefix plus
423 the standard routine suffix), or it must #define the routines that
424 are not so named, before calling JUMP_TABLE in the initializer. */
425
c3e964b9
FF
426/* Semi-portable string concatenation in cpp.
427 The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
428 The problem is, "32_" is not a valid preprocessing token, and we don't
429 want extra underscores (e.g., "nlm_32_"). The XCAT2 macro will cause the
430 inner CAT macros to be evaluated first, producing still-valid pp-tokens.
431 Then the final concatenation can be done. (Sigh.) */
fdcb0453 432#ifndef CAT
c3e964b9
FF
433#ifdef SABER
434#define CAT(a,b) a##b
435#define CAT3(a,b,c) a##b##c
436#define CAT4(a,b,c,d) a##b##c##d
437#else
fdcb0453
KR
438#ifdef __STDC__
439#define CAT(a,b) a##b
440#define CAT3(a,b,c) a##b##c
c3e964b9
FF
441#define XCAT2(a,b) CAT(a,b)
442#define CAT4(a,b,c,d) XCAT2(CAT(a,b),CAT(c,d))
fdcb0453
KR
443#else
444#define CAT(a,b) a/**/b
445#define CAT3(a,b,c) a/**/b/**/c
c3e964b9
FF
446#define CAT4(a,b,c,d) a/**/b/**/c/**/d
447#endif
fdcb0453
KR
448#endif
449#endif
450
451#define JUMP_TABLE(NAME)\
452CAT(NAME,_core_file_failing_command),\
453CAT(NAME,_core_file_failing_signal),\
454CAT(NAME,_core_file_matches_executable_p),\
455CAT(NAME,_slurp_armap),\
456CAT(NAME,_slurp_extended_name_table),\
457CAT(NAME,_truncate_arname),\
458CAT(NAME,_write_armap),\
c3e964b9 459CAT(NAME,_close_and_cleanup),\
fdcb0453
KR
460CAT(NAME,_set_section_contents),\
461CAT(NAME,_get_section_contents),\
462CAT(NAME,_new_section_hook),\
463CAT(NAME,_get_symtab_upper_bound),\
464CAT(NAME,_get_symtab),\
465CAT(NAME,_get_reloc_upper_bound),\
466CAT(NAME,_canonicalize_reloc),\
467CAT(NAME,_make_empty_symbol),\
468CAT(NAME,_print_symbol),\
469CAT(NAME,_get_symbol_info),\
470CAT(NAME,_get_lineno),\
471CAT(NAME,_set_arch_mach),\
472CAT(NAME,_openr_next_archived_file),\
473CAT(NAME,_find_nearest_line),\
474CAT(NAME,_generic_stat_arch_elt),\
475CAT(NAME,_sizeof_headers),\
476CAT(NAME,_bfd_debug_info_start),\
477CAT(NAME,_bfd_debug_info_end),\
478CAT(NAME,_bfd_debug_info_accumulate),\
479CAT(NAME,_bfd_get_relocated_section_contents),\
480CAT(NAME,_bfd_relax_section),\
fdcb0453 481CAT(NAME,_bfd_reloc_type_lookup),\
4c3721d5
ILT
482CAT(NAME,_bfd_make_debug_symbol),\
483CAT(NAME,_bfd_link_hash_table_create),\
484CAT(NAME,_bfd_link_add_symbols),\
485CAT(NAME,_bfd_final_link)
fdcb0453
KR
486
487#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
488
489\f
490/* User program access to BFD facilities */
491
fdcb0453
KR
492/* Cast from const char * to char * so that caller can assign to
493 a char * without a warning. */
494#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
0a197a96 495#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
fdcb0453
KR
496#define bfd_get_format(abfd) ((abfd)->format)
497#define bfd_get_target(abfd) ((abfd)->xvec->name)
9e461dac 498#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
fdcb0453
KR
499#define bfd_get_file_flags(abfd) ((abfd)->flags)
500#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
501#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
502#define bfd_my_archive(abfd) ((abfd)->my_archive)
503#define bfd_has_map(abfd) ((abfd)->has_armap)
fdcb0453
KR
504
505#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
506#define bfd_usrdata(abfd) ((abfd)->usrdata)
507
508#define bfd_get_start_address(abfd) ((abfd)->start_address)
509#define bfd_get_symcount(abfd) ((abfd)->symcount)
510#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
511#define bfd_count_sections(abfd) ((abfd)->section_count)
fdcb0453
KR
512
513#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
514
0a197a96
JG
515#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (bool)), true)
516
2b91cc45
SG
517/* Byte swapping routines. */
518
1a973af1
ILT
519bfd_vma bfd_getb64 PARAMS ((const unsigned char *));
520bfd_vma bfd_getl64 PARAMS ((const unsigned char *));
521bfd_signed_vma bfd_getb_signed_64 PARAMS ((const unsigned char *));
522bfd_signed_vma bfd_getl_signed_64 PARAMS ((const unsigned char *));
523bfd_vma bfd_getb32 PARAMS ((const unsigned char *));
524bfd_vma bfd_getl32 PARAMS ((const unsigned char *));
525bfd_signed_vma bfd_getb_signed_32 PARAMS ((const unsigned char *));
526bfd_signed_vma bfd_getl_signed_32 PARAMS ((const unsigned char *));
527bfd_vma bfd_getb16 PARAMS ((const unsigned char *));
528bfd_vma bfd_getl16 PARAMS ((const unsigned char *));
529bfd_signed_vma bfd_getb_signed_16 PARAMS ((const unsigned char *));
530bfd_signed_vma bfd_getl_signed_16 PARAMS ((const unsigned char *));
2b91cc45
SG
531void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
532void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
533void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
534void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
535void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
536void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
537
8d12f138
ILT
538/* ECOFF linking routines. */
539#ifdef __STDC__
540struct ecoff_debug_info;
541struct ecoff_debug_swap;
542struct ecoff_extr;
543struct symbol_cache_entry;
544#endif
545extern boolean bfd_ecoff_debug_accumulate
546 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
547 const struct ecoff_debug_swap *output_swap,
548 bfd *input_bfd, struct ecoff_debug_info *input_debug,
549 const struct ecoff_debug_swap *input_swap,
550 boolean relocateable));
551extern boolean bfd_ecoff_debug_link_other
552 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
553 const struct ecoff_debug_swap *output_swap, bfd *input_bfd));
554extern boolean bfd_ecoff_debug_externals
555 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
556 const struct ecoff_debug_swap *swap,
557 boolean relocateable,
558 boolean (*get_extr) (struct symbol_cache_entry *,
559 struct ecoff_extr *),
560 void (*set_index) (struct symbol_cache_entry *,
561 bfd_size_type)));
966e0a16
ILT
562extern boolean bfd_ecoff_debug_one_external
563 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
564 const struct ecoff_debug_swap *swap,
565 const char *name, struct ecoff_extr *esym));
8d12f138
ILT
566extern bfd_size_type bfd_ecoff_debug_size
567 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
568 const struct ecoff_debug_swap *swap));
569extern boolean bfd_ecoff_write_debug
570 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
571 const struct ecoff_debug_swap *swap, file_ptr where));
572
fdcb0453
KR
573/* And more from the source. */
574void
575bfd_init PARAMS ((void));
576
577bfd *
c188b0be 578bfd_openr PARAMS ((CONST char *filename, CONST char *target));
fdcb0453
KR
579
580bfd *
581bfd_fdopenr PARAMS ((CONST char *filename, CONST char *target, int fd));
582
583bfd *
584bfd_openw PARAMS ((CONST char *filename, CONST char *target));
585
586boolean
c188b0be 587bfd_close PARAMS ((bfd *abfd));
fdcb0453
KR
588
589boolean
590bfd_close_all_done PARAMS ((bfd *));
591
592bfd_size_type
593bfd_alloc_size PARAMS ((bfd *abfd));
594
595bfd *
10bd43a8 596bfd_create PARAMS ((CONST char *filename, bfd *templ));
fdcb0453
KR
597
598
599 /* Byte swapping macros for user section data. */
600
601#define bfd_put_8(abfd, val, ptr) \
e2756048 602 (*((unsigned char *)(ptr)) = (unsigned char)(val))
fdcb0453
KR
603#define bfd_put_signed_8 \
604 bfd_put_8
605#define bfd_get_8(abfd, ptr) \
606 (*(unsigned char *)(ptr))
607#define bfd_get_signed_8(abfd, ptr) \
608 ((*(unsigned char *)(ptr) ^ 0x80) - 0x80)
609
610#define bfd_put_16(abfd, val, ptr) \
611 BFD_SEND(abfd, bfd_putx16, ((val),(ptr)))
612#define bfd_put_signed_16 \
613 bfd_put_16
614#define bfd_get_16(abfd, ptr) \
615 BFD_SEND(abfd, bfd_getx16, (ptr))
616#define bfd_get_signed_16(abfd, ptr) \
617 BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
618
619#define bfd_put_32(abfd, val, ptr) \
620 BFD_SEND(abfd, bfd_putx32, ((val),(ptr)))
621#define bfd_put_signed_32 \
622 bfd_put_32
623#define bfd_get_32(abfd, ptr) \
624 BFD_SEND(abfd, bfd_getx32, (ptr))
625#define bfd_get_signed_32(abfd, ptr) \
626 BFD_SEND(abfd, bfd_getx_signed_32, (ptr))
627
628#define bfd_put_64(abfd, val, ptr) \
629 BFD_SEND(abfd, bfd_putx64, ((val), (ptr)))
630#define bfd_put_signed_64 \
631 bfd_put_64
632#define bfd_get_64(abfd, ptr) \
633 BFD_SEND(abfd, bfd_getx64, (ptr))
634#define bfd_get_signed_64(abfd, ptr) \
635 BFD_SEND(abfd, bfd_getx_signed_64, (ptr))
636
637
638 /* Byte swapping macros for file header data. */
639
640#define bfd_h_put_8(abfd, val, ptr) \
641 bfd_put_8 (abfd, val, ptr)
642#define bfd_h_put_signed_8(abfd, val, ptr) \
643 bfd_put_8 (abfd, val, ptr)
644#define bfd_h_get_8(abfd, ptr) \
645 bfd_get_8 (abfd, ptr)
646#define bfd_h_get_signed_8(abfd, ptr) \
647 bfd_get_signed_8 (abfd, ptr)
648
649#define bfd_h_put_16(abfd, val, ptr) \
650 BFD_SEND(abfd, bfd_h_putx16,(val,ptr))
651#define bfd_h_put_signed_16 \
652 bfd_h_put_16
653#define bfd_h_get_16(abfd, ptr) \
654 BFD_SEND(abfd, bfd_h_getx16,(ptr))
655#define bfd_h_get_signed_16(abfd, ptr) \
656 BFD_SEND(abfd, bfd_h_getx_signed_16, (ptr))
657
658#define bfd_h_put_32(abfd, val, ptr) \
659 BFD_SEND(abfd, bfd_h_putx32,(val,ptr))
660#define bfd_h_put_signed_32 \
661 bfd_h_put_32
662#define bfd_h_get_32(abfd, ptr) \
663 BFD_SEND(abfd, bfd_h_getx32,(ptr))
664#define bfd_h_get_signed_32(abfd, ptr) \
665 BFD_SEND(abfd, bfd_h_getx_signed_32, (ptr))
666
667#define bfd_h_put_64(abfd, val, ptr) \
668 BFD_SEND(abfd, bfd_h_putx64,(val, ptr))
669#define bfd_h_put_signed_64 \
670 bfd_h_put_64
671#define bfd_h_get_64(abfd, ptr) \
672 BFD_SEND(abfd, bfd_h_getx64,(ptr))
673#define bfd_h_get_signed_64(abfd, ptr) \
674 BFD_SEND(abfd, bfd_h_getx_signed_64, (ptr))
675
676typedef struct sec
677{
c188b0be 678 /* The name of the section; the name isn't a copy, the pointer is
fdcb0453
KR
679 the same as that passed to bfd_make_section. */
680
681 CONST char *name;
682
c188b0be 683 /* Which section is it; 0..nth. */
fdcb0453
KR
684
685 int index;
686
687 /* The next section in the list belonging to the BFD, or NULL. */
688
689 struct sec *next;
690
c188b0be 691 /* The field flags contains attributes of the section. Some
fdcb0453
KR
692 flags are read in from the object file, and some are
693 synthesized from other information. */
694
695 flagword flags;
696
697#define SEC_NO_FLAGS 0x000
698
c188b0be
DM
699 /* Tells the OS to allocate space for this section when loading.
700 This is clear for a section containing debug information
fdcb0453 701 only. */
fdcb0453 702#define SEC_ALLOC 0x001
ef758f3e 703
fdcb0453 704 /* Tells the OS to load the section from the file when loading.
c188b0be 705 This is clear for a .bss section. */
fdcb0453 706#define SEC_LOAD 0x002
ef758f3e 707
c188b0be
DM
708 /* The section contains data still to be relocated, so there is
709 some relocation information too. */
fdcb0453
KR
710#define SEC_RELOC 0x004
711
b2ae9efb 712#if 0 /* Obsolete ? */
fdcb0453 713#define SEC_BALIGN 0x008
b2ae9efb 714#endif
fdcb0453
KR
715
716 /* A signal to the OS that the section contains read only
717 data. */
718#define SEC_READONLY 0x010
719
720 /* The section contains code only. */
fdcb0453
KR
721#define SEC_CODE 0x020
722
723 /* The section contains data only. */
b2ae9efb 724#define SEC_DATA 0x040
fdcb0453
KR
725
726 /* The section will reside in ROM. */
fdcb0453
KR
727#define SEC_ROM 0x080
728
729 /* The section contains constructor information. This section
730 type is used by the linker to create lists of constructors and
731 destructors used by <<g++>>. When a back end sees a symbol
732 which should be used in a constructor list, it creates a new
c188b0be
DM
733 section for the type of name (e.g., <<__CTOR_LIST__>>), attaches
734 the symbol to it, and builds a relocation. To build the lists
bc750ff1 735 of constructors, all the linker has to do is catenate all the
c188b0be 736 sections called <<__CTOR_LIST__>> and relocate the data
fdcb0453
KR
737 contained within - exactly the operations it would peform on
738 standard data. */
fdcb0453
KR
739#define SEC_CONSTRUCTOR 0x100
740
741 /* The section is a constuctor, and should be placed at the
b2ae9efb 742 end of the text, data, or bss section(?). */
fdcb0453 743#define SEC_CONSTRUCTOR_TEXT 0x1100
fdcb0453 744#define SEC_CONSTRUCTOR_DATA 0x2100
fdcb0453
KR
745#define SEC_CONSTRUCTOR_BSS 0x3100
746
747 /* The section has contents - a data section could be
c188b0be 748 <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>; a debug section could be
fdcb0453 749 <<SEC_HAS_CONTENTS>> */
fdcb0453
KR
750#define SEC_HAS_CONTENTS 0x200
751
c188b0be
DM
752 /* An instruction to the linker to not output the section
753 even if it has information which would normally be written. */
fdcb0453
KR
754#define SEC_NEVER_LOAD 0x400
755
756 /* The section is a shared library section. The linker must leave
757 these completely alone, as the vma and size are used when
758 the executable is loaded. */
fdcb0453
KR
759#define SEC_SHARED_LIBRARY 0x800
760
761 /* The section is a common section (symbols may be defined
762 multiple times, the value of a symbol is the amount of
763 space it requires, and the largest symbol value is the one
b2ae9efb
KR
764 used). Most targets have exactly one of these (which we
765 translate to bfd_com_section), but ECOFF has two. */
fdcb0453
KR
766#define SEC_IS_COMMON 0x8000
767
9b3fa589
JK
768 /* The section contains only debugging information. For
769 example, this is set for ELF .debug and .stab sections.
770 strip tests this flag to see if a section can be
771 discarded. */
772#define SEC_DEBUGGING 0x10000
773
b2ae9efb
KR
774 /* End of section flags. */
775
fdcb0453 776 /* The virtual memory address of the section - where it will be
b2ae9efb
KR
777 at run time. The symbols are relocated against this. The
778 user_set_vma flag is maintained by bfd; if it's not set, the
779 backend can assign addresses (for example, in <<a.out>>, where
780 the default address for <<.data>> is dependent on the specific
781 target and various flags). */
ef758f3e 782
fdcb0453 783 bfd_vma vma;
b2ae9efb 784 boolean user_set_vma;
fdcb0453
KR
785
786 /* The load address of the section - where it would be in a
c188b0be 787 rom image; really only used for writing section header
b2ae9efb 788 information. */
ef758f3e 789
fdcb0453
KR
790 bfd_vma lma;
791
fdcb0453 792 /* The size of the section in bytes, as it will be output.
c188b0be 793 contains a value even if the section has no contents (e.g., the
fdcb0453
KR
794 size of <<.bss>>). This will be filled in after relocation */
795
796 bfd_size_type _cooked_size;
797
c188b0be 798 /* The original size on disk of the section, in bytes. Normally this
fdcb0453
KR
799 value is the same as the size, but if some relaxing has
800 been done, then this value will be bigger. */
801
802 bfd_size_type _raw_size;
803
804 /* If this section is going to be output, then this value is the
805 offset into the output section of the first byte in the input
c188b0be 806 section. E.g., if this was going to start at the 100th byte in
fdcb0453
KR
807 the output section, this value would be 100. */
808
809 bfd_vma output_offset;
810
811 /* The output section through which to map on output. */
812
813 struct sec *output_section;
814
c188b0be
DM
815 /* The alignment requirement of the section, as an exponent of 2 -
816 e.g., 3 aligns to 2^3 (or 8). */
fdcb0453
KR
817
818 unsigned int alignment_power;
819
820 /* If an input section, a pointer to a vector of relocation
821 records for the data in this section. */
822
823 struct reloc_cache_entry *relocation;
824
825 /* If an output section, a pointer to a vector of pointers to
826 relocation records for the data in this section. */
827
828 struct reloc_cache_entry **orelocation;
829
830 /* The number of relocation records in one of the above */
831
832 unsigned reloc_count;
833
834 /* Information below is back end specific - and not always used
ef758f3e 835 or updated. */
fdcb0453 836
ef758f3e 837 /* File position of section data */
fdcb0453
KR
838
839 file_ptr filepos;
840
841 /* File position of relocation info */
842
843 file_ptr rel_filepos;
844
845 /* File position of line data */
846
847 file_ptr line_filepos;
848
849 /* Pointer to data for applications */
850
851 PTR userdata;
852
853 struct lang_output_section *otheruserdata;
854
855 /* Attached line number information */
856
857 alent *lineno;
858
859 /* Number of line number records */
860
861 unsigned int lineno_count;
862
863 /* When a section is being output, this value changes as more
864 linenumbers are written out */
865
866 file_ptr moving_line_filepos;
867
c188b0be 868 /* What the section number is in the target world */
fdcb0453
KR
869
870 int target_index;
871
872 PTR used_by_bfd;
873
874 /* If this is a constructor section then here is a list of the
875 relocations created to relocate items within it. */
876
877 struct relent_chain *constructor_chain;
878
879 /* The BFD which owns the section. */
880
881 bfd *owner;
882
883 boolean reloc_done;
884 /* A symbol which points at this section only */
885 struct symbol_cache_entry *symbol;
886 struct symbol_cache_entry **symbol_ptr_ptr;
ef758f3e 887
4c3721d5
ILT
888 struct bfd_link_order *link_order_head;
889 struct bfd_link_order *link_order_tail;
fdcb0453
KR
890} asection ;
891
892
b2ae9efb
KR
893 /* These sections are global, and are managed by BFD. The application
894 and target back end are not permitted to change the values in
895 these sections. */
fdcb0453
KR
896#define BFD_ABS_SECTION_NAME "*ABS*"
897#define BFD_UND_SECTION_NAME "*UND*"
898#define BFD_COM_SECTION_NAME "*COM*"
899#define BFD_IND_SECTION_NAME "*IND*"
900
901 /* the absolute section */
ef758f3e 902extern asection bfd_abs_section;
fdcb0453 903 /* Pointer to the undefined section */
ef758f3e 904extern asection bfd_und_section;
fdcb0453 905 /* Pointer to the common section */
ef758f3e 906extern asection bfd_com_section;
fdcb0453 907 /* Pointer to the indirect section */
ef758f3e 908extern asection bfd_ind_section;
fdcb0453 909
ef758f3e
KR
910extern struct symbol_cache_entry *bfd_abs_symbol;
911extern struct symbol_cache_entry *bfd_com_symbol;
912extern struct symbol_cache_entry *bfd_und_symbol;
913extern struct symbol_cache_entry *bfd_ind_symbol;
fdcb0453
KR
914#define bfd_get_section_size_before_reloc(section) \
915 (section->reloc_done ? (abort(),1): (section)->_raw_size)
916#define bfd_get_section_size_after_reloc(section) \
917 ((section->reloc_done) ? (section)->_cooked_size: (abort(),1))
918asection *
919bfd_get_section_by_name PARAMS ((bfd *abfd, CONST char *name));
920
921asection *
c188b0be 922bfd_make_section_old_way PARAMS ((bfd *abfd, CONST char *name));
fdcb0453 923
9b3fa589 924asection *
c188b0be 925bfd_make_section_anyway PARAMS ((bfd *abfd, CONST char *name));
9b3fa589
JK
926
927asection *
fdcb0453
KR
928bfd_make_section PARAMS ((bfd *, CONST char *name));
929
930boolean
c188b0be 931bfd_set_section_flags PARAMS ((bfd *abfd, asection *sec, flagword flags));
fdcb0453
KR
932
933void
934bfd_map_over_sections PARAMS ((bfd *abfd,
935 void (*func)(bfd *abfd,
936 asection *sect,
937 PTR obj),
938 PTR obj));
939
940boolean
c188b0be 941bfd_set_section_size PARAMS ((bfd *abfd, asection *sec, bfd_size_type val));
fdcb0453
KR
942
943boolean
944bfd_set_section_contents
945 PARAMS ((bfd *abfd,
946 asection *section,
947 PTR data,
948 file_ptr offset,
949 bfd_size_type count));
950
951boolean
952bfd_get_section_contents
953 PARAMS ((bfd *abfd, asection *section, PTR location,
954 file_ptr offset, bfd_size_type count));
955
956enum bfd_architecture
957{
958 bfd_arch_unknown, /* File arch not known */
959 bfd_arch_obscure, /* Arch known, not one of these */
960 bfd_arch_m68k, /* Motorola 68xxx */
961 bfd_arch_vax, /* DEC Vax */
962 bfd_arch_i960, /* Intel 960 */
963 /* The order of the following is important.
964 lower number indicates a machine type that
965 only accepts a subset of the instructions
966 available to machines with higher numbers.
967 The exception is the "ca", which is
968 incompatible with all other machines except
969 "core". */
970
971#define bfd_mach_i960_core 1
972#define bfd_mach_i960_ka_sa 2
973#define bfd_mach_i960_kb_sb 3
974#define bfd_mach_i960_mc 4
975#define bfd_mach_i960_xa 5
976#define bfd_mach_i960_ca 6
977
978 bfd_arch_a29k, /* AMD 29000 */
979 bfd_arch_sparc, /* SPARC */
980 bfd_arch_mips, /* MIPS Rxxxx */
981 bfd_arch_i386, /* Intel 386 */
982 bfd_arch_we32k, /* AT&T WE32xxx */
983 bfd_arch_tahoe, /* CCI/Harris Tahoe */
984 bfd_arch_i860, /* Intel 860 */
985 bfd_arch_romp, /* IBM ROMP PC/RT */
986 bfd_arch_alliant, /* Alliant */
987 bfd_arch_convex, /* Convex */
988 bfd_arch_m88k, /* Motorola 88xxx */
989 bfd_arch_pyramid, /* Pyramid Technology */
990 bfd_arch_h8300, /* Hitachi H8/300 */
991#define bfd_mach_h8300 1
992#define bfd_mach_h8300h 2
993 bfd_arch_rs6000, /* IBM RS/6000 */
994 bfd_arch_hppa, /* HP PA RISC */
995 bfd_arch_z8k, /* Zilog Z8000 */
996#define bfd_mach_z8001 1
997#define bfd_mach_z8002 2
998 bfd_arch_h8500, /* Hitachi H8/500 */
999 bfd_arch_sh, /* Hitachi SH */
1000 bfd_arch_alpha, /* Dec Alpha */
1001 bfd_arch_last
1002 };
1003
1004typedef struct bfd_arch_info
1005{
1006 int bits_per_word;
1007 int bits_per_address;
1008 int bits_per_byte;
1009 enum bfd_architecture arch;
1010 long mach;
1011 char *arch_name;
1012 CONST char *printable_name;
1013 unsigned int section_align_power;
1014 /* true if this is the default machine for the architecture */
1015 boolean the_default;
1016 CONST struct bfd_arch_info * (*compatible)
1017 PARAMS ((CONST struct bfd_arch_info *a,
1018 CONST struct bfd_arch_info *b));
1019
1020 boolean (*scan) PARAMS ((CONST struct bfd_arch_info *, CONST char *));
1021 /* How to disassemble an instruction, producing a printable
1022 representation on a specified stdio stream. This isn't
1023 defined for most processors at present, because of the size
1024 of the additional tables it would drag in, and because gdb
1025 wants to use a different interface. */
1026 unsigned int (*disassemble) PARAMS ((bfd_vma addr, CONST char *data,
1027 PTR stream));
1028
1029 struct bfd_arch_info *next;
1030} bfd_arch_info_type;
1031CONST char *
1032bfd_printable_name PARAMS ((bfd *abfd));
1033
1034bfd_arch_info_type *
c188b0be 1035bfd_scan_arch PARAMS ((CONST char *string));
fdcb0453
KR
1036
1037CONST bfd_arch_info_type *
1038bfd_arch_get_compatible PARAMS ((
1039 CONST bfd *abfd,
1040 CONST bfd *bbfd));
1041
1042void
c188b0be 1043bfd_set_arch_info PARAMS ((bfd *abfd, bfd_arch_info_type *arg));
fdcb0453
KR
1044
1045enum bfd_architecture
1046bfd_get_arch PARAMS ((bfd *abfd));
1047
1048unsigned long
1049bfd_get_mach PARAMS ((bfd *abfd));
1050
1051unsigned int
1052bfd_arch_bits_per_byte PARAMS ((bfd *abfd));
1053
1054unsigned int
1055bfd_arch_bits_per_address PARAMS ((bfd *abfd));
1056
1057bfd_arch_info_type *
c188b0be 1058bfd_get_arch_info PARAMS ((bfd *abfd));
fdcb0453
KR
1059
1060bfd_arch_info_type *
1061bfd_lookup_arch
1062 PARAMS ((enum bfd_architecture
1063 arch,
1064 long machine));
1065
c188b0be 1066CONST char *
fdcb0453
KR
1067bfd_printable_arch_mach
1068 PARAMS ((enum bfd_architecture arch, unsigned long machine));
1069
1070typedef enum bfd_reloc_status
1071{
1072 /* No errors detected */
1073 bfd_reloc_ok,
1074
1075 /* The relocation was performed, but there was an overflow. */
1076 bfd_reloc_overflow,
1077
1078 /* The address to relocate was not within the section supplied. */
1079 bfd_reloc_outofrange,
1080
1081 /* Used by special functions */
1082 bfd_reloc_continue,
1083
c188b0be 1084 /* Unsupported relocation size requested. */
fdcb0453
KR
1085 bfd_reloc_notsupported,
1086
c188b0be 1087 /* Unused */
fdcb0453
KR
1088 bfd_reloc_other,
1089
1090 /* The symbol to relocate against was undefined. */
1091 bfd_reloc_undefined,
1092
1093 /* The relocation was performed, but may not be ok - presently
1094 generated only when linking i960 coff files with i960 b.out
4c3721d5
ILT
1095 symbols. If this type is returned, the error_message argument
1096 to bfd_perform_relocation will be set. */
fdcb0453
KR
1097 bfd_reloc_dangerous
1098 }
1099 bfd_reloc_status_type;
1100
1101
1102typedef struct reloc_cache_entry
1103{
1104 /* A pointer into the canonical table of pointers */
1105 struct symbol_cache_entry **sym_ptr_ptr;
1106
1107 /* offset in section */
1108 bfd_size_type address;
1109
1110 /* addend for relocation value */
1111 bfd_vma addend;
1112
1113 /* Pointer to how to perform the required relocation */
e2756048 1114 const struct reloc_howto_struct *howto;
fdcb0453
KR
1115
1116} arelent;
66a277ab
ILT
1117enum complain_overflow
1118{
1119 /* Do not complain on overflow. */
1120 complain_overflow_dont,
1121
1122 /* Complain if the bitfield overflows, whether it is considered
1123 as signed or unsigned. */
1124 complain_overflow_bitfield,
1125
1126 /* Complain if the value overflows when considered as signed
1127 number. */
1128 complain_overflow_signed,
1129
1130 /* Complain if the value overflows when considered as an
1131 unsigned number. */
1132 complain_overflow_unsigned
1133};
fdcb0453 1134
c188b0be 1135typedef struct reloc_howto_struct
fdcb0453
KR
1136{
1137 /* The type field has mainly a documetary use - the back end can
c188b0be
DM
1138 do what it wants with it, though normally the back end's
1139 external idea of what a reloc number is stored
1140 in this field. For example, a PC relative word relocation
1141 in a coff environment has the type 023 - because that's
fdcb0453
KR
1142 what the outside world calls a R_PCRWORD reloc. */
1143 unsigned int type;
1144
1145 /* The value the final relocation is shifted right by. This drops
1146 unwanted data from the relocation. */
1147 unsigned int rightshift;
1148
9e461dac 1149 /* The size of the item to be relocated. This is *not* a
4c3721d5
ILT
1150 power-of-two measure. To get the number of bytes operated
1151 on by a type of relocation, use bfd_get_reloc_size. */
fdcb0453
KR
1152 int size;
1153
66a277ab
ILT
1154 /* The number of bits in the item to be relocated. This is used
1155 when doing overflow checking. */
fdcb0453
KR
1156 unsigned int bitsize;
1157
1158 /* Notes that the relocation is relative to the location in the
1159 data section of the addend. The relocation function will
1160 subtract from the relocation value the address of the location
1161 being relocated. */
1162 boolean pc_relative;
1163
66a277ab
ILT
1164 /* The bit position of the reloc value in the destination.
1165 The relocated value is left shifted by this amount. */
fdcb0453
KR
1166 unsigned int bitpos;
1167
66a277ab
ILT
1168 /* What type of overflow error should be checked for when
1169 relocating. */
1170 enum complain_overflow complain_on_overflow;
fdcb0453
KR
1171
1172 /* If this field is non null, then the supplied function is
1173 called rather than the normal function. This allows really
1174 strange relocation methods to be accomodated (e.g., i960 callj
1175 instructions). */
1176 bfd_reloc_status_type (*special_function)
1177 PARAMS ((bfd *abfd,
1178 arelent *reloc_entry,
1179 struct symbol_cache_entry *symbol,
1180 PTR data,
1181 asection *input_section,
4c3721d5
ILT
1182 bfd *output_bfd,
1183 char **error_message));
fdcb0453
KR
1184
1185 /* The textual name of the relocation type. */
1186 char *name;
1187
1188 /* When performing a partial link, some formats must modify the
1189 relocations rather than the data - this flag signals this.*/
1190 boolean partial_inplace;
1191
c188b0be 1192 /* The src_mask selects which parts of the read in data
fdcb0453
KR
1193 are to be used in the relocation sum. E.g., if this was an 8 bit
1194 bit of data which we read and relocated, this would be
1195 0x000000ff. When we have relocs which have an addend, such as
1196 sun4 extended relocs, the value in the offset part of a
1197 relocating field is garbage so we never use it. In this case
1198 the mask would be 0x00000000. */
1199 bfd_vma src_mask;
1200
c188b0be 1201 /* The dst_mask selects which parts of the instruction are replaced
fdcb0453
KR
1202 into the instruction. In most cases src_mask == dst_mask,
1203 except in the above special case, where dst_mask would be
1204 0x000000ff, and src_mask would be 0x00000000. */
1205 bfd_vma dst_mask;
1206
1207 /* When some formats create PC relative instructions, they leave
1208 the value of the pc of the place being relocated in the offset
1209 slot of the instruction, so that a PC relative relocation can
1210 be made just by adding in an ordinary offset (e.g., sun3 a.out).
1211 Some formats leave the displacement part of an instruction
c188b0be 1212 empty (e.g., m88k bcs); this flag signals the fact.*/
fdcb0453
KR
1213 boolean pcrel_offset;
1214
1215} reloc_howto_type;
66a277ab
ILT
1216#define HOWTO(C, R,S,B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
1217 {(unsigned)C,R,S,B, P, BI, O,SF,NAME,INPLACE,MASKSRC,MASKDST,PC}
1218#define NEWHOWTO( FUNCTION, NAME,SIZE,REL,IN) HOWTO(0,0,SIZE,0,REL,0,complain_overflow_dont,FUNCTION, NAME,false,0,0,IN)
fdcb0453
KR
1219
1220#define HOWTO_PREPARE(relocation, symbol) \
1221 { \
1222 if (symbol != (asymbol *)NULL) { \
1223 if (bfd_is_com_section (symbol->section)) { \
1224 relocation = 0; \
1225 } \
1226 else { \
1227 relocation = symbol->value; \
1228 } \
1229 } \
1230}
4c3721d5
ILT
1231int
1232bfd_get_reloc_size PARAMS ((const reloc_howto_type *));
1233
fdcb0453
KR
1234typedef unsigned char bfd_byte;
1235
1236typedef struct relent_chain {
1237 arelent relent;
1238 struct relent_chain *next;
1239} arelent_chain;
1240bfd_reloc_status_type
1241
1242bfd_perform_relocation
c188b0be 1243 PARAMS ((bfd *abfd,
fdcb0453
KR
1244 arelent *reloc_entry,
1245 PTR data,
1246 asection *input_section,
4c3721d5
ILT
1247 bfd *output_bfd,
1248 char **error_message));
fdcb0453
KR
1249
1250typedef enum bfd_reloc_code_real
fdcb0453 1251{
9e461dac 1252 /* Basic absolute relocations */
fa5ba217 1253 BFD_RELOC_64,
fa5ba217 1254 BFD_RELOC_32,
fdcb0453 1255 BFD_RELOC_16,
fdcb0453 1256 BFD_RELOC_8,
9e461dac
JK
1257
1258 /* PC-relative relocations */
1259 BFD_RELOC_64_PCREL,
1260 BFD_RELOC_32_PCREL,
1261 BFD_RELOC_24_PCREL, /* used by i960 */
1262 BFD_RELOC_16_PCREL,
fdcb0453 1263 BFD_RELOC_8_PCREL,
9e461dac
JK
1264
1265 /* Linkage-table relative */
1266 BFD_RELOC_32_BASEREL,
1267 BFD_RELOC_16_BASEREL,
1268 BFD_RELOC_8_BASEREL,
fdcb0453 1269
ef758f3e
KR
1270 /* The type of reloc used to build a contructor table - at the moment
1271 probably a 32 bit wide abs address, but the cpu can choose. */
fdcb0453
KR
1272 BFD_RELOC_CTOR,
1273
9e461dac
JK
1274 /* 8 bits wide, but used to form an address like 0xffnn */
1275 BFD_RELOC_8_FFnn,
1276
1277 /* 32-bit pc-relative, shifted right 2 bits (i.e., 30-bit
1278 word displacement, e.g. for SPARC) */
1279 BFD_RELOC_32_PCREL_S2,
1280
1281 /* High 22 bits of 32-bit value, placed into lower 22 bits of
1282 target word; simple reloc. */
fdcb0453 1283 BFD_RELOC_HI22,
ef758f3e 1284 /* Low 10 bits. */
fdcb0453
KR
1285 BFD_RELOC_LO10,
1286
ef758f3e 1287 /* Reloc types used for i960/b.out. */
fdcb0453
KR
1288 BFD_RELOC_I960_CALLJ,
1289
fdcb0453
KR
1290 /* now for the sparc/elf codes */
1291 BFD_RELOC_NONE, /* actually used */
1292 BFD_RELOC_SPARC_WDISP22,
1293 BFD_RELOC_SPARC22,
1294 BFD_RELOC_SPARC13,
fdcb0453
KR
1295 BFD_RELOC_SPARC_GOT10,
1296 BFD_RELOC_SPARC_GOT13,
1297 BFD_RELOC_SPARC_GOT22,
1298 BFD_RELOC_SPARC_PC10,
1299 BFD_RELOC_SPARC_PC22,
1300 BFD_RELOC_SPARC_WPLT30,
1301 BFD_RELOC_SPARC_COPY,
1302 BFD_RELOC_SPARC_GLOB_DAT,
1303 BFD_RELOC_SPARC_JMP_SLOT,
1304 BFD_RELOC_SPARC_RELATIVE,
1305 BFD_RELOC_SPARC_UA32,
1306
ef758f3e 1307 /* these are a.out specific? */
5284a822 1308 BFD_RELOC_SPARC_BASE13,
fdcb0453
KR
1309 BFD_RELOC_SPARC_BASE22,
1310
fa5ba217 1311 /* start-sanitize-v9 */
fa5ba217
KR
1312 BFD_RELOC_SPARC_10,
1313 BFD_RELOC_SPARC_11,
1314#define BFD_RELOC_SPARC_64 BFD_RELOC_64
1315 BFD_RELOC_SPARC_OLO10,
1316 BFD_RELOC_SPARC_HH22,
1317 BFD_RELOC_SPARC_HM10,
1318 BFD_RELOC_SPARC_LM22,
1319 BFD_RELOC_SPARC_PC_HH22,
1320 BFD_RELOC_SPARC_PC_HM10,
1321 BFD_RELOC_SPARC_PC_LM22,
1322 BFD_RELOC_SPARC_WDISP16,
5284a822 1323 BFD_RELOC_SPARC_WDISP19,
fa5ba217
KR
1324 BFD_RELOC_SPARC_GLOB_JMP,
1325 BFD_RELOC_SPARC_LO7,
1326 /* end-sanitize-v9 */
5284a822 1327
ef758f3e
KR
1328 /* Bits 27..2 of the relocation address shifted right 2 bits;
1329 simple reloc otherwise. */
fdcb0453
KR
1330 BFD_RELOC_MIPS_JMP,
1331
ef758f3e 1332 /* signed 16-bit pc-relative, shifted right 2 bits (e.g. for MIPS) */
fdcb0453
KR
1333 BFD_RELOC_16_PCREL_S2,
1334
ef758f3e 1335 /* High 16 bits of 32-bit value; simple reloc. */
fdcb0453 1336 BFD_RELOC_HI16,
ef758f3e
KR
1337 /* High 16 bits of 32-bit value but the low 16 bits will be sign
1338 extended and added to form the final result. If the low 16
1339 bits form a negative number, we need to add one to the high value
1340 to compensate for the borrow when the low bits are added. */
fdcb0453 1341 BFD_RELOC_HI16_S,
ef758f3e 1342 /* Low 16 bits. */
fdcb0453
KR
1343 BFD_RELOC_LO16,
1344
ef758f3e 1345 /* 16 bit relocation relative to the global pointer. */
fdcb0453
KR
1346 BFD_RELOC_MIPS_GPREL,
1347
0a197a96
JG
1348 /* Relocation against a MIPS literal section. */
1349 BFD_RELOC_MIPS_LITERAL,
1350
1351 /* MIPS ELF relocations. */
1352 BFD_RELOC_MIPS_GOT16,
1353 BFD_RELOC_MIPS_CALL16,
1354 BFD_RELOC_MIPS_GPREL32,
1355
ef758f3e
KR
1356 /* These are, so far, specific to HPPA processors. I'm not sure that some
1357 don't duplicate other reloc types, such as BFD_RELOC_32 and _32_PCREL.
1358 Also, many more were in the list I got that don't fit in well in the
1359 model BFD uses, so I've omitted them for now. If we do make this reloc
1360 type get used for code that really does implement the funky reloc types,
1361 they'll have to be added to this list. */
fdcb0453
KR
1362 BFD_RELOC_HPPA_32,
1363 BFD_RELOC_HPPA_11,
1364 BFD_RELOC_HPPA_14,
1365 BFD_RELOC_HPPA_17,
ef758f3e 1366
fdcb0453
KR
1367 BFD_RELOC_HPPA_L21,
1368 BFD_RELOC_HPPA_R11,
1369 BFD_RELOC_HPPA_R14,
1370 BFD_RELOC_HPPA_R17,
1371 BFD_RELOC_HPPA_LS21,
1372 BFD_RELOC_HPPA_RS11,
1373 BFD_RELOC_HPPA_RS14,
1374 BFD_RELOC_HPPA_RS17,
1375 BFD_RELOC_HPPA_LD21,
1376 BFD_RELOC_HPPA_RD11,
1377 BFD_RELOC_HPPA_RD14,
1378 BFD_RELOC_HPPA_RD17,
1379 BFD_RELOC_HPPA_LR21,
1380 BFD_RELOC_HPPA_RR14,
1381 BFD_RELOC_HPPA_RR17,
ef758f3e 1382
fdcb0453
KR
1383 BFD_RELOC_HPPA_GOTOFF_11,
1384 BFD_RELOC_HPPA_GOTOFF_14,
1385 BFD_RELOC_HPPA_GOTOFF_L21,
1386 BFD_RELOC_HPPA_GOTOFF_R11,
1387 BFD_RELOC_HPPA_GOTOFF_R14,
1388 BFD_RELOC_HPPA_GOTOFF_LS21,
1389 BFD_RELOC_HPPA_GOTOFF_RS11,
1390 BFD_RELOC_HPPA_GOTOFF_RS14,
1391 BFD_RELOC_HPPA_GOTOFF_LD21,
1392 BFD_RELOC_HPPA_GOTOFF_RD11,
1393 BFD_RELOC_HPPA_GOTOFF_RD14,
1394 BFD_RELOC_HPPA_GOTOFF_LR21,
1395 BFD_RELOC_HPPA_GOTOFF_RR14,
ef758f3e 1396
fdcb0453
KR
1397 BFD_RELOC_HPPA_DLT_32,
1398 BFD_RELOC_HPPA_DLT_11,
1399 BFD_RELOC_HPPA_DLT_14,
1400 BFD_RELOC_HPPA_DLT_L21,
1401 BFD_RELOC_HPPA_DLT_R11,
1402 BFD_RELOC_HPPA_DLT_R14,
ef758f3e 1403
fdcb0453
KR
1404 BFD_RELOC_HPPA_ABS_CALL_11,
1405 BFD_RELOC_HPPA_ABS_CALL_14,
1406 BFD_RELOC_HPPA_ABS_CALL_17,
1407 BFD_RELOC_HPPA_ABS_CALL_L21,
1408 BFD_RELOC_HPPA_ABS_CALL_R11,
1409 BFD_RELOC_HPPA_ABS_CALL_R14,
1410 BFD_RELOC_HPPA_ABS_CALL_R17,
1411 BFD_RELOC_HPPA_ABS_CALL_LS21,
1412 BFD_RELOC_HPPA_ABS_CALL_RS11,
1413 BFD_RELOC_HPPA_ABS_CALL_RS14,
1414 BFD_RELOC_HPPA_ABS_CALL_RS17,
1415 BFD_RELOC_HPPA_ABS_CALL_LD21,
1416 BFD_RELOC_HPPA_ABS_CALL_RD11,
1417 BFD_RELOC_HPPA_ABS_CALL_RD14,
1418 BFD_RELOC_HPPA_ABS_CALL_RD17,
1419 BFD_RELOC_HPPA_ABS_CALL_LR21,
1420 BFD_RELOC_HPPA_ABS_CALL_RR14,
1421 BFD_RELOC_HPPA_ABS_CALL_RR17,
ef758f3e 1422
fdcb0453
KR
1423 BFD_RELOC_HPPA_PCREL_CALL_11,
1424 BFD_RELOC_HPPA_PCREL_CALL_12,
1425 BFD_RELOC_HPPA_PCREL_CALL_14,
1426 BFD_RELOC_HPPA_PCREL_CALL_17,
1427 BFD_RELOC_HPPA_PCREL_CALL_L21,
1428 BFD_RELOC_HPPA_PCREL_CALL_R11,
1429 BFD_RELOC_HPPA_PCREL_CALL_R14,
1430 BFD_RELOC_HPPA_PCREL_CALL_R17,
1431 BFD_RELOC_HPPA_PCREL_CALL_LS21,
1432 BFD_RELOC_HPPA_PCREL_CALL_RS11,
1433 BFD_RELOC_HPPA_PCREL_CALL_RS14,
1434 BFD_RELOC_HPPA_PCREL_CALL_RS17,
1435 BFD_RELOC_HPPA_PCREL_CALL_LD21,
1436 BFD_RELOC_HPPA_PCREL_CALL_RD11,
1437 BFD_RELOC_HPPA_PCREL_CALL_RD14,
1438 BFD_RELOC_HPPA_PCREL_CALL_RD17,
1439 BFD_RELOC_HPPA_PCREL_CALL_LR21,
1440 BFD_RELOC_HPPA_PCREL_CALL_RR14,
1441 BFD_RELOC_HPPA_PCREL_CALL_RR17,
ef758f3e 1442
fdcb0453
KR
1443 BFD_RELOC_HPPA_PLABEL_32,
1444 BFD_RELOC_HPPA_PLABEL_11,
1445 BFD_RELOC_HPPA_PLABEL_14,
1446 BFD_RELOC_HPPA_PLABEL_L21,
1447 BFD_RELOC_HPPA_PLABEL_R11,
1448 BFD_RELOC_HPPA_PLABEL_R14,
ef758f3e 1449
fdcb0453
KR
1450 BFD_RELOC_HPPA_UNWIND_ENTRY,
1451 BFD_RELOC_HPPA_UNWIND_ENTRIES,
1452
b66b07a2
KR
1453 /* i386/elf relocations */
1454 BFD_RELOC_386_GOT32,
1455 BFD_RELOC_386_PLT32,
1456 BFD_RELOC_386_COPY,
1457 BFD_RELOC_386_GLOB_DAT,
1458 BFD_RELOC_386_JUMP_SLOT,
1459 BFD_RELOC_386_RELATIVE,
1460 BFD_RELOC_386_GOTOFF,
1461 BFD_RELOC_386_GOTPC,
1462
fdcb0453
KR
1463 /* this must be the highest numeric value */
1464 BFD_RELOC_UNUSED
1465 } bfd_reloc_code_real_type;
e2756048 1466const struct reloc_howto_struct *
fdcb0453
KR
1467
1468bfd_reloc_type_lookup PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
1469
ef758f3e 1470
fdcb0453
KR
1471typedef struct symbol_cache_entry
1472{
1473 /* A pointer to the BFD which owns the symbol. This information
1474 is necessary so that a back end can work out what additional
1475 information (invisible to the application writer) is carried
1476 with the symbol.
1477
1478 This field is *almost* redundant, since you can use section->owner
1479 instead, except that some symbols point to the global sections
1480 bfd_{abs,com,und}_section. This could be fixed by making
1481 these globals be per-bfd (or per-target-flavor). FIXME. */
1482
1483 struct _bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field. */
1484
c188b0be 1485 /* The text of the symbol. The name is left alone, and not copied; the
fdcb0453
KR
1486 application may not alter it. */
1487 CONST char *name;
1488
1489 /* The value of the symbol. This really should be a union of a
1490 numeric value with a pointer, since some flags indicate that
1491 a pointer to another symbol is stored here. */
1492 symvalue value;
1493
1494 /* Attributes of a symbol: */
1495
1496#define BSF_NO_FLAGS 0x00
1497
1498 /* The symbol has local scope; <<static>> in <<C>>. The value
1499 is the offset into the section of the data. */
1500#define BSF_LOCAL 0x01
1501
1502 /* The symbol has global scope; initialized data in <<C>>. The
1503 value is the offset into the section of the data. */
1504#define BSF_GLOBAL 0x02
1505
c188b0be 1506 /* The symbol has global scope and is exported. The value is
fdcb0453 1507 the offset into the section of the data. */
ef758f3e 1508#define BSF_EXPORT BSF_GLOBAL /* no real difference */
fdcb0453
KR
1509
1510 /* A normal C symbol would be one of:
1511 <<BSF_LOCAL>>, <<BSF_FORT_COMM>>, <<BSF_UNDEFINED>> or
ef758f3e 1512 <<BSF_GLOBAL>> */
fdcb0453
KR
1513
1514 /* The symbol is a debugging record. The value has an arbitary
1515 meaning. */
1516#define BSF_DEBUGGING 0x08
1517
1518 /* The symbol denotes a function entry point. Used in ELF,
1519 perhaps others someday. */
1520#define BSF_FUNCTION 0x10
1521
1522 /* Used by the linker. */
1523#define BSF_KEEP 0x20
1524#define BSF_KEEP_G 0x40
1525
b66b07a2
KR
1526 /* A weak global symbol, overridable without warnings by
1527 a regular global symbol of the same name. */
fdcb0453
KR
1528#define BSF_WEAK 0x80
1529
1530 /* This symbol was created to point to a section, e.g. ELF's
1531 STT_SECTION symbols. */
1532#define BSF_SECTION_SYM 0x100
1533
1534 /* The symbol used to be a common symbol, but now it is
1535 allocated. */
1536#define BSF_OLD_COMMON 0x200
1537
1538 /* The default value for common data. */
1539#define BFD_FORT_COMM_DEFAULT_VALUE 0
1540
1541 /* In some files the type of a symbol sometimes alters its
1542 location in an output file - ie in coff a <<ISFCN>> symbol
1543 which is also <<C_EXT>> symbol appears where it was
1544 declared and not at the end of a section. This bit is set
1545 by the target BFD part to convey this information. */
1546
1547#define BSF_NOT_AT_END 0x400
1548
1549 /* Signal that the symbol is the label of constructor section. */
1550#define BSF_CONSTRUCTOR 0x800
1551
1552 /* Signal that the symbol is a warning symbol. If the symbol
1553 is a warning symbol, then the value field (I know this is
1554 tacky) will point to the asymbol which when referenced will
1555 cause the warning. */
1556#define BSF_WARNING 0x1000
1557
1558 /* Signal that the symbol is indirect. The value of the symbol
1559 is a pointer to an undefined asymbol which contains the
1560 name to use instead. */
1561#define BSF_INDIRECT 0x2000
1562
1563 /* BSF_FILE marks symbols that contain a file name. This is used
1564 for ELF STT_FILE symbols. */
1565#define BSF_FILE 0x4000
1566
1567 flagword flags;
1568
1569 /* A pointer to the section to which this symbol is
1570 relative. This will always be non NULL, there are special
1571 sections for undefined and absolute symbols */
1572 struct sec *section;
1573
1574 /* Back end special data. This is being phased out in favour
1575 of making this a union. */
1576 PTR udata;
1577
1578} asymbol;
1579#define get_symtab_upper_bound(abfd) \
1580 BFD_SEND (abfd, _get_symtab_upper_bound, (abfd))
1581#define bfd_canonicalize_symtab(abfd, location) \
1582 BFD_SEND (abfd, _bfd_canonicalize_symtab,\
1583 (abfd, location))
1584boolean
c188b0be 1585bfd_set_symtab PARAMS ((bfd *abfd, asymbol **location, unsigned int count));
fdcb0453
KR
1586
1587void
1588bfd_print_symbol_vandf PARAMS ((PTR file, asymbol *symbol));
1589
1590#define bfd_make_empty_symbol(abfd) \
1591 BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
1592#define bfd_make_debug_symbol(abfd,ptr,size) \
1593 BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
1594int
1595bfd_decode_symclass PARAMS ((asymbol *symbol));
1596
1597void
1598bfd_symbol_info PARAMS ((asymbol *symbol, symbol_info *ret));
1599
1600struct _bfd
1601{
1602 /* The filename the application opened the BFD with. */
1603 CONST char *filename;
1604
1605 /* A pointer to the target jump table. */
1606 struct bfd_target *xvec;
1607
1608 /* To avoid dragging too many header files into every file that
1609 includes `<<bfd.h>>', IOSTREAM has been declared as a "char
1610 *", and MTIME as a "long". Their correct types, to which they
1611 are cast when used, are "FILE *" and "time_t". The iostream
1612 is the result of an fopen on the filename. */
1613 char *iostream;
1614
0a197a96
JG
1615 /* Is the file descriptor being cached? That is, can it be closed as
1616 needed, and re-opened when accessed later? */
fdcb0453
KR
1617
1618 boolean cacheable;
1619
1620 /* Marks whether there was a default target specified when the
c188b0be
DM
1621 BFD was opened. This is used to select which matching algorithm
1622 to use to choose the back end. */
fdcb0453
KR
1623
1624 boolean target_defaulted;
1625
1626 /* The caching routines use these to maintain a
1627 least-recently-used list of BFDs */
1628
1629 struct _bfd *lru_prev, *lru_next;
1630
1631 /* When a file is closed by the caching routines, BFD retains
c188b0be 1632 state information on the file here: */
fdcb0453
KR
1633
1634 file_ptr where;
1635
c188b0be 1636 /* and here: (``once'' means at least once) */
fdcb0453
KR
1637
1638 boolean opened_once;
1639
1640 /* Set if we have a locally maintained mtime value, rather than
1641 getting it from the file each time: */
1642
1643 boolean mtime_set;
1644
1645 /* File modified time, if mtime_set is true: */
1646
1647 long mtime;
1648
1649 /* Reserved for an unimplemented file locking extension.*/
1650
1651 int ifd;
1652
c188b0be 1653 /* The format which belongs to the BFD. (object, core, etc.) */
fdcb0453
KR
1654
1655 bfd_format format;
1656
1657 /* The direction the BFD was opened with*/
1658
1659 enum bfd_direction {no_direction = 0,
1660 read_direction = 1,
1661 write_direction = 2,
1662 both_direction = 3} direction;
1663
1664 /* Format_specific flags*/
1665
1666 flagword flags;
1667
1668 /* Currently my_archive is tested before adding origin to
1669 anything. I believe that this can become always an add of
1670 origin, with origin set to 0 for non archive files. */
1671
1672 file_ptr origin;
1673
1674 /* Remember when output has begun, to stop strange things
c188b0be 1675 from happening. */
fdcb0453
KR
1676 boolean output_has_begun;
1677
1678 /* Pointer to linked list of sections*/
1679 struct sec *sections;
1680
1681 /* The number of sections */
1682 unsigned int section_count;
1683
1684 /* Stuff only useful for object files:
1685 The start address. */
1686 bfd_vma start_address;
1687
1688 /* Used for input and output*/
1689 unsigned int symcount;
1690
c188b0be 1691 /* Symbol table for output BFD (with symcount entries) */
fdcb0453
KR
1692 struct symbol_cache_entry **outsymbols;
1693
1694 /* Pointer to structure which contains architecture information*/
1695 struct bfd_arch_info *arch_info;
1696
1697 /* Stuff only useful for archives:*/
1698 PTR arelt_data;
c188b0be
DM
1699 struct _bfd *my_archive; /* The containing archive BFD. */
1700 struct _bfd *next; /* The next BFD in the archive. */
1701 struct _bfd *archive_head; /* The first BFD in the archive. */
fdcb0453
KR
1702 boolean has_armap;
1703
4c3721d5
ILT
1704 /* A chain of BFD structures involved in a link. */
1705 struct _bfd *link_next;
1706
1707 /* A field used by _bfd_generic_link_add_archive_symbols. This will
1708 be used only for archive elements. */
1709 int archive_pass;
1710
fdcb0453
KR
1711 /* Used by the back end to hold private data. */
1712
1713 union
1714 {
1715 struct aout_data_struct *aout_data;
1716 struct artdata *aout_ar_data;
1717 struct _oasys_data *oasys_obj_data;
1718 struct _oasys_ar_data *oasys_ar_data;
1719 struct coff_tdata *coff_obj_data;
1720 struct ecoff_tdata *ecoff_obj_data;
1721 struct ieee_data_struct *ieee_data;
1722 struct ieee_ar_data_struct *ieee_ar_data;
1723 struct srec_data_struct *srec_data;
1724 struct tekhex_data_struct *tekhex_data;
1725 struct elf_obj_tdata *elf_obj_data;
c3e964b9 1726 struct nlm_obj_tdata *nlm_obj_data;
fdcb0453
KR
1727 struct bout_data_struct *bout_data;
1728 struct sun_core_struct *sun_core_data;
1729 struct trad_core_struct *trad_core_data;
9e461dac 1730 struct som_data_struct *som_data;
b66b07a2 1731 struct hpux_core_struct *hpux_core_data;
8d12f138 1732 struct hppabsd_core_struct *hppabsd_core_data;
fdcb0453 1733 struct sgi_core_struct *sgi_core_data;
2b91cc45 1734 struct lynx_core_struct *lynx_core_data;
9b3fa589 1735 struct osf_core_struct *osf_core_data;
fdcb0453
KR
1736 PTR any;
1737 } tdata;
1738
1739 /* Used by the application to hold private data*/
1740 PTR usrdata;
1741
1742 /* Where all the allocated stuff under this BFD goes */
1743 struct obstack memory;
fdcb0453
KR
1744};
1745
e2756048
ILT
1746unsigned int
1747bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect));
1748
1749unsigned int
1750bfd_canonicalize_reloc
1751 PARAMS ((bfd *abfd,
1752 asection *sec,
1753 arelent **loc,
1754 asymbol **syms));
1755
1756void
1757bfd_set_reloc
1758 PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count)
1759
1760 );
1761
fdcb0453
KR
1762boolean
1763bfd_set_file_flags PARAMS ((bfd *abfd, flagword flags));
1764
fdcb0453 1765boolean
c188b0be 1766bfd_set_start_address PARAMS ((bfd *abfd, bfd_vma vma));
fdcb0453
KR
1767
1768long
c188b0be 1769bfd_get_mtime PARAMS ((bfd *abfd));
fdcb0453
KR
1770
1771long
c188b0be 1772bfd_get_size PARAMS ((bfd *abfd));
fdcb0453
KR
1773
1774int
c188b0be 1775bfd_get_gp_size PARAMS ((bfd *abfd));
fdcb0453
KR
1776
1777void
c188b0be 1778bfd_set_gp_size PARAMS ((bfd *abfd, int i));
fdcb0453 1779
ef758f3e
KR
1780bfd_vma
1781bfd_scan_vma PARAMS ((CONST char *string, CONST char **end, int base));
1782
fdcb0453
KR
1783#define bfd_sizeof_headers(abfd, reloc) \
1784 BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
1785
1786#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1787 BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
1788
1789 /* Do these three do anything useful at all, for any back end? */
1790#define bfd_debug_info_start(abfd) \
1791 BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
1792
1793#define bfd_debug_info_end(abfd) \
1794 BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
1795
1796#define bfd_debug_info_accumulate(abfd, section) \
1797 BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
1798
1799
1800#define bfd_stat_arch_elt(abfd, stat) \
1801 BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
1802
1803#define bfd_set_arch_mach(abfd, arch, mach)\
1804 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
1805
4c3721d5
ILT
1806#define bfd_get_relocated_section_contents(abfd, link_info, link_order, data, relocateable, symbols) \
1807 BFD_SEND (abfd, _bfd_get_relocated_section_contents, \
1808 (abfd, link_info, link_order, data, relocateable, symbols))
fdcb0453 1809
4c3721d5
ILT
1810#define bfd_relax_section(abfd, section, link_info, symbols) \
1811 BFD_SEND (abfd, _bfd_relax_section, \
1812 (abfd, section, link_info, symbols))
1813
1814#define bfd_link_hash_table_create(abfd) \
1815 BFD_SEND (abfd, _bfd_link_hash_table_create, (abfd))
1816
1817#define bfd_link_add_symbols(abfd, info) \
1818 BFD_SEND (abfd, _bfd_link_add_symbols, (abfd, info))
1819
1820#define bfd_final_link(abfd, info) \
1821 BFD_SEND (abfd, _bfd_final_link, (abfd, info))
fdcb0453 1822
fdcb0453 1823symindex
c188b0be 1824bfd_get_next_mapent PARAMS ((bfd *abfd, symindex previous, carsym **sym));
fdcb0453
KR
1825
1826boolean
1827bfd_set_archive_head PARAMS ((bfd *output, bfd *new_head));
1828
1829bfd *
c188b0be 1830bfd_get_elt_at_index PARAMS ((bfd *archive, int index));
fdcb0453 1831
c188b0be 1832bfd *
fdcb0453
KR
1833bfd_openr_next_archived_file PARAMS ((bfd *archive, bfd *previous));
1834
1835CONST char *
c188b0be 1836bfd_core_file_failing_command PARAMS ((bfd *abfd));
fdcb0453
KR
1837
1838int
c188b0be 1839bfd_core_file_failing_signal PARAMS ((bfd *abfd));
fdcb0453
KR
1840
1841boolean
1842core_file_matches_executable_p
1843 PARAMS ((bfd *core_bfd, bfd *exec_bfd));
1844
1845#define BFD_SEND(bfd, message, arglist) \
1846 ((*((bfd)->xvec->message)) arglist)
1847#define BFD_SEND_FMT(bfd, message, arglist) \
1848 (((bfd)->xvec->message[(int)((bfd)->format)]) arglist)
9e461dac
JK
1849enum bfd_flavour {
1850 bfd_target_unknown_flavour,
1851 bfd_target_aout_flavour,
1852 bfd_target_coff_flavour,
1853 bfd_target_ecoff_flavour,
1854 bfd_target_elf_flavour,
1855 bfd_target_ieee_flavour,
1856 bfd_target_nlm_flavour,
1857 bfd_target_oasys_flavour,
1858 bfd_target_tekhex_flavour,
1859 bfd_target_srec_flavour,
1860 bfd_target_som_flavour};
4c3721d5
ILT
1861
1862 /* Forward declaration. */
1863typedef struct bfd_link_info _bfd_link_info;
1864
fdcb0453
KR
1865typedef struct bfd_target
1866{
1867 char *name;
9e461dac 1868 enum bfd_flavour flavour;
fdcb0453
KR
1869 boolean byteorder_big_p;
1870 boolean header_byteorder_big_p;
1871 flagword object_flags;
1872 flagword section_flags;
1873 char symbol_leading_char;
1874 char ar_pad_char;
1875 unsigned short ar_max_namelen;
1876 unsigned int align_power_min;
1a973af1
ILT
1877 bfd_vma (*bfd_getx64) PARAMS ((const bfd_byte *));
1878 bfd_signed_vma (*bfd_getx_signed_64) PARAMS ((const bfd_byte *));
fdcb0453 1879 void (*bfd_putx64) PARAMS ((bfd_vma, bfd_byte *));
1a973af1
ILT
1880 bfd_vma (*bfd_getx32) PARAMS ((const bfd_byte *));
1881 bfd_signed_vma (*bfd_getx_signed_32) PARAMS ((const bfd_byte *));
fdcb0453 1882 void (*bfd_putx32) PARAMS ((bfd_vma, bfd_byte *));
1a973af1
ILT
1883 bfd_vma (*bfd_getx16) PARAMS ((const bfd_byte *));
1884 bfd_signed_vma (*bfd_getx_signed_16) PARAMS ((const bfd_byte *));
fdcb0453 1885 void (*bfd_putx16) PARAMS ((bfd_vma, bfd_byte *));
1a973af1
ILT
1886 bfd_vma (*bfd_h_getx64) PARAMS ((const bfd_byte *));
1887 bfd_signed_vma (*bfd_h_getx_signed_64) PARAMS ((const bfd_byte *));
fdcb0453 1888 void (*bfd_h_putx64) PARAMS ((bfd_vma, bfd_byte *));
1a973af1
ILT
1889 bfd_vma (*bfd_h_getx32) PARAMS ((const bfd_byte *));
1890 bfd_signed_vma (*bfd_h_getx_signed_32) PARAMS ((const bfd_byte *));
fdcb0453 1891 void (*bfd_h_putx32) PARAMS ((bfd_vma, bfd_byte *));
1a973af1
ILT
1892 bfd_vma (*bfd_h_getx16) PARAMS ((const bfd_byte *));
1893 bfd_signed_vma (*bfd_h_getx_signed_16) PARAMS ((const bfd_byte *));
fdcb0453
KR
1894 void (*bfd_h_putx16) PARAMS ((bfd_vma, bfd_byte *));
1895 struct bfd_target * (*_bfd_check_format[bfd_type_end]) PARAMS ((bfd *));
1896 boolean (*_bfd_set_format[bfd_type_end]) PARAMS ((bfd *));
1897 boolean (*_bfd_write_contents[bfd_type_end]) PARAMS ((bfd *));
1898 char * (*_core_file_failing_command) PARAMS ((bfd *));
1899 int (*_core_file_failing_signal) PARAMS ((bfd *));
1900 boolean (*_core_file_matches_executable_p) PARAMS ((bfd *, bfd *));
1901 boolean (*_bfd_slurp_armap) PARAMS ((bfd *));
1902 boolean (*_bfd_slurp_extended_name_table) PARAMS ((bfd *));
1903 void (*_bfd_truncate_arname) PARAMS ((bfd *, CONST char *, char *));
1904 boolean (*write_armap) PARAMS ((bfd *arch,
1905 unsigned int elength,
1906 struct orl *map,
1907 unsigned int orl_count,
1908 int stridx));
1909 boolean (*_close_and_cleanup) PARAMS ((bfd *));
1910 boolean (*_bfd_set_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1911 file_ptr, bfd_size_type));
1912 boolean (*_bfd_get_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1913 file_ptr, bfd_size_type));
1914 boolean (*_new_section_hook) PARAMS ((bfd *, sec_ptr));
1915 unsigned int (*_get_symtab_upper_bound) PARAMS ((bfd *));
1916 unsigned int (*_bfd_canonicalize_symtab) PARAMS ((bfd *,
1917 struct symbol_cache_entry **));
1918 unsigned int (*_get_reloc_upper_bound) PARAMS ((bfd *, sec_ptr));
1919 unsigned int (*_bfd_canonicalize_reloc) PARAMS ((bfd *, sec_ptr, arelent **,
1920 struct symbol_cache_entry **));
1921 struct symbol_cache_entry *
1922 (*_bfd_make_empty_symbol) PARAMS ((bfd *));
1923 void (*_bfd_print_symbol) PARAMS ((bfd *, PTR,
1924 struct symbol_cache_entry *,
1925 bfd_print_symbol_type));
1926#define bfd_print_symbol(b,p,s,e) BFD_SEND(b, _bfd_print_symbol, (b,p,s,e))
1927 void (*_bfd_get_symbol_info) PARAMS ((bfd *,
1928 struct symbol_cache_entry *,
1929 symbol_info *));
1930#define bfd_get_symbol_info(b,p,e) BFD_SEND(b, _bfd_get_symbol_info, (b,p,e))
1931 alent * (*_get_lineno) PARAMS ((bfd *, struct symbol_cache_entry *));
1932
1933 boolean (*_bfd_set_arch_mach) PARAMS ((bfd *, enum bfd_architecture,
1934 unsigned long));
1935
1936 bfd * (*openr_next_archived_file) PARAMS ((bfd *arch, bfd *prev));
1937
1938 boolean (*_bfd_find_nearest_line) PARAMS ((bfd *abfd,
1939 struct sec *section, struct symbol_cache_entry **symbols,
1940 bfd_vma offset, CONST char **file, CONST char **func,
1941 unsigned int *line));
1942
1943 int (*_bfd_stat_arch_elt) PARAMS ((bfd *, struct stat *));
1944
1945 int (*_bfd_sizeof_headers) PARAMS ((bfd *, boolean));
1946
1947 void (*_bfd_debug_info_start) PARAMS ((bfd *));
1948 void (*_bfd_debug_info_end) PARAMS ((bfd *));
1949 void (*_bfd_debug_info_accumulate) PARAMS ((bfd *, struct sec *));
1950
1951 bfd_byte * (*_bfd_get_relocated_section_contents) PARAMS ((bfd *,
4c3721d5
ILT
1952 struct bfd_link_info *, struct bfd_link_order *,
1953 bfd_byte *data, boolean relocateable,
1954 struct symbol_cache_entry **));
fdcb0453
KR
1955
1956 boolean (*_bfd_relax_section) PARAMS ((bfd *, struct sec *,
4c3721d5 1957 struct bfd_link_info *, struct symbol_cache_entry **));
fdcb0453 1958
fdcb0453
KR
1959 /* See documentation on reloc types. */
1960 CONST struct reloc_howto_struct *
1961 (*reloc_type_lookup) PARAMS ((bfd *abfd,
1962 bfd_reloc_code_real_type code));
1963
1964 /* Back-door to allow format-aware applications to create debug symbols
1965 while using BFD for everything else. Currently used by the assembler
1966 when creating COFF files. */
1967 asymbol * (*_bfd_make_debug_symbol) PARAMS ((
1968 bfd *abfd,
1969 void *ptr,
1970 unsigned long size));
4c3721d5
ILT
1971
1972 /* Create a hash table for the linker. Different backends store
1973 different information in this table. */
1974 struct bfd_link_hash_table *(*_bfd_link_hash_table_create) PARAMS ((bfd *));
1975
1976 /* Add symbols from this object file into the hash table. */
1977 boolean (*_bfd_link_add_symbols) PARAMS ((bfd *, struct bfd_link_info *));
1978
1979 /* Do a link based on the link_order structures attached to each
1980 section of the BFD. */
1981 boolean (*_bfd_final_link) PARAMS ((bfd *, struct bfd_link_info *));
1982
fdcb0453
KR
1983 PTR backend_data;
1984} bfd_target;
1985bfd_target *
c188b0be 1986bfd_find_target PARAMS ((CONST char *target_name, bfd *abfd));
fdcb0453
KR
1987
1988CONST char **
1989bfd_target_list PARAMS ((void));
1990
1991boolean
1992bfd_check_format PARAMS ((bfd *abfd, bfd_format format));
1993
1994boolean
c188b0be 1995bfd_set_format PARAMS ((bfd *abfd, bfd_format format));
fdcb0453
KR
1996
1997CONST char *
c188b0be 1998bfd_format_string PARAMS ((bfd_format format));
fdcb0453
KR
1999
2000#endif
This page took 0.128328 seconds and 4 git commands to generate.