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