* breakpoint.c, breakpoint.h (breakpoint_init_inferior): New function
[deliverable/binutils-gdb.git] / bfd / bfd-in2.h
CommitLineData
fdcb0453 1/* Main header file for the bfd library -- portable access to object files.
fdcb0453
KR
2 Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
3 Contributed by Cygnus Support.
4
b66b07a2
KR
5** NOTE: bfd.h and bfd-in2.h are GENERATED files. Don't change them;
6** instead, change bfd-in.h or the other BFD source files processed to
7** generate these files.
8
fdcb0453
KR
9This file is part of BFD, the Binary File Descriptor library.
10
11This program is free software; you can redistribute it and/or modify
12it under the terms of the GNU General Public License as published by
13the Free Software Foundation; either version 2 of the License, or
14(at your option) any later version.
15
16This program is distributed in the hope that it will be useful,
17but WITHOUT ANY WARRANTY; without even the implied warranty of
18MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19GNU General Public License for more details.
20
21You should have received a copy of the GNU General Public License
22along with this program; if not, write to the Free Software
23Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
24
25/* bfd.h -- The only header file required by users of the bfd library
26
27The bfd.h file is generated from bfd-in.h and various .c files; if you
28change it, your changes will probably be lost.
29
30All the prototypes and definitions following the comment "THE FOLLOWING
31IS EXTRACTED FROM THE SOURCE" are extracted from the source files for
32BFD. If you change it, someone oneday will extract it from the source
33again, and your changes will be lost. To save yourself from this bind,
34change the definitions in the source in the bfd directory. Type "make
35docs" and then "make headers" in that directory, and magically this file
36will change to reflect your changes.
37
38If you don't have the tools to perform the extraction, then you are
39safe from someone on your system trampling over your header files.
40You should still maintain the equivalence between the source and this
41file though; every change you make to the .c file should be reflected
42here. */
43
44#ifndef __BFD_H_SEEN__
45#define __BFD_H_SEEN__
46
47#include "ansidecl.h"
48#include "obstack.h"
49
50#define BFD_VERSION "2.2"
51
52#define BFD_ARCH_SIZE @WORDSIZE@
53
54#if BFD_ARCH_SIZE >= 64
55#define BFD64
56#endif
57
c3e964b9
FF
58#ifndef INLINE
59#if __GNUC__ >= 2
60#define INLINE __inline__
61#else
62#define INLINE
63#endif
64#endif
65
87cc59ce
KR
66/* 64-bit type definition (if any) from bfd's sysdep.h goes here */
67
fdcb0453
KR
68
69/* forward declaration */
70typedef struct _bfd bfd;
71
72/* To squelch erroneous compiler warnings ("illegal pointer
73 combination") from the SVR3 compiler, we would like to typedef
74 boolean to int (it doesn't like functions which return boolean.
75 Making sure they are never implicitly declared to return int
76 doesn't seem to help). But this file is not configured based on
77 the host. */
78/* General rules: functions which are boolean return true on success
79 and false on failure (unless they're a predicate). -- bfd.doc */
80/* I'm sure this is going to break something and someone is going to
81 force me to change it. */
82/* typedef enum boolean {false, true} boolean; */
83/* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
84typedef enum bfd_boolean {false, true} boolean;
85
86/* A pointer to a position in a file. */
87/* FIXME: This should be using off_t from <sys/types.h>.
88 For now, try to avoid breaking stuff by not including <sys/types.h> here.
89 This will break on systems with 64-bit file offsets (e.g. 4.4BSD).
90 Probably the best long-term answer is to avoid using file_ptr AND off_t
91 in this header file, and to handle this in the BFD implementation
92 rather than in its interface. */
93/* typedef off_t file_ptr; */
94typedef long int file_ptr;
95
96/* Support for different sizes of target format ints and addresses. If the
97 host implements 64-bit values, it defines HOST_64_BIT to be the appropriate
98 type. Otherwise, this code will fall back on gcc's "long long" type if gcc
99 is being used. HOST_64_BIT must be defined in such a way as to be a valid
100 type name by itself or with "unsigned" prefixed. It should be a signed
101 type by itself.
102
103 If neither is the case, then compilation will fail if 64-bit targets are
104 requested. If you don't request any 64-bit targets, you should be safe. */
105
106#ifdef BFD64
107
108#if defined (__GNUC__) && !defined (HOST_64_BIT)
109#define HOST_64_BIT long long
110typedef HOST_64_BIT int64_type;
111typedef unsigned HOST_64_BIT uint64_type;
112#endif
113
fa5ba217
KR
114#if !defined (uint64_type) && defined (__GNUC__)
115#define uint64_type unsigned long long
116#define int64_type long long
117#define uint64_typeLOW(x) (unsigned long)(((x) & 0xffffffff))
118#define uint64_typeHIGH(x) (unsigned long)(((x) >> 32) & 0xffffffff)
119#endif
120
fdcb0453
KR
121typedef unsigned HOST_64_BIT bfd_vma;
122typedef HOST_64_BIT bfd_signed_vma;
123typedef unsigned HOST_64_BIT bfd_size_type;
124typedef unsigned HOST_64_BIT symvalue;
125#define fprintf_vma(s,x) \
126 fprintf(s,"%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
fa5ba217
KR
127#define sprintf_vma(s,x) \
128 sprintf(s,"%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
fdcb0453
KR
129#else /* not BFD64 */
130
131/* Represent a target address. Also used as a generic unsigned type
132 which is guaranteed to be big enough to hold any arithmetic types
133 we need to deal with. */
134typedef unsigned long bfd_vma;
135
136/* A generic signed type which is guaranteed to be big enough to hold any
137 arithmetic types we need to deal with. Can be assumed to be compatible
138 with bfd_vma in the same way that signed and unsigned ints are compatible
139 (as parameters, in assignment, etc). */
140typedef long bfd_signed_vma;
141
142typedef unsigned long symvalue;
143typedef unsigned long bfd_size_type;
144
145/* Print a bfd_vma x on stream s. */
146#define fprintf_vma(s,x) fprintf(s, "%08lx", x)
fa5ba217 147#define sprintf_vma(s,x) sprintf(s, "%08lx", x)
fdcb0453
KR
148#endif /* not BFD64 */
149#define printf_vma(x) fprintf_vma(stdout,x)
150
151typedef unsigned int flagword; /* 32 bits of flags */
152\f
153/** File formats */
154
155typedef enum bfd_format {
156 bfd_unknown = 0, /* file format is unknown */
157 bfd_object, /* linker/assember/compiler output */
158 bfd_archive, /* object archive file */
159 bfd_core, /* core dump */
160 bfd_type_end} /* marks the end; don't use it! */
161 bfd_format;
162
163/* Object file flag values */
164#define NO_FLAGS 0x00
165#define HAS_RELOC 0x01
166#define EXEC_P 0x02
167#define HAS_LINENO 0x04
168#define HAS_DEBUG 0x08
169#define HAS_SYMS 0x10
170#define HAS_LOCALS 0x20
171#define DYNAMIC 0x40
172#define WP_TEXT 0x80
173#define D_PAGED 0x100
174#define BFD_IS_RELAXABLE 0x200
175\f
176/* symbols and relocation */
177
178typedef unsigned long symindex;
179
180#define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
181
182typedef enum bfd_symclass {
183 bfd_symclass_unknown = 0,
184 bfd_symclass_fcommon, /* fortran common symbols */
185 bfd_symclass_global, /* global symbol, what a surprise */
186 bfd_symclass_debugger, /* some debugger symbol */
187 bfd_symclass_undefined /* none known */
188 } symclass;
189
190
fdcb0453
KR
191/* general purpose part of a symbol;
192 target specific parts will be found in libcoff.h, liba.out.h etc */
193
194
195#define bfd_get_section(x) ((x)->section)
196#define bfd_get_output_section(x) ((x)->section->output_section)
197#define bfd_set_section(x,y) ((x)->section) = (y)
198#define bfd_asymbol_base(x) ((x)->section->vma)
199#define bfd_asymbol_value(x) (bfd_asymbol_base(x) + (x)->value)
200#define bfd_asymbol_name(x) ((x)->name)
201/*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
202#define bfd_asymbol_bfd(x) ((x)->the_bfd)
203#define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
204
205/* This is a type pun with struct ranlib on purpose! */
206typedef struct carsym {
207 char *name;
208 file_ptr file_offset; /* look here to find the file */
209} carsym; /* to make these you call a carsymogen */
210
211
212/* Used in generating armaps. Perhaps just a forward definition would do? */
213struct orl { /* output ranlib */
214 char **name; /* symbol name */
215 file_ptr pos; /* bfd* or file position */
216 int namidx; /* index into string table */
217};
218
219\f
220
221/* Linenumber stuff */
222typedef struct lineno_cache_entry {
223 unsigned int line_number; /* Linenumber from start of function*/
224 union {
225 struct symbol_cache_entry *sym; /* Function name */
226 unsigned long offset; /* Offset into section */
227 } u;
228} alent;
229\f
230/* object and core file sections */
231
232
233#define align_power(addr, align) \
234 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
235
236typedef struct sec *sec_ptr;
237
238#define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
239#define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
240#define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
241#define bfd_section_name(bfd, ptr) ((ptr)->name)
242#define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
243#define bfd_section_vma(bfd, ptr) ((ptr)->vma)
244#define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
245#define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
246#define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
247
248#define bfd_is_com_section(ptr) (((ptr)->flags & SEC_IS_COMMON) != 0)
249
250#define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (ptr)->lma= (val)), ((ptr)->user_set_vma = true), true)
251#define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
252#define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
253
254typedef struct stat stat_type;
255\f
256/** Error handling */
257
258typedef enum bfd_error {
259 no_error = 0, system_call_error, invalid_target,
260 wrong_format, invalid_operation, no_memory,
261 no_symbols, no_relocation_info,
262 no_more_archived_files, malformed_archive,
263 symbol_not_found, file_not_recognized,
264 file_ambiguously_recognized, no_contents,
265 bfd_error_nonrepresentable_section,
266 no_debug_section, bad_value,
267
268 /* An input file is shorter than expected. */
269 file_truncated,
270
271 invalid_error_code} bfd_ec;
272
273extern bfd_ec bfd_error;
274struct reloc_cache_entry;
275struct bfd_seclet;
276
277
278typedef struct bfd_error_vector {
279 void (* nonrepresentable_section ) PARAMS ((CONST bfd *CONST abfd,
280 CONST char *CONST name));
281 void (* undefined_symbol) PARAMS ((CONST struct reloc_cache_entry *rel,
282 CONST struct bfd_seclet *sec));
283 void (* reloc_value_truncated) PARAMS ((CONST struct
284 reloc_cache_entry *rel,
285 struct bfd_seclet *sec));
286
287 void (* reloc_dangerous) PARAMS ((CONST struct reloc_cache_entry *rel,
288 CONST struct bfd_seclet *sec));
289
290} bfd_error_vector_type;
291
292CONST char *bfd_errmsg PARAMS ((bfd_ec error_tag));
293void bfd_perror PARAMS ((CONST char *message));
294\f
295
296typedef enum bfd_print_symbol
297{
298 bfd_print_symbol_name,
299 bfd_print_symbol_more,
300 bfd_print_symbol_all
301} bfd_print_symbol_type;
302
303\f
304/* Information about a symbol that nm needs. */
305
306typedef struct _symbol_info
307{
308 symvalue value;
309 char type; /* */
310 CONST char *name; /* Symbol name. */
311 char stab_other; /* Unused. */
312 short stab_desc; /* Info for N_TYPE. */
313 CONST char *stab_name;
314} symbol_info;
315\f
316/* The code that implements targets can initialize a jump table with this
317 macro. It must name all its routines the same way (a prefix plus
318 the standard routine suffix), or it must #define the routines that
319 are not so named, before calling JUMP_TABLE in the initializer. */
320
c3e964b9
FF
321/* Semi-portable string concatenation in cpp.
322 The CAT4 hack is to avoid a problem with some strict ANSI C preprocessors.
323 The problem is, "32_" is not a valid preprocessing token, and we don't
324 want extra underscores (e.g., "nlm_32_"). The XCAT2 macro will cause the
325 inner CAT macros to be evaluated first, producing still-valid pp-tokens.
326 Then the final concatenation can be done. (Sigh.) */
fdcb0453 327#ifndef CAT
c3e964b9
FF
328#ifdef SABER
329#define CAT(a,b) a##b
330#define CAT3(a,b,c) a##b##c
331#define CAT4(a,b,c,d) a##b##c##d
332#else
fdcb0453
KR
333#ifdef __STDC__
334#define CAT(a,b) a##b
335#define CAT3(a,b,c) a##b##c
c3e964b9
FF
336#define XCAT2(a,b) CAT(a,b)
337#define CAT4(a,b,c,d) XCAT2(CAT(a,b),CAT(c,d))
fdcb0453
KR
338#else
339#define CAT(a,b) a/**/b
340#define CAT3(a,b,c) a/**/b/**/c
c3e964b9
FF
341#define CAT4(a,b,c,d) a/**/b/**/c/**/d
342#endif
fdcb0453
KR
343#endif
344#endif
345
346#define JUMP_TABLE(NAME)\
347CAT(NAME,_core_file_failing_command),\
348CAT(NAME,_core_file_failing_signal),\
349CAT(NAME,_core_file_matches_executable_p),\
350CAT(NAME,_slurp_armap),\
351CAT(NAME,_slurp_extended_name_table),\
352CAT(NAME,_truncate_arname),\
353CAT(NAME,_write_armap),\
c3e964b9 354CAT(NAME,_close_and_cleanup),\
fdcb0453
KR
355CAT(NAME,_set_section_contents),\
356CAT(NAME,_get_section_contents),\
357CAT(NAME,_new_section_hook),\
358CAT(NAME,_get_symtab_upper_bound),\
359CAT(NAME,_get_symtab),\
360CAT(NAME,_get_reloc_upper_bound),\
361CAT(NAME,_canonicalize_reloc),\
362CAT(NAME,_make_empty_symbol),\
363CAT(NAME,_print_symbol),\
364CAT(NAME,_get_symbol_info),\
365CAT(NAME,_get_lineno),\
366CAT(NAME,_set_arch_mach),\
367CAT(NAME,_openr_next_archived_file),\
368CAT(NAME,_find_nearest_line),\
369CAT(NAME,_generic_stat_arch_elt),\
370CAT(NAME,_sizeof_headers),\
371CAT(NAME,_bfd_debug_info_start),\
372CAT(NAME,_bfd_debug_info_end),\
373CAT(NAME,_bfd_debug_info_accumulate),\
374CAT(NAME,_bfd_get_relocated_section_contents),\
375CAT(NAME,_bfd_relax_section),\
376CAT(NAME,_bfd_seclet_link),\
377CAT(NAME,_bfd_reloc_type_lookup),\
378CAT(NAME,_bfd_make_debug_symbol)
379
380#define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
381
382\f
383/* User program access to BFD facilities */
384
fdcb0453
KR
385/* Cast from const char * to char * so that caller can assign to
386 a char * without a warning. */
387#define bfd_get_filename(abfd) ((char *) (abfd)->filename)
388#define bfd_get_format(abfd) ((abfd)->format)
389#define bfd_get_target(abfd) ((abfd)->xvec->name)
390#define bfd_get_file_flags(abfd) ((abfd)->flags)
391#define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
392#define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
393#define bfd_my_archive(abfd) ((abfd)->my_archive)
394#define bfd_has_map(abfd) ((abfd)->has_armap)
fdcb0453
KR
395
396#define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
397#define bfd_usrdata(abfd) ((abfd)->usrdata)
398
399#define bfd_get_start_address(abfd) ((abfd)->start_address)
400#define bfd_get_symcount(abfd) ((abfd)->symcount)
401#define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
402#define bfd_count_sections(abfd) ((abfd)->section_count)
fdcb0453
KR
403
404#define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
405
2b91cc45
SG
406/* Byte swapping routines. */
407
408bfd_vma bfd_getb64 PARAMS ((unsigned char *));
409bfd_vma bfd_getl64 PARAMS ((unsigned char *));
410bfd_signed_vma bfd_getb_signed_64 PARAMS ((unsigned char *));
411bfd_signed_vma bfd_getl_signed_64 PARAMS ((unsigned char *));
412bfd_vma bfd_getb32 PARAMS ((unsigned char *));
413bfd_vma bfd_getl32 PARAMS ((unsigned char *));
414bfd_signed_vma bfd_getb_signed_32 PARAMS ((unsigned char *));
415bfd_signed_vma bfd_getl_signed_32 PARAMS ((unsigned char *));
416bfd_vma bfd_getb16 PARAMS ((unsigned char *));
417bfd_vma bfd_getl16 PARAMS ((unsigned char *));
418bfd_signed_vma bfd_getb_signed_16 PARAMS ((unsigned char *));
419bfd_signed_vma bfd_getl_signed_16 PARAMS ((unsigned char *));
420void bfd_putb64 PARAMS ((bfd_vma, unsigned char *));
421void bfd_putl64 PARAMS ((bfd_vma, unsigned char *));
422void bfd_putb32 PARAMS ((bfd_vma, unsigned char *));
423void bfd_putl32 PARAMS ((bfd_vma, unsigned char *));
424void bfd_putb16 PARAMS ((bfd_vma, unsigned char *));
425void bfd_putl16 PARAMS ((bfd_vma, unsigned char *));
426
fdcb0453
KR
427/* And more from the source. */
428void
429bfd_init PARAMS ((void));
430
431bfd *
432bfd_openr PARAMS ((CONST char *filename, CONST char*target));
433
434bfd *
435bfd_fdopenr PARAMS ((CONST char *filename, CONST char *target, int fd));
436
437bfd *
438bfd_openw PARAMS ((CONST char *filename, CONST char *target));
439
440boolean
441bfd_close PARAMS ((bfd *));
442
443boolean
444bfd_close_all_done PARAMS ((bfd *));
445
446bfd_size_type
447bfd_alloc_size PARAMS ((bfd *abfd));
448
449bfd *
10bd43a8 450bfd_create PARAMS ((CONST char *filename, bfd *templ));
fdcb0453
KR
451
452
453 /* Byte swapping macros for user section data. */
454
455#define bfd_put_8(abfd, val, ptr) \
456 (*((unsigned char *)(ptr)) = (unsigned char)val)
457#define bfd_put_signed_8 \
458 bfd_put_8
459#define bfd_get_8(abfd, ptr) \
460 (*(unsigned char *)(ptr))
461#define bfd_get_signed_8(abfd, ptr) \
462 ((*(unsigned char *)(ptr) ^ 0x80) - 0x80)
463
464#define bfd_put_16(abfd, val, ptr) \
465 BFD_SEND(abfd, bfd_putx16, ((val),(ptr)))
466#define bfd_put_signed_16 \
467 bfd_put_16
468#define bfd_get_16(abfd, ptr) \
469 BFD_SEND(abfd, bfd_getx16, (ptr))
470#define bfd_get_signed_16(abfd, ptr) \
471 BFD_SEND (abfd, bfd_getx_signed_16, (ptr))
472
473#define bfd_put_32(abfd, val, ptr) \
474 BFD_SEND(abfd, bfd_putx32, ((val),(ptr)))
475#define bfd_put_signed_32 \
476 bfd_put_32
477#define bfd_get_32(abfd, ptr) \
478 BFD_SEND(abfd, bfd_getx32, (ptr))
479#define bfd_get_signed_32(abfd, ptr) \
480 BFD_SEND(abfd, bfd_getx_signed_32, (ptr))
481
482#define bfd_put_64(abfd, val, ptr) \
483 BFD_SEND(abfd, bfd_putx64, ((val), (ptr)))
484#define bfd_put_signed_64 \
485 bfd_put_64
486#define bfd_get_64(abfd, ptr) \
487 BFD_SEND(abfd, bfd_getx64, (ptr))
488#define bfd_get_signed_64(abfd, ptr) \
489 BFD_SEND(abfd, bfd_getx_signed_64, (ptr))
490
491
492 /* Byte swapping macros for file header data. */
493
494#define bfd_h_put_8(abfd, val, ptr) \
495 bfd_put_8 (abfd, val, ptr)
496#define bfd_h_put_signed_8(abfd, val, ptr) \
497 bfd_put_8 (abfd, val, ptr)
498#define bfd_h_get_8(abfd, ptr) \
499 bfd_get_8 (abfd, ptr)
500#define bfd_h_get_signed_8(abfd, ptr) \
501 bfd_get_signed_8 (abfd, ptr)
502
503#define bfd_h_put_16(abfd, val, ptr) \
504 BFD_SEND(abfd, bfd_h_putx16,(val,ptr))
505#define bfd_h_put_signed_16 \
506 bfd_h_put_16
507#define bfd_h_get_16(abfd, ptr) \
508 BFD_SEND(abfd, bfd_h_getx16,(ptr))
509#define bfd_h_get_signed_16(abfd, ptr) \
510 BFD_SEND(abfd, bfd_h_getx_signed_16, (ptr))
511
512#define bfd_h_put_32(abfd, val, ptr) \
513 BFD_SEND(abfd, bfd_h_putx32,(val,ptr))
514#define bfd_h_put_signed_32 \
515 bfd_h_put_32
516#define bfd_h_get_32(abfd, ptr) \
517 BFD_SEND(abfd, bfd_h_getx32,(ptr))
518#define bfd_h_get_signed_32(abfd, ptr) \
519 BFD_SEND(abfd, bfd_h_getx_signed_32, (ptr))
520
521#define bfd_h_put_64(abfd, val, ptr) \
522 BFD_SEND(abfd, bfd_h_putx64,(val, ptr))
523#define bfd_h_put_signed_64 \
524 bfd_h_put_64
525#define bfd_h_get_64(abfd, ptr) \
526 BFD_SEND(abfd, bfd_h_getx64,(ptr))
527#define bfd_h_get_signed_64(abfd, ptr) \
528 BFD_SEND(abfd, bfd_h_getx_signed_64, (ptr))
529
530typedef struct sec
531{
532 /* The name of the section, the name isn't a copy, the pointer is
533 the same as that passed to bfd_make_section. */
534
535 CONST char *name;
536
fdcb0453
KR
537 /* Which section is it 0.nth */
538
539 int index;
540
541 /* The next section in the list belonging to the BFD, or NULL. */
542
543 struct sec *next;
544
545 /* The field flags contains attributes of the section. Some of
546 flags are read in from the object file, and some are
547 synthesized from other information. */
548
549 flagword flags;
550
551#define SEC_NO_FLAGS 0x000
552
553 /* Tells the OS to allocate space for this section when loaded.
554 This would clear for a section containing debug information
555 only. */
fdcb0453 556#define SEC_ALLOC 0x001
ef758f3e 557
fdcb0453
KR
558 /* Tells the OS to load the section from the file when loading.
559 This would be clear for a .bss section */
fdcb0453 560#define SEC_LOAD 0x002
ef758f3e 561
fdcb0453
KR
562 /* The section contains data still to be relocated, so there will
563 be some relocation information too. */
fdcb0453
KR
564#define SEC_RELOC 0x004
565
b2ae9efb 566#if 0 /* Obsolete ? */
fdcb0453 567#define SEC_BALIGN 0x008
b2ae9efb 568#endif
fdcb0453
KR
569
570 /* A signal to the OS that the section contains read only
571 data. */
572#define SEC_READONLY 0x010
573
574 /* The section contains code only. */
fdcb0453
KR
575#define SEC_CODE 0x020
576
577 /* The section contains data only. */
b2ae9efb 578#define SEC_DATA 0x040
fdcb0453
KR
579
580 /* The section will reside in ROM. */
fdcb0453
KR
581#define SEC_ROM 0x080
582
583 /* The section contains constructor information. This section
584 type is used by the linker to create lists of constructors and
585 destructors used by <<g++>>. When a back end sees a symbol
586 which should be used in a constructor list, it creates a new
587 section for the type of name (eg <<__CTOR_LIST__>>), attaches
588 the symbol to it and builds a relocation. To build the lists
bc750ff1 589 of constructors, all the linker has to do is catenate all the
fdcb0453
KR
590 sections called <<__CTOR_LIST__>> and relocte the data
591 contained within - exactly the operations it would peform on
592 standard data. */
fdcb0453
KR
593#define SEC_CONSTRUCTOR 0x100
594
595 /* The section is a constuctor, and should be placed at the
b2ae9efb 596 end of the text, data, or bss section(?). */
fdcb0453 597#define SEC_CONSTRUCTOR_TEXT 0x1100
fdcb0453 598#define SEC_CONSTRUCTOR_DATA 0x2100
fdcb0453
KR
599#define SEC_CONSTRUCTOR_BSS 0x3100
600
601 /* The section has contents - a data section could be
602 <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>, a debug section could be
603 <<SEC_HAS_CONTENTS>> */
fdcb0453
KR
604#define SEC_HAS_CONTENTS 0x200
605
606 /* An instruction to the linker not to output sections
607 containing this flag even if they have information which
608 would normally be written. */
fdcb0453
KR
609#define SEC_NEVER_LOAD 0x400
610
611 /* The section is a shared library section. The linker must leave
612 these completely alone, as the vma and size are used when
613 the executable is loaded. */
fdcb0453
KR
614#define SEC_SHARED_LIBRARY 0x800
615
616 /* The section is a common section (symbols may be defined
617 multiple times, the value of a symbol is the amount of
618 space it requires, and the largest symbol value is the one
b2ae9efb
KR
619 used). Most targets have exactly one of these (which we
620 translate to bfd_com_section), but ECOFF has two. */
fdcb0453
KR
621#define SEC_IS_COMMON 0x8000
622
9b3fa589
JK
623 /* The section contains only debugging information. For
624 example, this is set for ELF .debug and .stab sections.
625 strip tests this flag to see if a section can be
626 discarded. */
627#define SEC_DEBUGGING 0x10000
628
b2ae9efb
KR
629 /* End of section flags. */
630
fdcb0453 631 /* The virtual memory address of the section - where it will be
b2ae9efb
KR
632 at run time. The symbols are relocated against this. The
633 user_set_vma flag is maintained by bfd; if it's not set, the
634 backend can assign addresses (for example, in <<a.out>>, where
635 the default address for <<.data>> is dependent on the specific
636 target and various flags). */
ef758f3e 637
fdcb0453 638 bfd_vma vma;
b2ae9efb 639 boolean user_set_vma;
fdcb0453
KR
640
641 /* The load address of the section - where it would be in a
b2ae9efb
KR
642 rom image, really only used for writing section header
643 information. */
ef758f3e 644
fdcb0453
KR
645 bfd_vma lma;
646
fdcb0453
KR
647 /* The size of the section in bytes, as it will be output.
648 contains a value even if the section has no contents (eg, the
649 size of <<.bss>>). This will be filled in after relocation */
650
651 bfd_size_type _cooked_size;
652
653 /* The size on disk of the section in bytes originally. Normally this
654 value is the same as the size, but if some relaxing has
655 been done, then this value will be bigger. */
656
657 bfd_size_type _raw_size;
658
659 /* If this section is going to be output, then this value is the
660 offset into the output section of the first byte in the input
661 section. Eg, if this was going to start at the 100th byte in
662 the output section, this value would be 100. */
663
664 bfd_vma output_offset;
665
666 /* The output section through which to map on output. */
667
668 struct sec *output_section;
669
670 /* The alignment requirement of the section, as an exponent - eg
671 3 aligns to 2^3 (or 8) */
672
673 unsigned int alignment_power;
674
675 /* If an input section, a pointer to a vector of relocation
676 records for the data in this section. */
677
678 struct reloc_cache_entry *relocation;
679
680 /* If an output section, a pointer to a vector of pointers to
681 relocation records for the data in this section. */
682
683 struct reloc_cache_entry **orelocation;
684
685 /* The number of relocation records in one of the above */
686
687 unsigned reloc_count;
688
689 /* Information below is back end specific - and not always used
ef758f3e 690 or updated. */
fdcb0453 691
ef758f3e 692 /* File position of section data */
fdcb0453
KR
693
694 file_ptr filepos;
695
696 /* File position of relocation info */
697
698 file_ptr rel_filepos;
699
700 /* File position of line data */
701
702 file_ptr line_filepos;
703
704 /* Pointer to data for applications */
705
706 PTR userdata;
707
708 struct lang_output_section *otheruserdata;
709
710 /* Attached line number information */
711
712 alent *lineno;
713
714 /* Number of line number records */
715
716 unsigned int lineno_count;
717
718 /* When a section is being output, this value changes as more
719 linenumbers are written out */
720
721 file_ptr moving_line_filepos;
722
723 /* what the section number is in the target world */
724
725 int target_index;
726
727 PTR used_by_bfd;
728
729 /* If this is a constructor section then here is a list of the
730 relocations created to relocate items within it. */
731
732 struct relent_chain *constructor_chain;
733
734 /* The BFD which owns the section. */
735
736 bfd *owner;
737
738 boolean reloc_done;
739 /* A symbol which points at this section only */
740 struct symbol_cache_entry *symbol;
741 struct symbol_cache_entry **symbol_ptr_ptr;
ef758f3e 742
fdcb0453
KR
743 struct bfd_seclet *seclets_head;
744 struct bfd_seclet *seclets_tail;
745} asection ;
746
747
b2ae9efb
KR
748 /* These sections are global, and are managed by BFD. The application
749 and target back end are not permitted to change the values in
750 these sections. */
fdcb0453
KR
751#define BFD_ABS_SECTION_NAME "*ABS*"
752#define BFD_UND_SECTION_NAME "*UND*"
753#define BFD_COM_SECTION_NAME "*COM*"
754#define BFD_IND_SECTION_NAME "*IND*"
755
756 /* the absolute section */
ef758f3e 757extern asection bfd_abs_section;
fdcb0453 758 /* Pointer to the undefined section */
ef758f3e 759extern asection bfd_und_section;
fdcb0453 760 /* Pointer to the common section */
ef758f3e 761extern asection bfd_com_section;
fdcb0453 762 /* Pointer to the indirect section */
ef758f3e 763extern asection bfd_ind_section;
fdcb0453 764
ef758f3e
KR
765extern struct symbol_cache_entry *bfd_abs_symbol;
766extern struct symbol_cache_entry *bfd_com_symbol;
767extern struct symbol_cache_entry *bfd_und_symbol;
768extern struct symbol_cache_entry *bfd_ind_symbol;
fdcb0453
KR
769#define bfd_get_section_size_before_reloc(section) \
770 (section->reloc_done ? (abort(),1): (section)->_raw_size)
771#define bfd_get_section_size_after_reloc(section) \
772 ((section->reloc_done) ? (section)->_cooked_size: (abort(),1))
773asection *
774bfd_get_section_by_name PARAMS ((bfd *abfd, CONST char *name));
775
776asection *
777bfd_make_section_old_way PARAMS ((bfd *, CONST char *name));
778
9b3fa589
JK
779asection *
780bfd_make_section_anyway PARAMS ((bfd *, CONST char *name));
781
782asection *
fdcb0453
KR
783bfd_make_section PARAMS ((bfd *, CONST char *name));
784
785boolean
786bfd_set_section_flags PARAMS ((bfd *, asection *, flagword));
787
788void
789bfd_map_over_sections PARAMS ((bfd *abfd,
790 void (*func)(bfd *abfd,
791 asection *sect,
792 PTR obj),
793 PTR obj));
794
795boolean
796bfd_set_section_size PARAMS ((bfd *, asection *, bfd_size_type val));
797
798boolean
799bfd_set_section_contents
800 PARAMS ((bfd *abfd,
801 asection *section,
802 PTR data,
803 file_ptr offset,
804 bfd_size_type count));
805
806boolean
807bfd_get_section_contents
808 PARAMS ((bfd *abfd, asection *section, PTR location,
809 file_ptr offset, bfd_size_type count));
810
811enum bfd_architecture
812{
813 bfd_arch_unknown, /* File arch not known */
814 bfd_arch_obscure, /* Arch known, not one of these */
815 bfd_arch_m68k, /* Motorola 68xxx */
816 bfd_arch_vax, /* DEC Vax */
817 bfd_arch_i960, /* Intel 960 */
818 /* The order of the following is important.
819 lower number indicates a machine type that
820 only accepts a subset of the instructions
821 available to machines with higher numbers.
822 The exception is the "ca", which is
823 incompatible with all other machines except
824 "core". */
825
826#define bfd_mach_i960_core 1
827#define bfd_mach_i960_ka_sa 2
828#define bfd_mach_i960_kb_sb 3
829#define bfd_mach_i960_mc 4
830#define bfd_mach_i960_xa 5
831#define bfd_mach_i960_ca 6
832
833 bfd_arch_a29k, /* AMD 29000 */
834 bfd_arch_sparc, /* SPARC */
835 bfd_arch_mips, /* MIPS Rxxxx */
836 bfd_arch_i386, /* Intel 386 */
837 bfd_arch_we32k, /* AT&T WE32xxx */
838 bfd_arch_tahoe, /* CCI/Harris Tahoe */
839 bfd_arch_i860, /* Intel 860 */
840 bfd_arch_romp, /* IBM ROMP PC/RT */
841 bfd_arch_alliant, /* Alliant */
842 bfd_arch_convex, /* Convex */
843 bfd_arch_m88k, /* Motorola 88xxx */
844 bfd_arch_pyramid, /* Pyramid Technology */
845 bfd_arch_h8300, /* Hitachi H8/300 */
846#define bfd_mach_h8300 1
847#define bfd_mach_h8300h 2
848 bfd_arch_rs6000, /* IBM RS/6000 */
849 bfd_arch_hppa, /* HP PA RISC */
850 bfd_arch_z8k, /* Zilog Z8000 */
851#define bfd_mach_z8001 1
852#define bfd_mach_z8002 2
853 bfd_arch_h8500, /* Hitachi H8/500 */
854 bfd_arch_sh, /* Hitachi SH */
855 bfd_arch_alpha, /* Dec Alpha */
856 bfd_arch_last
857 };
858
859typedef struct bfd_arch_info
860{
861 int bits_per_word;
862 int bits_per_address;
863 int bits_per_byte;
864 enum bfd_architecture arch;
865 long mach;
866 char *arch_name;
867 CONST char *printable_name;
868 unsigned int section_align_power;
869 /* true if this is the default machine for the architecture */
870 boolean the_default;
871 CONST struct bfd_arch_info * (*compatible)
872 PARAMS ((CONST struct bfd_arch_info *a,
873 CONST struct bfd_arch_info *b));
874
875 boolean (*scan) PARAMS ((CONST struct bfd_arch_info *, CONST char *));
876 /* How to disassemble an instruction, producing a printable
877 representation on a specified stdio stream. This isn't
878 defined for most processors at present, because of the size
879 of the additional tables it would drag in, and because gdb
880 wants to use a different interface. */
881 unsigned int (*disassemble) PARAMS ((bfd_vma addr, CONST char *data,
882 PTR stream));
883
884 struct bfd_arch_info *next;
885} bfd_arch_info_type;
886CONST char *
887bfd_printable_name PARAMS ((bfd *abfd));
888
889bfd_arch_info_type *
890bfd_scan_arch PARAMS ((CONST char *));
891
892CONST bfd_arch_info_type *
893bfd_arch_get_compatible PARAMS ((
894 CONST bfd *abfd,
895 CONST bfd *bbfd));
896
897void
898bfd_set_arch_info PARAMS ((bfd *, bfd_arch_info_type *));
899
900enum bfd_architecture
901bfd_get_arch PARAMS ((bfd *abfd));
902
903unsigned long
904bfd_get_mach PARAMS ((bfd *abfd));
905
906unsigned int
907bfd_arch_bits_per_byte PARAMS ((bfd *abfd));
908
909unsigned int
910bfd_arch_bits_per_address PARAMS ((bfd *abfd));
911
912bfd_arch_info_type *
913bfd_get_arch_info PARAMS ((bfd *));
914
915bfd_arch_info_type *
916bfd_lookup_arch
917 PARAMS ((enum bfd_architecture
918 arch,
919 long machine));
920
921CONST char *
922bfd_printable_arch_mach
923 PARAMS ((enum bfd_architecture arch, unsigned long machine));
924
925typedef enum bfd_reloc_status
926{
927 /* No errors detected */
928 bfd_reloc_ok,
929
930 /* The relocation was performed, but there was an overflow. */
931 bfd_reloc_overflow,
932
933 /* The address to relocate was not within the section supplied. */
934 bfd_reloc_outofrange,
935
936 /* Used by special functions */
937 bfd_reloc_continue,
938
939 /* Unused */
940 bfd_reloc_notsupported,
941
942 /* Unsupported relocation size requested. */
943 bfd_reloc_other,
944
945 /* The symbol to relocate against was undefined. */
946 bfd_reloc_undefined,
947
948 /* The relocation was performed, but may not be ok - presently
949 generated only when linking i960 coff files with i960 b.out
950 symbols. */
951 bfd_reloc_dangerous
952 }
953 bfd_reloc_status_type;
954
955
956typedef struct reloc_cache_entry
957{
958 /* A pointer into the canonical table of pointers */
959 struct symbol_cache_entry **sym_ptr_ptr;
960
961 /* offset in section */
962 bfd_size_type address;
963
964 /* addend for relocation value */
965 bfd_vma addend;
966
967 /* Pointer to how to perform the required relocation */
968 CONST struct reloc_howto_struct *howto;
969
970} arelent;
66a277ab
ILT
971enum complain_overflow
972{
973 /* Do not complain on overflow. */
974 complain_overflow_dont,
975
976 /* Complain if the bitfield overflows, whether it is considered
977 as signed or unsigned. */
978 complain_overflow_bitfield,
979
980 /* Complain if the value overflows when considered as signed
981 number. */
982 complain_overflow_signed,
983
984 /* Complain if the value overflows when considered as an
985 unsigned number. */
986 complain_overflow_unsigned
987};
fdcb0453
KR
988
989typedef CONST struct reloc_howto_struct
990{
991 /* The type field has mainly a documetary use - the back end can
992 to what it wants with it, though the normally the back end's
993 external idea of what a reloc number would be would be stored
994 in this field. For example, the a PC relative word relocation
995 in a coff environment would have the type 023 - because that's
996 what the outside world calls a R_PCRWORD reloc. */
997 unsigned int type;
998
999 /* The value the final relocation is shifted right by. This drops
1000 unwanted data from the relocation. */
1001 unsigned int rightshift;
1002
1003 /* The size of the item to be relocated - 0, is one byte, 1 is 2
1004 bytes, 2 is four bytes. A negative value indicates that the
1005 result is to be subtracted from the data. */
1006 int size;
1007
66a277ab
ILT
1008 /* The number of bits in the item to be relocated. This is used
1009 when doing overflow checking. */
fdcb0453
KR
1010 unsigned int bitsize;
1011
1012 /* Notes that the relocation is relative to the location in the
1013 data section of the addend. The relocation function will
1014 subtract from the relocation value the address of the location
1015 being relocated. */
1016 boolean pc_relative;
1017
66a277ab
ILT
1018 /* The bit position of the reloc value in the destination.
1019 The relocated value is left shifted by this amount. */
fdcb0453
KR
1020 unsigned int bitpos;
1021
66a277ab
ILT
1022 /* What type of overflow error should be checked for when
1023 relocating. */
1024 enum complain_overflow complain_on_overflow;
fdcb0453
KR
1025
1026 /* If this field is non null, then the supplied function is
1027 called rather than the normal function. This allows really
1028 strange relocation methods to be accomodated (e.g., i960 callj
1029 instructions). */
1030 bfd_reloc_status_type (*special_function)
1031 PARAMS ((bfd *abfd,
1032 arelent *reloc_entry,
1033 struct symbol_cache_entry *symbol,
1034 PTR data,
1035 asection *input_section,
1036 bfd *output_bfd));
1037
1038 /* The textual name of the relocation type. */
1039 char *name;
1040
1041 /* When performing a partial link, some formats must modify the
1042 relocations rather than the data - this flag signals this.*/
1043 boolean partial_inplace;
1044
1045 /* The src_mask is used to select what parts of the read in data
1046 are to be used in the relocation sum. E.g., if this was an 8 bit
1047 bit of data which we read and relocated, this would be
1048 0x000000ff. When we have relocs which have an addend, such as
1049 sun4 extended relocs, the value in the offset part of a
1050 relocating field is garbage so we never use it. In this case
1051 the mask would be 0x00000000. */
1052 bfd_vma src_mask;
1053
1054 /* The dst_mask is what parts of the instruction are replaced
1055 into the instruction. In most cases src_mask == dst_mask,
1056 except in the above special case, where dst_mask would be
1057 0x000000ff, and src_mask would be 0x00000000. */
1058 bfd_vma dst_mask;
1059
1060 /* When some formats create PC relative instructions, they leave
1061 the value of the pc of the place being relocated in the offset
1062 slot of the instruction, so that a PC relative relocation can
1063 be made just by adding in an ordinary offset (e.g., sun3 a.out).
1064 Some formats leave the displacement part of an instruction
1065 empty (e.g., m88k bcs), this flag signals the fact.*/
1066 boolean pcrel_offset;
1067
1068} reloc_howto_type;
66a277ab
ILT
1069#define HOWTO(C, R,S,B, P, BI, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
1070 {(unsigned)C,R,S,B, P, BI, O,SF,NAME,INPLACE,MASKSRC,MASKDST,PC}
1071#define NEWHOWTO( FUNCTION, NAME,SIZE,REL,IN) HOWTO(0,0,SIZE,0,REL,0,complain_overflow_dont,FUNCTION, NAME,false,0,0,IN)
fdcb0453
KR
1072
1073#define HOWTO_PREPARE(relocation, symbol) \
1074 { \
1075 if (symbol != (asymbol *)NULL) { \
1076 if (bfd_is_com_section (symbol->section)) { \
1077 relocation = 0; \
1078 } \
1079 else { \
1080 relocation = symbol->value; \
1081 } \
1082 } \
1083}
1084typedef unsigned char bfd_byte;
1085
1086typedef struct relent_chain {
1087 arelent relent;
1088 struct relent_chain *next;
1089} arelent_chain;
1090bfd_reloc_status_type
1091
1092bfd_perform_relocation
1093 PARAMS ((bfd * abfd,
1094 arelent *reloc_entry,
1095 PTR data,
1096 asection *input_section,
1097 bfd *output_bfd));
1098
1099typedef enum bfd_reloc_code_real
1100
1101{
ef758f3e 1102 /* 64 bits wide, simple reloc */
fa5ba217 1103 BFD_RELOC_64,
ef758f3e 1104 /* 64 bits, PC-relative */
fa5ba217
KR
1105 BFD_RELOC_64_PCREL,
1106
ef758f3e 1107 /* 32 bits wide, simple reloc */
fa5ba217 1108 BFD_RELOC_32,
ef758f3e 1109 /* 32 bits, PC-relative */
fa5ba217
KR
1110 BFD_RELOC_32_PCREL,
1111
ef758f3e 1112 /* 16 bits wide, simple reloc */
fdcb0453 1113 BFD_RELOC_16,
ef758f3e 1114 /* 16 bits, PC-relative */
fa5ba217 1115 BFD_RELOC_16_PCREL,
fdcb0453 1116
ef758f3e 1117 /* 8 bits wide, simple */
fdcb0453 1118 BFD_RELOC_8,
ef758f3e 1119 /* 8 bits wide, pc relative */
fdcb0453 1120 BFD_RELOC_8_PCREL,
ef758f3e 1121 /* 8 bits wide, but used to form an address like 0xffnn */
fa5ba217 1122 BFD_RELOC_8_FFnn,
fdcb0453 1123
ef758f3e
KR
1124 /* The type of reloc used to build a contructor table - at the moment
1125 probably a 32 bit wide abs address, but the cpu can choose. */
fdcb0453
KR
1126 BFD_RELOC_CTOR,
1127
ef758f3e 1128 /* High 22 bits of 32-bit value; simple reloc. */
fdcb0453 1129 BFD_RELOC_HI22,
ef758f3e 1130 /* Low 10 bits. */
fdcb0453
KR
1131 BFD_RELOC_LO10,
1132
ef758f3e 1133 /* Reloc types used for i960/b.out. */
fdcb0453
KR
1134 BFD_RELOC_24_PCREL,
1135 BFD_RELOC_I960_CALLJ,
1136
ef758f3e
KR
1137 /* 32-bit pc-relative, shifted right 2 bits (i.e., 30-bit
1138 word displacement, e.g. for SPARC) */
fdcb0453
KR
1139 BFD_RELOC_32_PCREL_S2,
1140
1141 /* now for the sparc/elf codes */
1142 BFD_RELOC_NONE, /* actually used */
1143 BFD_RELOC_SPARC_WDISP22,
1144 BFD_RELOC_SPARC22,
1145 BFD_RELOC_SPARC13,
fdcb0453
KR
1146 BFD_RELOC_SPARC_GOT10,
1147 BFD_RELOC_SPARC_GOT13,
1148 BFD_RELOC_SPARC_GOT22,
1149 BFD_RELOC_SPARC_PC10,
1150 BFD_RELOC_SPARC_PC22,
1151 BFD_RELOC_SPARC_WPLT30,
1152 BFD_RELOC_SPARC_COPY,
1153 BFD_RELOC_SPARC_GLOB_DAT,
1154 BFD_RELOC_SPARC_JMP_SLOT,
1155 BFD_RELOC_SPARC_RELATIVE,
1156 BFD_RELOC_SPARC_UA32,
1157
ef758f3e 1158 /* these are a.out specific? */
5284a822 1159 BFD_RELOC_SPARC_BASE13,
fdcb0453
KR
1160 BFD_RELOC_SPARC_BASE22,
1161
fa5ba217 1162 /* start-sanitize-v9 */
fa5ba217
KR
1163 BFD_RELOC_SPARC_10,
1164 BFD_RELOC_SPARC_11,
1165#define BFD_RELOC_SPARC_64 BFD_RELOC_64
1166 BFD_RELOC_SPARC_OLO10,
1167 BFD_RELOC_SPARC_HH22,
1168 BFD_RELOC_SPARC_HM10,
1169 BFD_RELOC_SPARC_LM22,
1170 BFD_RELOC_SPARC_PC_HH22,
1171 BFD_RELOC_SPARC_PC_HM10,
1172 BFD_RELOC_SPARC_PC_LM22,
1173 BFD_RELOC_SPARC_WDISP16,
5284a822 1174 BFD_RELOC_SPARC_WDISP19,
fa5ba217
KR
1175 BFD_RELOC_SPARC_GLOB_JMP,
1176 BFD_RELOC_SPARC_LO7,
1177 /* end-sanitize-v9 */
5284a822 1178
ef758f3e
KR
1179 /* Bits 27..2 of the relocation address shifted right 2 bits;
1180 simple reloc otherwise. */
fdcb0453
KR
1181 BFD_RELOC_MIPS_JMP,
1182
ef758f3e 1183 /* signed 16-bit pc-relative, shifted right 2 bits (e.g. for MIPS) */
fdcb0453
KR
1184 BFD_RELOC_16_PCREL_S2,
1185
ef758f3e 1186 /* High 16 bits of 32-bit value; simple reloc. */
fdcb0453 1187 BFD_RELOC_HI16,
ef758f3e
KR
1188 /* High 16 bits of 32-bit value but the low 16 bits will be sign
1189 extended and added to form the final result. If the low 16
1190 bits form a negative number, we need to add one to the high value
1191 to compensate for the borrow when the low bits are added. */
fdcb0453 1192 BFD_RELOC_HI16_S,
ef758f3e 1193 /* Low 16 bits. */
fdcb0453
KR
1194 BFD_RELOC_LO16,
1195
ef758f3e 1196 /* 16 bit relocation relative to the global pointer. */
fdcb0453
KR
1197 BFD_RELOC_MIPS_GPREL,
1198
ef758f3e
KR
1199 /* These are, so far, specific to HPPA processors. I'm not sure that some
1200 don't duplicate other reloc types, such as BFD_RELOC_32 and _32_PCREL.
1201 Also, many more were in the list I got that don't fit in well in the
1202 model BFD uses, so I've omitted them for now. If we do make this reloc
1203 type get used for code that really does implement the funky reloc types,
1204 they'll have to be added to this list. */
fdcb0453
KR
1205 BFD_RELOC_HPPA_32,
1206 BFD_RELOC_HPPA_11,
1207 BFD_RELOC_HPPA_14,
1208 BFD_RELOC_HPPA_17,
ef758f3e 1209
fdcb0453
KR
1210 BFD_RELOC_HPPA_L21,
1211 BFD_RELOC_HPPA_R11,
1212 BFD_RELOC_HPPA_R14,
1213 BFD_RELOC_HPPA_R17,
1214 BFD_RELOC_HPPA_LS21,
1215 BFD_RELOC_HPPA_RS11,
1216 BFD_RELOC_HPPA_RS14,
1217 BFD_RELOC_HPPA_RS17,
1218 BFD_RELOC_HPPA_LD21,
1219 BFD_RELOC_HPPA_RD11,
1220 BFD_RELOC_HPPA_RD14,
1221 BFD_RELOC_HPPA_RD17,
1222 BFD_RELOC_HPPA_LR21,
1223 BFD_RELOC_HPPA_RR14,
1224 BFD_RELOC_HPPA_RR17,
ef758f3e 1225
fdcb0453
KR
1226 BFD_RELOC_HPPA_GOTOFF_11,
1227 BFD_RELOC_HPPA_GOTOFF_14,
1228 BFD_RELOC_HPPA_GOTOFF_L21,
1229 BFD_RELOC_HPPA_GOTOFF_R11,
1230 BFD_RELOC_HPPA_GOTOFF_R14,
1231 BFD_RELOC_HPPA_GOTOFF_LS21,
1232 BFD_RELOC_HPPA_GOTOFF_RS11,
1233 BFD_RELOC_HPPA_GOTOFF_RS14,
1234 BFD_RELOC_HPPA_GOTOFF_LD21,
1235 BFD_RELOC_HPPA_GOTOFF_RD11,
1236 BFD_RELOC_HPPA_GOTOFF_RD14,
1237 BFD_RELOC_HPPA_GOTOFF_LR21,
1238 BFD_RELOC_HPPA_GOTOFF_RR14,
ef758f3e 1239
fdcb0453
KR
1240 BFD_RELOC_HPPA_DLT_32,
1241 BFD_RELOC_HPPA_DLT_11,
1242 BFD_RELOC_HPPA_DLT_14,
1243 BFD_RELOC_HPPA_DLT_L21,
1244 BFD_RELOC_HPPA_DLT_R11,
1245 BFD_RELOC_HPPA_DLT_R14,
ef758f3e 1246
fdcb0453
KR
1247 BFD_RELOC_HPPA_ABS_CALL_11,
1248 BFD_RELOC_HPPA_ABS_CALL_14,
1249 BFD_RELOC_HPPA_ABS_CALL_17,
1250 BFD_RELOC_HPPA_ABS_CALL_L21,
1251 BFD_RELOC_HPPA_ABS_CALL_R11,
1252 BFD_RELOC_HPPA_ABS_CALL_R14,
1253 BFD_RELOC_HPPA_ABS_CALL_R17,
1254 BFD_RELOC_HPPA_ABS_CALL_LS21,
1255 BFD_RELOC_HPPA_ABS_CALL_RS11,
1256 BFD_RELOC_HPPA_ABS_CALL_RS14,
1257 BFD_RELOC_HPPA_ABS_CALL_RS17,
1258 BFD_RELOC_HPPA_ABS_CALL_LD21,
1259 BFD_RELOC_HPPA_ABS_CALL_RD11,
1260 BFD_RELOC_HPPA_ABS_CALL_RD14,
1261 BFD_RELOC_HPPA_ABS_CALL_RD17,
1262 BFD_RELOC_HPPA_ABS_CALL_LR21,
1263 BFD_RELOC_HPPA_ABS_CALL_RR14,
1264 BFD_RELOC_HPPA_ABS_CALL_RR17,
ef758f3e 1265
fdcb0453
KR
1266 BFD_RELOC_HPPA_PCREL_CALL_11,
1267 BFD_RELOC_HPPA_PCREL_CALL_12,
1268 BFD_RELOC_HPPA_PCREL_CALL_14,
1269 BFD_RELOC_HPPA_PCREL_CALL_17,
1270 BFD_RELOC_HPPA_PCREL_CALL_L21,
1271 BFD_RELOC_HPPA_PCREL_CALL_R11,
1272 BFD_RELOC_HPPA_PCREL_CALL_R14,
1273 BFD_RELOC_HPPA_PCREL_CALL_R17,
1274 BFD_RELOC_HPPA_PCREL_CALL_LS21,
1275 BFD_RELOC_HPPA_PCREL_CALL_RS11,
1276 BFD_RELOC_HPPA_PCREL_CALL_RS14,
1277 BFD_RELOC_HPPA_PCREL_CALL_RS17,
1278 BFD_RELOC_HPPA_PCREL_CALL_LD21,
1279 BFD_RELOC_HPPA_PCREL_CALL_RD11,
1280 BFD_RELOC_HPPA_PCREL_CALL_RD14,
1281 BFD_RELOC_HPPA_PCREL_CALL_RD17,
1282 BFD_RELOC_HPPA_PCREL_CALL_LR21,
1283 BFD_RELOC_HPPA_PCREL_CALL_RR14,
1284 BFD_RELOC_HPPA_PCREL_CALL_RR17,
ef758f3e 1285
fdcb0453
KR
1286 BFD_RELOC_HPPA_PLABEL_32,
1287 BFD_RELOC_HPPA_PLABEL_11,
1288 BFD_RELOC_HPPA_PLABEL_14,
1289 BFD_RELOC_HPPA_PLABEL_L21,
1290 BFD_RELOC_HPPA_PLABEL_R11,
1291 BFD_RELOC_HPPA_PLABEL_R14,
ef758f3e 1292
fdcb0453
KR
1293 BFD_RELOC_HPPA_UNWIND_ENTRY,
1294 BFD_RELOC_HPPA_UNWIND_ENTRIES,
1295
b66b07a2
KR
1296 /* i386/elf relocations */
1297 BFD_RELOC_386_GOT32,
1298 BFD_RELOC_386_PLT32,
1299 BFD_RELOC_386_COPY,
1300 BFD_RELOC_386_GLOB_DAT,
1301 BFD_RELOC_386_JUMP_SLOT,
1302 BFD_RELOC_386_RELATIVE,
1303 BFD_RELOC_386_GOTOFF,
1304 BFD_RELOC_386_GOTPC,
1305
fdcb0453
KR
1306 /* this must be the highest numeric value */
1307 BFD_RELOC_UNUSED
1308 } bfd_reloc_code_real_type;
1309CONST struct reloc_howto_struct *
1310
1311bfd_reloc_type_lookup PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
1312
ef758f3e 1313
fdcb0453
KR
1314typedef struct symbol_cache_entry
1315{
1316 /* A pointer to the BFD which owns the symbol. This information
1317 is necessary so that a back end can work out what additional
1318 information (invisible to the application writer) is carried
1319 with the symbol.
1320
1321 This field is *almost* redundant, since you can use section->owner
1322 instead, except that some symbols point to the global sections
1323 bfd_{abs,com,und}_section. This could be fixed by making
1324 these globals be per-bfd (or per-target-flavor). FIXME. */
1325
1326 struct _bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field. */
1327
1328 /* The text of the symbol. The name is left alone, and not copied - the
1329 application may not alter it. */
1330 CONST char *name;
1331
1332 /* The value of the symbol. This really should be a union of a
1333 numeric value with a pointer, since some flags indicate that
1334 a pointer to another symbol is stored here. */
1335 symvalue value;
1336
1337 /* Attributes of a symbol: */
1338
1339#define BSF_NO_FLAGS 0x00
1340
1341 /* The symbol has local scope; <<static>> in <<C>>. The value
1342 is the offset into the section of the data. */
1343#define BSF_LOCAL 0x01
1344
1345 /* The symbol has global scope; initialized data in <<C>>. The
1346 value is the offset into the section of the data. */
1347#define BSF_GLOBAL 0x02
1348
1349 /* The symbol has global scope, and is exported. The value is
1350 the offset into the section of the data. */
ef758f3e 1351#define BSF_EXPORT BSF_GLOBAL /* no real difference */
fdcb0453
KR
1352
1353 /* A normal C symbol would be one of:
1354 <<BSF_LOCAL>>, <<BSF_FORT_COMM>>, <<BSF_UNDEFINED>> or
ef758f3e 1355 <<BSF_GLOBAL>> */
fdcb0453
KR
1356
1357 /* The symbol is a debugging record. The value has an arbitary
1358 meaning. */
1359#define BSF_DEBUGGING 0x08
1360
1361 /* The symbol denotes a function entry point. Used in ELF,
1362 perhaps others someday. */
1363#define BSF_FUNCTION 0x10
1364
1365 /* Used by the linker. */
1366#define BSF_KEEP 0x20
1367#define BSF_KEEP_G 0x40
1368
b66b07a2
KR
1369 /* A weak global symbol, overridable without warnings by
1370 a regular global symbol of the same name. */
fdcb0453
KR
1371#define BSF_WEAK 0x80
1372
1373 /* This symbol was created to point to a section, e.g. ELF's
1374 STT_SECTION symbols. */
1375#define BSF_SECTION_SYM 0x100
1376
1377 /* The symbol used to be a common symbol, but now it is
1378 allocated. */
1379#define BSF_OLD_COMMON 0x200
1380
1381 /* The default value for common data. */
1382#define BFD_FORT_COMM_DEFAULT_VALUE 0
1383
1384 /* In some files the type of a symbol sometimes alters its
1385 location in an output file - ie in coff a <<ISFCN>> symbol
1386 which is also <<C_EXT>> symbol appears where it was
1387 declared and not at the end of a section. This bit is set
1388 by the target BFD part to convey this information. */
1389
1390#define BSF_NOT_AT_END 0x400
1391
1392 /* Signal that the symbol is the label of constructor section. */
1393#define BSF_CONSTRUCTOR 0x800
1394
1395 /* Signal that the symbol is a warning symbol. If the symbol
1396 is a warning symbol, then the value field (I know this is
1397 tacky) will point to the asymbol which when referenced will
1398 cause the warning. */
1399#define BSF_WARNING 0x1000
1400
1401 /* Signal that the symbol is indirect. The value of the symbol
1402 is a pointer to an undefined asymbol which contains the
1403 name to use instead. */
1404#define BSF_INDIRECT 0x2000
1405
1406 /* BSF_FILE marks symbols that contain a file name. This is used
1407 for ELF STT_FILE symbols. */
1408#define BSF_FILE 0x4000
1409
1410 flagword flags;
1411
1412 /* A pointer to the section to which this symbol is
1413 relative. This will always be non NULL, there are special
1414 sections for undefined and absolute symbols */
1415 struct sec *section;
1416
1417 /* Back end special data. This is being phased out in favour
1418 of making this a union. */
1419 PTR udata;
1420
1421} asymbol;
1422#define get_symtab_upper_bound(abfd) \
1423 BFD_SEND (abfd, _get_symtab_upper_bound, (abfd))
1424#define bfd_canonicalize_symtab(abfd, location) \
1425 BFD_SEND (abfd, _bfd_canonicalize_symtab,\
1426 (abfd, location))
1427boolean
1428bfd_set_symtab PARAMS ((bfd *, asymbol **, unsigned int ));
1429
1430void
1431bfd_print_symbol_vandf PARAMS ((PTR file, asymbol *symbol));
1432
1433#define bfd_make_empty_symbol(abfd) \
1434 BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
1435#define bfd_make_debug_symbol(abfd,ptr,size) \
1436 BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
1437int
1438bfd_decode_symclass PARAMS ((asymbol *symbol));
1439
1440void
1441bfd_symbol_info PARAMS ((asymbol *symbol, symbol_info *ret));
1442
1443struct _bfd
1444{
1445 /* The filename the application opened the BFD with. */
1446 CONST char *filename;
1447
1448 /* A pointer to the target jump table. */
1449 struct bfd_target *xvec;
1450
1451 /* To avoid dragging too many header files into every file that
1452 includes `<<bfd.h>>', IOSTREAM has been declared as a "char
1453 *", and MTIME as a "long". Their correct types, to which they
1454 are cast when used, are "FILE *" and "time_t". The iostream
1455 is the result of an fopen on the filename. */
1456 char *iostream;
1457
1458 /* Is the file being cached */
1459
1460 boolean cacheable;
1461
1462 /* Marks whether there was a default target specified when the
1463 BFD was opened. This is used to select what matching algorithm
1464 to use to chose the back end. */
1465
1466 boolean target_defaulted;
1467
1468 /* The caching routines use these to maintain a
1469 least-recently-used list of BFDs */
1470
1471 struct _bfd *lru_prev, *lru_next;
1472
1473 /* When a file is closed by the caching routines, BFD retains
1474 state information on the file here:
1475 */
1476
1477 file_ptr where;
1478
1479 /* and here:*/
1480
1481 boolean opened_once;
1482
1483 /* Set if we have a locally maintained mtime value, rather than
1484 getting it from the file each time: */
1485
1486 boolean mtime_set;
1487
1488 /* File modified time, if mtime_set is true: */
1489
1490 long mtime;
1491
1492 /* Reserved for an unimplemented file locking extension.*/
1493
1494 int ifd;
1495
1496 /* The format which belongs to the BFD.*/
1497
1498 bfd_format format;
1499
1500 /* The direction the BFD was opened with*/
1501
1502 enum bfd_direction {no_direction = 0,
1503 read_direction = 1,
1504 write_direction = 2,
1505 both_direction = 3} direction;
1506
1507 /* Format_specific flags*/
1508
1509 flagword flags;
1510
1511 /* Currently my_archive is tested before adding origin to
1512 anything. I believe that this can become always an add of
1513 origin, with origin set to 0 for non archive files. */
1514
1515 file_ptr origin;
1516
1517 /* Remember when output has begun, to stop strange things
1518 happening. */
1519 boolean output_has_begun;
1520
1521 /* Pointer to linked list of sections*/
1522 struct sec *sections;
1523
1524 /* The number of sections */
1525 unsigned int section_count;
1526
1527 /* Stuff only useful for object files:
1528 The start address. */
1529 bfd_vma start_address;
1530
1531 /* Used for input and output*/
1532 unsigned int symcount;
1533
1534 /* Symbol table for output BFD*/
1535 struct symbol_cache_entry **outsymbols;
1536
1537 /* Pointer to structure which contains architecture information*/
1538 struct bfd_arch_info *arch_info;
1539
1540 /* Stuff only useful for archives:*/
1541 PTR arelt_data;
1542 struct _bfd *my_archive;
1543 struct _bfd *next;
1544 struct _bfd *archive_head;
1545 boolean has_armap;
1546
1547 /* Used by the back end to hold private data. */
1548
1549 union
1550 {
1551 struct aout_data_struct *aout_data;
1552 struct artdata *aout_ar_data;
1553 struct _oasys_data *oasys_obj_data;
1554 struct _oasys_ar_data *oasys_ar_data;
1555 struct coff_tdata *coff_obj_data;
1556 struct ecoff_tdata *ecoff_obj_data;
1557 struct ieee_data_struct *ieee_data;
1558 struct ieee_ar_data_struct *ieee_ar_data;
1559 struct srec_data_struct *srec_data;
1560 struct tekhex_data_struct *tekhex_data;
1561 struct elf_obj_tdata *elf_obj_data;
c3e964b9 1562 struct nlm_obj_tdata *nlm_obj_data;
fdcb0453
KR
1563 struct bout_data_struct *bout_data;
1564 struct sun_core_struct *sun_core_data;
1565 struct trad_core_struct *trad_core_data;
1566 struct hppa_data_struct *hppa_data;
b66b07a2 1567 struct hpux_core_struct *hpux_core_data;
fdcb0453 1568 struct sgi_core_struct *sgi_core_data;
2b91cc45 1569 struct lynx_core_struct *lynx_core_data;
9b3fa589 1570 struct osf_core_struct *osf_core_data;
fdcb0453
KR
1571 PTR any;
1572 } tdata;
1573
1574 /* Used by the application to hold private data*/
1575 PTR usrdata;
1576
1577 /* Where all the allocated stuff under this BFD goes */
1578 struct obstack memory;
1579
1580 /* Is this really needed in addition to usrdata? */
1581 asymbol **ld_symbols;
1582};
1583
1584unsigned int
1585bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect));
1586
1587unsigned int
1588bfd_canonicalize_reloc
1589 PARAMS ((bfd *abfd,
1590 asection *sec,
1591 arelent **loc,
1592 asymbol **syms));
1593
1594boolean
1595bfd_set_file_flags PARAMS ((bfd *abfd, flagword flags));
1596
1597void
1598bfd_set_reloc
1599 PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count)
1600
1601 );
1602
1603boolean
1604bfd_set_start_address PARAMS ((bfd *, bfd_vma));
1605
1606long
1607bfd_get_mtime PARAMS ((bfd *));
1608
1609long
1610bfd_get_size PARAMS ((bfd *));
1611
1612int
1613bfd_get_gp_size PARAMS ((bfd *));
1614
1615void
1616bfd_set_gp_size PARAMS ((bfd *, int));
1617
ef758f3e
KR
1618bfd_vma
1619bfd_scan_vma PARAMS ((CONST char *string, CONST char **end, int base));
1620
fdcb0453
KR
1621#define bfd_sizeof_headers(abfd, reloc) \
1622 BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
1623
1624#define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1625 BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
1626
1627 /* Do these three do anything useful at all, for any back end? */
1628#define bfd_debug_info_start(abfd) \
1629 BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
1630
1631#define bfd_debug_info_end(abfd) \
1632 BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
1633
1634#define bfd_debug_info_accumulate(abfd, section) \
1635 BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
1636
1637
1638#define bfd_stat_arch_elt(abfd, stat) \
1639 BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
1640
1641#define bfd_set_arch_mach(abfd, arch, mach)\
1642 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
1643
1644#define bfd_get_relocated_section_contents(abfd, seclet, data, relocateable) \
1645 BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet, data, relocateable))
1646
1647#define bfd_relax_section(abfd, section, symbols) \
1648 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols))
1649
1650#define bfd_seclet_link(abfd, data, relocateable) \
1651 BFD_SEND (abfd, _bfd_seclet_link, (abfd, data, relocateable))
1652symindex
1653bfd_get_next_mapent PARAMS ((bfd *, symindex previous, carsym ** sym));
1654
1655boolean
1656bfd_set_archive_head PARAMS ((bfd *output, bfd *new_head));
1657
1658bfd *
1659bfd_get_elt_at_index PARAMS ((bfd * archive, int index));
1660
1661bfd*
1662bfd_openr_next_archived_file PARAMS ((bfd *archive, bfd *previous));
1663
1664CONST char *
1665bfd_core_file_failing_command PARAMS ((bfd *));
1666
1667int
1668bfd_core_file_failing_signal PARAMS ((bfd *));
1669
1670boolean
1671core_file_matches_executable_p
1672 PARAMS ((bfd *core_bfd, bfd *exec_bfd));
1673
1674#define BFD_SEND(bfd, message, arglist) \
1675 ((*((bfd)->xvec->message)) arglist)
1676#define BFD_SEND_FMT(bfd, message, arglist) \
1677 (((bfd)->xvec->message[(int)((bfd)->format)]) arglist)
1678typedef struct bfd_target
1679{
1680 char *name;
1681 enum target_flavour {
1682 bfd_target_unknown_flavour,
1683 bfd_target_aout_flavour,
1684 bfd_target_coff_flavour,
1685 bfd_target_ecoff_flavour,
1686 bfd_target_elf_flavour,
1687 bfd_target_ieee_flavour,
c3e964b9 1688 bfd_target_nlm_flavour,
fdcb0453
KR
1689 bfd_target_oasys_flavour,
1690 bfd_target_tekhex_flavour,
1691 bfd_target_srec_flavour,
1692 bfd_target_hppa_flavour} flavour;
1693 boolean byteorder_big_p;
1694 boolean header_byteorder_big_p;
1695 flagword object_flags;
1696 flagword section_flags;
1697 char symbol_leading_char;
1698 char ar_pad_char;
1699 unsigned short ar_max_namelen;
1700 unsigned int align_power_min;
1701 bfd_vma (*bfd_getx64) PARAMS ((bfd_byte *));
1702 bfd_signed_vma (*bfd_getx_signed_64) PARAMS ((bfd_byte *));
1703 void (*bfd_putx64) PARAMS ((bfd_vma, bfd_byte *));
1704 bfd_vma (*bfd_getx32) PARAMS ((bfd_byte *));
1705 bfd_signed_vma (*bfd_getx_signed_32) PARAMS ((bfd_byte *));
1706 void (*bfd_putx32) PARAMS ((bfd_vma, bfd_byte *));
1707 bfd_vma (*bfd_getx16) PARAMS ((bfd_byte *));
1708 bfd_signed_vma (*bfd_getx_signed_16) PARAMS ((bfd_byte *));
1709 void (*bfd_putx16) PARAMS ((bfd_vma, bfd_byte *));
1710 bfd_vma (*bfd_h_getx64) PARAMS ((bfd_byte *));
1711 bfd_signed_vma (*bfd_h_getx_signed_64) PARAMS ((bfd_byte *));
1712 void (*bfd_h_putx64) PARAMS ((bfd_vma, bfd_byte *));
1713 bfd_vma (*bfd_h_getx32) PARAMS ((bfd_byte *));
1714 bfd_signed_vma (*bfd_h_getx_signed_32) PARAMS ((bfd_byte *));
1715 void (*bfd_h_putx32) PARAMS ((bfd_vma, bfd_byte *));
1716 bfd_vma (*bfd_h_getx16) PARAMS ((bfd_byte *));
1717 bfd_signed_vma (*bfd_h_getx_signed_16) PARAMS ((bfd_byte *));
1718 void (*bfd_h_putx16) PARAMS ((bfd_vma, bfd_byte *));
1719 struct bfd_target * (*_bfd_check_format[bfd_type_end]) PARAMS ((bfd *));
1720 boolean (*_bfd_set_format[bfd_type_end]) PARAMS ((bfd *));
1721 boolean (*_bfd_write_contents[bfd_type_end]) PARAMS ((bfd *));
1722 char * (*_core_file_failing_command) PARAMS ((bfd *));
1723 int (*_core_file_failing_signal) PARAMS ((bfd *));
1724 boolean (*_core_file_matches_executable_p) PARAMS ((bfd *, bfd *));
1725 boolean (*_bfd_slurp_armap) PARAMS ((bfd *));
1726 boolean (*_bfd_slurp_extended_name_table) PARAMS ((bfd *));
1727 void (*_bfd_truncate_arname) PARAMS ((bfd *, CONST char *, char *));
1728 boolean (*write_armap) PARAMS ((bfd *arch,
1729 unsigned int elength,
1730 struct orl *map,
1731 unsigned int orl_count,
1732 int stridx));
1733 boolean (*_close_and_cleanup) PARAMS ((bfd *));
1734 boolean (*_bfd_set_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1735 file_ptr, bfd_size_type));
1736 boolean (*_bfd_get_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1737 file_ptr, bfd_size_type));
1738 boolean (*_new_section_hook) PARAMS ((bfd *, sec_ptr));
1739 unsigned int (*_get_symtab_upper_bound) PARAMS ((bfd *));
1740 unsigned int (*_bfd_canonicalize_symtab) PARAMS ((bfd *,
1741 struct symbol_cache_entry **));
1742 unsigned int (*_get_reloc_upper_bound) PARAMS ((bfd *, sec_ptr));
1743 unsigned int (*_bfd_canonicalize_reloc) PARAMS ((bfd *, sec_ptr, arelent **,
1744 struct symbol_cache_entry **));
1745 struct symbol_cache_entry *
1746 (*_bfd_make_empty_symbol) PARAMS ((bfd *));
1747 void (*_bfd_print_symbol) PARAMS ((bfd *, PTR,
1748 struct symbol_cache_entry *,
1749 bfd_print_symbol_type));
1750#define bfd_print_symbol(b,p,s,e) BFD_SEND(b, _bfd_print_symbol, (b,p,s,e))
1751 void (*_bfd_get_symbol_info) PARAMS ((bfd *,
1752 struct symbol_cache_entry *,
1753 symbol_info *));
1754#define bfd_get_symbol_info(b,p,e) BFD_SEND(b, _bfd_get_symbol_info, (b,p,e))
1755 alent * (*_get_lineno) PARAMS ((bfd *, struct symbol_cache_entry *));
1756
1757 boolean (*_bfd_set_arch_mach) PARAMS ((bfd *, enum bfd_architecture,
1758 unsigned long));
1759
1760 bfd * (*openr_next_archived_file) PARAMS ((bfd *arch, bfd *prev));
1761
1762 boolean (*_bfd_find_nearest_line) PARAMS ((bfd *abfd,
1763 struct sec *section, struct symbol_cache_entry **symbols,
1764 bfd_vma offset, CONST char **file, CONST char **func,
1765 unsigned int *line));
1766
1767 int (*_bfd_stat_arch_elt) PARAMS ((bfd *, struct stat *));
1768
1769 int (*_bfd_sizeof_headers) PARAMS ((bfd *, boolean));
1770
1771 void (*_bfd_debug_info_start) PARAMS ((bfd *));
1772 void (*_bfd_debug_info_end) PARAMS ((bfd *));
1773 void (*_bfd_debug_info_accumulate) PARAMS ((bfd *, struct sec *));
1774
1775 bfd_byte * (*_bfd_get_relocated_section_contents) PARAMS ((bfd *,
1776 struct bfd_seclet *, bfd_byte *data,
1777 boolean relocateable));
1778
1779 boolean (*_bfd_relax_section) PARAMS ((bfd *, struct sec *,
1780 struct symbol_cache_entry **));
1781
1782 boolean (*_bfd_seclet_link) PARAMS ((bfd *, PTR data,
1783 boolean relocateable));
1784 /* See documentation on reloc types. */
1785 CONST struct reloc_howto_struct *
1786 (*reloc_type_lookup) PARAMS ((bfd *abfd,
1787 bfd_reloc_code_real_type code));
1788
1789 /* Back-door to allow format-aware applications to create debug symbols
1790 while using BFD for everything else. Currently used by the assembler
1791 when creating COFF files. */
1792 asymbol * (*_bfd_make_debug_symbol) PARAMS ((
1793 bfd *abfd,
1794 void *ptr,
1795 unsigned long size));
1796 PTR backend_data;
1797} bfd_target;
1798bfd_target *
1799bfd_find_target PARAMS ((CONST char *, bfd *));
1800
1801CONST char **
1802bfd_target_list PARAMS ((void));
1803
1804boolean
1805bfd_check_format PARAMS ((bfd *abfd, bfd_format format));
1806
1807boolean
1808bfd_set_format PARAMS ((bfd *, bfd_format));
1809
1810CONST char *
1811bfd_format_string PARAMS ((bfd_format));
1812
1813#endif
This page took 0.108518 seconds and 4 git commands to generate.