]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/libbfd-in.h
_bfd_alloc_and_read
[thirdparty/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
b3adc24a 4 Copyright (C) 1990-2020 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;
252b5132 119
89bdc77e
AM
120static inline char *
121bfd_strdup (const char *str)
122{
123 size_t len = strlen (str) + 1;
124 char *buf = bfd_malloc (len);
125 if (buf != NULL)
126 memcpy (buf, str, len);
127 return buf;
128}
252b5132
RH
129/* These routines allocate and free things on the BFD's objalloc. */
130
b34976b6 131extern void bfd_release
8722de9c
AM
132 (bfd *, void *) ATTRIBUTE_HIDDEN;
133
134extern bfd * _bfd_create_empty_archive_element_shell
135 (bfd *) ATTRIBUTE_HIDDEN;
136extern bfd * _bfd_look_for_bfd_in_cache
137 (bfd *, file_ptr) ATTRIBUTE_HIDDEN;
138extern bfd_boolean _bfd_add_bfd_to_archive_cache
139 (bfd *, file_ptr, bfd *) ATTRIBUTE_HIDDEN;
140extern bfd_boolean _bfd_generic_mkarchive
141 (bfd *) ATTRIBUTE_HIDDEN;
142extern char *_bfd_append_relative_path
143 (bfd *, char *) ATTRIBUTE_HIDDEN;
144extern const bfd_target *bfd_generic_archive_p
145 (bfd *) ATTRIBUTE_HIDDEN;
146extern bfd_boolean bfd_slurp_armap
147 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
148#define bfd_slurp_bsd_armap bfd_slurp_armap
149#define bfd_slurp_coff_armap bfd_slurp_armap
8722de9c
AM
150extern bfd_boolean _bfd_archive_64_bit_slurp_armap
151 (bfd *) ATTRIBUTE_HIDDEN;
152extern bfd_boolean _bfd_archive_64_bit_write_armap
153 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
e6cc316a
L
154#define _bfd_archive_64_bit_slurp_extended_name_table \
155 _bfd_slurp_extended_name_table
156#define _bfd_archive_64_bit_construct_extended_name_table \
157 _bfd_archive_coff_construct_extended_name_table
158#define _bfd_archive_64_bit_truncate_arname \
159 bfd_dont_truncate_arname
160#define _bfd_archive_64_bit_read_ar_hdr \
161 _bfd_generic_read_ar_hdr
162#define _bfd_archive_64_bit_write_ar_hdr \
163 _bfd_generic_write_ar_hdr
164#define _bfd_archive_64_bit_openr_next_archived_file \
165 bfd_generic_openr_next_archived_file
166#define _bfd_archive_64_bit_get_elt_at_index \
167 _bfd_generic_get_elt_at_index
168#define _bfd_archive_64_bit_generic_stat_arch_elt \
169 bfd_generic_stat_arch_elt
d00dd7dc 170#define _bfd_archive_64_bit_update_armap_timestamp _bfd_bool_bfd_true
e6cc316a 171
8722de9c
AM
172extern bfd_boolean _bfd_slurp_extended_name_table
173 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 174extern bfd_boolean _bfd_construct_extended_name_table
8722de9c
AM
175 (bfd *, bfd_boolean, char **, bfd_size_type *) ATTRIBUTE_HIDDEN;
176extern bfd_boolean _bfd_write_archive_contents
177 (bfd *) ATTRIBUTE_HIDDEN;
178extern bfd_boolean _bfd_compute_and_write_armap
179 (bfd *, unsigned int) ATTRIBUTE_HIDDEN;
180extern bfd *_bfd_get_elt_at_filepos
181 (bfd *, file_ptr) ATTRIBUTE_HIDDEN;
b34976b6 182extern bfd *_bfd_generic_get_elt_at_index
8722de9c
AM
183 (bfd *, symindex) ATTRIBUTE_HIDDEN;
184extern bfd * _bfd_new_bfd
185 (void) ATTRIBUTE_HIDDEN;
186extern bfd_boolean _bfd_free_cached_info
187 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 188
d00dd7dc 189extern bfd_boolean _bfd_bool_bfd_false
8722de9c 190 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 191extern bfd_boolean _bfd_bool_bfd_asymbol_false
8722de9c 192 (bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc 193extern bfd_boolean _bfd_bool_bfd_false_error
8722de9c 194 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 195extern bfd_boolean _bfd_bool_bfd_link_false_error
8722de9c 196 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 197extern bfd_boolean _bfd_bool_bfd_true
8722de9c 198 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 199extern bfd_boolean _bfd_bool_bfd_link_true
8722de9c 200 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 201extern bfd_boolean _bfd_bool_bfd_bfd_true
8722de9c 202 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 203extern bfd_boolean _bfd_bool_bfd_uint_true
8722de9c 204 (bfd *, unsigned int) ATTRIBUTE_HIDDEN;
d00dd7dc 205extern bfd_boolean _bfd_bool_bfd_asection_bfd_asection_true
8722de9c 206 (bfd *, asection *, bfd *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 207extern bfd_boolean _bfd_bool_bfd_asymbol_bfd_asymbol_true
8722de9c 208 (bfd *, asymbol *, bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc 209extern bfd_boolean _bfd_bool_bfd_ptr_true
8722de9c 210 (bfd *, void *) ATTRIBUTE_HIDDEN;
d00dd7dc 211extern void *_bfd_ptr_bfd_null_error
8722de9c 212 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 213extern int _bfd_int_bfd_0
8722de9c 214 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 215extern unsigned int _bfd_uint_bfd_0
8722de9c 216 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 217extern long _bfd_long_bfd_0
8722de9c 218 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 219extern long _bfd_long_bfd_n1_error
8722de9c 220 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 221extern void _bfd_void_bfd
8722de9c 222 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 223extern void _bfd_void_bfd_link
8722de9c 224 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 225extern void _bfd_void_bfd_asection
8722de9c 226 (bfd *, asection *) ATTRIBUTE_HIDDEN;
b34976b6 227
8722de9c
AM
228extern bfd *_bfd_new_bfd_contained_in
229 (bfd *) ATTRIBUTE_HIDDEN;
230extern const bfd_target *_bfd_dummy_target
231 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 232
8722de9c
AM
233extern void bfd_dont_truncate_arname
234 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
235extern void bfd_bsd_truncate_arname
236 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
237extern void bfd_gnu_truncate_arname
238 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
b34976b6 239
8722de9c
AM
240extern bfd_boolean _bfd_bsd_write_armap
241 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
b34976b6 242
8722de9c
AM
243extern bfd_boolean _bfd_coff_write_armap
244 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
b34976b6 245
c58b9523 246extern void *_bfd_generic_read_ar_hdr
8722de9c 247 (bfd *) ATTRIBUTE_HIDDEN;
390c0e42 248extern void _bfd_ar_spacepad
8722de9c 249 (char *, size_t, const char *, long) ATTRIBUTE_HIDDEN;
f1bb16f8 250extern bfd_boolean _bfd_ar_sizepad
8722de9c 251 (char *, size_t, bfd_size_type) ATTRIBUTE_HIDDEN;
b34976b6 252
c58b9523 253extern void *_bfd_generic_read_ar_hdr_mag
8722de9c 254 (bfd *, const char *) ATTRIBUTE_HIDDEN;
b34976b6 255
8f95b6e4 256extern bfd_boolean _bfd_generic_write_ar_hdr
8722de9c 257 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
8f95b6e4
TG
258
259extern bfd_boolean _bfd_bsd44_write_ar_hdr
8722de9c 260 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
8f95b6e4 261
8722de9c
AM
262extern bfd * bfd_generic_openr_next_archived_file
263 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
b34976b6 264
8722de9c
AM
265extern int bfd_generic_stat_arch_elt
266 (bfd *, struct stat *) ATTRIBUTE_HIDDEN;
252b5132
RH
267
268#define _bfd_read_ar_hdr(abfd) \
07d6d2b8
AM
269 BFD_SEND (abfd, _bfd_read_ar_hdr_fn, (abfd))
270#define _bfd_write_ar_hdr(archive, abfd) \
271 BFD_SEND (abfd, _bfd_write_ar_hdr_fn, (archive, abfd))
252b5132
RH
272\f
273/* Generic routines to use for BFD_JUMP_TABLE_GENERIC. Use
274 BFD_JUMP_TABLE_GENERIC (_bfd_generic). */
275
eeb1f9ae
AM
276#define _bfd_generic_close_and_cleanup _bfd_archive_close_and_cleanup
277extern bfd_boolean _bfd_archive_close_and_cleanup
8722de9c 278 (bfd *) ATTRIBUTE_HIDDEN;
eac61af6 279extern void _bfd_unlink_from_archive_parent (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 280#define _bfd_generic_bfd_free_cached_info _bfd_bool_bfd_true
f592407e 281extern bfd_boolean _bfd_generic_new_section_hook
8722de9c 282 (bfd *, asection *) ATTRIBUTE_HIDDEN;
b34976b6 283extern bfd_boolean _bfd_generic_get_section_contents
8722de9c 284 (bfd *, asection *, void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
b34976b6 285extern bfd_boolean _bfd_generic_get_section_contents_in_window
8722de9c 286 (bfd *, asection *, bfd_window *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
287
288/* Generic routines to use for BFD_JUMP_TABLE_COPY. Use
289 BFD_JUMP_TABLE_COPY (_bfd_generic). */
290
d00dd7dc 291#define _bfd_generic_bfd_copy_private_bfd_data _bfd_bool_bfd_bfd_true
252b5132 292#define _bfd_generic_bfd_merge_private_bfd_data \
d00dd7dc
AM
293 _bfd_bool_bfd_link_true
294#define _bfd_generic_bfd_set_private_flags _bfd_bool_bfd_uint_true
252b5132 295#define _bfd_generic_bfd_copy_private_section_data \
d00dd7dc 296 _bfd_bool_bfd_asection_bfd_asection_true
252b5132 297#define _bfd_generic_bfd_copy_private_symbol_data \
d00dd7dc
AM
298 _bfd_bool_bfd_asymbol_bfd_asymbol_true
299#define _bfd_generic_bfd_copy_private_header_data _bfd_bool_bfd_bfd_true
300#define _bfd_generic_bfd_print_private_bfd_data _bfd_bool_bfd_ptr_true
252b5132 301
ccd2ec6a 302extern bfd_boolean _bfd_generic_init_private_section_data
8722de9c
AM
303 (bfd *, asection *, bfd *, asection *, struct bfd_link_info *)
304 ATTRIBUTE_HIDDEN;
ccd2ec6a 305
252b5132
RH
306/* Routines to use for BFD_JUMP_TABLE_CORE when there is no core file
307 support. Use BFD_JUMP_TABLE_CORE (_bfd_nocore). */
308
b34976b6 309extern char *_bfd_nocore_core_file_failing_command
8722de9c 310 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 311extern int _bfd_nocore_core_file_failing_signal
8722de9c 312 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 313extern bfd_boolean _bfd_nocore_core_file_matches_executable_p
8722de9c 314 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
261b8d08 315extern int _bfd_nocore_core_file_pid
8722de9c 316 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
317
318/* Routines to use for BFD_JUMP_TABLE_ARCHIVE when there is no archive
319 file support. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_noarchive). */
320
d00dd7dc
AM
321#define _bfd_noarchive_slurp_armap _bfd_bool_bfd_false_error
322#define _bfd_noarchive_slurp_extended_name_table _bfd_bool_bfd_false_error
323extern bfd_boolean _bfd_noarchive_construct_extended_name_table
8722de9c 324 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
d00dd7dc 325extern void _bfd_noarchive_truncate_arname
8722de9c 326 (bfd *, const char *, char *) ATTRIBUTE_HIDDEN;
d00dd7dc 327extern bfd_boolean _bfd_noarchive_write_armap
8722de9c 328 (bfd *, unsigned int, struct orl *, unsigned int, int) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
329#define _bfd_noarchive_read_ar_hdr _bfd_ptr_bfd_null_error
330extern bfd_boolean _bfd_noarchive_write_ar_hdr
8722de9c 331 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
332extern bfd *
333_bfd_noarchive_openr_next_archived_file
8722de9c 334 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc 335extern bfd * _bfd_noarchive_get_elt_at_index
8722de9c 336 (bfd *, symindex) ATTRIBUTE_HIDDEN;
252b5132 337#define _bfd_noarchive_generic_stat_arch_elt bfd_generic_stat_arch_elt
d00dd7dc 338#define _bfd_noarchive_update_armap_timestamp _bfd_bool_bfd_false_error
252b5132
RH
339
340/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD style
341 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd). */
342
343#define _bfd_archive_bsd_slurp_armap bfd_slurp_bsd_armap
344#define _bfd_archive_bsd_slurp_extended_name_table \
345 _bfd_slurp_extended_name_table
b34976b6 346extern bfd_boolean _bfd_archive_bsd_construct_extended_name_table
8722de9c 347 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
252b5132 348#define _bfd_archive_bsd_truncate_arname bfd_bsd_truncate_arname
7ec22e0f 349#define _bfd_archive_bsd_write_armap _bfd_bsd_write_armap
252b5132 350#define _bfd_archive_bsd_read_ar_hdr _bfd_generic_read_ar_hdr
8f95b6e4 351#define _bfd_archive_bsd_write_ar_hdr _bfd_generic_write_ar_hdr
252b5132
RH
352#define _bfd_archive_bsd_openr_next_archived_file \
353 bfd_generic_openr_next_archived_file
354#define _bfd_archive_bsd_get_elt_at_index _bfd_generic_get_elt_at_index
355#define _bfd_archive_bsd_generic_stat_arch_elt \
356 bfd_generic_stat_arch_elt
b34976b6 357extern bfd_boolean _bfd_archive_bsd_update_armap_timestamp
8722de9c 358 (bfd *) ATTRIBUTE_HIDDEN;
252b5132
RH
359
360/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get COFF style
361 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff). */
362
363#define _bfd_archive_coff_slurp_armap bfd_slurp_coff_armap
364#define _bfd_archive_coff_slurp_extended_name_table \
365 _bfd_slurp_extended_name_table
b34976b6 366extern bfd_boolean _bfd_archive_coff_construct_extended_name_table
8722de9c 367 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
252b5132 368#define _bfd_archive_coff_truncate_arname bfd_dont_truncate_arname
7ec22e0f 369#define _bfd_archive_coff_write_armap _bfd_coff_write_armap
252b5132 370#define _bfd_archive_coff_read_ar_hdr _bfd_generic_read_ar_hdr
8f95b6e4 371#define _bfd_archive_coff_write_ar_hdr _bfd_generic_write_ar_hdr
252b5132
RH
372#define _bfd_archive_coff_openr_next_archived_file \
373 bfd_generic_openr_next_archived_file
374#define _bfd_archive_coff_get_elt_at_index _bfd_generic_get_elt_at_index
375#define _bfd_archive_coff_generic_stat_arch_elt \
376 bfd_generic_stat_arch_elt
d00dd7dc 377#define _bfd_archive_coff_update_armap_timestamp _bfd_bool_bfd_true
252b5132 378
8f95b6e4
TG
379/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get BSD4.4 style
380 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_bsd44). */
381
382#define _bfd_archive_bsd44_slurp_armap bfd_slurp_bsd_armap
383#define _bfd_archive_bsd44_slurp_extended_name_table \
384 _bfd_slurp_extended_name_table
385extern bfd_boolean _bfd_archive_bsd44_construct_extended_name_table
8722de9c 386 (bfd *, char **, bfd_size_type *, const char **) ATTRIBUTE_HIDDEN;
8f95b6e4 387#define _bfd_archive_bsd44_truncate_arname bfd_bsd_truncate_arname
7ec22e0f 388#define _bfd_archive_bsd44_write_armap _bfd_bsd_write_armap
8f95b6e4
TG
389#define _bfd_archive_bsd44_read_ar_hdr _bfd_generic_read_ar_hdr
390#define _bfd_archive_bsd44_write_ar_hdr _bfd_bsd44_write_ar_hdr
391#define _bfd_archive_bsd44_openr_next_archived_file \
392 bfd_generic_openr_next_archived_file
393#define _bfd_archive_bsd44_get_elt_at_index _bfd_generic_get_elt_at_index
394#define _bfd_archive_bsd44_generic_stat_arch_elt \
395 bfd_generic_stat_arch_elt
396#define _bfd_archive_bsd44_update_armap_timestamp \
397 _bfd_archive_bsd_update_armap_timestamp
398
4b544b64
TG
399/* Routines to use for BFD_JUMP_TABLE_ARCHIVE to get VMS style
400 archives. Use BFD_JUMP_TABLE_ARCHIVE (_bfd_vms_lib). Some of them
f0d19df9 401 are irrelevant. */
4b544b64 402
8722de9c
AM
403extern bfd_boolean _bfd_vms_lib_write_archive_contents
404 (bfd *) ATTRIBUTE_HIDDEN;
f0d19df9
AM
405#define _bfd_vms_lib_slurp_armap _bfd_noarchive_slurp_armap
406#define _bfd_vms_lib_slurp_extended_name_table \
407 _bfd_noarchive_slurp_extended_name_table
408#define _bfd_vms_lib_construct_extended_name_table \
409 _bfd_noarchive_construct_extended_name_table
410#define _bfd_vms_lib_truncate_arname _bfd_noarchive_truncate_arname
411#define _bfd_vms_lib_write_armap _bfd_noarchive_write_armap
412#define _bfd_vms_lib_read_ar_hdr _bfd_noarchive_read_ar_hdr
413#define _bfd_vms_lib_write_ar_hdr _bfd_noarchive_write_ar_hdr
8722de9c
AM
414extern bfd *_bfd_vms_lib_openr_next_archived_file
415 (bfd *, bfd *) ATTRIBUTE_HIDDEN;
416extern bfd *_bfd_vms_lib_get_elt_at_index
417 (bfd *, symindex) ATTRIBUTE_HIDDEN;
418extern int _bfd_vms_lib_generic_stat_arch_elt
419 (bfd *, struct stat *) ATTRIBUTE_HIDDEN;
d00dd7dc 420#define _bfd_vms_lib_update_armap_timestamp _bfd_bool_bfd_true
4b544b64
TG
421
422/* Extra routines for VMS style archives. */
423
8722de9c
AM
424extern symindex _bfd_vms_lib_find_symbol
425 (bfd *, const char *) ATTRIBUTE_HIDDEN;
426extern bfd *_bfd_vms_lib_get_imagelib_file
427 (bfd *) ATTRIBUTE_HIDDEN;
428extern const bfd_target *_bfd_vms_lib_alpha_archive_p
429 (bfd *) ATTRIBUTE_HIDDEN;
430extern const bfd_target *_bfd_vms_lib_ia64_archive_p
431 (bfd *) ATTRIBUTE_HIDDEN;
432extern bfd_boolean _bfd_vms_lib_alpha_mkarchive
433 (bfd *) ATTRIBUTE_HIDDEN;
434extern bfd_boolean _bfd_vms_lib_ia64_mkarchive
435 (bfd *) ATTRIBUTE_HIDDEN;
4b544b64 436
252b5132
RH
437/* Routines to use for BFD_JUMP_TABLE_SYMBOLS where there is no symbol
438 support. Use BFD_JUMP_TABLE_SYMBOLS (_bfd_nosymbols). */
439
d00dd7dc
AM
440#define _bfd_nosymbols_get_symtab_upper_bound _bfd_long_bfd_n1_error
441extern long _bfd_nosymbols_canonicalize_symtab
8722de9c 442 (bfd *, asymbol **) ATTRIBUTE_HIDDEN;
3f3c5c34 443#define _bfd_nosymbols_make_empty_symbol _bfd_generic_make_empty_symbol
d00dd7dc 444extern void _bfd_nosymbols_print_symbol
8722de9c 445 (bfd *, void *, asymbol *, bfd_print_symbol_type) ATTRIBUTE_HIDDEN;
d00dd7dc 446extern void _bfd_nosymbols_get_symbol_info
8722de9c 447 (bfd *, asymbol *, symbol_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 448extern const char * _bfd_nosymbols_get_symbol_version_string
8722de9c 449 (bfd *, asymbol *, bfd_boolean *) ATTRIBUTE_HIDDEN;
d00dd7dc 450extern bfd_boolean _bfd_nosymbols_bfd_is_local_label_name
8722de9c 451 (bfd *, const char *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
452#define _bfd_nosymbols_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
453extern alent *_bfd_nosymbols_get_lineno
8722de9c 454 (bfd *, asymbol *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
455extern bfd_boolean _bfd_nosymbols_find_nearest_line
456 (bfd *, asymbol **, asection *, bfd_vma,
8722de9c
AM
457 const char **, const char **, unsigned int *, unsigned int *)
458 ATTRIBUTE_HIDDEN;
d00dd7dc 459extern bfd_boolean _bfd_nosymbols_find_line
8722de9c
AM
460 (bfd *, asymbol **, asymbol *, const char **, unsigned int *)
461 ATTRIBUTE_HIDDEN;
d00dd7dc 462extern bfd_boolean _bfd_nosymbols_find_inliner_info
8722de9c 463 (bfd *, const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
d00dd7dc 464extern asymbol *_bfd_nosymbols_bfd_make_debug_symbol
8722de9c 465 (bfd *, void *, unsigned long) ATTRIBUTE_HIDDEN;
d00dd7dc 466extern long _bfd_nosymbols_read_minisymbols
8722de9c 467 (bfd *, bfd_boolean, void **, unsigned int *) ATTRIBUTE_HIDDEN;
d00dd7dc 468extern asymbol *_bfd_nosymbols_minisymbol_to_symbol
8722de9c 469 (bfd *, bfd_boolean, const void *, asymbol *) ATTRIBUTE_HIDDEN;
252b5132
RH
470
471/* Routines to use for BFD_JUMP_TABLE_RELOCS when there is no reloc
472 support. Use BFD_JUMP_TABLE_RELOCS (_bfd_norelocs). */
473
8722de9c
AM
474extern long _bfd_norelocs_get_reloc_upper_bound
475 (bfd *, asection *) ATTRIBUTE_HIDDEN;
476extern long _bfd_norelocs_canonicalize_reloc
477 (bfd *, asection *, arelent **, asymbol **) ATTRIBUTE_HIDDEN;
478extern void _bfd_norelocs_set_reloc
479 (bfd *, asection *, arelent **, unsigned int) ATTRIBUTE_HIDDEN;
d00dd7dc 480extern reloc_howto_type *_bfd_norelocs_bfd_reloc_type_lookup
8722de9c 481 (bfd *, bfd_reloc_code_real_type) ATTRIBUTE_HIDDEN;
d00dd7dc 482extern reloc_howto_type *_bfd_norelocs_bfd_reloc_name_lookup
8722de9c 483 (bfd *, const char *) ATTRIBUTE_HIDDEN;
252b5132
RH
484
485/* Routines to use for BFD_JUMP_TABLE_WRITE for targets which may not
486 be written. Use BFD_JUMP_TABLE_WRITE (_bfd_nowrite). */
487
d00dd7dc 488extern bfd_boolean _bfd_nowrite_set_arch_mach
8722de9c 489 (bfd *, enum bfd_architecture, unsigned long) ATTRIBUTE_HIDDEN;
d00dd7dc 490extern bfd_boolean _bfd_nowrite_set_section_contents
8722de9c 491 (bfd *, asection *, const void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
492
493/* Generic routines to use for BFD_JUMP_TABLE_WRITE. Use
494 BFD_JUMP_TABLE_WRITE (_bfd_generic). */
495
496#define _bfd_generic_set_arch_mach bfd_default_set_arch_mach
b34976b6 497extern bfd_boolean _bfd_generic_set_section_contents
8722de9c 498 (bfd *, asection *, const void *, file_ptr, bfd_size_type) ATTRIBUTE_HIDDEN;
252b5132
RH
499
500/* Routines to use for BFD_JUMP_TABLE_LINK for targets which do not
501 support linking. Use BFD_JUMP_TABLE_LINK (_bfd_nolink). */
502
d00dd7dc 503extern int _bfd_nolink_sizeof_headers
8722de9c 504 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
505extern bfd_byte *_bfd_nolink_bfd_get_relocated_section_contents
506 (bfd *, struct bfd_link_info *, struct bfd_link_order *,
8722de9c 507 bfd_byte *, bfd_boolean, asymbol **) ATTRIBUTE_HIDDEN;
d00dd7dc 508extern bfd_boolean _bfd_nolink_bfd_relax_section
8722de9c 509 (bfd *, asection *, struct bfd_link_info *, bfd_boolean *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
510#define _bfd_nolink_bfd_gc_sections _bfd_bool_bfd_link_false_error
511extern bfd_boolean _bfd_nolink_bfd_lookup_section_flags
8722de9c 512 (struct bfd_link_info *, struct flag_info *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
513#define _bfd_nolink_bfd_merge_sections _bfd_bool_bfd_link_false_error
514extern bfd_boolean _bfd_nolink_bfd_is_group_section
8722de9c 515 (bfd *, const asection *) ATTRIBUTE_HIDDEN;
cb7f4b29
AM
516extern const char *_bfd_nolink_bfd_group_name
517 (bfd *, const asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 518extern bfd_boolean _bfd_nolink_bfd_discard_group
8722de9c 519 (bfd *, asection *) ATTRIBUTE_HIDDEN;
d00dd7dc 520extern struct bfd_link_hash_table *_bfd_nolink_bfd_link_hash_table_create
8722de9c 521 (bfd *) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
522#define _bfd_nolink_bfd_link_add_symbols _bfd_bool_bfd_link_false_error
523extern void _bfd_nolink_bfd_link_just_syms
8722de9c 524 (asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 525extern void _bfd_nolink_bfd_copy_link_hash_symbol_type
8722de9c
AM
526 (bfd *, struct bfd_link_hash_entry *, struct bfd_link_hash_entry *)
527 ATTRIBUTE_HIDDEN;
d00dd7dc
AM
528#define _bfd_nolink_bfd_final_link _bfd_bool_bfd_link_false_error
529extern bfd_boolean _bfd_nolink_bfd_link_split_section
8722de9c 530 (bfd *, struct bfd_section *) ATTRIBUTE_HIDDEN;
d00dd7dc 531extern bfd_boolean _bfd_nolink_section_already_linked
8722de9c 532 (bfd *, asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
d00dd7dc 533extern bfd_boolean _bfd_nolink_bfd_define_common_symbol
8722de9c
AM
534 (bfd *, struct bfd_link_info *, struct bfd_link_hash_entry *)
535 ATTRIBUTE_HIDDEN;
34a87bb0
L
536#define _bfd_nolink_bfd_link_hide_symbol \
537 _bfd_generic_link_hide_symbol
d00dd7dc 538extern struct bfd_link_hash_entry *_bfd_nolink_bfd_define_start_stop
8722de9c 539 (struct bfd_link_info *, const char *, asection *) ATTRIBUTE_HIDDEN;
4f3b23b3
NC
540#define _bfd_nolink_bfd_link_check_relocs \
541 _bfd_generic_link_check_relocs
252b5132
RH
542
543/* Routines to use for BFD_JUMP_TABLE_DYNAMIC for targets which do not
544 have dynamic symbols or relocs. Use BFD_JUMP_TABLE_DYNAMIC
545 (_bfd_nodynamic). */
546
d00dd7dc 547#define _bfd_nodynamic_get_dynamic_symtab_upper_bound _bfd_long_bfd_n1_error
252b5132 548#define _bfd_nodynamic_canonicalize_dynamic_symtab \
d00dd7dc
AM
549 _bfd_nosymbols_canonicalize_symtab
550extern long _bfd_nodynamic_get_synthetic_symtab
8722de9c 551 (bfd *, long, asymbol **, long, asymbol **, asymbol **) ATTRIBUTE_HIDDEN;
d00dd7dc
AM
552#define _bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_long_bfd_n1_error
553extern long _bfd_nodynamic_canonicalize_dynamic_reloc
8722de9c 554 (bfd *, arelent **, asymbol **) ATTRIBUTE_HIDDEN;
252b5132
RH
555\f
556/* Generic routine to determine of the given symbol is a local
557 label. */
b34976b6 558extern bfd_boolean bfd_generic_is_local_label_name
8722de9c 559 (bfd *, const char *) ATTRIBUTE_HIDDEN;
252b5132
RH
560
561/* Generic minisymbol routines. */
562extern long _bfd_generic_read_minisymbols
8722de9c 563 (bfd *, bfd_boolean, void **, unsigned int *) ATTRIBUTE_HIDDEN;
252b5132 564extern asymbol *_bfd_generic_minisymbol_to_symbol
8722de9c 565 (bfd *, bfd_boolean, const void *, asymbol *) ATTRIBUTE_HIDDEN;
252b5132
RH
566
567/* Find the nearest line using .stab/.stabstr sections. */
b34976b6 568extern bfd_boolean _bfd_stab_section_find_nearest_line
c58b9523 569 (bfd *, asymbol **, asection *, bfd_vma, bfd_boolean *,
8722de9c 570 const char **, const char **, unsigned int *, void **) ATTRIBUTE_HIDDEN;
252b5132 571
2db3311b 572/* Find the nearest line using DWARF 1 debugging information. */
b34976b6 573extern bfd_boolean _bfd_dwarf1_find_nearest_line
fb167eb2 574 (bfd *, asymbol **, asection *, bfd_vma,
8722de9c 575 const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
252b5132 576
fc28f9aa
TG
577struct dwarf_debug_section
578{
68d20676
NC
579 const char * uncompressed_name;
580 const char * compressed_name;
fc28f9aa
TG
581};
582
583/* Map of uncompressed DWARF debug section name to compressed one. It
584 is terminated by NULL uncompressed_name. */
585
8722de9c 586extern const struct dwarf_debug_section dwarf_debug_sections[] ATTRIBUTE_HIDDEN;
fc28f9aa 587
252b5132 588/* Find the nearest line using DWARF 2 debugging information. */
7f3bf384 589extern int _bfd_dwarf2_find_nearest_line
fb167eb2
AM
590 (bfd *, asymbol **, asymbol *, asection *, bfd_vma,
591 const char **, const char **, unsigned int *, unsigned int *,
9defd221 592 const struct dwarf_debug_section *, void **) ATTRIBUTE_HIDDEN;
9b8d1a36 593
425bd9e1
NC
594/* Find the bias between DWARF addresses and real addresses. */
595extern bfd_signed_vma _bfd_dwarf2_find_symbol_bias
8722de9c 596 (asymbol **, void **) ATTRIBUTE_HIDDEN;
1b786873 597
4ab527b0
FF
598/* Find inliner info after calling bfd_find_nearest_line. */
599extern bfd_boolean _bfd_dwarf2_find_inliner_info
8722de9c
AM
600 (bfd *, const char **, const char **, unsigned int *, void **)
601 ATTRIBUTE_HIDDEN;
d9071b0c 602
2ca7691a
TG
603/* Read DWARF 2 debugging information. */
604extern bfd_boolean _bfd_dwarf2_slurp_debug_info
93ee1e36 605 (bfd *, bfd *, const struct dwarf_debug_section *, asymbol **, void **,
8722de9c 606 bfd_boolean) ATTRIBUTE_HIDDEN;
2ca7691a 607
d9071b0c
TG
608/* Clean up the data used to handle DWARF 2 debugging information. */
609extern void _bfd_dwarf2_cleanup_debug_info
8722de9c 610 (bfd *, void **) ATTRIBUTE_HIDDEN;
d9071b0c 611
73e87d70
AM
612/* Create a new section entry. */
613extern struct bfd_hash_entry *bfd_section_hash_newfunc
8722de9c
AM
614 (struct bfd_hash_entry *, struct bfd_hash_table *, const char *)
615 ATTRIBUTE_HIDDEN;
73e87d70 616
252b5132
RH
617/* A routine to create entries for a bfd_link_hash_table. */
618extern struct bfd_hash_entry *_bfd_link_hash_newfunc
c58b9523 619 (struct bfd_hash_entry *entry, struct bfd_hash_table *table,
8722de9c 620 const char *string) ATTRIBUTE_HIDDEN;
252b5132
RH
621
622/* Initialize a bfd_link_hash_table. */
b34976b6 623extern bfd_boolean _bfd_link_hash_table_init
c58b9523
AM
624 (struct bfd_link_hash_table *, bfd *,
625 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
626 struct bfd_hash_table *,
66eb6687 627 const char *),
8722de9c 628 unsigned int) ATTRIBUTE_HIDDEN;
252b5132
RH
629
630/* Generic link hash table creation routine. */
631extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
8722de9c 632 (bfd *) ATTRIBUTE_HIDDEN;
252b5132 633
e2d34d7d
DJ
634/* Generic link hash table destruction routine. */
635extern void _bfd_generic_link_hash_table_free
8722de9c 636 (bfd *) ATTRIBUTE_HIDDEN;
e2d34d7d 637
252b5132 638/* Generic add symbol routine. */
b34976b6 639extern bfd_boolean _bfd_generic_link_add_symbols
8722de9c 640 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
252b5132 641
252b5132 642/* Generic archive add symbol routine. */
b34976b6 643extern bfd_boolean _bfd_generic_link_add_archive_symbols
c58b9523 644 (bfd *, struct bfd_link_info *,
13e570f8
AM
645 bfd_boolean (*) (bfd *, struct bfd_link_info *,
646 struct bfd_link_hash_entry *, const char *,
8722de9c 647 bfd_boolean *)) ATTRIBUTE_HIDDEN;
252b5132 648
252b5132
RH
649/* Forward declaration to avoid prototype errors. */
650typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
651
652/* Generic routine to add a single symbol. */
b34976b6 653extern bfd_boolean _bfd_generic_link_add_one_symbol
c58b9523
AM
654 (struct bfd_link_info *, bfd *, const char *name, flagword,
655 asection *, bfd_vma, const char *, bfd_boolean copy,
8722de9c 656 bfd_boolean constructor, struct bfd_link_hash_entry **) ATTRIBUTE_HIDDEN;
252b5132 657
2d653fc7
AM
658/* Generic routine to mark section as supplying symbols only. */
659extern void _bfd_generic_link_just_syms
8722de9c 660 (asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
2d653fc7 661
1338dd10
PB
662/* Generic routine that does nothing. */
663extern void _bfd_generic_copy_link_hash_symbol_type
8722de9c
AM
664 (bfd *, struct bfd_link_hash_entry *, struct bfd_link_hash_entry *)
665 ATTRIBUTE_HIDDEN;
1338dd10 666
252b5132 667/* Generic link routine. */
b34976b6 668extern bfd_boolean _bfd_generic_final_link
8722de9c 669 (bfd *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
252b5132 670
b34976b6 671extern bfd_boolean _bfd_generic_link_split_section
8722de9c 672 (bfd *, struct bfd_section *) ATTRIBUTE_HIDDEN;
252b5132 673
43e1669b 674extern bfd_boolean _bfd_generic_section_already_linked
8722de9c 675 (bfd *, asection *, struct bfd_link_info *) ATTRIBUTE_HIDDEN;
082b7297 676
252b5132 677/* Generic reloc_link_order processing routine. */
b34976b6 678extern bfd_boolean _bfd_generic_reloc_link_order
8722de9c
AM
679 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *)
680 ATTRIBUTE_HIDDEN;
252b5132
RH
681
682/* Default link order processing routine. */
b34976b6 683extern bfd_boolean _bfd_default_link_order
8722de9c
AM
684 (bfd *, struct bfd_link_info *, asection *, struct bfd_link_order *)
685 ATTRIBUTE_HIDDEN;
252b5132
RH
686
687/* Count the number of reloc entries in a link order list. */
688extern unsigned int _bfd_count_link_order_relocs
8722de9c 689 (struct bfd_link_order *) ATTRIBUTE_HIDDEN;
252b5132
RH
690
691/* Final link relocation routine. */
692extern bfd_reloc_status_type _bfd_final_link_relocate
c58b9523 693 (reloc_howto_type *, bfd *, asection *, bfd_byte *,
8722de9c 694 bfd_vma, bfd_vma, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132
RH
695
696/* Relocate a particular location by a howto and a value. */
697extern bfd_reloc_status_type _bfd_relocate_contents
8722de9c 698 (reloc_howto_type *, bfd *, bfd_vma, bfd_byte *) ATTRIBUTE_HIDDEN;
252b5132 699
b1e24c02 700/* Clear a given location using a given howto. */
0930cb30
AM
701extern bfd_reloc_status_type _bfd_clear_contents
702 (reloc_howto_type *, bfd *, asection *, bfd_byte *, bfd_vma) ATTRIBUTE_HIDDEN;
b1e24c02 703
252b5132
RH
704/* Link stabs in sections in the first pass. */
705
b34976b6 706extern bfd_boolean _bfd_link_section_stabs
3722b82f 707 (bfd *, struct stab_info *, asection *, asection *, void **,
8722de9c 708 bfd_size_type *) ATTRIBUTE_HIDDEN;
252b5132 709
73d074b4 710/* Eliminate stabs for discarded functions and symbols. */
b34976b6 711extern bfd_boolean _bfd_discard_section_stabs
8722de9c
AM
712 (bfd *, asection *, void *, bfd_boolean (*) (bfd_vma, void *), void *)
713 ATTRIBUTE_HIDDEN;
73d074b4 714
252b5132
RH
715/* Write out the .stab section when linking stabs in sections. */
716
b34976b6 717extern bfd_boolean _bfd_write_section_stabs
8722de9c
AM
718 (bfd *, struct stab_info *, asection *, void **, bfd_byte *)
719 ATTRIBUTE_HIDDEN;
252b5132
RH
720
721/* Write out the .stabstr string table when linking stabs in sections. */
722
b34976b6 723extern bfd_boolean _bfd_write_stab_strings
8722de9c 724 (bfd *, struct stab_info *) ATTRIBUTE_HIDDEN;
252b5132
RH
725
726/* Find an offset within a .stab section when linking stabs in
727 sections. */
728
729extern bfd_vma _bfd_stab_section_offset
8722de9c 730 (asection *, void *, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132 731
57ceae94 732/* Register a SEC_MERGE section as a candidate for merging. */
f5fa8ca2 733
57ceae94 734extern bfd_boolean _bfd_add_merge_section
8722de9c 735 (bfd *, void **, asection *, void **) ATTRIBUTE_HIDDEN;
f5fa8ca2 736
8550eb6e
JJ
737/* Attempt to merge SEC_MERGE sections. */
738
b34976b6 739extern bfd_boolean _bfd_merge_sections
8722de9c
AM
740 (bfd *, struct bfd_link_info *, void *, void (*) (bfd *, asection *))
741 ATTRIBUTE_HIDDEN;
8550eb6e 742
f5fa8ca2
JJ
743/* Write out a merged section. */
744
b34976b6 745extern bfd_boolean _bfd_write_merged_section
8722de9c 746 (bfd *, asection *, void *) ATTRIBUTE_HIDDEN;
f5fa8ca2
JJ
747
748/* Find an offset within a modified SEC_MERGE section. */
749
750extern bfd_vma _bfd_merged_section_offset
8722de9c 751 (bfd *, asection **, void *, bfd_vma) ATTRIBUTE_HIDDEN;
f5fa8ca2 752
9f7c3e5e
AM
753/* Tidy up when done. */
754
8722de9c 755extern void _bfd_merge_sections_free (void *) ATTRIBUTE_HIDDEN;
9f7c3e5e 756
252b5132 757/* Create a string table. */
b34976b6 758extern struct bfd_strtab_hash *_bfd_stringtab_init
8722de9c 759 (void) ATTRIBUTE_HIDDEN;
252b5132
RH
760
761/* Create an XCOFF .debug section style string table. */
b34976b6 762extern struct bfd_strtab_hash *_bfd_xcoff_stringtab_init
8722de9c 763 (void) ATTRIBUTE_HIDDEN;
252b5132
RH
764
765/* Free a string table. */
b34976b6 766extern void _bfd_stringtab_free
8722de9c 767 (struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
768
769/* Get the size of a string table. */
b34976b6 770extern bfd_size_type _bfd_stringtab_size
8722de9c 771 (struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
772
773/* Add a string to a string table. */
774extern bfd_size_type _bfd_stringtab_add
8722de9c
AM
775 (struct bfd_strtab_hash *, const char *, bfd_boolean hash, bfd_boolean copy)
776 ATTRIBUTE_HIDDEN;
252b5132
RH
777
778/* Write out a string table. */
b34976b6 779extern bfd_boolean _bfd_stringtab_emit
8722de9c 780 (bfd *, struct bfd_strtab_hash *) ATTRIBUTE_HIDDEN;
252b5132
RH
781\f
782/* Macros to tell if bfds are read or write enabled.
783
784 Note that bfds open for read may be scribbled into if the fd passed
785 to bfd_fdopenr is actually open both for read and write
786 simultaneously. However an output bfd will never be open for
787 read. Therefore sometimes you want to check bfd_read_p or
788 !bfd_read_p, and only sometimes bfd_write_p.
789*/
790
c58b9523
AM
791#define bfd_read_p(abfd) \
792 ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
793#define bfd_write_p(abfd) \
794 ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
252b5132 795
8722de9c
AM
796extern void bfd_assert
797 (const char*,int) ATTRIBUTE_HIDDEN;
252b5132
RH
798
799#define BFD_ASSERT(x) \
f12123c0 800 do { if (!(x)) bfd_assert(__FILE__,__LINE__); } while (0)
252b5132
RH
801
802#define BFD_FAIL() \
f12123c0 803 do { bfd_assert(__FILE__,__LINE__); } while (0)
252b5132 804
b34976b6 805extern void _bfd_abort
8722de9c 806 (const char *, int, const char *) ATTRIBUTE_NORETURN ATTRIBUTE_HIDDEN;
c0bed66d 807
a1934524
AM
808/* if gcc >= 2.6, we can give a function name, too */
809#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
c0bed66d
ILT
810#define __PRETTY_FUNCTION__ ((char *) NULL)
811#endif
812
813#undef abort
814#define abort() _bfd_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
815
7c192733
AC
816/* Manipulate a system FILE but using BFD's "file_ptr", rather than
817 the system "off_t" or "off64_t", as the offset. */
8722de9c
AM
818extern file_ptr _bfd_real_ftell
819 (FILE *) ATTRIBUTE_HIDDEN;
820extern int _bfd_real_fseek
821 (FILE *, file_ptr, int) ATTRIBUTE_HIDDEN;
822extern FILE *_bfd_real_fopen
823 (const char *, const char *) ATTRIBUTE_HIDDEN;
7c192733 824
252b5132
RH
825/* List of supported target vectors, and the default vector (if
826 bfd_default_vector[0] is NULL, there is no default). */
8722de9c
AM
827extern const bfd_target * const *bfd_target_vector ATTRIBUTE_HIDDEN;
828extern const bfd_target *bfd_default_vector[] ATTRIBUTE_HIDDEN;
252b5132 829
08f74004 830/* List of associated target vectors. */
8722de9c 831extern const bfd_target * const *bfd_associated_vector ATTRIBUTE_HIDDEN;
08f74004 832
252b5132
RH
833/* Functions shared by the ECOFF and MIPS ELF backends, which have no
834 other common header files. */
835
836#if defined(__STDC__) || defined(ALMOST_STDC)
837struct ecoff_find_line;
838#endif
839
b34976b6 840extern bfd_boolean _bfd_ecoff_locate_line
c58b9523
AM
841 (bfd *, asection *, bfd_vma, struct ecoff_debug_info * const,
842 const struct ecoff_debug_swap * const, struct ecoff_find_line *,
8722de9c 843 const char **, const char **, unsigned int *) ATTRIBUTE_HIDDEN;
b34976b6 844extern bfd_boolean _bfd_ecoff_get_accumulated_pdr
8722de9c 845 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6 846extern bfd_boolean _bfd_ecoff_get_accumulated_sym
8722de9c 847 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6 848extern bfd_boolean _bfd_ecoff_get_accumulated_ss
8722de9c 849 (void *, bfd_byte *) ATTRIBUTE_HIDDEN;
b34976b6
AM
850
851extern bfd_vma _bfd_get_gp_value
8722de9c 852 (bfd *) ATTRIBUTE_HIDDEN;
b34976b6 853extern void _bfd_set_gp_value
8722de9c 854 (bfd *, bfd_vma) ATTRIBUTE_HIDDEN;
252b5132
RH
855
856/* Function shared by the COFF and ELF SH backends, which have no
857 other common header files. */
858
c58b9523 859#ifndef _bfd_sh_align_load_span
b34976b6 860extern bfd_boolean _bfd_sh_align_load_span
c58b9523
AM
861 (bfd *, asection *, bfd_byte *,
862 bfd_boolean (*) (bfd *, asection *, void *, bfd_byte *, bfd_vma),
8722de9c 863 void *, bfd_vma **, bfd_vma *, bfd_vma, bfd_vma, bfd_boolean *) ATTRIBUTE_HIDDEN;
c58b9523 864#endif
082b7297
L
865
866/* This is the shape of the elements inside the already_linked hash
867 table. It maps a name onto a list of already_linked elements with
868 the same name. */
869
870struct bfd_section_already_linked_hash_entry
871{
872 struct bfd_hash_entry root;
873 struct bfd_section_already_linked *entry;
874};
875
876struct bfd_section_already_linked
877{
878 struct bfd_section_already_linked *next;
c77ec726 879 asection *sec;
082b7297
L
880};
881
882extern struct bfd_section_already_linked_hash_entry *
8722de9c 883 bfd_section_already_linked_table_lookup (const char *) ATTRIBUTE_HIDDEN;
a6626e8c 884extern bfd_boolean bfd_section_already_linked_table_insert
8722de9c
AM
885 (struct bfd_section_already_linked_hash_entry *, asection *)
886 ATTRIBUTE_HIDDEN;
3d7f7666
L
887extern void bfd_section_already_linked_table_traverse
888 (bfd_boolean (*) (struct bfd_section_already_linked_hash_entry *,
8722de9c
AM
889 void *), void *) ATTRIBUTE_HIDDEN;
890
891extern bfd_vma _bfd_read_unsigned_leb128
892 (bfd *, bfd_byte *, unsigned int *) ATTRIBUTE_HIDDEN;
893extern bfd_signed_vma _bfd_read_signed_leb128
894 (bfd *, bfd_byte *, unsigned int *) ATTRIBUTE_HIDDEN;
895extern bfd_vma _bfd_safe_read_leb128
896 (bfd *, bfd_byte *, unsigned int *, bfd_boolean, const bfd_byte * const)
897 ATTRIBUTE_HIDDEN;
1f4361a7
AM
898
899#if GCC_VERSION >= 7000
900#define _bfd_mul_overflow(a, b, res) __builtin_mul_overflow (a, b, res)
901#else
902/* Assumes unsigned values. Careful! Args evaluated multiple times. */
903#define _bfd_mul_overflow(a, b, res) \
904 ((*res) = (a), (*res) *= (b), (b) != 0 && (*res) / (b) != (a))
905#endif
2bb3687b
AM
906
907static inline bfd_byte *
908_bfd_alloc_and_read (bfd *abfd, bfd_size_type asize, bfd_size_type rsize)
909{
910 bfd_byte *mem = bfd_alloc (abfd, asize);
911 if (mem != NULL)
912 {
913 if (bfd_bread (mem, rsize, abfd) == rsize)
914 return mem;
915 bfd_release (abfd, mem);
916 }
917 return NULL;
918}
919
920static inline bfd_byte *
921_bfd_malloc_and_read (bfd *abfd, bfd_size_type asize, bfd_size_type rsize)
922{
923 bfd_byte *mem = bfd_malloc (asize);
924 if (mem != NULL)
925 {
926 if (bfd_bread (mem, rsize, abfd) == rsize)
927 return mem;
928 free (mem);
929 }
930 return NULL;
931}