* bfd-in.h: Add extern "C" if __cplusplus.
[external/binutils.git] / bfd / bfd-in.h
1 /* Main header file for the bfd library -- portable access to object files.
2    Copyright 1990, 1991, 1992, 1993, 1994, 1995 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
58 #if BFD_ARCH_SIZE >= 64
59 #define BFD64
60 #endif
61
62 #ifndef INLINE
63 #if __GNUC__ >= 2
64 #define INLINE __inline__
65 #else
66 #define INLINE
67 #endif
68 #endif
69
70 /* 64-bit type definition (if any) from bfd's sysdep.h goes here */
71
72
73 /* forward declaration */
74 typedef struct _bfd bfd;
75
76 /* To squelch erroneous compiler warnings ("illegal pointer
77    combination") from the SVR3 compiler, we would like to typedef
78    boolean to int (it doesn't like functions which return boolean.
79    Making sure they are never implicitly declared to return int
80    doesn't seem to help).  But this file is not configured based on
81    the host.  */
82 /* General rules: functions which are boolean return true on success
83    and false on failure (unless they're a predicate).   -- bfd.doc */
84 /* I'm sure this is going to break something and someone is going to
85    force me to change it. */
86 /* typedef enum boolean {false, true} boolean; */
87 /* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h>  -fnf */
88 /* It gets worse if the host also defines a true/false enum... -sts */
89 /* And even worse if your compiler has built-in boolean types... -law */
90 #if defined (__GNUG__) && (__GNUC_MINOR__ > 5)
91 #define TRUE_FALSE_ALREADY_DEFINED
92 #endif
93 #ifndef TRUE_FALSE_ALREADY_DEFINED
94 typedef enum bfd_boolean {false, true} boolean;
95 #define BFD_TRUE_FALSE
96 #else
97 /* Use enum names that will appear nowhere else.  */
98 typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;
99 #endif
100
101 /* A pointer to a position in a file.  */
102 /* FIXME:  This should be using off_t from <sys/types.h>.
103    For now, try to avoid breaking stuff by not including <sys/types.h> here.
104    This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
105    Probably the best long-term answer is to avoid using file_ptr AND off_t 
106    in this header file, and to handle this in the BFD implementation
107    rather than in its interface.  */
108 /* typedef off_t        file_ptr; */
109 typedef long int file_ptr;
110
111 /* Support for different sizes of target format ints and addresses.
112    If the host implements 64-bit values, it defines BFD_HOST_64_BIT to
113    be the appropriate type.  Otherwise, this code will fall back on
114    gcc's "long long" type if gcc is being used.  BFD_HOST_64_BIT must
115    be defined in such a way as to be a valid type name by itself or
116    with "unsigned" prefixed.  It should be a signed type by itself.
117
118    If neither is the case, then compilation will fail if 64-bit
119    targets are requested.  If you don't request any 64-bit targets,
120    you should be safe. */
121
122 #ifdef  BFD64
123
124 #if defined (__GNUC__) && !defined (BFD_HOST_64_BIT)
125 #define BFD_HOST_64_BIT long long
126 typedef BFD_HOST_64_BIT int64_type;
127 typedef unsigned BFD_HOST_64_BIT uint64_type;
128 #endif
129
130 #if !defined (uint64_type) && defined (__GNUC__)
131 #define uint64_type unsigned long long
132 #define int64_type long long
133 #endif
134 #ifndef uint64_typeLOW
135 #define uint64_typeLOW(x) ((unsigned long)(((x) & 0xffffffff)))
136 #define uint64_typeHIGH(x) ((unsigned long)(((x) >> 32) & 0xffffffff))
137 #endif
138
139 typedef unsigned BFD_HOST_64_BIT bfd_vma;
140 typedef BFD_HOST_64_BIT bfd_signed_vma;
141 typedef unsigned BFD_HOST_64_BIT bfd_size_type;
142 typedef unsigned BFD_HOST_64_BIT symvalue;
143 #ifndef fprintf_vma
144 #define fprintf_vma(s,x) \
145                 fprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
146 #define sprintf_vma(s,x) \
147                 sprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
148 #endif
149 #else /* not BFD64  */
150
151 /* Represent a target address.  Also used as a generic unsigned type
152    which is guaranteed to be big enough to hold any arithmetic types
153    we need to deal with.  */
154 typedef unsigned long bfd_vma;
155
156 /* A generic signed type which is guaranteed to be big enough to hold any
157    arithmetic types we need to deal with.  Can be assumed to be compatible
158    with bfd_vma in the same way that signed and unsigned ints are compatible
159    (as parameters, in assignment, etc).  */
160 typedef long bfd_signed_vma;
161
162 typedef unsigned long symvalue;
163 typedef unsigned long bfd_size_type;
164
165 /* Print a bfd_vma x on stream s.  */
166 #define fprintf_vma(s,x) fprintf(s, "%08lx", x)
167 #define sprintf_vma(s,x) sprintf(s, "%08lx", x)
168 #endif /* not BFD64  */
169 #define printf_vma(x) fprintf_vma(stdout,x)
170
171 typedef unsigned int flagword;  /* 32 bits of flags */
172 typedef unsigned char bfd_byte;
173 \f
174 /** File formats */
175
176 typedef enum bfd_format {
177               bfd_unknown = 0,  /* file format is unknown */
178               bfd_object,       /* linker/assember/compiler output */
179               bfd_archive,      /* object archive file */
180               bfd_core,         /* core dump */
181               bfd_type_end}     /* marks the end; don't use it! */
182          bfd_format;
183
184 /* Values that may appear in the flags field of a BFD.  These also
185    appear in the object_flags field of the bfd_target structure, where
186    they indicate the set of flags used by that backend (not all flags
187    are meaningful for all object file formats) (FIXME: at the moment,
188    the object_flags values have mostly just been copied from backend
189    to another, and are not necessarily correct).  */
190
191 /* No flags.  */
192 #define NO_FLAGS        0x00
193
194 /* BFD contains relocation entries.  */
195 #define HAS_RELOC       0x01
196
197 /* BFD is directly executable.  */
198 #define EXEC_P          0x02
199
200 /* BFD has line number information (basically used for F_LNNO in a
201    COFF header).  */
202 #define HAS_LINENO      0x04
203
204 /* BFD has debugging information.  */
205 #define HAS_DEBUG       0x08
206
207 /* BFD has symbols.  */
208 #define HAS_SYMS        0x10
209
210 /* BFD has local symbols (basically used for F_LSYMS in a COFF
211    header).  */
212 #define HAS_LOCALS      0x20
213
214 /* BFD is a dynamic object.  */
215 #define DYNAMIC         0x40
216
217 /* Text section is write protected (if D_PAGED is not set, this is
218    like an a.out NMAGIC file) (the linker sets this by default, but
219    clears it for -r or -N).  */
220 #define WP_TEXT         0x80
221
222 /* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
223    linker sets this by default, but clears it for -r or -n or -N).  */
224 #define D_PAGED         0x100
225
226 /* BFD is relaxable (this means that bfd_relax_section may be able to
227    do something) (sometimes bfd_relax_section can do something even if
228    this is not set).  */
229 #define BFD_IS_RELAXABLE 0x200
230
231 /* This may be set before writing out a BFD to request using a
232    traditional format.  For example, this is used to request that when
233    writing out an a.out object the symbols not be hashed to eliminate
234    duplicates.  */
235 #define BFD_TRADITIONAL_FORMAT 0x400
236 \f
237 /* symbols and relocation */
238
239 /* A count of carsyms (canonical archive symbols).  */
240 typedef unsigned long symindex;
241
242 /* How to perform a relocation.  */
243 typedef const struct reloc_howto_struct reloc_howto_type;
244
245 #define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
246
247 /* General purpose part of a symbol X;
248    target specific parts are in libcoff.h, libaout.h, etc.  */
249
250 #define bfd_get_section(x) ((x)->section)
251 #define bfd_get_output_section(x) ((x)->section->output_section)
252 #define bfd_set_section(x,y) ((x)->section) = (y)
253 #define bfd_asymbol_base(x) ((x)->section->vma)
254 #define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
255 #define bfd_asymbol_name(x) ((x)->name)
256 /*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
257 #define bfd_asymbol_bfd(x) ((x)->the_bfd)
258 #define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
259
260 /* A canonical archive symbol.  */
261 /* This is a type pun with struct ranlib on purpose! */
262 typedef struct carsym {
263   char *name;
264   file_ptr file_offset;         /* look here to find the file */
265 } carsym;                       /* to make these you call a carsymogen */
266
267   
268 /* Used in generating armaps (archive tables of contents).
269    Perhaps just a forward definition would do? */
270 struct orl {                    /* output ranlib */
271   char **name;                  /* symbol name */ 
272   file_ptr pos;                 /* bfd* or file position */
273   int namidx;                   /* index into string table */
274 };
275 \f
276
277 /* Linenumber stuff */
278 typedef struct lineno_cache_entry {
279   unsigned int line_number;     /* Linenumber from start of function*/  
280   union {
281     struct symbol_cache_entry *sym; /* Function name */
282     unsigned long offset;       /* Offset into section */
283   } u;
284 } alent;
285 \f
286 /* object and core file sections */
287
288 #define align_power(addr, align)        \
289         ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
290
291 typedef struct sec *sec_ptr;
292
293 #define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
294 #define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
295 #define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
296 #define bfd_section_name(bfd, ptr) ((ptr)->name)
297 #define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
298 #define bfd_section_vma(bfd, ptr) ((ptr)->vma)
299 #define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
300 #define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
301 #define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
302
303 #define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
304
305 #define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = (boolean)true), true)
306 #define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
307 #define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
308
309 typedef struct stat stat_type; 
310 \f
311 typedef enum bfd_print_symbol
312
313   bfd_print_symbol_name,
314   bfd_print_symbol_more,
315   bfd_print_symbol_all
316 } bfd_print_symbol_type;
317     
318 /* Information about a symbol that nm needs.  */
319
320 typedef struct _symbol_info
321 {
322   symvalue value;
323   char type;
324   CONST char *name;            /* Symbol name.  */
325   char stab_other;             /* Unused. */
326   short stab_desc;             /* Info for N_TYPE.  */
327   CONST char *stab_name;
328 } symbol_info;
329 \f
330 /* Hash table routines.  There is no way to free up a hash table.  */
331
332 /* An element in the hash table.  Most uses will actually use a larger
333    structure, and an instance of this will be the first field.  */
334
335 struct bfd_hash_entry
336 {
337   /* Next entry for this hash code.  */
338   struct bfd_hash_entry *next;
339   /* String being hashed.  */
340   const char *string;
341   /* Hash code.  This is the full hash code, not the index into the
342      table.  */
343   unsigned long hash;
344 };
345
346 /* A hash table.  */
347
348 struct bfd_hash_table
349 {
350   /* The hash array.  */
351   struct bfd_hash_entry **table;
352   /* The number of slots in the hash table.  */
353   unsigned int size;
354   /* A function used to create new elements in the hash table.  The
355      first entry is itself a pointer to an element.  When this
356      function is first invoked, this pointer will be NULL.  However,
357      having the pointer permits a hierarchy of method functions to be
358      built each of which calls the function in the superclass.  Thus
359      each function should be written to allocate a new block of memory
360      only if the argument is NULL.  */
361   struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
362                                              struct bfd_hash_table *,
363                                              const char *));
364   /* An obstack for this hash table.  */
365   struct obstack memory;
366 };
367
368 /* Initialize a hash table.  */
369 extern boolean bfd_hash_table_init
370   PARAMS ((struct bfd_hash_table *,
371            struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
372                                        struct bfd_hash_table *,
373                                        const char *)));
374
375 /* Initialize a hash table specifying a size.  */
376 extern boolean bfd_hash_table_init_n
377   PARAMS ((struct bfd_hash_table *,
378            struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
379                                        struct bfd_hash_table *,
380                                        const char *),
381            unsigned int size));
382
383 /* Free up a hash table.  */
384 extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
385
386 /* Look up a string in a hash table.  If CREATE is true, a new entry
387    will be created for this string if one does not already exist.  The
388    COPY argument must be true if this routine should copy the string
389    into newly allocated memory when adding an entry.  */
390 extern struct bfd_hash_entry *bfd_hash_lookup
391   PARAMS ((struct bfd_hash_table *, const char *, boolean create,
392            boolean copy));
393
394 /* Base method for creating a hash table entry.  */
395 extern struct bfd_hash_entry *bfd_hash_newfunc
396   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
397            const char *));
398
399 /* Grab some space for a hash table entry.  */
400 extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
401                                       unsigned int));
402
403 /* Traverse a hash table in a random order, calling a function on each
404    element.  If the function returns false, the traversal stops.  The
405    INFO argument is passed to the function.  */
406 extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
407                                        boolean (*) (struct bfd_hash_entry *,
408                                                     PTR),
409                                        PTR info));
410 \f
411 /* Semi-portable string concatenation in cpp.
412    The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
413    The problem is, "32_" is not a valid preprocessing token, and we don't
414    want extra underscores (e.g., "nlm_32_").  The XCAT2 macro will cause the
415    inner CAT macros to be evaluated first, producing still-valid pp-tokens.
416    Then the final concatenation can be done.  (Sigh.)  */
417 #ifndef CAT
418 #ifdef SABER
419 #define CAT(a,b)        a##b
420 #define CAT3(a,b,c)     a##b##c
421 #define CAT4(a,b,c,d)   a##b##c##d
422 #else
423 #if defined(__STDC__) || defined(ALMOST_STDC)
424 #define CAT(a,b) a##b
425 #define CAT3(a,b,c) a##b##c
426 #define XCAT2(a,b)      CAT(a,b)
427 #define CAT4(a,b,c,d)   XCAT2(CAT(a,b),CAT(c,d))
428 #else
429 #define CAT(a,b) a/**/b
430 #define CAT3(a,b,c) a/**/b/**/c
431 #define CAT4(a,b,c,d)   a/**/b/**/c/**/d
432 #endif
433 #endif
434 #endif
435
436 #define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
437 \f
438 /* User program access to BFD facilities */
439
440 /* Direct I/O routines, for programs which know more about the object
441    file than BFD does.  Use higher level routines if possible.  */
442
443 extern bfd_size_type bfd_read
444   PARAMS ((PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
445 extern bfd_size_type bfd_write
446   PARAMS ((const PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
447 extern int bfd_seek PARAMS ((bfd *abfd, file_ptr fp, int direction));
448 extern long bfd_tell PARAMS ((bfd *abfd));
449 extern int bfd_flush PARAMS ((bfd *abfd));
450 extern int bfd_stat PARAMS ((bfd *abfd, struct stat *));
451
452 /* PE STUFF */
453 /* Also define some types which are used within bfdlink.h for the
454    bfd_link_info struct.  These are not defined in bfdlink.h for a reason.  
455    When the link_info data is passed to bfd from ld, it is copied into 
456    extern variables defined in internal.h.  The type class for these must
457    be available to any thing that includes internal.h.  When internal.h is
458    included, it is always preceeded by an include on this file.  If I leave the
459    type definitions in bfdlink.h, then I must include that file when ever
460    I include internal.h, and this is not always a good thing */
461
462 /* These are the different types of subsystems to be used when linking for
463    Windows NT.  This information is passed in as an input parameter (default
464    is console) and ultimately ends up in the optional header data */
465
466 #define BFD_PE_NATIVE  1        /* image doesn't require a subsystem */
467 #define BFD_PE_WINDOWS 2        /* image runs in the Windows GUI subsystem */
468 #define BFD_PE_CONSOLE 3        /* image runs in the Windows CUI subsystem */
469 #define BFD_PE_OS2     5        /* image runs in the OS/2 character subsystem */
470 #define BFD_PE_POSIX   7        /* image runs in the posix character subsystem */
471
472 /* The NT optional header file allows input of the stack and heap reserve
473    and commit size.  This data may be input on the command line and will
474    end up in the optional header.  Default sizes are provided. */
475
476 typedef struct 
477 {
478   boolean defined;
479   bfd_vma value;
480 } bfd_link_pe_info_dval ;
481
482 typedef struct _bfd_link_pe_info
483 {
484   bfd_link_pe_info_dval dll;
485   bfd_link_pe_info_dval file_alignment;
486   bfd_link_pe_info_dval heap_commit;
487   bfd_link_pe_info_dval heap_reserve;
488   bfd_link_pe_info_dval image_base;
489   bfd_link_pe_info_dval major_image_version;
490   bfd_link_pe_info_dval major_os_version;
491   bfd_link_pe_info_dval major_subsystem_version;
492   bfd_link_pe_info_dval minor_image_version;
493   bfd_link_pe_info_dval minor_os_version;
494   bfd_link_pe_info_dval minor_subsystem_version;
495   bfd_link_pe_info_dval section_alignment;
496   bfd_link_pe_info_dval stack_commit;
497   bfd_link_pe_info_dval stack_reserve;
498   bfd_link_pe_info_dval subsystem;
499 }  bfd_link_pe_info;
500
501 /* END OF PE STUFF */
502
503
504
505 /* Cast from const char * to char * so that caller can assign to
506    a char * without a warning.  */
507 #define bfd_get_filename(abfd) ((char *) (abfd)->filename)
508 #define bfd_get_cacheable(abfd) ((abfd)->cacheable)
509 #define bfd_get_format(abfd) ((abfd)->format)
510 #define bfd_get_target(abfd) ((abfd)->xvec->name)
511 #define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
512 #define bfd_get_file_flags(abfd) ((abfd)->flags)
513 #define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
514 #define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
515 #define bfd_my_archive(abfd) ((abfd)->my_archive)
516 #define bfd_has_map(abfd) ((abfd)->has_armap)
517
518 #define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
519 #define bfd_usrdata(abfd) ((abfd)->usrdata)
520
521 #define bfd_get_start_address(abfd) ((abfd)->start_address)
522 #define bfd_get_symcount(abfd) ((abfd)->symcount)
523 #define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
524 #define bfd_count_sections(abfd) ((abfd)->section_count)
525
526 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
527
528 #define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean)(bool)), true)
529
530 /* Byte swapping routines.  */
531
532 bfd_vma         bfd_getb64         PARAMS ((const unsigned char *));
533 bfd_vma         bfd_getl64         PARAMS ((const unsigned char *));
534 bfd_signed_vma  bfd_getb_signed_64 PARAMS ((const unsigned char *));
535 bfd_signed_vma  bfd_getl_signed_64 PARAMS ((const unsigned char *));
536 bfd_vma         bfd_getb32         PARAMS ((const unsigned char *));
537 bfd_vma         bfd_getl32         PARAMS ((const unsigned char *));
538 bfd_signed_vma  bfd_getb_signed_32 PARAMS ((const unsigned char *));
539 bfd_signed_vma  bfd_getl_signed_32 PARAMS ((const unsigned char *));
540 bfd_vma         bfd_getb16         PARAMS ((const unsigned char *));
541 bfd_vma         bfd_getl16         PARAMS ((const unsigned char *));
542 bfd_signed_vma  bfd_getb_signed_16 PARAMS ((const unsigned char *));
543 bfd_signed_vma  bfd_getl_signed_16 PARAMS ((const unsigned char *));
544 void            bfd_putb64         PARAMS ((bfd_vma, unsigned char *));
545 void            bfd_putl64         PARAMS ((bfd_vma, unsigned char *));
546 void            bfd_putb32         PARAMS ((bfd_vma, unsigned char *));
547 void            bfd_putl32         PARAMS ((bfd_vma, unsigned char *));
548 void            bfd_putb16         PARAMS ((bfd_vma, unsigned char *));
549 void            bfd_putl16         PARAMS ((bfd_vma, unsigned char *));
550 \f
551 /* Externally visible ECOFF routines.  */
552
553 #if defined(__STDC__) || defined(ALMOST_STDC)
554 struct ecoff_debug_info;
555 struct ecoff_debug_swap;
556 struct ecoff_extr;
557 struct symbol_cache_entry;
558 struct bfd_link_info;
559 #endif
560 extern bfd_vma bfd_ecoff_get_gp_value PARAMS ((bfd * abfd));
561 extern boolean bfd_ecoff_set_gp_value PARAMS ((bfd *abfd, bfd_vma gp_value));
562 extern boolean bfd_ecoff_set_regmasks
563   PARAMS ((bfd *abfd, unsigned long gprmask, unsigned long fprmask,
564            unsigned long *cprmask));
565 extern PTR bfd_ecoff_debug_init
566   PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
567            const struct ecoff_debug_swap *output_swap,
568            struct bfd_link_info *));
569 extern void bfd_ecoff_debug_free
570   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
571            const struct ecoff_debug_swap *output_swap,
572            struct bfd_link_info *));
573 extern boolean bfd_ecoff_debug_accumulate
574   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
575            const struct ecoff_debug_swap *output_swap,
576            bfd *input_bfd, struct ecoff_debug_info *input_debug,
577            const struct ecoff_debug_swap *input_swap,
578            struct bfd_link_info *));
579 extern boolean bfd_ecoff_debug_accumulate_other
580   PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
581            const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
582            struct bfd_link_info *));
583 extern boolean bfd_ecoff_debug_externals
584   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
585            const struct ecoff_debug_swap *swap,
586            boolean relocateable,
587            boolean (*get_extr) (struct symbol_cache_entry *,
588                                 struct ecoff_extr *),
589            void (*set_index) (struct symbol_cache_entry *,
590                               bfd_size_type)));
591 extern boolean bfd_ecoff_debug_one_external
592   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
593            const struct ecoff_debug_swap *swap,
594            const char *name, struct ecoff_extr *esym));
595 extern bfd_size_type bfd_ecoff_debug_size
596   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
597            const struct ecoff_debug_swap *swap));
598 extern boolean bfd_ecoff_write_debug
599   PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
600            const struct ecoff_debug_swap *swap, file_ptr where));
601 extern boolean bfd_ecoff_write_accumulated_debug
602   PARAMS ((PTR handle, bfd *abfd, struct ecoff_debug_info *debug,
603            const struct ecoff_debug_swap *swap,
604            struct bfd_link_info *info, file_ptr where));
605 extern boolean bfd_mips_ecoff_create_embedded_relocs
606   PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
607            char **));
608
609 /* Externally visible ELF routines.  */
610
611 extern boolean bfd_elf32_record_link_assignment
612   PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
613 extern boolean bfd_elf64_record_link_assignment
614   PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
615 struct bfd_elf_link_needed_list
616 {
617   struct bfd_elf_link_needed_list *next;
618   bfd *by;
619   const char *name;
620 };
621 extern struct bfd_elf_link_needed_list *bfd_elf_get_needed_list
622   PARAMS ((bfd *, struct bfd_link_info *));
623 extern boolean bfd_elf32_size_dynamic_sections
624   PARAMS ((bfd *, const char *, const char *, boolean,
625            struct bfd_link_info *, struct sec **));
626 extern boolean bfd_elf64_size_dynamic_sections
627   PARAMS ((bfd *, const char *, const char *, boolean,
628            struct bfd_link_info *, struct sec **));
629 extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *));
630
631 /* SunOS shared library support routines for the linker.  */
632
633 extern boolean bfd_sunos_record_link_assignment
634   PARAMS ((bfd *, struct bfd_link_info *, const char *));
635 extern boolean bfd_sunos_size_dynamic_sections
636   PARAMS ((bfd *, struct bfd_link_info *, struct sec **, struct sec **,
637            struct sec **));
638
639 /* Linux shared library support routines for the linker.  */
640
641 extern boolean bfd_linux_size_dynamic_sections
642   PARAMS ((bfd *, struct bfd_link_info *));
643
644 /* And more from the source.  */