* bfd-in.h: Add extern "C" if __cplusplus.
[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
ILT
54/* These two lines get substitutions done by commands in Makefile.in. */
55#define BFD_VERSION "@VERSION@"
034a8a56
KR
56#define BFD_ARCH_SIZE @WORDSIZE@
57
58#if BFD_ARCH_SIZE >= 64
59#define BFD64
60#endif
61
1fa5371e
KR
62#ifndef INLINE
63#if __GNUC__ >= 2
64#define INLINE __inline__
65#else
66#define INLINE
67#endif
68#endif
69
58488bc6
KR
70/* 64-bit type definition (if any) from bfd's sysdep.h goes here */
71
63ffe5ef
SC
72
73/* forward declaration */
74typedef struct _bfd bfd;
75
034a8a56
KR
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. */
63ffe5ef
SC
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. */
f004165e
JG
86/* typedef enum boolean {false, true} boolean; */
87/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
442da995 88/* It gets worse if the host also defines a true/false enum... -sts */
3b1f83ad
JL
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
442da995 93#ifndef TRUE_FALSE_ALREADY_DEFINED
f004165e 94typedef enum bfd_boolean {false, true} boolean;
442da995
SS
95#define BFD_TRUE_FALSE
96#else
e0151f38
SS
97/* Use enum names that will appear nowhere else. */
98typedef enum bfd_boolean {bfd_fffalse, bfd_tttrue} boolean;
442da995 99#endif
63ffe5ef 100
00539ee3
JG
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; */
109typedef long int file_ptr;
63ffe5ef 110
3b1f83ad
JL
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.
034a8a56 117
3b1f83ad
JL
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. */
034a8a56
KR
121
122#ifdef BFD64
123
9deaaaf1
ILT
124#if defined (__GNUC__) && !defined (BFD_HOST_64_BIT)
125#define BFD_HOST_64_BIT long long
126typedef BFD_HOST_64_BIT int64_type;
127typedef unsigned BFD_HOST_64_BIT uint64_type;
034a8a56 128#endif
63ffe5ef 129
1fa5371e
KR
130#if !defined (uint64_type) && defined (__GNUC__)
131#define uint64_type unsigned long long
132#define int64_type long long
d110544c
KR
133#endif
134#ifndef uint64_typeLOW
4c3721d5
ILT
135#define uint64_typeLOW(x) ((unsigned long)(((x) & 0xffffffff)))
136#define uint64_typeHIGH(x) ((unsigned long)(((x) >> 32) & 0xffffffff))
1fa5371e
KR
137#endif
138
9deaaaf1
ILT
139typedef unsigned BFD_HOST_64_BIT bfd_vma;
140typedef BFD_HOST_64_BIT bfd_signed_vma;
141typedef unsigned BFD_HOST_64_BIT bfd_size_type;
142typedef unsigned BFD_HOST_64_BIT symvalue;
d110544c 143#ifndef fprintf_vma
63ffe5ef 144#define fprintf_vma(s,x) \
4c3721d5 145 fprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
1fa5371e 146#define sprintf_vma(s,x) \
4c3721d5 147 sprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
d110544c 148#endif
034a8a56 149#else /* not BFD64 */
14e3c2e4
JK
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. */
63ffe5ef 154typedef unsigned long bfd_vma;
14e3c2e4
JK
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). */
160typedef long bfd_signed_vma;
161
63ffe5ef
SC
162typedef unsigned long symvalue;
163typedef unsigned long bfd_size_type;
14e3c2e4
JK
164
165/* Print a bfd_vma x on stream s. */
63ffe5ef 166#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
1fa5371e 167#define sprintf_vma(s,x) sprintf(s, "%08lx", x)
034a8a56 168#endif /* not BFD64 */
e98e6ec1 169#define printf_vma(x) fprintf_vma(stdout,x)
63ffe5ef
SC
170
171typedef unsigned int flagword; /* 32 bits of flags */
3b1f83ad 172typedef unsigned char bfd_byte;
63ffe5ef
SC
173\f
174/** File formats */
175
176typedef 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
8d12f138
ILT
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. */
294eaca4 192#define NO_FLAGS 0x00
8d12f138
ILT
193
194/* BFD contains relocation entries. */
294eaca4 195#define HAS_RELOC 0x01
8d12f138
ILT
196
197/* BFD is directly executable. */
294eaca4 198#define EXEC_P 0x02
8d12f138
ILT
199
200/* BFD has line number information (basically used for F_LNNO in a
201 COFF header). */
294eaca4 202#define HAS_LINENO 0x04
8d12f138
ILT
203
204/* BFD has debugging information. */
294eaca4 205#define HAS_DEBUG 0x08
8d12f138
ILT
206
207/* BFD has symbols. */
294eaca4 208#define HAS_SYMS 0x10
8d12f138
ILT
209
210/* BFD has local symbols (basically used for F_LSYMS in a COFF
211 header). */
294eaca4 212#define HAS_LOCALS 0x20
8d12f138
ILT
213
214/* BFD is a dynamic object. */
294eaca4 215#define DYNAMIC 0x40
8d12f138
ILT
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). */
294eaca4 220#define WP_TEXT 0x80
8d12f138
ILT
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). */
294eaca4 224#define D_PAGED 0x100
8d12f138
ILT
225
226/* BFD is relaxable (this means that bfd_relax_section may be able to
3b1f83ad
JL
227 do something) (sometimes bfd_relax_section can do something even if
228 this is not set). */
294eaca4 229#define BFD_IS_RELAXABLE 0x200
a7ff9b80
ILT
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
63ffe5ef
SC
236\f
237/* symbols and relocation */
238
0f8f509c 239/* A count of carsyms (canonical archive symbols). */
63ffe5ef
SC
240typedef unsigned long symindex;
241
3b1f83ad
JL
242/* How to perform a relocation. */
243typedef const struct reloc_howto_struct reloc_howto_type;
244
63ffe5ef
SC
245#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
246
0f8f509c
DM
247/* General purpose part of a symbol X;
248 target specific parts are in libcoff.h, libaout.h, etc. */
63ffe5ef
SC
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)
0c2fae09 253#define bfd_asymbol_base(x) ((x)->section->vma)
ec30dfba 254#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
63ffe5ef 255#define bfd_asymbol_name(x) ((x)->name)
0c2fae09
ILT
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)
63ffe5ef 259
0f8f509c 260/* A canonical archive symbol. */
63ffe5ef
SC
261/* This is a type pun with struct ranlib on purpose! */
262typedef 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
0f8f509c
DM
268/* Used in generating armaps (archive tables of contents).
269 Perhaps just a forward definition would do? */
63ffe5ef
SC
270struct orl { /* output ranlib */
271 char **name; /* symbol name */
272 file_ptr pos; /* bfd* or file position */
273 int namidx; /* index into string table */
274};
63ffe5ef
SC
275\f
276
277/* Linenumber stuff */
278typedef struct lineno_cache_entry {
279 unsigned int line_number; /* Linenumber from start of function*/
280 union {
0f8f509c 281 struct symbol_cache_entry *sym; /* Function name */
63ffe5ef
SC
282 unsigned long offset; /* Offset into section */
283 } u;
284} alent;
285\f
286/* object and core file sections */
287
63ffe5ef
SC
288#define align_power(addr, align) \
289 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
290
291typedef struct sec *sec_ptr;
292
294eaca4
SC
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)
63ffe5ef 296#define bfd_section_name(bfd, ptr) ((ptr)->name)
e98e6ec1 297#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
63ffe5ef
SC
298#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
299#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
294eaca4 300#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
63ffe5ef
SC
301#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
302
ec30dfba
JG
303#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
304
e0151f38 305#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = (boolean)true), true)
6167a840
JL
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)
63ffe5ef
SC
308
309typedef struct stat stat_type;
310\f
63ffe5ef
SC
311typedef enum bfd_print_symbol
312{
cbdc7909
JG
313 bfd_print_symbol_name,
314 bfd_print_symbol_more,
034a8a56 315 bfd_print_symbol_all
cbdc7909 316} bfd_print_symbol_type;
63ffe5ef 317
034a8a56
KR
318/* Information about a symbol that nm needs. */
319
320typedef struct _symbol_info
321{
322 symvalue value;
0f8f509c 323 char type;
034a8a56
KR
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;
63ffe5ef 329\f
4c3721d5
ILT
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
335struct 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
348struct 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. */
369extern 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. */
376extern 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. */
384extern 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. */
390extern 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. */
395extern 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. */
966e0a16
ILT
400extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
401 unsigned int));
4c3721d5
ILT
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. */
406extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
407 boolean (*) (struct bfd_hash_entry *,
408 PTR),
409 PTR info));
410\f
1fa5371e
KR
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.) */
63ffe5ef 417#ifndef CAT
1fa5371e
KR
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
442da995 423#if defined(__STDC__) || defined(ALMOST_STDC)
63ffe5ef 424#define CAT(a,b) a##b
034a8a56 425#define CAT3(a,b,c) a##b##c
1fa5371e
KR
426#define XCAT2(a,b) CAT(a,b)
427#define CAT4(a,b,c,d) XCAT2(CAT(a,b),CAT(c,d))
63ffe5ef
SC
428#else
429#define CAT(a,b) a/**/b
034a8a56 430#define CAT3(a,b,c) a/**/b/**/c
1fa5371e
KR
431#define CAT4(a,b,c,d) a/**/b/**/c/**/d
432#endif
63ffe5ef
SC
433#endif
434#endif
435
0c2fae09 436#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
63ffe5ef
SC
437\f
438/* User program access to BFD facilities */
439
3b1f83ad
JL
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
443extern bfd_size_type bfd_read
444 PARAMS ((PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
445extern bfd_size_type bfd_write
446 PARAMS ((const PTR, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
447extern int bfd_seek PARAMS ((bfd *abfd, file_ptr fp, int direction));
448extern long bfd_tell PARAMS ((bfd *abfd));
449extern int bfd_flush PARAMS ((bfd *abfd));
450extern 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 */
815179af
ILT
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
3b1f83ad
JL
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. */
815179af
ILT
475
476typedef struct
3b1f83ad 477{
815179af
ILT
478 boolean defined;
479 bfd_vma value;
480} bfd_link_pe_info_dval ;
481
482typedef 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;
3b1f83ad
JL
500
501/* END OF PE STUFF */
502
815179af 503
b176e1e9 504
63ffe5ef
SC
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)
8d12f138 508#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
63ffe5ef
SC
509#define bfd_get_format(abfd) ((abfd)->format)
510#define bfd_get_target(abfd) ((abfd)->xvec->name)
8d12f138 511#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
63ffe5ef
SC
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)
e98e6ec1 515#define bfd_my_archive(abfd) ((abfd)->my_archive)
63ffe5ef 516#define bfd_has_map(abfd) ((abfd)->has_armap)
63ffe5ef
SC
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)
63ffe5ef 525
294eaca4 526#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
63ffe5ef 527
e0151f38 528#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (boolean)(bool)), true)
8d12f138
ILT
529
530/* Byte swapping routines. */
531
1a973af1
ILT
532bfd_vma bfd_getb64 PARAMS ((const unsigned char *));
533bfd_vma bfd_getl64 PARAMS ((const unsigned char *));
534bfd_signed_vma bfd_getb_signed_64 PARAMS ((const unsigned char *));
535bfd_signed_vma bfd_getl_signed_64 PARAMS ((const unsigned char *));
536bfd_vma bfd_getb32 PARAMS ((const unsigned char *));
537bfd_vma bfd_getl32 PARAMS ((const unsigned char *));
538bfd_signed_vma bfd_getb_signed_32 PARAMS ((const unsigned char *));
539bfd_signed_vma bfd_getl_signed_32 PARAMS ((const unsigned char *));
540bfd_vma bfd_getb16 PARAMS ((const unsigned char *));
541bfd_vma bfd_getl16 PARAMS ((const unsigned char *));
542bfd_signed_vma bfd_getb_signed_16 PARAMS ((const unsigned char *));
543bfd_signed_vma bfd_getl_signed_16 PARAMS ((const unsigned char *));
8d12f138
ILT
544void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
545void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
546void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
547void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
548void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
549void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
013dec1a
ILT
550\f
551/* Externally visible ECOFF routines. */
8d12f138 552
442da995 553#if defined(__STDC__) || defined(ALMOST_STDC)
8d12f138
ILT
554struct ecoff_debug_info;
555struct ecoff_debug_swap;
556struct ecoff_extr;
557struct symbol_cache_entry;
d110544c 558struct bfd_link_info;
8d12f138 559#endif
013dec1a
ILT
560extern bfd_vma bfd_ecoff_get_gp_value PARAMS ((bfd * abfd));
561extern boolean bfd_ecoff_set_gp_value PARAMS ((bfd *abfd, bfd_vma gp_value));
562extern boolean bfd_ecoff_set_regmasks
563 PARAMS ((bfd *abfd, unsigned long gprmask, unsigned long fprmask,
564 unsigned long *cprmask));
d110544c 565extern PTR bfd_ecoff_debug_init
8d12f138 566 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
d110544c
KR
567 const struct ecoff_debug_swap *output_swap,
568 struct bfd_link_info *));
569extern 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 *));
573extern boolean bfd_ecoff_debug_accumulate
574 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
8d12f138
ILT
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,
d110544c
KR
578 struct bfd_link_info *));
579extern 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 *));
8d12f138
ILT
583extern 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)));
966e0a16
ILT
591extern 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));
8d12f138
ILT
595extern bfd_size_type bfd_ecoff_debug_size
596 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
597 const struct ecoff_debug_swap *swap));
598extern boolean bfd_ecoff_write_debug
599 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
600 const struct ecoff_debug_swap *swap, file_ptr where));
d110544c
KR
601extern 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));
3b1f83ad
JL
605extern boolean bfd_mips_ecoff_create_embedded_relocs
606 PARAMS ((bfd *, struct bfd_link_info *, struct sec *, struct sec *,
607 char **));
63ffe5ef 608
013dec1a
ILT
609/* Externally visible ELF routines. */
610
611extern boolean bfd_elf32_record_link_assignment
b5279eb6 612 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
013dec1a 613extern boolean bfd_elf64_record_link_assignment
b5279eb6 614 PARAMS ((bfd *, struct bfd_link_info *, const char *, boolean));
b176e1e9
ILT
615struct bfd_elf_link_needed_list
616{
617 struct bfd_elf_link_needed_list *next;
618 bfd *by;
619 const char *name;
620};
621extern struct bfd_elf_link_needed_list *bfd_elf_get_needed_list
622 PARAMS ((bfd *, struct bfd_link_info *));
013dec1a 623extern boolean bfd_elf32_size_dynamic_sections
3b1f83ad
JL
624 PARAMS ((bfd *, const char *, const char *, boolean,
625 struct bfd_link_info *, struct sec **));
013dec1a 626extern boolean bfd_elf64_size_dynamic_sections
3b1f83ad
JL
627 PARAMS ((bfd *, const char *, const char *, boolean,
628 struct bfd_link_info *, struct sec **));
c1f84521 629extern void bfd_elf_set_dt_needed_name PARAMS ((bfd *, const char *));
013dec1a 630
a7ff9b80
ILT
631/* SunOS shared library support routines for the linker. */
632
633extern boolean bfd_sunos_record_link_assignment
634 PARAMS ((bfd *, struct bfd_link_info *, const char *));
635extern boolean bfd_sunos_size_dynamic_sections
636 PARAMS ((bfd *, struct bfd_link_info *, struct sec **, struct sec **,
637 struct sec **));
638
3b1f83ad
JL
639/* Linux shared library support routines for the linker. */
640
641extern boolean bfd_linux_size_dynamic_sections
642 PARAMS ((bfd *, struct bfd_link_info *));
643
294eaca4 644/* And more from the source. */
This page took 0.163933 seconds and 4 git commands to generate.