* libcoff-in.h (struct xcoff_tdata): Define.
[external/binutils.git] / bfd / libcoff.h
1 /* BFD COFF object file private structure.
2    Copyright (C) 1990, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
3    Written by Cygnus Support.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 #include "bfdlink.h"
22
23 /* Object file tdata; access macros */
24
25 #define coff_data(bfd)          ((bfd)->tdata.coff_obj_data)
26 #define exec_hdr(bfd)           (coff_data(bfd)->hdr)
27 #define obj_pe(bfd)             (coff_data(bfd)->pe)
28 #define obj_symbols(bfd)        (coff_data(bfd)->symbols)
29 #define obj_sym_filepos(bfd)    (coff_data(bfd)->sym_filepos)
30
31 #define obj_relocbase(bfd)      (coff_data(bfd)->relocbase)
32 #define obj_raw_syments(bfd)    (coff_data(bfd)->raw_syments)
33 #define obj_raw_syment_count(bfd)       (coff_data(bfd)->raw_syment_count)
34 #define obj_convert(bfd)        (coff_data(bfd)->conversion_table)
35 #define obj_conv_table_size(bfd) (coff_data(bfd)->conv_table_size)
36
37 #define obj_coff_external_syms(bfd) (coff_data (bfd)->external_syms)
38 #define obj_coff_keep_syms(bfd) (coff_data (bfd)->keep_syms)
39 #define obj_coff_strings(bfd)   (coff_data (bfd)->strings)
40 #define obj_coff_keep_strings(bfd) (coff_data (bfd)->keep_strings)
41 #define obj_coff_sym_hashes(bfd) (coff_data (bfd)->sym_hashes)
42
43 /* `Tdata' information kept for COFF files.  */
44
45 typedef struct coff_tdata
46 {
47   struct   coff_symbol_struct *symbols; /* symtab for input bfd */
48   unsigned int *conversion_table;
49   int conv_table_size;
50   file_ptr sym_filepos;
51
52   struct coff_ptr_struct *raw_syments;
53   unsigned int raw_syment_count;
54
55   /* These are only valid once writing has begun */
56   long int relocbase;
57
58   /* These members communicate important constants about the symbol table
59      to GDB's symbol-reading code.  These `constants' unfortunately vary
60      from coff implementation to implementation...  */
61   unsigned local_n_btmask;
62   unsigned local_n_btshft;
63   unsigned local_n_tmask;
64   unsigned local_n_tshift;
65   unsigned local_symesz;
66   unsigned local_auxesz;
67   unsigned local_linesz;
68
69   /* The unswapped external symbols.  May be NULL.  Read by
70      _bfd_coff_get_external_symbols.  */
71   PTR external_syms;
72   /* If this is true, the external_syms may not be freed.  */
73   boolean keep_syms;
74
75   /* The string table.  May be NULL.  Read by
76      _bfd_coff_read_string_table.  */
77   char *strings;
78   /* If this is true, the strings may not be freed.  */
79   boolean keep_strings;
80
81   /* is this a PE format coff file */
82   int pe;
83   /* Used by the COFF backend linker.  */
84   struct coff_link_hash_entry **sym_hashes;
85
86   struct bfd_link_info *link_info;
87 } coff_data_type;
88
89 /* Tdata for pe image files. */
90 typedef struct pe_tdata
91 {
92   coff_data_type coff;
93   struct internal_extra_pe_aouthdr pe_opthdr;
94   int dll;
95   int has_reloc_section;
96 } pe_data_type;
97
98 #define pe_data(bfd)            ((bfd)->tdata.pe_obj_data)
99
100 /* Tdata for XCOFF files.  */
101
102 struct xcoff_tdata
103 {
104   /* Basic COFF information.  */
105   coff_data_type coff;
106
107   /* TOC value.  */
108   bfd_vma toc;
109
110   /* .text alignment from optional header.  */
111   int text_align_power;
112
113   /* .data alignment from optional header.  */
114   int data_align_power;
115
116   /* modtype from optional header.  */
117   short modtype;
118
119   /* maxdata from optional header.  */
120   bfd_size_type maxdata;
121
122   /* maxstack from optional header.  */
123   bfd_size_type maxstack;
124 };
125
126 #define xcoff_data(abfd) ((abfd)->tdata.xcoff_obj_data)
127
128 /* We take the address of the first element of a asymbol to ensure that the
129  * macro is only ever applied to an asymbol.  */
130 #define coffsymbol(asymbol) ((coff_symbol_type *)(&((asymbol)->the_bfd)))
131
132 /* The used_by_bfd field of a section may be set to a pointer to this
133    structure.  */
134
135 struct coff_section_tdata
136 {
137   /* The relocs, swapped into COFF internal form.  This may be NULL.  */
138   struct internal_reloc *relocs;
139   /* If this is true, the relocs entry may not be freed.  */
140   boolean keep_relocs;
141   /* The section contents.  This may be NULL.  */
142   bfd_byte *contents;
143   /* If this is true, the contents entry may not be freed.  */
144   boolean keep_contents;
145   /* Information cached by coff_find_nearest_line.  */
146   bfd_vma offset;
147   unsigned int i;
148   const char *function;
149   int line_base;
150   /* Available for individual backends.  */
151   PTR tdata;
152 };
153
154 /* An accessor macro for the coff_section_tdata structure.  */
155 #define coff_section_data(abfd, sec) \
156   ((struct coff_section_tdata *) (sec)->used_by_bfd)
157
158 /* COFF linker hash table entries.  */
159
160 struct coff_link_hash_entry
161 {
162   struct bfd_link_hash_entry root;
163
164   /* Symbol index in output file.  Set to -1 initially.  Set to -2 if
165      there is a reloc against this symbol.  */
166   long indx;
167
168   /* Symbol type.  */
169   unsigned short type;
170
171   /* Symbol class.  */
172   unsigned char class;
173
174   /* Number of auxiliary entries.  */
175   char numaux;
176
177   /* BFD to take auxiliary entries from.  */
178   bfd *auxbfd;
179
180   /* Pointer to array of auxiliary entries, if any.  */
181   union internal_auxent *aux;
182 };
183
184 /* COFF linker hash table.  */
185
186 struct coff_link_hash_table
187 {
188   struct bfd_link_hash_table root;
189 };
190
191 /* Look up an entry in a COFF linker hash table.  */
192
193 #define coff_link_hash_lookup(table, string, create, copy, follow)      \
194   ((struct coff_link_hash_entry *)                                      \
195    bfd_link_hash_lookup (&(table)->root, (string), (create),            \
196                          (copy), (follow)))
197
198 /* Traverse a COFF linker hash table.  */
199
200 #define coff_link_hash_traverse(table, func, info)                      \
201   (bfd_link_hash_traverse                                               \
202    (&(table)->root,                                                     \
203     (boolean (*) PARAMS ((struct bfd_link_hash_entry *, PTR))) (func),  \
204     (info)))
205
206 /* Get the COFF linker hash table from a link_info structure.  */
207
208 #define coff_hash_table(p) ((struct coff_link_hash_table *) ((p)->hash))
209
210 /* Functions in coffgen.c.  */
211 extern const bfd_target *coff_object_p PARAMS ((bfd *));
212 extern struct sec *coff_section_from_bfd_index PARAMS ((bfd *, int));
213 extern long coff_get_symtab_upper_bound PARAMS ((bfd *));
214 extern long coff_get_symtab PARAMS ((bfd *, asymbol **));
215 extern int coff_count_linenumbers PARAMS ((bfd *));
216 extern struct coff_symbol_struct *coff_symbol_from PARAMS ((bfd *, asymbol *));
217 extern boolean coff_renumber_symbols PARAMS ((bfd *, int *));
218 extern void coff_mangle_symbols PARAMS ((bfd *));
219 extern boolean coff_write_symbols PARAMS ((bfd *));
220 extern boolean coff_write_linenumbers PARAMS ((bfd *));
221 extern alent *coff_get_lineno PARAMS ((bfd *, asymbol *));
222 extern asymbol *coff_section_symbol PARAMS ((bfd *, char *));
223 extern boolean _bfd_coff_get_external_symbols PARAMS ((bfd *));
224 extern const char *_bfd_coff_read_string_table PARAMS ((bfd *));
225 extern boolean _bfd_coff_free_symbols PARAMS ((bfd *));
226 extern struct coff_ptr_struct *coff_get_normalized_symtab PARAMS ((bfd *));
227 extern long coff_get_reloc_upper_bound PARAMS ((bfd *, sec_ptr));
228 extern asymbol *coff_make_empty_symbol PARAMS ((bfd *));
229 extern void coff_print_symbol PARAMS ((bfd *, PTR filep, asymbol *,
230                                        bfd_print_symbol_type how));
231 extern void coff_get_symbol_info PARAMS ((bfd *, asymbol *,
232                                           symbol_info *ret));
233 extern asymbol *coff_bfd_make_debug_symbol PARAMS ((bfd *, PTR,
234                                                     unsigned long));
235 extern boolean coff_find_nearest_line PARAMS ((bfd *,
236                                                asection *,
237                                                asymbol **,
238                                                bfd_vma offset,
239                                                CONST char **filename_ptr,
240                                                CONST char **functionname_ptr,
241                                                unsigned int *line_ptr));
242 extern int coff_sizeof_headers PARAMS ((bfd *, boolean reloc));
243 extern boolean bfd_coff_reloc16_relax_section
244   PARAMS ((bfd *, asection *, struct bfd_link_info *, boolean *));
245 extern bfd_byte *bfd_coff_reloc16_get_relocated_section_contents
246   PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *,
247            bfd_byte *, boolean relocateable, asymbol **));
248 extern bfd_vma bfd_coff_reloc16_get_value PARAMS ((arelent *,
249                                                    struct bfd_link_info *,
250                                                    asection *));
251 extern void bfd_perform_slip PARAMS ((bfd *abfd, unsigned int slip,
252                                       asection *input_section,
253                                       bfd_vma val));
254
255 /* Functions in cofflink.c.  */
256
257 extern struct bfd_link_hash_table *_bfd_coff_link_hash_table_create
258   PARAMS ((bfd *));
259 extern const char *_bfd_coff_internal_syment_name
260   PARAMS ((bfd *, const struct internal_syment *, char *));
261 extern boolean _bfd_coff_link_add_symbols
262   PARAMS ((bfd *, struct bfd_link_info *));
263 extern boolean _bfd_coff_final_link
264   PARAMS ((bfd *, struct bfd_link_info *));
265 extern struct internal_reloc *_bfd_coff_read_internal_relocs
266   PARAMS ((bfd *, asection *, boolean, bfd_byte *, boolean,
267            struct internal_reloc *));
268 extern boolean _bfd_coff_generic_relocate_section
269   PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
270            struct internal_reloc *, struct internal_syment *, asection **));
271
272 /* And more taken from the source .. */
273
274 typedef struct coff_ptr_struct
275 {
276
277         /* Remembers the offset from the first symbol in the file for
278           this symbol. Generated by coff_renumber_symbols. */
279 unsigned int offset;
280
281         /* Should the value of this symbol be renumbered.  Used for
282           XCOFF C_BSTAT symbols.  Set by coff_slurp_symbol_table.  */
283 unsigned int fix_value : 1;
284
285         /* Should the tag field of this symbol be renumbered.
286           Created by coff_pointerize_aux. */
287 unsigned int fix_tag : 1;
288
289         /* Should the endidx field of this symbol be renumbered.
290           Created by coff_pointerize_aux. */
291 unsigned int fix_end : 1;
292
293         /* Should the x_csect.x_scnlen field be renumbered.
294           Created by coff_pointerize_aux. */
295 unsigned int fix_scnlen : 1;
296
297         /* The container for the symbol structure as read and translated
298            from the file. */
299
300 union {
301    union internal_auxent auxent;
302    struct internal_syment syment;
303  } u;
304 } combined_entry_type;
305
306
307  /* Each canonical asymbol really looks like this: */
308
309 typedef struct coff_symbol_struct
310 {
311     /* The actual symbol which the rest of BFD works with */
312 asymbol symbol;
313
314     /* A pointer to the hidden information for this symbol */
315 combined_entry_type *native;
316
317     /* A pointer to the linenumber information for this symbol */
318 struct lineno_cache_entry *lineno;
319
320     /* Have the line numbers been relocated yet ? */
321 boolean done_lineno;
322 } coff_symbol_type;
323 typedef struct
324 {
325   void (*_bfd_coff_swap_aux_in) PARAMS ((
326        bfd            *abfd,
327        PTR             ext,
328        int             type,
329        int             class,
330        int             indaux,
331        int             numaux,
332        PTR             in));
333
334   void (*_bfd_coff_swap_sym_in) PARAMS ((
335        bfd            *abfd ,
336        PTR             ext,
337        PTR             in));
338
339   void (*_bfd_coff_swap_lineno_in) PARAMS ((
340        bfd            *abfd,
341        PTR            ext,
342        PTR             in));
343
344  unsigned int (*_bfd_coff_swap_aux_out) PARAMS ((
345        bfd      *abfd,
346        PTR      in,
347        int      type,
348        int      class,
349        int     indaux,
350        int     numaux,
351        PTR      ext));
352
353  unsigned int (*_bfd_coff_swap_sym_out) PARAMS ((
354       bfd      *abfd,
355       PTR       in,
356       PTR       ext));
357
358  unsigned int (*_bfd_coff_swap_lineno_out) PARAMS ((
359         bfd     *abfd,
360         PTR     in,
361         PTR     ext));
362
363  unsigned int (*_bfd_coff_swap_reloc_out) PARAMS ((
364         bfd     *abfd,
365         PTR     src,
366         PTR     dst));
367
368  unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS ((
369         bfd     *abfd,
370         PTR     in,
371         PTR     out));
372
373  unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS ((
374         bfd     *abfd,
375         PTR     in,
376         PTR     out));
377
378  unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS ((
379         bfd     *abfd,
380         PTR     in,
381         PTR     out));
382
383  unsigned int _bfd_filhsz;
384  unsigned int _bfd_aoutsz;
385  unsigned int _bfd_scnhsz;
386  unsigned int _bfd_symesz;
387  unsigned int _bfd_auxesz;
388  unsigned int _bfd_relsz;
389  unsigned int _bfd_linesz;
390  boolean _bfd_coff_long_filenames;
391  void (*_bfd_coff_swap_filehdr_in) PARAMS ((
392        bfd     *abfd,
393        PTR     ext,
394        PTR     in));
395  void (*_bfd_coff_swap_aouthdr_in) PARAMS ((
396        bfd     *abfd,
397        PTR     ext,
398        PTR     in));
399  void (*_bfd_coff_swap_scnhdr_in) PARAMS ((
400        bfd     *abfd,
401        PTR     ext,
402        PTR     in));
403  void (*_bfd_coff_swap_reloc_in) PARAMS ((
404        bfd     *abfd,
405        PTR     ext,
406        PTR     in));
407  boolean (*_bfd_coff_bad_format_hook) PARAMS ((
408        bfd     *abfd,
409        PTR     internal_filehdr));
410  boolean (*_bfd_coff_set_arch_mach_hook) PARAMS ((
411        bfd     *abfd,
412        PTR     internal_filehdr));
413  PTR (*_bfd_coff_mkobject_hook) PARAMS ((
414        bfd     *abfd,
415        PTR     internal_filehdr,
416        PTR     internal_aouthdr));
417  flagword (*_bfd_styp_to_sec_flags_hook) PARAMS ((
418        bfd     *abfd,
419        PTR     internal_scnhdr,
420        const char *name));
421  void (*_bfd_set_alignment_hook) PARAMS ((
422        bfd     *abfd,
423        asection *sec,
424        PTR     internal_scnhdr));
425  boolean (*_bfd_coff_slurp_symbol_table) PARAMS ((
426        bfd     *abfd));
427  boolean (*_bfd_coff_symname_in_debug) PARAMS ((
428        bfd     *abfd,
429        struct internal_syment *sym));
430  boolean (*_bfd_coff_pointerize_aux_hook) PARAMS ((
431        bfd *abfd,
432        combined_entry_type *table_base,
433        combined_entry_type *symbol,
434        unsigned int indaux,
435        combined_entry_type *aux));
436  boolean (*_bfd_coff_print_aux) PARAMS ((
437        bfd *abfd,
438        FILE *file,
439        combined_entry_type *table_base,
440        combined_entry_type *symbol,
441        combined_entry_type *aux,
442        unsigned int indaux));
443  void (*_bfd_coff_reloc16_extra_cases) PARAMS ((
444        bfd     *abfd,
445        struct bfd_link_info *link_info,
446        struct bfd_link_order *link_order,
447        arelent *reloc,
448        bfd_byte *data,
449        unsigned int *src_ptr,
450        unsigned int *dst_ptr));
451  int (*_bfd_coff_reloc16_estimate) PARAMS ((
452        bfd *abfd,
453        asection *input_section,
454        arelent *r,
455        unsigned int shrink,
456        struct bfd_link_info *link_info));
457  boolean (*_bfd_coff_sym_is_global) PARAMS ((
458        bfd *abfd,
459        struct internal_syment *));
460  void (*_bfd_coff_compute_section_file_positions) PARAMS ((
461        bfd *abfd));
462  boolean (*_bfd_coff_start_final_link) PARAMS ((
463        bfd *output_bfd,
464        struct bfd_link_info *info));
465  boolean (*_bfd_coff_relocate_section) PARAMS ((
466        bfd *output_bfd,
467        struct bfd_link_info *info,
468        bfd *input_bfd,
469        asection *input_section,
470        bfd_byte *contents,
471        struct internal_reloc *relocs,
472        struct internal_syment *syms,
473        asection **sections));
474  reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS ((
475        bfd *abfd,
476        asection *sec,
477        struct internal_reloc *rel,
478        struct coff_link_hash_entry *h,
479        struct internal_syment *sym,
480        bfd_vma *addendp));
481  boolean (*_bfd_coff_adjust_symndx) PARAMS ((
482        bfd *obfd,
483        struct bfd_link_info *info,
484        bfd *ibfd,
485        asection *sec,
486        struct internal_reloc *reloc,
487        boolean *adjustedp));
488
489 } bfd_coff_backend_data;
490
491 #define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
492
493 #define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
494         ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
495
496 #define bfd_coff_swap_sym_in(a,e,i) \
497         ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
498
499 #define bfd_coff_swap_lineno_in(a,e,i) \
500         ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
501
502 #define bfd_coff_swap_reloc_out(abfd, i, o) \
503         ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
504
505 #define bfd_coff_swap_lineno_out(abfd, i, o) \
506         ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
507
508 #define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
509         ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
510
511 #define bfd_coff_swap_sym_out(abfd, i,o) \
512         ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
513
514 #define bfd_coff_swap_scnhdr_out(abfd, i,o) \
515         ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
516
517 #define bfd_coff_swap_filehdr_out(abfd, i,o) \
518         ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
519
520 #define bfd_coff_swap_aouthdr_out(abfd, i,o) \
521         ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
522
523 #define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
524 #define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
525 #define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
526 #define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
527 #define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
528 #define bfd_coff_relsz(abfd)  (coff_backend_info (abfd)->_bfd_relsz)
529 #define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
530 #define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames)
531 #define bfd_coff_swap_filehdr_in(abfd, i,o) \
532         ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
533
534 #define bfd_coff_swap_aouthdr_in(abfd, i,o) \
535         ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
536
537 #define bfd_coff_swap_scnhdr_in(abfd, i,o) \
538         ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
539
540 #define bfd_coff_swap_reloc_in(abfd, i, o) \
541         ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
542
543 #define bfd_coff_bad_format_hook(abfd, filehdr) \
544         ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
545
546 #define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
547         ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
548 #define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
549         ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr))
550
551 #define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name)\
552         ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr, name))
553
554 #define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
555         ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
556
557 #define bfd_coff_slurp_symbol_table(abfd)\
558         ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
559
560 #define bfd_coff_symname_in_debug(abfd, sym)\
561         ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
562
563 #define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
564         ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
565          (abfd, file, base, symbol, aux, indaux))
566
567 #define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\
568         ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
569          (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
570
571 #define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
572         ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
573          (abfd, section, reloc, shrink, link_info))
574
575 #define bfd_coff_sym_is_global(abfd, sym)\
576         ((coff_backend_info (abfd)->_bfd_coff_sym_is_global)\
577          (abfd, sym))
578
579 #define bfd_coff_compute_section_file_positions(abfd)\
580         ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
581          (abfd))
582
583 #define bfd_coff_start_final_link(obfd, info)\
584         ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
585          (obfd, info))
586 #define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
587         ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
588          (obfd, info, ibfd, o, con, rel, isyms, secs))
589 #define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
590         ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
591          (abfd, sec, rel, h, sym, addendp))
592 #define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
593         ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
594          (obfd, info, ibfd, sec, rel, adjustedp))
595