1 /* Support for the generic parts of most COFF variants, for BFD.
2 Copyright 1990, 91, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
3 Written by Cygnus Support.
5 This file is part of BFD, the Binary File Descriptor library.
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.
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.
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. */
22 Most of this hacked by Steve Chamberlain,
30 BFD supports a number of different flavours of coff format.
31 The major differences between formats are the sizes and
32 alignments of fields in structures on disk, and the occasional
35 Coff in all its varieties is implemented with a few common
36 files and a number of implementation specific files. For
37 example, The 88k bcs coff format is implemented in the file
38 @file{coff-m88k.c}. This file @code{#include}s
39 @file{coff/m88k.h} which defines the external structure of the
40 coff format for the 88k, and @file{coff/internal.h} which
41 defines the internal structure. @file{coff-m88k.c} also
42 defines the relocations used by the 88k format
45 The Intel i960 processor version of coff is implemented in
46 @file{coff-i960.c}. This file has the same structure as
47 @file{coff-m88k.c}, except that it includes @file{coff/i960.h}
48 rather than @file{coff-m88k.h}.
51 Porting to a new version of coff
53 The recommended method is to select from the existing
54 implementations the version of coff which is most like the one
55 you want to use. For example, we'll say that i386 coff is
56 the one you select, and that your coff flavour is called foo.
57 Copy @file{i386coff.c} to @file{foocoff.c}, copy
58 @file{../include/coff/i386.h} to @file{../include/coff/foo.h},
59 and add the lines to @file{targets.c} and @file{Makefile.in}
60 so that your new back end is used. Alter the shapes of the
61 structures in @file{../include/coff/foo.h} so that they match
62 what you need. You will probably also have to add
63 @code{#ifdef}s to the code in @file{coff/internal.h} and
64 @file{coffcode.h} if your version of coff is too wild.
66 You can verify that your new BFD backend works quite simply by
67 building @file{objdump} from the @file{binutils} directory,
68 and making sure that its version of what's going on and your
69 host system's idea (assuming it has the pretty standard coff
70 dump utility, usually called @code{att-dump} or just
71 @code{dump}) are the same. Then clean up your code, and send
72 what you've done to Cygnus. Then your stuff will be in the
73 next release, and you won't have to keep integrating it.
76 How the coff backend works
81 The Coff backend is split into generic routines that are
82 applicable to any Coff target and routines that are specific
83 to a particular target. The target-specific routines are
84 further split into ones which are basically the same for all
85 Coff targets except that they use the external symbol format
86 or use different values for certain constants.
88 The generic routines are in @file{coffgen.c}. These routines
89 work for any Coff target. They use some hooks into the target
90 specific code; the hooks are in a @code{bfd_coff_backend_data}
91 structure, one of which exists for each target.
93 The essentially similar target-specific routines are in
94 @file{coffcode.h}. This header file includes executable C code.
95 The various Coff targets first include the appropriate Coff
96 header file, make any special defines that are needed, and
97 then include @file{coffcode.h}.
99 Some of the Coff targets then also have additional routines in
100 the target source file itself.
102 For example, @file{coff-i960.c} includes
103 @file{coff/internal.h} and @file{coff/i960.h}. It then
104 defines a few constants, such as @code{I960}, and includes
105 @file{coffcode.h}. Since the i960 has complex relocation
106 types, @file{coff-i960.c} also includes some code to
107 manipulate the i960 relocs. This code is not in
108 @file{coffcode.h} because it would not be used by any other
114 Each flavour of coff supported in BFD has its own header file
115 describing the external layout of the structures. There is also
116 an internal description of the coff layout, in
117 @file{coff/internal.h}. A major function of the
118 coff backend is swapping the bytes and twiddling the bits to
119 translate the external form of the structures into the normal
120 internal form. This is all performed in the
121 @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
122 elements are different sizes between different versions of
123 coff; it is the duty of the coff version specific include file
124 to override the definitions of various packing routines in
125 @file{coffcode.h}. E.g., the size of line number entry in coff is
126 sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
127 @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
128 correct one. No doubt, some day someone will find a version of
129 coff which has a varying field size not catered to at the
130 moment. To port BFD, that person will have to add more @code{#defines}.
131 Three of the bit twiddling routines are exported to
132 @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
133 and @code{coff_swap_linno_in}. @code{GDB} reads the symbol
134 table on its own, but uses BFD to fix things up. More of the
135 bit twiddlers are exported for @code{gas};
136 @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
137 @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
138 @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
139 @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
140 of all the symbol table and reloc drudgery itself, thereby
141 saving the internal BFD overhead, but uses BFD to swap things
142 on the way out, making cross ports much safer. Doing so also
143 allows BFD (and thus the linker) to use the same header files
144 as @code{gas}, which makes one avenue to disaster disappear.
149 The simple canonical form for symbols used by BFD is not rich
150 enough to keep all the information available in a coff symbol
151 table. The back end gets around this problem by keeping the original
152 symbol table around, "behind the scenes".
154 When a symbol table is requested (through a call to
155 @code{bfd_canonicalize_symtab}), a request gets through to
156 @code{coff_get_normalized_symtab}. This reads the symbol table from
157 the coff file and swaps all the structures inside into the
158 internal form. It also fixes up all the pointers in the table
159 (represented in the file by offsets from the first symbol in
160 the table) into physical pointers to elements in the new
161 internal table. This involves some work since the meanings of
162 fields change depending upon context: a field that is a
163 pointer to another structure in the symbol table at one moment
164 may be the size in bytes of a structure at the next. Another
165 pass is made over the table. All symbols which mark file names
166 (<<C_FILE>> symbols) are modified so that the internal
167 string points to the value in the auxent (the real filename)
168 rather than the normal text associated with the symbol
171 At this time the symbol names are moved around. Coff stores
172 all symbols less than nine characters long physically
173 within the symbol table; longer strings are kept at the end of
174 the file in the string table. This pass moves all strings
175 into memory and replaces them with pointers to the strings.
178 The symbol table is massaged once again, this time to create
179 the canonical table used by the BFD application. Each symbol
180 is inspected in turn, and a decision made (using the
181 @code{sclass} field) about the various flags to set in the
182 @code{asymbol}. @xref{Symbols}. The generated canonical table
183 shares strings with the hidden internal symbol table.
185 Any linenumbers are read from the coff file too, and attached
186 to the symbols which own the functions the linenumbers belong to.
191 Writing a symbol to a coff file which didn't come from a coff
192 file will lose any debugging information. The @code{asymbol}
193 structure remembers the BFD from which the symbol was taken, and on
194 output the back end makes sure that the same destination target as
195 source target is present.
197 When the symbols have come from a coff file then all the
198 debugging information is preserved.
200 Symbol tables are provided for writing to the back end in a
201 vector of pointers to pointers. This allows applications like
202 the linker to accumulate and output large symbol tables
203 without having to do too much byte copying.
205 This function runs through the provided symbol table and
206 patches each symbol marked as a file place holder
207 (@code{C_FILE}) to point to the next file place holder in the
208 list. It also marks each @code{offset} field in the list with
209 the offset from the first symbol of the current symbol.
211 Another function of this procedure is to turn the canonical
212 value form of BFD into the form used by coff. Internally, BFD
213 expects symbol values to be offsets from a section base; so a
214 symbol physically at 0x120, but in a section starting at
215 0x100, would have the value 0x20. Coff expects symbols to
216 contain their final value, so symbols have their values
217 changed at this point to reflect their sum with their owning
218 section. This transformation uses the
219 <<output_section>> field of the @code{asymbol}'s
220 @code{asection} @xref{Sections}.
222 o <<coff_mangle_symbols>>
224 This routine runs though the provided symbol table and uses
225 the offsets generated by the previous pass and the pointers
226 generated when the symbol table was read in to create the
227 structured hierachy required by coff. It changes each pointer
228 to a symbol into the index into the symbol table of the asymbol.
230 o <<coff_write_symbols>>
232 This routine runs through the symbol table and patches up the
233 symbols from their internal form into the coff way, calls the
234 bit twiddlers, and writes out the table to the file.
243 The hidden information for an <<asymbol>> is described in a
244 <<combined_entry_type>>:
248 .typedef struct coff_ptr_struct
251 . {* Remembers the offset from the first symbol in the file for
252 . this symbol. Generated by coff_renumber_symbols. *}
253 .unsigned int offset;
255 . {* Should the value of this symbol be renumbered. Used for
256 . XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *}
257 .unsigned int fix_value : 1;
259 . {* Should the tag field of this symbol be renumbered.
260 . Created by coff_pointerize_aux. *}
261 .unsigned int fix_tag : 1;
263 . {* Should the endidx field of this symbol be renumbered.
264 . Created by coff_pointerize_aux. *}
265 .unsigned int fix_end : 1;
267 . {* Should the x_csect.x_scnlen field be renumbered.
268 . Created by coff_pointerize_aux. *}
269 .unsigned int fix_scnlen : 1;
271 . {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the
272 . index into the line number entries. Set by
273 . coff_slurp_symbol_table. *}
274 .unsigned int fix_line : 1;
276 . {* The container for the symbol structure as read and translated
280 . union internal_auxent auxent;
281 . struct internal_syment syment;
283 .} combined_entry_type;
286 .{* Each canonical asymbol really looks like this: *}
288 .typedef struct coff_symbol_struct
290 . {* The actual symbol which the rest of BFD works with *}
293 . {* A pointer to the hidden information for this symbol *}
294 .combined_entry_type *native;
296 . {* A pointer to the linenumber information for this symbol *}
297 .struct lineno_cache_entry *lineno;
299 . {* Have the line numbers been relocated yet ? *}
300 .boolean done_lineno;
309 #include "coffswap.h"
312 #define STRING_SIZE_SIZE (4)
314 static long sec_to_styp_flags PARAMS ((const char *, flagword));
315 static flagword styp_to_sec_flags PARAMS ((bfd *, PTR, const char *));
316 static boolean coff_bad_format_hook PARAMS ((bfd *, PTR));
317 static boolean coff_new_section_hook PARAMS ((bfd *, asection *));
318 static boolean coff_set_arch_mach_hook PARAMS ((bfd *, PTR));
319 static boolean coff_write_relocs PARAMS ((bfd *, int));
320 static boolean coff_set_flags
321 PARAMS ((bfd *, unsigned int *, unsigned short *));
322 static boolean coff_set_arch_mach
323 PARAMS ((bfd *, enum bfd_architecture, unsigned long));
324 static boolean coff_compute_section_file_positions PARAMS ((bfd *));
325 static boolean coff_write_object_contents PARAMS ((bfd *));
326 static boolean coff_set_section_contents
327 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
328 static PTR buy_and_read PARAMS ((bfd *, file_ptr, int, size_t));
329 static boolean coff_slurp_line_table PARAMS ((bfd *, asection *));
330 static boolean coff_slurp_symbol_table PARAMS ((bfd *));
331 static boolean coff_slurp_reloc_table PARAMS ((bfd *, asection *, asymbol **));
332 static long coff_canonicalize_reloc
333 PARAMS ((bfd *, asection *, arelent **, asymbol **));
334 #ifndef coff_mkobject_hook
335 static PTR coff_mkobject_hook PARAMS ((bfd *, PTR, PTR));
338 /* void warning(); */
341 * Return a word with STYP_* (scnhdr.s_flags) flags set to represent the
342 * incoming SEC_* flags. The inverse of this function is styp_to_sec_flags().
343 * NOTE: If you add to/change this routine, you should mirror the changes
344 * in styp_to_sec_flags().
347 sec_to_styp_flags (sec_name, sec_flags)
348 CONST char *sec_name;
353 if (!strcmp (sec_name, _TEXT))
355 styp_flags = STYP_TEXT;
357 else if (!strcmp (sec_name, _DATA))
359 styp_flags = STYP_DATA;
361 else if (!strcmp (sec_name, _BSS))
363 styp_flags = STYP_BSS;
366 else if (!strcmp (sec_name, _COMMENT))
368 styp_flags = STYP_INFO;
369 #endif /* _COMMENT */
372 else if (!strcmp (sec_name, _LIB))
374 styp_flags = STYP_LIB;
378 else if (!strcmp (sec_name, _LIT))
380 styp_flags = STYP_LIT;
383 else if (!strcmp (sec_name, ".debug"))
386 styp_flags = STYP_DEBUG;
388 styp_flags = STYP_INFO;
391 else if (!strncmp (sec_name, ".stab", 5))
393 styp_flags = STYP_INFO;
396 else if (!strcmp (sec_name, ".edata"))
398 styp_flags = STYP_DATA;
402 else if (!strcmp (sec_name, _PAD))
404 styp_flags = STYP_PAD;
406 else if (!strcmp (sec_name, _LOADER))
408 styp_flags = STYP_LOADER;
411 /* Try and figure out what it should be */
412 else if (sec_flags & SEC_CODE)
414 styp_flags = STYP_TEXT;
416 else if (sec_flags & SEC_DATA)
418 styp_flags = STYP_DATA;
420 else if (sec_flags & SEC_READONLY)
422 #ifdef STYP_LIT /* 29k readonly text/data section */
423 styp_flags = STYP_LIT;
425 styp_flags = STYP_TEXT;
426 #endif /* STYP_LIT */
428 else if (sec_flags & SEC_LOAD)
430 styp_flags = STYP_TEXT;
432 else if (sec_flags & SEC_ALLOC)
434 styp_flags = STYP_BSS;
438 if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
439 styp_flags |= STYP_NOLOAD;
443 if (sec_flags & SEC_LINK_ONCE)
444 styp_flags |= IMAGE_SCN_LNK_COMDAT;
450 * Return a word with SEC_* flags set to represent the incoming
451 * STYP_* flags (from scnhdr.s_flags). The inverse of this
452 * function is sec_to_styp_flags().
453 * NOTE: If you add to/change this routine, you should mirror the changes
454 * in sec_to_styp_flags().
457 styp_to_sec_flags (abfd, hdr, name)
462 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
463 long styp_flags = internal_s->s_flags;
464 flagword sec_flags = 0;
467 if (styp_flags & STYP_NOLOAD)
469 sec_flags |= SEC_NEVER_LOAD;
471 #endif /* STYP_NOLOAD */
473 /* For 386 COFF, at least, an unloadable text or data section is
474 actually a shared library section. */
475 if (styp_flags & STYP_TEXT)
477 if (sec_flags & SEC_NEVER_LOAD)
478 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
480 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
482 else if (styp_flags & STYP_DATA)
484 if (sec_flags & SEC_NEVER_LOAD)
485 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
487 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
489 else if (styp_flags & STYP_BSS)
491 #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
492 if (sec_flags & SEC_NEVER_LOAD)
493 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
496 sec_flags |= SEC_ALLOC;
498 else if (styp_flags & STYP_INFO)
500 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
501 defined. coff_compute_section_file_positions uses
502 COFF_PAGE_SIZE to ensure that the low order bits of the
503 section VMA and the file offset match. If we don't know
504 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
505 and demand page loading of the file will fail. */
506 #if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
507 sec_flags |= SEC_DEBUGGING;
510 else if (styp_flags & STYP_PAD)
514 else if (strcmp (name, _TEXT) == 0)
516 if (sec_flags & SEC_NEVER_LOAD)
517 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
519 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
521 else if (strcmp (name, _DATA) == 0)
523 if (sec_flags & SEC_NEVER_LOAD)
524 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
526 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
528 else if (strcmp (name, _BSS) == 0)
530 #ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
531 if (sec_flags & SEC_NEVER_LOAD)
532 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
535 sec_flags |= SEC_ALLOC;
537 else if (strcmp (name, ".debug") == 0
539 || strcmp (name, _COMMENT) == 0
541 || strncmp (name, ".stab", 5) == 0)
543 #ifdef COFF_PAGE_SIZE
544 sec_flags |= SEC_DEBUGGING;
548 else if (strcmp (name, _LIB) == 0)
552 else if (strcmp (name, _LIT) == 0)
554 sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
559 sec_flags |= SEC_ALLOC | SEC_LOAD;
562 #ifdef STYP_LIT /* A29k readonly text/data section type */
563 if ((styp_flags & STYP_LIT) == STYP_LIT)
565 sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
567 #endif /* STYP_LIT */
568 #ifdef STYP_OTHER_LOAD /* Other loaded sections */
569 if (styp_flags & STYP_OTHER_LOAD)
571 sec_flags = (SEC_LOAD | SEC_ALLOC);
573 #endif /* STYP_SDATA */
576 if (styp_flags & IMAGE_SCN_LNK_REMOVE)
577 sec_flags |= SEC_EXCLUDE;
579 if (styp_flags & IMAGE_SCN_LNK_COMDAT)
581 sec_flags |= SEC_LINK_ONCE;
583 /* Unfortunately, the PE format stores essential information in
584 the symbol table, of all places. We need to extract that
585 information now, so that objdump and the linker will know how
586 to handle the section without worrying about the symbols. We
587 can't call slurp_symtab, because the linker doesn't want the
590 if (_bfd_coff_get_external_symbols (abfd))
592 bfd_byte *esym, *esymend;
594 esym = (bfd_byte *) obj_coff_external_syms (abfd);
595 esymend = esym + obj_raw_syment_count (abfd) * SYMESZ;
597 while (esym < esymend)
599 struct internal_syment isym;
601 bfd_coff_swap_sym_in (abfd, (PTR) esym, (PTR) &isym);
603 if (sizeof (internal_s->s_name) > SYMNMLEN)
605 /* This case implies that the matching symbol name
606 will be in the string table. */
610 if (isym.n_sclass == C_STAT
611 && isym.n_type == T_NULL
612 && isym.n_numaux == 1)
614 char buf[SYMNMLEN + 1];
617 symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
621 if (strcmp (name, symname) == 0)
623 union internal_auxent aux;
625 /* This is the section symbol. */
627 bfd_coff_swap_aux_in (abfd, (PTR) (esym + SYMESZ),
628 isym.n_type, isym.n_sclass,
629 0, isym.n_numaux, (PTR) &aux);
631 switch (aux.x_scn.x_comdat)
633 case IMAGE_COMDAT_SELECT_NODUPLICATES:
634 sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
638 case IMAGE_COMDAT_SELECT_ANY:
639 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
642 case IMAGE_COMDAT_SELECT_SAME_SIZE:
643 sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
646 case IMAGE_COMDAT_SELECT_EXACT_MATCH:
647 sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
650 case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
651 /* FIXME: This is not currently implemented. */
652 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
660 esym += (isym.n_numaux + 1) * SYMESZ;
669 #define get_index(symbol) ((symbol)->udata.i)
673 bfd_coff_backend_data
677 Special entry points for gdb to swap in coff symbol table parts:
680 . void (*_bfd_coff_swap_aux_in) PARAMS ((
689 . void (*_bfd_coff_swap_sym_in) PARAMS ((
694 . void (*_bfd_coff_swap_lineno_in) PARAMS ((
700 Special entry points for gas to swap out coff parts:
702 . unsigned int (*_bfd_coff_swap_aux_out) PARAMS ((
711 . unsigned int (*_bfd_coff_swap_sym_out) PARAMS ((
716 . unsigned int (*_bfd_coff_swap_lineno_out) PARAMS ((
721 . unsigned int (*_bfd_coff_swap_reloc_out) PARAMS ((
726 . unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS ((
731 . unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS ((
736 . unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS ((
742 Special entry points for generic COFF routines to call target
743 dependent COFF routines:
745 . unsigned int _bfd_filhsz;
746 . unsigned int _bfd_aoutsz;
747 . unsigned int _bfd_scnhsz;
748 . unsigned int _bfd_symesz;
749 . unsigned int _bfd_auxesz;
750 . unsigned int _bfd_relsz;
751 . unsigned int _bfd_linesz;
752 . boolean _bfd_coff_long_filenames;
753 . boolean _bfd_coff_long_section_names;
754 . unsigned int _bfd_coff_default_section_alignment_power;
755 . void (*_bfd_coff_swap_filehdr_in) PARAMS ((
759 . void (*_bfd_coff_swap_aouthdr_in) PARAMS ((
763 . void (*_bfd_coff_swap_scnhdr_in) PARAMS ((
767 . void (*_bfd_coff_swap_reloc_in) PARAMS ((
771 . boolean (*_bfd_coff_bad_format_hook) PARAMS ((
773 . PTR internal_filehdr));
774 . boolean (*_bfd_coff_set_arch_mach_hook) PARAMS ((
776 . PTR internal_filehdr));
777 . PTR (*_bfd_coff_mkobject_hook) PARAMS ((
779 . PTR internal_filehdr,
780 . PTR internal_aouthdr));
781 . flagword (*_bfd_styp_to_sec_flags_hook) PARAMS ((
783 . PTR internal_scnhdr,
784 . const char *name));
785 . void (*_bfd_set_alignment_hook) PARAMS ((
788 . PTR internal_scnhdr));
789 . boolean (*_bfd_coff_slurp_symbol_table) PARAMS ((
791 . boolean (*_bfd_coff_symname_in_debug) PARAMS ((
793 . struct internal_syment *sym));
794 . boolean (*_bfd_coff_pointerize_aux_hook) PARAMS ((
796 . combined_entry_type *table_base,
797 . combined_entry_type *symbol,
798 . unsigned int indaux,
799 . combined_entry_type *aux));
800 . boolean (*_bfd_coff_print_aux) PARAMS ((
803 . combined_entry_type *table_base,
804 . combined_entry_type *symbol,
805 . combined_entry_type *aux,
806 . unsigned int indaux));
807 . void (*_bfd_coff_reloc16_extra_cases) PARAMS ((
809 . struct bfd_link_info *link_info,
810 . struct bfd_link_order *link_order,
813 . unsigned int *src_ptr,
814 . unsigned int *dst_ptr));
815 . int (*_bfd_coff_reloc16_estimate) PARAMS ((
817 . asection *input_section,
819 . unsigned int shrink,
820 . struct bfd_link_info *link_info));
821 . boolean (*_bfd_coff_sym_is_global) PARAMS ((
823 . struct internal_syment *));
824 . boolean (*_bfd_coff_compute_section_file_positions) PARAMS ((
826 . boolean (*_bfd_coff_start_final_link) PARAMS ((
828 . struct bfd_link_info *info));
829 . boolean (*_bfd_coff_relocate_section) PARAMS ((
831 . struct bfd_link_info *info,
833 . asection *input_section,
834 . bfd_byte *contents,
835 . struct internal_reloc *relocs,
836 . struct internal_syment *syms,
837 . asection **sections));
838 . reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS ((
841 . struct internal_reloc *rel,
842 . struct coff_link_hash_entry *h,
843 . struct internal_syment *sym,
844 . bfd_vma *addendp));
845 . boolean (*_bfd_coff_adjust_symndx) PARAMS ((
847 . struct bfd_link_info *info,
850 . struct internal_reloc *reloc,
851 . boolean *adjustedp));
852 . boolean (*_bfd_coff_link_add_one_symbol) PARAMS ((
853 . struct bfd_link_info *info,
859 . const char *string,
862 . struct bfd_link_hash_entry **hashp));
864 . boolean (*_bfd_coff_link_output_has_begun) PARAMS ((
866 . boolean (*_bfd_coff_final_link_postscript) PARAMS ((
868 . struct coff_final_link_info * pfinfo));
870 .} bfd_coff_backend_data;
872 .#define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
874 .#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
875 . ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
877 .#define bfd_coff_swap_sym_in(a,e,i) \
878 . ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
880 .#define bfd_coff_swap_lineno_in(a,e,i) \
881 . ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
883 .#define bfd_coff_swap_reloc_out(abfd, i, o) \
884 . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
886 .#define bfd_coff_swap_lineno_out(abfd, i, o) \
887 . ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
889 .#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
890 . ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
892 .#define bfd_coff_swap_sym_out(abfd, i,o) \
893 . ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
895 .#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
896 . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
898 .#define bfd_coff_swap_filehdr_out(abfd, i,o) \
899 . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
901 .#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
902 . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
904 .#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
905 .#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
906 .#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
907 .#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
908 .#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
909 .#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz)
910 .#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
911 .#define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames)
912 .#define bfd_coff_long_section_names(abfd) \
913 . (coff_backend_info (abfd)->_bfd_coff_long_section_names)
914 .#define bfd_coff_default_section_alignment_power(abfd) \
915 . (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
916 .#define bfd_coff_swap_filehdr_in(abfd, i,o) \
917 . ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
919 .#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
920 . ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
922 .#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
923 . ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
925 .#define bfd_coff_swap_reloc_in(abfd, i, o) \
926 . ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
928 .#define bfd_coff_bad_format_hook(abfd, filehdr) \
929 . ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
931 .#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
932 . ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
933 .#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
934 . ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr))
936 .#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name)\
937 . ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook) (abfd, scnhdr, name))
939 .#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
940 . ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
942 .#define bfd_coff_slurp_symbol_table(abfd)\
943 . ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
945 .#define bfd_coff_symname_in_debug(abfd, sym)\
946 . ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
948 .#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
949 . ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
950 . (abfd, file, base, symbol, aux, indaux))
952 .#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\
953 . ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
954 . (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
956 .#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
957 . ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
958 . (abfd, section, reloc, shrink, link_info))
960 .#define bfd_coff_sym_is_global(abfd, sym)\
961 . ((coff_backend_info (abfd)->_bfd_coff_sym_is_global)\
964 .#define bfd_coff_compute_section_file_positions(abfd)\
965 . ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
968 .#define bfd_coff_start_final_link(obfd, info)\
969 . ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
971 .#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
972 . ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
973 . (obfd, info, ibfd, o, con, rel, isyms, secs))
974 .#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
975 . ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
976 . (abfd, sec, rel, h, sym, addendp))
977 .#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
978 . ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
979 . (obfd, info, ibfd, sec, rel, adjustedp))
980 .#define bfd_coff_link_add_one_symbol(info,abfd,name,flags,section,value,string,cp,coll,hashp)\
981 . ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
982 . (info, abfd, name, flags, section, value, string, cp, coll, hashp))
984 .#define bfd_coff_link_output_has_begun(a) \
985 . ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a))
986 .#define bfd_coff_final_link_postscript(a,p) \
987 . ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a,p))
991 /* See whether the magic number matches. */
994 coff_bad_format_hook (abfd, filehdr)
998 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1000 if (BADMAG (*internal_f))
1003 /* if the optional header is NULL or not the correct size then
1004 quit; the only difference I can see between m88k dgux headers (MC88DMAGIC)
1005 and Intel 960 readwrite headers (I960WRMAGIC) is that the
1006 optional header is of a different size.
1008 But the mips keeps extra stuff in it's opthdr, so dont check
1012 #if defined(M88) || defined(I960)
1013 if (internal_f->f_opthdr != 0 && AOUTSZ != internal_f->f_opthdr)
1021 initialize a section structure with information peculiar to this
1022 particular implementation of coff
1026 coff_new_section_hook (abfd, section)
1030 section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1033 if (xcoff_data (abfd)->text_align_power != 0
1034 && strcmp (bfd_get_section_name (abfd, section), ".text") == 0)
1035 section->alignment_power = xcoff_data (abfd)->text_align_power;
1036 if (xcoff_data (abfd)->data_align_power != 0
1037 && strcmp (bfd_get_section_name (abfd, section), ".data") == 0)
1038 section->alignment_power = xcoff_data (abfd)->data_align_power;
1041 /* Allocate aux records for section symbols, to store size and
1044 @@ The 10 is a guess at a plausible maximum number of aux entries
1045 (but shouldn't be a constant). */
1046 coffsymbol (section->symbol)->native =
1047 (combined_entry_type *) bfd_zalloc (abfd,
1048 sizeof (combined_entry_type) * 10);
1050 /* The .stab section must be aligned to 2**2 at most, because
1051 otherwise there may be gaps in the section which gdb will not
1052 know how to interpret. Examining the section name is a hack, but
1053 that is also how gdb locates the section.
1054 We need to handle the .ctors and .dtors sections similarly, to
1055 avoid introducing null words in the tables. */
1056 if (COFF_DEFAULT_SECTION_ALIGNMENT_POWER > 2
1057 && (strncmp (section->name, ".stab", 5) == 0
1058 || strcmp (section->name, ".ctors") == 0
1059 || strcmp (section->name, ".dtors") == 0))
1060 section->alignment_power = 2;
1062 /* Similarly, the .stabstr section must be aligned to 2**0 at most. */
1063 if (COFF_DEFAULT_SECTION_ALIGNMENT_POWER > 0
1064 && strncmp (section->name, ".stabstr", 8) == 0)
1065 section->alignment_power = 0;
1070 #ifdef COFF_ALIGN_IN_SECTION_HEADER
1072 /* Set the alignment of a BFD section. */
1074 static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1077 coff_set_alignment_hook (abfd, section, scnhdr)
1082 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1086 /* Extract ALIGN from 2**ALIGN stored in section header */
1087 for (i = 0; i < 32; i++)
1088 if ((1 << i) >= hdr->s_align)
1091 /* start-sanitize-tic80 */
1093 /* TI tools hijack bits 8-11 for the alignment */
1094 i = (hdr->s_flags >> 8) & 0xF ;
1096 /* end-sanitize-tic80 */
1097 section->alignment_power = i;
1100 #else /* ! COFF_ALIGN_IN_SECTION_HEADER */
1103 /* a couple of macros to help setting the alignment power field */
1104 #define ALIGN_SET(field,x,y) \
1105 if (((field) & IMAGE_SCN_ALIGN_64BYTES) == x )\
1107 section->alignment_power = y;\
1110 #define ELIFALIGN_SET(field,x,y) \
1111 else if (( (field) & IMAGE_SCN_ALIGN_64BYTES) == x ) \
1113 section->alignment_power = y;\
1116 static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1119 coff_set_alignment_hook (abfd, section, scnhdr)
1124 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1126 ALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_64BYTES, 6)
1127 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_32BYTES, 5)
1128 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_16BYTES, 4)
1129 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_8BYTES, 3)
1130 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_4BYTES, 2)
1131 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_2BYTES, 1)
1132 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_1BYTES, 0)
1134 #ifdef POWERPC_LE_PE
1135 if (strcmp (section->name, ".idata$2") == 0)
1137 section->alignment_power = 0;
1139 else if (strcmp (section->name, ".idata$3") == 0)
1141 section->alignment_power = 0;
1143 else if (strcmp (section->name, ".idata$4") == 0)
1145 section->alignment_power = 2;
1147 else if (strcmp (section->name, ".idata$5") == 0)
1149 section->alignment_power = 2;
1151 else if (strcmp (section->name, ".idata$6") == 0)
1153 section->alignment_power = 1;
1155 else if (strcmp (section->name, ".reloc") == 0)
1157 section->alignment_power = 1;
1159 else if (strncmp (section->name, ".stab", 5) == 0)
1161 section->alignment_power = 2;
1165 #ifdef COFF_IMAGE_WITH_PE
1166 /* In a PE image file, the s_paddr field holds the virtual size of a
1167 section, while the s_size field holds the raw size. */
1168 if (hdr->s_paddr != 0)
1170 if (coff_section_data (abfd, section) == NULL)
1172 section->used_by_bfd =
1173 (PTR) bfd_zalloc (abfd, sizeof (struct coff_section_tdata));
1174 if (section->used_by_bfd == NULL)
1176 /* FIXME: Return error. */
1180 if (pei_section_data (abfd, section) == NULL)
1182 coff_section_data (abfd, section)->tdata =
1183 (PTR) bfd_zalloc (abfd, sizeof (struct pei_section_tdata));
1184 if (coff_section_data (abfd, section)->tdata == NULL)
1186 /* FIXME: Return error. */
1190 pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1196 #undef ELIFALIGN_SET
1198 #else /* ! COFF_WITH_PE */
1201 /* We grossly abuse this function to handle XCOFF overflow headers.
1202 When we see one, we correct the reloc and line number counts in the
1203 real header, and remove the section we just created. */
1205 static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1208 coff_set_alignment_hook (abfd, section, scnhdr)
1213 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1217 if ((hdr->s_flags & STYP_OVRFLO) == 0)
1220 real_sec = coff_section_from_bfd_index (abfd, hdr->s_nreloc);
1221 if (real_sec == NULL)
1224 real_sec->reloc_count = hdr->s_paddr;
1225 real_sec->lineno_count = hdr->s_vaddr;
1227 for (ps = &abfd->sections; *ps != NULL; ps = &(*ps)->next)
1232 --abfd->section_count;
1238 #else /* ! RS6000COFF_C */
1240 #define coff_set_alignment_hook \
1241 ((void (*) PARAMS ((bfd *, asection *, PTR))) bfd_void)
1243 #endif /* ! RS6000COFF_C */
1244 #endif /* ! COFF_WITH_PE */
1245 #endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
1247 #ifndef coff_mkobject
1249 static boolean coff_mkobject PARAMS ((bfd *));
1252 coff_mkobject (abfd)
1255 coff_data_type *coff;
1257 abfd->tdata.coff_obj_data = (struct coff_tdata *) bfd_zalloc (abfd, sizeof (coff_data_type));
1258 if (abfd->tdata.coff_obj_data == 0)
1260 coff = coff_data (abfd);
1261 coff->symbols = (coff_symbol_type *) NULL;
1262 coff->conversion_table = (unsigned int *) NULL;
1263 coff->raw_syments = (struct coff_ptr_struct *) NULL;
1264 coff->relocbase = 0;
1265 coff->local_toc_sym_map = 0;
1267 /* make_abs_section(abfd);*/
1273 /* Create the COFF backend specific information. */
1274 #ifndef coff_mkobject_hook
1276 coff_mkobject_hook (abfd, filehdr, aouthdr)
1281 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1282 coff_data_type *coff;
1284 if (coff_mkobject (abfd) == false)
1287 coff = coff_data (abfd);
1289 coff->sym_filepos = internal_f->f_symptr;
1291 /* These members communicate important constants about the symbol
1292 table to GDB's symbol-reading code. These `constants'
1293 unfortunately vary among coff implementations... */
1294 coff->local_n_btmask = N_BTMASK;
1295 coff->local_n_btshft = N_BTSHFT;
1296 coff->local_n_tmask = N_TMASK;
1297 coff->local_n_tshift = N_TSHIFT;
1298 coff->local_symesz = SYMESZ;
1299 coff->local_auxesz = AUXESZ;
1300 coff->local_linesz = LINESZ;
1302 obj_raw_syment_count (abfd) =
1303 obj_conv_table_size (abfd) =
1304 internal_f->f_nsyms;
1307 if ((internal_f->f_flags & F_SHROBJ) != 0)
1308 abfd->flags |= DYNAMIC;
1309 if (aouthdr != NULL && internal_f->f_opthdr >= AOUTSZ)
1311 struct internal_aouthdr *internal_a =
1312 (struct internal_aouthdr *) aouthdr;
1313 struct xcoff_tdata *xcoff;
1315 xcoff = xcoff_data (abfd);
1316 xcoff->full_aouthdr = true;
1317 xcoff->toc = internal_a->o_toc;
1318 xcoff->sntoc = internal_a->o_sntoc;
1319 xcoff->snentry = internal_a->o_snentry;
1320 xcoff->text_align_power = internal_a->o_algntext;
1321 xcoff->data_align_power = internal_a->o_algndata;
1322 xcoff->modtype = internal_a->o_modtype;
1323 xcoff->cputype = internal_a->o_cputype;
1324 xcoff->maxdata = internal_a->o_maxdata;
1325 xcoff->maxstack = internal_a->o_maxstack;
1329 #if defined ARM && ! defined COFF_WITH_PE
1330 /* Set the flags field from the COFF header read in */
1331 if (! coff_arm_bfd_set_private_flags (abfd, internal_f->f_flags))
1339 /* Determine the machine architecture and type. FIXME: This is target
1340 dependent because the magic numbers are defined in the target
1341 dependent header files. But there is no particular need for this.
1342 If the magic numbers were moved to a separate file, this function
1343 would be target independent and would also be much more successful
1344 at linking together COFF files for different architectures. */
1347 coff_set_arch_mach_hook (abfd, filehdr)
1352 enum bfd_architecture arch;
1353 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1356 switch (internal_f->f_magic)
1360 arch = bfd_arch_powerpc;
1361 machine = 0; /* what does this mean? (krk) */
1367 case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler */
1368 case LYNXCOFFMAGIC: /* shadows the m68k Lynx number below, sigh */
1369 arch = bfd_arch_i386;
1373 #ifdef A29K_MAGIC_BIG
1374 case A29K_MAGIC_BIG:
1375 case A29K_MAGIC_LITTLE:
1376 arch = bfd_arch_a29k;
1382 arch = bfd_arch_arm;
1383 switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
1385 case F_ARM_2: machine = bfd_mach_arm_2; break;
1386 case F_ARM_2a: machine = bfd_mach_arm_2a; break;
1387 case F_ARM_3: machine = bfd_mach_arm_3; break;
1389 case F_ARM_3M: machine = bfd_mach_arm_3M; break;
1390 case F_ARM_4: machine = bfd_mach_arm_4; break;
1391 case F_ARM_4T: machine = bfd_mach_arm_4T; break;
1398 #ifdef MC68KBCSMAGIC
1401 #ifdef APOLLOM68KMAGIC
1402 case APOLLOM68KMAGIC:
1404 #ifdef LYNXCOFFMAGIC
1407 arch = bfd_arch_m68k;
1415 arch = bfd_arch_m88k;
1421 arch = bfd_arch_z8k;
1422 switch (internal_f->f_flags & F_MACHMASK)
1425 machine = bfd_mach_z8001;
1428 machine = bfd_mach_z8002;
1437 arch = bfd_arch_i860;
1444 arch = bfd_arch_i960;
1445 switch (F_I960TYPE & internal_f->f_flags)
1449 machine = bfd_mach_i960_core;
1452 machine = bfd_mach_i960_kb_sb;
1455 machine = bfd_mach_i960_mc;
1458 machine = bfd_mach_i960_xa;
1461 machine = bfd_mach_i960_ca;
1464 machine = bfd_mach_i960_ka_sa;
1467 machine = bfd_mach_i960_jx;
1470 machine = bfd_mach_i960_hx;
1484 if (xcoff_data (abfd)->cputype != -1)
1485 cputype = xcoff_data (abfd)->cputype & 0xff;
1488 /* We did not get a value from the a.out header. If the
1489 file has not been stripped, we may be able to get the
1490 architecture information from the first symbol, if it
1491 is a .file symbol. */
1492 if (obj_raw_syment_count (abfd) == 0)
1496 bfd_byte buf[SYMESZ];
1497 struct internal_syment sym;
1499 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
1500 || bfd_read (buf, 1, SYMESZ, abfd) != SYMESZ)
1502 coff_swap_sym_in (abfd, (PTR) buf, (PTR) &sym);
1503 if (sym.n_sclass == C_FILE)
1504 cputype = sym.n_type & 0xff;
1510 /* FIXME: We don't handle all cases here. */
1516 /* PowerPC Macs use the same magic numbers as RS/6000
1517 (because that's how they were bootstrapped originally),
1518 but they are always PowerPC architecture. */
1519 arch = bfd_arch_powerpc;
1522 arch = bfd_arch_rs6000;
1524 #endif /* POWERMAC */
1528 arch = bfd_arch_powerpc;
1531 case 2: /* 64 bit PowerPC */
1532 arch = bfd_arch_powerpc;
1536 arch = bfd_arch_powerpc;
1540 arch = bfd_arch_rs6000;
1550 arch = bfd_arch_we32k;
1557 arch = bfd_arch_h8300;
1558 machine = bfd_mach_h8300;
1559 /* !! FIXME this probably isn't the right place for this */
1560 abfd->flags |= BFD_IS_RELAXABLE;
1566 arch = bfd_arch_h8300;
1567 machine = bfd_mach_h8300h;
1568 /* !! FIXME this probably isn't the right place for this */
1569 abfd->flags |= BFD_IS_RELAXABLE;
1575 arch = bfd_arch_h8300;
1576 machine = bfd_mach_h8300s;
1577 /* !! FIXME this probably isn't the right place for this */
1578 abfd->flags |= BFD_IS_RELAXABLE;
1582 #ifdef SH_ARCH_MAGIC_BIG
1583 case SH_ARCH_MAGIC_BIG:
1584 case SH_ARCH_MAGIC_LITTLE:
1592 arch = bfd_arch_h8500;
1599 #ifdef LYNXCOFFMAGIC
1602 arch = bfd_arch_sparc;
1607 /* start-sanitize-tic80 */
1608 #ifdef TIC80_ARCH_MAGIC
1609 case TIC80_ARCH_MAGIC:
1610 arch = bfd_arch_tic80;
1613 /* end-sanitize-tic80 */
1615 default: /* Unreadable input file type */
1616 arch = bfd_arch_obscure;
1620 bfd_default_set_arch_mach (abfd, arch, machine);
1624 #ifdef SYMNAME_IN_DEBUG
1626 static boolean symname_in_debug_hook
1627 PARAMS ((bfd *, struct internal_syment *));
1630 symname_in_debug_hook (abfd, sym)
1632 struct internal_syment *sym;
1634 return SYMNAME_IN_DEBUG (sym) ? true : false;
1639 #define symname_in_debug_hook \
1640 (boolean (*) PARAMS ((bfd *, struct internal_syment *))) bfd_false
1646 /* Handle the csect auxent of a C_EXT or C_HIDEXT symbol. */
1648 static boolean coff_pointerize_aux_hook
1649 PARAMS ((bfd *, combined_entry_type *, combined_entry_type *,
1650 unsigned int, combined_entry_type *));
1654 coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux)
1656 combined_entry_type *table_base;
1657 combined_entry_type *symbol;
1658 unsigned int indaux;
1659 combined_entry_type *aux;
1661 int class = symbol->u.syment.n_sclass;
1663 if ((class == C_EXT || class == C_HIDEXT)
1664 && indaux + 1 == symbol->u.syment.n_numaux)
1666 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD)
1668 aux->u.auxent.x_csect.x_scnlen.p =
1669 table_base + aux->u.auxent.x_csect.x_scnlen.l;
1670 aux->fix_scnlen = 1;
1673 /* Return true to indicate that the caller should not do any
1674 further work on this auxent. */
1678 /* Return false to indicate that this auxent should be handled by
1686 /* We don't want to pointerize bal entries. */
1688 static boolean coff_pointerize_aux_hook
1689 PARAMS ((bfd *, combined_entry_type *, combined_entry_type *,
1690 unsigned int, combined_entry_type *));
1694 coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux)
1696 combined_entry_type *table_base;
1697 combined_entry_type *symbol;
1698 unsigned int indaux;
1699 combined_entry_type *aux;
1701 /* Return true if we don't want to pointerize this aux entry, which
1702 is the case for the lastfirst aux entry for a C_LEAFPROC symbol. */
1704 && (symbol->u.syment.n_sclass == C_LEAFPROC
1705 || symbol->u.syment.n_sclass == C_LEAFSTAT
1706 || symbol->u.syment.n_sclass == C_LEAFEXT));
1711 #define coff_pointerize_aux_hook 0
1714 #endif /* ! RS6000COFF_C */
1716 /* Print an aux entry. This returns true if it has printed it. */
1718 static boolean coff_print_aux
1719 PARAMS ((bfd *, FILE *, combined_entry_type *, combined_entry_type *,
1720 combined_entry_type *, unsigned int));
1723 coff_print_aux (abfd, file, table_base, symbol, aux, indaux)
1726 combined_entry_type *table_base;
1727 combined_entry_type *symbol;
1728 combined_entry_type *aux;
1729 unsigned int indaux;
1732 if ((symbol->u.syment.n_sclass == C_EXT
1733 || symbol->u.syment.n_sclass == C_HIDEXT)
1734 && indaux + 1 == symbol->u.syment.n_numaux)
1736 /* This is a csect entry. */
1737 fprintf (file, "AUX ");
1738 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
1740 BFD_ASSERT (! aux->fix_scnlen);
1741 fprintf (file, "val %5ld", aux->u.auxent.x_csect.x_scnlen.l);
1745 fprintf (file, "indx ");
1746 if (! aux->fix_scnlen)
1747 fprintf (file, "%4ld", aux->u.auxent.x_csect.x_scnlen.l);
1749 fprintf (file, "%4ld",
1750 (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
1753 " prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u",
1754 aux->u.auxent.x_csect.x_parmhash,
1755 (unsigned int) aux->u.auxent.x_csect.x_snhash,
1756 SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
1757 SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
1758 (unsigned int) aux->u.auxent.x_csect.x_smclas,
1759 aux->u.auxent.x_csect.x_stab,
1760 (unsigned int) aux->u.auxent.x_csect.x_snstab);
1765 /* Return false to indicate that no special action was taken. */
1773 To write relocations, the back end steps though the
1774 canonical relocation table and create an
1775 @code{internal_reloc}. The symbol index to use is removed from
1776 the @code{offset} field in the symbol table supplied. The
1777 address comes directly from the sum of the section base
1778 address and the relocation offset; the type is dug directly
1779 from the howto field. Then the @code{internal_reloc} is
1780 swapped into the shape of an @code{external_reloc} and written
1787 static int compare_arelent_ptr PARAMS ((const PTR, const PTR));
1789 /* AUX's ld wants relocations to be sorted */
1791 compare_arelent_ptr (x, y)
1795 const arelent **a = (const arelent **) x;
1796 const arelent **b = (const arelent **) y;
1797 bfd_size_type aadr = (*a)->address;
1798 bfd_size_type badr = (*b)->address;
1800 return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
1803 #endif /* TARG_AUX */
1806 coff_write_relocs (abfd, first_undef)
1812 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
1815 struct external_reloc dst;
1821 /* sort relocations before we write them out */
1822 p = (arelent **) bfd_malloc (s->reloc_count * sizeof (arelent *));
1823 if (p == NULL && s->reloc_count > 0)
1825 memcpy (p, s->orelocation, s->reloc_count * sizeof (arelent *));
1826 qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
1829 if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
1831 for (i = 0; i < s->reloc_count; i++)
1833 struct internal_reloc n;
1835 memset ((PTR) & n, 0, sizeof (n));
1837 /* Now we've renumbered the symbols we know where the
1838 undefined symbols live in the table. Check the reloc
1839 entries for symbols who's output bfd isn't the right one.
1840 This is because the symbol was undefined (which means
1841 that all the pointers are never made to point to the same
1842 place). This is a bad thing,'cause the symbols attached
1843 to the output bfd are indexed, so that the relocation
1844 entries know which symbol index they point to. So we
1845 have to look up the output symbol here. */
1847 if (q->sym_ptr_ptr[0]->the_bfd != abfd)
1850 const char *sname = q->sym_ptr_ptr[0]->name;
1851 asymbol **outsyms = abfd->outsymbols;
1852 for (i = first_undef; outsyms[i]; i++)
1854 const char *intable = outsyms[i]->name;
1855 if (strcmp (intable, sname) == 0) {
1856 /* got a hit, so repoint the reloc */
1857 q->sym_ptr_ptr = outsyms + i;
1863 n.r_vaddr = q->address + s->vma;
1866 /* The 29k const/consth reloc pair is a real kludge. The consth
1867 part doesn't have a symbol; it has an offset. So rebuilt
1869 if (q->howto->type == R_IHCONST)
1870 n.r_symndx = q->addend;
1875 if (q->sym_ptr_ptr == bfd_abs_section_ptr->symbol_ptr_ptr)
1876 /* This is a relocation relative to the absolute symbol. */
1880 n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
1881 /* Take notice if the symbol reloc points to a symbol
1882 we don't have in our symbol table. What should we
1884 if (n.r_symndx > obj_conv_table_size (abfd))
1889 #ifdef SWAP_OUT_RELOC_OFFSET
1890 n.r_offset = q->addend;
1894 /* Work out reloc type from what is required */
1895 SELECT_RELOC (n, q->howto);
1897 n.r_type = q->howto->type;
1899 coff_swap_reloc_out (abfd, &n, &dst);
1900 if (bfd_write ((PTR) & dst, 1, RELSZ, abfd) != RELSZ)
1913 /* Set flags and magic number of a coff file from architecture and machine
1914 type. Result is true if we can represent the arch&type, false if not. */
1917 coff_set_flags (abfd, magicp, flagsp)
1919 unsigned int *magicp;
1920 unsigned short *flagsp;
1922 switch (bfd_get_arch (abfd))
1927 switch (bfd_get_mach (abfd))
1929 case bfd_mach_z8001:
1932 case bfd_mach_z8002:
1946 *magicp = I960ROMAGIC;
1948 ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC :
1949 I960RWMAGIC); FIXME???
1951 switch (bfd_get_mach (abfd))
1953 case bfd_mach_i960_core:
1956 case bfd_mach_i960_kb_sb:
1959 case bfd_mach_i960_mc:
1962 case bfd_mach_i960_xa:
1965 case bfd_mach_i960_ca:
1968 case bfd_mach_i960_ka_sa:
1971 case bfd_mach_i960_jx:
1974 case bfd_mach_i960_hx:
1985 /* start-sanitize-tic80 */
1986 #ifdef TIC80_ARCH_MAGIC
1987 case bfd_arch_tic80:
1988 *magicp = TIC80_ARCH_MAGIC;
1991 /* end-sanitize-tic80 */
1994 * magicp = ARMMAGIC;
1996 if (APCS_SET (abfd))
1998 if (APCS_26_FLAG (abfd))
1999 * flagsp |= F_APCS26;
2001 if (APCS_FLOAT_FLAG (abfd))
2002 * flagsp |= F_APCS_FLOAT;
2004 if (PIC_FLAG (abfd))
2007 if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
2008 * flagsp |= F_INTERWORK;
2009 switch (bfd_get_mach (abfd))
2011 case bfd_mach_arm_2: * flagsp |= F_ARM_2; break;
2012 case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
2013 case bfd_mach_arm_3: * flagsp |= F_ARM_3; break;
2014 case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
2015 case bfd_mach_arm_4: * flagsp |= F_ARM_4; break;
2016 case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
2021 case bfd_arch_powerpc:
2028 *magicp = I386MAGIC;
2030 /* Just overwrite the usual value if we're doing Lynx. */
2031 *magicp = LYNXCOFFMAGIC;
2038 *magicp = I860MAGIC;
2044 #ifdef APOLLOM68KMAGIC
2045 *magicp = APOLLO_COFF_VERSION_NUMBER;
2047 /* NAMES_HAVE_UNDERSCORE may be defined by coff-u68k.c. */
2048 #ifdef NAMES_HAVE_UNDERSCORE
2049 *magicp = MC68KBCSMAGIC;
2051 *magicp = MC68MAGIC;
2055 /* Just overwrite the usual value if we're doing Lynx. */
2056 *magicp = LYNXCOFFMAGIC;
2064 *magicp = MC88OMAGIC;
2069 case bfd_arch_h8300:
2070 switch (bfd_get_mach (abfd))
2072 case bfd_mach_h8300:
2073 *magicp = H8300MAGIC;
2075 case bfd_mach_h8300h:
2076 *magicp = H8300HMAGIC;
2078 case bfd_mach_h8300s:
2079 *magicp = H8300SMAGIC;
2085 #ifdef SH_ARCH_MAGIC_BIG
2087 if (bfd_big_endian (abfd))
2088 *magicp = SH_ARCH_MAGIC_BIG;
2090 *magicp = SH_ARCH_MAGIC_LITTLE;
2096 case bfd_arch_sparc:
2097 *magicp = SPARCMAGIC;
2099 /* Just overwrite the usual value if we're doing Lynx. */
2100 *magicp = LYNXCOFFMAGIC;
2107 case bfd_arch_h8500:
2108 *magicp = H8500MAGIC;
2112 #ifdef A29K_MAGIC_BIG
2114 if (bfd_big_endian (abfd))
2115 *magicp = A29K_MAGIC_BIG;
2117 *magicp = A29K_MAGIC_LITTLE;
2123 case bfd_arch_we32k:
2124 *magicp = WE32KMAGIC;
2130 case bfd_arch_rs6000:
2132 case bfd_arch_powerpc:
2134 *magicp = U802TOCMAGIC;
2139 default: /* Unknown architecture */
2140 /* return false; -- fall through to "return false" below, to avoid
2141 "statement never reached" errors on the one below. */
2150 coff_set_arch_mach (abfd, arch, machine)
2152 enum bfd_architecture arch;
2153 unsigned long machine;
2156 unsigned short dummy2;
2158 if (! bfd_default_set_arch_mach (abfd, arch, machine))
2161 if (arch != bfd_arch_unknown &&
2162 coff_set_flags (abfd, &dummy1, &dummy2) != true)
2163 return false; /* We can't represent this type */
2165 return true; /* We're easy ... */
2169 /* Calculate the file position for each section. */
2172 coff_compute_section_file_positions (abfd)
2176 asection *previous = (asection *) NULL;
2177 file_ptr sofar = FILHSZ;
2178 boolean align_adjust;
2186 /* On XCOFF, if we have symbols, set up the .debug section. */
2187 if (bfd_get_symcount (abfd) > 0)
2190 bfd_size_type i, symcount;
2194 symcount = bfd_get_symcount (abfd);
2195 for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
2197 coff_symbol_type *cf;
2199 cf = coff_symbol_from (abfd, *symp);
2201 && cf->native != NULL
2202 && SYMNAME_IN_DEBUG (&cf->native->u.syment))
2206 len = strlen (bfd_asymbol_name (*symp));
2215 dsec = bfd_make_section_old_way (abfd, ".debug");
2218 dsec->_raw_size = sz;
2219 dsec->flags |= SEC_HAS_CONTENTS;
2224 #ifdef COFF_IMAGE_WITH_PE
2226 if (coff_data (abfd)->link_info)
2228 page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
2231 page_size = PE_DEF_FILE_ALIGNMENT;
2233 #ifdef COFF_PAGE_SIZE
2234 int page_size = COFF_PAGE_SIZE;
2238 if (bfd_get_start_address (abfd))
2240 /* A start address may have been added to the original file. In this
2241 case it will need an optional header to record it. */
2242 abfd->flags |= EXEC_P;
2245 if (abfd->flags & EXEC_P)
2248 else if (xcoff_data (abfd)->full_aouthdr)
2251 sofar += SMALL_AOUTSZ;
2254 sofar += abfd->section_count * SCNHSZ;
2257 /* XCOFF handles overflows in the reloc and line number count fields
2258 by allocating a new section header to hold the correct counts. */
2259 for (current = abfd->sections; current != NULL; current = current->next)
2260 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
2264 align_adjust = false;
2265 for (current = abfd->sections, count = 1;
2266 current != (asection *) NULL;
2267 current = current->next, ++count)
2269 current->target_index = count;
2271 /* Only deal with sections which have contents */
2272 if (!(current->flags & SEC_HAS_CONTENTS))
2275 /* Align the sections in the file to the same boundary on
2276 which they are aligned in virtual memory. I960 doesn't
2277 do this (FIXME) so we can stay in sync with Intel. 960
2278 doesn't yet page from files... */
2280 if ((abfd->flags & EXEC_P) != 0)
2282 /* make sure this section is aligned on the right boundary - by
2283 padding the previous section up if necessary */
2286 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
2287 if (previous != (asection *) NULL)
2289 previous->_raw_size += sofar - old_sofar;
2295 /* In demand paged files the low order bits of the file offset
2296 must match the low order bits of the virtual address. */
2297 #ifdef COFF_PAGE_SIZE
2298 if ((abfd->flags & D_PAGED) != 0
2299 && (current->flags & SEC_ALLOC) != 0)
2300 sofar += (current->vma - sofar) % page_size;
2302 current->filepos = sofar;
2304 #ifdef COFF_IMAGE_WITH_PE
2305 /* With PE we have to pad each section to be a multiple of its
2306 page size too, and remember both sizes. */
2308 if (coff_section_data (abfd, current) == NULL)
2310 current->used_by_bfd =
2311 (PTR) bfd_zalloc (abfd, sizeof (struct coff_section_tdata));
2312 if (current->used_by_bfd == NULL)
2315 if (pei_section_data (abfd, current) == NULL)
2317 coff_section_data (abfd, current)->tdata =
2318 (PTR) bfd_zalloc (abfd, sizeof (struct pei_section_tdata));
2319 if (coff_section_data (abfd, current)->tdata == NULL)
2322 if (pei_section_data (abfd, current)->virt_size == 0)
2323 pei_section_data (abfd, current)->virt_size = current->_raw_size;
2325 current->_raw_size = (current->_raw_size + page_size -1) & -page_size;
2328 sofar += current->_raw_size;
2331 /* make sure that this section is of the right size too */
2332 if ((abfd->flags & EXEC_P) == 0)
2334 bfd_size_type old_size;
2336 old_size = current->_raw_size;
2337 current->_raw_size = BFD_ALIGN (current->_raw_size,
2338 1 << current->alignment_power);
2339 align_adjust = current->_raw_size != old_size;
2340 sofar += current->_raw_size - old_size;
2345 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
2346 align_adjust = sofar != old_sofar;
2347 current->_raw_size += sofar - old_sofar;
2351 #ifdef COFF_IMAGE_WITH_PE
2352 /* For PE we need to make sure we pad out to the aligned
2353 _raw_size, in case the caller only writes out data to the
2354 unaligned _raw_size. */
2355 if (pei_section_data (abfd, current)->virt_size < current->_raw_size)
2356 align_adjust = true;
2360 /* Force .lib sections to start at zero. The vma is then
2361 incremented in coff_set_section_contents. This is right for
2363 if (strcmp (current->name, _LIB) == 0)
2364 bfd_set_section_vma (abfd, current, 0);
2370 /* It is now safe to write to the output file. If we needed an
2371 alignment adjustment for the last section, then make sure that
2372 there is a byte at offset sofar. If there are no symbols and no
2373 relocs, then nothing follows the last section. If we don't force
2374 the last byte out, then the file may appear to be truncated. */
2380 if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
2381 || bfd_write (&b, 1, 1, abfd) != 1)
2385 /* Make sure the relocations are aligned. We don't need to make
2386 sure that this byte exists, because it will only matter if there
2387 really are relocs. */
2388 sofar = BFD_ALIGN (sofar, 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
2390 obj_relocbase (abfd) = sofar;
2391 abfd->output_has_begun = true;
2398 /* This can never work, because it is called too late--after the
2399 section positions have been set. I can't figure out what it is
2400 for, so I am going to disable it--Ian Taylor 20 March 1996. */
2402 /* If .file, .text, .data, .bss symbols are missing, add them. */
2403 /* @@ Should we only be adding missing symbols, or overriding the aux
2404 values for existing section symbols? */
2406 coff_add_missing_symbols (abfd)
2409 unsigned int nsyms = bfd_get_symcount (abfd);
2410 asymbol **sympp = abfd->outsymbols;
2413 int need_text = 1, need_data = 1, need_bss = 1, need_file = 1;
2415 for (i = 0; i < nsyms; i++)
2417 coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]);
2421 /* only do this if there is a coff representation of the input
2423 if (csym->native && csym->native->u.syment.n_sclass == C_FILE)
2428 name = csym->symbol.name;
2431 if (!strcmp (name, _TEXT))
2434 else if (!strcmp (name, ".wtext"))
2437 else if (!strcmp (name, _DATA))
2439 else if (!strcmp (name, _BSS))
2443 /* Now i == bfd_get_symcount (abfd). */
2444 /* @@ For now, don't deal with .file symbol. */
2447 if (!need_text && !need_data && !need_bss && !need_file)
2449 nsyms += need_text + need_data + need_bss + need_file;
2450 sympp2 = (asymbol **) bfd_alloc (abfd, nsyms * sizeof (asymbol *));
2453 memcpy (sympp2, sympp, i * sizeof (asymbol *));
2456 /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */
2460 sympp2[i++] = coff_section_symbol (abfd, _TEXT);
2462 sympp2[i++] = coff_section_symbol (abfd, _DATA);
2464 sympp2[i++] = coff_section_symbol (abfd, _BSS);
2465 BFD_ASSERT (i == nsyms);
2466 bfd_set_symtab (abfd, sympp2, nsyms);
2475 coff_write_object_contents (abfd)
2479 boolean hasrelocs = false;
2480 boolean haslinno = false;
2482 file_ptr reloc_base;
2483 file_ptr lineno_base;
2485 unsigned long reloc_size = 0;
2486 unsigned long lnno_size = 0;
2487 boolean long_section_names;
2488 asection *text_sec = NULL;
2489 asection *data_sec = NULL;
2490 asection *bss_sec = NULL;
2491 struct internal_filehdr internal_f;
2492 struct internal_aouthdr internal_a;
2493 #ifdef COFF_LONG_SECTION_NAMES
2494 size_t string_size = STRING_SIZE_SIZE;
2497 bfd_set_error (bfd_error_system_call);
2499 /* Make a pass through the symbol table to count line number entries and
2500 put them into the correct asections */
2502 lnno_size = coff_count_linenumbers (abfd) * LINESZ;
2504 if (abfd->output_has_begun == false)
2506 if (! coff_compute_section_file_positions (abfd))
2510 reloc_base = obj_relocbase (abfd);
2512 /* Work out the size of the reloc and linno areas */
2514 for (current = abfd->sections; current != NULL; current =
2516 reloc_size += current->reloc_count * RELSZ;
2518 lineno_base = reloc_base + reloc_size;
2519 sym_base = lineno_base + lnno_size;
2521 /* Indicate in each section->line_filepos its actual file address */
2522 for (current = abfd->sections; current != NULL; current =
2525 if (current->lineno_count)
2527 current->line_filepos = lineno_base;
2528 current->moving_line_filepos = lineno_base;
2529 lineno_base += current->lineno_count * LINESZ;
2533 current->line_filepos = 0;
2535 if (current->reloc_count)
2537 current->rel_filepos = reloc_base;
2538 reloc_base += current->reloc_count * RELSZ;
2542 current->rel_filepos = 0;
2546 /* Write section headers to the file. */
2547 internal_f.f_nscns = 0;
2549 if ((abfd->flags & EXEC_P) != 0)
2550 scn_base = FILHSZ + AOUTSZ;
2555 if (xcoff_data (abfd)->full_aouthdr)
2558 scn_base += SMALL_AOUTSZ;
2562 if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
2565 long_section_names = false;
2566 for (current = abfd->sections;
2568 current = current->next)
2570 struct internal_scnhdr section;
2573 /* If we've got a .reloc section, remember. */
2575 #ifdef COFF_IMAGE_WITH_PE
2576 if (strcmp (current->name, ".reloc") == 0)
2578 pe_data (abfd)->has_reloc_section = 1;
2583 internal_f.f_nscns++;
2585 strncpy (section.s_name, current->name, SCNNMLEN);
2587 #ifdef COFF_LONG_SECTION_NAMES
2588 /* Handle long section names as in PE. This must be compatible
2589 with the code in coff_write_symbols. */
2593 len = strlen (current->name);
2596 memset (section.s_name, 0, SCNNMLEN);
2597 sprintf (section.s_name, "/%lu", (unsigned long) string_size);
2598 string_size += len + 1;
2599 long_section_names = true;
2605 /* Always set s_vaddr of .lib to 0. This is right for SVR3.2
2606 Ian Taylor <ian@cygnus.com>. */
2607 if (strcmp (current->name, _LIB) == 0)
2608 section.s_vaddr = 0;
2611 section.s_vaddr = current->vma;
2612 section.s_paddr = current->lma;
2613 section.s_size = current->_raw_size;
2616 section.s_paddr = 0;
2618 #ifdef COFF_IMAGE_WITH_PE
2619 /* Reminder: s_paddr holds the virtual size of the section. */
2620 if (coff_section_data (abfd, current) != NULL
2621 && pei_section_data (abfd, current) != NULL)
2622 section.s_paddr = pei_section_data (abfd, current)->virt_size;
2624 section.s_paddr = 0;
2628 If this section has no size or is unloadable then the scnptr
2631 if (current->_raw_size == 0 ||
2632 (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
2634 section.s_scnptr = 0;
2638 section.s_scnptr = current->filepos;
2640 section.s_relptr = current->rel_filepos;
2641 section.s_lnnoptr = current->line_filepos;
2642 section.s_nreloc = current->reloc_count;
2643 section.s_nlnno = current->lineno_count;
2644 if (current->reloc_count != 0)
2646 if (current->lineno_count != 0)
2650 /* Indicate the use of an XCOFF overflow section header. */
2651 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
2653 section.s_nreloc = 0xffff;
2654 section.s_nlnno = 0xffff;
2658 section.s_flags = sec_to_styp_flags (current->name, current->flags);
2660 if (!strcmp (current->name, _TEXT))
2664 else if (!strcmp (current->name, _DATA))
2668 else if (!strcmp (current->name, _BSS))
2674 section.s_align = (current->alignment_power
2675 ? 1 << current->alignment_power
2677 /* start-sanitize-tic80 */
2680 section.s_flags |= (current->alignment_power & 0xF) << 8;
2682 /* end-sanitize-tic80 */
2685 #ifdef COFF_IMAGE_WITH_PE
2686 /* suppress output of the sections if they are null. ld includes
2687 the bss and data sections even if there is no size assigned
2688 to them. NT loader doesn't like it if these section headers are
2689 included if the sections themselves are not needed */
2690 if (section.s_size == 0)
2691 internal_f.f_nscns--;
2696 if (coff_swap_scnhdr_out (abfd, §ion, &buff) == 0
2697 || bfd_write ((PTR) (&buff), 1, SCNHSZ, abfd) != SCNHSZ)
2702 /* PE stores COMDAT section information in the symbol table. If
2703 this section is supposed to have some COMDAT info, track down
2704 the symbol in the symbol table and modify it. */
2705 if ((current->flags & SEC_LINK_ONCE) != 0)
2707 unsigned int i, count;
2709 coff_symbol_type *csym;
2711 count = bfd_get_symcount (abfd);
2712 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
2714 /* Here *PSYM is the section symbol for CURRENT. */
2716 if (strcmp ((*psym)->name, current->name) == 0)
2718 csym = coff_symbol_from (abfd, *psym);
2720 || csym->native == NULL
2721 || csym->native->u.syment.n_numaux < 1
2722 || csym->native->u.syment.n_sclass != C_STAT
2723 || csym->native->u.syment.n_type != T_NULL)
2730 Note that we might not if we're converting the file from
2731 some other object file format. */
2734 combined_entry_type *aux;
2736 /* We don't touch the x_checksum field. The
2737 x_associated field is not currently supported. */
2739 aux = csym->native + 1;
2740 switch (current->flags & SEC_LINK_DUPLICATES)
2742 case SEC_LINK_DUPLICATES_DISCARD:
2743 aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
2746 case SEC_LINK_DUPLICATES_ONE_ONLY:
2747 aux->u.auxent.x_scn.x_comdat =
2748 IMAGE_COMDAT_SELECT_NODUPLICATES;
2751 case SEC_LINK_DUPLICATES_SAME_SIZE:
2752 aux->u.auxent.x_scn.x_comdat =
2753 IMAGE_COMDAT_SELECT_SAME_SIZE;
2756 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
2757 aux->u.auxent.x_scn.x_comdat =
2758 IMAGE_COMDAT_SELECT_EXACT_MATCH;
2763 #endif /* COFF_WITH_PE */
2767 /* XCOFF handles overflows in the reloc and line number count fields
2768 by creating a new section header to hold the correct values. */
2769 for (current = abfd->sections; current != NULL; current = current->next)
2771 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
2773 struct internal_scnhdr scnhdr;
2776 internal_f.f_nscns++;
2777 strncpy (&(scnhdr.s_name[0]), current->name, 8);
2778 scnhdr.s_paddr = current->reloc_count;
2779 scnhdr.s_vaddr = current->lineno_count;
2781 scnhdr.s_scnptr = 0;
2782 scnhdr.s_relptr = current->rel_filepos;
2783 scnhdr.s_lnnoptr = current->line_filepos;
2784 scnhdr.s_nreloc = current->target_index;
2785 scnhdr.s_nlnno = current->target_index;
2786 scnhdr.s_flags = STYP_OVRFLO;
2787 if (coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
2788 || bfd_write ((PTR) &buff, 1, SCNHSZ, abfd) != SCNHSZ)
2794 /* OK, now set up the filehdr... */
2796 /* Don't include the internal abs section in the section count */
2799 We will NOT put a fucking timestamp in the header here. Every time you
2800 put it back, I will come in and take it out again. I'm sorry. This
2801 field does not belong here. We fill it with a 0 so it compares the
2802 same but is not a reasonable time. -- gnu@cygnus.com
2804 internal_f.f_timdat = 0;
2806 internal_f.f_flags = 0;
2808 if (abfd->flags & EXEC_P)
2809 internal_f.f_opthdr = AOUTSZ;
2812 internal_f.f_opthdr = 0;
2814 if (xcoff_data (abfd)->full_aouthdr)
2815 internal_f.f_opthdr = AOUTSZ;
2817 internal_f.f_opthdr = SMALL_AOUTSZ;
2822 internal_f.f_flags |= F_RELFLG;
2824 internal_f.f_flags |= F_LNNO;
2825 if (abfd->flags & EXEC_P)
2826 internal_f.f_flags |= F_EXEC;
2828 /* FIXME: this is wrong for PPC_PE! */
2829 if (bfd_little_endian (abfd))
2830 internal_f.f_flags |= F_AR32WR;
2832 internal_f.f_flags |= F_AR32W;
2834 /* start-sanitize-tic80 */
2835 #ifdef TIC80_TARGET_ID
2836 internal_f.f_target_id = TIC80_TARGET_ID;
2838 /* end-sanitize-tic80 */
2841 FIXME, should do something about the other byte orders and
2846 if ((abfd->flags & DYNAMIC) != 0)
2847 internal_f.f_flags |= F_SHROBJ;
2848 if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
2849 internal_f.f_flags |= F_DYNLOAD;
2852 memset (&internal_a, 0, sizeof internal_a);
2854 /* Set up architecture-dependent stuff */
2857 unsigned int magic = 0;
2858 unsigned short flags = 0;
2859 coff_set_flags (abfd, &magic, &flags);
2860 internal_f.f_magic = magic;
2861 internal_f.f_flags |= flags;
2862 /* ...and the "opt"hdr... */
2865 #ifdef ULTRA3 /* NYU's machine */
2866 /* FIXME: This is a bogus check. I really want to see if there
2867 * is a .shbss or a .shdata section, if so then set the magic
2868 * number to indicate a shared data executable.
2870 if (internal_f.f_nscns >= 7)
2871 internal_a.magic = SHMAGIC; /* Shared magic */
2874 internal_a.magic = NMAGIC; /* Assume separate i/d */
2875 #define __A_MAGIC_SET__
2877 /* start-sanitize-tic80 */
2879 internal_a.magic = TIC80_ARCH_MAGIC;
2880 #define __A_MAGIC_SET__
2882 /* end-sanitize-tic80 */
2884 /* FIXME: What are the a.out magic numbers for the i860? */
2885 internal_a.magic = 0;
2886 #define __A_MAGIC_SET__
2889 internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC);
2890 #define __A_MAGIC_SET__
2893 #define __A_MAGIC_SET__
2894 internal_a.magic = PAGEMAGICBCS;
2898 #define __A_MAGIC_SET__
2899 internal_a.magic = APOLLO_COFF_VERSION_NUMBER;
2902 #if defined(M68) || defined(WE32K) || defined(M68K)
2903 #define __A_MAGIC_SET__
2905 internal_a.magic = LYNXCOFFMAGIC;
2907 #if defined(TARG_AUX)
2908 internal_a.magic = (abfd->flags & D_PAGED ? PAGEMAGICPEXECPAGED :
2909 abfd->flags & WP_TEXT ? PAGEMAGICPEXECSWAPPED :
2910 PAGEMAGICEXECSWAPPED);
2912 #if defined (PAGEMAGICPEXECPAGED)
2913 internal_a.magic = PAGEMAGICPEXECPAGED;
2915 #endif /* TARG_AUX */
2917 #endif /* M68 || WE32K || M68K */
2920 #define __A_MAGIC_SET__
2921 internal_a.magic = ZMAGIC;
2925 #define __A_MAGIC_SET__
2926 internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
2930 #define __A_MAGIC_SET__
2932 internal_a.magic = LYNXCOFFMAGIC;
2934 internal_a.magic = ZMAGIC;
2939 #define __A_MAGIC_SET__
2941 internal_a.magic = LYNXCOFFMAGIC;
2946 #define __A_MAGIC_SET__
2947 internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
2948 (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
2949 RS6K_AOUTHDR_OMAGIC;
2952 #ifndef __A_MAGIC_SET__
2953 #include "Your aouthdr magic number is not being set!"
2955 #undef __A_MAGIC_SET__
2959 /* FIXME: Does anybody ever set this to another value? */
2960 internal_a.vstamp = 0;
2962 /* Now should write relocs, strings, syms */
2963 obj_sym_filepos (abfd) = sym_base;
2965 if (bfd_get_symcount (abfd) != 0)
2969 if (!coff_add_missing_symbols (abfd))
2972 if (!coff_renumber_symbols (abfd, &firstundef))
2974 coff_mangle_symbols (abfd);
2975 if (! coff_write_symbols (abfd))
2977 if (! coff_write_linenumbers (abfd))
2979 if (! coff_write_relocs (abfd, firstundef))
2982 #ifdef COFF_IMAGE_WITH_PE
2984 else if ((abfd->flags & EXEC_P) != 0)
2988 /* PowerPC PE appears to require that all executable files be
2989 rounded up to the page size. */
2992 BFD_ALIGN (sym_base, COFF_PAGE_SIZE) - 1,
2994 || bfd_write (&b, 1, 1, abfd) != 1)
3000 /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
3001 backend linker, and obj_raw_syment_count is not valid until after
3002 coff_write_symbols is called. */
3003 if (obj_raw_syment_count (abfd) != 0)
3005 internal_f.f_symptr = sym_base;
3007 /* AIX appears to require that F_RELFLG not be set if there are
3008 local symbols but no relocations. */
3009 internal_f.f_flags &=~ F_RELFLG;
3014 if (long_section_names)
3015 internal_f.f_symptr = sym_base;
3017 internal_f.f_symptr = 0;
3018 internal_f.f_flags |= F_LSYMS;
3023 internal_a.tsize = bfd_get_section_size_before_reloc (text_sec);
3024 internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
3028 internal_a.dsize = bfd_get_section_size_before_reloc (data_sec);
3029 internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
3033 internal_a.bsize = bfd_get_section_size_before_reloc (bss_sec);
3034 if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
3035 internal_a.data_start = bss_sec->vma;
3038 internal_a.entry = bfd_get_start_address (abfd);
3039 internal_f.f_nsyms = obj_raw_syment_count (abfd);
3042 if (xcoff_data (abfd)->full_aouthdr)
3045 asection *loader_sec;
3047 internal_a.vstamp = 1;
3049 internal_a.o_snentry = xcoff_data (abfd)->snentry;
3050 if (internal_a.o_snentry == 0)
3051 internal_a.entry = (bfd_vma) -1;
3053 if (text_sec != NULL)
3055 internal_a.o_sntext = text_sec->target_index;
3056 internal_a.o_algntext = bfd_get_section_alignment (abfd, text_sec);
3060 internal_a.o_sntext = 0;
3061 internal_a.o_algntext = 0;
3063 if (data_sec != NULL)
3065 internal_a.o_sndata = data_sec->target_index;
3066 internal_a.o_algndata = bfd_get_section_alignment (abfd, data_sec);
3070 internal_a.o_sndata = 0;
3071 internal_a.o_algndata = 0;
3073 loader_sec = bfd_get_section_by_name (abfd, ".loader");
3074 if (loader_sec != NULL)
3075 internal_a.o_snloader = loader_sec->target_index;
3077 internal_a.o_snloader = 0;
3078 if (bss_sec != NULL)
3079 internal_a.o_snbss = bss_sec->target_index;
3081 internal_a.o_snbss = 0;
3083 toc = xcoff_data (abfd)->toc;
3084 internal_a.o_toc = toc;
3085 internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
3087 internal_a.o_modtype = xcoff_data (abfd)->modtype;
3088 if (xcoff_data (abfd)->cputype != -1)
3089 internal_a.o_cputype = xcoff_data (abfd)->cputype;
3092 switch (bfd_get_arch (abfd))
3094 case bfd_arch_rs6000:
3095 internal_a.o_cputype = 4;
3097 case bfd_arch_powerpc:
3098 if (bfd_get_mach (abfd) == 0)
3099 internal_a.o_cputype = 3;
3101 internal_a.o_cputype = 1;
3107 internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
3108 internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
3112 /* now write them */
3113 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
3117 coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) buff);
3118 if (bfd_write ((PTR) buff, 1, FILHSZ, abfd) != FILHSZ)
3121 if (abfd->flags & EXEC_P)
3123 /* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
3124 include/coff/pe.h sets AOUTSZ == sizeof(PEAOUTHDR)) */
3126 coff_swap_aouthdr_out (abfd, (PTR) & internal_a, (PTR) buff);
3127 if (bfd_write ((PTR) buff, 1, AOUTSZ, abfd) != AOUTSZ)
3136 /* XCOFF seems to always write at least a small a.out header. */
3137 coff_swap_aouthdr_out (abfd, (PTR) &internal_a, (PTR) &buff);
3138 if (xcoff_data (abfd)->full_aouthdr)
3141 size = SMALL_AOUTSZ;
3142 if (bfd_write ((PTR) &buff, 1, size, abfd) != size)
3151 coff_set_section_contents (abfd, section, location, offset, count)
3156 bfd_size_type count;
3158 if (abfd->output_has_begun == false) /* set by bfd.c handler */
3160 if (! coff_compute_section_file_positions (abfd))
3164 #if defined(_LIB) && !defined(TARG_AUX)
3166 /* The physical address field of a .lib section is used to hold the
3167 number of shared libraries in the section. This code counts the
3168 number of sections being written, and increments the lma field
3171 I have found no documentation on the contents of this section.
3172 Experimentation indicates that the section contains zero or more
3173 records, each of which has the following structure:
3175 - a (four byte) word holding the length of this record, in words,
3176 - a word that always seems to be set to "2",
3177 - the path to a shared library, null-terminated and then padded
3178 to a whole word boundary.
3180 bfd_assert calls have been added to alert if an attempt is made
3181 to write a section which doesn't follow these assumptions. The
3182 code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
3183 <robertl@arnet.com> (Thanks!).
3185 Gvran Uddeborg <gvran@uddeborg.pp.se> */
3187 if (strcmp (section->name, _LIB) == 0)
3189 bfd_byte *rec, *recend;
3191 rec = (bfd_byte *) location;
3192 recend = rec + count;
3193 while (rec < recend)
3196 rec += bfd_get_32 (abfd, rec) * 4;
3199 BFD_ASSERT (rec == recend);
3204 /* Don't write out bss sections - one way to do this is to
3205 see if the filepos has not been set. */
3206 if (section->filepos == 0)
3209 if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0)
3214 return (bfd_write (location, 1, count, abfd) == count) ? true : false;
3220 coff_close_and_cleanup (abfd)
3223 if (!bfd_read_p (abfd))
3224 switch (abfd->format)
3227 if (!_bfd_write_archive_contents (abfd))
3231 if (!coff_write_object_contents (abfd))
3235 bfd_set_error (bfd_error_invalid_operation);
3239 /* We depend on bfd_close to free all the memory on the objalloc. */
3246 buy_and_read (abfd, where, seek_direction, size)
3252 PTR area = (PTR) bfd_alloc (abfd, size);
3255 if (bfd_seek (abfd, where, seek_direction) != 0
3256 || bfd_read (area, 1, size, abfd) != size)
3259 } /* buy_and_read() */
3265 Creating the linenumber table is done by reading in the entire
3266 coff linenumber table, and creating another table for internal use.
3268 A coff linenumber table is structured so that each function
3269 is marked as having a line number of 0. Each line within the
3270 function is an offset from the first line in the function. The
3271 base of the line number information for the table is stored in
3272 the symbol associated with the function.
3274 The information is copied from the external to the internal
3275 table, and each symbol which marks a function is marked by
3278 How does this work ?
3283 coff_slurp_line_table (abfd, asect)
3287 LINENO *native_lineno;
3288 alent *lineno_cache;
3290 BFD_ASSERT (asect->lineno == (alent *) NULL);
3292 native_lineno = (LINENO *) buy_and_read (abfd,
3293 asect->line_filepos,
3296 asect->lineno_count));
3298 (alent *) bfd_alloc (abfd, (size_t) ((asect->lineno_count + 1) * sizeof (alent)));
3299 if (lineno_cache == NULL)
3303 unsigned int counter = 0;
3304 alent *cache_ptr = lineno_cache;
3305 LINENO *src = native_lineno;
3307 while (counter < asect->lineno_count)
3309 struct internal_lineno dst;
3310 coff_swap_lineno_in (abfd, src, &dst);
3311 cache_ptr->line_number = dst.l_lnno;
3313 if (cache_ptr->line_number == 0)
3317 coff_symbol_type *sym;
3320 symndx = dst.l_addr.l_symndx;
3321 if (symndx < 0 || symndx >= obj_raw_syment_count (abfd))
3323 (*_bfd_error_handler)
3324 ("%s: warning: illegal symbol index %ld in line numbers",
3325 bfd_get_filename (abfd), dst.l_addr.l_symndx);
3329 /* FIXME: We should not be casting between ints and
3330 pointers like this. */
3331 sym = ((coff_symbol_type *)
3332 ((symndx + obj_raw_syments (abfd))
3333 ->u.syment._n._n_n._n_zeroes));
3334 cache_ptr->u.sym = (asymbol *) sym;
3335 if (sym->lineno != NULL && ! warned)
3337 (*_bfd_error_handler)
3338 ("%s: warning: duplicate line number information for `%s'",
3339 bfd_get_filename (abfd),
3340 bfd_asymbol_name (&sym->symbol));
3342 sym->lineno = cache_ptr;
3346 cache_ptr->u.offset = dst.l_addr.l_paddr
3347 - bfd_section_vma (abfd, asect);
3348 } /* If no linenumber expect a symbol index */
3354 cache_ptr->line_number = 0;
3357 asect->lineno = lineno_cache;
3358 /* FIXME, free native_lineno here, or use alloca or something. */
3363 coff_slurp_symbol_table (abfd)
3366 combined_entry_type *native_symbols;
3367 coff_symbol_type *cached_area;
3368 unsigned int *table_ptr;
3370 unsigned int number_of_symbols = 0;
3372 if (obj_symbols (abfd))
3375 /* Read in the symbol table */
3376 if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
3381 /* Allocate enough room for all the symbols in cached form */
3382 cached_area = ((coff_symbol_type *)
3384 (obj_raw_syment_count (abfd)
3385 * sizeof (coff_symbol_type))));
3387 if (cached_area == NULL)
3389 table_ptr = ((unsigned int *)
3391 (obj_raw_syment_count (abfd)
3392 * sizeof (unsigned int))));
3394 if (table_ptr == NULL)
3398 coff_symbol_type *dst = cached_area;
3399 unsigned int last_native_index = obj_raw_syment_count (abfd);
3400 unsigned int this_index = 0;
3401 while (this_index < last_native_index)
3403 combined_entry_type *src = native_symbols + this_index;
3404 table_ptr[this_index] = number_of_symbols;
3405 dst->symbol.the_bfd = abfd;
3407 dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
3408 /* We use the native name field to point to the cached field. */
3409 src->u.syment._n._n_n._n_zeroes = (long) dst;
3410 dst->symbol.section = coff_section_from_bfd_index (abfd,
3411 src->u.syment.n_scnum);
3412 dst->symbol.flags = 0;
3413 dst->done_lineno = false;
3415 switch (src->u.syment.n_sclass)
3420 dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma;
3421 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
3422 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
3424 /* Fall through to next case */
3431 case C_THUMBEXTFUNC:
3437 case C_SYSTEM: /* System Wide variable */
3440 /* PE uses storage class 0x68 to denote a section symbol */
3442 /* PE uses storage class 0x67 for a weak external symbol. */
3445 if ((src->u.syment.n_scnum) == 0)
3447 if ((src->u.syment.n_value) == 0)
3449 dst->symbol.section = bfd_und_section_ptr;
3450 dst->symbol.value = 0;
3454 dst->symbol.section = bfd_com_section_ptr;
3455 dst->symbol.value = (src->u.syment.n_value);
3460 /* Base the value as an index from the base of the
3463 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
3465 #if defined (COFF_WITH_PE) || defined (COFF_IMAGE_WITH_PE)
3466 /* PE sets the symbol to a value relative to the
3467 start of the section. */
3468 dst->symbol.value = src->u.syment.n_value;
3470 dst->symbol.value = (src->u.syment.n_value
3471 - dst->symbol.section->vma);
3474 if (ISFCN ((src->u.syment.n_type)))
3476 /* A function ext does not go at the end of a
3478 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
3483 /* A C_HIDEXT symbol is not global. */
3484 if (src->u.syment.n_sclass == C_HIDEXT)
3485 dst->symbol.flags = BSF_LOCAL;
3486 /* A symbol with a csect entry should not go at the end. */
3487 if (src->u.syment.n_numaux > 0)
3488 dst->symbol.flags |= BSF_NOT_AT_END;
3492 if (src->u.syment.n_sclass == C_NT_WEAK)
3493 dst->symbol.flags = BSF_WEAK;
3498 case C_STAT: /* static */
3500 case C_LEAFSTAT: /* static leaf procedure */
3503 case C_THUMBSTAT: /* Thumb static */
3504 case C_THUMBLABEL: /* Thumb label */
3505 case C_THUMBSTATFUNC:/* Thumb static function */
3507 case C_LABEL: /* label */
3508 if (src->u.syment.n_scnum == -2)
3509 dst->symbol.flags = BSF_DEBUGGING;
3511 dst->symbol.flags = BSF_LOCAL;
3513 /* Base the value as an index from the base of the
3514 section, if there is one. */
3515 if (dst->symbol.section)
3517 #if defined (COFF_WITH_PE) || defined (COFF_IMAGE_WITH_PE)
3518 /* PE sets the symbol to a value relative to the
3519 start of the section. */
3520 dst->symbol.value = src->u.syment.n_value;
3522 dst->symbol.value = (src->u.syment.n_value
3523 - dst->symbol.section->vma);
3527 dst->symbol.value = src->u.syment.n_value;
3530 case C_MOS: /* member of structure */
3531 case C_EOS: /* end of structure */
3532 #ifdef NOTDEF /* C_AUTOARG has the same value */
3534 case C_GLBLREG: /* A29k-specific storage class */
3537 case C_REGPARM: /* register parameter */
3538 case C_REG: /* register variable */
3539 /* start-sanitize-tic80 */
3541 /* end-sanitize-tic80 */
3543 case C_AUTOARG: /* 960-specific storage class */
3545 /* start-sanitize-tic80 */
3547 /* end-sanitize-tic80 */
3548 case C_TPDEF: /* type definition */
3550 case C_AUTO: /* automatic variable */
3551 case C_FIELD: /* bit field */
3552 case C_ENTAG: /* enumeration tag */
3553 case C_MOE: /* member of enumeration */
3554 case C_MOU: /* member of union */
3555 case C_UNTAG: /* union tag */
3556 dst->symbol.flags = BSF_DEBUGGING;
3557 dst->symbol.value = (src->u.syment.n_value);
3560 case C_FILE: /* file name */
3561 case C_STRTAG: /* structure tag */
3576 dst->symbol.flags = BSF_DEBUGGING;
3577 dst->symbol.value = (src->u.syment.n_value);
3581 case C_BINCL: /* beginning of include file */
3582 case C_EINCL: /* ending of include file */
3583 /* The value is actually a pointer into the line numbers
3584 of the file. We locate the line number entry, and
3585 set the section to the section which contains it, and
3586 the value to the index in that section. */
3590 dst->symbol.flags = BSF_DEBUGGING;
3591 for (sec = abfd->sections; sec != NULL; sec = sec->next)
3592 if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
3593 && ((file_ptr) (sec->line_filepos
3594 + sec->lineno_count * LINESZ)
3595 > (file_ptr) src->u.syment.n_value))
3598 dst->symbol.value = 0;
3601 dst->symbol.section = sec;
3602 dst->symbol.value = ((src->u.syment.n_value
3603 - sec->line_filepos)
3611 dst->symbol.flags = BSF_DEBUGGING;
3613 /* The value is actually a symbol index. Save a pointer
3614 to the symbol instead of the index. FIXME: This
3615 should use a union. */
3616 src->u.syment.n_value =
3617 (long) (native_symbols + src->u.syment.n_value);
3618 dst->symbol.value = src->u.syment.n_value;
3623 case C_BLOCK: /* ".bb" or ".eb" */
3624 case C_FCN: /* ".bf" or ".ef" */
3625 case C_EFCN: /* physical end of function */
3626 dst->symbol.flags = BSF_LOCAL;
3627 #if defined (COFF_WITH_PE) || defined (COFF_IMAGE_WITH_PE)
3628 /* PE sets the symbol to a value relative to the start
3630 dst->symbol.value = src->u.syment.n_value;
3632 /* Base the value as an index from the base of the
3634 dst->symbol.value = (src->u.syment.n_value
3635 - dst->symbol.section->vma);
3640 case C_EXTDEF: /* external definition */
3641 case C_ULABEL: /* undefined label */
3642 case C_USTATIC: /* undefined static */
3643 #ifndef COFF_WITH_PE
3644 /* C_LINE in regular coff is 0x68. NT has taken over this storage
3645 class to represent a section symbol */
3646 case C_LINE: /* line # reformatted as symbol table entry */
3647 /* NT uses 0x67 for a weak symbol, not C_ALIAS. */
3648 case C_ALIAS: /* duplicate tag */
3650 /* start-sanitize-tic80 */
3651 /* New storage classes for TIc80 */
3653 case C_UEXT: /* Tentative external definition */
3655 case C_STATLAB: /* Static load time label */
3656 case C_EXTLAB: /* External load time label */
3657 /* end-sanitize-tic80 */
3658 case C_HIDDEN: /* ext symbol in dmert public lib */
3660 (*_bfd_error_handler)
3661 ("%s: Unrecognized storage class %d for %s symbol `%s'",
3662 bfd_get_filename (abfd), src->u.syment.n_sclass,
3663 dst->symbol.section->name, dst->symbol.name);
3664 dst->symbol.flags = BSF_DEBUGGING;
3665 dst->symbol.value = (src->u.syment.n_value);
3669 /* BFD_ASSERT(dst->symbol.flags != 0);*/
3673 dst->symbol.udata.i = 0;
3674 dst->lineno = (alent *) NULL;
3675 this_index += (src->u.syment.n_numaux) + 1;
3677 number_of_symbols++;
3678 } /* walk the native symtab */
3679 } /* bfdize the native symtab */
3681 obj_symbols (abfd) = cached_area;
3682 obj_raw_syments (abfd) = native_symbols;
3684 bfd_get_symcount (abfd) = number_of_symbols;
3685 obj_convert (abfd) = table_ptr;
3686 /* Slurp the line tables for each section too */
3692 coff_slurp_line_table (abfd, p);
3697 } /* coff_slurp_symbol_table() */
3699 /* Check whether a symbol is globally visible. This is used by the
3700 COFF backend linker code in cofflink.c, since a couple of targets
3701 have globally visible symbols which are not class C_EXT. This
3702 function need not handle the case of n_class == C_EXT. */
3704 #undef OTHER_GLOBAL_CLASS
3707 #define OTHER_GLOBAL_CLASS C_LEAFEXT
3712 #define OTHER_GLOBAL_CLASS C_SECTION || syment->n_sclass == C_THUMBEXT
3714 #define OTHER_GLOBAL_CLASS C_THUMBEXT || syment->n_sclass == C_THUMBEXTFUNC
3718 #define OTHER_GLOBAL_CLASS C_SECTION
3722 #ifdef OTHER_GLOBAL_CLASS
3724 static boolean coff_sym_is_global PARAMS ((bfd *, struct internal_syment *));
3727 coff_sym_is_global (abfd, syment)
3729 struct internal_syment * syment;
3731 return (syment->n_sclass == OTHER_GLOBAL_CLASS);
3734 #undef OTHER_GLOBAL_CLASS
3736 #else /* ! defined (OTHER_GLOBAL_CLASS) */
3738 /* sym_is_global should not be defined if it has nothing to do. */
3740 #define coff_sym_is_global 0
3742 #endif /* ! defined (OTHER_GLOBAL_CLASS) */
3748 Coff relocations are easily transformed into the internal BFD form
3751 Reading a coff relocation table is done in the following stages:
3753 o Read the entire coff relocation table into memory.
3755 o Process each relocation in turn; first swap it from the
3756 external to the internal form.
3758 o Turn the symbol referenced in the relocation's symbol index
3759 into a pointer into the canonical symbol table.
3760 This table is the same as the one returned by a call to
3761 @code{bfd_canonicalize_symtab}. The back end will call that
3762 routine and save the result if a canonicalization hasn't been done.
3764 o The reloc index is turned into a pointer to a howto
3765 structure, in a back end specific way. For instance, the 386
3766 and 960 use the @code{r_type} to directly produce an index
3767 into a howto table vector; the 88k subtracts a number from the
3768 @code{r_type} field and creates an addend field.
3774 #define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
3776 coff_symbol_type *coffsym = (coff_symbol_type *) NULL; \
3777 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
3778 coffsym = (obj_symbols (abfd) \
3779 + (cache_ptr->sym_ptr_ptr - symbols)); \
3781 coffsym = coff_symbol_from (abfd, ptr); \
3782 if (coffsym != (coff_symbol_type *) NULL \
3783 && coffsym->native->u.syment.n_scnum == 0) \
3784 cache_ptr->addend = 0; \
3785 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
3786 && ptr->section != (asection *) NULL) \
3787 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
3789 cache_ptr->addend = 0; \
3794 coff_slurp_reloc_table (abfd, asect, symbols)
3799 RELOC *native_relocs;
3800 arelent *reloc_cache;
3805 if (asect->relocation)
3807 if (asect->reloc_count == 0)
3809 if (asect->flags & SEC_CONSTRUCTOR)
3811 if (!coff_slurp_symbol_table (abfd))
3814 (RELOC *) buy_and_read (abfd,
3818 asect->reloc_count));
3819 reloc_cache = (arelent *)
3820 bfd_alloc (abfd, (size_t) (asect->reloc_count * sizeof (arelent)));
3822 if (reloc_cache == NULL)
3826 for (idx = 0; idx < asect->reloc_count; idx++)
3828 struct internal_reloc dst;
3829 struct external_reloc *src;
3830 #ifndef RELOC_PROCESSING
3834 cache_ptr = reloc_cache + idx;
3835 src = native_relocs + idx;
3837 coff_swap_reloc_in (abfd, src, &dst);
3839 #ifdef RELOC_PROCESSING
3840 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
3842 cache_ptr->address = dst.r_vaddr;
3844 if (dst.r_symndx != -1)
3846 if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
3848 (*_bfd_error_handler)
3849 ("%s: warning: illegal symbol index %ld in relocs",
3850 bfd_get_filename (abfd), dst.r_symndx);
3851 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
3856 cache_ptr->sym_ptr_ptr = (symbols
3857 + obj_convert (abfd)[dst.r_symndx]);
3858 ptr = *(cache_ptr->sym_ptr_ptr);
3863 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
3867 /* The symbols definitions that we have read in have been
3868 relocated as if their sections started at 0. But the offsets
3869 refering to the symbols in the raw data have not been
3870 modified, so we have to have a negative addend to compensate.
3872 Note that symbols which used to be common must be left alone */
3874 /* Calculate any reloc addend by looking at the symbol */
3875 CALC_ADDEND (abfd, ptr, dst, cache_ptr);
3877 cache_ptr->address -= asect->vma;
3878 /* !! cache_ptr->section = (asection *) NULL;*/
3880 /* Fill in the cache_ptr->howto field from dst.r_type */
3881 RTYPE2HOWTO (cache_ptr, &dst);
3882 #endif /* RELOC_PROCESSING */
3884 if (cache_ptr->howto == NULL)
3886 (*_bfd_error_handler)
3887 ("%s: illegal relocation type %d at address 0x%lx",
3888 bfd_get_filename (abfd), dst.r_type, (long) dst.r_vaddr);
3889 bfd_set_error (bfd_error_bad_value);
3894 asect->relocation = reloc_cache;
3898 #ifndef coff_rtype_to_howto
3901 /* Get the howto structure for a reloc. This is only used if the file
3902 including this one defines coff_relocate_section to be
3903 _bfd_coff_generic_relocate_section, so it is OK if it does not
3904 always work. It is the responsibility of the including file to
3905 make sure it is reasonable if it is needed. */
3907 static reloc_howto_type *coff_rtype_to_howto
3908 PARAMS ((bfd *, asection *, struct internal_reloc *,
3909 struct coff_link_hash_entry *, struct internal_syment *,
3913 static reloc_howto_type *
3914 coff_rtype_to_howto (abfd, sec, rel, h, sym, addendp)
3917 struct internal_reloc *rel;
3918 struct coff_link_hash_entry *h;
3919 struct internal_syment *sym;
3924 RTYPE2HOWTO (&genrel, rel);
3925 return genrel.howto;
3928 #else /* ! defined (RTYPE2HOWTO) */
3930 #define coff_rtype_to_howto NULL
3932 #endif /* ! defined (RTYPE2HOWTO) */
3933 #endif /* ! defined (coff_rtype_to_howto) */
3935 /* This is stupid. This function should be a boolean predicate. */
3937 coff_canonicalize_reloc (abfd, section, relptr, symbols)
3943 arelent *tblptr = section->relocation;
3944 unsigned int count = 0;
3947 if (section->flags & SEC_CONSTRUCTOR)
3949 /* this section has relocs made up by us, they are not in the
3950 file, so take them out of their chain and place them into
3951 the data area provided */
3952 arelent_chain *chain = section->constructor_chain;
3953 for (count = 0; count < section->reloc_count; count++)
3955 *relptr++ = &chain->relent;
3956 chain = chain->next;
3962 if (! coff_slurp_reloc_table (abfd, section, symbols))
3965 tblptr = section->relocation;
3967 for (; count++ < section->reloc_count;)
3968 *relptr++ = tblptr++;
3973 return section->reloc_count;
3978 coff_sym_filepos (abfd)
3981 return obj_sym_filepos (abfd);
3985 #ifndef coff_reloc16_estimate
3986 #define coff_reloc16_estimate dummy_reloc16_estimate
3988 static int dummy_reloc16_estimate
3989 PARAMS ((bfd *, asection *, arelent *, unsigned int,
3990 struct bfd_link_info *));
3993 dummy_reloc16_estimate (abfd, input_section, reloc, shrink, link_info)
3995 asection *input_section;
3997 unsigned int shrink;
3998 struct bfd_link_info *link_info;
4005 #ifndef coff_reloc16_extra_cases
4007 #define coff_reloc16_extra_cases dummy_reloc16_extra_cases
4009 /* This works even if abort is not declared in any header file. */
4011 static void dummy_reloc16_extra_cases
4012 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
4013 bfd_byte *, unsigned int *, unsigned int *));
4016 dummy_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr,
4019 struct bfd_link_info *link_info;
4020 struct bfd_link_order *link_order;
4023 unsigned int *src_ptr;
4024 unsigned int *dst_ptr;
4030 /* If coff_relocate_section is defined, we can use the optimized COFF
4031 backend linker. Otherwise we must continue to use the old linker. */
4032 #ifdef coff_relocate_section
4033 #ifndef coff_bfd_link_hash_table_create
4034 #define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
4036 #ifndef coff_bfd_link_add_symbols
4037 #define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
4039 #ifndef coff_bfd_final_link
4040 #define coff_bfd_final_link _bfd_coff_final_link
4042 #else /* ! defined (coff_relocate_section) */
4043 #define coff_relocate_section NULL
4044 #ifndef coff_bfd_link_hash_table_create
4045 #define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
4047 #ifndef coff_bfd_link_add_symbols
4048 #define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
4050 #define coff_bfd_final_link _bfd_generic_final_link
4051 #endif /* ! defined (coff_relocate_section) */
4053 #define coff_bfd_link_split_section _bfd_generic_link_split_section
4055 #ifndef coff_start_final_link
4056 #define coff_start_final_link NULL
4059 #ifndef coff_adjust_symndx
4060 #define coff_adjust_symndx NULL
4063 #ifndef coff_link_add_one_symbol
4064 #define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
4067 #ifndef coff_link_output_has_begun
4068 #define coff_link_output_has_begun _coff_link_output_has_begun
4070 _coff_link_output_has_begun (abfd)
4073 return abfd->output_has_begun;
4077 #ifndef coff_final_link_postscript
4078 #define coff_final_link_postscript _coff_final_link_postscript
4080 _coff_final_link_postscript (abfd, pfinfo)
4082 struct coff_final_link_info * pfinfo;
4088 #ifndef coff_SWAP_aux_in
4089 #define coff_SWAP_aux_in coff_swap_aux_in
4091 #ifndef coff_SWAP_sym_in
4092 #define coff_SWAP_sym_in coff_swap_sym_in
4094 #ifndef coff_SWAP_lineno_in
4095 #define coff_SWAP_lineno_in coff_swap_lineno_in
4097 #ifndef coff_SWAP_aux_out
4098 #define coff_SWAP_aux_out coff_swap_aux_out
4100 #ifndef coff_SWAP_sym_out
4101 #define coff_SWAP_sym_out coff_swap_sym_out
4103 #ifndef coff_SWAP_lineno_out
4104 #define coff_SWAP_lineno_out coff_swap_lineno_out
4106 #ifndef coff_SWAP_reloc_out
4107 #define coff_SWAP_reloc_out coff_swap_reloc_out
4109 #ifndef coff_SWAP_filehdr_out
4110 #define coff_SWAP_filehdr_out coff_swap_filehdr_out
4112 #ifndef coff_SWAP_aouthdr_out
4113 #define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
4115 #ifndef coff_SWAP_scnhdr_out
4116 #define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
4118 #ifndef coff_SWAP_reloc_in
4119 #define coff_SWAP_reloc_in coff_swap_reloc_in
4121 #ifndef coff_SWAP_filehdr_in
4122 #define coff_SWAP_filehdr_in coff_swap_filehdr_in
4124 #ifndef coff_SWAP_aouthdr_in
4125 #define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
4127 #ifndef coff_SWAP_scnhdr_in
4128 #define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
4133 static CONST bfd_coff_backend_data bfd_coff_std_swap_table =
4135 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
4136 coff_SWAP_aux_out, coff_SWAP_sym_out,
4137 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
4138 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
4139 coff_SWAP_scnhdr_out,
4140 FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ,
4141 #ifdef COFF_LONG_FILENAMES
4146 #ifdef COFF_LONG_SECTION_NAMES
4151 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
4152 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
4153 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
4154 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
4155 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
4156 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
4157 coff_sym_is_global, coff_compute_section_file_positions,
4158 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
4159 coff_adjust_symndx, coff_link_add_one_symbol,
4160 coff_link_output_has_begun, coff_final_link_postscript
4163 #ifndef coff_close_and_cleanup
4164 #define coff_close_and_cleanup _bfd_generic_close_and_cleanup
4167 #ifndef coff_bfd_free_cached_info
4168 #define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
4171 #ifndef coff_get_section_contents
4172 #define coff_get_section_contents _bfd_generic_get_section_contents
4175 #ifndef coff_bfd_copy_private_symbol_data
4176 #define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data
4179 #ifndef coff_bfd_copy_private_section_data
4180 #define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data
4183 #ifndef coff_bfd_copy_private_bfd_data
4184 #define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data
4187 #ifndef coff_bfd_merge_private_bfd_data
4188 #define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
4191 #ifndef coff_bfd_set_private_flags
4192 #define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
4195 #ifndef coff_bfd_print_private_bfd_data
4196 #define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
4199 #ifndef coff_bfd_is_local_label_name
4200 #define coff_bfd_is_local_label_name _bfd_coff_is_local_label_name
4203 #ifndef coff_read_minisymbols
4204 #define coff_read_minisymbols _bfd_generic_read_minisymbols
4207 #ifndef coff_minisymbol_to_symbol
4208 #define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
4211 /* The reloc lookup routine must be supplied by each individual COFF
4213 #ifndef coff_bfd_reloc_type_lookup
4214 #define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
4217 #ifndef coff_bfd_get_relocated_section_contents
4218 #define coff_bfd_get_relocated_section_contents \
4219 bfd_generic_get_relocated_section_contents
4222 #ifndef coff_bfd_relax_section
4223 #define coff_bfd_relax_section bfd_generic_relax_section