* breakpoint.c (frame_in_dummy): Check PC as well as frame.
[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.)
14e3c2e4 3 Copyright 1990, 1991, 1992, 1993 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
4c3721d5
ILT
22/* Use builtin alloca for gcc. */
23#ifdef __GNUC__
24#ifndef alloca
25#define alloca __builtin_alloca
26#endif
27#endif
4a81b561 28
01dd1b2b
SC
29/* Align an address upward to a boundary, expressed as a number of bytes.
30 E.g. align to an 8-byte boundary with argument of 8. */
de0da6ce 31#define BFD_ALIGN(this, boundary) \
01dd1b2b
SC
32 ((( (this) + ((boundary) -1)) & (~((boundary)-1))))
33
4a81b561
DHW
34/* If you want to read and write large blocks, you might want to do it
35 in quanta of this amount */
36#define DEFAULT_BUFFERSIZE 8192
37
fc723380
JG
38/* Set a tdata field. Can't use the other macros for this, since they
39 do casts, and casting to the left of assignment isn't portable. */
d5cd3c0e 40#define set_tdata(bfd, v) ((bfd)->tdata.any = (PTR) (v))
fc723380
JG
41
42/* tdata for an archive. For an input archive, cache
43 needs to be free()'d. For an output archive, symdefs do. */
4a81b561
DHW
44
45struct artdata {
46 file_ptr first_file_filepos;
47 /* Speed up searching the armap */
48 struct ar_cache *cache;
49 bfd *archive_head; /* Only interesting in output routines */
50 carsym *symdefs; /* the symdef entries */
51 symindex symdef_count; /* how many there are */
52 char *extended_names; /* clever intel extension */
c188b0be
DM
53 /* when more compilers are standard C, this can be a time_t */
54 long armap_timestamp; /* Timestamp value written into armap.
b5b4294e
JG
55 This is used for BSD archives to check
56 that the timestamp is recent enough
57 for the BSD linker to not complain,
58 just before we finish writing an
59 archive. */
60 file_ptr armap_datepos; /* Position within archive to seek to
61 rewrite the date field. */
4a81b561
DHW
62};
63
e98e6ec1 64#define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
4a81b561
DHW
65
66/* Goes in bfd's arelt_data slot */
67struct areltdata {
68 char * arch_header; /* it's actually a string */
69 unsigned int parsed_size; /* octets of filesize not including ar_hdr */
70 char *filename; /* null-terminated */
71};
72
73#define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
74
287c221d 75char *zalloc PARAMS ((bfd_size_type size));
9846338e 76
fc723380
JG
77/* These routines allocate and free things on the BFD's obstack. Note
78 that realloc can never occur in place. */
4a81b561 79
6affd66a
KR
80PTR bfd_alloc PARAMS ((bfd *abfd, size_t size));
81PTR bfd_zalloc PARAMS ((bfd *abfd, size_t size));
82PTR bfd_realloc PARAMS ((bfd *abfd, PTR orig, size_t new));
83void bfd_alloc_grow PARAMS ((bfd *abfd, PTR thing, size_t size));
287c221d
PB
84PTR bfd_alloc_finish PARAMS ((bfd *abfd));
85PTR bfd_alloc_by_size_t PARAMS ((bfd *abfd, size_t wanted));
86
87#define bfd_release(x,y) (void) obstack_free(&(x->memory),y)
88
89
90bfd_size_type bfd_read PARAMS ((PTR ptr, bfd_size_type size,
91 bfd_size_type nitems, bfd *abfd));
92bfd_size_type bfd_write PARAMS ((CONST PTR ptr, bfd_size_type size,
93 bfd_size_type nitems, bfd *abfd));
94int bfd_seek PARAMS ((bfd* CONST abfd, CONST file_ptr fp,
95 CONST int direction));
96long bfd_tell PARAMS ((bfd *abfd));
97
b5b4294e
JG
98int bfd_flush PARAMS ((bfd *abfd));
99int bfd_stat PARAMS ((bfd *abfd, struct stat *));
100
287c221d
PB
101bfd * _bfd_create_empty_archive_element_shell PARAMS ((bfd *obfd));
102bfd * look_for_bfd_in_cache PARAMS ((bfd *arch_bfd, file_ptr index));
103boolean _bfd_generic_mkarchive PARAMS ((bfd *abfd));
104struct areltdata * snarf_ar_hdr PARAMS ((bfd *abfd));
105bfd_target * bfd_generic_archive_p PARAMS ((bfd *abfd));
106boolean bfd_slurp_armap PARAMS ((bfd *abfd));
898728d4 107boolean bfd_slurp_bsd_armap_f2 PARAMS ((bfd *abfd));
287c221d
PB
108#define bfd_slurp_bsd_armap bfd_slurp_armap
109#define bfd_slurp_coff_armap bfd_slurp_armap
110boolean _bfd_slurp_extended_name_table PARAMS ((bfd *abfd));
111boolean _bfd_write_archive_contents PARAMS ((bfd *abfd));
4c3721d5 112bfd * new_bfd PARAMS ((void));
4a81b561
DHW
113
114#define DEFAULT_STRING_SPACE_SIZE 0x2000
287c221d
PB
115boolean bfd_add_to_string_table PARAMS ((char **table, char *new_string,
116 unsigned int *table_length,
117 char **free_ptr));
898728d4 118
287c221d
PB
119boolean bfd_false PARAMS ((bfd *ignore));
120boolean bfd_true PARAMS ((bfd *ignore));
121PTR bfd_nullvoidptr PARAMS ((bfd *ignore));
122int bfd_0 PARAMS ((bfd *ignore));
123unsigned int bfd_0u PARAMS ((bfd *ignore));
124void bfd_void PARAMS ((bfd *ignore));
125
126bfd * new_bfd_contained_in PARAMS ((bfd *));
127boolean _bfd_dummy_new_section_hook PARAMS ((bfd *ignore, asection *newsect));
128char * _bfd_dummy_core_file_failing_command PARAMS ((bfd *abfd));
129int _bfd_dummy_core_file_failing_signal PARAMS ((bfd *abfd));
130boolean _bfd_dummy_core_file_matches_executable_p PARAMS ((bfd *core_bfd,
4a81b561 131 bfd *exec_bfd));
287c221d 132bfd_target * _bfd_dummy_target PARAMS ((bfd *abfd));
4a81b561 133
287c221d 134void bfd_dont_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 135 char *hdr));
287c221d 136void bfd_bsd_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 137 char *hdr));
287c221d 138void bfd_gnu_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
69ebee86 139 char *hdr));
4a81b561 140
287c221d 141boolean bsd_write_armap PARAMS ((bfd *arch, unsigned int elength,
01dd1b2b 142 struct orl *map, unsigned int orl_count, int stridx));
4a81b561 143
287c221d 144boolean coff_write_armap PARAMS ((bfd *arch, unsigned int elength,
01dd1b2b 145 struct orl *map, unsigned int orl_count, int stridx));
4a81b561 146
287c221d 147bfd * bfd_generic_openr_next_archived_file PARAMS ((bfd *archive,
2203f786 148 bfd *last_file));
4a81b561 149
287c221d 150int bfd_generic_stat_arch_elt PARAMS ((bfd *, struct stat *));
fc723380 151
287c221d
PB
152boolean bfd_generic_get_section_contents PARAMS ((bfd *abfd, sec_ptr section,
153 PTR location, file_ptr offset,
154 bfd_size_type count));
01dd1b2b 155
287c221d
PB
156boolean bfd_generic_set_section_contents PARAMS ((bfd *abfd, sec_ptr section,
157 PTR location, file_ptr offset,
158 bfd_size_type count));
4c3721d5
ILT
159\f
160/* A routine to create entries for a bfd_link_hash_table. */
161extern struct bfd_hash_entry *_bfd_link_hash_newfunc
162 PARAMS ((struct bfd_hash_entry *entry,
163 struct bfd_hash_table *table,
164 const char *string));
165
166/* Initialize a bfd_link_hash_table. */
167extern boolean _bfd_link_hash_table_init
168 PARAMS ((struct bfd_link_hash_table *, bfd *,
169 struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
170 struct bfd_hash_table *,
171 const char *)));
172
173/* Generic link hash table creation routine. */
174extern struct bfd_link_hash_table *_bfd_generic_link_hash_table_create
175 PARAMS ((bfd *));
176
177/* Generic add symbol routine. */
178extern boolean _bfd_generic_link_add_symbols
179 PARAMS ((bfd *, struct bfd_link_info *));
180
181/* Generic archive add symbol routine. */
182extern boolean _bfd_generic_link_add_archive_symbols
183 PARAMS ((bfd *, struct bfd_link_info *,
184 boolean (*checkfn) (bfd *, struct bfd_link_info *, boolean *)));
185
186/* Forward declaration to avoid prototype errors. */
187typedef struct bfd_link_hash_entry _bfd_link_hash_entry;
188
189/* Generic routine to add a single symbol. */
190extern boolean _bfd_generic_link_add_one_symbol
191 PARAMS ((struct bfd_link_info *, bfd *, const char *name, flagword,
192 asection *, bfd_vma, const char *, boolean copy,
193 struct bfd_link_hash_entry **));
194
195/* Generic link routine. */
196extern boolean _bfd_generic_final_link
197 PARAMS ((bfd *, struct bfd_link_info *));
198
199/* Default link order processing routine. */
200extern boolean _bfd_default_link_order
201 PARAMS ((bfd *, struct bfd_link_info *, asection *,
202 struct bfd_link_order *));
203
204/* Final link relocation routine. */
205extern bfd_reloc_status_type _bfd_final_link_relocate
206 PARAMS ((const reloc_howto_type *, bfd *, asection *, bfd_byte *,
207 bfd_vma address, bfd_vma value, bfd_vma addend));
208
209/* Relocate a particular location by a howto and a value. */
210extern bfd_reloc_status_type _bfd_relocate_contents
211 PARAMS ((const reloc_howto_type *, bfd *, bfd_vma, bfd_byte *));
212\f
4a81b561
DHW
213/* Macros to tell if bfds are read or write enabled.
214
215 Note that bfds open for read may be scribbled into if the fd passed
216 to bfd_fdopenr is actually open both for read and write
217 simultaneously. However an output bfd will never be open for
218 read. Therefore sometimes you want to check bfd_read_p or
219 !bfd_read_p, and only sometimes bfd_write_p.
220*/
221
287c221d
PB
222#define bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
223#define bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
224
225void bfd_assert PARAMS ((char*,int));
4a81b561 226
4a81b561
DHW
227#define BFD_ASSERT(x) \
228{ if (!(x)) bfd_assert(__FILE__,__LINE__); }
229
230#define BFD_FAIL() \
231{ bfd_assert(__FILE__,__LINE__); }
232
287c221d 233FILE * bfd_cache_lookup_worker PARAMS ((bfd *));
4a81b561
DHW
234
235extern bfd *bfd_last_cache;
4a81b561
DHW
236
237/* Now Steve, what's the story here? */
238#ifdef lint
239#define itos(x) "l"
240#define stoi(x) 1
241#else
242#define itos(x) ((char*)(x))
243#define stoi(x) ((int)(x))
244#endif
69ebee86
JG
245
246/* Generic routine for close_and_cleanup is really just bfd_true. */
247#define bfd_generic_close_and_cleanup bfd_true
6f715d66 248
4c3721d5
ILT
249/* List of supported target vectors, and the default vector (if
250 default_vector[0] is NULL, there is no default). */
251extern bfd_target *target_vector[];
252extern bfd_target *default_vector[];
253
b8d69097 254/* And more follows */
6f715d66 255
fefb4b30
JG
256void
257bfd_check_init PARAMS ((void));
258
259PTR
e2756048 260bfd_xmalloc PARAMS ((bfd_size_type size));
fefb4b30 261
6affd66a 262PTR
e2756048 263bfd_xmalloc_by_size_t PARAMS ((size_t size));
6affd66a 264
fefb4b30
JG
265void
266bfd_write_bigendian_4byte_int PARAMS ((bfd *abfd, int i));
267
3ceaa255 268unsigned int
fefb4b30
JG
269bfd_log2 PARAMS ((bfd_vma x));
270
6f715d66 271#define BFD_CACHE_MAX_OPEN 10
6f715d66 272extern bfd *bfd_last_cache;
e98e6ec1 273
6f715d66 274#define bfd_cache_lookup(x) \
0cda46cf
SC
275 ((x)==bfd_last_cache? \
276 (FILE*)(bfd_last_cache->iostream): \
277 bfd_cache_lookup_worker(x))
fefb4b30 278boolean
c188b0be 279bfd_cache_close PARAMS ((bfd *abfd));
fefb4b30
JG
280
281FILE*
c188b0be 282bfd_open_file PARAMS ((bfd *abfd));
fefb4b30
JG
283
284FILE *
c188b0be 285bfd_cache_lookup_worker PARAMS ((bfd *abfd));
fefb4b30
JG
286
287void
288bfd_constructor_entry PARAMS ((bfd *abfd,
e98e6ec1
SC
289 asymbol **symbol_ptr_ptr,
290 CONST char*type));
fefb4b30 291
e2756048 292const struct reloc_howto_struct *
fefb4b30 293bfd_default_reloc_type_lookup
14e3c2e4 294 PARAMS ((bfd *abfd AND
3860075f 295 bfd_reloc_code_real_type code));
fefb4b30
JG
296
297boolean
298bfd_generic_relax_section
299 PARAMS ((bfd *abfd,
d58b7049 300 asection *section,
4c3721d5 301 struct bfd_link_info *,
d5cd3c0e 302 asymbol **symbols));
fefb4b30 303
e98e6ec1 304bfd_byte *
fefb4b30 305
287c221d 306bfd_generic_get_relocated_section_contents PARAMS ((bfd *abfd,
4c3721d5
ILT
307 struct bfd_link_info *link_info,
308 struct bfd_link_order *link_order,
14e3c2e4 309 bfd_byte *data,
4c3721d5
ILT
310 boolean relocateable,
311 asymbol **symbols));
14e3c2e4 312
e98e6ec1 313extern bfd_arch_info_type bfd_default_arch_struct;
fefb4b30
JG
314boolean
315bfd_default_set_arch_mach PARAMS ((bfd *abfd,
e98e6ec1
SC
316 enum bfd_architecture arch,
317 unsigned long mach));
fefb4b30 318
c188b0be 319void
fefb4b30
JG
320bfd_arch_init PARAMS ((void));
321
322void
c188b0be 323bfd_arch_linkin PARAMS ((bfd_arch_info_type *ptr));
fefb4b30
JG
324
325CONST bfd_arch_info_type *
326bfd_default_compatible
327 PARAMS ((CONST bfd_arch_info_type *a,
e98e6ec1 328 CONST bfd_arch_info_type *b));
fefb4b30
JG
329
330boolean
c188b0be 331bfd_default_scan PARAMS ((CONST struct bfd_arch_info *info, CONST char *string));
fefb4b30 332
3ceaa255 333struct elf_internal_shdr *
6affd66a 334bfd_elf_find_section PARAMS ((bfd *abfd, char *name));
fefb4b30 335
This page took 0.294858 seconds and 4 git commands to generate.