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