]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gdb/bfd/libcoff.h
This commit was generated by cvs2svn to compensate for changes in r31187,
[FreeBSD/FreeBSD.git] / contrib / gdb / bfd / libcoff.h
1 /* BFD COFF object file private structure.
2    Copyright (C) 1990, 91, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
3    Written by Cygnus Support.
4
5 ** NOTE: libcoff.h is a GENERATED file.  Don't change it; instead,
6 ** change libcoff-in.h or coffcode.h.
7
8 This file is part of BFD, the Binary File Descriptor library.
9
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
23
24 #include "bfdlink.h"
25
26 /* Object file tdata; access macros */
27
28 #define coff_data(bfd)          ((bfd)->tdata.coff_obj_data)
29 #define exec_hdr(bfd)           (coff_data(bfd)->hdr)
30 #define obj_pe(bfd)             (coff_data(bfd)->pe)
31 #define obj_symbols(bfd)        (coff_data(bfd)->symbols)
32 #define obj_sym_filepos(bfd)    (coff_data(bfd)->sym_filepos)
33
34 #define obj_relocbase(bfd)      (coff_data(bfd)->relocbase)
35 #define obj_raw_syments(bfd)    (coff_data(bfd)->raw_syments)
36 #define obj_raw_syment_count(bfd)       (coff_data(bfd)->raw_syment_count)
37 #define obj_convert(bfd)        (coff_data(bfd)->conversion_table)
38 #define obj_conv_table_size(bfd) (coff_data(bfd)->conv_table_size)
39
40 #define obj_coff_external_syms(bfd) (coff_data (bfd)->external_syms)
41 #define obj_coff_keep_syms(bfd) (coff_data (bfd)->keep_syms)
42 #define obj_coff_strings(bfd)   (coff_data (bfd)->strings)
43 #define obj_coff_keep_strings(bfd) (coff_data (bfd)->keep_strings)
44 #define obj_coff_sym_hashes(bfd) (coff_data (bfd)->sym_hashes)
45
46 #define obj_coff_local_toc_table(bfd) (coff_data(bfd)->local_toc_sym_map)
47
48 /* `Tdata' information kept for COFF files.  */
49
50 typedef struct coff_tdata
51 {
52   struct   coff_symbol_struct *symbols; /* symtab for input bfd */
53   unsigned int *conversion_table;
54   int conv_table_size;
55   file_ptr sym_filepos;
56
57   struct coff_ptr_struct *raw_syments;
58   unsigned int raw_syment_count;
59
60   /* These are only valid once writing has begun */
61   long int relocbase;
62
63   /* These members communicate important constants about the symbol table
64      to GDB's symbol-reading code.  These `constants' unfortunately vary
65      from coff implementation to implementation...  */
66   unsigned local_n_btmask;
67   unsigned local_n_btshft;
68   unsigned local_n_tmask;
69   unsigned local_n_tshift;
70   unsigned local_symesz;
71   unsigned local_auxesz;
72   unsigned local_linesz;
73
74   /* The unswapped external symbols.  May be NULL.  Read by
75      _bfd_coff_get_external_symbols.  */
76   PTR external_syms;
77   /* If this is true, the external_syms may not be freed.  */
78   boolean keep_syms;
79
80   /* The string table.  May be NULL.  Read by
81      _bfd_coff_read_string_table.  */
82   char *strings;
83   /* If this is true, the strings may not be freed.  */
84   boolean keep_strings;
85
86   /* is this a PE format coff file */
87   int pe;
88   /* Used by the COFF backend linker.  */
89   struct coff_link_hash_entry **sym_hashes;
90
91   /* used by the pe linker for PowerPC */
92   int *local_toc_sym_map;
93
94   struct bfd_link_info *link_info;
95
96   /* Used by coff_find_nearest_line.  */
97   PTR line_info;
98 } coff_data_type;
99
100 /* Tdata for pe image files. */
101 typedef struct pe_tdata
102 {
103   coff_data_type coff;
104   struct internal_extra_pe_aouthdr pe_opthdr;
105   int dll;
106   int has_reloc_section;
107   boolean (*in_reloc_p) PARAMS((bfd *, reloc_howto_type *));
108   flagword real_flags;
109 } pe_data_type;
110
111 #define pe_data(bfd)            ((bfd)->tdata.pe_obj_data)
112
113 /* Tdata for XCOFF files.  */
114
115 struct xcoff_tdata
116 {
117   /* Basic COFF information.  */
118   coff_data_type coff;
119
120   /* True if a large a.out header should be generated.  */
121   boolean full_aouthdr;
122
123   /* TOC value.  */
124   bfd_vma toc;
125
126   /* Index of section holding TOC.  */
127   int sntoc;
128
129   /* Index of section holding entry point.  */
130   int snentry;
131
132   /* .text alignment from optional header.  */
133   int text_align_power;
134
135   /* .data alignment from optional header.  */
136   int data_align_power;
137
138   /* modtype from optional header.  */
139   short modtype;
140
141   /* cputype from optional header.  */
142   short cputype;
143
144   /* maxdata from optional header.  */
145   bfd_size_type maxdata;
146
147   /* maxstack from optional header.  */
148   bfd_size_type maxstack;
149
150   /* Used by the XCOFF backend linker.  */
151   asection **csects;
152   unsigned long *debug_indices;
153   unsigned int import_file_id;
154 };
155
156 #define xcoff_data(abfd) ((abfd)->tdata.xcoff_obj_data)
157
158 /* We take the address of the first element of a asymbol to ensure that the
159  * macro is only ever applied to an asymbol.  */
160 #define coffsymbol(asymbol) ((coff_symbol_type *)(&((asymbol)->the_bfd)))
161
162 /* The used_by_bfd field of a section may be set to a pointer to this
163    structure.  */
164
165 struct coff_section_tdata
166 {
167   /* The relocs, swapped into COFF internal form.  This may be NULL.  */
168   struct internal_reloc *relocs;
169   /* If this is true, the relocs entry may not be freed.  */
170   boolean keep_relocs;
171   /* The section contents.  This may be NULL.  */
172   bfd_byte *contents;
173   /* If this is true, the contents entry may not be freed.  */
174   boolean keep_contents;
175   /* Information cached by coff_find_nearest_line.  */
176   bfd_vma offset;
177   unsigned int i;
178   const char *function;
179   int line_base;
180   /* Available for individual backends.  */
181   PTR tdata;
182 };
183
184 /* An accessor macro for the coff_section_tdata structure.  */
185 #define coff_section_data(abfd, sec) \
186   ((struct coff_section_tdata *) (sec)->used_by_bfd)
187
188 /* Tdata for sections in XCOFF files.  This is used by the linker.  */
189
190 struct xcoff_section_tdata
191 {
192   /* Used for XCOFF csects created by the linker; points to the real
193      XCOFF section which contains this csect.  */
194   asection *enclosing;
195   /* The lineno_count field for the enclosing section, because we are
196      going to clobber it there.  */
197   unsigned int lineno_count;
198   /* The first and one past the last symbol indices for symbols used
199      by this csect.  */
200   unsigned long first_symndx;
201   unsigned long last_symndx;
202 };
203
204 /* An accessor macro the xcoff_section_tdata structure.  */
205 #define xcoff_section_data(abfd, sec) \
206   ((struct xcoff_section_tdata *) coff_section_data ((abfd), (sec))->tdata)
207
208 /* COFF linker hash table entries.  */
209
210 struct coff_link_hash_entry
211 {
212   struct bfd_link_hash_entry root;
213
214   /* Symbol index in output file.  Set to -1 initially.  Set to -2 if
215      there is a reloc against this symbol.  */
216   long indx;
217
218   /* Symbol type.  */
219   unsigned short type;
220
221   /* Symbol class.  */
222   unsigned char class;
223
224   /* Number of auxiliary entries.  */
225   char numaux;
226
227   /* BFD to take auxiliary entries from.  */
228   bfd *auxbfd;
229
230   /* Pointer to array of auxiliary entries, if any.  */
231   union internal_auxent *aux;
232 };
233
234 /* COFF linker hash table.  */
235
236 struct coff_link_hash_table
237 {
238   struct bfd_link_hash_table root;
239 };
240
241 /* Look up an entry in a COFF linker hash table.  */
242
243 #define coff_link_hash_lookup(table, string, create, copy, follow)      \
244   ((struct coff_link_hash_entry *)                                      \
245    bfd_link_hash_lookup (&(table)->root, (string), (create),            \
246                          (copy), (follow)))
247
248 /* Traverse a COFF linker hash table.  */
249
250 #define coff_link_hash_traverse(table, func, info)                      \
251   (bfd_link_hash_traverse                                               \
252    (&(table)->root,                                                     \
253     (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func),  \
254     (info)))
255
256 /* Get the COFF linker hash table from a link_info structure.  */
257
258 #define coff_hash_table(p) ((struct coff_link_hash_table *) ((p)->hash))
259
260 /* Functions in coffgen.c.  */
261 extern const bfd_target *coff_object_p PARAMS ((bfd *));
262 extern struct sec *coff_section_from_bfd_index PARAMS ((bfd *, int));
263 extern long coff_get_symtab_upper_bound PARAMS ((bfd *));
264 extern long coff_get_symtab PARAMS ((bfd *, asymbol **));
265 extern int coff_count_linenumbers PARAMS ((bfd *));
266 extern struct coff_symbol_struct *coff_symbol_from PARAMS ((bfd *, asymbol *));
267 extern boolean coff_renumber_symbols PARAMS ((bfd *, int *));
268 extern void coff_mangle_symbols PARAMS ((bfd *));
269 extern boolean coff_write_symbols PARAMS ((bfd *));
270 extern boolean coff_write_linenumbers PARAMS ((bfd *));
271 extern alent *coff_get_lineno PARAMS ((bfd *, asymbol *));
272 extern asymbol *coff_section_symbol PARAMS ((bfd *, char *));
273 extern boolean _bfd_coff_get_external_symbols PARAMS ((bfd *));
274 extern const char *_bfd_coff_read_string_table PARAMS ((bfd *));
275 extern boolean _bfd_coff_free_symbols PARAMS ((bfd *));
276 extern struct coff_ptr_struct *coff_get_normalized_symtab PARAMS ((bfd *));
277 extern long coff_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
278 extern asymbol *coff_make_empty_symbol PARAMS ((bfd *));
279 extern void coff_print_symbol PARAMS ((bfd *, PTR filep, asymbol *,
280                                        bfd_print_symbol_type how));
281 extern void coff_get_symbol_info PARAMS ((bfd *, asymbol *,
282                                           symbol_info *ret));
283 extern asymbol *coff_bfd_make_debug_symbol PARAMS ((bfd *, PTR,
284                                                     unsigned long));
285 extern boolean coff_find_nearest_line PARAMS ((bfd *,
286                                                asection *,
287                                                asymbol **,
288                                                bfd_vma offset,
289                                                CONST char **filename_ptr,
290                                                CONST char **functionname_ptr,
291                                                unsigned int *line_ptr));
292 extern int coff_sizeof_headers PARAMS ((bfd *, boolean reloc));
293 extern boolean bfd_coff_reloc16_relax_section
294   PARAMS ((bfd *, asection *, struct bfd_link_info *, boolean *));
295 extern bfd_byte *bfd_coff_reloc16_get_relocated_section_contents
296   PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *,
297            bfd_byte *, boolean relocateable, asymbol **));
298 extern bfd_vma bfd_coff_reloc16_get_value PARAMS ((arelent *,
299                                                    struct bfd_link_info *,
300                                                    asection *));
301 extern void bfd_perform_slip PARAMS ((bfd *abfd, unsigned int slip,
302                                       asection *input_section,
303                                       bfd_vma val));
304
305 /* Functions and types in cofflink.c.  */
306
307 #define STRING_SIZE_SIZE (4)
308
309 /* We use a hash table to merge identical enum, struct, and union
310    definitions in the linker.  */
311
312 /* Information we keep for a single element (an enum value, a
313    structure or union field) in the debug merge hash table.  */
314
315 struct coff_debug_merge_element
316 {
317   /* Next element.  */
318   struct coff_debug_merge_element *next;
319
320   /* Name.  */
321   const char *name;
322
323   /* Type.  */
324   unsigned int type;
325
326   /* Symbol index for complex type.  */
327   long tagndx;
328 };
329
330 /* A linked list of debug merge entries for a given name.  */
331
332 struct coff_debug_merge_type
333 {
334   /* Next type with the same name.  */
335   struct coff_debug_merge_type *next;
336
337   /* Class of type.  */
338   int class;
339
340   /* Symbol index where this type is defined.  */
341   long indx;
342
343   /* List of elements.  */
344   struct coff_debug_merge_element *elements;
345 };
346
347 /* Information we store in the debug merge hash table.  */
348
349 struct coff_debug_merge_hash_entry
350 {
351   struct bfd_hash_entry root;
352
353   /* A list of types with this name.  */
354   struct coff_debug_merge_type *types;
355 };
356
357 /* The debug merge hash table.  */
358
359 struct coff_debug_merge_hash_table
360 {
361   struct bfd_hash_table root;
362 };
363
364 /* Initialize a COFF debug merge hash table.  */
365
366 #define coff_debug_merge_hash_table_init(table) \
367   (bfd_hash_table_init (&(table)->root, _bfd_coff_debug_merge_hash_newfunc))
368
369 /* Free a COFF debug merge hash table.  */
370
371 #define coff_debug_merge_hash_table_free(table) \
372   (bfd_hash_table_free (&(table)->root))
373
374 /* Look up an entry in a COFF debug merge hash table.  */
375
376 #define coff_debug_merge_hash_lookup(table, string, create, copy) \
377   ((struct coff_debug_merge_hash_entry *) \
378    bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
379
380 /* Information we keep for each section in the output file when doing
381    a relocateable link.  */
382
383 struct coff_link_section_info
384 {
385   /* The relocs to be output.  */
386   struct internal_reloc *relocs;
387   /* For each reloc against a global symbol whose index was not known
388      when the reloc was handled, the global hash table entry.  */
389   struct coff_link_hash_entry **rel_hashes;
390 };
391
392 /* Information that we pass around while doing the final link step.  */
393
394 struct coff_final_link_info
395 {
396   /* General link information.  */
397   struct bfd_link_info *info;
398   /* Output BFD.  */
399   bfd *output_bfd;
400   /* Used to indicate failure in traversal routine.  */
401   boolean failed;
402   /* Hash table for long symbol names.  */
403   struct bfd_strtab_hash *strtab;
404   /* When doing a relocateable link, an array of information kept for
405      each output section, indexed by the target_index field.  */
406   struct coff_link_section_info *section_info;
407   /* Symbol index of last C_FILE symbol (-1 if none).  */
408   long last_file_index;
409   /* Contents of last C_FILE symbol.  */
410   struct internal_syment last_file;
411   /* Hash table used to merge debug information.  */
412   struct coff_debug_merge_hash_table debug_merge;
413   /* Buffer large enough to hold swapped symbols of any input file.  */
414   struct internal_syment *internal_syms;
415   /* Buffer large enough to hold sections of symbols of any input file.  */
416   asection **sec_ptrs;
417   /* Buffer large enough to hold output indices of symbols of any
418      input file.  */
419   long *sym_indices;
420   /* Buffer large enough to hold output symbols for any input file.  */
421   bfd_byte *outsyms;
422   /* Buffer large enough to hold external line numbers for any input
423      section.  */
424   bfd_byte *linenos;
425   /* Buffer large enough to hold any input section.  */
426   bfd_byte *contents;
427   /* Buffer large enough to hold external relocs of any input section.  */
428   bfd_byte *external_relocs;
429   /* Buffer large enough to hold swapped relocs of any input section.  */
430   struct internal_reloc *internal_relocs;
431 };
432
433 extern struct bfd_hash_entry *_bfd_coff_link_hash_newfunc
434   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
435 extern boolean _bfd_coff_link_hash_table_init
436   PARAMS ((struct coff_link_hash_table *, bfd *,
437            struct bfd_hash_entry *(*) (struct bfd_hash_entry *,
438                                        struct bfd_hash_table *,
439                                        const char *)));
440 extern struct bfd_link_hash_table *_bfd_coff_link_hash_table_create
441   PARAMS ((bfd *));
442 extern const char *_bfd_coff_internal_syment_name
443   PARAMS ((bfd *, const struct internal_syment *, char *));
444 extern boolean _bfd_coff_link_add_symbols
445   PARAMS ((bfd *, struct bfd_link_info *));
446 extern boolean _bfd_coff_final_link
447   PARAMS ((bfd *, struct bfd_link_info *));
448 extern struct internal_reloc *_bfd_coff_read_internal_relocs
449   PARAMS ((bfd *, asection *, boolean, bfd_byte *, boolean,
450            struct internal_reloc *));
451 extern boolean _bfd_coff_generic_relocate_section
452   PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
453            struct internal_reloc *, struct internal_syment *, asection **));
454
455 extern struct bfd_hash_entry *_bfd_coff_debug_merge_hash_newfunc
456   PARAMS ((struct bfd_hash_entry *, struct bfd_hash_table *, const char *));
457 extern boolean _bfd_coff_write_global_sym
458   PARAMS ((struct coff_link_hash_entry *, PTR));
459 extern boolean _bfd_coff_link_input_bfd
460   PARAMS ((struct coff_final_link_info *, bfd *));
461 extern boolean _bfd_coff_reloc_link_order
462   PARAMS ((bfd *, struct coff_final_link_info *, asection *,
463            struct bfd_link_order *));
464
465
466 #define coff_get_section_contents_in_window \
467   _bfd_generic_get_section_contents_in_window
468
469 /* Functions in xcofflink.c.  */
470
471 extern struct bfd_link_hash_table *_bfd_xcoff_bfd_link_hash_table_create
472   PARAMS ((bfd *));
473 extern boolean _bfd_xcoff_bfd_link_add_symbols
474   PARAMS ((bfd *, struct bfd_link_info *));
475 extern boolean _bfd_xcoff_bfd_final_link
476   PARAMS ((bfd *, struct bfd_link_info *));
477 extern boolean _bfd_ppc_xcoff_relocate_section
478   PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
479            struct internal_reloc *, struct internal_syment *, asection **));
480
481 /* And more taken from the source .. */
482
483 typedef struct coff_ptr_struct
484 {
485
486         /* Remembers the offset from the first symbol in the file for
487           this symbol. Generated by coff_renumber_symbols. */
488 unsigned int offset;
489
490         /* Should the value of this symbol be renumbered.  Used for
491           XCOFF C_BSTAT symbols.  Set by coff_slurp_symbol_table.  */
492 unsigned int fix_value : 1;
493
494         /* Should the tag field of this symbol be renumbered.
495           Created by coff_pointerize_aux. */
496 unsigned int fix_tag : 1;
497
498         /* Should the endidx field of this symbol be renumbered.
499           Created by coff_pointerize_aux. */
500 unsigned int fix_end : 1;
501
502         /* Should the x_csect.x_scnlen field be renumbered.
503           Created by coff_pointerize_aux. */
504 unsigned int fix_scnlen : 1;
505
506         /* Fix up an XCOFF C_BINCL/C_EINCL symbol.  The value is the
507           index into the line number entries.  Set by
508           coff_slurp_symbol_table.  */
509 unsigned int fix_line : 1;
510
511         /* The container for the symbol structure as read and translated
512            from the file. */
513
514 union {
515    union internal_auxent auxent;
516    struct internal_syment syment;
517  } u;
518 } combined_entry_type;
519
520
521  /* Each canonical asymbol really looks like this: */
522
523 typedef struct coff_symbol_struct
524 {
525     /* The actual symbol which the rest of BFD works with */
526 asymbol symbol;
527
528     /* A pointer to the hidden information for this symbol */
529 combined_entry_type *native;
530
531     /* A pointer to the linenumber information for this symbol */
532 struct lineno_cache_entry *lineno;
533
534     /* Have the line numbers been relocated yet ? */
535 boolean done_lineno;
536 } coff_symbol_type;
537 typedef struct
538 {
539   void (*_bfd_coff_swap_aux_in) PARAMS ((
540        bfd            *abfd,
541        PTR             ext,
542        int             type,
543        int             class,
544        int             indaux,
545        int             numaux,
546        PTR             in));
547
548   void (*_bfd_coff_swap_sym_in) PARAMS ((
549        bfd            *abfd ,
550        PTR             ext,
551        PTR             in));
552
553   void (*_bfd_coff_swap_lineno_in) PARAMS ((
554        bfd            *abfd,
555        PTR            ext,
556        PTR             in));
557
558  unsigned int (*_bfd_coff_swap_aux_out) PARAMS ((
559        bfd      *abfd,
560        PTR      in,
561        int      type,
562        int      class,
563        int     indaux,
564        int     numaux,
565        PTR      ext));
566
567  unsigned int (*_bfd_coff_swap_sym_out) PARAMS ((
568       bfd      *abfd,
569       PTR       in,
570       PTR       ext));
571
572  unsigned int (*_bfd_coff_swap_lineno_out) PARAMS ((
573         bfd     *abfd,
574         PTR     in,
575         PTR     ext));
576
577  unsigned int (*_bfd_coff_swap_reloc_out) PARAMS ((
578         bfd     *abfd,
579         PTR     src,
580         PTR     dst));
581
582  unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS ((
583         bfd     *abfd,
584         PTR     in,
585         PTR     out));
586
587  unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS ((
588         bfd     *abfd,
589         PTR     in,
590         PTR     out));
591
592  unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS ((
593         bfd     *abfd,
594         PTR     in,
595         PTR     out));
596
597  unsigned int _bfd_filhsz;
598  unsigned int _bfd_aoutsz;
599  unsigned int _bfd_scnhsz;
600  unsigned int _bfd_symesz;
601  unsigned int _bfd_auxesz;
602  unsigned int _bfd_relsz;
603  unsigned int _bfd_linesz;
604  boolean _bfd_coff_long_filenames;
605  void (*_bfd_coff_swap_filehdr_in) PARAMS ((
606        bfd     *abfd,
607        PTR     ext,
608        PTR     in));
609  void (*_bfd_coff_swap_aouthdr_in) PARAMS ((
610        bfd     *abfd,
611        PTR     ext,
612        PTR     in));
613  void (*_bfd_coff_swap_scnhdr_in) PARAMS ((
614        bfd     *abfd,
615        PTR     ext,
616        PTR     in));
617  void (*_bfd_coff_swap_reloc_in) PARAMS ((
618        bfd     *abfd,
619        PTR     ext,
620        PTR     in));
621  boolean (*_bfd_coff_bad_format_hook) PARAMS ((
622        bfd     *abfd,
623        PTR     internal_filehdr));
624  boolean (*_bfd_coff_set_arch_mach_hook) PARAMS ((
625        bfd     *abfd,
626        PTR     internal_filehdr));
627  PTR (*_bfd_coff_mkobject_hook) PARAMS ((
628        bfd     *abfd,
629        PTR     internal_filehdr,
630        PTR     internal_aouthdr));
631  flagword (*_bfd_styp_to_sec_flags_hook) PARAMS ((
632        bfd     *abfd,
633        PTR     internal_scnhdr,
634        const char *name));
635  void (*_bfd_set_alignment_hook) PARAMS ((
636        bfd     *abfd,
637        asection *sec,
638        PTR     internal_scnhdr));
639  boolean (*_bfd_coff_slurp_symbol_table) PARAMS ((
640        bfd     *abfd));
641  boolean (*_bfd_coff_symname_in_debug) PARAMS ((
642        bfd     *abfd,
643        struct internal_syment *sym));
644  boolean (*_bfd_coff_pointerize_aux_hook) PARAMS ((
645        bfd *abfd,
646        combined_entry_type *table_base,
647        combined_entry_type *symbol,
648        unsigned int indaux,
649        combined_entry_type *aux));
650  boolean (*_bfd_coff_print_aux) PARAMS ((
651        bfd *abfd,
652        FILE *file,
653        combined_entry_type *table_base,
654        combined_entry_type *symbol,
655        combined_entry_type *aux,
656        unsigned int indaux));
657  void (*_bfd_coff_reloc16_extra_cases) PARAMS ((
658        bfd     *abfd,
659        struct bfd_link_info *link_info,
660        struct bfd_link_order *link_order,
661        arelent *reloc,
662        bfd_byte *data,
663        unsigned int *src_ptr,
664        unsigned int *dst_ptr));
665  int (*_bfd_coff_reloc16_estimate) PARAMS ((
666        bfd *abfd,
667        asection *input_section,
668        arelent *r,
669        unsigned int shrink,
670        struct bfd_link_info *link_info));
671  boolean (*_bfd_coff_sym_is_global) PARAMS ((
672        bfd *abfd,
673        struct internal_syment *));
674  void (*_bfd_coff_compute_section_file_positions) PARAMS ((
675        bfd *abfd));
676  boolean (*_bfd_coff_start_final_link) PARAMS ((
677        bfd *output_bfd,
678        struct bfd_link_info *info));
679  boolean (*_bfd_coff_relocate_section) PARAMS ((
680        bfd *output_bfd,
681        struct bfd_link_info *info,
682        bfd *input_bfd,
683        asection *input_section,
684        bfd_byte *contents,
685        struct internal_reloc *relocs,
686        struct internal_syment *syms,
687        asection **sections));
688  reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS ((
689        bfd *abfd,
690        asection *sec,
691        struct internal_reloc *rel,
692        struct coff_link_hash_entry *h,
693        struct internal_syment *sym,
694        bfd_vma *addendp));
695  boolean (*_bfd_coff_adjust_symndx) PARAMS ((
696        bfd *obfd,
697        struct bfd_link_info *info,
698        bfd *ibfd,
699        asection *sec,
700        struct internal_reloc *reloc,
701        boolean *adjustedp));
702  boolean (*_bfd_coff_link_add_one_symbol) PARAMS ((
703        struct bfd_link_info *info,
704        bfd *abfd,
705        const char *name,
706        flagword flags, 
707        asection *section,
708        bfd_vma value,
709        const char *string,
710        boolean copy,
711        boolean collect, 
712        struct bfd_link_hash_entry **hashp));
713
714 } bfd_coff_backend_data;
715
716 #define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
717
718 #define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
719         ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
720
721 #define bfd_coff_swap_sym_in(a,e,i) \
722         ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
723
724 #define bfd_coff_swap_lineno_in(a,e,i) \
725         ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
726
727 #define bfd_coff_swap_reloc_out(abfd, i, o) \
728         ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
729
730 #define bfd_coff_swap_lineno_out(abfd, i, o) \
731         ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
732
733 #define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
734         ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
735
736 #define bfd_coff_swap_sym_out(abfd, i,o) \
737         ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
738
739 #define bfd_coff_swap_scnhdr_out(abfd, i,o) \
740         ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
741
742 #define bfd_coff_swap_filehdr_out(abfd, i,o) \
743         ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
744
745 #define bfd_coff_swap_aouthdr_out(abfd, i,o) \
746         ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
747
748 #define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
749 #define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
750 #define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
751 #define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
752 #define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
753 #define bfd_coff_relsz(abfd)  (coff_backend_info (abfd)->_bfd_relsz)
754 #define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
755 #define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames)
756 #define bfd_coff_swap_filehdr_in(abfd, i,o) \
757         ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
758
759 #define bfd_coff_swap_aouthdr_in(abfd, i,o) \
760         ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
761
762 #define bfd_coff_swap_scnhdr_in(abfd, i,o) \
763         ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
764
765 #define bfd_coff_swap_reloc_in(abfd, i, o) \
766         ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
767
768 #define bfd_coff_bad_format_hook(abfd, filehdr) \
769         ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
770
771 #define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
772         ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
773 #define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
774         ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr))
775
776 #define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name)\
777         ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr, name))
778
779 #define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
780         ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
781
782 #define bfd_coff_slurp_symbol_table(abfd)\
783         ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
784
785 #define bfd_coff_symname_in_debug(abfd, sym)\
786         ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
787
788 #define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
789         ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
790          (abfd, file, base, symbol, aux, indaux))
791
792 #define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\
793         ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
794          (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
795
796 #define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
797         ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
798          (abfd, section, reloc, shrink, link_info))
799
800 #define bfd_coff_sym_is_global(abfd, sym)\
801         ((coff_backend_info (abfd)->_bfd_coff_sym_is_global)\
802          (abfd, sym))
803
804 #define bfd_coff_compute_section_file_positions(abfd)\
805         ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
806          (abfd))
807
808 #define bfd_coff_start_final_link(obfd, info)\
809         ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
810          (obfd, info))
811 #define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
812         ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
813          (obfd, info, ibfd, o, con, rel, isyms, secs))
814 #define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
815         ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
816          (abfd, sec, rel, h, sym, addendp))
817 #define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
818         ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
819          (obfd, info, ibfd, sec, rel, adjustedp))
820 #define bfd_coff_link_add_one_symbol(info,abfd,name,flags,section,value,string,cp,coll,hashp)\
821         ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
822          (info, abfd, name, flags, section, value, string, cp, coll, hashp))
823