]>
Commit | Line | Data |
---|---|---|
63ffe5ef | 1 | |
c618de01 SC |
2 | /* libbfd.h -- Declarations used by bfd library *implementation*. |
3 | (This include file is not for users of the library.) | |
4 | Copyright (C) 1990-1991 Free Software Foundation, Inc. | |
5 | Written by Cygnus Support. | |
fc723380 | 6 | |
c618de01 | 7 | This file is part of BFD, the Binary File Descriptor library. |
4a81b561 | 8 | |
c618de01 | 9 | This program is free software; you can redistribute it and/or modify |
4a81b561 | 10 | it under the terms of the GNU General Public License as published by |
c618de01 SC |
11 | the Free Software Foundation; either version 2 of the License, or |
12 | (at your option) any later version. | |
4a81b561 | 13 | |
c618de01 | 14 | This program is distributed in the hope that it will be useful, |
4a81b561 DHW |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
c618de01 SC |
20 | along with this program; if not, write to the Free Software |
21 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
4a81b561 | 22 | |
4a81b561 | 23 | |
4a81b561 DHW |
24 | /* If you want to read and write large blocks, you might want to do it |
25 | in quanta of this amount */ | |
26 | #define DEFAULT_BUFFERSIZE 8192 | |
27 | ||
fc723380 JG |
28 | /* Set a tdata field. Can't use the other macros for this, since they |
29 | do casts, and casting to the left of assignment isn't portable. */ | |
30 | #define set_tdata(bfd, v) ((bfd)->tdata = (PTR) (v)) | |
31 | ||
32 | /* tdata for an archive. For an input archive, cache | |
33 | needs to be free()'d. For an output archive, symdefs do. */ | |
4a81b561 DHW |
34 | |
35 | struct artdata { | |
36 | file_ptr first_file_filepos; | |
37 | /* Speed up searching the armap */ | |
38 | struct ar_cache *cache; | |
39 | bfd *archive_head; /* Only interesting in output routines */ | |
40 | carsym *symdefs; /* the symdef entries */ | |
41 | symindex symdef_count; /* how many there are */ | |
42 | char *extended_names; /* clever intel extension */ | |
43 | }; | |
44 | ||
45 | #define bfd_ardata(bfd) ((struct artdata *) ((bfd)->tdata)) | |
4a81b561 DHW |
46 | |
47 | /* Goes in bfd's arelt_data slot */ | |
48 | struct areltdata { | |
49 | char * arch_header; /* it's actually a string */ | |
50 | unsigned int parsed_size; /* octets of filesize not including ar_hdr */ | |
51 | char *filename; /* null-terminated */ | |
52 | }; | |
53 | ||
54 | #define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size) | |
55 | ||
56 | /* FIXME -- a lot of my code allocates a large block and subdivides it. | |
57 | This can't always work, because of alignment restrictions. We should change | |
58 | it before it becomes a problem -- Gumby */ | |
59 | ||
fc723380 | 60 | PROTO (char *, zalloc, (bfd_size_type size)); |
9846338e | 61 | |
fc723380 JG |
62 | /* These routines allocate and free things on the BFD's obstack. Note |
63 | that realloc can never occur in place. */ | |
4a81b561 | 64 | |
fc723380 JG |
65 | PROTO(PTR, bfd_alloc, (bfd *abfd, bfd_size_type size)); |
66 | PROTO(PTR, bfd_zalloc,(bfd *abfd, bfd_size_type size)); | |
67 | PROTO(PTR, bfd_realloc,(bfd *abfd, PTR orig, bfd_size_type new)); | |
6f715d66 SC |
68 | PROTO(void, bfd_alloc_grow,(bfd *abfd, PTR thing, bfd_size_type size)); |
69 | PROTO(PTR, bfd_alloc_finish,(bfd *abfd)); | |
70 | ||
fc723380 | 71 | #define bfd_release(x,y) (void) obstack_free(&(x->memory),y) |
4a81b561 | 72 | |
6f715d66 | 73 | |
fc723380 | 74 | PROTO (bfd_size_type, bfd_read, (PTR ptr, bfd_size_type size, bfd_size_type nitems, bfd *abfd)); |
63ffe5ef | 75 | PROTO (bfd_size_type, bfd_write, (CONST PTR ptr, bfd_size_type size, bfd_size_type nitems, bfd *abfd)); |
4a81b561 | 76 | |
6f715d66 SC |
77 | |
78 | ||
9846338e | 79 | PROTO (int, bfd_seek,(bfd* abfd, file_ptr fp , int direction)); |
4a81b561 DHW |
80 | PROTO (long, bfd_tell, (bfd *abfd)); |
81 | PROTO (bfd *, _bfd_create_empty_archive_element_shell, (bfd *obfd)); | |
82 | PROTO (bfd *, look_for_bfd_in_cache, (bfd *arch_bfd, file_ptr index)); | |
83 | PROTO (boolean, _bfd_generic_mkarchive, (bfd *abfd)); | |
84 | PROTO (struct areltdata *, snarf_ar_hdr, (bfd *abfd)); | |
85 | PROTO (bfd_target *, bfd_generic_archive_p, (bfd *abfd)); | |
86 | PROTO (boolean, bfd_slurp_bsd_armap, (bfd *abfd)); | |
87 | PROTO (boolean, bfd_slurp_coff_armap, (bfd *abfd)); | |
88 | PROTO (boolean, _bfd_slurp_extended_name_table, (bfd *abfd)); | |
89 | PROTO (boolean, _bfd_write_archive_contents, (bfd *abfd)); | |
90 | PROTO (bfd *, new_bfd, ()); | |
91 | ||
92 | #define DEFAULT_STRING_SPACE_SIZE 0x2000 | |
93 | PROTO (boolean, bfd_add_to_string_table, (char **table, char *new_string, | |
94 | unsigned int *table_length, | |
95 | char **free_ptr)); | |
c618de01 SC |
96 | PROTO (bfd_vma, _do_getb64, (unsigned char *addr)); |
97 | PROTO (bfd_vma, _do_getl64, (unsigned char *addr)); | |
98 | PROTO (bfd_vma, _do_getb32, (unsigned char *addr)); | |
99 | PROTO (bfd_vma, _do_getl32, (unsigned char *addr)); | |
100 | PROTO (bfd_vma, _do_getb16, (unsigned char *addr)); | |
101 | PROTO (bfd_vma, _do_getl16, (unsigned char *addr)); | |
102 | PROTO (void, _do_putb64, (bfd_vma data, unsigned char *addr)); | |
103 | PROTO (void, _do_putl64, (bfd_vma data, unsigned char *addr)); | |
104 | PROTO (void, _do_putb32, (bfd_vma data, unsigned char *addr)); | |
105 | PROTO (void, _do_putl32, (bfd_vma data, unsigned char *addr)); | |
106 | PROTO (void, _do_putb16, (bfd_vma data, unsigned char *addr)); | |
107 | PROTO (void, _do_putl16, (bfd_vma data, unsigned char *addr)); | |
4a81b561 DHW |
108 | |
109 | PROTO (boolean, bfd_false, (bfd *ignore)); | |
110 | PROTO (boolean, bfd_true, (bfd *ignore)); | |
a0ad3035 | 111 | PROTO (PTR, bfd_nullvoidptr, (bfd *ignore)); |
4a81b561 DHW |
112 | PROTO (int, bfd_0, (bfd *ignore)); |
113 | PROTO (unsigned int, bfd_0u, (bfd *ignore)); | |
114 | PROTO (void, bfd_void, (bfd *ignore)); | |
115 | ||
4a81b561 DHW |
116 | PROTO (bfd *,new_bfd_contained_in,(bfd *)); |
117 | PROTO (boolean, _bfd_dummy_new_section_hook, (bfd *ignore, asection *newsect)); | |
118 | PROTO (char *, _bfd_dummy_core_file_failing_command, (bfd *abfd)); | |
119 | PROTO (int, _bfd_dummy_core_file_failing_signal, (bfd *abfd)); | |
120 | PROTO (boolean, _bfd_dummy_core_file_matches_executable_p, (bfd *core_bfd, | |
121 | bfd *exec_bfd)); | |
122 | PROTO (bfd_target *, _bfd_dummy_target, (bfd *abfd)); | |
123 | ||
69ebee86 JG |
124 | PROTO (void, bfd_dont_truncate_arname, (bfd *abfd, CONST char *filename, |
125 | char *hdr)); | |
126 | PROTO (void, bfd_bsd_truncate_arname, (bfd *abfd, CONST char *filename, | |
127 | char *hdr)); | |
128 | PROTO (void, bfd_gnu_truncate_arname, (bfd *abfd, CONST char *filename, | |
129 | char *hdr)); | |
4a81b561 DHW |
130 | |
131 | PROTO (boolean, bsd_write_armap, (bfd *arch, unsigned int elength, | |
132 | struct orl *map, int orl_count, int stridx)); | |
133 | ||
134 | PROTO (boolean, coff_write_armap, (bfd *arch, unsigned int elength, | |
135 | struct orl *map, int orl_count, int stridx)); | |
136 | ||
2203f786 JG |
137 | PROTO (bfd *, bfd_generic_openr_next_archived_file, (bfd *archive, |
138 | bfd *last_file)); | |
4a81b561 DHW |
139 | |
140 | PROTO(int, bfd_generic_stat_arch_elt, (bfd *, struct stat *)); | |
fc723380 | 141 | |
2203f786 | 142 | PROTO(boolean, bfd_generic_get_section_contents, |
7ed4093a | 143 | (bfd *abfd, sec_ptr section, PTR location, file_ptr offset, bfd_size_type count)); |
2203f786 | 144 | |
4a81b561 DHW |
145 | /* Macros to tell if bfds are read or write enabled. |
146 | ||
147 | Note that bfds open for read may be scribbled into if the fd passed | |
148 | to bfd_fdopenr is actually open both for read and write | |
149 | simultaneously. However an output bfd will never be open for | |
150 | read. Therefore sometimes you want to check bfd_read_p or | |
151 | !bfd_read_p, and only sometimes bfd_write_p. | |
152 | */ | |
153 | ||
154 | #define bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction) | |
155 | #define bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction) | |
156 | ||
157 | PROTO (void, bfd_assert,(char*,int)); | |
158 | #define BFD_ASSERT(x) \ | |
159 | { if (!(x)) bfd_assert(__FILE__,__LINE__); } | |
160 | ||
161 | #define BFD_FAIL() \ | |
162 | { bfd_assert(__FILE__,__LINE__); } | |
163 | ||
164 | PROTO (FILE *, bfd_cache_lookup_worker, (bfd *)); | |
165 | ||
166 | extern bfd *bfd_last_cache; | |
4a81b561 DHW |
167 | |
168 | /* Now Steve, what's the story here? */ | |
169 | #ifdef lint | |
170 | #define itos(x) "l" | |
171 | #define stoi(x) 1 | |
172 | #else | |
173 | #define itos(x) ((char*)(x)) | |
174 | #define stoi(x) ((int)(x)) | |
175 | #endif | |
69ebee86 JG |
176 | |
177 | /* Generic routine for close_and_cleanup is really just bfd_true. */ | |
178 | #define bfd_generic_close_and_cleanup bfd_true | |
6f715d66 SC |
179 | |
180 | /* THE FOLLOWING IS EXTRACTED FROM THE SOURCE*/ | |
181 | ||
63ffe5ef SC |
182 | /*:init.c*/ |
183 | /* bfd_check_init | |
184 | ||
185 | This routine is called before any other bfd function using initialized | |
186 | data is used to ensure that the structures have been initialized. | |
187 | Soon this function will go away, and the bfd library will assume that | |
188 | bfd_init has been called. | |
189 | */ | |
190 | ||
191 | void EXFUN(bfd_check_init,(void)); | |
192 | ||
193 | /* | |
194 | */ | |
c618de01 | 195 | |
63ffe5ef SC |
196 | /*:libbfd.c*/ |
197 | /* *i bfd_log2 | |
c618de01 | 198 | Return the log base 2 of the value supplied, rounded up. eg an arg |
6f715d66 SC |
199 | of 1025 would return 11. |
200 | */ | |
c618de01 SC |
201 | PROTO(bfd_vma, bfd_log2,(bfd_vma x)); |
202 | ||
203 | /* | |
63ffe5ef | 204 | */ |
c618de01 | 205 | |
63ffe5ef SC |
206 | /*:cache.c*/ |
207 | /* BFD_CACHE_MAX_OPEN | |
c618de01 | 208 | The maxiumum number of files which the cache will keep open at one |
6f715d66 SC |
209 | time. |
210 | */ | |
211 | #define BFD_CACHE_MAX_OPEN 10 | |
212 | ||
c618de01 SC |
213 | /* |
214 | ||
215 | bfd_last_cache | |
6724ff46 RP |
216 | Zero, or a pointer to the topmost BFD on the chain. This is used by |
217 | the @code{bfd_cache_lookup} macro in @file{libbfd.h} to determine when | |
218 | it can avoid a function call. | |
6f715d66 SC |
219 | */ |
220 | extern bfd *bfd_last_cache; | |
221 | ||
c618de01 SC |
222 | /* |
223 | ||
224 | bfd_cache_lookup | |
6724ff46 RP |
225 | Checks to see if the required BFD is the same as the last one looked |
226 | up. If so then it can use the iostream in the BFD with impunity, since | |
6f715d66 SC |
227 | it can't have changed since the last lookup, otherwise it has to |
228 | perform the complicated lookup function | |
229 | */ | |
230 | #define bfd_cache_lookup(x) \ | |
231 | ((x)==bfd_last_cache? \ | |
232 | (FILE*)(bfd_last_cache->iostream): \ | |
233 | bfd_cache_lookup_worker(x)) | |
234 | ||
c618de01 | 235 | /* |
6f715d66 | 236 | |
c618de01 SC |
237 | *i bfd_cache_init |
238 | Initialize a BFD by putting it on the cache LRU. | |
6f715d66 | 239 | */ |
c618de01 SC |
240 | PROTO(void, bfd_cache_init, (bfd *)); |
241 | ||
242 | /* | |
243 | ||
244 | *i bfd_cache_close | |
188d6d22 | 245 | Remove the BFD from the cache. If the attached file is open, then close it too. |
6f715d66 | 246 | */ |
c618de01 SC |
247 | PROTO(void, bfd_cache_close, (bfd *)); |
248 | ||
249 | /* | |
250 | ||
251 | *i bfd_open_file | |
252 | Call the OS to open a file for this BFD. Returns the FILE * | |
6f715d66 SC |
253 | (possibly null) that results from this operation. Sets up the |
254 | BFD so that future accesses know the file is open. If the FILE * | |
255 | returned is null, then there is won't have been put in the cache, so | |
256 | it won't have to be removed from it. | |
257 | */ | |
c618de01 SC |
258 | PROTO(FILE *, bfd_open_file, (bfd *)); |
259 | ||
260 | /* | |
261 | ||
262 | *i bfd_cache_lookup_worker | |
263 | Called when the macro @code{bfd_cache_lookup} fails to find a quick | |
6f715d66 SC |
264 | answer. Finds a file descriptor for this BFD. If necessary, it open it. |
265 | If there are already more than BFD_CACHE_MAX_OPEN files open, it trys to close | |
266 | one first, to avoid running out of file descriptors. | |
267 | */ | |
c618de01 SC |
268 | PROTO(FILE *, bfd_cache_lookup_worker, (bfd *)); |
269 | ||
270 | /* | |
63ffe5ef SC |
271 | */ |
272 | ||
273 | ||
274 | /*:reloc.c*/ | |
275 | ||
276 | /*:cpu-h8300.c*/ | |
277 | ||
278 | /*:cpu-i960.c*/ | |
279 | ||
280 | /*:cpu-empty.c*/ | |
281 | ||
63ffe5ef SC |
282 | /*:archures.c*/ |
283 | /* bfd_default_arch_struct | |
284 | ||
285 | What bfds are seeded with | |
286 | */ | |
287 | ||
288 | extern bfd_arch_info_struct_type bfd_default_arch_struct; | |
289 | ||
290 | /* | |
291 | bfd_default_set_arch_mach | |
292 | ||
293 | Set the architecture and machine type in a bfd. This finds the correct | |
294 | pointer to structure and inserts it into the arch_info pointer. | |
295 | */ | |
296 | ||
297 | boolean EXFUN(bfd_default_set_arch_mach,(bfd *abfd, | |
298 | enum bfd_architecture arch, | |
299 | unsigned long mach)); | |
c618de01 | 300 | |
63ffe5ef SC |
301 | /* |
302 | ||
303 | This routine initializes the architecture dispatch table by calling | |
304 | all installed architecture packages and getting them to poke around. | |
305 | */ | |
306 | ||
307 | PROTO(void, bfd_arch_init,(void)); | |
308 | ||
309 | /* | |
310 | ||
311 | bfd_arch_linkin | |
312 | ||
313 | Link the provided arch info structure into the list | |
314 | */ | |
315 | ||
316 | void EXFUN(bfd_arch_linkin,(bfd_arch_info_struct_type *)); | |
317 | ||
318 | /* | |
319 | ||
320 | bfd_default_compatible | |
321 | ||
322 | The default function for testing for compatibility | |
323 | */ | |
324 | ||
325 | CONST bfd_arch_info_struct_type *EXFUN(bfd_default_compatible, | |
326 | (CONST bfd_arch_info_struct_type *a, | |
327 | CONST bfd_arch_info_struct_type *b)); | |
328 | ||
329 | /* | |
330 | ||
331 | bfd_default_scan | |
332 | The default function for working out whether this is an architecture | |
333 | hit and a machine hit | |
334 | */ | |
335 | ||
336 | boolean EXFUN(bfd_default_scan,(CONST struct bfd_arch_info_struct *, CONST char *)); | |
337 | ||
338 | /* | |
339 | */ | |
c618de01 | 340 | |
c618de01 | 341 |