]> Git Repo - binutils.git/blame_incremental - bfd/libbfd-in.h
* hpux-core.c: Add comment about hpux version 7.
[binutils.git] / bfd / libbfd-in.h
... / ...
CommitLineData
1/* libbfd.h -- Declarations used by bfd library *implementation*.
2 (This include file is not for users of the library.)
3 Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
4 Written by Cygnus Support.
5
6This file is part of BFD, the Binary File Descriptor library.
7
8This program 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 2 of the License, or
11(at your option) any later version.
12
13This program 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 this program; if not, write to the Free Software
20Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
21
22
23/* Align an address upward to a boundary, expressed as a number of bytes.
24 E.g. align to an 8-byte boundary with argument of 8. */
25#define BFD_ALIGN(this, boundary) \
26 ((( (this) + ((boundary) -1)) & (~((boundary)-1))))
27
28/* If you want to read and write large blocks, you might want to do it
29 in quanta of this amount */
30#define DEFAULT_BUFFERSIZE 8192
31
32/* Set a tdata field. Can't use the other macros for this, since they
33 do casts, and casting to the left of assignment isn't portable. */
34#define set_tdata(bfd, v) ((bfd)->tdata.any = (PTR) (v))
35
36/* tdata for an archive. For an input archive, cache
37 needs to be free()'d. For an output archive, symdefs do. */
38
39struct artdata {
40 file_ptr first_file_filepos;
41 /* Speed up searching the armap */
42 struct ar_cache *cache;
43 bfd *archive_head; /* Only interesting in output routines */
44 carsym *symdefs; /* the symdef entries */
45 symindex symdef_count; /* how many there are */
46 char *extended_names; /* clever intel extension */
47 time_t armap_timestamp; /* Timestamp value written into armap.
48 This is used for BSD archives to check
49 that the timestamp is recent enough
50 for the BSD linker to not complain,
51 just before we finish writing an
52 archive. */
53 file_ptr armap_datepos; /* Position within archive to seek to
54 rewrite the date field. */
55};
56
57#define bfd_ardata(bfd) ((bfd)->tdata.aout_ar_data)
58
59/* Goes in bfd's arelt_data slot */
60struct areltdata {
61 char * arch_header; /* it's actually a string */
62 unsigned int parsed_size; /* octets of filesize not including ar_hdr */
63 char *filename; /* null-terminated */
64};
65
66#define arelt_size(bfd) (((struct areltdata *)((bfd)->arelt_data))->parsed_size)
67
68char *zalloc PARAMS ((bfd_size_type size));
69
70/* These routines allocate and free things on the BFD's obstack. Note
71 that realloc can never occur in place. */
72
73PTR bfd_alloc PARAMS ((bfd *abfd, size_t size));
74PTR bfd_zalloc PARAMS ((bfd *abfd, size_t size));
75PTR bfd_realloc PARAMS ((bfd *abfd, PTR orig, size_t new));
76void bfd_alloc_grow PARAMS ((bfd *abfd, PTR thing, size_t size));
77PTR bfd_alloc_finish PARAMS ((bfd *abfd));
78PTR bfd_alloc_by_size_t PARAMS ((bfd *abfd, size_t wanted));
79
80#define bfd_release(x,y) (void) obstack_free(&(x->memory),y)
81
82
83bfd_size_type bfd_read PARAMS ((PTR ptr, bfd_size_type size,
84 bfd_size_type nitems, bfd *abfd));
85bfd_size_type bfd_write PARAMS ((CONST PTR ptr, bfd_size_type size,
86 bfd_size_type nitems, bfd *abfd));
87int bfd_seek PARAMS ((bfd* CONST abfd, CONST file_ptr fp,
88 CONST int direction));
89long bfd_tell PARAMS ((bfd *abfd));
90
91bfd * _bfd_create_empty_archive_element_shell PARAMS ((bfd *obfd));
92bfd * look_for_bfd_in_cache PARAMS ((bfd *arch_bfd, file_ptr index));
93boolean _bfd_generic_mkarchive PARAMS ((bfd *abfd));
94struct areltdata * snarf_ar_hdr PARAMS ((bfd *abfd));
95bfd_target * bfd_generic_archive_p PARAMS ((bfd *abfd));
96boolean bfd_slurp_armap PARAMS ((bfd *abfd));
97boolean bfd_slurp_bsd_armap_f2 PARAMS ((bfd *abfd));
98#define bfd_slurp_bsd_armap bfd_slurp_armap
99#define bfd_slurp_coff_armap bfd_slurp_armap
100boolean _bfd_slurp_extended_name_table PARAMS ((bfd *abfd));
101boolean _bfd_write_archive_contents PARAMS ((bfd *abfd));
102bfd * new_bfd PARAMS (());
103
104#define DEFAULT_STRING_SPACE_SIZE 0x2000
105boolean bfd_add_to_string_table PARAMS ((char **table, char *new_string,
106 unsigned int *table_length,
107 char **free_ptr));
108
109boolean bfd_false PARAMS ((bfd *ignore));
110boolean bfd_true PARAMS ((bfd *ignore));
111PTR bfd_nullvoidptr PARAMS ((bfd *ignore));
112int bfd_0 PARAMS ((bfd *ignore));
113unsigned int bfd_0u PARAMS ((bfd *ignore));
114void bfd_void PARAMS ((bfd *ignore));
115
116bfd * new_bfd_contained_in PARAMS ((bfd *));
117boolean _bfd_dummy_new_section_hook PARAMS ((bfd *ignore, asection *newsect));
118char * _bfd_dummy_core_file_failing_command PARAMS ((bfd *abfd));
119int _bfd_dummy_core_file_failing_signal PARAMS ((bfd *abfd));
120boolean _bfd_dummy_core_file_matches_executable_p PARAMS ((bfd *core_bfd,
121 bfd *exec_bfd));
122bfd_target * _bfd_dummy_target PARAMS ((bfd *abfd));
123
124void bfd_dont_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
125 char *hdr));
126void bfd_bsd_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
127 char *hdr));
128void bfd_gnu_truncate_arname PARAMS ((bfd *abfd, CONST char *filename,
129 char *hdr));
130
131boolean bsd_write_armap PARAMS ((bfd *arch, unsigned int elength,
132 struct orl *map, unsigned int orl_count, int stridx));
133
134boolean coff_write_armap PARAMS ((bfd *arch, unsigned int elength,
135 struct orl *map, unsigned int orl_count, int stridx));
136
137bfd * bfd_generic_openr_next_archived_file PARAMS ((bfd *archive,
138 bfd *last_file));
139
140int bfd_generic_stat_arch_elt PARAMS ((bfd *, struct stat *));
141
142boolean bfd_generic_get_section_contents PARAMS ((bfd *abfd, sec_ptr section,
143 PTR location, file_ptr offset,
144 bfd_size_type count));
145
146boolean bfd_generic_set_section_contents PARAMS ((bfd *abfd, sec_ptr section,
147 PTR location, file_ptr offset,
148 bfd_size_type count));
149
150/* Macros to tell if bfds are read or write enabled.
151
152 Note that bfds open for read may be scribbled into if the fd passed
153 to bfd_fdopenr is actually open both for read and write
154 simultaneously. However an output bfd will never be open for
155 read. Therefore sometimes you want to check bfd_read_p or
156 !bfd_read_p, and only sometimes bfd_write_p.
157*/
158
159#define bfd_read_p(abfd) ((abfd)->direction == read_direction || (abfd)->direction == both_direction)
160#define bfd_write_p(abfd) ((abfd)->direction == write_direction || (abfd)->direction == both_direction)
161
162void bfd_assert PARAMS ((char*,int));
163
164#define BFD_ASSERT(x) \
165{ if (!(x)) bfd_assert(__FILE__,__LINE__); }
166
167#define BFD_FAIL() \
168{ bfd_assert(__FILE__,__LINE__); }
169
170FILE * bfd_cache_lookup_worker PARAMS ((bfd *));
171
172extern bfd *bfd_last_cache;
173
174/* Now Steve, what's the story here? */
175#ifdef lint
176#define itos(x) "l"
177#define stoi(x) 1
178#else
179#define itos(x) ((char*)(x))
180#define stoi(x) ((int)(x))
181#endif
182
183/* Generic routine for close_and_cleanup is really just bfd_true. */
184#define bfd_generic_close_and_cleanup bfd_true
185
186/* And more follows */
187
This page took 0.023004 seconds and 4 git commands to generate.