Eliminate arg from bfd_xmalloc_by_size_t macro, allowing
[deliverable/binutils-gdb.git] / bfd / bfd-in.h
CommitLineData
00539ee3 1/* Main header file for the bfd library -- portable access to object files.
b6090f4d 2 Copyright 1990, 1991, 1992, 1993 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
23Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
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
47#include "ansidecl.h"
48#include "obstack.h"
49
034a8a56
KR
50#define BFD_VERSION "2.2"
51
52#define BFD_ARCH_SIZE @WORDSIZE@
53
54#if BFD_ARCH_SIZE >= 64
55#define BFD64
56#endif
57
1fa5371e
KR
58#ifndef INLINE
59#if __GNUC__ >= 2
60#define INLINE __inline__
61#else
62#define INLINE
63#endif
64#endif
65
58488bc6
KR
66/* 64-bit type definition (if any) from bfd's sysdep.h goes here */
67
63ffe5ef
SC
68
69/* forward declaration */
70typedef struct _bfd bfd;
71
034a8a56
KR
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. */
63ffe5ef
SC
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. */
f004165e
JG
82/* typedef enum boolean {false, true} boolean; */
83/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
442da995
SS
84/* It gets worse if the host also defines a true/false enum... -sts */
85#ifndef TRUE_FALSE_ALREADY_DEFINED
f004165e 86typedef enum bfd_boolean {false, true} boolean;
442da995
SS
87#define BFD_TRUE_FALSE
88#else
89typedef enum bfd_boolean {bfd_false, bfd_true} boolean;
90#endif
63ffe5ef 91
00539ee3
JG
92/* A pointer to a position in a file. */
93/* FIXME: This should be using off_t from <sys/types.h>.
94 For now, try to avoid breaking stuff by not including <sys/types.h> here.
95 This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
96 Probably the best long-term answer is to avoid using file_ptr AND off_t
97 in this header file, and to handle this in the BFD implementation
98 rather than in its interface. */
99/* typedef off_t file_ptr; */
100typedef long int file_ptr;
63ffe5ef 101
034a8a56
KR
102/* Support for different sizes of target format ints and addresses. If the
103 host implements 64-bit values, it defines HOST_64_BIT to be the appropriate
104 type. Otherwise, this code will fall back on gcc's "long long" type if gcc
105 is being used. HOST_64_BIT must be defined in such a way as to be a valid
106 type name by itself or with "unsigned" prefixed. It should be a signed
107 type by itself.
108
109 If neither is the case, then compilation will fail if 64-bit targets are
110 requested. If you don't request any 64-bit targets, you should be safe. */
111
112#ifdef BFD64
113
114#if defined (__GNUC__) && !defined (HOST_64_BIT)
115#define HOST_64_BIT long long
116typedef HOST_64_BIT int64_type;
117typedef unsigned HOST_64_BIT uint64_type;
118#endif
63ffe5ef 119
1fa5371e
KR
120#if !defined (uint64_type) && defined (__GNUC__)
121#define uint64_type unsigned long long
122#define int64_type long long
d110544c
KR
123#endif
124#ifndef uint64_typeLOW
4c3721d5
ILT
125#define uint64_typeLOW(x) ((unsigned long)(((x) & 0xffffffff)))
126#define uint64_typeHIGH(x) ((unsigned long)(((x) >> 32) & 0xffffffff))
1fa5371e
KR
127#endif
128
14e3c2e4
JK
129typedef unsigned HOST_64_BIT bfd_vma;
130typedef HOST_64_BIT bfd_signed_vma;
131typedef unsigned HOST_64_BIT bfd_size_type;
132typedef unsigned HOST_64_BIT symvalue;
d110544c 133#ifndef fprintf_vma
63ffe5ef 134#define fprintf_vma(s,x) \
4c3721d5 135 fprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
1fa5371e 136#define sprintf_vma(s,x) \
4c3721d5 137 sprintf(s,"%08lx%08lx", uint64_typeHIGH(x), uint64_typeLOW(x))
d110544c 138#endif
034a8a56 139#else /* not BFD64 */
14e3c2e4
JK
140
141/* Represent a target address. Also used as a generic unsigned type
142 which is guaranteed to be big enough to hold any arithmetic types
143 we need to deal with. */
63ffe5ef 144typedef unsigned long bfd_vma;
14e3c2e4
JK
145
146/* A generic signed type which is guaranteed to be big enough to hold any
147 arithmetic types we need to deal with. Can be assumed to be compatible
148 with bfd_vma in the same way that signed and unsigned ints are compatible
149 (as parameters, in assignment, etc). */
150typedef long bfd_signed_vma;
151
63ffe5ef
SC
152typedef unsigned long symvalue;
153typedef unsigned long bfd_size_type;
14e3c2e4
JK
154
155/* Print a bfd_vma x on stream s. */
63ffe5ef 156#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
1fa5371e 157#define sprintf_vma(s,x) sprintf(s, "%08lx", x)
034a8a56 158#endif /* not BFD64 */
e98e6ec1 159#define printf_vma(x) fprintf_vma(stdout,x)
63ffe5ef
SC
160
161typedef unsigned int flagword; /* 32 bits of flags */
162\f
163/** File formats */
164
165typedef enum bfd_format {
166 bfd_unknown = 0, /* file format is unknown */
167 bfd_object, /* linker/assember/compiler output */
168 bfd_archive, /* object archive file */
169 bfd_core, /* core dump */
170 bfd_type_end} /* marks the end; don't use it! */
171 bfd_format;
172
8d12f138
ILT
173/* Values that may appear in the flags field of a BFD. These also
174 appear in the object_flags field of the bfd_target structure, where
175 they indicate the set of flags used by that backend (not all flags
176 are meaningful for all object file formats) (FIXME: at the moment,
177 the object_flags values have mostly just been copied from backend
178 to another, and are not necessarily correct). */
179
180/* No flags. */
294eaca4 181#define NO_FLAGS 0x00
8d12f138
ILT
182
183/* BFD contains relocation entries. */
294eaca4 184#define HAS_RELOC 0x01
8d12f138
ILT
185
186/* BFD is directly executable. */
294eaca4 187#define EXEC_P 0x02
8d12f138
ILT
188
189/* BFD has line number information (basically used for F_LNNO in a
190 COFF header). */
294eaca4 191#define HAS_LINENO 0x04
8d12f138
ILT
192
193/* BFD has debugging information. */
294eaca4 194#define HAS_DEBUG 0x08
8d12f138
ILT
195
196/* BFD has symbols. */
294eaca4 197#define HAS_SYMS 0x10
8d12f138
ILT
198
199/* BFD has local symbols (basically used for F_LSYMS in a COFF
200 header). */
294eaca4 201#define HAS_LOCALS 0x20
8d12f138
ILT
202
203/* BFD is a dynamic object. */
294eaca4 204#define DYNAMIC 0x40
8d12f138
ILT
205
206/* Text section is write protected (if D_PAGED is not set, this is
207 like an a.out NMAGIC file) (the linker sets this by default, but
208 clears it for -r or -N). */
294eaca4 209#define WP_TEXT 0x80
8d12f138
ILT
210
211/* BFD is dynamically paged (this is like an a.out ZMAGIC file) (the
212 linker sets this by default, but clears it for -r or -n or -N). */
294eaca4 213#define D_PAGED 0x100
8d12f138
ILT
214
215/* BFD is relaxable (this means that bfd_relax_section may be able to
216 do something). */
294eaca4 217#define BFD_IS_RELAXABLE 0x200
63ffe5ef
SC
218\f
219/* symbols and relocation */
220
0f8f509c 221/* A count of carsyms (canonical archive symbols). */
63ffe5ef
SC
222typedef unsigned long symindex;
223
224#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
225
0f8f509c
DM
226/* General purpose part of a symbol X;
227 target specific parts are in libcoff.h, libaout.h, etc. */
63ffe5ef
SC
228
229#define bfd_get_section(x) ((x)->section)
230#define bfd_get_output_section(x) ((x)->section->output_section)
231#define bfd_set_section(x,y) ((x)->section) = (y)
0c2fae09 232#define bfd_asymbol_base(x) ((x)->section->vma)
ec30dfba 233#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
63ffe5ef 234#define bfd_asymbol_name(x) ((x)->name)
0c2fae09
ILT
235/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
236#define bfd_asymbol_bfd(x) ((x)->the_bfd)
237#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
63ffe5ef 238
0f8f509c 239/* A canonical archive symbol. */
63ffe5ef
SC
240/* This is a type pun with struct ranlib on purpose! */
241typedef struct carsym {
242 char *name;
243 file_ptr file_offset; /* look here to find the file */
244} carsym; /* to make these you call a carsymogen */
245
246
0f8f509c
DM
247/* Used in generating armaps (archive tables of contents).
248 Perhaps just a forward definition would do? */
63ffe5ef
SC
249struct orl { /* output ranlib */
250 char **name; /* symbol name */
251 file_ptr pos; /* bfd* or file position */
252 int namidx; /* index into string table */
253};
254
255\f
256
257/* Linenumber stuff */
258typedef struct lineno_cache_entry {
259 unsigned int line_number; /* Linenumber from start of function*/
260 union {
0f8f509c 261 struct symbol_cache_entry *sym; /* Function name */
63ffe5ef
SC
262 unsigned long offset; /* Offset into section */
263 } u;
264} alent;
265\f
266/* object and core file sections */
267
268
269#define align_power(addr, align) \
270 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
271
272typedef struct sec *sec_ptr;
273
294eaca4
SC
274#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
275#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
276#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
63ffe5ef 277#define bfd_section_name(bfd, ptr) ((ptr)->name)
e98e6ec1 278#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
63ffe5ef
SC
279#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
280#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
294eaca4 281#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
63ffe5ef
SC
282#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
283
ec30dfba
JG
284#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
285
b6090f4d 286#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = true), true)
63ffe5ef
SC
287#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
288#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
289
290typedef struct stat stat_type;
291\f
63ffe5ef
SC
292typedef enum bfd_print_symbol
293{
cbdc7909
JG
294 bfd_print_symbol_name,
295 bfd_print_symbol_more,
034a8a56 296 bfd_print_symbol_all
cbdc7909 297} bfd_print_symbol_type;
63ffe5ef 298
034a8a56
KR
299/* Information about a symbol that nm needs. */
300
301typedef struct _symbol_info
302{
303 symvalue value;
0f8f509c 304 char type;
034a8a56
KR
305 CONST char *name; /* Symbol name. */
306 char stab_other; /* Unused. */
307 short stab_desc; /* Info for N_TYPE. */
308 CONST char *stab_name;
309} symbol_info;
63ffe5ef 310\f
4c3721d5
ILT
311/* Hash table routines. There is no way to free up a hash table. */
312
313/* An element in the hash table. Most uses will actually use a larger
314 structure, and an instance of this will be the first field. */
315
316struct bfd_hash_entry
317{
318 /* Next entry for this hash code. */
319 struct bfd_hash_entry *next;
320 /* String being hashed. */
321 const char *string;
322 /* Hash code. This is the full hash code, not the index into the
323 table. */
324 unsigned long hash;
325};
326
327/* A hash table. */
328
329struct bfd_hash_table
330{
331 /* The hash array. */
332 struct bfd_hash_entry **table;
333 /* The number of slots in the hash table. */
334 unsigned int size;
335 /* A function used to create new elements in the hash table. The
336 first entry is itself a pointer to an element. When this
337 function is first invoked, this pointer will be NULL. However,
338 having the pointer permits a hierarchy of method functions to be
339 built each of which calls the function in the superclass. Thus
340 each function should be written to allocate a new block of memory
341 only if the argument is NULL. */
342 struct bfd_hash_entry *(*newfunc) PARAMS ((struct bfd_hash_entry *,
343 struct bfd_hash_table *,
344 const char *));
345 /* An obstack for this hash table. */
346 struct obstack memory;
347};
348
349/* Initialize a hash table. */
350extern boolean bfd_hash_table_init
351 PARAMS ((struct bfd_hash_table *,
352 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
353 struct bfd_hash_table *,
354 const char *)));
355
356/* Initialize a hash table specifying a size. */
357extern boolean bfd_hash_table_init_n
358 PARAMS ((struct bfd_hash_table *,
359 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
360 struct bfd_hash_table *,
361 const char *),
362 unsigned int size));
363
364/* Free up a hash table. */
365extern void bfd_hash_table_free PARAMS ((struct bfd_hash_table *));
366
367/* Look up a string in a hash table. If CREATE is true, a new entry
368 will be created for this string if one does not already exist. The
369 COPY argument must be true if this routine should copy the string
370 into newly allocated memory when adding an entry. */
371extern struct bfd_hash_entry *bfd_hash_lookup
372 PARAMS ((struct bfd_hash_table *, const char *, boolean create,
373 boolean copy));
374
375/* Base method for creating a hash table entry. */
376extern struct bfd_hash_entry *bfd_hash_newfunc
377 PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *,
378 const char *));
379
380/* Grab some space for a hash table entry. */
966e0a16
ILT
381extern PTR bfd_hash_allocate PARAMS ((struct bfd_hash_table *,
382 unsigned int));
4c3721d5
ILT
383
384/* Traverse a hash table in a random order, calling a function on each
385 element. If the function returns false, the traversal stops. The
386 INFO argument is passed to the function. */
387extern void bfd_hash_traverse PARAMS ((struct bfd_hash_table *,
388 boolean (*) (struct bfd_hash_entry *,
389 PTR),
390 PTR info));
391\f
63ffe5ef
SC
392/* The code that implements targets can initialize a jump table with this
393 macro. It must name all its routines the same way (a prefix plus
394 the standard routine suffix), or it must #define the routines that
395 are not so named, before calling JUMP_TABLE in the initializer. */
396
1fa5371e
KR
397/* Semi-portable string concatenation in cpp.
398 The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
399 The problem is, "32_" is not a valid preprocessing token, and we don't
400 want extra underscores (e.g., "nlm_32_"). The XCAT2 macro will cause the
401 inner CAT macros to be evaluated first, producing still-valid pp-tokens.
402 Then the final concatenation can be done. (Sigh.) */
63ffe5ef 403#ifndef CAT
1fa5371e
KR
404#ifdef SABER
405#define CAT(a,b) a##b
406#define CAT3(a,b,c) a##b##c
407#define CAT4(a,b,c,d) a##b##c##d
408#else
442da995 409#if defined(__STDC__) || defined(ALMOST_STDC)
63ffe5ef 410#define CAT(a,b) a##b
034a8a56 411#define CAT3(a,b,c) a##b##c
1fa5371e
KR
412#define XCAT2(a,b) CAT(a,b)
413#define CAT4(a,b,c,d) XCAT2(CAT(a,b),CAT(c,d))
63ffe5ef
SC
414#else
415#define CAT(a,b) a/**/b
034a8a56 416#define CAT3(a,b,c) a/**/b/**/c
1fa5371e
KR
417#define CAT4(a,b,c,d) a/**/b/**/c/**/d
418#endif
63ffe5ef
SC
419#endif
420#endif
421
422#define JUMP_TABLE(NAME)\
423CAT(NAME,_core_file_failing_command),\
424CAT(NAME,_core_file_failing_signal),\
425CAT(NAME,_core_file_matches_executable_p),\
426CAT(NAME,_slurp_armap),\
427CAT(NAME,_slurp_extended_name_table),\
428CAT(NAME,_truncate_arname),\
429CAT(NAME,_write_armap),\
1fa5371e 430CAT(NAME,_close_and_cleanup),\
63ffe5ef
SC
431CAT(NAME,_set_section_contents),\
432CAT(NAME,_get_section_contents),\
433CAT(NAME,_new_section_hook),\
434CAT(NAME,_get_symtab_upper_bound),\
435CAT(NAME,_get_symtab),\
436CAT(NAME,_get_reloc_upper_bound),\
437CAT(NAME,_canonicalize_reloc),\
438CAT(NAME,_make_empty_symbol),\
439CAT(NAME,_print_symbol),\
034a8a56 440CAT(NAME,_get_symbol_info),\
63ffe5ef
SC
441CAT(NAME,_get_lineno),\
442CAT(NAME,_set_arch_mach),\
443CAT(NAME,_openr_next_archived_file),\
444CAT(NAME,_find_nearest_line),\
445CAT(NAME,_generic_stat_arch_elt),\
446CAT(NAME,_sizeof_headers),\
447CAT(NAME,_bfd_debug_info_start),\
448CAT(NAME,_bfd_debug_info_end),\
e98e6ec1 449CAT(NAME,_bfd_debug_info_accumulate),\
2cfd0562 450CAT(NAME,_bfd_get_relocated_section_contents),\
0c2fae09 451CAT(NAME,_bfd_relax_section),\
b6090f4d 452CAT(NAME,_bfd_reloc_type_lookup),\
4c3721d5
ILT
453CAT(NAME,_bfd_make_debug_symbol),\
454CAT(NAME,_bfd_link_hash_table_create),\
455CAT(NAME,_bfd_link_add_symbols),\
456CAT(NAME,_bfd_final_link)
cbdc7909 457
0c2fae09 458#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
cbdc7909 459
63ffe5ef
SC
460\f
461/* User program access to BFD facilities */
462
63ffe5ef
SC
463/* Cast from const char * to char * so that caller can assign to
464 a char * without a warning. */
465#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
8d12f138 466#define bfd_get_cacheable(abfd) ((abfd)->cacheable)
63ffe5ef
SC
467#define bfd_get_format(abfd) ((abfd)->format)
468#define bfd_get_target(abfd) ((abfd)->xvec->name)
8d12f138 469#define bfd_get_flavour(abfd) ((abfd)->xvec->flavour)
63ffe5ef
SC
470#define bfd_get_file_flags(abfd) ((abfd)->flags)
471#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
472#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
e98e6ec1 473#define bfd_my_archive(abfd) ((abfd)->my_archive)
63ffe5ef 474#define bfd_has_map(abfd) ((abfd)->has_armap)
63ffe5ef
SC
475
476#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
477#define bfd_usrdata(abfd) ((abfd)->usrdata)
478
479#define bfd_get_start_address(abfd) ((abfd)->start_address)
480#define bfd_get_symcount(abfd) ((abfd)->symcount)
481#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
482#define bfd_count_sections(abfd) ((abfd)->section_count)
63ffe5ef 483
294eaca4 484#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
63ffe5ef 485
8d12f138
ILT
486#define bfd_set_cacheable(abfd,bool) (((abfd)->cacheable = (bool)), true)
487
488/* Byte swapping routines. */
489
1a973af1
ILT
490bfd_vma bfd_getb64 PARAMS ((const unsigned char *));
491bfd_vma bfd_getl64 PARAMS ((const unsigned char *));
492bfd_signed_vma bfd_getb_signed_64 PARAMS ((const unsigned char *));
493bfd_signed_vma bfd_getl_signed_64 PARAMS ((const unsigned char *));
494bfd_vma bfd_getb32 PARAMS ((const unsigned char *));
495bfd_vma bfd_getl32 PARAMS ((const unsigned char *));
496bfd_signed_vma bfd_getb_signed_32 PARAMS ((const unsigned char *));
497bfd_signed_vma bfd_getl_signed_32 PARAMS ((const unsigned char *));
498bfd_vma bfd_getb16 PARAMS ((const unsigned char *));
499bfd_vma bfd_getl16 PARAMS ((const unsigned char *));
500bfd_signed_vma bfd_getb_signed_16 PARAMS ((const unsigned char *));
501bfd_signed_vma bfd_getl_signed_16 PARAMS ((const unsigned char *));
8d12f138
ILT
502void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
503void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
504void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
505void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
506void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
507void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
508
509/* ECOFF linking routines. */
442da995 510#if defined(__STDC__) || defined(ALMOST_STDC)
8d12f138
ILT
511struct ecoff_debug_info;
512struct ecoff_debug_swap;
513struct ecoff_extr;
514struct symbol_cache_entry;
d110544c 515struct bfd_link_info;
8d12f138 516#endif
d110544c 517extern PTR bfd_ecoff_debug_init
8d12f138 518 PARAMS ((bfd *output_bfd, struct ecoff_debug_info *output_debug,
d110544c
KR
519 const struct ecoff_debug_swap *output_swap,
520 struct bfd_link_info *));
521extern void bfd_ecoff_debug_free
522 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
523 const struct ecoff_debug_swap *output_swap,
524 struct bfd_link_info *));
525extern boolean bfd_ecoff_debug_accumulate
526 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
8d12f138
ILT
527 const struct ecoff_debug_swap *output_swap,
528 bfd *input_bfd, struct ecoff_debug_info *input_debug,
529 const struct ecoff_debug_swap *input_swap,
d110544c
KR
530 struct bfd_link_info *));
531extern boolean bfd_ecoff_debug_accumulate_other
532 PARAMS ((PTR handle, bfd *output_bfd, struct ecoff_debug_info *output_debug,
533 const struct ecoff_debug_swap *output_swap, bfd *input_bfd,
534 struct bfd_link_info *));
8d12f138
ILT
535extern boolean bfd_ecoff_debug_externals
536 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
537 const struct ecoff_debug_swap *swap,
538 boolean relocateable,
539 boolean (*get_extr) (struct symbol_cache_entry *,
540 struct ecoff_extr *),
541 void (*set_index) (struct symbol_cache_entry *,
542 bfd_size_type)));
966e0a16
ILT
543extern boolean bfd_ecoff_debug_one_external
544 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
545 const struct ecoff_debug_swap *swap,
546 const char *name, struct ecoff_extr *esym));
8d12f138
ILT
547extern bfd_size_type bfd_ecoff_debug_size
548 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
549 const struct ecoff_debug_swap *swap));
550extern boolean bfd_ecoff_write_debug
551 PARAMS ((bfd *abfd, struct ecoff_debug_info *debug,
552 const struct ecoff_debug_swap *swap, file_ptr where));
d110544c
KR
553extern boolean bfd_ecoff_write_accumulated_debug
554 PARAMS ((PTR handle, bfd *abfd, struct ecoff_debug_info *debug,
555 const struct ecoff_debug_swap *swap,
556 struct bfd_link_info *info, file_ptr where));
63ffe5ef 557
294eaca4 558/* And more from the source. */
This page took 0.456348 seconds and 4 git commands to generate.