Tidy ld/plugin.c
[deliverable/binutils-gdb.git] / bfd / libbfd-in.h
CommitLineData
252b5132
RH
1/* libbfd.h -- Declarations used by bfd library *implementation*.
2 (This include file is not for users of the library.)
7c192733 3
82704155 4 Copyright (C) 1990-2019 Free Software Foundation, Inc.
7c192733 5
252b5132
RH
6 Written by Cygnus Support.
7
cd123cb7
NC
8 This file is part of BFD, the Binary File Descriptor library.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
23 MA 02110-1301, USA. */
252b5132 24
0b439543
AM
25#ifndef _LIBBFD_H
26#define _LIBBFD_H 1
27
8722de9c
AM
28#ifndef ATTRIBUTE_HIDDEN
29#if HAVE_HIDDEN
30#define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
31#else
32#define ATTRIBUTE_HIDDEN
33#endif
34#endif
35
109f7096
BE
36#include "hashtab.h"
37
55172d69
PA
38#ifdef __cplusplus
39extern "C" {
40#endif
41
252b5132
RH
42/* If you want to read and write large blocks, you might want to do it
43 in quanta of this amount */
44#define DEFAULT_BUFFERSIZE 8192
45
46/* Set a tdata field. Can't use the other macros for this, since they
47 do casts, and casting to the left of assignment isn't portable. */
c58b9523 48#define set_tdata(bfd, v) ((bfd)->tdata.any = (v))
252b5132
RH
49
50/* If BFD_IN_MEMORY is set for a BFD, then the iostream fields points
51 to an instance of this structure. */
52
53struct bfd_in_memory
54{
55 /* Size of buffer. */
56 bfd_size_type size;
57 /* Buffer holding contents of BFD. */
58 bfd_byte *buffer;
59};
60
66eb6687
AM
61struct section_hash_entry
62{
63 struct bfd_hash_entry root;
64 asection section;
65};
66
7cf7fcc8 67/* Unique section id. */
8722de9c 68extern unsigned int _bfd_section_id ATTRIBUTE_HIDDEN;
7cf7fcc8 69
252b5132
RH
70/* tdata for an archive. For an input archive, cache
71 needs to be free()'d. For an output archive, symdefs do. */
72
f1bb16f8
NC
73struct artdata
74{
252b5132
RH
75 file_ptr first_file_filepos;
76 /* Speed up searching the armap */
109f7096 77 htab_t cache;
f1bb16f8
NC
78 bfd *archive_head; /* Only interesting in output routines. */
79 carsym *symdefs; /* The symdef entries. */
80 symindex symdef_count; /* How many there are. */
81 char *extended_names; /* Clever intel extension. */
82 bfd_size_type extended_names_size; /* Size of extended names. */
83 /* When more compilers are standard C, this can be a time_t. */
252b5132
RH
84 long armap_timestamp; /* Timestamp value written into armap.
85 This is used for BSD archives to check
86 that the timestamp is recent enough
87 for the BSD linker to not complain,
88 just before we finish writing an
89 archive. */
90 file_ptr armap_datepos; /* Position within archive to seek to
91 rewrite the date field. */
c58b9523 92 void *tdata; /* Backend specific information. */
252b5132
RH
93};
94
95#define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
96
97/* Goes in bfd's arelt_data slot */
f1bb16f8
NC
98struct areltdata
99{
100 char * arch_header; /* It's actually a string. */
101 bfd_size_type parsed_size; /* Octets of filesize not including ar_hdr. */
102 bfd_size_type extra_size; /* BSD4.4: extra bytes after the header. */
103 char *filename; /* Null-terminated. */
104 file_ptr origin; /* For element of a thin archive. */
eeb1f9ae
AM
105 void *parent_cache; /* Where and how to find this member. */
106 file_ptr key;
252b5132
RH
107};
108
109#define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
110
c58b9523 111extern void *bfd_malloc
8722de9c 112 (bfd_size_type) ATTRIBUTE_HIDDEN;
c58b9523 113extern void *bfd_realloc
8722de9c 114 (void *, bfd_size_type) ATTRIBUTE_HIDDEN;
515ef31d 115extern void *bfd_realloc_or_free
8722de9c 116 (void *, bfd_size_type) ATTRIBUTE_HIDDEN;
c58b9523 117extern void *bfd_zmalloc
8722de9c 118 (bfd_size_type) ATTRIBUTE_HIDDEN;
d0fb9a8d 119extern void *bfd_malloc2
8722de9c 120 (bfd_size_type, bfd_size_type) ATTRIBUTE_HIDDEN;
d0fb9a8d 121extern void *bfd_realloc2
8722de9c 122 (void *, bfd_size_type, bfd_size_type) ATTRIBUTE_HIDDEN;
d0fb9a8d 123extern void *bfd_zmalloc2
8722de9c 124 (bfd_size_type, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132 125
89bdc77e
AM
126static inline char *
127bfd_strdup (const char *str)
128{
129 size_t len = strlen (str) + 1;
130 char *buf = bfd_malloc (len);
131 if (buf != NULL)
132 memcpy (buf, str, len);
133 return buf;
134}
252b5132
RH
135/* These routines allocate and free things on the BFD's objalloc. */
136
d0fb9a8d 137extern void *bfd_alloc2
8722de9c 138 (bfd *, bfd_size_type, bfd_size_type) ATTRIBUTE_HIDDEN;
d0fb9a8d 139extern void *bfd_zalloc2
8722de9c 140 (bfd *, bfd_size_type, bfd_size_type) ATTRIBUTE_HIDDEN;
b34976b6 141extern void bfd_release
8722de9c
AM
142 (bfd *, void *) ATTRIBUTE_HIDDEN;
143
144extern bfd * _bfd_create_empty_archive_element_shell
145 (bfd *) ATTRIBUTE_HIDDEN;
146extern bfd * _bfd_look_for_bfd_in_cache
147 (bfd *, file_ptr) ATTRIBUTE_HIDDEN;
148extern bfd_boolean _bfd_add_bfd_to_archive_cache
149 (bfd *, file_ptr, bfd *) ATTRIBUTE_HIDDEN;
150extern bfd_boolean _bfd_generic_mkarchive
151 (bfd *) ATTRIBUTE_HIDDEN;
152extern char *_bfd_append_relative_path
153 (bfd *, char *) ATTRIBUTE_HIDDEN;
154extern const bfd_target *bfd_generic_archive_p
155 (bfd *) ATTRIBUTE_HIDDEN;
156extern bfd_boolean bfd_slurp_armap
157 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
158#define bfd_slurp_bsd_armap bfd_slurp_armap
159#define bfd_slurp_coff_armap bfd_slurp_armap
8722de9c
AM
160extern bfd_boolean _bfd_archive_64_bit_slurp_armap
161 (bfd *) ATTRIBUTE_HIDDEN;
162extern bfd_boolean _bfd_archive_64_bit_write_armap
163 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
e6cc316a
L
164#define _bfd_archive_64_bit_slurp_extended_name_table \
165 _bfd_slurp_extended_name_table
166#define _bfd_archive_64_bit_construct_extended_name_table \
167 _bfd_archive_coff_construct_extended_name_table
168#define _bfd_archive_64_bit_truncate_arname \
169 bfd_dont_truncate_arname
170#define _bfd_archive_64_bit_read_ar_hdr \
171 _bfd_generic_read_ar_hdr
172#define _bfd_archive_64_bit_write_ar_hdr \
173 _bfd_generic_write_ar_hdr
174#define _bfd_archive_64_bit_openr_next_archived_file \
175 bfd_generic_openr_next_archived_file
176#define _bfd_archive_64_bit_get_elt_at_index \
177 _bfd_generic_get_elt_at_index
178#define _bfd_archive_64_bit_generic_stat_arch_elt \
179 bfd_generic_stat_arch_elt
d00dd7dc 180#define _bfd_archive_64_bit_update_armap_timestamp _bfd_bool_bfd_true
e6cc316a 181
8722de9c
AM
182extern bfd_boolean _bfd_slurp_extended_name_table
183 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 184extern bfd_boolean _bfd_construct_extended_name_table
8722de9c
AM
185 (bfd *, bfd_boolean, char **, bfd_size_type *) ATTRIBUTE_HIDDEN;
186extern bfd_boolean _bfd_write_archive_contents
187 (bfd *) ATTRIBUTE_HIDDEN;
188extern bfd_boolean _bfd_compute_and_write_armap
189 (bfd *, unsigned int) ATTRIBUTE_HIDDEN;
190extern bfd *_bfd_get_elt_at_filepos
191 (bfd *, file_ptr) ATTRIBUTE_HIDDEN;
b34976b6 192extern bfd *_bfd_generic_get_elt_at_index
8722de9c
AM
193 (bfd *, symindex) ATTRIBUTE_HIDDEN;
194extern bfd * _bfd_new_bfd
195 (void) ATTRIBUTE_HIDDEN;
196extern bfd_boolean _bfd_free_cached_info
197 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 198
d00dd7dc 199extern bfd_boolean _bfd_bool_bfd_false
8722de9c 200 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 201extern bfd_boolean _bfd_bool_bfd_asymbol_false
8722de9c 202 (bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc 203extern bfd_boolean _bfd_bool_bfd_false_error
8722de9c 204 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 205extern bfd_boolean _bfd_bool_bfd_link_false_error
8722de9c 206 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 207extern bfd_boolean _bfd_bool_bfd_true
8722de9c 208 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 209extern bfd_boolean _bfd_bool_bfd_link_true
8722de9c 210 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 211extern bfd_boolean _bfd_bool_bfd_bfd_true
8722de9c 212 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 213extern bfd_boolean _bfd_bool_bfd_uint_true
8722de9c 214 (bfd *, unsigned int) ATTRIBUTE_HIDDEN;
d00dd7dc 215extern bfd_boolean _bfd_bool_bfd_asection_bfd_asection_true
8722de9c 216 (bfd *, asection *, bfd *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 217extern bfd_boolean _bfd_bool_bfd_asymbol_bfd_asymbol_true
8722de9c 218 (bfd *, asymbol *, bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc 219extern bfd_boolean _bfd_bool_bfd_ptr_true
8722de9c 220 (bfd *, void *) ATTRIBUTE_HIDDEN;
d00dd7dc 221extern void *_bfd_ptr_bfd_null_error
8722de9c 222 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 223extern int _bfd_int_bfd_0
8722de9c 224 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 225extern unsigned int _bfd_uint_bfd_0
8722de9c 226 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 227extern long _bfd_long_bfd_0
8722de9c 228 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 229extern long _bfd_long_bfd_n1_error
8722de9c 230 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 231extern void _bfd_void_bfd
8722de9c 232 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 233extern void _bfd_void_bfd_link
8722de9c 234 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 235extern void _bfd_void_bfd_asection
8722de9c 236 (bfd *, asection *) ATTRIBUTE_HIDDEN;
b34976b6 237
8722de9c
AM
238extern bfd *_bfd_new_bfd_contained_in
239 (bfd *) ATTRIBUTE_HIDDEN;
240extern const bfd_target *_bfd_dummy_target
241 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 242
8722de9c
AM
243extern void bfd_dont_truncate_arname
244 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
245extern void bfd_bsd_truncate_arname
246 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
247extern void bfd_gnu_truncate_arname
248 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
b34976b6 249
8722de9c
AM
250extern bfd_boolean _bfd_bsd_write_armap
251 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
b34976b6 252
8722de9c
AM
253extern bfd_boolean _bfd_coff_write_armap
254 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
b34976b6 255
c58b9523 256extern void *_bfd_generic_read_ar_hdr
8722de9c 257 (bfd *) ATTRIBUTE_HIDDEN;
390c0e42 258extern void _bfd_ar_spacepad
8722de9c 259 (char *, size_t, const char *, long) ATTRIBUTE_HIDDEN;
f1bb16f8 260extern bfd_boolean _bfd_ar_sizepad
8722de9c 261 (char *, size_t, bfd_size_type) ATTRIBUTE_HIDDEN;
b34976b6 262
c58b9523 263extern void *_bfd_generic_read_ar_hdr_mag
8722de9c 264 (bfd *, const char *) ATTRIBUTE_HIDDEN;
b34976b6 265
8f95b6e4 266extern bfd_boolean _bfd_generic_write_ar_hdr
8722de9c 267 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
8f95b6e4
TG
268
269extern bfd_boolean _bfd_bsd44_write_ar_hdr
8722de9c 270 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
8f95b6e4 271
8722de9c
AM
272extern bfd * bfd_generic_openr_next_archived_file
273 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
b34976b6 274
8722de9c
AM
275extern int bfd_generic_stat_arch_elt
276 (bfd *, struct stat *) ATTRIBUTE_HIDDEN;
252b5132
RH
277
278#define _bfd_read_ar_hdr(abfd) \
07d6d2b8
AM
279 BFD_SEND (abfd, _bfd_read_ar_hdr_fn, (abfd))
280#define _bfd_write_ar_hdr(archive, abfd) \
281 BFD_SEND (abfd, _bfd_write_ar_hdr_fn, (archive, abfd))
252b5132
RH
282\f
283/* Generic routines to use for BFD_JUMP_TABLE_GENERIC. Use
284 BFD_JUMP_TABLE_GENERIC (_bfd_generic). */
285
eeb1f9ae
AM
286#define _bfd_generic_close_and_cleanup _bfd_archive_close_and_cleanup
287extern bfd_boolean _bfd_archive_close_and_cleanup
8722de9c 288 (bfd *) ATTRIBUTE_HIDDEN;
eac61af6 289extern void _bfd_unlink_from_archive_parent (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 290#define _bfd_generic_bfd_free_cached_info _bfd_bool_bfd_true
f592407e 291extern bfd_boolean _bfd_generic_new_section_hook
8722de9c 292 (bfd *, asection *) ATTRIBUTE_HIDDEN;
b34976b6 293extern bfd_boolean _bfd_generic_get_section_contents
8722de9c 294 (bfd *, asection *, void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
b34976b6 295extern bfd_boolean _bfd_generic_get_section_contents_in_window
8722de9c 296 (bfd *, asection *, bfd_window *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
297
298/* Generic routines to use for BFD_JUMP_TABLE_COPY. Use
299 BFD_JUMP_TABLE_COPY (_bfd_generic). */
300
d00dd7dc 301#define _bfd_generic_bfd_copy_private_bfd_data _bfd_bool_bfd_bfd_true
252b5132 302#define _bfd_generic_bfd_merge_private_bfd_data \
d00dd7dc
AM
303 _bfd_bool_bfd_link_true
304#define _bfd_generic_bfd_set_private_flags _bfd_bool_bfd_uint_true
252b5132 305#define _bfd_generic_bfd_copy_private_section_data \
d00dd7dc 306 _bfd_bool_bfd_asection_bfd_asection_true
252b5132 307#define _bfd_generic_bfd_copy_private_symbol_data \
d00dd7dc
AM
308 _bfd_bool_bfd_asymbol_bfd_asymbol_true
309#define _bfd_generic_bfd_copy_private_header_data _bfd_bool_bfd_bfd_true
310#define _bfd_generic_bfd_print_private_bfd_data _bfd_bool_bfd_ptr_true
252b5132 311
ccd2ec6a 312extern bfd_boolean _bfd_generic_init_private_section_data
8722de9c
AM
313 (bfd *, asection *, bfd *, asection *, struct bfd_link_info *)
314 ATTRIBUTE_HIDDEN;
ccd2ec6a 315
252b5132
RH
316/* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file
317 support. Use BFD_JUMP_TABLE_CORE (_bfd_nocore). */
318
b34976b6 319extern char *_bfd_nocore_core_file_failing_command
8722de9c 320 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 321extern int _bfd_nocore_core_file_failing_signal
8722de9c 322 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 323extern bfd_boolean _bfd_nocore_core_file_matches_executable_p
8722de9c 324 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
261b8d08 325extern int _bfd_nocore_core_file_pid
8722de9c 326 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
327
328/* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive
329 file support. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive). */
330
d00dd7dc
AM
331#define _bfd_noarchive_slurp_armap _bfd_bool_bfd_false_error
332#define _bfd_noarchive_slurp_extended_name_table _bfd_bool_bfd_false_error
333extern bfd_boolean _bfd_noarchive_construct_extended_name_table
8722de9c 334 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
d00dd7dc 335extern void _bfd_noarchive_truncate_arname
8722de9c 336 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
d00dd7dc 337extern bfd_boolean _bfd_noarchive_write_armap
8722de9c 338 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
339#define _bfd_noarchive_read_ar_hdr _bfd_ptr_bfd_null_error
340extern bfd_boolean _bfd_noarchive_write_ar_hdr
8722de9c 341 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
342extern bfd *
343_bfd_noarchive_openr_next_archived_file
8722de9c 344 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 345extern bfd * _bfd_noarchive_get_elt_at_index
8722de9c 346 (bfd *, symindex) ATTRIBUTE_HIDDEN;
252b5132 347#define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt
d00dd7dc 348#define _bfd_noarchive_update_armap_timestamp _bfd_bool_bfd_false_error
252b5132
RH
349
350/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style
351 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd). */
352
353#define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap
354#define _bfd_archive_bsd_slurp_extended_name_table \
355 _bfd_slurp_extended_name_table
b34976b6 356extern bfd_boolean _bfd_archive_bsd_construct_extended_name_table
8722de9c 357 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
252b5132 358#define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname
7ec22e0f 359#define _bfd_archive_bsd_write_armap _bfd_bsd_write_armap
252b5132 360#define _bfd_archive_bsd_read_ar_hdr _bfd_generic_read_ar_hdr
8f95b6e4 361#define _bfd_archive_bsd_write_ar_hdr _bfd_generic_write_ar_hdr
252b5132
RH
362#define _bfd_archive_bsd_openr_next_archived_file \
363 bfd_generic_openr_next_archived_file
364#define _bfd_archive_bsd_get_elt_at_index _bfd_generic_get_elt_at_index
365#define _bfd_archive_bsd_generic_stat_arch_elt \
366 bfd_generic_stat_arch_elt
b34976b6 367extern bfd_boolean _bfd_archive_bsd_update_armap_timestamp
8722de9c 368 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
369
370/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style
371 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff). */
372
373#define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap
374#define _bfd_archive_coff_slurp_extended_name_table \
375 _bfd_slurp_extended_name_table
b34976b6 376extern bfd_boolean _bfd_archive_coff_construct_extended_name_table
8722de9c 377 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
252b5132 378#define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname
7ec22e0f 379#define _bfd_archive_coff_write_armap _bfd_coff_write_armap
252b5132 380#define _bfd_archive_coff_read_ar_hdr _bfd_generic_read_ar_hdr
8f95b6e4 381#define _bfd_archive_coff_write_ar_hdr _bfd_generic_write_ar_hdr
252b5132
RH
382#define _bfd_archive_coff_openr_next_archived_file \
383 bfd_generic_openr_next_archived_file
384#define _bfd_archive_coff_get_elt_at_index _bfd_generic_get_elt_at_index
385#define _bfd_archive_coff_generic_stat_arch_elt \
386 bfd_generic_stat_arch_elt
d00dd7dc 387#define _bfd_archive_coff_update_armap_timestamp _bfd_bool_bfd_true
252b5132 388
8f95b6e4
TG
389/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD4.4 style
390 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd44). */
391
392#define _bfd_archive_bsd44_slurp_armap bfd_slurp_bsd_armap
393#define _bfd_archive_bsd44_slurp_extended_name_table \
394 _bfd_slurp_extended_name_table
395extern bfd_boolean _bfd_archive_bsd44_construct_extended_name_table
8722de9c 396 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
8f95b6e4 397#define _bfd_archive_bsd44_truncate_arname bfd_bsd_truncate_arname
7ec22e0f 398#define _bfd_archive_bsd44_write_armap _bfd_bsd_write_armap
8f95b6e4
TG
399#define _bfd_archive_bsd44_read_ar_hdr _bfd_generic_read_ar_hdr
400#define _bfd_archive_bsd44_write_ar_hdr _bfd_bsd44_write_ar_hdr
401#define _bfd_archive_bsd44_openr_next_archived_file \
402 bfd_generic_openr_next_archived_file
403#define _bfd_archive_bsd44_get_elt_at_index _bfd_generic_get_elt_at_index
404#define _bfd_archive_bsd44_generic_stat_arch_elt \
405 bfd_generic_stat_arch_elt
406#define _bfd_archive_bsd44_update_armap_timestamp \
407 _bfd_archive_bsd_update_armap_timestamp
408
4b544b64
TG
409/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get VMS style
410 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_vms_lib). Some of them
f0d19df9 411 are irrelevant. */
4b544b64 412
8722de9c
AM
413extern bfd_boolean _bfd_vms_lib_write_archive_contents
414 (bfd *) ATTRIBUTE_HIDDEN;
f0d19df9
AM
415#define _bfd_vms_lib_slurp_armap _bfd_noarchive_slurp_armap
416#define _bfd_vms_lib_slurp_extended_name_table \
417 _bfd_noarchive_slurp_extended_name_table
418#define _bfd_vms_lib_construct_extended_name_table \
419 _bfd_noarchive_construct_extended_name_table
420#define _bfd_vms_lib_truncate_arname _bfd_noarchive_truncate_arname
421#define _bfd_vms_lib_write_armap _bfd_noarchive_write_armap
422#define _bfd_vms_lib_read_ar_hdr _bfd_noarchive_read_ar_hdr
423#define _bfd_vms_lib_write_ar_hdr _bfd_noarchive_write_ar_hdr
8722de9c
AM
424extern bfd *_bfd_vms_lib_openr_next_archived_file
425 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
426extern bfd *_bfd_vms_lib_get_elt_at_index
427 (bfd *, symindex) ATTRIBUTE_HIDDEN;
428extern int _bfd_vms_lib_generic_stat_arch_elt
429 (bfd *, struct stat *) ATTRIBUTE_HIDDEN;
d00dd7dc 430#define _bfd_vms_lib_update_armap_timestamp _bfd_bool_bfd_true
4b544b64
TG
431
432/* Extra routines for VMS style archives. */
433
8722de9c
AM
434extern symindex _bfd_vms_lib_find_symbol
435 (bfd *, const char *) ATTRIBUTE_HIDDEN;
436extern bfd *_bfd_vms_lib_get_imagelib_file
437 (bfd *) ATTRIBUTE_HIDDEN;
438extern const bfd_target *_bfd_vms_lib_alpha_archive_p
439 (bfd *) ATTRIBUTE_HIDDEN;
440extern const bfd_target *_bfd_vms_lib_ia64_archive_p
441 (bfd *) ATTRIBUTE_HIDDEN;
442extern bfd_boolean _bfd_vms_lib_alpha_mkarchive
443 (bfd *) ATTRIBUTE_HIDDEN;
444extern bfd_boolean _bfd_vms_lib_ia64_mkarchive
445 (bfd *) ATTRIBUTE_HIDDEN;
4b544b64 446
252b5132
RH
447/* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol
448 support. Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols). */
449
d00dd7dc
AM
450#define _bfd_nosymbols_get_symtab_upper_bound _bfd_long_bfd_n1_error
451extern long _bfd_nosymbols_canonicalize_symtab
8722de9c 452 (bfd *, asymbol **) ATTRIBUTE_HIDDEN;
3f3c5c34 453#define _bfd_nosymbols_make_empty_symbol _bfd_generic_make_empty_symbol
d00dd7dc 454extern void _bfd_nosymbols_print_symbol
8722de9c 455 (bfd *, void *, asymbol *, bfd_print_symbol_type) ATTRIBUTE_HIDDEN;
d00dd7dc 456extern void _bfd_nosymbols_get_symbol_info
8722de9c 457 (bfd *, asymbol *, symbol_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 458extern const char * _bfd_nosymbols_get_symbol_version_string
8722de9c 459 (bfd *, asymbol *, bfd_boolean *) ATTRIBUTE_HIDDEN;
d00dd7dc 460extern bfd_boolean _bfd_nosymbols_bfd_is_local_label_name
8722de9c 461 (bfd *, const char *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
462#define _bfd_nosymbols_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
463extern alent *_bfd_nosymbols_get_lineno
8722de9c 464 (bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
465extern bfd_boolean _bfd_nosymbols_find_nearest_line
466 (bfd *, asymbol **, asection *, bfd_vma,
8722de9c
AM
467 const char **, const char **, unsigned int *, unsigned int *)
468 ATTRIBUTE_HIDDEN;
d00dd7dc 469extern bfd_boolean _bfd_nosymbols_find_line
8722de9c
AM
470 (bfd *, asymbol **, asymbol *, const char **, unsigned int *)
471 ATTRIBUTE_HIDDEN;
d00dd7dc 472extern bfd_boolean _bfd_nosymbols_find_inliner_info
8722de9c 473 (bfd *, const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
d00dd7dc 474extern asymbol *_bfd_nosymbols_bfd_make_debug_symbol
8722de9c 475 (bfd *, void *, unsigned long) ATTRIBUTE_HIDDEN;
d00dd7dc 476extern long _bfd_nosymbols_read_minisymbols
8722de9c 477 (bfd *, bfd_boolean, void **, unsigned int *) ATTRIBUTE_HIDDEN;
d00dd7dc 478extern asymbol *_bfd_nosymbols_minisymbol_to_symbol
8722de9c 479 (bfd *, bfd_boolean, const void *, asymbol *) ATTRIBUTE_HIDDEN;
252b5132
RH
480
481/* Routines to use for BFD_JUMP_TABLE_RELOCS when there is no reloc
482 support. Use BFD_JUMP_TABLE_RELOCS (_bfd_norelocs). */
483
8722de9c
AM
484extern long _bfd_norelocs_get_reloc_upper_bound
485 (bfd *, asection *) ATTRIBUTE_HIDDEN;
486extern long _bfd_norelocs_canonicalize_reloc
487 (bfd *, asection *, arelent **, asymbol **) ATTRIBUTE_HIDDEN;
488extern void _bfd_norelocs_set_reloc
489 (bfd *, asection *, arelent **, unsigned int) ATTRIBUTE_HIDDEN;
d00dd7dc 490extern reloc_howto_type *_bfd_norelocs_bfd_reloc_type_lookup
8722de9c 491 (bfd *, bfd_reloc_code_real_type) ATTRIBUTE_HIDDEN;
d00dd7dc 492extern reloc_howto_type *_bfd_norelocs_bfd_reloc_name_lookup
8722de9c 493 (bfd *, const char *) ATTRIBUTE_HIDDEN;
252b5132
RH
494
495/* Routines to use for BFD_JUMP_TABLE_WRITE for targets which may not
496 be written. Use BFD_JUMP_TABLE_WRITE (_bfd_nowrite). */
497
d00dd7dc 498extern bfd_boolean _bfd_nowrite_set_arch_mach
8722de9c 499 (bfd *, enum bfd_architecture, unsigned long) ATTRIBUTE_HIDDEN;
d00dd7dc 500extern bfd_boolean _bfd_nowrite_set_section_contents
8722de9c 501 (bfd *, asection *, const void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
502
503/* Generic routines to use for BFD_JUMP_TABLE_WRITE. Use
504 BFD_JUMP_TABLE_WRITE (_bfd_generic). */
505
506#define _bfd_generic_set_arch_mach bfd_default_set_arch_mach
b34976b6 507extern bfd_boolean _bfd_generic_set_section_contents
8722de9c 508 (bfd *, asection *, const void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
509
510/* Routines to use for BFD_JUMP_TABLE_LINK for targets which do not
511 support linking. Use BFD_JUMP_TABLE_LINK (_bfd_nolink). */
512
d00dd7dc 513extern int _bfd_nolink_sizeof_headers
8722de9c 514 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
515extern bfd_byte *_bfd_nolink_bfd_get_relocated_section_contents
516 (bfd *, struct bfd_link_info *, struct bfd_link_order *,
8722de9c 517 bfd_byte *, bfd_boolean, asymbol **) ATTRIBUTE_HIDDEN;
d00dd7dc 518extern bfd_boolean _bfd_nolink_bfd_relax_section
8722de9c 519 (bfd *, asection *, struct bfd_link_info *, bfd_boolean *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
520#define _bfd_nolink_bfd_gc_sections _bfd_bool_bfd_link_false_error
521extern bfd_boolean _bfd_nolink_bfd_lookup_section_flags
8722de9c 522 (struct bfd_link_info *, struct flag_info *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
523#define _bfd_nolink_bfd_merge_sections _bfd_bool_bfd_link_false_error
524extern bfd_boolean _bfd_nolink_bfd_is_group_section
8722de9c 525 (bfd *, const asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 526extern bfd_boolean _bfd_nolink_bfd_discard_group
8722de9c 527 (bfd *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 528extern struct bfd_link_hash_table *_bfd_nolink_bfd_link_hash_table_create
8722de9c 529 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
530#define _bfd_nolink_bfd_link_add_symbols _bfd_bool_bfd_link_false_error
531extern void _bfd_nolink_bfd_link_just_syms
8722de9c 532 (asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 533extern void _bfd_nolink_bfd_copy_link_hash_symbol_type
8722de9c
AM
534 (bfd *, struct bfd_link_hash_entry *, struct bfd_link_hash_entry *)
535 ATTRIBUTE_HIDDEN;
d00dd7dc
AM
536#define _bfd_nolink_bfd_final_link _bfd_bool_bfd_link_false_error
537extern bfd_boolean _bfd_nolink_bfd_link_split_section
8722de9c 538 (bfd *, struct bfd_section *) ATTRIBUTE_HIDDEN;
d00dd7dc 539extern bfd_boolean _bfd_nolink_section_already_linked
8722de9c 540 (bfd *, asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 541extern bfd_boolean _bfd_nolink_bfd_define_common_symbol
8722de9c
AM
542 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *)
543 ATTRIBUTE_HIDDEN;
34a87bb0
L
544#define _bfd_nolink_bfd_link_hide_symbol \
545 _bfd_generic_link_hide_symbol
d00dd7dc 546extern struct bfd_link_hash_entry *_bfd_nolink_bfd_define_start_stop
8722de9c 547 (struct bfd_link_info *, const char *, asection *) ATTRIBUTE_HIDDEN;
4f3b23b3
NC
548#define _bfd_nolink_bfd_link_check_relocs \
549 _bfd_generic_link_check_relocs
252b5132
RH
550
551/* Routines to use for BFD_JUMP_TABLE_DYNAMIC for targets which do not
552 have dynamic symbols or relocs. Use BFD_JUMP_TABLE_DYNAMIC
553 (_bfd_nodynamic). */
554
d00dd7dc 555#define _bfd_nodynamic_get_dynamic_symtab_upper_bound _bfd_long_bfd_n1_error
252b5132 556#define _bfd_nodynamic_canonicalize_dynamic_symtab \
d00dd7dc
AM
557 _bfd_nosymbols_canonicalize_symtab
558extern long _bfd_nodynamic_get_synthetic_symtab
8722de9c 559 (bfd *, long, asymbol **, long, asymbol **, asymbol **) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
560#define _bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_long_bfd_n1_error
561extern long _bfd_nodynamic_canonicalize_dynamic_reloc
8722de9c 562 (bfd *, arelent **, asymbol **) ATTRIBUTE_HIDDEN;
252b5132
RH
563\f
564/* Generic routine to determine of the given symbol is a local
565 label. */
b34976b6 566extern bfd_boolean bfd_generic_is_local_label_name
8722de9c 567 (bfd *, const char *) ATTRIBUTE_HIDDEN;
252b5132
RH
568
569/* Generic minisymbol routines. */
570extern long _bfd_generic_read_minisymbols
8722de9c 571 (bfd *, bfd_boolean, void **, unsigned int *) ATTRIBUTE_HIDDEN;
252b5132 572extern asymbol *_bfd_generic_minisymbol_to_symbol
8722de9c 573 (bfd *, bfd_boolean, const void *, asymbol *) ATTRIBUTE_HIDDEN;
252b5132
RH
574
575/* Find the nearest line using .stab/.stabstr sections. */
b34976b6 576extern bfd_boolean _bfd_stab_section_find_nearest_line
c58b9523 577 (bfd *, asymbol **, asection *, bfd_vma, bfd_boolean *,
8722de9c 578 const char **, const char **, unsigned int *, void **) ATTRIBUTE_HIDDEN;
252b5132 579
2db3311b 580/* Find the nearest line using DWARF 1 debugging information. */
b34976b6 581extern bfd_boolean _bfd_dwarf1_find_nearest_line
fb167eb2 582 (bfd *, asymbol **, asection *, bfd_vma,
8722de9c 583 const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
252b5132 584
fc28f9aa
TG
585struct dwarf_debug_section
586{
68d20676
NC
587 const char * uncompressed_name;
588 const char * compressed_name;
fc28f9aa
TG
589};
590
591/* Map of uncompressed DWARF debug section name to compressed one. It
592 is terminated by NULL uncompressed_name. */
593
8722de9c 594extern const struct dwarf_debug_section dwarf_debug_sections[] ATTRIBUTE_HIDDEN;
fc28f9aa 595
252b5132 596/* Find the nearest line using DWARF 2 debugging information. */
b34976b6 597extern bfd_boolean _bfd_dwarf2_find_nearest_line
fb167eb2
AM
598 (bfd *, asymbol **, asymbol *, asection *, bfd_vma,
599 const char **, const char **, unsigned int *, unsigned int *,
9defd221 600 const struct dwarf_debug_section *, void **) ATTRIBUTE_HIDDEN;
9b8d1a36 601
425bd9e1
NC
602/* Find the bias between DWARF addresses and real addresses. */
603extern bfd_signed_vma _bfd_dwarf2_find_symbol_bias
8722de9c 604 (asymbol **, void **) ATTRIBUTE_HIDDEN;
1b786873 605
4ab527b0
FF
606/* Find inliner info after calling bfd_find_nearest_line. */
607extern bfd_boolean _bfd_dwarf2_find_inliner_info
8722de9c
AM
608 (bfd *, const char **, const char **, unsigned int *, void **)
609 ATTRIBUTE_HIDDEN;
d9071b0c 610
2ca7691a
TG
611/* Read DWARF 2 debugging information. */
612extern bfd_boolean _bfd_dwarf2_slurp_debug_info
93ee1e36 613 (bfd *, bfd *, const struct dwarf_debug_section *, asymbol **, void **,
8722de9c 614 bfd_boolean) ATTRIBUTE_HIDDEN;
2ca7691a 615
d9071b0c
TG
616/* Clean up the data used to handle DWARF 2 debugging information. */
617extern void _bfd_dwarf2_cleanup_debug_info
8722de9c 618 (bfd *, void **) ATTRIBUTE_HIDDEN;
d9071b0c 619
73e87d70
AM
620/* Create a new section entry. */
621extern struct bfd_hash_entry *bfd_section_hash_newfunc
8722de9c
AM
622 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *)
623 ATTRIBUTE_HIDDEN;
73e87d70 624
252b5132
RH
625/* A routine to create entries for a bfd_link_hash_table. */
626extern struct bfd_hash_entry *_bfd_link_hash_newfunc
c58b9523 627 (struct bfd_hash_entry *entry, struct bfd_hash_table *table,
8722de9c 628 const char *string) ATTRIBUTE_HIDDEN;
252b5132
RH
629
630/* Initialize a bfd_link_hash_table. */
b34976b6 631extern bfd_boolean _bfd_link_hash_table_init
c58b9523
AM
632 (struct bfd_link_hash_table *, bfd *,
633 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
634 struct bfd_hash_table *,
66eb6687 635 const char *),
8722de9c 636 unsigned int) ATTRIBUTE_HIDDEN;
252b5132
RH
637
638/* Generic link hash table creation routine. */
639extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
8722de9c 640 (bfd *) ATTRIBUTE_HIDDEN;
252b5132 641
e2d34d7d
DJ
642/* Generic link hash table destruction routine. */
643extern void _bfd_generic_link_hash_table_free
8722de9c 644 (bfd *) ATTRIBUTE_HIDDEN;
e2d34d7d 645
252b5132 646/* Generic add symbol routine. */
b34976b6 647extern bfd_boolean _bfd_generic_link_add_symbols
8722de9c 648 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
252b5132 649
252b5132 650/* Generic archive add symbol routine. */
b34976b6 651extern bfd_boolean _bfd_generic_link_add_archive_symbols
c58b9523 652 (bfd *, struct bfd_link_info *,
13e570f8
AM
653 bfd_boolean (*) (bfd *, struct bfd_link_info *,
654 struct bfd_link_hash_entry *, const char *,
8722de9c 655 bfd_boolean *)) ATTRIBUTE_HIDDEN;
252b5132 656
252b5132
RH
657/* Forward declaration to avoid prototype errors. */
658typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
659
660/* Generic routine to add a single symbol. */
b34976b6 661extern bfd_boolean _bfd_generic_link_add_one_symbol
c58b9523
AM
662 (struct bfd_link_info *, bfd *, const char *name, flagword,
663 asection *, bfd_vma, const char *, bfd_boolean copy,
8722de9c 664 bfd_boolean constructor, struct bfd_link_hash_entry **) ATTRIBUTE_HIDDEN;
252b5132 665
2d653fc7
AM
666/* Generic routine to mark section as supplying symbols only. */
667extern void _bfd_generic_link_just_syms
8722de9c 668 (asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
2d653fc7 669
1338dd10
PB
670/* Generic routine that does nothing. */
671extern void _bfd_generic_copy_link_hash_symbol_type
8722de9c
AM
672 (bfd *, struct bfd_link_hash_entry *, struct bfd_link_hash_entry *)
673 ATTRIBUTE_HIDDEN;
1338dd10 674
252b5132 675/* Generic link routine. */
b34976b6 676extern bfd_boolean _bfd_generic_final_link
8722de9c 677 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
252b5132 678
b34976b6 679extern bfd_boolean _bfd_generic_link_split_section
8722de9c 680 (bfd *, struct bfd_section *) ATTRIBUTE_HIDDEN;
252b5132 681
43e1669b 682extern bfd_boolean _bfd_generic_section_already_linked
8722de9c 683 (bfd *, asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
082b7297 684
252b5132 685/* Generic reloc_link_order processing routine. */
b34976b6 686extern bfd_boolean _bfd_generic_reloc_link_order
8722de9c
AM
687 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *)
688 ATTRIBUTE_HIDDEN;
252b5132
RH
689
690/* Default link order processing routine. */
b34976b6 691extern bfd_boolean _bfd_default_link_order
8722de9c
AM
692 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *)
693 ATTRIBUTE_HIDDEN;
252b5132
RH
694
695/* Count the number of reloc entries in a link order list. */
696extern unsigned int _bfd_count_link_order_relocs
8722de9c 697 (struct bfd_link_order *) ATTRIBUTE_HIDDEN;
252b5132
RH
698
699/* Final link relocation routine. */
700extern bfd_reloc_status_type _bfd_final_link_relocate
c58b9523 701 (reloc_howto_type *, bfd *, asection *, bfd_byte *,
8722de9c 702 bfd_vma, bfd_vma, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132
RH
703
704/* Relocate a particular location by a howto and a value. */
705extern bfd_reloc_status_type _bfd_relocate_contents
8722de9c 706 (reloc_howto_type *, bfd *, bfd_vma, bfd_byte *) ATTRIBUTE_HIDDEN;
252b5132 707
b1e24c02 708/* Clear a given location using a given howto. */
0930cb30
AM
709extern bfd_reloc_status_type _bfd_clear_contents
710 (reloc_howto_type *, bfd *, asection *, bfd_byte *, bfd_vma) ATTRIBUTE_HIDDEN;
b1e24c02 711
252b5132
RH
712/* Link stabs in sections in the first pass. */
713
b34976b6 714extern bfd_boolean _bfd_link_section_stabs
3722b82f 715 (bfd *, struct stab_info *, asection *, asection *, void **,
8722de9c 716 bfd_size_type *) ATTRIBUTE_HIDDEN;
252b5132 717
73d074b4 718/* Eliminate stabs for discarded functions and symbols. */
b34976b6 719extern bfd_boolean _bfd_discard_section_stabs
8722de9c
AM
720 (bfd *, asection *, void *, bfd_boolean (*) (bfd_vma, void *), void *)
721 ATTRIBUTE_HIDDEN;
73d074b4 722
252b5132
RH
723/* Write out the .stab section when linking stabs in sections. */
724
b34976b6 725extern bfd_boolean _bfd_write_section_stabs
8722de9c
AM
726 (bfd *, struct stab_info *, asection *, void **, bfd_byte *)
727 ATTRIBUTE_HIDDEN;
252b5132
RH
728
729/* Write out the .stabstr string table when linking stabs in sections. */
730
b34976b6 731extern bfd_boolean _bfd_write_stab_strings
8722de9c 732 (bfd *, struct stab_info *) ATTRIBUTE_HIDDEN;
252b5132
RH
733
734/* Find an offset within a .stab section when linking stabs in
735 sections. */
736
737extern bfd_vma _bfd_stab_section_offset
8722de9c 738 (asection *, void *, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132 739
57ceae94 740/* Register a SEC_MERGE section as a candidate for merging. */
f5fa8ca2 741
57ceae94 742extern bfd_boolean _bfd_add_merge_section
8722de9c 743 (bfd *, void **, asection *, void **) ATTRIBUTE_HIDDEN;
f5fa8ca2 744
8550eb6e
JJ
745/* Attempt to merge SEC_MERGE sections. */
746
b34976b6 747extern bfd_boolean _bfd_merge_sections
8722de9c
AM
748 (bfd *, struct bfd_link_info *, void *, void (*) (bfd *, asection *))
749 ATTRIBUTE_HIDDEN;
8550eb6e 750
f5fa8ca2
JJ
751/* Write out a merged section. */
752
b34976b6 753extern bfd_boolean _bfd_write_merged_section
8722de9c 754 (bfd *, asection *, void *) ATTRIBUTE_HIDDEN;
f5fa8ca2
JJ
755
756/* Find an offset within a modified SEC_MERGE section. */
757
758extern bfd_vma _bfd_merged_section_offset
8722de9c 759 (bfd *, asection **, void *, bfd_vma) ATTRIBUTE_HIDDEN;
f5fa8ca2 760
9f7c3e5e
AM
761/* Tidy up when done. */
762
8722de9c 763extern void _bfd_merge_sections_free (void *) ATTRIBUTE_HIDDEN;
9f7c3e5e 764
252b5132 765/* Create a string table. */
b34976b6 766extern struct bfd_strtab_hash *_bfd_stringtab_init
8722de9c 767 (void) ATTRIBUTE_HIDDEN;
252b5132
RH
768
769/* Create an XCOFF .debug section style string table. */
b34976b6 770extern struct bfd_strtab_hash *_bfd_xcoff_stringtab_init
8722de9c 771 (void) ATTRIBUTE_HIDDEN;
252b5132
RH
772
773/* Free a string table. */
b34976b6 774extern void _bfd_stringtab_free
8722de9c 775 (struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
776
777/* Get the size of a string table. */
b34976b6 778extern bfd_size_type _bfd_stringtab_size
8722de9c 779 (struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
780
781/* Add a string to a string table. */
782extern bfd_size_type _bfd_stringtab_add
8722de9c
AM
783 (struct bfd_strtab_hash *, const char *, bfd_boolean hash, bfd_boolean copy)
784 ATTRIBUTE_HIDDEN;
252b5132
RH
785
786/* Write out a string table. */
b34976b6 787extern bfd_boolean _bfd_stringtab_emit
8722de9c 788 (bfd *, struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
789\f
790/* Macros to tell if bfds are read or write enabled.
791
792 Note that bfds open for read may be scribbled into if the fd passed
793 to bfd_fdopenr is actually open both for read and write
794 simultaneously. However an output bfd will never be open for
795 read. Therefore sometimes you want to check bfd_read_p or
796 !bfd_read_p, and only sometimes bfd_write_p.
797*/
798
c58b9523
AM
799#define bfd_read_p(abfd) \
800 ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
801#define bfd_write_p(abfd) \
802 ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
252b5132 803
8722de9c
AM
804extern void bfd_assert
805 (const char*,int) ATTRIBUTE_HIDDEN;
252b5132
RH
806
807#define BFD_ASSERT(x) \
f12123c0 808 do { if (!(x)) bfd_assert(__FILE__,__LINE__); } while (0)
252b5132
RH
809
810#define BFD_FAIL() \
f12123c0 811 do { bfd_assert(__FILE__,__LINE__); } while (0)
252b5132 812
b34976b6 813extern void _bfd_abort
8722de9c 814 (const char *, int, const char *) ATTRIBUTE_NORETURN ATTRIBUTE_HIDDEN;
c0bed66d 815
a1934524
AM
816/* if gcc >= 2.6, we can give a function name, too */
817#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
c0bed66d
ILT
818#define __PRETTY_FUNCTION__ ((char *) NULL)
819#endif
820
821#undef abort
822#define abort() _bfd_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
823
7c192733
AC
824/* Manipulate a system FILE but using BFD's "file_ptr", rather than
825 the system "off_t" or "off64_t", as the offset. */
8722de9c
AM
826extern file_ptr _bfd_real_ftell
827 (FILE *) ATTRIBUTE_HIDDEN;
828extern int _bfd_real_fseek
829 (FILE *, file_ptr, int) ATTRIBUTE_HIDDEN;
830extern FILE *_bfd_real_fopen
831 (const char *, const char *) ATTRIBUTE_HIDDEN;
7c192733 832
252b5132
RH
833/* List of supported target vectors, and the default vector (if
834 bfd_default_vector[0] is NULL, there is no default). */
8722de9c
AM
835extern const bfd_target * const *bfd_target_vector ATTRIBUTE_HIDDEN;
836extern const bfd_target *bfd_default_vector[] ATTRIBUTE_HIDDEN;
252b5132 837
08f74004 838/* List of associated target vectors. */
8722de9c 839extern const bfd_target * const *bfd_associated_vector ATTRIBUTE_HIDDEN;
08f74004 840
252b5132
RH
841/* Functions shared by the ECOFF and MIPS ELF backends, which have no
842 other common header files. */
843
844#if defined(__STDC__) || defined(ALMOST_STDC)
845struct ecoff_find_line;
846#endif
847
b34976b6 848extern bfd_boolean _bfd_ecoff_locate_line
c58b9523
AM
849 (bfd *, asection *, bfd_vma, struct ecoff_debug_info * const,
850 const struct ecoff_debug_swap * const, struct ecoff_find_line *,
8722de9c 851 const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
b34976b6 852extern bfd_boolean _bfd_ecoff_get_accumulated_pdr
8722de9c 853 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6 854extern bfd_boolean _bfd_ecoff_get_accumulated_sym
8722de9c 855 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6 856extern bfd_boolean _bfd_ecoff_get_accumulated_ss
8722de9c 857 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6
AM
858
859extern bfd_vma _bfd_get_gp_value
8722de9c 860 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 861extern void _bfd_set_gp_value
8722de9c 862 (bfd *, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132
RH
863
864/* Function shared by the COFF and ELF SH backends, which have no
865 other common header files. */
866
c58b9523 867#ifndef _bfd_sh_align_load_span
b34976b6 868extern bfd_boolean _bfd_sh_align_load_span
c58b9523
AM
869 (bfd *, asection *, bfd_byte *,
870 bfd_boolean (*) (bfd *, asection *, void *, bfd_byte *, bfd_vma),
8722de9c 871 void *, bfd_vma **, bfd_vma *, bfd_vma, bfd_vma, bfd_boolean *) ATTRIBUTE_HIDDEN;
c58b9523 872#endif
082b7297
L
873
874/* This is the shape of the elements inside the already_linked hash
875 table. It maps a name onto a list of already_linked elements with
876 the same name. */
877
878struct bfd_section_already_linked_hash_entry
879{
880 struct bfd_hash_entry root;
881 struct bfd_section_already_linked *entry;
882};
883
884struct bfd_section_already_linked
885{
886 struct bfd_section_already_linked *next;
c77ec726 887 asection *sec;
082b7297
L
888};
889
890extern struct bfd_section_already_linked_hash_entry *
8722de9c 891 bfd_section_already_linked_table_lookup (const char *) ATTRIBUTE_HIDDEN;
a6626e8c 892extern bfd_boolean bfd_section_already_linked_table_insert
8722de9c
AM
893 (struct bfd_section_already_linked_hash_entry *, asection *)
894 ATTRIBUTE_HIDDEN;
3d7f7666
L
895extern void bfd_section_already_linked_table_traverse
896 (bfd_boolean (*) (struct bfd_section_already_linked_hash_entry *,
8722de9c
AM
897 void *), void *) ATTRIBUTE_HIDDEN;
898
899extern bfd_vma _bfd_read_unsigned_leb128
900 (bfd *, bfd_byte *, unsigned int *) ATTRIBUTE_HIDDEN;
901extern bfd_signed_vma _bfd_read_signed_leb128
902 (bfd *, bfd_byte *, unsigned int *) ATTRIBUTE_HIDDEN;
903extern bfd_vma _bfd_safe_read_leb128
904 (bfd *, bfd_byte *, unsigned int *, bfd_boolean, const bfd_byte * const)
905 ATTRIBUTE_HIDDEN;
This page took 1.102515 seconds and 4 git commands to generate.