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