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