Mon Jan 11 18:32:22 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
[deliverable/binutils-gdb.git] / include / bfd.h
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.
5 Contributed by Cygnus Support.
6
7 This file is part of BFD, the Binary File Descriptor library.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
22
23 /* bfd.h -- The only header file required by users of the bfd library
24
25 The bfd.h file is generated from bfd-in.h and various .c files; if you
26 change it, your changes will probably be lost.
27
28 All the prototypes and definitions following the comment "THE FOLLOWING
29 IS EXTRACTED FROM THE SOURCE" are extracted from the source files for
30 BFD. If you change it, someone oneday will extract it from the source
31 again, and your changes will be lost. To save yourself from this bind,
32 change the definitions in the source in the bfd directory. Type "make
33 docs" and then "make headers" in that directory, and magically this file
34 will change to reflect your changes.
35
36 If you don't have the tools to perform the extraction, then you are
37 safe from someone on your system trampling over your header files.
38 You should still maintain the equivalence between the source and this
39 file though; every change you make to the .c file should be reflected
40 here. */
41
42 #ifndef __BFD_H_SEEN__
43 #define __BFD_H_SEEN__
44
45 #include "ansidecl.h"
46 #include "obstack.h"
47
48 #define BFD_VERSION "2.0"
49
50 /* forward declaration */
51 typedef 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. */
57 /* typedef enum boolean {false, true} boolean; */
58 /* Yup, SVR4 has a "typedef enum boolean" in <sys/types.h> -fnf */
59 typedef enum bfd_boolean {false, true} boolean;
60
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; */
69 typedef long int file_ptr;
70
71 /* Support for different sizes of target format ints and addresses */
72
73 #ifdef HOST_64_BIT
74 typedef HOST_64_BIT rawdata_offset;
75 typedef HOST_64_BIT bfd_vma;
76 typedef HOST_64_BIT bfd_word;
77 typedef HOST_64_BIT bfd_offset;
78 typedef HOST_64_BIT bfd_size_type;
79 typedef HOST_64_BIT symvalue;
80 typedef HOST_64_BIT bfd_64_type;
81 #define fprintf_vma(s,x) \
82 fprintf(s,"%08x%08x", uint64_typeHIGH(x), uint64_typeLOW(x))
83 #else
84 typedef struct {int a,b;} bfd_64_type;
85 typedef unsigned long rawdata_offset;
86 typedef unsigned long bfd_vma;
87 typedef unsigned long bfd_offset;
88 typedef unsigned long bfd_word;
89 typedef unsigned long bfd_size;
90 typedef unsigned long symvalue;
91 typedef unsigned long bfd_size_type;
92 #define fprintf_vma(s,x) fprintf(s, "%08lx", x)
93 #endif
94 #define printf_vma(x) fprintf_vma(stdout,x)
95
96 typedef unsigned int flagword; /* 32 bits of flags */
97 \f
98 /** File formats */
99
100 typedef 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 */
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
120 \f
121 /* symbols and relocation */
122
123 typedef unsigned long symindex;
124
125 #define BFD_NO_MORE_SYMBOLS ((symindex) ~0)
126
127 typedef 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
136 typedef 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->vma)
147 #define bfd_asymbol_value(x) (bfd_asymbol_base(x) + x->value)
148 #define bfd_asymbol_name(x) ((x)->name)
149 /*Perhaps future: #define bfd_asymbol_bfd(x) ((x)->section->owner)*/
150 #define bfd_asymbol_bfd(x) ((x)->the_bfd)
151 #define bfd_asymbol_flavour(x) (bfd_asymbol_bfd(x)->xvec->flavour)
152
153 /* This is a type pun with struct ranlib on purpose! */
154 typedef struct carsym {
155 char *name;
156 file_ptr file_offset; /* look here to find the file */
157 } carsym; /* to make these you call a carsymogen */
158
159
160 /* Used in generating armaps. Perhaps just a forward definition would do? */
161 struct orl { /* output ranlib */
162 char **name; /* symbol name */
163 file_ptr pos; /* bfd* or file position */
164 int namidx; /* index into string table */
165 };
166
167 \f
168
169 /* Linenumber stuff */
170 typedef struct lineno_cache_entry {
171 unsigned int line_number; /* Linenumber from start of function*/
172 union {
173 struct symbol_cache_entry *sym; /* Function name */
174 unsigned long offset; /* Offset into section */
175 } u;
176 } alent;
177 \f
178 /* object and core file sections */
179
180
181 #define align_power(addr, align) \
182 ( ((addr) + ((1<<(align))-1)) & (-1 << (align)))
183
184 typedef struct sec *sec_ptr;
185
186 #define bfd_get_section_name(bfd, ptr) ((ptr)->name + 0)
187 #define bfd_get_section_vma(bfd, ptr) ((ptr)->vma + 0)
188 #define bfd_get_section_alignment(bfd, ptr) ((ptr)->alignment_power + 0)
189 #define bfd_section_name(bfd, ptr) ((ptr)->name)
190 #define bfd_section_size(bfd, ptr) (bfd_get_section_size_before_reloc(ptr))
191 #define bfd_section_vma(bfd, ptr) ((ptr)->vma)
192 #define bfd_section_alignment(bfd, ptr) ((ptr)->alignment_power)
193 #define bfd_get_section_flags(bfd, ptr) ((ptr)->flags + 0)
194 #define bfd_get_section_userdata(bfd, ptr) ((ptr)->userdata)
195
196 #define bfd_set_section_vma(bfd, ptr, val) (((ptr)->vma = (val)), ((ptr)->user_set_vma = true), true)
197 #define bfd_set_section_alignment(bfd, ptr, val) (((ptr)->alignment_power = (val)),true)
198 #define bfd_set_section_userdata(bfd, ptr, val) (((ptr)->userdata = (val)),true)
199
200 typedef struct stat stat_type;
201 \f
202 /** Error handling */
203
204 typedef enum bfd_error {
205 no_error = 0, system_call_error, invalid_target,
206 wrong_format, invalid_operation, no_memory,
207 no_symbols, no_relocation_info,
208 no_more_archived_files, malformed_archive,
209 symbol_not_found, file_not_recognized,
210 file_ambiguously_recognized, no_contents,
211 bfd_error_nonrepresentable_section,
212 no_debug_section, bad_value,
213 invalid_error_code} bfd_ec;
214
215 extern bfd_ec bfd_error;
216 struct reloc_cache_entry;
217 struct bfd_seclet;
218
219
220 typedef struct bfd_error_vector {
221 void (* nonrepresentable_section ) PARAMS ((CONST bfd *CONST abfd,
222 CONST char *CONST name));
223 void (* undefined_symbol) PARAMS ((CONST struct reloc_cache_entry *rel,
224 CONST struct bfd_seclet *sec));
225 void (* reloc_value_truncated) PARAMS ((CONST struct
226 reloc_cache_entry *rel,
227 struct bfd_seclet *sec));
228
229 void (* reloc_dangerous) PARAMS ((CONST struct reloc_cache_entry *rel,
230 CONST struct bfd_seclet *sec));
231
232 } bfd_error_vector_type;
233
234 CONST char *bfd_errmsg PARAMS ((bfd_ec error_tag));
235 void bfd_perror PARAMS ((CONST char *message));
236 \f
237
238 typedef enum bfd_print_symbol
239 {
240 bfd_print_symbol_name,
241 bfd_print_symbol_more,
242 bfd_print_symbol_all,
243 bfd_print_symbol_nm /* Pretty format suitable for nm program. */
244 } bfd_print_symbol_type;
245
246 \f
247 \f
248 /* The code that implements targets can initialize a jump table with this
249 macro. It must name all its routines the same way (a prefix plus
250 the standard routine suffix), or it must #define the routines that
251 are not so named, before calling JUMP_TABLE in the initializer. */
252
253 /* Semi-portable string concatenation in cpp */
254 #ifndef CAT
255 #ifdef __STDC__
256 #define CAT(a,b) a##b
257 #else
258 #define CAT(a,b) a/**/b
259 #endif
260 #endif
261
262 #define JUMP_TABLE(NAME)\
263 CAT(NAME,_core_file_failing_command),\
264 CAT(NAME,_core_file_failing_signal),\
265 CAT(NAME,_core_file_matches_executable_p),\
266 CAT(NAME,_slurp_armap),\
267 CAT(NAME,_slurp_extended_name_table),\
268 CAT(NAME,_truncate_arname),\
269 CAT(NAME,_write_armap),\
270 CAT(NAME,_close_and_cleanup), \
271 CAT(NAME,_set_section_contents),\
272 CAT(NAME,_get_section_contents),\
273 CAT(NAME,_new_section_hook),\
274 CAT(NAME,_get_symtab_upper_bound),\
275 CAT(NAME,_get_symtab),\
276 CAT(NAME,_get_reloc_upper_bound),\
277 CAT(NAME,_canonicalize_reloc),\
278 CAT(NAME,_make_empty_symbol),\
279 CAT(NAME,_print_symbol),\
280 CAT(NAME,_get_lineno),\
281 CAT(NAME,_set_arch_mach),\
282 CAT(NAME,_openr_next_archived_file),\
283 CAT(NAME,_find_nearest_line),\
284 CAT(NAME,_generic_stat_arch_elt),\
285 CAT(NAME,_sizeof_headers),\
286 CAT(NAME,_bfd_debug_info_start),\
287 CAT(NAME,_bfd_debug_info_end),\
288 CAT(NAME,_bfd_debug_info_accumulate),\
289 CAT(NAME,_bfd_get_relocated_section_contents),\
290 CAT(NAME,_bfd_relax_section),\
291 CAT(NAME,_bfd_seclet_link)
292
293 #define COFF_SWAP_TABLE (PTR) &bfd_coff_std_swap_table
294
295 \f
296 /* User program access to BFD facilities */
297
298 extern CONST short _bfd_host_big_endian;
299 #define HOST_BYTE_ORDER_BIG_P (*(char *)&_bfd_host_big_endian)
300
301 /* The bfd itself */
302
303 /* Cast from const char * to char * so that caller can assign to
304 a char * without a warning. */
305 #define bfd_get_filename(abfd) ((char *) (abfd)->filename)
306 #define bfd_get_format(abfd) ((abfd)->format)
307 #define bfd_get_target(abfd) ((abfd)->xvec->name)
308 #define bfd_get_file_flags(abfd) ((abfd)->flags)
309 #define bfd_applicable_file_flags(abfd) ((abfd)->xvec->object_flags)
310 #define bfd_applicable_section_flags(abfd) ((abfd)->xvec->section_flags)
311 #define bfd_my_archive(abfd) ((abfd)->my_archive)
312 #define bfd_has_map(abfd) ((abfd)->has_armap)
313 #define bfd_header_twiddle_required(abfd) \
314 ((((abfd)->xvec->header_byteorder_big_p) \
315 != (boolean)HOST_BYTE_ORDER_BIG_P) ? true:false)
316
317 #define bfd_valid_reloc_types(abfd) ((abfd)->xvec->valid_reloc_types)
318 #define bfd_usrdata(abfd) ((abfd)->usrdata)
319
320 #define bfd_get_start_address(abfd) ((abfd)->start_address)
321 #define bfd_get_symcount(abfd) ((abfd)->symcount)
322 #define bfd_get_outsymbols(abfd) ((abfd)->outsymbols)
323 #define bfd_count_sections(abfd) ((abfd)->section_count)
324 #define bfd_get_architecture(abfd) ((abfd)->obj_arch)
325 #define bfd_get_machine(abfd) ((abfd)->obj_machine)
326
327 #define bfd_get_symbol_leading_char(abfd) ((abfd)->xvec->symbol_leading_char)
328
329 #define BYTE_SIZE 1
330 #define SHORT_SIZE 2
331 #define LONG_SIZE 4
332
333 /* And more from the source. */
334 void
335 bfd_init PARAMS ((void));
336
337 bfd *
338 bfd_openr PARAMS ((CONST char *filename, CONST char*target));
339
340 bfd *
341 bfd_fdopenr PARAMS ((CONST char *filename, CONST char *target, int fd));
342
343 bfd *
344 bfd_openw PARAMS ((CONST char *filename, CONST char *target));
345
346 boolean
347 bfd_close PARAMS ((bfd *));
348
349 boolean
350 bfd_close_all_done PARAMS ((bfd *));
351
352 bfd_size_type
353 bfd_alloc_size PARAMS ((bfd *abfd));
354
355 bfd *
356 bfd_create PARAMS ((CONST char *filename, bfd *template));
357
358 #define bfd_put_8(abfd, val, ptr) \
359 (*((char *)ptr) = (char)val)
360 #define bfd_get_8(abfd, ptr) \
361 (*((char *)ptr))
362 #define bfd_put_16(abfd, val, ptr) \
363 BFD_SEND(abfd, bfd_putx16, (val,ptr))
364 #define bfd_get_16(abfd, ptr) \
365 BFD_SEND(abfd, bfd_getx16, (ptr))
366 #define bfd_put_32(abfd, val, ptr) \
367 BFD_SEND(abfd, bfd_putx32, (val,ptr))
368 #define bfd_get_32(abfd, ptr) \
369 BFD_SEND(abfd, bfd_getx32, (ptr))
370 #define bfd_put_64(abfd, val, ptr) \
371 BFD_SEND(abfd, bfd_putx64, (val, ptr))
372 #define bfd_get_64(abfd, ptr) \
373 BFD_SEND(abfd, bfd_getx64, (ptr))
374 #define bfd_h_put_8(abfd, val, ptr) \
375 (*((char *)ptr) = (char)val)
376 #define bfd_h_get_8(abfd, ptr) \
377 (*((char *)ptr))
378 #define bfd_h_put_16(abfd, val, ptr) \
379 BFD_SEND(abfd, bfd_h_putx16,(val,ptr))
380 #define bfd_h_get_16(abfd, ptr) \
381 BFD_SEND(abfd, bfd_h_getx16,(ptr))
382 #define bfd_h_put_32(abfd, val, ptr) \
383 BFD_SEND(abfd, bfd_h_putx32,(val,ptr))
384 #define bfd_h_get_32(abfd, ptr) \
385 BFD_SEND(abfd, bfd_h_getx32,(ptr))
386 #define bfd_h_put_64(abfd, val, ptr) \
387 BFD_SEND(abfd, bfd_h_putx64,(val, ptr))
388 #define bfd_h_get_64(abfd, ptr) \
389 BFD_SEND(abfd, bfd_h_getx64,(ptr))
390 typedef struct sec
391 {
392 /* The name of the section, the name isn't a copy, the pointer is
393 the same as that passed to bfd_make_section. */
394
395 CONST char *name;
396
397
398 /* Which section is it 0.nth */
399
400 int index;
401
402 /* The next section in the list belonging to the BFD, or NULL. */
403
404 struct sec *next;
405
406 /* The field flags contains attributes of the section. Some of
407 flags are read in from the object file, and some are
408 synthesized from other information. */
409
410 flagword flags;
411
412 #define SEC_NO_FLAGS 0x000
413
414 /* Tells the OS to allocate space for this section when loaded.
415 This would clear for a section containing debug information
416 only. */
417
418
419 #define SEC_ALLOC 0x001
420 /* Tells the OS to load the section from the file when loading.
421 This would be clear for a .bss section */
422
423 #define SEC_LOAD 0x002
424 /* The section contains data still to be relocated, so there will
425 be some relocation information too. */
426
427 #define SEC_RELOC 0x004
428
429 /* Obsolete ? */
430
431 #define SEC_BALIGN 0x008
432
433 /* A signal to the OS that the section contains read only
434 data. */
435 #define SEC_READONLY 0x010
436
437 /* The section contains code only. */
438
439 #define SEC_CODE 0x020
440
441 /* The section contains data only. */
442
443 #define SEC_DATA 0x040
444
445 /* The section will reside in ROM. */
446
447 #define SEC_ROM 0x080
448
449 /* The section contains constructor information. This section
450 type is used by the linker to create lists of constructors and
451 destructors used by <<g++>>. When a back end sees a symbol
452 which should be used in a constructor list, it creates a new
453 section for the type of name (eg <<__CTOR_LIST__>>), attaches
454 the symbol to it and builds a relocation. To build the lists
455 of constructors, all the linker has to to is catenate all the
456 sections called <<__CTOR_LIST__>> and relocte the data
457 contained within - exactly the operations it would peform on
458 standard data. */
459
460 #define SEC_CONSTRUCTOR 0x100
461
462 /* The section is a constuctor, and should be placed at the
463 end of the . */
464
465
466 #define SEC_CONSTRUCTOR_TEXT 0x1100
467
468 #define SEC_CONSTRUCTOR_DATA 0x2100
469
470 #define SEC_CONSTRUCTOR_BSS 0x3100
471
472
473 /* The section has contents - a bss section could be
474 <<SEC_ALLOC>> | <<SEC_HAS_CONTENTS>>, a debug section could be
475 <<SEC_HAS_CONTENTS>> */
476
477 #define SEC_HAS_CONTENTS 0x200
478
479 /* An instruction to the linker not to output sections
480 containing this flag even if they have information which
481 would normally be written. */
482
483 #define SEC_NEVER_LOAD 0x400
484
485 /* The section is a shared library section. The linker must leave
486 these completely alone, as the vma and size are used when
487 the executable is loaded. */
488
489 #define SEC_SHARED_LIBRARY 0x800
490
491
492 bfd_vma vma;
493 boolean user_set_vma;
494
495 /* The size of the section in bytes, as it will be output.
496 contains a value even if the section has no contents (eg, the
497 size of <<.bss>>). This will be filled in after relocation */
498
499 bfd_size_type _cooked_size;
500
501 /* The size on disk of the section in bytes originally. Normally this
502 value is the same as the size, but if some relaxing has
503 been done, then this value will be bigger. */
504
505 bfd_size_type _raw_size;
506
507 /* If this section is going to be output, then this value is the
508 offset into the output section of the first byte in the input
509 section. Eg, if this was going to start at the 100th byte in
510 the output section, this value would be 100. */
511
512 bfd_vma output_offset;
513
514 /* The output section through which to map on output. */
515
516 struct sec *output_section;
517
518 /* The alignment requirement of the section, as an exponent - eg
519 3 aligns to 2^3 (or 8) */
520
521 unsigned int alignment_power;
522
523 /* If an input section, a pointer to a vector of relocation
524 records for the data in this section. */
525
526 struct reloc_cache_entry *relocation;
527
528 /* If an output section, a pointer to a vector of pointers to
529 relocation records for the data in this section. */
530
531 struct reloc_cache_entry **orelocation;
532
533 /* The number of relocation records in one of the above */
534
535 unsigned reloc_count;
536
537 /* Information below is back end specific - and not always used
538 or updated
539
540 File position of section data */
541
542 file_ptr filepos;
543
544 /* File position of relocation info */
545
546 file_ptr rel_filepos;
547
548 /* File position of line data */
549
550 file_ptr line_filepos;
551
552 /* Pointer to data for applications */
553
554 PTR userdata;
555
556 struct lang_output_section *otheruserdata;
557
558 /* Attached line number information */
559
560 alent *lineno;
561
562 /* Number of line number records */
563
564 unsigned int lineno_count;
565
566 /* When a section is being output, this value changes as more
567 linenumbers are written out */
568
569 file_ptr moving_line_filepos;
570
571 /* what the section number is in the target world */
572
573 int target_index;
574
575 PTR used_by_bfd;
576
577 /* If this is a constructor section then here is a list of the
578 relocations created to relocate items within it. */
579
580 struct relent_chain *constructor_chain;
581
582 /* The BFD which owns the section. */
583
584 bfd *owner;
585
586 boolean reloc_done;
587 /* A symbol which points at this section only */
588 struct symbol_cache_entry *symbol;
589 struct symbol_cache_entry **symbol_ptr_ptr;
590 struct bfd_seclet *seclets_head;
591 struct bfd_seclet *seclets_tail;
592 } asection ;
593
594
595 #define BFD_ABS_SECTION_NAME "*ABS*"
596 #define BFD_UND_SECTION_NAME "*UND*"
597 #define BFD_COM_SECTION_NAME "*COM*"
598
599 /* the absolute section */
600 extern asection bfd_abs_section;
601 /* Pointer to the undefined section */
602 extern asection bfd_und_section;
603 /* Pointer to the common section */
604 extern asection bfd_com_section;
605
606 extern struct symbol_cache_entry *bfd_abs_symbol;
607 extern struct symbol_cache_entry *bfd_com_symbol;
608 extern struct symbol_cache_entry *bfd_und_symbol;
609 #define bfd_get_section_size_before_reloc(section) \
610 (section->reloc_done ? (abort(),1): (section)->_raw_size)
611 #define bfd_get_section_size_after_reloc(section) \
612 ((section->reloc_done) ? (section)->_cooked_size: (abort(),1))
613 asection *
614 bfd_get_section_by_name PARAMS ((bfd *abfd, CONST char *name));
615
616 asection *
617 bfd_make_section_old_way PARAMS ((bfd *, CONST char *name));
618
619 asection *
620 bfd_make_section PARAMS ((bfd *, CONST char *name));
621
622 boolean
623 bfd_set_section_flags PARAMS ((bfd *, asection *, flagword));
624
625 void
626 bfd_map_over_sections PARAMS ((bfd *abfd,
627 void (*func)(bfd *abfd,
628 asection *sect,
629 PTR obj),
630 PTR obj));
631
632 boolean
633 bfd_set_section_size PARAMS ((bfd *, asection *, bfd_size_type val));
634
635 boolean
636 bfd_set_section_contents
637 PARAMS ((bfd *abfd,
638 asection *section,
639 PTR data,
640 file_ptr offset,
641 bfd_size_type count));
642
643 boolean
644 bfd_get_section_contents
645 PARAMS ((bfd *abfd, asection *section, PTR location,
646 file_ptr offset, bfd_size_type count));
647
648 enum bfd_architecture
649 {
650 bfd_arch_unknown, /* File arch not known */
651 bfd_arch_obscure, /* Arch known, not one of these */
652 bfd_arch_m68k, /* Motorola 68xxx */
653 bfd_arch_vax, /* DEC Vax */
654 bfd_arch_i960, /* Intel 960 */
655 /* The order of the following is important.
656 lower number indicates a machine type that
657 only accepts a subset of the instructions
658 available to machines with higher numbers.
659 The exception is the "ca", which is
660 incompatible with all other machines except
661 "core". */
662
663 #define bfd_mach_i960_core 1
664 #define bfd_mach_i960_ka_sa 2
665 #define bfd_mach_i960_kb_sb 3
666 #define bfd_mach_i960_mc 4
667 #define bfd_mach_i960_xa 5
668 #define bfd_mach_i960_ca 6
669
670 bfd_arch_a29k, /* AMD 29000 */
671 bfd_arch_sparc, /* SPARC */
672 bfd_arch_mips, /* MIPS Rxxxx */
673 bfd_arch_i386, /* Intel 386 */
674 bfd_arch_we32k, /* AT&T WE32xxx */
675 bfd_arch_tahoe, /* CCI/Harris Tahoe */
676 bfd_arch_i860, /* Intel 860 */
677 bfd_arch_romp, /* IBM ROMP PC/RT */
678 bfd_arch_alliant, /* Alliant */
679 bfd_arch_convex, /* Convex */
680 bfd_arch_m88k, /* Motorola 88xxx */
681 bfd_arch_pyramid, /* Pyramid Technology */
682 bfd_arch_h8300, /* Hitachi H8/300 */
683 bfd_arch_rs6000, /* IBM RS/6000 */
684 bfd_arch_hppa, /* HP PA RISC */
685 bfd_arch_z8k, /* Zilog Z8000 */
686 #define bfd_mach_z8001 1
687 #define bfd_mach_z8002 2
688 bfd_arch_last
689 };
690
691 typedef struct bfd_arch_info
692 {
693 int bits_per_word;
694 int bits_per_address;
695 int bits_per_byte;
696 enum bfd_architecture arch;
697 long mach;
698 char *arch_name;
699 CONST char *printable_name;
700 unsigned int section_align_power;
701 /* true if this is the default machine for the architecture */
702 boolean the_default;
703 CONST struct bfd_arch_info * (*compatible)
704 PARAMS ((CONST struct bfd_arch_info *a,
705 CONST struct bfd_arch_info *b));
706
707 boolean (*scan) PARAMS ((CONST struct bfd_arch_info *, CONST char *));
708 /* How to disassemble an instruction, producing a printable
709 representation on a specified stdio stream. This isn't
710 defined for most processors at present, because of the size
711 of the additional tables it would drag in, and because gdb
712 wants to use a different interface. */
713 unsigned int (*disassemble) PARAMS ((bfd_vma addr, CONST char *data,
714 PTR stream));
715
716 struct bfd_arch_info *next;
717 } bfd_arch_info_type;
718 CONST char *
719 bfd_printable_name PARAMS ((bfd *abfd));
720
721 bfd_arch_info_type *
722 bfd_scan_arch PARAMS ((CONST char *));
723
724 CONST bfd_arch_info_type *
725 bfd_arch_get_compatible PARAMS ((
726 CONST bfd *abfd,
727 CONST bfd *bbfd));
728
729 void
730 bfd_set_arch_info PARAMS ((bfd *, bfd_arch_info_type *));
731
732 enum bfd_architecture
733 bfd_get_arch PARAMS ((bfd *abfd));
734
735 unsigned long
736 bfd_get_mach PARAMS ((bfd *abfd));
737
738 unsigned int
739 bfd_arch_bits_per_byte PARAMS ((bfd *abfd));
740
741 unsigned int
742 bfd_arch_bits_per_address PARAMS ((bfd *abfd));
743
744 bfd_arch_info_type *
745 bfd_get_arch_info PARAMS ((bfd *));
746
747 bfd_arch_info_type *
748 bfd_lookup_arch
749 PARAMS ((enum bfd_architecture
750 arch,
751 long machine));
752
753 CONST char *
754 bfd_printable_arch_mach
755 PARAMS ((enum bfd_architecture arch, unsigned long machine));
756
757 typedef enum bfd_reloc_status
758 {
759 /* No errors detected */
760 bfd_reloc_ok,
761
762 /* The relocation was performed, but there was an overflow. */
763 bfd_reloc_overflow,
764
765 /* The address to relocate was not within the section supplied*/
766 bfd_reloc_outofrange,
767
768 /* Used by special functions */
769 bfd_reloc_continue,
770
771 /* Unused */
772 bfd_reloc_notsupported,
773
774 /* Unsupported relocation size requested. */
775 bfd_reloc_other,
776
777 /* The symbol to relocate against was undefined.*/
778 bfd_reloc_undefined,
779
780 /* The relocation was performed, but may not be ok - presently
781 generated only when linking i960 coff files with i960 b.out
782 symbols. */
783 bfd_reloc_dangerous
784 }
785 bfd_reloc_status_type;
786
787
788 typedef struct reloc_cache_entry
789 {
790 /* A pointer into the canonical table of pointers */
791 struct symbol_cache_entry **sym_ptr_ptr;
792
793 /* offset in section */
794 rawdata_offset address;
795
796 /* addend for relocation value */
797 bfd_vma addend;
798
799 /* Pointer to how to perform the required relocation */
800 CONST struct reloc_howto_struct *howto;
801
802 } arelent;
803
804 typedef CONST struct reloc_howto_struct
805 {
806 /* The type field has mainly a documetary use - the back end can
807 to what it wants with it, though the normally the back end's
808 external idea of what a reloc number would be would be stored
809 in this field. For example, the a PC relative word relocation
810 in a coff environment would have the type 023 - because that's
811 what the outside world calls a R_PCRWORD reloc. */
812 unsigned int type;
813
814 /* The value the final relocation is shifted right by. This drops
815 unwanted data from the relocation. */
816 unsigned int rightshift;
817
818 /* The size of the item to be relocated - 0, is one byte, 1 is 2
819 bytes, 3 is four bytes. A negative value indicates that the
820 result is to be subtracted from the data. */
821 int size;
822
823 /* Now obsolete? But m68k-coff still uses it... */
824 unsigned int bitsize;
825
826 /* Notes that the relocation is relative to the location in the
827 data section of the addend. The relocation function will
828 subtract from the relocation value the address of the location
829 being relocated. */
830 boolean pc_relative;
831
832 unsigned int bitpos;
833
834 /* Now obsolete */
835 boolean absolute;
836
837 /* Causes the relocation routine to return an error if overflow
838 is detected when relocating. */
839 boolean complain_on_overflow;
840
841 /* If this field is non null, then the supplied function is
842 called rather than the normal function. This allows really
843 strange relocation methods to be accomodated (e.g., i960 callj
844 instructions). */
845 bfd_reloc_status_type (*special_function)
846 PARAMS ((bfd *abfd,
847 arelent *reloc_entry,
848 struct symbol_cache_entry *symbol,
849 PTR data,
850 asection *input_section,
851 bfd *output_bfd));
852
853 /* The textual name of the relocation type. */
854 char *name;
855
856 /* When performing a partial link, some formats must modify the
857 relocations rather than the data - this flag signals this.*/
858 boolean partial_inplace;
859
860 /* The src_mask is used to select what parts of the read in data
861 are to be used in the relocation sum. E.g., if this was an 8 bit
862 bit of data which we read and relocated, this would be
863 0x000000ff. When we have relocs which have an addend, such as
864 sun4 extended relocs, the value in the offset part of a
865 relocating field is garbage so we never use it. In this case
866 the mask would be 0x00000000. */
867 bfd_word src_mask;
868
869 /* The dst_mask is what parts of the instruction are replaced
870 into the instruction. In most cases src_mask == dst_mask,
871 except in the above special case, where dst_mask would be
872 0x000000ff, and src_mask would be 0x00000000. */
873 bfd_word dst_mask;
874
875 /* When some formats create PC relative instructions, they leave
876 the value of the pc of the place being relocated in the offset
877 slot of the instruction, so that a PC relative relocation can
878 be made just by adding in an ordinary offset (e.g., sun3 a.out).
879 Some formats leave the displacement part of an instruction
880 empty (e.g., m88k bcs), this flag signals the fact.*/
881 boolean pcrel_offset;
882
883 } reloc_howto_type;
884 #define HOWTO(C, R,S,B, P, BI, ABS, O, SF, NAME, INPLACE, MASKSRC, MASKDST, PC) \
885 {(unsigned)C,R,S,B, P, BI, ABS,O,SF,NAME,INPLACE,MASKSRC,MASKDST,PC}
886 #define NEWHOWTO( FUNCTION, NAME,SIZE,REL,IN) HOWTO(0,0,SIZE,0,REL,0,false,false,FUNCTION, NAME,false,0,0,IN)
887
888 #define HOWTO_PREPARE(relocation, symbol) \
889 { \
890 if (symbol != (asymbol *)NULL) { \
891 if (symbol->section == &bfd_com_section) { \
892 relocation = 0; \
893 } \
894 else { \
895 relocation = symbol->value; \
896 } \
897 } \
898 }
899 typedef unsigned char bfd_byte;
900
901 typedef struct relent_chain {
902 arelent relent;
903 struct relent_chain *next;
904 } arelent_chain;
905 bfd_reloc_status_type
906
907 bfd_perform_relocation
908 PARAMS ((bfd * abfd,
909 arelent *reloc_entry,
910 PTR data,
911 asection *input_section,
912 bfd *output_bfd));
913
914 typedef enum bfd_reloc_code_real
915
916 {
917 /* 16 bits wide, simple reloc */
918 BFD_RELOC_16,
919
920 /* 8 bits wide, but used to form an address like 0xffnn */
921 BFD_RELOC_8_FFnn,
922
923 /* 8 bits wide, simple */
924 BFD_RELOC_8,
925
926 /* 8 bits wide, pc relative */
927 BFD_RELOC_8_PCREL,
928
929 /* The type of reloc used to build a contructor table - at the
930 moment probably a 32 bit wide abs address, but the cpu can
931 choose. */
932
933 BFD_RELOC_CTOR,
934
935 /* 32 bits wide, simple reloc */
936 BFD_RELOC_32,
937 /* 32 bits, PC-relative */
938 BFD_RELOC_32_PCREL,
939
940 /* High 22 bits of 32-bit value; simple reloc. */
941 BFD_RELOC_HI22,
942 /* Low 10 bits. */
943 BFD_RELOC_LO10,
944
945 /* Reloc types used for i960/b.out. */
946 BFD_RELOC_24_PCREL,
947 BFD_RELOC_I960_CALLJ,
948
949 BFD_RELOC_16_PCREL,
950 /* 32-bit pc-relative, shifted right 2 bits (i.e., 30-bit
951 word displacement, e.g. for SPARC) */
952 BFD_RELOC_32_PCREL_S2,
953
954 /* now for the sparc/elf codes */
955 BFD_RELOC_NONE, /* actually used */
956 BFD_RELOC_SPARC_WDISP22,
957 BFD_RELOC_SPARC22,
958 BFD_RELOC_SPARC13,
959 BFD_RELOC_SPARC_BASE13,
960 BFD_RELOC_SPARC_GOT10,
961 BFD_RELOC_SPARC_GOT13,
962 BFD_RELOC_SPARC_GOT22,
963 BFD_RELOC_SPARC_PC10,
964 BFD_RELOC_SPARC_PC22,
965 BFD_RELOC_SPARC_WPLT30,
966 BFD_RELOC_SPARC_COPY,
967 BFD_RELOC_SPARC_GLOB_DAT,
968 BFD_RELOC_SPARC_JMP_SLOT,
969 BFD_RELOC_SPARC_RELATIVE,
970 BFD_RELOC_SPARC_UA32,
971
972 /* this one is a.out specific? */
973 BFD_RELOC_SPARC_BASE22,
974
975 /* this must be the highest numeric value */
976 BFD_RELOC_UNUSED
977 } bfd_reloc_code_real_type;
978 CONST struct reloc_howto_struct *
979
980 bfd_reloc_type_lookup PARAMS ((bfd *abfd, bfd_reloc_code_real_type code));
981
982 typedef struct symbol_cache_entry
983 {
984 /* A pointer to the BFD which owns the symbol. This information
985 is necessary so that a back end can work out what additional
986 information (invisible to the application writer) is carried
987 with the symbol.
988
989 This field is *almost* redundant, since you can use section->owner
990 instead, except that some symbols point to the global sections
991 bfd_{abs,com,und}_section. This could be fixed by making
992 these globals be per-bfd (or per-target-flavor). FIXME. */
993
994 struct _bfd *the_bfd; /* Use bfd_asymbol_bfd(sym) to access this field. */
995
996 /* The text of the symbol. The name is left alone, and not copied - the
997 application may not alter it. */
998 CONST char *name;
999
1000 /* The value of the symbol.*/
1001 symvalue value;
1002
1003 /* Attributes of a symbol: */
1004
1005 #define BSF_NO_FLAGS 0x00
1006
1007 /* The symbol has local scope; <<static>> in <<C>>. The value
1008 is the offset into the section of the data. */
1009 #define BSF_LOCAL 0x01
1010
1011 /* The symbol has global scope; initialized data in <<C>>. The
1012 value is the offset into the section of the data. */
1013 #define BSF_GLOBAL 0x02
1014
1015 /* Obsolete; should be deleted? */
1016 #define BSF_IMPORT 0x04
1017
1018 /* The symbol has global scope, and is exported. The value is
1019 the offset into the section of the data. */
1020 #define BSF_EXPORT 0x08
1021
1022 /* The symbol is undefined. <<extern>> in <<C>>. The value has
1023 no meaning. Obsolete; should be deleted? */
1024 #define BSF_UNDEFINED_OBS 0x10
1025
1026 /* The symbol is common, initialized to zero; default in
1027 <<C>>. The value is the size of the object in bytes. */
1028 #define BSF_FORT_COMM_OBS 0x20
1029
1030 /* A normal C symbol would be one of:
1031 <<BSF_LOCAL>>, <<BSF_FORT_COMM>>, <<BSF_UNDEFINED>> or
1032 <<BSF_EXPORT|BSD_GLOBAL>> */
1033
1034 /* The symbol is a debugging record. The value has an arbitary
1035 meaning. */
1036 #define BSF_DEBUGGING 0x40
1037
1038 /* Used by the linker. */
1039 #define BSF_KEEP 0x10000
1040 #define BSF_KEEP_G 0x80000
1041
1042 /* Unused; should be deleted? */
1043 #define BSF_WEAK 0x100000
1044 #define BSF_CTOR 0x200000
1045
1046 /* This symbol was created to point to a section, e.g. ELF's
1047 STT_SECTION symbols. */
1048 #define BSF_SECTION_SYM 0x400000
1049
1050 /* The symbol used to be a common symbol, but now it is
1051 allocated. */
1052 #define BSF_OLD_COMMON 0x800000
1053
1054 /* The default value for common data. */
1055 #define BFD_FORT_COMM_DEFAULT_VALUE 0
1056
1057 /* In some files the type of a symbol sometimes alters its
1058 location in an output file - ie in coff a <<ISFCN>> symbol
1059 which is also <<C_EXT>> symbol appears where it was
1060 declared and not at the end of a section. This bit is set
1061 by the target BFD part to convey this information. */
1062
1063 #define BSF_NOT_AT_END 0x40000
1064
1065 /* Signal that the symbol is the label of constructor section. */
1066 #define BSF_CONSTRUCTOR 0x1000000
1067
1068 /* Signal that the symbol is a warning symbol. If the symbol
1069 is a warning symbol, then the value field (I know this is
1070 tacky) will point to the asymbol which when referenced will
1071 cause the warning. */
1072 #define BSF_WARNING 0x2000000
1073
1074 /* Signal that the symbol is indirect. The value of the symbol
1075 is a pointer to an undefined asymbol which contains the
1076 name to use instead. */
1077 #define BSF_INDIRECT 0x4000000
1078
1079 /* BSF_FILE marks symbols that contain a file name. This is used
1080 for ELF STT_FILE symbols. */
1081 #define BSF_FILE 0x08000000
1082
1083 flagword flags;
1084
1085 /* A pointer to the section to which this symbol is
1086 relative. This will always be non NULL, there are special
1087 sections for undefined and absolute symbols */
1088 struct sec *section;
1089
1090 /* Back end special data. This is being phased out in favour
1091 of making this a union. */
1092 PTR udata;
1093
1094 } asymbol;
1095 #define get_symtab_upper_bound(abfd) \
1096 BFD_SEND (abfd, _get_symtab_upper_bound, (abfd))
1097 #define bfd_canonicalize_symtab(abfd, location) \
1098 BFD_SEND (abfd, _bfd_canonicalize_symtab,\
1099 (abfd, location))
1100 boolean
1101 bfd_set_symtab PARAMS ((bfd *, asymbol **, unsigned int ));
1102
1103 void
1104 bfd_print_symbol_vandf PARAMS ((PTR file, asymbol *symbol));
1105
1106 #define bfd_make_empty_symbol(abfd) \
1107 BFD_SEND (abfd, _bfd_make_empty_symbol, (abfd))
1108 #define bfd_make_debug_symbol(abfd,ptr,size) \
1109 BFD_SEND (abfd, _bfd_make_debug_symbol, (abfd, ptr, size))
1110 int
1111 bfd_decode_symclass PARAMS ((asymbol *symbol));
1112
1113 struct _bfd
1114 {
1115 /* The filename the application opened the BFD with. */
1116 CONST char *filename;
1117
1118 /* A pointer to the target jump table. */
1119 struct bfd_target *xvec;
1120
1121 /* To avoid dragging too many header files into every file that
1122 includes `<<bfd.h>>', IOSTREAM has been declared as a "char
1123 *", and MTIME as a "long". Their correct types, to which they
1124 are cast when used, are "FILE *" and "time_t". The iostream
1125 is the result of an fopen on the filename. */
1126 char *iostream;
1127
1128 /* Is the file being cached */
1129
1130 boolean cacheable;
1131
1132 /* Marks whether there was a default target specified when the
1133 BFD was opened. This is used to select what matching algorithm
1134 to use to chose the back end. */
1135
1136 boolean target_defaulted;
1137
1138 /* The caching routines use these to maintain a
1139 least-recently-used list of BFDs */
1140
1141 struct _bfd *lru_prev, *lru_next;
1142
1143 /* When a file is closed by the caching routines, BFD retains
1144 state information on the file here:
1145 */
1146
1147 file_ptr where;
1148
1149 /* and here:*/
1150
1151 boolean opened_once;
1152
1153 /* Set if we have a locally maintained mtime value, rather than
1154 getting it from the file each time: */
1155
1156 boolean mtime_set;
1157
1158 /* File modified time, if mtime_set is true: */
1159
1160 long mtime;
1161
1162 /* Reserved for an unimplemented file locking extension.*/
1163
1164 int ifd;
1165
1166 /* The format which belongs to the BFD.*/
1167
1168 bfd_format format;
1169
1170 /* The direction the BFD was opened with*/
1171
1172 enum bfd_direction {no_direction = 0,
1173 read_direction = 1,
1174 write_direction = 2,
1175 both_direction = 3} direction;
1176
1177 /* Format_specific flags*/
1178
1179 flagword flags;
1180
1181 /* Currently my_archive is tested before adding origin to
1182 anything. I believe that this can become always an add of
1183 origin, with origin set to 0 for non archive files. */
1184
1185 file_ptr origin;
1186
1187 /* Remember when output has begun, to stop strange things
1188 happening. */
1189 boolean output_has_begun;
1190
1191 /* Pointer to linked list of sections*/
1192 struct sec *sections;
1193
1194 /* The number of sections */
1195 unsigned int section_count;
1196
1197 /* Stuff only useful for object files:
1198 The start address. */
1199 bfd_vma start_address;
1200
1201 /* Used for input and output*/
1202 unsigned int symcount;
1203
1204 /* Symbol table for output BFD*/
1205 struct symbol_cache_entry **outsymbols;
1206
1207 /* Pointer to structure which contains architecture information*/
1208 struct bfd_arch_info *arch_info;
1209
1210 /* Stuff only useful for archives:*/
1211 PTR arelt_data;
1212 struct _bfd *my_archive;
1213 struct _bfd *next;
1214 struct _bfd *archive_head;
1215 boolean has_armap;
1216
1217 /* Used by the back end to hold private data. */
1218
1219 union
1220 {
1221 struct aout_data_struct *aout_data;
1222 struct artdata *aout_ar_data;
1223 struct _oasys_data *oasys_obj_data;
1224 struct _oasys_ar_data *oasys_ar_data;
1225 struct coff_tdata *coff_obj_data;
1226 struct ecoff_tdata *ecoff_obj_data;
1227 struct ieee_data_struct *ieee_data;
1228 struct ieee_ar_data_struct *ieee_ar_data;
1229 struct srec_data_struct *srec_data;
1230 struct tekhex_data_struct *tekhex_data;
1231 struct elf_obj_tdata *elf_obj_data;
1232 struct bout_data_struct *bout_data;
1233 struct sun_core_struct *sun_core_data;
1234 struct trad_core_struct *trad_core_data;
1235 struct hppa_data_struct *hppa_data;
1236 struct hppa_core_struct *hppa_core_data;
1237 PTR any;
1238 } tdata;
1239
1240 /* Used by the application to hold private data*/
1241 PTR usrdata;
1242
1243 /* Where all the allocated stuff under this BFD goes */
1244 struct obstack memory;
1245
1246 /* Is this really needed in addition to usrdata? */
1247 asymbol **ld_symbols;
1248 };
1249
1250 unsigned int
1251 bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect));
1252
1253 unsigned int
1254 bfd_canonicalize_reloc
1255 PARAMS ((bfd *abfd,
1256 asection *sec,
1257 arelent **loc,
1258 asymbol **syms));
1259
1260 boolean
1261 bfd_set_file_flags PARAMS ((bfd *abfd, flagword flags));
1262
1263 void
1264 bfd_set_reloc
1265 PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count)
1266
1267 );
1268
1269 boolean
1270 bfd_set_start_address PARAMS ((bfd *, bfd_vma));
1271
1272 long
1273 bfd_get_mtime PARAMS ((bfd *));
1274
1275 long
1276 bfd_get_size PARAMS ((bfd *));
1277
1278 #define bfd_sizeof_headers(abfd, reloc) \
1279 BFD_SEND (abfd, _bfd_sizeof_headers, (abfd, reloc))
1280
1281 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
1282 BFD_SEND (abfd, _bfd_find_nearest_line, (abfd, sec, syms, off, file, func, line))
1283
1284 /* Do these three do anything useful at all, for any back end? */
1285 #define bfd_debug_info_start(abfd) \
1286 BFD_SEND (abfd, _bfd_debug_info_start, (abfd))
1287
1288 #define bfd_debug_info_end(abfd) \
1289 BFD_SEND (abfd, _bfd_debug_info_end, (abfd))
1290
1291 #define bfd_debug_info_accumulate(abfd, section) \
1292 BFD_SEND (abfd, _bfd_debug_info_accumulate, (abfd, section))
1293
1294
1295 #define bfd_stat_arch_elt(abfd, stat) \
1296 BFD_SEND (abfd, _bfd_stat_arch_elt,(abfd, stat))
1297
1298 #define bfd_set_arch_mach(abfd, arch, mach)\
1299 BFD_SEND ( abfd, _bfd_set_arch_mach, (abfd, arch, mach))
1300
1301 #define bfd_get_relocated_section_contents(abfd, seclet, data, relocateable) \
1302 BFD_SEND (abfd, _bfd_get_relocated_section_contents, (abfd, seclet, data, relocateable))
1303
1304 #define bfd_relax_section(abfd, section, symbols) \
1305 BFD_SEND (abfd, _bfd_relax_section, (abfd, section, symbols))
1306
1307 #define bfd_seclet_link(abfd, data, relocateable) \
1308 BFD_SEND (abfd, _bfd_seclet_link, (abfd, data, relocateable))
1309 symindex
1310 bfd_get_next_mapent PARAMS ((bfd *, symindex previous, carsym ** sym));
1311
1312 boolean
1313 bfd_set_archive_head PARAMS ((bfd *output, bfd *new_head));
1314
1315 bfd *
1316 bfd_get_elt_at_index PARAMS ((bfd * archive, int index));
1317
1318 bfd*
1319 bfd_openr_next_archived_file PARAMS ((bfd *archive, bfd *previous));
1320
1321 CONST char *
1322 bfd_core_file_failing_command PARAMS ((bfd *));
1323
1324 int
1325 bfd_core_file_failing_signal PARAMS ((bfd *));
1326
1327 boolean
1328 core_file_matches_executable_p
1329 PARAMS ((bfd *core_bfd, bfd *exec_bfd));
1330
1331 #define BFD_SEND(bfd, message, arglist) \
1332 ((*((bfd)->xvec->message)) arglist)
1333 #define BFD_SEND_FMT(bfd, message, arglist) \
1334 (((bfd)->xvec->message[(int)((bfd)->format)]) arglist)
1335 typedef struct bfd_target
1336 {
1337 char *name;
1338 enum target_flavour {
1339 bfd_target_unknown_flavour,
1340 bfd_target_aout_flavour,
1341 bfd_target_coff_flavour,
1342 bfd_target_ecoff_flavour,
1343 bfd_target_elf_flavour,
1344 bfd_target_ieee_flavour,
1345 bfd_target_oasys_flavour,
1346 bfd_target_tekhex_flavour,
1347 bfd_target_srec_flavour,
1348 bfd_target_hppa_flavour} flavour;
1349 boolean byteorder_big_p;
1350 boolean header_byteorder_big_p;
1351 flagword object_flags;
1352 flagword section_flags;
1353 char symbol_leading_char;
1354 char ar_pad_char;
1355 unsigned short ar_max_namelen;
1356 unsigned int align_power_min;
1357 bfd_vma (*bfd_getx64) PARAMS ((bfd_byte *));
1358 void (*bfd_putx64) PARAMS ((bfd_vma, bfd_byte *));
1359 bfd_vma (*bfd_getx32) PARAMS ((bfd_byte *));
1360 void (*bfd_putx32) PARAMS ((bfd_vma, bfd_byte *));
1361 bfd_vma (*bfd_getx16) PARAMS ((bfd_byte *));
1362 void (*bfd_putx16) PARAMS ((bfd_vma, bfd_byte *));
1363 bfd_vma (*bfd_h_getx64) PARAMS ((bfd_byte *));
1364 void (*bfd_h_putx64) PARAMS ((bfd_vma, bfd_byte *));
1365 bfd_vma (*bfd_h_getx32) PARAMS ((bfd_byte *));
1366 void (*bfd_h_putx32) PARAMS ((bfd_vma, bfd_byte *));
1367 bfd_vma (*bfd_h_getx16) PARAMS ((bfd_byte *));
1368 void (*bfd_h_putx16) PARAMS ((bfd_vma, bfd_byte *));
1369 struct bfd_target * (*_bfd_check_format[bfd_type_end]) PARAMS ((bfd *));
1370 boolean (*_bfd_set_format[bfd_type_end]) PARAMS ((bfd *));
1371 boolean (*_bfd_write_contents[bfd_type_end]) PARAMS ((bfd *));
1372 char * (*_core_file_failing_command) PARAMS ((bfd *));
1373 int (*_core_file_failing_signal) PARAMS ((bfd *));
1374 boolean (*_core_file_matches_executable_p) PARAMS ((bfd *, bfd *));
1375 boolean (*_bfd_slurp_armap) PARAMS ((bfd *));
1376 boolean (*_bfd_slurp_extended_name_table) PARAMS ((bfd *));
1377 void (*_bfd_truncate_arname) PARAMS ((bfd *, CONST char *, char *));
1378 boolean (*write_armap) PARAMS ((bfd *arch,
1379 unsigned int elength,
1380 struct orl *map,
1381 unsigned int orl_count,
1382 int stridx));
1383 boolean (*_close_and_cleanup) PARAMS ((bfd *));
1384 boolean (*_bfd_set_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1385 file_ptr, bfd_size_type));
1386 boolean (*_bfd_get_section_contents) PARAMS ((bfd *, sec_ptr, PTR,
1387 file_ptr, bfd_size_type));
1388 boolean (*_new_section_hook) PARAMS ((bfd *, sec_ptr));
1389 unsigned int (*_get_symtab_upper_bound) PARAMS ((bfd *));
1390 unsigned int (*_bfd_canonicalize_symtab) PARAMS ((bfd *,
1391 struct symbol_cache_entry **));
1392 unsigned int (*_get_reloc_upper_bound) PARAMS ((bfd *, sec_ptr));
1393 unsigned int (*_bfd_canonicalize_reloc) PARAMS ((bfd *, sec_ptr, arelent **,
1394 struct symbol_cache_entry **));
1395 struct symbol_cache_entry *
1396 (*_bfd_make_empty_symbol) PARAMS ((bfd *));
1397 void (*_bfd_print_symbol) PARAMS ((bfd *, PTR,
1398 struct symbol_cache_entry *,
1399 bfd_print_symbol_type));
1400 #define bfd_print_symbol(b,p,s,e) BFD_SEND(b, _bfd_print_symbol, (b,p,s,e))
1401 alent * (*_get_lineno) PARAMS ((bfd *, struct symbol_cache_entry *));
1402
1403 boolean (*_bfd_set_arch_mach) PARAMS ((bfd *, enum bfd_architecture,
1404 unsigned long));
1405
1406 bfd * (*openr_next_archived_file) PARAMS ((bfd *arch, bfd *prev));
1407
1408 boolean (*_bfd_find_nearest_line) PARAMS ((bfd *abfd,
1409 struct sec *section, struct symbol_cache_entry **symbols,
1410 bfd_vma offset, CONST char **file, CONST char **func,
1411 unsigned int *line));
1412
1413 int (*_bfd_stat_arch_elt) PARAMS ((bfd *, struct stat *));
1414
1415 int (*_bfd_sizeof_headers) PARAMS ((bfd *, boolean));
1416
1417 void (*_bfd_debug_info_start) PARAMS ((bfd *));
1418 void (*_bfd_debug_info_end) PARAMS ((bfd *));
1419 void (*_bfd_debug_info_accumulate) PARAMS ((bfd *, struct sec *));
1420
1421 bfd_byte * (*_bfd_get_relocated_section_contents) PARAMS ((bfd *,
1422 struct bfd_seclet *, bfd_byte *data,
1423 boolean relocateable));
1424
1425 boolean (*_bfd_relax_section) PARAMS ((bfd *, struct sec *,
1426 struct symbol_cache_entry **));
1427
1428 boolean (*_bfd_seclet_link) PARAMS ((bfd *, PTR data,
1429 boolean relocateable));
1430 /* See documentation on reloc types. */
1431 CONST struct reloc_howto_struct *
1432 (*reloc_type_lookup) PARAMS ((bfd *abfd,
1433 bfd_reloc_code_real_type code));
1434
1435 /* Back-door to allow format-aware applications to create debug symbols
1436 while using BFD for everything else. Currently used by the assembler
1437 when creating COFF files. */
1438 asymbol * (*_bfd_make_debug_symbol) PARAMS ((
1439 bfd *abfd,
1440 void *ptr,
1441 unsigned long size));
1442 PTR backend_data;
1443 } bfd_target;
1444 bfd_target *
1445 bfd_find_target PARAMS ((CONST char *, bfd *));
1446
1447 CONST char **
1448 bfd_target_list PARAMS ((void));
1449
1450 boolean
1451 bfd_check_format PARAMS ((bfd *abfd, bfd_format format));
1452
1453 boolean
1454 bfd_set_format PARAMS ((bfd *, bfd_format));
1455
1456 CONST char *
1457 bfd_format_string PARAMS ((bfd_format));
1458
1459 #endif
This page took 0.059035 seconds and 4 git commands to generate.