]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gdb/bfd/bfd-in.h
This commit was generated by cvs2svn to compensate for changes in r42468,
[FreeBSD/FreeBSD.git] / contrib / gdb / bfd / bfd-in.h
1 /* Main header file for the bfd library -- portable access to object files.
2    Copyright 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3    Contributed by Cygnus Support.
4
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
9 This file is part of BFD, the Binary File Descriptor library.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
24
25 /* bfd.h -- The only header file required by users of the bfd library 
26
27 The bfd.h file is generated from bfd-in.h and various .c files; if you
28 change it, your changes will probably be lost.
29
30 All the prototypes and definitions following the comment "THE FOLLOWING
31 IS EXTRACTED FROM THE SOURCE" are extracted from the source files for
32 BFD.  If you change it, someone oneday will extract it from the source
33 again, and your changes will be lost.  To save yourself from this bind,
34 change the definitions in the source in the bfd directory.  Type "make
35 docs" and then "make headers" in that directory, and magically this file
36 will change to reflect your changes.
37
38 If you don't have the tools to perform the extraction, then you are
39 safe from someone on your system trampling over your header files.
40 You should still maintain the equivalence between the source and this
41 file though; every change you make to the .c file should be reflected
42 here.  */
43
44 #ifndef __BFD_H_SEEN__
45 #define __BFD_H_SEEN__
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50
51 #include "ansidecl.h"
52 #include "obstack.h"
53
54 /* These two lines get substitutions done by commands in Makefile.in.  */
55 #define BFD_VERSION  "@VERSION@"
56 #define BFD_ARCH_SIZE @WORDSIZE@
57 #define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@
58
59 #if BFD_ARCH_SIZE >= 64
60 #define BFD64
61 #endif
62
63 #ifndef INLINE
64 #if __GNUC__ >= 2
65 #define INLINE __inline__
66 #else
67 #define INLINE
68 #endif
69 #endif
70
71 /* forward declaration */
72 typedef struct _bfd bfd;
73
74 /* To squelch erroneous compiler warnings ("illegal pointer
75    combination") from the SVR3 compiler, we would like to typedef
76    boolean to int (it doesn't like functions which return boolean.
77    Making sure they are never implicitly declared to return int
78    doesn't seem to help).  But this file is not configured based on
79    the host.  */
80 /* General rules: functions which are boolean return true on success
81    and false on failure (unless they're a predicate).   -- bfd.doc */
82 /* I'm sure this is going to break something and someone is going to
83    force me to change it. */
84 /* typedef enum boolean {false, true} boolean; */
85 /* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h>  -fnf */
86 /* It gets worse if the host also defines a true/false enum... -sts */
87 /* And even worse if your compiler has built-in boolean types... -law */
88 #if defined (__GNUG__) && (__GNUC_MINOR__ > 5)
89 #define TRUE_FALSE_ALREADY_DEFINED
90 #endif
91 #ifdef MPW
92 /* Pre-emptive strike - get the file with the enum. */
93 #include <Types.h>
94 #define TRUE_FALSE_ALREADY_DEFINED
95 #endif /* MPW */
96 #ifndef TRUE_FALSE_ALREADY_DEFINED
97 typedef enum bfd_boolean {false, true} boolean;
98 #define BFD_TRUE_FALSE
99 #else
100 /* Use enum names that will appear nowhere else.  */
101 typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;
102 #endif
103
104 /* A pointer to a position in a file.  */
105 /* FIXME:  This should be using off_t from <sys/types.h>.
106    For now, try to avoid breaking stuff by not including <sys/types.h> here.
107    This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
108    Probably the best long-term answer is to avoid using file_ptr AND off_t 
109    in this header file, and to handle this in the BFD implementation
110    rather than in its interface.  */
111 /* typedef off_t        file_ptr; */
112 typedef long int file_ptr;
113
114 /* Support for different sizes of target format ints and addresses.
115    If the type `long' is at least 64 bits, BFD_HOST_64BIT_LONG will be
116    set to 1 above.  Otherwise, if gcc is being used, this code will
117    use gcc's "long long" type.  Otherwise, the compilation will fail
118    if 64-bit targets are requested.  */
119
120 #ifdef BFD64
121
122 #ifndef BFD_HOST_64_BIT
123 #if BFD_HOST_64BIT_LONG
124 #define BFD_HOST_64_BIT long
125 #else
126 #ifdef __GNUC__
127 #define BFD_HOST_64_BIT long long
128 #endif /* defined (__GNUC__) */
129 #endif /* ! BFD_HOST_64BIT_LONG */
130 #endif /* ! defined (BFD_HOST_64_BIT) */
131
132 typedef unsigned BFD_HOST_64_BIT bfd_vma;
133 typedef BFD_HOST_64_BIT bfd_signed_vma;
134 typedef unsigned BFD_HOST_64_BIT bfd_size_type;
135 typedef unsigned BFD_HOST_64_BIT symvalue;
136
137 #ifndef fprintf_vma
138 #if BFD_HOST_64BIT_LONG
139 #define sprintf_vma(s,x) sprintf (s, "%016lx", x)
140 #define fprintf_vma(f,x) fprintf (f, "%016lx", x)
141 #else
142 #define _bfd_int64_low(x) ((unsigned long) (((x) & 0xffffffff)))
143 #define _bfd_int64_high(x) ((unsigned long) (((x) >> 32) & 0xffffffff))
144 #define fprintf_vma(s,x) \
145   fprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
146 #define sprintf_vma(s,x) \
147   sprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
148 #endif
149 #endif
150
151 #else /* not BFD64  */
152
153 /* Represent a target address.  Also used as a generic unsigned type
154    which is guaranteed to be big enough to hold any arithmetic types
155    we need to deal with.  */
156 typedef unsigned long bfd_vma;
157
158 /* A generic signed type which is guaranteed to be big enough to hold any
159    arithmetic types we need to deal with.  Can be assumed to be compatible
160    with bfd_vma in the same way that signed and unsigned ints are compatible
161    (as parameters, in assignment, etc).  */
162 typedef long bfd_signed_vma;
163
164 typedef unsigned long symvalue;
165 typedef unsigned long bfd_size_type;
166
167 /* Print a bfd_vma x on stream s.  */
168 #define fprintf_vma(s,x) fprintf(s, "%08lx", x)
169 #define sprintf_vma(s,x) sprintf(s, "%08lx", x)
170 #endif /* not BFD64  */
171 #define printf_vma(x) fprintf_vma(stdout,x)
172
173 typedef unsigned int flagword;  /* 32 bits of flags */
174 typedef unsigned char bfd_byte;
175 \f
176 /** File formats */
177
178 typedef enum bfd_format {
179               bfd_unknown = 0,  /* file format is unknown */
180               bfd_object,       /* linker/assember/compiler output */
181               bfd_archive,      /* object archive file */
182               bfd_core,         /* core dump */
183               bfd_type_end}     /* marks the end; don't use it! */
184          bfd_format;
185
186 /* Values that may appear in the flags field of a BFD.  These also
187    appear in the object_flags field of the bfd_target structure, where
188    they indicate the set of flags used by that backend (not all flags
189    are meaningful for all object file formats) (FIXME: at the moment,
190    the object_flags values have mostly just been copied from backend
191    to another, and are not necessarily correct).  */
192
193 /* No flags.  */
194 #define NO_FLAGS        0x00
195
196 /* BFD contains relocation entries.  */
197 #define HAS_RELOC       0x01
198
199 /* BFD is directly executable.  */
200 #define EXEC_P          0x02
201
202 /* BFD has line number information (basically used for F_LNNO in a
203    COFF header).  */
204 #define HAS_LINENO      0x04
205
206 /* BFD has debugging information.  */
207 #define HAS_DEBUG       0x08
208
209 /* BFD has symbols.  */
210 #define HAS_SYMS        0x10
211
212 /* BFD has local symbols (basically used for F_LSYMS in a COFF
213    header).  */
214 #define HAS_LOCALS      0x20
215
216 /* BFD is a dynamic object.  */
217 #define DYNAMIC         0x40
218
219 /* Text section is write protected (if D_PAGED is not set, this is
220    like an a.out NMAGIC file) (the linker sets this by default, but
221    clears it for -r or -N).  */
222 #define WP_TEXT         0x80
223
224 /* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
225    linker sets this by default, but clears it for -r or -n or -N).  */
226 #define D_PAGED         0x100
227
228 /* BFD is relaxable (this means that bfd_relax_section may be able to
229    do something) (sometimes bfd_relax_section can do something even if
230    this is not set).  */
231 #define BFD_IS_RELAXABLE 0x200
232
233 /* This may be set before writing out a BFD to request using a
234    traditional format.  For example, this is used to request that when
235    writing out an a.out object the symbols not be hashed to eliminate
236    duplicates.  */
237 #define BFD_TRADITIONAL_FORMAT 0x400
238
239 /* This flag indicates that the BFD contents are actually cached in
240    memory.  If this is set, iostream points to a bfd_in_memory struct.  */
241 #define BFD_IN_MEMORY 0x800
242 \f
243 /* symbols and relocation */
244
245 /* A count of carsyms (canonical archive symbols).  */
246 typedef unsigned long symindex;
247
248 /* How to perform a relocation.  */
249 typedef const struct reloc_howto_struct reloc_howto_type;
250
251 #define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
252
253 /* General purpose part of a symbol X;
254    target specific parts are in libcoff.h, libaout.h, etc.  */
255
256 #define bfd_get_section(x) ((x)->section)
257 #define bfd_get_output_section(x) ((x)->section->output_section)
258 #define bfd_set_section(x,y) ((x)->section) = (y)
259 #define bfd_asymbol_base(x) ((x)->section->vma)
260 #define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
261 #define bfd_asymbol_name(x) ((x)->name)
262 /*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
263 #define bfd_asymbol_bfd(x) ((x)->the_bfd)
264 #define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
265
266 /* A canonical archive symbol.  */
267 /* This is a type pun with struct ranlib on purpose! */
268 typedef struct carsym {
269   char *name;
270   file_ptr file_offset;         /* look here to find the file */
271 } carsym;                       /* to make these you call a carsymogen */
272
273   
274 /* Used in generating armaps (archive tables of contents).
275    Perhaps just a forward definition would do? */
276 struct orl {                    /* output ranlib */
277   char **name;                  /* symbol name */ 
278   file_ptr pos;                 /* bfd* or file position */
279   int namidx;                   /* index into string table */
280 };
281 \f
282
283 /* Linenumber stuff */
284 typedef struct lineno_cache_entry {
285   unsigned int line_number;     /* Linenumber from start of function*/  
286   union {
287     struct symbol_cache_entry *sym; /* Function name */
288     unsigned long offset;       /* Offset into section */
289   } u;
290 } alent;
291 \f
292 /* object and core file sections */
293
294 #define align_power(addr, align)        \
295         ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
296
297 typedef struct sec *sec_ptr;
298
299 #define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
300 #define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
301 #define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
302 #define bfd_section_name(bfd, ptr) ((ptr)->name)
303 #define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
304 #define bfd_section_vma(bfd, ptr) ((ptr)->vma)
305 #define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
306 #define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
307 #define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
308
309 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
310
311 #define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = (boolean)true), true)
312 #define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
313 #define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
314
315 typedef struct stat stat_type; 
316 \f
317 typedef enum bfd_print_symbol
318
319   bfd_print_symbol_name,
320   bfd_print_symbol_more,
321   bfd_print_symbol_all
322 } bfd_print_symbol_type;
323     
324 /* Information about a symbol that nm needs.  */
325
326 typedef struct _symbol_info
327 {
328   symvalue value;
329   char type;
330   CONST char *name;            /* Symbol name.  */
331   unsigned char stab_type;     /* Stab type.  */
332   char stab_other;             /* Stab other. */
333   short stab_desc;             /* Stab desc.  */
334   CONST char *stab_name;       /* String for stab type.  */
335 } symbol_info;
336
337 /* Get the name of a stabs type code.  */
338
339 extern const char *bfd_get_stab_name PARAMS ((int));
340 \f
341 /* Hash table routines.  There is no way to free up a hash table.  */
342
343 /* An element in the hash table.  Most uses will actually use a larger
344    structure, and an instance of this will be the first field.  */
345
346 struct bfd_hash_entry
347 {
348   /* Next entry for this hash code.  */
349   struct bfd_hash_entry *next;
350   /* String being hashed.  */
351   const char *string;
352   /* Hash code.  This is the full hash code, not the index into the
353      table.  */
354   unsigned long hash;
355 };
356
357 /* A hash table.  */
358
359 struct bfd_hash_table
360 {
361   /* The hash array.  */
362   struct bfd_hash_entry **table;
363   /* The number of slots in the hash table.  */
364   unsigned int size;
365   /* A function used to create new elements in the hash table.  The
366      first entry is itself a pointer to an element.  When this
367      function is first invoked, this pointer will be NULL.  However,
368      having the pointer permits a hierarchy of method functions to be
369      built each of which calls the function in the superclass.  Thus
370      each function should be written to allocate a new block of memory
371      only if the argument is NULL.  */
372   struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
373                                              struct bfd_hash_table *,
374                                              const char *));
375   /* An obstack for this hash table.  */
376   struct obstack memory;
377 };
378
379 /* Initialize a hash table.  */
380 extern boolean bfd_hash_table_init
381   PARAMS ((struct bfd_hash_table *,
382            struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
383                                        struct bfd_hash_table *,
384                                        const char *)));
385
386 /* Initialize a hash table specifying a size.  */
387 extern boolean bfd_hash_table_init_n
388   PARAMS ((struct bfd_hash_table *,
389            struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
390                                        struct bfd_hash_table *,
391                                        const char *),
392            unsigned int size));
393
394 /* Free up a hash table.  */
395 extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
396
397 /* Look up a string in a hash table.  If CREATE is true, a new entry
398    will be created for this string if one does not already exist.  The
399    COPY argument must be true if this routine should copy the string
400    into newly allocated memory when adding an entry.  */
401 extern struct bfd_hash_entry *bfd_hash_lookup
402   PARAMS ((struct bfd_hash_table *, const char *, boolean create,
403            boolean copy));
404
405 /* Replace an entry in a hash table.  */
406 extern void bfd_hash_replace
407   PARAMS ((struct bfd_hash_table *, struct bfd_hash_entry *old,
408            struct bfd_hash_entry *nw));
409
410 /* Base method for creating a hash table entry.  */
411 extern struct bfd_hash_entry *bfd_hash_newfunc
412   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
413            const char *));
414
415 /* Grab some space for a hash table entry.  */
416 extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
417                                       unsigned int));
418
419 /* Traverse a hash table in a random order, calling a function on each
420    element.  If the function returns false, the traversal stops.  The
421    INFO argument is passed to the function.  */
422 extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
423                                        boolean (*) (struct bfd_hash_entry *,
424                                                     PTR),
425                                        PTR info));
426 \f
427 /* Semi-portable string concatenation in cpp.
428    The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
429    The problem is, "32_" is not a valid preprocessing token, and we don't
430    want extra underscores (e.g., "nlm_32_").  The XCAT2 macro will cause the
431    inner CAT macros to be evaluated first, producing still-valid pp-tokens.
432    Then the final concatenation can be done.  (Sigh.)  */
433 #ifndef CAT
434 #ifdef SABER
435 #define CAT(a,b)        a##b
436 #define CAT3(a,b,c)     a##b##c
437 #define CAT4(a,b,c,d)   a##b##c##d
438 #else
439 #if defined(__STDC__) || defined(ALMOST_STDC)
440 #define CAT(a,b) a##b
441 #define CAT3(a,b,c) a##b##c
442 #define XCAT2(a,b)      CAT(a,b)
443 #define CAT4(a,b,c,d)   XCAT2(CAT(a,b),CAT(c,d))
444 #else
445 #define CAT(a,b) a/**/b
446 #define CAT3(a,b,c) a/**/b/**/c
447 #define CAT4(a,b,c,d)   a/**/b/**/c/**/d
448 #endif
449 #endif
450 #endif
451
452 #define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
453 \f
454 /* User program access to BFD facilities */
455
456 /* Direct I/O routines, for programs which know more about the object
457    file than BFD does.  Use higher level routines if possible.  */
458
459 extern bfd_size_type bfd_read
460   PARAMS ((PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
461 extern bfd_size_type bfd_write
462   PARAMS ((const PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
463 extern int bfd_seek PARAMS ((bfd *abfd, file_ptr fp, int direction));
464 extern long bfd_tell PARAMS ((bfd *abfd));
465 extern int bfd_flush PARAMS ((bfd *abfd));
466 extern int bfd_stat PARAMS ((bfd *abfd, struct stat *));
467
468
469 /* Cast from const char * to char * so that caller can assign to
470    a char * without a warning.  */
471 #define bfd_get_filename(abfd) ((char *) (abfd)->filename)
472 #define bfd_get_cacheable(abfd) ((abfd)->cacheable)
473 #define bfd_get_format(abfd) ((abfd)->format)
474 #define bfd_get_target(abfd) ((abfd)->xvec->name)
475 #define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
476 #define bfd_big_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_BIG)
477 #define bfd_little_endian(abfd) ((abfd)->xvec->byteorder == BFD_ENDIAN_LITTLE)
478 #define bfd_header_big_endian(abfd) \
479   ((abfd)->xvec->header_byteorder == BFD_ENDIAN_BIG)
480 #define bfd_header_little_endian(abfd) \
481   ((abfd)->xvec->header_byteorder == BFD_ENDIAN_LITTLE)
482 #define bfd_get_file_flags(abfd) ((abfd)->flags)
483 #define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
484 #define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
485 #define bfd_my_archive(abfd) ((abfd)->my_archive)
486 #define bfd_has_map(abfd) ((abfd)->has_armap)
487
488 #define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
489 #define bfd_usrdata(abfd) ((abfd)->usrdata)
490
491 #define bfd_get_start_address(abfd) ((abfd)->start_address)
492 #define bfd_get_symcount(abfd) ((abfd)->symcount)
493 #define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
494 #define bfd_count_sections(abfd) ((abfd)->section_count)
495
496 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
497
498 #define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean)(bool)), true)
499
500 extern boolean bfd_record_phdr
501   PARAMS ((bfd *, unsigned long, boolean, flagword, boolean, bfd_vma,
502            boolean, boolean, unsigned int, struct sec **));
503
504 /* Byte swapping routines.  */
505
506 bfd_vma         bfd_getb64         PARAMS ((const unsigned char *));
507 bfd_vma         bfd_getl64         PARAMS ((const unsigned char *));
508 bfd_signed_vma  bfd_getb_signed_64 PARAMS ((const unsigned char *));
509 bfd_signed_vma  bfd_getl_signed_64 PARAMS ((const unsigned char *));
510 bfd_vma         bfd_getb32         PARAMS ((const unsigned char *));
511 bfd_vma         bfd_getl32         PARAMS ((const unsigned char *));
512 bfd_signed_vma  bfd_getb_signed_32 PARAMS ((const unsigned char *));
513 bfd_signed_vma  bfd_getl_signed_32 PARAMS ((const unsigned char *));
514 bfd_vma         bfd_getb16         PARAMS ((const unsigned char *));
515 bfd_vma         bfd_getl16         PARAMS ((const unsigned char *));
516 bfd_signed_vma  bfd_getb_signed_16 PARAMS ((const unsigned char *));
517 bfd_signed_vma  bfd_getl_signed_16 PARAMS ((const unsigned char *));
518 void            bfd_putb64         PARAMS ((bfd_vma, unsigned char *));
519 void            bfd_putl64         PARAMS ((bfd_vma, unsigned char *));
520 void            bfd_putb32         PARAMS ((bfd_vma, unsigned char *));
521 void            bfd_putl32         PARAMS ((bfd_vma, unsigned char *));
522 void            bfd_putb16         PARAMS ((bfd_vma, unsigned char *));
523 void            bfd_putl16         PARAMS ((bfd_vma, unsigned char *));
524 \f
525 /* Externally visible ECOFF routines.  */
526
527 #if defined(__STDC__) || defined(ALMOST_STDC)
528 struct ecoff_debug_info;
529 struct ecoff_debug_swap;
530 struct ecoff_extr;
531 struct symbol_cache_entry;
532 struct bfd_link_info;
533 struct bfd_link_hash_entry;
534 #endif
535 extern bfd_vma bfd_ecoff_get_gp_value PARAMS ((bfd * abfd));
536 extern boolean bfd_ecoff_set_gp_value PARAMS ((bfd *abfd, bfd_vma gp_value));
537 extern boolean bfd_ecoff_set_regmasks
538   PARAMS ((bfd *abfd, unsigned long gprmask, unsigned long fprmask,
539            unsigned long *cprmask));
540 extern PTR bfd_ecoff_debug_init
541   PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
542            const struct ecoff_debug_swap *output_swap,
543            struct bfd_link_info *));
544 extern void bfd_ecoff_debug_free
545   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
546            const struct ecoff_debug_swap *output_swap,
547            struct bfd_link_info *));
548 extern boolean bfd_ecoff_debug_accumulate
549   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
550            const struct ecoff_debug_swap *output_swap,
551            bfd *input_bfd, struct ecoff_debug_info *input_debug,
552            const struct ecoff_debug_swap *input_swap,
553            struct bfd_link_info *));
554 extern boolean bfd_ecoff_debug_accumulate_other
555   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
556            const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
557            struct bfd_link_info *));
558 extern boolean bfd_ecoff_debug_externals
559   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
560            const struct ecoff_debug_swap *swap,
561            boolean relocateable,
562            boolean (*get_extr) (struct symbol_cache_entry *,
563                                 struct ecoff_extr *),
564            void (*set_index) (struct symbol_cache_entry *,
565                               bfd_size_type)));
566 extern boolean bfd_ecoff_debug_one_external
567   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
568            const struct ecoff_debug_swap *swap,
569            const char *name, struct ecoff_extr *esym));
570 extern bfd_size_type bfd_ecoff_debug_size
571   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
572            const struct ecoff_debug_swap *swap));
573 extern boolean bfd_ecoff_write_debug
574   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
575            const struct ecoff_debug_swap *swap, file_ptr where));
576 extern boolean bfd_ecoff_write_accumulated_debug
577   PARAMS ((PTR handle, bfd *abfd, struct ecoff_debug_info *debug,
578            const struct ecoff_debug_swap *swap,
579            struct bfd_link_info *info, file_ptr where));
580 extern boolean bfd_mips_ecoff_create_embedded_relocs
581   PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
582            char **));
583
584 /* Externally visible ELF routines.  */
585
586 struct bfd_link_needed_list
587 {
588   struct bfd_link_needed_list *next;
589   bfd *by;
590   const char *name;
591 };
592
593 extern boolean bfd_elf32_record_link_assignment
594   PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
595 extern boolean bfd_elf64_record_link_assignment
596   PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
597 extern struct bfd_link_needed_list *bfd_elf_get_needed_list
598   PARAMS ((bfd *, struct bfd_link_info *));
599 extern boolean bfd_elf32_size_dynamic_sections
600   PARAMS ((bfd *, const char *, const char *, boolean,
601            struct bfd_link_info *, struct sec **));
602 extern boolean bfd_elf64_size_dynamic_sections
603   PARAMS ((bfd *, const char *, const char *, boolean,
604            struct bfd_link_info *, struct sec **));
605 extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *));
606 extern const char *bfd_elf_get_dt_soname PARAMS ((bfd *));
607
608 /* SunOS shared library support routines for the linker.  */
609
610 extern struct bfd_link_needed_list *bfd_sunos_get_needed_list
611   PARAMS ((bfd *, struct bfd_link_info *));
612 extern boolean bfd_sunos_record_link_assignment
613   PARAMS ((bfd *, struct bfd_link_info *, const char *));
614 extern boolean bfd_sunos_size_dynamic_sections
615   PARAMS ((bfd *, struct bfd_link_info *, struct sec **, struct sec **,
616            struct sec **));
617
618 /* Linux shared library support routines for the linker.  */
619
620 extern boolean bfd_i386linux_size_dynamic_sections
621   PARAMS ((bfd *, struct bfd_link_info *));
622 extern boolean bfd_m68klinux_size_dynamic_sections
623   PARAMS ((bfd *, struct bfd_link_info *));
624
625 /* mmap hacks */
626
627 struct _bfd_window_internal;
628 typedef struct _bfd_window_internal bfd_window_internal;
629
630 typedef struct _bfd_window {
631   /* What the user asked for.  */
632   PTR data;
633   bfd_size_type size;
634   /* The actual window used by BFD.  Small user-requested read-only
635      regions sharing a page may share a single window into the object
636      file.  Read-write versions shouldn't until I've fixed things to
637      keep track of which portions have been claimed by the
638      application; don't want to give the same region back when the
639      application wants two writable copies!  */
640   struct _bfd_window_internal *i;
641 } bfd_window;
642
643 extern void bfd_init_window PARAMS ((bfd_window *));
644 extern void bfd_free_window PARAMS ((bfd_window *));
645 extern boolean bfd_get_file_window
646   PARAMS ((bfd *, file_ptr, bfd_size_type, bfd_window *, boolean));
647
648 /* XCOFF support routines for the linker.  */
649
650 extern boolean bfd_xcoff_link_record_set
651   PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
652            bfd_size_type));
653 extern boolean bfd_xcoff_import_symbol
654   PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
655            bfd_vma, const char *, const char *, const char *));
656 extern boolean bfd_xcoff_export_symbol
657   PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
658            boolean));
659 extern boolean bfd_xcoff_link_count_reloc
660   PARAMS ((bfd *, struct bfd_link_info *, const char *));
661 extern boolean bfd_xcoff_record_link_assignment
662   PARAMS ((bfd *, struct bfd_link_info *, const char *));
663 extern boolean bfd_xcoff_size_dynamic_sections
664   PARAMS ((bfd *, struct bfd_link_info *, const char *, const char *,
665            unsigned long, unsigned long, unsigned long, boolean,
666            int, boolean, boolean, struct sec **));
667
668 /* And more from the source.  */