Initial revision
[deliverable/binutils-gdb.git] / bfd / libbfd.h
CommitLineData
fc723380
JG
1/* libbfd.h -- Declarations used by bfd library implementation.
2 This include file is not for users of the library */
3
4a81b561
DHW
4/* Copyright (C) 1990, 1991 Free Software Foundation, Inc.
5
6This file is part of BFD, the Binary File Diddler.
7
8BFD is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 1, or (at your option)
11any later version.
12
13BFD is distributed in the hope that it will be useful,
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
19along with BFD; see the file COPYING. If not, write to
20the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22/* $Id$ */
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
35struct 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 */
48struct 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 60PROTO (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
65PROTO(PTR, bfd_alloc, (bfd *abfd, bfd_size_type size));
66PROTO(PTR, bfd_zalloc,(bfd *abfd, bfd_size_type size));
67PROTO(PTR, bfd_realloc,(bfd *abfd, PTR orig, bfd_size_type new));
68#define bfd_release(x,y) (void) obstack_free(&(x->memory),y)
4a81b561 69
c0e5039e 70PROTO (bfd_target *, bfd_find_target, (CONST char *target_name, bfd *));
fc723380
JG
71PROTO (bfd_size_type, bfd_read, (PTR ptr, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
72PROTO (bfd_size_type, bfd_write, (PTR ptr, bfd_size_type size, bfd_size_type nitems, bfd *abfd));
4a81b561
DHW
73
74PROTO (FILE *, bfd_cache_lookup, (bfd *));
75PROTO (void, bfd_cache_close, (bfd *));
9846338e 76PROTO (int, bfd_seek,(bfd* abfd, file_ptr fp , int direction));
4a81b561
DHW
77PROTO (long, bfd_tell, (bfd *abfd));
78PROTO (bfd *, _bfd_create_empty_archive_element_shell, (bfd *obfd));
79PROTO (bfd *, look_for_bfd_in_cache, (bfd *arch_bfd, file_ptr index));
80PROTO (boolean, _bfd_generic_mkarchive, (bfd *abfd));
81PROTO (struct areltdata *, snarf_ar_hdr, (bfd *abfd));
82PROTO (bfd_target *, bfd_generic_archive_p, (bfd *abfd));
83PROTO (boolean, bfd_slurp_bsd_armap, (bfd *abfd));
84PROTO (boolean, bfd_slurp_coff_armap, (bfd *abfd));
85PROTO (boolean, _bfd_slurp_extended_name_table, (bfd *abfd));
86PROTO (boolean, _bfd_write_archive_contents, (bfd *abfd));
87PROTO (bfd *, new_bfd, ());
88
89#define DEFAULT_STRING_SPACE_SIZE 0x2000
90PROTO (boolean, bfd_add_to_string_table, (char **table, char *new_string,
91 unsigned int *table_length,
92 char **free_ptr));
7ed4093a
SC
93PROTO (bfd_64_type, _do_getb64, (unsigned char *addr));
94PROTO (bfd_64_type, _do_getl64, (unsigned char *addr));
95PROTO (unsigned int, _do_getb32, (unsigned char *addr));
96PROTO (unsigned int, _do_getl32, (unsigned char *addr));
97PROTO (unsigned int, _do_getb16, (unsigned char *addr));
98PROTO (unsigned int, _do_getl16, (unsigned char *addr));
99PROTO (void, _do_putb64, (bfd_64_type data, unsigned char *addr));
100PROTO (void, _do_putl64, (bfd_64_type data, unsigned char *addr));
101PROTO (void, _do_putb32, (unsigned long data, unsigned char *addr));
102PROTO (void, _do_putl32, (unsigned long data, unsigned char *addr));
103PROTO (void, _do_putb16, (int data, unsigned char *addr));
104PROTO (void, _do_putl16, (int data, unsigned char *addr));
4a81b561
DHW
105
106PROTO (boolean, bfd_false, (bfd *ignore));
107PROTO (boolean, bfd_true, (bfd *ignore));
a0ad3035 108PROTO (PTR, bfd_nullvoidptr, (bfd *ignore));
4a81b561
DHW
109PROTO (int, bfd_0, (bfd *ignore));
110PROTO (unsigned int, bfd_0u, (bfd *ignore));
111PROTO (void, bfd_void, (bfd *ignore));
112
4a81b561
DHW
113PROTO (bfd *,new_bfd_contained_in,(bfd *));
114PROTO (boolean, _bfd_dummy_new_section_hook, (bfd *ignore, asection *newsect));
115PROTO (char *, _bfd_dummy_core_file_failing_command, (bfd *abfd));
116PROTO (int, _bfd_dummy_core_file_failing_signal, (bfd *abfd));
117PROTO (boolean, _bfd_dummy_core_file_matches_executable_p, (bfd *core_bfd,
118 bfd *exec_bfd));
119PROTO (bfd_target *, _bfd_dummy_target, (bfd *abfd));
120
69ebee86
JG
121PROTO (void, bfd_dont_truncate_arname, (bfd *abfd, CONST char *filename,
122 char *hdr));
123PROTO (void, bfd_bsd_truncate_arname, (bfd *abfd, CONST char *filename,
124 char *hdr));
125PROTO (void, bfd_gnu_truncate_arname, (bfd *abfd, CONST char *filename,
126 char *hdr));
4a81b561
DHW
127
128PROTO (boolean, bsd_write_armap, (bfd *arch, unsigned int elength,
129 struct orl *map, int orl_count, int stridx));
130
131PROTO (boolean, coff_write_armap, (bfd *arch, unsigned int elength,
132 struct orl *map, int orl_count, int stridx));
133
2203f786
JG
134PROTO (bfd *, bfd_generic_openr_next_archived_file, (bfd *archive,
135 bfd *last_file));
4a81b561
DHW
136
137PROTO(int, bfd_generic_stat_arch_elt, (bfd *, struct stat *));
fc723380 138
2203f786 139PROTO(boolean, bfd_generic_get_section_contents,
7ed4093a 140 (bfd *abfd, sec_ptr section, PTR location, file_ptr offset, bfd_size_type count));
2203f786 141
4a81b561
DHW
142/* Macros to tell if bfds are read or write enabled.
143
144 Note that bfds open for read may be scribbled into if the fd passed
145 to bfd_fdopenr is actually open both for read and write
146 simultaneously. However an output bfd will never be open for
147 read. Therefore sometimes you want to check bfd_read_p or
148 !bfd_read_p, and only sometimes bfd_write_p.
149*/
150
151#define bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
152#define bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
153
154PROTO (void, bfd_assert,(char*,int));
155#define BFD_ASSERT(x) \
156{ if (!(x)) bfd_assert(__FILE__,__LINE__); }
157
158#define BFD_FAIL() \
159{ bfd_assert(__FILE__,__LINE__); }
160
161PROTO (FILE *, bfd_cache_lookup_worker, (bfd *));
162
163extern bfd *bfd_last_cache;
164#define bfd_cache_lookup(x) \
165 (x==bfd_last_cache?(FILE*)(bfd_last_cache->iostream):bfd_cache_lookup_worker(x))
166
167/* Now Steve, what's the story here? */
168#ifdef lint
169#define itos(x) "l"
170#define stoi(x) 1
171#else
172#define itos(x) ((char*)(x))
173#define stoi(x) ((int)(x))
174#endif
69ebee86
JG
175
176/* Generic routine for close_and_cleanup is really just bfd_true. */
177#define bfd_generic_close_and_cleanup bfd_true
This page took 0.037743 seconds and 4 git commands to generate.