Changes for mmap; details in change log.
[deliverable/binutils-gdb.git] / bfd / bfd-in.h
CommitLineData
00539ee3 1/* Main header file for the bfd library -- portable access to object files.
3b1f83ad 2 Copyright 1990, 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
63ffe5ef
SC
3 Contributed by Cygnus Support.
4
1fa5371e
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
63ffe5ef
SC
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
815179af 23Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
63ffe5ef
SC
24
25/* bfd.h -- The only header file required by users of the bfd library
26
00539ee3
JG
27The bfd.h file is generated from bfd-in.h and various .c files; if you
28change it, your changes will probably be lost.
63ffe5ef
SC
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
815179af
ILT
47#ifdef __cplusplus
48extern "C" {
49#endif
50
63ffe5ef
SC
51#include "ansidecl.h"
52#include "obstack.h"
53
9deaaaf1 54/* These two lines get substitutions done by commands in Makefile.in. */
b7577823 55#define BFD_VERSION "@VERSION@"
034a8a56 56#define BFD_ARCH_SIZE @WORDSIZE@
b7577823 57#define BFD_HOST_64BIT_LONG @BFD_HOST_64BIT_LONG@
034a8a56
KR
58
59#if BFD_ARCH_SIZE >= 64
60#define BFD64
61#endif
62
1fa5371e
KR
63#ifndef INLINE
64#if __GNUC__ >= 2
65#define INLINE __inline__
66#else
67#define INLINE
68#endif
69#endif
70
63ffe5ef
SC
71/* forward declaration */
72typedef struct _bfd bfd;
73
034a8a56
KR
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. */
63ffe5ef
SC
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. */
f004165e
JG
84/* typedef enum boolean {false, true} boolean; */
85/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
442da995 86/* It gets worse if the host also defines a true/false enum... -sts */
3b1f83ad
JL
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
54406786
ILT
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 */
442da995 96#ifndef TRUE_FALSE_ALREADY_DEFINED
f004165e 97typedef enum bfd_boolean {false, true} boolean;
442da995
SS
98#define BFD_TRUE_FALSE
99#else
e0151f38
SS
100/* Use enum names that will appear nowhere else. */
101typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;
442da995 102#endif
63ffe5ef 103
00539ee3
JG
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; */
112typedef long int file_ptr;
63ffe5ef 113
3b1f83ad 114/* Support for different sizes of target format ints and addresses.
b7577823
ILT
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. */
034a8a56 119
b7577823 120#ifdef BFD64
034a8a56 121
b7577823
ILT
122#ifndef BFD_HOST_64_BIT
123#if BFD_HOST_64BIT_LONG
124#define BFD_HOST_64_BIT long
125#else
126#ifdef __GNUC__
9deaaaf1 127#define BFD_HOST_64_BIT long long
b7577823
ILT
128#endif /* defined (__GNUC__) */
129#endif /* ! BFD_HOST_64BIT_LONG */
130#endif /* ! defined (BFD_HOST_64_BIT) */
1fa5371e 131
9deaaaf1
ILT
132typedef unsigned BFD_HOST_64_BIT bfd_vma;
133typedef BFD_HOST_64_BIT bfd_signed_vma;
134typedef unsigned BFD_HOST_64_BIT bfd_size_type;
135typedef unsigned BFD_HOST_64_BIT symvalue;
b7577823 136
d110544c 137#ifndef fprintf_vma
b7577823
ILT
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))
63ffe5ef 144#define fprintf_vma(s,x) \
b7577823 145 fprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
1fa5371e 146#define sprintf_vma(s,x) \
b7577823 147 sprintf ((s), "%08lx%08lx", _bfd_int64_high (x), _bfd_int64_low (x))
d110544c 148#endif
b7577823
ILT
149#endif
150
034a8a56 151#else /* not BFD64 */
14e3c2e4
JK
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. */
63ffe5ef 156typedef unsigned long bfd_vma;
14e3c2e4
JK
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). */
162typedef long bfd_signed_vma;
163
63ffe5ef
SC
164typedef unsigned long symvalue;
165typedef unsigned long bfd_size_type;
14e3c2e4
JK
166
167/* Print a bfd_vma x on stream s. */
63ffe5ef 168#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
1fa5371e 169#define sprintf_vma(s,x) sprintf(s, "%08lx", x)
034a8a56 170#endif /* not BFD64 */
e98e6ec1 171#define printf_vma(x) fprintf_vma(stdout,x)
63ffe5ef
SC
172
173typedef unsigned int flagword; /* 32 bits of flags */
3b1f83ad 174typedef unsigned char bfd_byte;
63ffe5ef
SC
175\f
176/** File formats */
177
178typedef 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
8d12f138
ILT
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. */
294eaca4 194#define NO_FLAGS 0x00
8d12f138
ILT
195
196/* BFD contains relocation entries. */
294eaca4 197#define HAS_RELOC 0x01
8d12f138
ILT
198
199/* BFD is directly executable. */
294eaca4 200#define EXEC_P 0x02
8d12f138
ILT
201
202/* BFD has line number information (basically used for F_LNNO in a
203 COFF header). */
294eaca4 204#define HAS_LINENO 0x04
8d12f138
ILT
205
206/* BFD has debugging information. */
294eaca4 207#define HAS_DEBUG 0x08
8d12f138
ILT
208
209/* BFD has symbols. */
294eaca4 210#define HAS_SYMS 0x10
8d12f138
ILT
211
212/* BFD has local symbols (basically used for F_LSYMS in a COFF
213 header). */
294eaca4 214#define HAS_LOCALS 0x20
8d12f138
ILT
215
216/* BFD is a dynamic object. */
294eaca4 217#define DYNAMIC 0x40
8d12f138
ILT
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). */
294eaca4 222#define WP_TEXT 0x80
8d12f138
ILT
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). */
294eaca4 226#define D_PAGED 0x100
8d12f138
ILT
227
228/* BFD is relaxable (this means that bfd_relax_section may be able to
3b1f83ad
JL
229 do something) (sometimes bfd_relax_section can do something even if
230 this is not set). */
294eaca4 231#define BFD_IS_RELAXABLE 0x200
a7ff9b80
ILT
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
63ffe5ef
SC
238\f
239/* symbols and relocation */
240
0f8f509c 241/* A count of carsyms (canonical archive symbols). */
63ffe5ef
SC
242typedef unsigned long symindex;
243
3b1f83ad
JL
244/* How to perform a relocation. */
245typedef const struct reloc_howto_struct reloc_howto_type;
246
63ffe5ef
SC
247#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
248
0f8f509c
DM
249/* General purpose part of a symbol X;
250 target specific parts are in libcoff.h, libaout.h, etc. */
63ffe5ef
SC
251
252#define bfd_get_section(x) ((x)->section)
253#define bfd_get_output_section(x) ((x)->section->output_section)
254#define bfd_set_section(x,y) ((x)->section) = (y)
0c2fae09 255#define bfd_asymbol_base(x) ((x)->section->vma)
ec30dfba 256#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
63ffe5ef 257#define bfd_asymbol_name(x) ((x)->name)
0c2fae09
ILT
258/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
259#define bfd_asymbol_bfd(x) ((x)->the_bfd)
260#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
63ffe5ef 261
0f8f509c 262/* A canonical archive symbol. */
63ffe5ef
SC
263/* This is a type pun with struct ranlib on purpose! */
264typedef struct carsym {
265 char *name;
266 file_ptr file_offset; /* look here to find the file */
267} carsym; /* to make these you call a carsymogen */
268
269
0f8f509c
DM
270/* Used in generating armaps (archive tables of contents).
271 Perhaps just a forward definition would do? */
63ffe5ef
SC
272struct orl { /* output ranlib */
273 char **name; /* symbol name */
274 file_ptr pos; /* bfd* or file position */
275 int namidx; /* index into string table */
276};
63ffe5ef
SC
277\f
278
279/* Linenumber stuff */
280typedef struct lineno_cache_entry {
281 unsigned int line_number; /* Linenumber from start of function*/
282 union {
0f8f509c 283 struct symbol_cache_entry *sym; /* Function name */
63ffe5ef
SC
284 unsigned long offset; /* Offset into section */
285 } u;
286} alent;
287\f
288/* object and core file sections */
289
63ffe5ef
SC
290#define align_power(addr, align) \
291 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
292
293typedef struct sec *sec_ptr;
294
294eaca4
SC
295#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
296#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
297#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
63ffe5ef 298#define bfd_section_name(bfd, ptr) ((ptr)->name)
e98e6ec1 299#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
63ffe5ef
SC
300#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
301#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
294eaca4 302#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
63ffe5ef
SC
303#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
304
ec30dfba
JG
305#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
306
e0151f38 307#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = (boolean)true), true)
6167a840
JL
308#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
309#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
63ffe5ef
SC
310
311typedef struct stat stat_type;
312\f
63ffe5ef
SC
313typedef enum bfd_print_symbol
314{
cbdc7909
JG
315 bfd_print_symbol_name,
316 bfd_print_symbol_more,
034a8a56 317 bfd_print_symbol_all
cbdc7909 318} bfd_print_symbol_type;
63ffe5ef 319
034a8a56
KR
320/* Information about a symbol that nm needs. */
321
322typedef struct _symbol_info
323{
324 symvalue value;
0f8f509c 325 char type;
034a8a56
KR
326 CONST char *name; /* Symbol name. */
327 char stab_other; /* Unused. */
328 short stab_desc; /* Info for N_TYPE. */
329 CONST char *stab_name;
330} symbol_info;
63ffe5ef 331\f
4c3721d5
ILT
332/* Hash table routines. There is no way to free up a hash table. */
333
334/* An element in the hash table. Most uses will actually use a larger
335 structure, and an instance of this will be the first field. */
336
337struct bfd_hash_entry
338{
339 /* Next entry for this hash code. */
340 struct bfd_hash_entry *next;
341 /* String being hashed. */
342 const char *string;
343 /* Hash code. This is the full hash code, not the index into the
344 table. */
345 unsigned long hash;
346};
347
348/* A hash table. */
349
350struct bfd_hash_table
351{
352 /* The hash array. */
353 struct bfd_hash_entry **table;
354 /* The number of slots in the hash table. */
355 unsigned int size;
356 /* A function used to create new elements in the hash table. The
357 first entry is itself a pointer to an element. When this
358 function is first invoked, this pointer will be NULL. However,
359 having the pointer permits a hierarchy of method functions to be
360 built each of which calls the function in the superclass. Thus
361 each function should be written to allocate a new block of memory
362 only if the argument is NULL. */
363 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
364 struct bfd_hash_table *,
365 const char *));
366 /* An obstack for this hash table. */
367 struct obstack memory;
368};
369
370/* Initialize a hash table. */
371extern boolean bfd_hash_table_init
372 PARAMS ((struct bfd_hash_table *,
373 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
374 struct bfd_hash_table *,
375 const char *)));
376
377/* Initialize a hash table specifying a size. */
378extern boolean bfd_hash_table_init_n
379 PARAMS ((struct bfd_hash_table *,
380 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
381 struct bfd_hash_table *,
382 const char *),
383 unsigned int size));
384
385/* Free up a hash table. */
386extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
387
388/* Look up a string in a hash table. If CREATE is true, a new entry
389 will be created for this string if one does not already exist. The
390 COPY argument must be true if this routine should copy the string
391 into newly allocated memory when adding an entry. */
392extern struct bfd_hash_entry *bfd_hash_lookup
393 PARAMS ((struct bfd_hash_table *, const char *, boolean create,
394 boolean copy));
395
b7577823
ILT
396/* Replace an entry in a hash table. */
397extern void bfd_hash_replace
398 PARAMS ((struct bfd_hash_table *, struct bfd_hash_entry *old,
399 struct bfd_hash_entry *nw));
400
4c3721d5
ILT
401/* Base method for creating a hash table entry. */
402extern struct bfd_hash_entry *bfd_hash_newfunc
403 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
404 const char *));
405
406/* Grab some space for a hash table entry. */
966e0a16
ILT
407extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
408 unsigned int));
4c3721d5
ILT
409
410/* Traverse a hash table in a random order, calling a function on each
411 element. If the function returns false, the traversal stops. The
412 INFO argument is passed to the function. */
413extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
414 boolean (*) (struct bfd_hash_entry *,
415 PTR),
416 PTR info));
417\f
1fa5371e
KR
418/* Semi-portable string concatenation in cpp.
419 The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
420 The problem is, "32_" is not a valid preprocessing token, and we don't
421 want extra underscores (e.g., "nlm_32_"). The XCAT2 macro will cause the
422 inner CAT macros to be evaluated first, producing still-valid pp-tokens.
423 Then the final concatenation can be done. (Sigh.) */
63ffe5ef 424#ifndef CAT
1fa5371e
KR
425#ifdef SABER
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#else
442da995 430#if defined(__STDC__) || defined(ALMOST_STDC)
63ffe5ef 431#define CAT(a,b) a##b
034a8a56 432#define CAT3(a,b,c) a##b##c
1fa5371e
KR
433#define XCAT2(a,b) CAT(a,b)
434#define CAT4(a,b,c,d) XCAT2(CAT(a,b),CAT(c,d))
63ffe5ef
SC
435#else
436#define CAT(a,b) a/**/b
034a8a56 437#define CAT3(a,b,c) a/**/b/**/c
1fa5371e
KR
438#define CAT4(a,b,c,d) a/**/b/**/c/**/d
439#endif
63ffe5ef
SC
440#endif
441#endif
442
0c2fae09 443#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
63ffe5ef
SC
444\f
445/* User program access to BFD facilities */
446
3b1f83ad
JL
447/* Direct I/O routines, for programs which know more about the object
448 file than BFD does. Use higher level routines if possible. */
449
450extern bfd_size_type bfd_read
451 PARAMS ((PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
452extern bfd_size_type bfd_write
453 PARAMS ((const PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
454extern int bfd_seek PARAMS ((bfd *abfd, file_ptr fp, int direction));
455extern long bfd_tell PARAMS ((bfd *abfd));
456extern int bfd_flush PARAMS ((bfd *abfd));
457extern int bfd_stat PARAMS ((bfd *abfd, struct stat *));
458
b176e1e9 459
63ffe5ef
SC
460/* Cast from const char * to char * so that caller can assign to
461 a char * without a warning. */
462#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
8d12f138 463#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
63ffe5ef
SC
464#define bfd_get_format(abfd) ((abfd)->format)
465#define bfd_get_target(abfd) ((abfd)->xvec->name)
8d12f138 466#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
63ffe5ef
SC
467#define bfd_get_file_flags(abfd) ((abfd)->flags)
468#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
469#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
e98e6ec1 470#define bfd_my_archive(abfd) ((abfd)->my_archive)
63ffe5ef 471#define bfd_has_map(abfd) ((abfd)->has_armap)
63ffe5ef
SC
472
473#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
474#define bfd_usrdata(abfd) ((abfd)->usrdata)
475
476#define bfd_get_start_address(abfd) ((abfd)->start_address)
477#define bfd_get_symcount(abfd) ((abfd)->symcount)
478#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
479#define bfd_count_sections(abfd) ((abfd)->section_count)
63ffe5ef 480
294eaca4 481#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
63ffe5ef 482
e0151f38 483#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean)(bool)), true)
8d12f138
ILT
484
485/* Byte swapping routines. */
486
1a973af1
ILT
487bfd_vma bfd_getb64 PARAMS ((const unsigned char *));
488bfd_vma bfd_getl64 PARAMS ((const unsigned char *));
489bfd_signed_vma bfd_getb_signed_64 PARAMS ((const unsigned char *));
490bfd_signed_vma bfd_getl_signed_64 PARAMS ((const unsigned char *));
491bfd_vma bfd_getb32 PARAMS ((const unsigned char *));
492bfd_vma bfd_getl32 PARAMS ((const unsigned char *));
493bfd_signed_vma bfd_getb_signed_32 PARAMS ((const unsigned char *));
494bfd_signed_vma bfd_getl_signed_32 PARAMS ((const unsigned char *));
495bfd_vma bfd_getb16 PARAMS ((const unsigned char *));
496bfd_vma bfd_getl16 PARAMS ((const unsigned char *));
497bfd_signed_vma bfd_getb_signed_16 PARAMS ((const unsigned char *));
498bfd_signed_vma bfd_getl_signed_16 PARAMS ((const unsigned char *));
8d12f138
ILT
499void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
500void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
501void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
502void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
503void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
504void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
013dec1a
ILT
505\f
506/* Externally visible ECOFF routines. */
8d12f138 507
442da995 508#if defined(__STDC__) || defined(ALMOST_STDC)
8d12f138
ILT
509struct ecoff_debug_info;
510struct ecoff_debug_swap;
511struct ecoff_extr;
512struct symbol_cache_entry;
d110544c 513struct bfd_link_info;
28a0c103 514struct bfd_link_hash_entry;
8d12f138 515#endif
013dec1a
ILT
516extern bfd_vma bfd_ecoff_get_gp_value PARAMS ((bfd * abfd));
517extern boolean bfd_ecoff_set_gp_value PARAMS ((bfd *abfd, bfd_vma gp_value));
518extern boolean bfd_ecoff_set_regmasks
519 PARAMS ((bfd *abfd, unsigned long gprmask, unsigned long fprmask,
520 unsigned long *cprmask));
d110544c 521extern PTR bfd_ecoff_debug_init
8d12f138 522 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
d110544c
KR
523 const struct ecoff_debug_swap *output_swap,
524 struct bfd_link_info *));
525extern void bfd_ecoff_debug_free
526 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
527 const struct ecoff_debug_swap *output_swap,
528 struct bfd_link_info *));
529extern boolean bfd_ecoff_debug_accumulate
530 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
8d12f138
ILT
531 const struct ecoff_debug_swap *output_swap,
532 bfd *input_bfd, struct ecoff_debug_info *input_debug,
533 const struct ecoff_debug_swap *input_swap,
d110544c
KR
534 struct bfd_link_info *));
535extern boolean bfd_ecoff_debug_accumulate_other
536 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
537 const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
538 struct bfd_link_info *));
8d12f138
ILT
539extern boolean bfd_ecoff_debug_externals
540 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
541 const struct ecoff_debug_swap *swap,
542 boolean relocateable,
543 boolean (*get_extr) (struct symbol_cache_entry *,
544 struct ecoff_extr *),
545 void (*set_index) (struct symbol_cache_entry *,
546 bfd_size_type)));
966e0a16
ILT
547extern boolean bfd_ecoff_debug_one_external
548 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
549 const struct ecoff_debug_swap *swap,
550 const char *name, struct ecoff_extr *esym));
8d12f138
ILT
551extern bfd_size_type bfd_ecoff_debug_size
552 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
553 const struct ecoff_debug_swap *swap));
554extern boolean bfd_ecoff_write_debug
555 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
556 const struct ecoff_debug_swap *swap, file_ptr where));
d110544c
KR
557extern boolean bfd_ecoff_write_accumulated_debug
558 PARAMS ((PTR handle, bfd *abfd, struct ecoff_debug_info *debug,
559 const struct ecoff_debug_swap *swap,
560 struct bfd_link_info *info, file_ptr where));
3b1f83ad
JL
561extern boolean bfd_mips_ecoff_create_embedded_relocs
562 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
563 char **));
63ffe5ef 564
013dec1a
ILT
565/* Externally visible ELF routines. */
566
54406786 567struct bfd_link_needed_list
b176e1e9 568{
54406786 569 struct bfd_link_needed_list *next;
b176e1e9
ILT
570 bfd *by;
571 const char *name;
572};
54406786
ILT
573
574extern boolean bfd_elf32_record_link_assignment
575 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
576extern boolean bfd_elf64_record_link_assignment
577 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
578extern struct bfd_link_needed_list *bfd_elf_get_needed_list
b176e1e9 579 PARAMS ((bfd *, struct bfd_link_info *));
013dec1a 580extern boolean bfd_elf32_size_dynamic_sections
3b1f83ad
JL
581 PARAMS ((bfd *, const char *, const char *, boolean,
582 struct bfd_link_info *, struct sec **));
013dec1a 583extern boolean bfd_elf64_size_dynamic_sections
3b1f83ad
JL
584 PARAMS ((bfd *, const char *, const char *, boolean,
585 struct bfd_link_info *, struct sec **));
c1f84521 586extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *));
013dec1a 587
a7ff9b80
ILT
588/* SunOS shared library support routines for the linker. */
589
28a0c103
ILT
590extern struct bfd_link_needed_list *bfd_sunos_get_needed_list
591 PARAMS ((bfd *, struct bfd_link_info *));
a7ff9b80
ILT
592extern boolean bfd_sunos_record_link_assignment
593 PARAMS ((bfd *, struct bfd_link_info *, const char *));
594extern boolean bfd_sunos_size_dynamic_sections
595 PARAMS ((bfd *, struct bfd_link_info *, struct sec **, struct sec **,
596 struct sec **));
597
3b1f83ad
JL
598/* Linux shared library support routines for the linker. */
599
600extern boolean bfd_linux_size_dynamic_sections
601 PARAMS ((bfd *, struct bfd_link_info *));
602
4fe6d901
KR
603/* mmap hacks */
604
605struct _bfd_window_internal;
606typedef struct _bfd_window_internal bfd_window_internal;
607
608typedef struct _bfd_window {
609 /* What the user asked for. */
610 PTR data;
611 bfd_size_type size;
612 /* The actual window used by BFD. Small user-requested read-only
613 regions sharing a page may share a single window into the object
614 file. Read-write versions shouldn't until I've fixed things to
615 keep track of which portions have been claimed by the
616 application; don't want to give the same region back when the
617 application wants two writable copies! */
618 struct _bfd_window_internal *i;
619} bfd_window;
620
621void bfd_init_window PARAMS ((bfd_window *));
622void bfd_free_window PARAMS ((bfd_window *));
623int bfd_get_file_window PARAMS ((bfd *, file_ptr, bfd_size_type, bfd_window *, int));
624
28a0c103
ILT
625/* XCOFF support routines for the linker. */
626
2d7de17d
ILT
627extern boolean bfd_xcoff_link_record_set
628 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
629 bfd_size_type));
28a0c103
ILT
630extern boolean bfd_xcoff_import_symbol
631 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
632 bfd_vma, const char *, const char *, const char *));
633extern boolean bfd_xcoff_export_symbol
634 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *,
635 boolean));
2d7de17d
ILT
636extern boolean bfd_xcoff_link_count_reloc
637 PARAMS ((bfd *, struct bfd_link_info *, const char *));
638extern boolean bfd_xcoff_record_link_assignment
639 PARAMS ((bfd *, struct bfd_link_info *, const char *));
28a0c103
ILT
640extern boolean bfd_xcoff_size_dynamic_sections
641 PARAMS ((bfd *, struct bfd_link_info *, const char *, const char *,
642 unsigned long, unsigned long, unsigned long, boolean,
643 int, boolean));
644
294eaca4 645/* And more from the source. */
This page took 0.169177 seconds and 4 git commands to generate.