This is the version of devo/bfd/ChangeLog that was in the gdb-4.3 release.
[deliverable/binutils-gdb.git] / bfd / bfd-in.h
CommitLineData
63ffe5ef
SC
1/* A -*- C -*- header file for the bfd library
2 Copyright 1990, 1991 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
5This file is part of BFD, the Binary File Descriptor library.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21/* bfd.h -- The only header file required by users of the bfd library
22
23This file is generated from various .c files, if you change it, your
24bits may be lost.
25
26All the prototypes and definitions following the comment "THE FOLLOWING
27IS EXTRACTED FROM THE SOURCE" are extracted from the source files for
28BFD. If you change it, someone oneday will extract it from the source
29again, and your changes will be lost. To save yourself from this bind,
30change the definitions in the source in the bfd directory. Type "make
31docs" and then "make headers" in that directory, and magically this file
32will change to reflect your changes.
33
34If you don't have the tools to perform the extraction, then you are
35safe from someone on your system trampling over your header files.
36You should still maintain the equivalence between the source and this
37file though; every change you make to the .c file should be reflected
38here. */
39
40#ifndef __BFD_H_SEEN__
41#define __BFD_H_SEEN__
42
43#include "ansidecl.h"
44#include "obstack.h"
45
46/* Make it easier to declare prototypes (puts conditional here) */
47#ifndef PROTO
48# if __STDC__
49# define PROTO(type, name, arglist) type name arglist
50# else
51# define PROTO(type, name, arglist) type name ()
52# endif
53#endif
54
f004165e 55#define BFD_VERSION "0.18"
63ffe5ef
SC
56
57/* forward declaration */
58typedef struct _bfd bfd;
59
60/* General rules: functions which are boolean return true on success
61 and false on failure (unless they're a predicate). -- bfd.doc */
62/* I'm sure this is going to break something and someone is going to
63 force me to change it. */
f004165e
JG
64/* typedef enum boolean {false, true} boolean; */
65/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
66typedef enum bfd_boolean {false, true} boolean;
63ffe5ef
SC
67
68/* Try to avoid breaking stuff */
69typedef long int file_ptr;
70
71/* Support for different sizes of target format ints and addresses */
72
73#ifdef HOST_64_BIT
74typedef HOST_64_BIT rawdata_offset;
75typedef HOST_64_BIT bfd_vma;
76typedef HOST_64_BIT bfd_word;
77typedef HOST_64_BIT bfd_offset;
78typedef HOST_64_BIT bfd_size_type;
79typedef HOST_64_BIT symvalue;
80typedef HOST_64_BIT bfd_64_type;
81#define fprintf_vma(s,x) \
82 fprintf(s,"%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
83#define printf_vma(x) \
84 printf( "%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
85#else
86typedef struct {int a,b;} bfd_64_type;
87typedef unsigned long rawdata_offset;
88typedef unsigned long bfd_vma;
89typedef unsigned long bfd_offset;
90typedef unsigned long bfd_word;
91typedef unsigned long bfd_size;
92typedef unsigned long symvalue;
93typedef unsigned long bfd_size_type;
94#define printf_vma(x) printf( "%08lx", x)
95#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
96#endif
97
98typedef unsigned int flagword; /* 32 bits of flags */
99\f
100/** File formats */
101
102typedef enum bfd_format {
103 bfd_unknown = 0, /* file format is unknown */
104 bfd_object, /* linker/assember/compiler output */
105 bfd_archive, /* object archive file */
106 bfd_core, /* core dump */
107 bfd_type_end} /* marks the end; don't use it! */
108 bfd_format;
109
110/* Object file flag values */
111#define NO_FLAGS 0
112#define HAS_RELOC 001
113#define EXEC_P 002
114#define HAS_LINENO 004
115#define HAS_DEBUG 010
116#define HAS_SYMS 020
117#define HAS_LOCALS 040
118#define DYNAMIC 0100
119#define WP_TEXT 0200
120#define D_PAGED 0400
121
122\f
123/* symbols and relocation */
124
125typedef unsigned long symindex;
126
127#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
128
129typedef enum bfd_symclass {
130 bfd_symclass_unknown = 0,
131 bfd_symclass_fcommon, /* fortran common symbols */
132 bfd_symclass_global, /* global symbol, what a surprise */
133 bfd_symclass_debugger, /* some debugger symbol */
134 bfd_symclass_undefined /* none known */
135 } symclass;
136
137
138typedef int symtype; /* Who knows, yet? */
139
140
141/* general purpose part of a symbol;
142 target specific parts will be found in libcoff.h, liba.out.h etc */
143
144
145#define bfd_get_section(x) ((x)->section)
146#define bfd_get_output_section(x) ((x)->section->output_section)
147#define bfd_set_section(x,y) ((x)->section) = (y)
148#define bfd_asymbol_base(x) ((x)->section?((x)->section->vma):0)
149#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + x->value)
150#define bfd_asymbol_name(x) ((x)->name)
151
152/* This is a type pun with struct ranlib on purpose! */
153typedef struct carsym {
154 char *name;
155 file_ptr file_offset; /* look here to find the file */
156} carsym; /* to make these you call a carsymogen */
157
158
159/* Used in generating armaps. Perhaps just a forward definition would do? */
160struct orl { /* output ranlib */
161 char **name; /* symbol name */
162 file_ptr pos; /* bfd* or file position */
163 int namidx; /* index into string table */
164};
165
166\f
167
168/* Linenumber stuff */
169typedef struct lineno_cache_entry {
170 unsigned int line_number; /* Linenumber from start of function*/
171 union {
172 struct symbol_cache_entry *sym; /* Function name */
173 unsigned long offset; /* Offset into section */
174 } u;
175} alent;
176\f
177/* object and core file sections */
178
179
180#define align_power(addr, align) \
181 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
182
183typedef struct sec *sec_ptr;
184
185#define bfd_section_name(bfd, ptr) ((ptr)->name)
186#define bfd_section_size(bfd, ptr) ((ptr)->size)
187#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
188#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
189#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags)
190#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
191
192#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (val)), true)
193#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
194#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
195
196typedef struct stat stat_type;
197\f
198/** Error handling */
199
200typedef enum bfd_error {
201 no_error = 0, system_call_error, invalid_target,
202 wrong_format, invalid_operation, no_memory,
203 no_symbols, no_relocation_info,
204 no_more_archived_files, malformed_archive,
205 symbol_not_found, file_not_recognized,
206 file_ambiguously_recognized, no_contents,
cbdc7909
JG
207 bfd_error_nonrepresentable_section,
208 no_debug_section,
63ffe5ef
SC
209 invalid_error_code} bfd_ec;
210
211extern bfd_ec bfd_error;
212
213typedef struct bfd_error_vector {
214 PROTO(void,(* nonrepresentable_section ),(CONST bfd *CONST abfd,
215 CONST char *CONST name));
216} bfd_error_vector_type;
217
218PROTO (char *, bfd_errmsg, ());
219PROTO (void, bfd_perror, (CONST char *message));
220\f
221
222typedef enum bfd_print_symbol
223{
cbdc7909
JG
224 bfd_print_symbol_name,
225 bfd_print_symbol_more,
226 bfd_print_symbol_all
227} bfd_print_symbol_type;
63ffe5ef
SC
228
229\f
230\f
231/* The code that implements targets can initialize a jump table with this
232 macro. It must name all its routines the same way (a prefix plus
233 the standard routine suffix), or it must #define the routines that
234 are not so named, before calling JUMP_TABLE in the initializer. */
235
236/* Semi-portable string concatenation in cpp */
237#ifndef CAT
238#ifdef __STDC__
239#define CAT(a,b) a##b
240#else
241#define CAT(a,b) a/**/b
242#endif
243#endif
244
245#define JUMP_TABLE(NAME)\
246CAT(NAME,_core_file_failing_command),\
247CAT(NAME,_core_file_failing_signal),\
248CAT(NAME,_core_file_matches_executable_p),\
249CAT(NAME,_slurp_armap),\
250CAT(NAME,_slurp_extended_name_table),\
251CAT(NAME,_truncate_arname),\
252CAT(NAME,_write_armap),\
253CAT(NAME,_close_and_cleanup), \
254CAT(NAME,_set_section_contents),\
255CAT(NAME,_get_section_contents),\
256CAT(NAME,_new_section_hook),\
257CAT(NAME,_get_symtab_upper_bound),\
258CAT(NAME,_get_symtab),\
259CAT(NAME,_get_reloc_upper_bound),\
260CAT(NAME,_canonicalize_reloc),\
261CAT(NAME,_make_empty_symbol),\
262CAT(NAME,_print_symbol),\
263CAT(NAME,_get_lineno),\
264CAT(NAME,_set_arch_mach),\
265CAT(NAME,_openr_next_archived_file),\
266CAT(NAME,_find_nearest_line),\
267CAT(NAME,_generic_stat_arch_elt),\
268CAT(NAME,_sizeof_headers),\
269CAT(NAME,_bfd_debug_info_start),\
270CAT(NAME,_bfd_debug_info_end),\
271CAT(NAME,_bfd_debug_info_accumulate)
272
cbdc7909
JG
273#define COFF_SWAP_TABLE \
274 coff_swap_aux_in, coff_swap_sym_in, coff_swap_lineno_in, \
275 coff_swap_aux_out, coff_swap_sym_out, \
276 coff_swap_lineno_out, coff_swap_reloc_out, \
277 coff_swap_filehdr_out, coff_swap_aouthdr_out, \
278 coff_swap_scnhdr_out
279
280
63ffe5ef
SC
281\f
282/* User program access to BFD facilities */
283
284extern CONST short _bfd_host_big_endian;
285#define HOST_BYTE_ORDER_BIG_P (*(char *)&_bfd_host_big_endian)
286
287/* The bfd itself */
288
289/* Cast from const char * to char * so that caller can assign to
290 a char * without a warning. */
291#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
292#define bfd_get_format(abfd) ((abfd)->format)
293#define bfd_get_target(abfd) ((abfd)->xvec->name)
294#define bfd_get_file_flags(abfd) ((abfd)->flags)
295#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
296#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
297#define bfd_my_archive(abfd) ((abfd)->my_archive);
298#define bfd_has_map(abfd) ((abfd)->has_armap)
299#define bfd_header_twiddle_required(abfd) \
300 ((((abfd)->xvec->header_byteorder_big_p) \
301 != (boolean)HOST_BYTE_ORDER_BIG_P) ? true:false)
302
303#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
304#define bfd_usrdata(abfd) ((abfd)->usrdata)
305
306#define bfd_get_start_address(abfd) ((abfd)->start_address)
307#define bfd_get_symcount(abfd) ((abfd)->symcount)
308#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
309#define bfd_count_sections(abfd) ((abfd)->section_count)
310#define bfd_get_architecture(abfd) ((abfd)->obj_arch)
311#define bfd_get_machine(abfd) ((abfd)->obj_machine)
312
313
314
315#define BYTE_SIZE 1
316#define SHORT_SIZE 2
317#define LONG_SIZE 4
318
319
320
321/*THE FOLLOWING IS EXTRACTED FROM THE SOURCE */
322
323
324/*:init.c*/
325
326/*:opncls.c*/
327
328
329/*:libbfd.c*/
330
331/*:section.c*/
332
333
334/*:archures.c*/
335
63ffe5ef
SC
336/*:reloc.c*/
337
338/*:syms.c*/
339
340/*:bfd.c*/
341
342/*:archive.c*/
343
344/*:core.c*/
345
346/*:targets.c*/
347
348/*:format.c*/
349
350#endif
351
352
353
354
355
This page took 0.041397 seconds and 4 git commands to generate.