* gas/hppa/reloc/reloc.exp (roundmode test): Tweak expected output
[deliverable/binutils-gdb.git] / bfd / libbfd.h
CommitLineData
c618de01
SC
1/* libbfd.h -- Declarations used by bfd library *implementation*.
2 (This include file is not for users of the library.)
4ee3b9be 3 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
c618de01 4 Written by Cygnus Support.
fc723380 5
c618de01 6This file is part of BFD, the Binary File Descriptor library.
4a81b561 7
c618de01 8This program is free software; you can redistribute it and/or modify
4a81b561 9it under the terms of the GNU General Public License as published by
c618de01
SC
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
4a81b561 12
c618de01 13This program is distributed in the hope that it will be useful,
4a81b561
DHW
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
c618de01
SC
19along with this program; if not, write to the Free Software
20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
4a81b561 21
01dd1b2b
SC
22/* Align an address upward to a boundary, expressed as a number of bytes.
23 E.g. align to an 8-byte boundary with argument of 8. */
de0da6ce 24#define BFD_ALIGN(this, boundary) \
01dd1b2b
SC
25 ((( (this) + ((boundary) -1)) & (~((boundary)-1))))
26
4a81b561
DHW
27/* If you want to read and write large blocks, you might want to do it
28 in quanta of this amount */
29#define DEFAULT_BUFFERSIZE 8192
30
fc723380
JG
31/* Set a tdata field. Can't use the other macros for this, since they
32 do casts, and casting to the left of assignment isn't portable. */
d5cd3c0e 33#define set_tdata(bfd, v) ((bfd)->tdata.any = (PTR) (v))
fc723380
JG
34
35/* tdata for an archive. For an input archive, cache
36 needs to be free()'d. For an output archive, symdefs do. */
4a81b561
DHW
37
38struct artdata {
39 file_ptr first_file_filepos;
40 /* Speed up searching the armap */
41 struct ar_cache *cache;
42 bfd *archive_head; /* Only interesting in output routines */
43 carsym *symdefs; /* the symdef entries */
44 symindex symdef_count; /* how many there are */
45 char *extended_names; /* clever intel extension */
c188b0be
DM
46 /* when more compilers are standard C, this can be a time_t */
47 long armap_timestamp; /* Timestamp value written into armap.
b5b4294e
JG
48 This is used for BSD archives to check
49 that the timestamp is recent enough
50 for the BSD linker to not complain,
51 just before we finish writing an
52 archive. */
53 file_ptr armap_datepos; /* Position within archive to seek to
54 rewrite the date field. */
b59f0276 55 PTR tdata; /* Backend specific information. */
4a81b561
DHW
56};
57
e98e6ec1 58#define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
4a81b561
DHW
59
60/* Goes in bfd's arelt_data slot */
61struct areltdata {
62 char * arch_header; /* it's actually a string */
63 unsigned int parsed_size; /* octets of filesize not including ar_hdr */
64 char *filename; /* null-terminated */
65};
66
67#define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
68
f4bd7a8f 69char *bfd_zmalloc PARAMS ((bfd_size_type size));
9846338e 70
fc723380
JG
71/* These routines allocate and free things on the BFD's obstack. Note
72 that realloc can never occur in place. */
4a81b561 73
6affd66a
KR
74PTR bfd_alloc PARAMS ((bfd *abfd, size_t size));
75PTR bfd_zalloc PARAMS ((bfd *abfd, size_t size));
4ee3b9be 76PTR bfd_realloc PARAMS ((bfd *abfd, PTR orig, size_t size));
6affd66a 77void bfd_alloc_grow PARAMS ((bfd *abfd, PTR thing, size_t size));
287c221d
PB
78PTR bfd_alloc_finish PARAMS ((bfd *abfd));
79PTR bfd_alloc_by_size_t PARAMS ((bfd *abfd, size_t wanted));
80
81#define bfd_release(x,y) (void) obstack_free(&(x->memory),y)
82
83
84bfd_size_type bfd_read PARAMS ((PTR ptr, bfd_size_type size,
85 bfd_size_type nitems, bfd *abfd));
86bfd_size_type bfd_write PARAMS ((CONST PTR ptr, bfd_size_type size,
87 bfd_size_type nitems, bfd *abfd));
88int bfd_seek PARAMS ((bfd* CONST abfd, CONST file_ptr fp,
89 CONST int direction));
90long bfd_tell PARAMS ((bfd *abfd));
91
b5b4294e
JG
92int bfd_flush PARAMS ((bfd *abfd));
93int bfd_stat PARAMS ((bfd *abfd, struct stat *));
94
287c221d 95bfd * _bfd_create_empty_archive_element_shell PARAMS ((bfd *obfd));
f4bd7a8f 96bfd * _bfd_look_for_bfd_in_cache PARAMS ((bfd *arch_bfd, file_ptr index));
b59f0276 97boolean _bfd_add_bfd_to_archive_cache PARAMS ((bfd *, file_ptr, bfd *));
287c221d 98boolean _bfd_generic_mkarchive PARAMS ((bfd *abfd));
b59f0276 99struct areltdata * _bfd_snarf_ar_hdr PARAMS ((bfd *abfd));
287c221d
PB
100bfd_target * bfd_generic_archive_p PARAMS ((bfd *abfd));
101boolean bfd_slurp_armap PARAMS ((bfd *abfd));
898728d4 102boolean bfd_slurp_bsd_armap_f2 PARAMS ((bfd *abfd));
287c221d
PB
103#define bfd_slurp_bsd_armap bfd_slurp_armap
104#define bfd_slurp_coff_armap bfd_slurp_armap
105boolean _bfd_slurp_extended_name_table PARAMS ((bfd *abfd));
106boolean _bfd_write_archive_contents PARAMS ((bfd *abfd));
f4bd7a8f
DM
107bfd *_bfd_get_elt_at_filepos PARAMS ((bfd *archive, file_ptr filepos));
108bfd * _bfd_new_bfd PARAMS ((void));
4a81b561
DHW
109
110#define DEFAULT_STRING_SPACE_SIZE 0x2000
287c221d
PB
111boolean bfd_add_to_string_table PARAMS ((char **table, char *new_string,
112 unsigned int *table_length,
113 char **free_ptr));
898728d4 114
287c221d
PB
115boolean bfd_false PARAMS ((bfd *ignore));
116boolean bfd_true PARAMS ((bfd *ignore));
117PTR bfd_nullvoidptr PARAMS ((bfd *ignore));
118int bfd_0 PARAMS ((bfd *ignore));
119unsigned int bfd_0u PARAMS ((bfd *ignore));
326e32d7 120long bfd_0l PARAMS ((bfd *ignore));
6812b607 121long _bfd_n1 PARAMS ((bfd *ignore));
287c221d
PB
122void bfd_void PARAMS ((bfd *ignore));
123
f4bd7a8f 124bfd * _bfd_new_bfd_contained_in PARAMS ((bfd *));
287c221d 125bfd_target * _bfd_dummy_target PARAMS ((bfd *abfd));
4a81b561 126
287c221d 127void bfd_dont_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 128 char *hdr));
287c221d 129void bfd_bsd_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 130 char *hdr));
287c221d 131void bfd_gnu_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 132 char *hdr));
4a81b561 133
287c221d 134boolean bsd_write_armap PARAMS ((bfd *arch, unsigned int elength,
01dd1b2b 135 struct orl *map, unsigned int orl_count, int stridx));
4a81b561 136
287c221d 137boolean coff_write_armap PARAMS ((bfd *arch, unsigned int elength,
01dd1b2b 138 struct orl *map, unsigned int orl_count, int stridx));
4a81b561 139
287c221d 140bfd * bfd_generic_openr_next_archived_file PARAMS ((bfd *archive,
2203f786 141 bfd *last_file));
4a81b561 142
287c221d 143int bfd_generic_stat_arch_elt PARAMS ((bfd *, struct stat *));
fc723380 144
6812b607
ILT
145\f
146/* Generic routines to use for BFD_JUMP_TABLE_GENERIC. Use
147 BFD_JUMP_TABLE_GENERIC (_bfd_generic). */
148
149#define _bfd_generic_close_and_cleanup bfd_true
150#define _bfd_generic_bfd_free_cached_info bfd_true
151#define _bfd_generic_new_section_hook \
152 ((boolean (*) PARAMS ((bfd *, asection *))) bfd_true)
153extern boolean _bfd_generic_get_section_contents
154 PARAMS ((bfd *, asection *, PTR location, file_ptr offset,
155 bfd_size_type count));
156
157/* Generic routines to use for BFD_JUMP_TABLE_COPY. Use
158 BFD_JUMP_TABLE_COPY (_bfd_generic). */
159
160#define _bfd_generic_bfd_copy_private_bfd_data \
161 ((boolean (*) PARAMS ((bfd *, bfd *))) bfd_true)
162#define _bfd_generic_bfd_copy_private_section_data \
163 ((boolean (*) PARAMS ((bfd *, asection *, bfd *, asection *))) bfd_true)
164
165/* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file
166 support. Use BFD_JUMP_TABLE_CORE (_bfd_nocore). */
167
168extern char *_bfd_nocore_core_file_failing_command PARAMS ((bfd *));
169extern int _bfd_nocore_core_file_failing_signal PARAMS ((bfd *));
170extern boolean _bfd_nocore_core_file_matches_executable_p
171 PARAMS ((bfd *, bfd *));
172
173/* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive
174 file support. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive). */
175
176#define _bfd_noarchive_slurp_armap bfd_false
177#define _bfd_noarchive_slurp_extended_name_table bfd_false
178#define _bfd_noarchive_truncate_arname \
179 ((void (*) PARAMS ((bfd *, const char *, char *))) bfd_void)
180#define _bfd_noarchive_write_armap \
181 ((boolean (*) \
182 PARAMS ((bfd *, unsigned int, struct orl *, unsigned int, int))) \
183 bfd_false)
184#define _bfd_noarchive_openr_next_archived_file \
185 ((bfd *(*) PARAMS ((bfd *, bfd *))) bfd_nullvoidptr)
186#define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt
187
188/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style
189 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd). */
190
191#define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap
192#define _bfd_archive_bsd_slurp_extended_name_table \
193 _bfd_slurp_extended_name_table
194#define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname
195#define _bfd_archive_bsd_write_armap bsd_write_armap
196#define _bfd_archive_bsd_openr_next_archived_file \
197 bfd_generic_openr_next_archived_file
198#define _bfd_archive_bsd_generic_stat_arch_elt \
199 bfd_generic_stat_arch_elt
200
201/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style
202 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff). */
203
204#define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap
205#define _bfd_archive_coff_slurp_extended_name_table \
206 _bfd_slurp_extended_name_table
207#define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname
208#define _bfd_archive_coff_write_armap coff_write_armap
209#define _bfd_archive_coff_openr_next_archived_file \
210 bfd_generic_openr_next_archived_file
211#define _bfd_archive_coff_generic_stat_arch_elt \
212 bfd_generic_stat_arch_elt
213
214/* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol
215 support. Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols). */
216
217#define _bfd_nosymbols_get_symtab_upper_bound _bfd_n1
218#define _bfd_nosymbols_get_symtab \
219 ((long (*) PARAMS ((bfd *, asymbol **))) _bfd_n1)
220#define _bfd_nosymbols_make_empty_symbol \
221 ((asymbol *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
222#define _bfd_nosymbols_print_symbol \
223 ((void (*) PARAMS ((bfd *, PTR, asymbol *, bfd_print_symbol_type))) bfd_void)
224#define _bfd_nosymbols_get_symbol_info \
225 ((void (*) PARAMS ((bfd *, asymbol *, symbol_info *))) bfd_void)
226#define _bfd_nosymbols_bfd_is_local_label \
227 ((boolean (*) PARAMS ((bfd *, asymbol *))) bfd_false)
228#define _bfd_nosymbols_get_lineno \
229 ((alent *(*) PARAMS ((bfd *, asymbol *))) bfd_nullvoidptr)
230#define _bfd_nosymbols_find_nearest_line \
231 ((boolean (*) \
232 PARAMS ((bfd *, asection *, asymbol **, bfd_vma, const char **, \
233 const char **, unsigned int *))) \
234 bfd_false)
235#define _bfd_nosymbols_bfd_make_debug_symbol \
236 ((asymbol *(*) PARAMS ((bfd *, PTR, unsigned long))) bfd_nullvoidptr)
237
238/* Routines to use for BFD_JUMP_TABLE_RELOCS when there is no reloc
239 support. Use BFD_JUMP_TABLE_RELOCS (_bfd_norelocs). */
240
241#define _bfd_norelocs_get_reloc_upper_bound \
242 ((long (*) PARAMS ((bfd *, asection *))) _bfd_n1)
243#define _bfd_norelocs_canonicalize_reloc \
244 ((long (*) PARAMS ((bfd *, asection *, arelent **, asymbol **))) _bfd_n1)
245#define _bfd_norelocs_bfd_reloc_type_lookup \
246 ((const reloc_howto_type *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) \
247 bfd_nullvoidptr)
248
249/* Routines to use for BFD_JUMP_TABLE_WRITE for targets which may not
250 be written. Use BFD_JUMP_TABLE_WRITE (_bfd_nowrite). */
251
252#define _bfd_nowrite_set_arch_mach \
253 ((boolean (*) PARAMS ((bfd *, enum bfd_architecture, unsigned long))) \
254 bfd_false)
255#define _bfd_nowrite_set_section_contents \
256 ((boolean (*) PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type))) \
257 bfd_false)
258
259/* Generic routines to use for BFD_JUMP_TABLE_WRITE. Use
260 BFD_JUMP_TABLE_WRITE (_bfd_generic). */
261
262#define _bfd_generic_set_arch_mach bfd_default_set_arch_mach
263extern boolean _bfd_generic_set_section_contents
264 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
265
266/* Routines to use for BFD_JUMP_TABLE_LINK for targets which do not
267 support linking. Use BFD_JUMP_TABLE_LINK (_bfd_nolink). */
268
269#define _bfd_nolink_sizeof_headers ((int (*) PARAMS ((bfd *, boolean))) bfd_0)
270#define _bfd_nolink_bfd_get_relocated_section_contents \
271 ((bfd_byte *(*) \
272 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, \
273 bfd_byte *, boolean, asymbol **))) \
274 bfd_nullvoidptr)
275#define _bfd_nolink_bfd_relax_section \
276 ((boolean (*) \
277 PARAMS ((bfd *, asection *, struct bfd_link_info *, boolean *))) \
278 bfd_false)
279#define _bfd_nolink_bfd_link_hash_table_create \
280 ((struct bfd_link_hash_table *(*) PARAMS ((bfd *))) bfd_nullvoidptr)
281#define _bfd_nolink_bfd_link_add_symbols \
282 ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
283#define _bfd_nolink_bfd_final_link \
284 ((boolean (*) PARAMS ((bfd *, struct bfd_link_info *))) bfd_false)
4ee3b9be
JL
285
286/* Routines to use for BFD_JUMP_TABLE_DYNAMIC for targets which do not
287 have dynamic symbols or relocs. Use BFD_JUMP_TABLE_DYNAMIC
288 (_bfd_nodynamic). */
289
290#define _bfd_nodynamic_get_dynamic_symtab_upper_bound _bfd_n1
291#define _bfd_nodynamic_canonicalize_dynamic_symtab \
292 ((long (*) PARAMS ((bfd *, asymbol **))) _bfd_n1)
293#define _bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_n1
294#define _bfd_nodynamic_canonicalize_dynamic_reloc \
295 ((long (*) PARAMS ((bfd *, arelent **, asymbol **))) _bfd_n1)
4c3721d5 296\f
f1cca647
ILT
297/* Generic routine to determine of the given symbol is a local
298 label. */
299extern boolean bfd_generic_is_local_label PARAMS ((bfd *, asymbol *));
300
4c3721d5
ILT
301/* A routine to create entries for a bfd_link_hash_table. */
302extern struct bfd_hash_entry *_bfd_link_hash_newfunc
303 PARAMS ((struct bfd_hash_entry *entry,
304 struct bfd_hash_table *table,
305 const char *string));
306
307/* Initialize a bfd_link_hash_table. */
308extern boolean _bfd_link_hash_table_init
309 PARAMS ((struct bfd_link_hash_table *, bfd *,
310 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
311 struct bfd_hash_table *,
312 const char *)));
313
314/* Generic link hash table creation routine. */
315extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
316 PARAMS ((bfd *));
317
318/* Generic add symbol routine. */
319extern boolean _bfd_generic_link_add_symbols
320 PARAMS ((bfd *, struct bfd_link_info *));
321
4335ce64
ILT
322/* Generic add symbol routine. This version is used by targets for
323 which the linker must collect constructors and destructors by name,
324 as the collect2 program does. */
325extern boolean _bfd_generic_link_add_symbols_collect
326 PARAMS ((bfd *, struct bfd_link_info *));
327
4c3721d5
ILT
328/* Generic archive add symbol routine. */
329extern boolean _bfd_generic_link_add_archive_symbols
330 PARAMS ((bfd *, struct bfd_link_info *,
331 boolean (*checkfn) (bfd *, struct bfd_link_info *, boolean *)));
332
333/* Forward declaration to avoid prototype errors. */
334typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
335
336/* Generic routine to add a single symbol. */
337extern boolean _bfd_generic_link_add_one_symbol
338 PARAMS ((struct bfd_link_info *, bfd *, const char *name, flagword,
339 asection *, bfd_vma, const char *, boolean copy,
f1cca647 340 boolean constructor, struct bfd_link_hash_entry **));
4c3721d5
ILT
341
342/* Generic link routine. */
343extern boolean _bfd_generic_final_link
344 PARAMS ((bfd *, struct bfd_link_info *));
345
f1cca647
ILT
346/* Generic reloc_link_order processing routine. */
347extern boolean _bfd_generic_reloc_link_order
348 PARAMS ((bfd *, struct bfd_link_info *, asection *,
349 struct bfd_link_order *));
350
4c3721d5
ILT
351/* Default link order processing routine. */
352extern boolean _bfd_default_link_order
353 PARAMS ((bfd *, struct bfd_link_info *, asection *,
354 struct bfd_link_order *));
355
f1cca647
ILT
356/* Count the number of reloc entries in a link order list. */
357extern unsigned int _bfd_count_link_order_relocs
358 PARAMS ((struct bfd_link_order *));
359
4c3721d5
ILT
360/* Final link relocation routine. */
361extern bfd_reloc_status_type _bfd_final_link_relocate
362 PARAMS ((const reloc_howto_type *, bfd *, asection *, bfd_byte *,
363 bfd_vma address, bfd_vma value, bfd_vma addend));
364
365/* Relocate a particular location by a howto and a value. */
366extern bfd_reloc_status_type _bfd_relocate_contents
367 PARAMS ((const reloc_howto_type *, bfd *, bfd_vma, bfd_byte *));
368\f
4a81b561
DHW
369/* Macros to tell if bfds are read or write enabled.
370
371 Note that bfds open for read may be scribbled into if the fd passed
372 to bfd_fdopenr is actually open both for read and write
373 simultaneously. However an output bfd will never be open for
374 read. Therefore sometimes you want to check bfd_read_p or
375 !bfd_read_p, and only sometimes bfd_write_p.
376*/
377
287c221d
PB
378#define bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
379#define bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
380
381void bfd_assert PARAMS ((char*,int));
4a81b561 382
4a81b561
DHW
383#define BFD_ASSERT(x) \
384{ if (!(x)) bfd_assert(__FILE__,__LINE__); }
385
386#define BFD_FAIL() \
387{ bfd_assert(__FILE__,__LINE__); }
388
287c221d 389FILE * bfd_cache_lookup_worker PARAMS ((bfd *));
4a81b561
DHW
390
391extern bfd *bfd_last_cache;
4a81b561
DHW
392
393/* Now Steve, what's the story here? */
394#ifdef lint
395#define itos(x) "l"
396#define stoi(x) 1
397#else
398#define itos(x) ((char*)(x))
399#define stoi(x) ((int)(x))
400#endif
69ebee86 401
4c3721d5 402/* List of supported target vectors, and the default vector (if
f4bd7a8f
DM
403 bfd_default_vector[0] is NULL, there is no default). */
404extern bfd_target *bfd_target_vector[];
405extern bfd_target *bfd_default_vector[];
4c3721d5 406
b8d69097 407/* And more follows */
6f715d66 408
fefb4b30
JG
409void
410bfd_check_init PARAMS ((void));
411
fefb4b30
JG
412void
413bfd_write_bigendian_4byte_int PARAMS ((bfd *abfd, int i));
414
3ceaa255 415unsigned int
fefb4b30
JG
416bfd_log2 PARAMS ((bfd_vma x));
417
6f715d66 418#define BFD_CACHE_MAX_OPEN 10
6f715d66 419extern bfd *bfd_last_cache;
e98e6ec1 420
6f715d66 421#define bfd_cache_lookup(x) \
0cda46cf
SC
422 ((x)==bfd_last_cache? \
423 (FILE*)(bfd_last_cache->iostream): \
424 bfd_cache_lookup_worker(x))
4ee3b9be
JL
425boolean
426bfd_cache_init PARAMS ((bfd *abfd));
427
fefb4b30 428boolean
c188b0be 429bfd_cache_close PARAMS ((bfd *abfd));
fefb4b30
JG
430
431FILE*
c188b0be 432bfd_open_file PARAMS ((bfd *abfd));
fefb4b30
JG
433
434FILE *
c188b0be 435bfd_cache_lookup_worker PARAMS ((bfd *abfd));
fefb4b30 436
80425e6c 437boolean
fefb4b30 438bfd_constructor_entry PARAMS ((bfd *abfd,
e98e6ec1
SC
439 asymbol **symbol_ptr_ptr,
440 CONST char*type));
fefb4b30 441
e2756048 442const struct reloc_howto_struct *
fefb4b30 443bfd_default_reloc_type_lookup
57a1867e 444 PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
fefb4b30
JG
445
446boolean
447bfd_generic_relax_section
448 PARAMS ((bfd *abfd,
d58b7049 449 asection *section,
4c3721d5 450 struct bfd_link_info *,
326e32d7 451 boolean *));
fefb4b30 452
e98e6ec1 453bfd_byte *
fefb4b30 454
287c221d 455bfd_generic_get_relocated_section_contents PARAMS ((bfd *abfd,
4c3721d5
ILT
456 struct bfd_link_info *link_info,
457 struct bfd_link_order *link_order,
14e3c2e4 458 bfd_byte *data,
4c3721d5
ILT
459 boolean relocateable,
460 asymbol **symbols));
14e3c2e4 461
e98e6ec1 462extern bfd_arch_info_type bfd_default_arch_struct;
fefb4b30
JG
463boolean
464bfd_default_set_arch_mach PARAMS ((bfd *abfd,
e98e6ec1
SC
465 enum bfd_architecture arch,
466 unsigned long mach));
fefb4b30 467
c188b0be 468void
fefb4b30
JG
469bfd_arch_init PARAMS ((void));
470
471void
c188b0be 472bfd_arch_linkin PARAMS ((bfd_arch_info_type *ptr));
fefb4b30
JG
473
474CONST bfd_arch_info_type *
475bfd_default_compatible
476 PARAMS ((CONST bfd_arch_info_type *a,
e98e6ec1 477 CONST bfd_arch_info_type *b));
fefb4b30
JG
478
479boolean
c188b0be 480bfd_default_scan PARAMS ((CONST struct bfd_arch_info *info, CONST char *string));
fefb4b30 481
3ceaa255 482struct elf_internal_shdr *
6affd66a 483bfd_elf_find_section PARAMS ((bfd *abfd, char *name));
fefb4b30 484
This page took 0.139178 seconds and 4 git commands to generate.