]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/coffcode.h
Replace 'flags' with 'signed_overflow_ok_p'
[thirdparty/binutils-gdb.git] / bfd / coffcode.h
CommitLineData
252b5132 1/* Support for the generic parts of most COFF variants, for BFD.
5f771d47 2 Copyright 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999
252b5132
RH
3 Free Software Foundation, Inc.
4 Written by Cygnus Support.
5
6This file is part of BFD, the Binary File Descriptor library.
7
8This program is free software; you can redistribute it and/or modify
9it under the terms of the GNU General Public License as published by
10the Free Software Foundation; either version 2 of the License, or
11(at your option) any later version.
12
13This program is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
19along with this program; if not, write to the Free Software
20Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21
22/*
23Most of this hacked by Steve Chamberlain,
24 sac@cygnus.com
25*/
26/*
27
28SECTION
29 coff backends
30
31 BFD supports a number of different flavours of coff format.
32 The major differences between formats are the sizes and
33 alignments of fields in structures on disk, and the occasional
34 extra field.
35
36 Coff in all its varieties is implemented with a few common
37 files and a number of implementation specific files. For
38 example, The 88k bcs coff format is implemented in the file
39 @file{coff-m88k.c}. This file @code{#include}s
40 @file{coff/m88k.h} which defines the external structure of the
41 coff format for the 88k, and @file{coff/internal.h} which
42 defines the internal structure. @file{coff-m88k.c} also
43 defines the relocations used by the 88k format
44 @xref{Relocations}.
45
46 The Intel i960 processor version of coff is implemented in
47 @file{coff-i960.c}. This file has the same structure as
48 @file{coff-m88k.c}, except that it includes @file{coff/i960.h}
49 rather than @file{coff-m88k.h}.
50
51SUBSECTION
52 Porting to a new version of coff
53
54 The recommended method is to select from the existing
55 implementations the version of coff which is most like the one
56 you want to use. For example, we'll say that i386 coff is
57 the one you select, and that your coff flavour is called foo.
58 Copy @file{i386coff.c} to @file{foocoff.c}, copy
59 @file{../include/coff/i386.h} to @file{../include/coff/foo.h},
60 and add the lines to @file{targets.c} and @file{Makefile.in}
61 so that your new back end is used. Alter the shapes of the
62 structures in @file{../include/coff/foo.h} so that they match
63 what you need. You will probably also have to add
64 @code{#ifdef}s to the code in @file{coff/internal.h} and
65 @file{coffcode.h} if your version of coff is too wild.
66
67 You can verify that your new BFD backend works quite simply by
68 building @file{objdump} from the @file{binutils} directory,
69 and making sure that its version of what's going on and your
70 host system's idea (assuming it has the pretty standard coff
71 dump utility, usually called @code{att-dump} or just
72 @code{dump}) are the same. Then clean up your code, and send
73 what you've done to Cygnus. Then your stuff will be in the
74 next release, and you won't have to keep integrating it.
75
76SUBSECTION
77 How the coff backend works
78
79SUBSUBSECTION
80 File layout
81
82 The Coff backend is split into generic routines that are
83 applicable to any Coff target and routines that are specific
84 to a particular target. The target-specific routines are
85 further split into ones which are basically the same for all
86 Coff targets except that they use the external symbol format
87 or use different values for certain constants.
88
89 The generic routines are in @file{coffgen.c}. These routines
90 work for any Coff target. They use some hooks into the target
91 specific code; the hooks are in a @code{bfd_coff_backend_data}
92 structure, one of which exists for each target.
93
94 The essentially similar target-specific routines are in
95 @file{coffcode.h}. This header file includes executable C code.
96 The various Coff targets first include the appropriate Coff
97 header file, make any special defines that are needed, and
98 then include @file{coffcode.h}.
99
100 Some of the Coff targets then also have additional routines in
101 the target source file itself.
102
103 For example, @file{coff-i960.c} includes
104 @file{coff/internal.h} and @file{coff/i960.h}. It then
105 defines a few constants, such as @code{I960}, and includes
106 @file{coffcode.h}. Since the i960 has complex relocation
107 types, @file{coff-i960.c} also includes some code to
108 manipulate the i960 relocs. This code is not in
109 @file{coffcode.h} because it would not be used by any other
110 target.
111
112SUBSUBSECTION
113 Bit twiddling
114
115 Each flavour of coff supported in BFD has its own header file
116 describing the external layout of the structures. There is also
117 an internal description of the coff layout, in
118 @file{coff/internal.h}. A major function of the
119 coff backend is swapping the bytes and twiddling the bits to
120 translate the external form of the structures into the normal
121 internal form. This is all performed in the
122 @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
123 elements are different sizes between different versions of
124 coff; it is the duty of the coff version specific include file
125 to override the definitions of various packing routines in
126 @file{coffcode.h}. E.g., the size of line number entry in coff is
127 sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
128 @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
129 correct one. No doubt, some day someone will find a version of
130 coff which has a varying field size not catered to at the
131 moment. To port BFD, that person will have to add more @code{#defines}.
132 Three of the bit twiddling routines are exported to
133 @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
00692651 134 and @code{coff_swap_lineno_in}. @code{GDB} reads the symbol
252b5132
RH
135 table on its own, but uses BFD to fix things up. More of the
136 bit twiddlers are exported for @code{gas};
137 @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
138 @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
139 @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
140 @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
141 of all the symbol table and reloc drudgery itself, thereby
142 saving the internal BFD overhead, but uses BFD to swap things
143 on the way out, making cross ports much safer. Doing so also
144 allows BFD (and thus the linker) to use the same header files
145 as @code{gas}, which makes one avenue to disaster disappear.
146
147SUBSUBSECTION
148 Symbol reading
149
150 The simple canonical form for symbols used by BFD is not rich
151 enough to keep all the information available in a coff symbol
152 table. The back end gets around this problem by keeping the original
153 symbol table around, "behind the scenes".
154
155 When a symbol table is requested (through a call to
156 @code{bfd_canonicalize_symtab}), a request gets through to
157 @code{coff_get_normalized_symtab}. This reads the symbol table from
158 the coff file and swaps all the structures inside into the
159 internal form. It also fixes up all the pointers in the table
160 (represented in the file by offsets from the first symbol in
161 the table) into physical pointers to elements in the new
162 internal table. This involves some work since the meanings of
163 fields change depending upon context: a field that is a
164 pointer to another structure in the symbol table at one moment
165 may be the size in bytes of a structure at the next. Another
166 pass is made over the table. All symbols which mark file names
167 (<<C_FILE>> symbols) are modified so that the internal
168 string points to the value in the auxent (the real filename)
169 rather than the normal text associated with the symbol
170 (@code{".file"}).
171
172 At this time the symbol names are moved around. Coff stores
173 all symbols less than nine characters long physically
174 within the symbol table; longer strings are kept at the end of
175 the file in the string table. This pass moves all strings
176 into memory and replaces them with pointers to the strings.
177
178
179 The symbol table is massaged once again, this time to create
180 the canonical table used by the BFD application. Each symbol
181 is inspected in turn, and a decision made (using the
182 @code{sclass} field) about the various flags to set in the
183 @code{asymbol}. @xref{Symbols}. The generated canonical table
184 shares strings with the hidden internal symbol table.
185
186 Any linenumbers are read from the coff file too, and attached
187 to the symbols which own the functions the linenumbers belong to.
188
189SUBSUBSECTION
190 Symbol writing
191
192 Writing a symbol to a coff file which didn't come from a coff
193 file will lose any debugging information. The @code{asymbol}
194 structure remembers the BFD from which the symbol was taken, and on
195 output the back end makes sure that the same destination target as
196 source target is present.
197
198 When the symbols have come from a coff file then all the
199 debugging information is preserved.
200
201 Symbol tables are provided for writing to the back end in a
202 vector of pointers to pointers. This allows applications like
203 the linker to accumulate and output large symbol tables
204 without having to do too much byte copying.
205
206 This function runs through the provided symbol table and
207 patches each symbol marked as a file place holder
208 (@code{C_FILE}) to point to the next file place holder in the
209 list. It also marks each @code{offset} field in the list with
210 the offset from the first symbol of the current symbol.
211
212 Another function of this procedure is to turn the canonical
213 value form of BFD into the form used by coff. Internally, BFD
214 expects symbol values to be offsets from a section base; so a
215 symbol physically at 0x120, but in a section starting at
216 0x100, would have the value 0x20. Coff expects symbols to
217 contain their final value, so symbols have their values
218 changed at this point to reflect their sum with their owning
219 section. This transformation uses the
220 <<output_section>> field of the @code{asymbol}'s
221 @code{asection} @xref{Sections}.
222
223 o <<coff_mangle_symbols>>
224
225 This routine runs though the provided symbol table and uses
226 the offsets generated by the previous pass and the pointers
227 generated when the symbol table was read in to create the
228 structured hierachy required by coff. It changes each pointer
229 to a symbol into the index into the symbol table of the asymbol.
230
231 o <<coff_write_symbols>>
232
233 This routine runs through the symbol table and patches up the
234 symbols from their internal form into the coff way, calls the
235 bit twiddlers, and writes out the table to the file.
236
237*/
238
239/*
240INTERNAL_DEFINITION
241 coff_symbol_type
242
243DESCRIPTION
244 The hidden information for an <<asymbol>> is described in a
245 <<combined_entry_type>>:
246
247CODE_FRAGMENT
248.
249.typedef struct coff_ptr_struct
250.{
251.
252. {* Remembers the offset from the first symbol in the file for
253. this symbol. Generated by coff_renumber_symbols. *}
254.unsigned int offset;
255.
256. {* Should the value of this symbol be renumbered. Used for
257. XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *}
258.unsigned int fix_value : 1;
259.
260. {* Should the tag field of this symbol be renumbered.
261. Created by coff_pointerize_aux. *}
262.unsigned int fix_tag : 1;
263.
264. {* Should the endidx field of this symbol be renumbered.
265. Created by coff_pointerize_aux. *}
266.unsigned int fix_end : 1;
267.
268. {* Should the x_csect.x_scnlen field be renumbered.
269. Created by coff_pointerize_aux. *}
270.unsigned int fix_scnlen : 1;
271.
272. {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the
273. index into the line number entries. Set by
274. coff_slurp_symbol_table. *}
275.unsigned int fix_line : 1;
276.
277. {* The container for the symbol structure as read and translated
278. from the file. *}
279.
280.union {
281. union internal_auxent auxent;
282. struct internal_syment syment;
283. } u;
284.} combined_entry_type;
285.
286.
287.{* Each canonical asymbol really looks like this: *}
288.
289.typedef struct coff_symbol_struct
290.{
291. {* The actual symbol which the rest of BFD works with *}
292.asymbol symbol;
293.
294. {* A pointer to the hidden information for this symbol *}
295.combined_entry_type *native;
296.
297. {* A pointer to the linenumber information for this symbol *}
298.struct lineno_cache_entry *lineno;
299.
300. {* Have the line numbers been relocated yet ? *}
301.boolean done_lineno;
302.} coff_symbol_type;
303
304
305*/
306
307#ifdef COFF_WITH_PE
308#include "peicode.h"
309#else
310#include "coffswap.h"
311#endif
312
313#define STRING_SIZE_SIZE (4)
314
315static long sec_to_styp_flags PARAMS ((const char *, flagword));
41733515
ILT
316static flagword styp_to_sec_flags
317 PARAMS ((bfd *, PTR, const char *, asection *));
252b5132 318static boolean coff_bad_format_hook PARAMS ((bfd *, PTR));
5dccc1dd
ILT
319static void coff_set_custom_section_alignment
320 PARAMS ((bfd *, asection *, const struct coff_section_alignment_entry *,
8a1ad8e7 321 const unsigned int));
252b5132
RH
322static boolean coff_new_section_hook PARAMS ((bfd *, asection *));
323static boolean coff_set_arch_mach_hook PARAMS ((bfd *, PTR));
324static boolean coff_write_relocs PARAMS ((bfd *, int));
325static boolean coff_set_flags
326 PARAMS ((bfd *, unsigned int *, unsigned short *));
327static boolean coff_set_arch_mach
328 PARAMS ((bfd *, enum bfd_architecture, unsigned long));
329static boolean coff_compute_section_file_positions PARAMS ((bfd *));
330static boolean coff_write_object_contents PARAMS ((bfd *));
331static boolean coff_set_section_contents
332 PARAMS ((bfd *, asection *, PTR, file_ptr, bfd_size_type));
333static PTR buy_and_read PARAMS ((bfd *, file_ptr, int, size_t));
334static boolean coff_slurp_line_table PARAMS ((bfd *, asection *));
335static boolean coff_slurp_symbol_table PARAMS ((bfd *));
5d54c628
ILT
336static enum coff_symbol_classification coff_classify_symbol
337 PARAMS ((bfd *, struct internal_syment *));
252b5132
RH
338static boolean coff_slurp_reloc_table PARAMS ((bfd *, asection *, asymbol **));
339static long coff_canonicalize_reloc
340 PARAMS ((bfd *, asection *, arelent **, asymbol **));
341#ifndef coff_mkobject_hook
342static PTR coff_mkobject_hook PARAMS ((bfd *, PTR, PTR));
343#endif
344\f
345/* void warning(); */
346
41733515
ILT
347/* Return a word with STYP_* (scnhdr.s_flags) flags set to represent
348 the incoming SEC_* flags. The inverse of this function is
349 styp_to_sec_flags(). NOTE: If you add to/change this routine, you
350 should probably mirror the changes in styp_to_sec_flags(). */
351
352#ifndef COFF_WITH_PE
353
252b5132
RH
354static long
355sec_to_styp_flags (sec_name, sec_flags)
356 CONST char *sec_name;
357 flagword sec_flags;
358{
359 long styp_flags = 0;
360
361 if (!strcmp (sec_name, _TEXT))
362 {
363 styp_flags = STYP_TEXT;
364 }
365 else if (!strcmp (sec_name, _DATA))
366 {
367 styp_flags = STYP_DATA;
368 }
369 else if (!strcmp (sec_name, _BSS))
370 {
371 styp_flags = STYP_BSS;
372#ifdef _COMMENT
373 }
374 else if (!strcmp (sec_name, _COMMENT))
375 {
376 styp_flags = STYP_INFO;
377#endif /* _COMMENT */
378#ifdef _LIB
379 }
380 else if (!strcmp (sec_name, _LIB))
381 {
382 styp_flags = STYP_LIB;
383#endif /* _LIB */
384#ifdef _LIT
385 }
386 else if (!strcmp (sec_name, _LIT))
387 {
388 styp_flags = STYP_LIT;
389#endif /* _LIT */
390 }
391 else if (!strcmp (sec_name, ".debug"))
392 {
393#ifdef STYP_DEBUG
394 styp_flags = STYP_DEBUG;
395#else
396 styp_flags = STYP_INFO;
397#endif
398 }
399 else if (!strncmp (sec_name, ".stab", 5))
400 {
401 styp_flags = STYP_INFO;
402 }
252b5132
RH
403#ifdef RS6000COFF_C
404 else if (!strcmp (sec_name, _PAD))
405 {
406 styp_flags = STYP_PAD;
407 }
408 else if (!strcmp (sec_name, _LOADER))
409 {
410 styp_flags = STYP_LOADER;
411 }
412#endif
413 /* Try and figure out what it should be */
414 else if (sec_flags & SEC_CODE)
415 {
416 styp_flags = STYP_TEXT;
417 }
418 else if (sec_flags & SEC_DATA)
419 {
420 styp_flags = STYP_DATA;
421 }
422 else if (sec_flags & SEC_READONLY)
423 {
424#ifdef STYP_LIT /* 29k readonly text/data section */
425 styp_flags = STYP_LIT;
426#else
427 styp_flags = STYP_TEXT;
428#endif /* STYP_LIT */
429 }
430 else if (sec_flags & SEC_LOAD)
431 {
432 styp_flags = STYP_TEXT;
433 }
434 else if (sec_flags & SEC_ALLOC)
435 {
436 styp_flags = STYP_BSS;
437 }
438
439#ifdef STYP_NOLOAD
440 if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
441 styp_flags |= STYP_NOLOAD;
442#endif
443
41733515
ILT
444 return styp_flags;
445}
446
447#else /* COFF_WITH_PE */
448
449/* The PE version; see above for the general comments. The non-PE
450 case seems to be more guessing, and breaks PE format; specifically,
451 .rdata is readonly, but it sure ain't text. Really, all this
452 should be set up properly in gas (or whatever assembler is in use),
453 and honor whatever objcopy/strip, etc. sent us as input. */
454
455static long
456sec_to_styp_flags (sec_name, sec_flags)
457 const char *sec_name ATTRIBUTE_UNUSED;
458 flagword sec_flags;
459{
460 long styp_flags = 0;
461
462 /* caution: there are at least three groups of symbols that have
463 very similar bits and meanings: IMAGE_SCN*, SEC_*, and STYP_*.
464 SEC_* are the BFD internal flags, used for generic BFD
465 information. STYP_* are the COFF section flags which appear in
466 COFF files. IMAGE_SCN_* are the PE section flags which appear in
467 PE files. The STYP_* flags and the IMAGE_SCN_* flags overlap,
468 but there are more IMAGE_SCN_* flags. */
469
470 /* skip LOAD */
471 /* READONLY later */
472 /* skip RELOC */
473 if ((sec_flags & SEC_CODE) != 0)
474 styp_flags |= IMAGE_SCN_CNT_CODE;
475 if ((sec_flags & SEC_DATA) != 0)
476 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
477 if ((sec_flags & SEC_ALLOC) != 0 && (sec_flags & SEC_LOAD) == 0)
478 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
479 /* skip ROM */
480 /* skip CONSTRUCTOR */
481 /* skip CONTENTS */
482#ifdef STYP_NOLOAD
483 if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
484 styp_flags |= STYP_NOLOAD;
485#endif
486 if ((sec_flags & SEC_IS_COMMON) != 0)
252b5132 487 styp_flags |= IMAGE_SCN_LNK_COMDAT;
41733515
ILT
488 if ((sec_flags & SEC_DEBUGGING) != 0)
489 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
490 if ((sec_flags & SEC_EXCLUDE) != 0)
491 styp_flags |= IMAGE_SCN_LNK_REMOVE;
492 if ((sec_flags & SEC_NEVER_LOAD) != 0)
493 styp_flags |= IMAGE_SCN_LNK_REMOVE;
494 /* skip IN_MEMORY */
495 /* skip SORT */
496 if (sec_flags & SEC_LINK_ONCE)
497 styp_flags |= IMAGE_SCN_LNK_COMDAT;
498 /* skip LINK_DUPLICATES */
499 /* skip LINKER_CREATED */
500
501 /* For now, the read/write bits are mapped onto SEC_READONLY, even
502 though the semantics don't quite match. The bits from the input
503 are retained in pei_section_data(abfd, section)->pe_flags */
504
505 styp_flags |= IMAGE_SCN_MEM_READ; /* always readable. */
506 if ((sec_flags & SEC_READONLY) == 0)
507 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write */
508 if (sec_flags & SEC_CODE)
509 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE */
bd826630 510 if (sec_flags & SEC_SHARED)
41733515 511 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful */
252b5132 512
41733515 513 return styp_flags;
252b5132 514}
41733515
ILT
515
516#endif /* COFF_WITH_PE */
517
518/* Return a word with SEC_* flags set to represent the incoming STYP_*
519 flags (from scnhdr.s_flags). The inverse of this function is
520 sec_to_styp_flags(). NOTE: If you add to/change this routine, you
521 should probably mirror the changes in sec_to_styp_flags(). */
522
523#ifndef COFF_WITH_PE
524
252b5132 525static flagword
41733515 526styp_to_sec_flags (abfd, hdr, name, section)
5f771d47 527 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
528 PTR hdr;
529 const char *name;
41733515 530 asection *section ATTRIBUTE_UNUSED;
252b5132
RH
531{
532 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
533 long styp_flags = internal_s->s_flags;
534 flagword sec_flags = 0;
535
536#ifdef STYP_NOLOAD
537 if (styp_flags & STYP_NOLOAD)
538 {
539 sec_flags |= SEC_NEVER_LOAD;
540 }
541#endif /* STYP_NOLOAD */
542
543 /* For 386 COFF, at least, an unloadable text or data section is
544 actually a shared library section. */
545 if (styp_flags & STYP_TEXT)
546 {
547 if (sec_flags & SEC_NEVER_LOAD)
548 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
549 else
550 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
551 }
552 else if (styp_flags & STYP_DATA)
553 {
554 if (sec_flags & SEC_NEVER_LOAD)
555 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
556 else
557 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
558 }
559 else if (styp_flags & STYP_BSS)
560 {
561#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
562 if (sec_flags & SEC_NEVER_LOAD)
563 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
564 else
565#endif
566 sec_flags |= SEC_ALLOC;
567 }
568 else if (styp_flags & STYP_INFO)
569 {
570 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
571 defined. coff_compute_section_file_positions uses
572 COFF_PAGE_SIZE to ensure that the low order bits of the
573 section VMA and the file offset match. If we don't know
574 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
575 and demand page loading of the file will fail. */
576#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
577 sec_flags |= SEC_DEBUGGING;
578#endif
579 }
580 else if (styp_flags & STYP_PAD)
581 {
582 sec_flags = 0;
583 }
584 else if (strcmp (name, _TEXT) == 0)
585 {
586 if (sec_flags & SEC_NEVER_LOAD)
587 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
588 else
589 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
590 }
591 else if (strcmp (name, _DATA) == 0)
592 {
593 if (sec_flags & SEC_NEVER_LOAD)
594 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
595 else
596 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
597 }
598 else if (strcmp (name, _BSS) == 0)
599 {
600#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
601 if (sec_flags & SEC_NEVER_LOAD)
602 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
603 else
604#endif
605 sec_flags |= SEC_ALLOC;
606 }
607 else if (strcmp (name, ".debug") == 0
608#ifdef _COMMENT
609 || strcmp (name, _COMMENT) == 0
610#endif
611 || strncmp (name, ".stab", 5) == 0)
612 {
613#ifdef COFF_PAGE_SIZE
614 sec_flags |= SEC_DEBUGGING;
615#endif
616 }
617#ifdef _LIB
618 else if (strcmp (name, _LIB) == 0)
619 ;
620#endif
621#ifdef _LIT
622 else if (strcmp (name, _LIT) == 0)
623 {
624 sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
625 }
626#endif
627 else
628 {
629 sec_flags |= SEC_ALLOC | SEC_LOAD;
630 }
631
632#ifdef STYP_LIT /* A29k readonly text/data section type */
633 if ((styp_flags & STYP_LIT) == STYP_LIT)
634 {
635 sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
636 }
637#endif /* STYP_LIT */
638#ifdef STYP_OTHER_LOAD /* Other loaded sections */
639 if (styp_flags & STYP_OTHER_LOAD)
640 {
641 sec_flags = (SEC_LOAD | SEC_ALLOC);
642 }
643#endif /* STYP_SDATA */
644
41733515
ILT
645#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
646 /* As a GNU extension, if the name begins with .gnu.linkonce, we
647 only link a single copy of the section. This is used to support
648 g++. g++ will emit each template expansion in its own section.
649 The symbols will be defined as weak, so that multiple definitions
650 are permitted. The GNU linker extension is to actually discard
651 all but one of the sections. */
652 if (strncmp (name, ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) == 0)
653 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
654#endif
655
656 return sec_flags;
657}
658
659#else /* COFF_WITH_PE */
660
661/* The PE version; see above for the general comments.
662
663 Since to set the SEC_LINK_ONCE and associated flags, we have to
664 look at the symbol table anyway, we return the symbol table index
665 of the symbol being used as the COMDAT symbol. This is admittedly
666 ugly, but there's really nowhere else that we have access to the
667 required information. FIXME: Is the COMDAT symbol index used for
668 any purpose other than objdump? */
669
670static flagword
671styp_to_sec_flags (abfd, hdr, name, section)
672 bfd *abfd ATTRIBUTE_UNUSED;
673 PTR hdr;
674 const char *name;
675 asection *section;
676{
677 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
678 long styp_flags = internal_s->s_flags;
679 flagword sec_flags = 0;
680
681 if (styp_flags & STYP_DSECT)
682 abort (); /* Don't know what to do */
683#ifdef SEC_NEVER_LOAD
684 if (styp_flags & STYP_NOLOAD)
685 sec_flags |= SEC_NEVER_LOAD;
686#endif
687 if (styp_flags & STYP_GROUP)
688 abort (); /* Don't know what to do */
689 /* skip IMAGE_SCN_TYPE_NO_PAD */
690 if (styp_flags & STYP_COPY)
691 abort (); /* Don't know what to do */
692 if (styp_flags & IMAGE_SCN_CNT_CODE)
693 sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
694 if (styp_flags & IMAGE_SCN_CNT_INITIALIZED_DATA)
695 sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
696 if (styp_flags & IMAGE_SCN_CNT_UNINITIALIZED_DATA)
697 sec_flags |= SEC_ALLOC;
698 if (styp_flags & IMAGE_SCN_LNK_OTHER)
699 abort (); /* Don't know what to do */
700 if (styp_flags & IMAGE_SCN_LNK_INFO)
701 {
702 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
703 defined. coff_compute_section_file_positions uses
704 COFF_PAGE_SIZE to ensure that the low order bits of the
705 section VMA and the file offset match. If we don't know
706 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
707 and demand page loading of the file will fail. */
708#ifdef COFF_PAGE_SIZE
709 sec_flags |= SEC_DEBUGGING;
710#endif
711 }
712 if (styp_flags & STYP_OVER)
713 abort (); /* Don't know what to do */
252b5132
RH
714 if (styp_flags & IMAGE_SCN_LNK_REMOVE)
715 sec_flags |= SEC_EXCLUDE;
716
bd826630
ILT
717 if (styp_flags & IMAGE_SCN_MEM_SHARED)
718 sec_flags |= SEC_SHARED;
41733515
ILT
719 /* COMDAT: see below */
720 if (styp_flags & IMAGE_SCN_MEM_DISCARDABLE)
721 sec_flags |= SEC_DEBUGGING;
722 if (styp_flags & IMAGE_SCN_MEM_NOT_CACHED)
723 abort ();/* Don't know what to do */
724 if (styp_flags & IMAGE_SCN_MEM_NOT_PAGED)
725 abort (); /* Don't know what to do */
726
727 /* We infer from the distinct read/write/execute bits the settings
728 of some of the bfd flags; the actual values, should we need them,
729 are also in pei_section_data (abfd, section)->pe_flags. */
730
731 if (styp_flags & IMAGE_SCN_MEM_EXECUTE)
732 sec_flags |= SEC_CODE; /* Probably redundant */
733 /* IMAGE_SCN_MEM_READ is simply ignored, assuming it always to be true. */
734 if ((styp_flags & IMAGE_SCN_MEM_WRITE) == 0)
735 sec_flags |= SEC_READONLY;
736
737 /* COMDAT gets very special treatment. */
252b5132
RH
738 if (styp_flags & IMAGE_SCN_LNK_COMDAT)
739 {
740 sec_flags |= SEC_LINK_ONCE;
741
742 /* Unfortunately, the PE format stores essential information in
743 the symbol table, of all places. We need to extract that
744 information now, so that objdump and the linker will know how
745 to handle the section without worrying about the symbols. We
746 can't call slurp_symtab, because the linker doesn't want the
747 swapped symbols. */
748
ec0ef80e
DD
749 /* COMDAT sections are special. The first symbol is the section
750 symbol, which tells what kind of COMDAT section it is. The
41733515 751 second symbol is the "comdat symbol" - the one with the
ec0ef80e
DD
752 unique name. GNU uses the section symbol for the unique
753 name; MS uses ".text" for every comdat section. Sigh. - DJ */
754
41733515
ILT
755 /* This is not mirrored in sec_to_styp_flags(), but there
756 doesn't seem to be a need to, either, and it would at best be
757 rather messy. */
758
252b5132
RH
759 if (_bfd_coff_get_external_symbols (abfd))
760 {
41733515 761 bfd_byte *esymstart, *esym, *esymend;
e5db213d
ILT
762 int seen_state = 0;
763 char *target_name;
252b5132 764
41733515 765 esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
6b3b007b 766 esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
252b5132
RH
767
768 while (esym < esymend)
769 {
770 struct internal_syment isym;
41733515
ILT
771 char buf[SYMNMLEN + 1];
772 const char *symname;
252b5132
RH
773
774 bfd_coff_swap_sym_in (abfd, (PTR) esym, (PTR) &isym);
775
776 if (sizeof (internal_s->s_name) > SYMNMLEN)
777 {
778 /* This case implies that the matching symbol name
779 will be in the string table. */
780 abort ();
781 }
782
e5db213d 783 if (isym.n_scnum == section->target_index)
252b5132 784 {
e5db213d
ILT
785 /* According to the MSVC documentation, the first
786 TWO entries with the section # are both of
787 interest to us. The first one is the "section
41733515 788 symbol" (section name). The second is the comdat
e5db213d
ILT
789 symbol name. Here, we've found the first
790 qualifying entry; we distinguish it from the
791 second with a state flag.
252b5132 792
e5db213d
ILT
793 In the case of gas-generated (at least until that
794 is fixed) .o files, it isn't necessarily the
795 second one. It may be some other later symbol.
41733515 796
e5db213d
ILT
797 Since gas also doesn't follow MS conventions and
798 emits the section similar to .text$<name>, where
799 <something> is the name we're looking for, we
800 distinguish the two as follows:
41733515 801
e5db213d
ILT
802 If the section name is simply a section name (no
803 $) we presume it's MS-generated, and look at
804 precisely the second symbol for the comdat name.
805 If the section name has a $, we assume it's
806 gas-generated, and look for <something> (whatever
807 follows the $) as the comdat symbol. */
252b5132 808
e5db213d
ILT
809 /* All 3 branches use this */
810 symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
252b5132 811
e5db213d
ILT
812 if (symname == NULL)
813 abort ();
ec0ef80e 814
e5db213d
ILT
815 switch (seen_state)
816 {
817 case 0:
818 {
819 /* The first time we've seen the symbol. */
820 union internal_auxent aux;
821
822 seen_state = 1;
823
824 /* If it isn't the stuff we're expecting, die;
825 The MS documentation is vague, but it
826 appears that the second entry serves BOTH
827 as the comdat symbol and the defining
828 symbol record (either C_STAT or C_EXT,
829 possibly with an aux entry with debug
830 information if it's a function.) It
831 appears the only way to find the second one
832 is to count. (On Intel, they appear to be
833 adjacent, but on Alpha, they have been
834 found separated.)
835
836 Here, we think we've found the first one,
837 but there's some checking we can do to be
838 sure. */
839
840 if (! (isym.n_sclass == C_STAT
841 && isym.n_type == T_NULL
842 && isym.n_value == 0))
843 abort ();
844
845 /* FIXME LATER: MSVC generates section names
846 like .text for comdats. Gas generates
847 names like .text$foo__Fv (in the case of a
848 function). See comment above for more. */
849
850 if (strcmp (name, symname) != 0)
851 abort ();
852
853 /* This is the section symbol. */
854
6b3b007b 855 bfd_coff_swap_aux_in (abfd, (PTR) (esym + bfd_coff_symesz (abfd)),
e5db213d
ILT
856 isym.n_type, isym.n_sclass,
857 0, isym.n_numaux, (PTR) &aux);
858
859 target_name = strchr (name, '$');
860 if (target_name != NULL)
861 {
862 /* Gas mode. */
863 seen_state = 2;
864 /* Skip the `$'. */
865 target_name += 1;
866 }
867
868 /* FIXME: Microsoft uses NODUPLICATES and
869 ASSOCIATIVE, but gnu uses ANY and
870 SAME_SIZE. Unfortunately, gnu doesn't do
871 the comdat symbols right. So, until we can
872 fix it to do the right thing, we are
873 temporarily disabling comdats for the MS
874 types (they're used in DLLs and C++, but we
875 don't support *their* C++ libraries anyway
876 - DJ. */
877
878 /* Cygwin does not follow the MS style, and
879 uses ANY and SAME_SIZE where NODUPLICATES
880 and ASSOCIATIVE should be used. For
881 Interix, we just do the right thing up
882 front. */
883
884 switch (aux.x_scn.x_comdat)
885 {
886 case IMAGE_COMDAT_SELECT_NODUPLICATES:
887#ifdef STRICT_PE_FORMAT
888 sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
ec0ef80e 889#else
e5db213d 890 sec_flags &= ~SEC_LINK_ONCE;
ec0ef80e 891#endif
e5db213d 892 break;
252b5132 893
e5db213d
ILT
894 case IMAGE_COMDAT_SELECT_ANY:
895 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
896 break;
252b5132 897
e5db213d
ILT
898 case IMAGE_COMDAT_SELECT_SAME_SIZE:
899 sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
900 break;
252b5132 901
e5db213d
ILT
902 case IMAGE_COMDAT_SELECT_EXACT_MATCH:
903 /* Not yet fully implemented ??? */
904 sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
905 break;
252b5132 906
e5db213d
ILT
907 /* debug$S gets this case; other
908 implications ??? */
909
910 /* There may be no symbol... we'll search
911 the whole table... Is this the right
912 place to play this game? Or should we do
913 it when reading it in. */
914 case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
0717ebb7 915#ifdef STRICT_PE_FORMAT
e5db213d
ILT
916 /* FIXME: This is not currently implemented. */
917 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
ec0ef80e 918#else
e5db213d 919 sec_flags &= ~SEC_LINK_ONCE;
ec0ef80e 920#endif
e5db213d
ILT
921 break;
922
923 default: /* 0 means "no symbol" */
924 /* debug$F gets this case; other
925 implications ??? */
926 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
927 break;
928 }
929 }
930 break;
41733515 931
e5db213d
ILT
932 case 2:
933 /* Gas mode: the first matching on partial name. */
252b5132 934
e5db213d
ILT
935#ifndef TARGET_UNDERSCORE
936#define TARGET_UNDERSCORE 0
937#endif
938 /* Is this the name we're looking for? */
939 if (strcmp (target_name,
940 symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
941 {
942 /* Not the name we're looking for */
6b3b007b 943 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
e5db213d
ILT
944 continue;
945 }
946 /* Fall through. */
947 case 1:
948 /* MSVC mode: the lexically second symbol (or
949 drop through from the above). */
950 {
951 char *newname;
952
953 /* This must the the second symbol with the
954 section #. It is the actual symbol name.
955 Intel puts the two adjacent, but Alpha (at
956 least) spreads them out. */
957
958 section->comdat =
959 bfd_alloc (abfd, sizeof (struct bfd_comdat_info));
960 if (section->comdat == NULL)
961 abort ();
962 section->comdat->symbol =
6b3b007b 963 (esym - esymstart) / bfd_coff_symesz (abfd);
e5db213d
ILT
964
965 newname = bfd_alloc (abfd, strlen (symname) + 1);
966 if (newname == NULL)
967 abort ();
968
969 strcpy (newname, symname);
970 section->comdat->name = newname;
971
972 }
973
974 goto breakloop;
252b5132
RH
975 }
976 }
977
6b3b007b 978 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
252b5132 979 }
e5db213d 980 breakloop:
252b5132
RH
981 }
982 }
252b5132 983
242eabea
ILT
984#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
985 /* As a GNU extension, if the name begins with .gnu.linkonce, we
986 only link a single copy of the section. This is used to support
987 g++. g++ will emit each template expansion in its own section.
988 The symbols will be defined as weak, so that multiple definitions
989 are permitted. The GNU linker extension is to actually discard
990 all but one of the sections. */
991 if (strncmp (name, ".gnu.linkonce", sizeof ".gnu.linkonce" - 1) == 0)
992 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
993#endif
994
41733515 995 return sec_flags;
252b5132
RH
996}
997
41733515
ILT
998#endif /* COFF_WITH_PE */
999
252b5132
RH
1000#define get_index(symbol) ((symbol)->udata.i)
1001
1002/*
1003INTERNAL_DEFINITION
1004 bfd_coff_backend_data
1005
1006CODE_FRAGMENT
1007
5d54c628
ILT
1008.{* COFF symbol classifications. *}
1009.
1010.enum coff_symbol_classification
1011.{
1012. {* Global symbol. *}
1013. COFF_SYMBOL_GLOBAL,
1014. {* Common symbol. *}
1015. COFF_SYMBOL_COMMON,
1016. {* Undefined symbol. *}
1017. COFF_SYMBOL_UNDEFINED,
1018. {* Local symbol. *}
1019. COFF_SYMBOL_LOCAL,
1020. {* PE section symbol. *}
1021. COFF_SYMBOL_PE_SECTION
1022.};
1023.
252b5132
RH
1024Special entry points for gdb to swap in coff symbol table parts:
1025.typedef struct
1026.{
1027. void (*_bfd_coff_swap_aux_in) PARAMS ((
1028. bfd *abfd,
1029. PTR ext,
1030. int type,
1031. int class,
1032. int indaux,
1033. int numaux,
1034. PTR in));
1035.
1036. void (*_bfd_coff_swap_sym_in) PARAMS ((
1037. bfd *abfd ,
1038. PTR ext,
1039. PTR in));
1040.
1041. void (*_bfd_coff_swap_lineno_in) PARAMS ((
1042. bfd *abfd,
1043. PTR ext,
1044. PTR in));
1045.
1046
1047Special entry points for gas to swap out coff parts:
1048
1049. unsigned int (*_bfd_coff_swap_aux_out) PARAMS ((
1050. bfd *abfd,
1051. PTR in,
1052. int type,
1053. int class,
1054. int indaux,
1055. int numaux,
1056. PTR ext));
1057.
1058. unsigned int (*_bfd_coff_swap_sym_out) PARAMS ((
1059. bfd *abfd,
1060. PTR in,
1061. PTR ext));
1062.
1063. unsigned int (*_bfd_coff_swap_lineno_out) PARAMS ((
1064. bfd *abfd,
1065. PTR in,
1066. PTR ext));
1067.
1068. unsigned int (*_bfd_coff_swap_reloc_out) PARAMS ((
1069. bfd *abfd,
1070. PTR src,
1071. PTR dst));
1072.
1073. unsigned int (*_bfd_coff_swap_filehdr_out) PARAMS ((
1074. bfd *abfd,
1075. PTR in,
1076. PTR out));
1077.
1078. unsigned int (*_bfd_coff_swap_aouthdr_out) PARAMS ((
1079. bfd *abfd,
1080. PTR in,
1081. PTR out));
1082.
1083. unsigned int (*_bfd_coff_swap_scnhdr_out) PARAMS ((
1084. bfd *abfd,
1085. PTR in,
1086. PTR out));
1087.
1088
1089Special entry points for generic COFF routines to call target
1090dependent COFF routines:
1091
1092. unsigned int _bfd_filhsz;
1093. unsigned int _bfd_aoutsz;
1094. unsigned int _bfd_scnhsz;
1095. unsigned int _bfd_symesz;
1096. unsigned int _bfd_auxesz;
1097. unsigned int _bfd_relsz;
1098. unsigned int _bfd_linesz;
692b7d62 1099. unsigned int _bfd_filnmlen;
252b5132
RH
1100. boolean _bfd_coff_long_filenames;
1101. boolean _bfd_coff_long_section_names;
1102. unsigned int _bfd_coff_default_section_alignment_power;
1103. void (*_bfd_coff_swap_filehdr_in) PARAMS ((
1104. bfd *abfd,
1105. PTR ext,
1106. PTR in));
1107. void (*_bfd_coff_swap_aouthdr_in) PARAMS ((
1108. bfd *abfd,
1109. PTR ext,
1110. PTR in));
1111. void (*_bfd_coff_swap_scnhdr_in) PARAMS ((
1112. bfd *abfd,
1113. PTR ext,
1114. PTR in));
1115. void (*_bfd_coff_swap_reloc_in) PARAMS ((
1116. bfd *abfd,
1117. PTR ext,
1118. PTR in));
1119. boolean (*_bfd_coff_bad_format_hook) PARAMS ((
1120. bfd *abfd,
1121. PTR internal_filehdr));
1122. boolean (*_bfd_coff_set_arch_mach_hook) PARAMS ((
1123. bfd *abfd,
1124. PTR internal_filehdr));
1125. PTR (*_bfd_coff_mkobject_hook) PARAMS ((
1126. bfd *abfd,
1127. PTR internal_filehdr,
1128. PTR internal_aouthdr));
1129. flagword (*_bfd_styp_to_sec_flags_hook) PARAMS ((
1130. bfd *abfd,
1131. PTR internal_scnhdr,
41733515
ILT
1132. const char *name,
1133. asection *section));
252b5132
RH
1134. void (*_bfd_set_alignment_hook) PARAMS ((
1135. bfd *abfd,
1136. asection *sec,
1137. PTR internal_scnhdr));
1138. boolean (*_bfd_coff_slurp_symbol_table) PARAMS ((
1139. bfd *abfd));
1140. boolean (*_bfd_coff_symname_in_debug) PARAMS ((
1141. bfd *abfd,
1142. struct internal_syment *sym));
1143. boolean (*_bfd_coff_pointerize_aux_hook) PARAMS ((
1144. bfd *abfd,
1145. combined_entry_type *table_base,
1146. combined_entry_type *symbol,
1147. unsigned int indaux,
1148. combined_entry_type *aux));
1149. boolean (*_bfd_coff_print_aux) PARAMS ((
1150. bfd *abfd,
1151. FILE *file,
1152. combined_entry_type *table_base,
1153. combined_entry_type *symbol,
1154. combined_entry_type *aux,
1155. unsigned int indaux));
1156. void (*_bfd_coff_reloc16_extra_cases) PARAMS ((
1157. bfd *abfd,
1158. struct bfd_link_info *link_info,
1159. struct bfd_link_order *link_order,
1160. arelent *reloc,
1161. bfd_byte *data,
1162. unsigned int *src_ptr,
1163. unsigned int *dst_ptr));
1164. int (*_bfd_coff_reloc16_estimate) PARAMS ((
1165. bfd *abfd,
1166. asection *input_section,
1167. arelent *r,
1168. unsigned int shrink,
1169. struct bfd_link_info *link_info));
5d54c628 1170. enum coff_symbol_classification (*_bfd_coff_classify_symbol) PARAMS ((
252b5132
RH
1171. bfd *abfd,
1172. struct internal_syment *));
1173. boolean (*_bfd_coff_compute_section_file_positions) PARAMS ((
1174. bfd *abfd));
1175. boolean (*_bfd_coff_start_final_link) PARAMS ((
1176. bfd *output_bfd,
1177. struct bfd_link_info *info));
1178. boolean (*_bfd_coff_relocate_section) PARAMS ((
1179. bfd *output_bfd,
1180. struct bfd_link_info *info,
1181. bfd *input_bfd,
1182. asection *input_section,
1183. bfd_byte *contents,
1184. struct internal_reloc *relocs,
1185. struct internal_syment *syms,
1186. asection **sections));
1187. reloc_howto_type *(*_bfd_coff_rtype_to_howto) PARAMS ((
1188. bfd *abfd,
1189. asection *sec,
1190. struct internal_reloc *rel,
1191. struct coff_link_hash_entry *h,
1192. struct internal_syment *sym,
1193. bfd_vma *addendp));
1194. boolean (*_bfd_coff_adjust_symndx) PARAMS ((
1195. bfd *obfd,
1196. struct bfd_link_info *info,
1197. bfd *ibfd,
1198. asection *sec,
1199. struct internal_reloc *reloc,
1200. boolean *adjustedp));
1201. boolean (*_bfd_coff_link_add_one_symbol) PARAMS ((
1202. struct bfd_link_info *info,
1203. bfd *abfd,
1204. const char *name,
1205. flagword flags,
1206. asection *section,
1207. bfd_vma value,
1208. const char *string,
1209. boolean copy,
1210. boolean collect,
1211. struct bfd_link_hash_entry **hashp));
1212.
1213. boolean (*_bfd_coff_link_output_has_begun) PARAMS ((
1214. bfd * abfd,
1215. struct coff_final_link_info * pfinfo));
1216. boolean (*_bfd_coff_final_link_postscript) PARAMS ((
1217. bfd * abfd,
1218. struct coff_final_link_info * pfinfo));
1219.
1220.} bfd_coff_backend_data;
1221.
1222.#define coff_backend_info(abfd) ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
1223.
1224.#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
1225. ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
1226.
1227.#define bfd_coff_swap_sym_in(a,e,i) \
1228. ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
1229.
1230.#define bfd_coff_swap_lineno_in(a,e,i) \
1231. ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
1232.
1233.#define bfd_coff_swap_reloc_out(abfd, i, o) \
1234. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
1235.
1236.#define bfd_coff_swap_lineno_out(abfd, i, o) \
1237. ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
1238.
1239.#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
1240. ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
1241.
1242.#define bfd_coff_swap_sym_out(abfd, i,o) \
1243. ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
1244.
1245.#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
1246. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
1247.
1248.#define bfd_coff_swap_filehdr_out(abfd, i,o) \
1249. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
1250.
1251.#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
1252. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
1253.
1254.#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
1255.#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
1256.#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
1257.#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
1258.#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
1259.#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz)
1260.#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
692b7d62 1261.#define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
252b5132
RH
1262.#define bfd_coff_long_filenames(abfd) (coff_backend_info (abfd)->_bfd_coff_long_filenames)
1263.#define bfd_coff_long_section_names(abfd) \
1264. (coff_backend_info (abfd)->_bfd_coff_long_section_names)
1265.#define bfd_coff_default_section_alignment_power(abfd) \
1266. (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
1267.#define bfd_coff_swap_filehdr_in(abfd, i,o) \
1268. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
1269.
1270.#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
1271. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
1272.
1273.#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
1274. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
1275.
1276.#define bfd_coff_swap_reloc_in(abfd, i, o) \
1277. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
1278.
1279.#define bfd_coff_bad_format_hook(abfd, filehdr) \
1280. ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
1281.
1282.#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
1283. ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
1284.#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
1285. ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook) (abfd, filehdr, aouthdr))
1286.
41733515
ILT
1287.#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section)\
1288. ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
1289. (abfd, scnhdr, name, section))
252b5132
RH
1290.
1291.#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
1292. ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
1293.
1294.#define bfd_coff_slurp_symbol_table(abfd)\
1295. ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
1296.
1297.#define bfd_coff_symname_in_debug(abfd, sym)\
1298. ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
1299.
1300.#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
1301. ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
1302. (abfd, file, base, symbol, aux, indaux))
1303.
1304.#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr)\
1305. ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
1306. (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
1307.
1308.#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
1309. ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
1310. (abfd, section, reloc, shrink, link_info))
1311.
5d54c628
ILT
1312.#define bfd_coff_classify_symbol(abfd, sym)\
1313. ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
252b5132
RH
1314. (abfd, sym))
1315.
1316.#define bfd_coff_compute_section_file_positions(abfd)\
1317. ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
1318. (abfd))
1319.
1320.#define bfd_coff_start_final_link(obfd, info)\
1321. ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
1322. (obfd, info))
1323.#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
1324. ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
1325. (obfd, info, ibfd, o, con, rel, isyms, secs))
1326.#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
1327. ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
1328. (abfd, sec, rel, h, sym, addendp))
1329.#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
1330. ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
1331. (obfd, info, ibfd, sec, rel, adjustedp))
1332.#define bfd_coff_link_add_one_symbol(info,abfd,name,flags,section,value,string,cp,coll,hashp)\
1333. ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
1334. (info, abfd, name, flags, section, value, string, cp, coll, hashp))
1335.
1336.#define bfd_coff_link_output_has_begun(a,p) \
1337. ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a,p))
1338.#define bfd_coff_final_link_postscript(a,p) \
1339. ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a,p))
1340.
1341*/
1342
1343/* See whether the magic number matches. */
1344
1345static boolean
1346coff_bad_format_hook (abfd, filehdr)
5f771d47 1347 bfd * abfd ATTRIBUTE_UNUSED;
252b5132
RH
1348 PTR filehdr;
1349{
1350 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1351
1352 if (BADMAG (*internal_f))
1353 return false;
1354
1355 /* if the optional header is NULL or not the correct size then
1356 quit; the only difference I can see between m88k dgux headers (MC88DMAGIC)
1357 and Intel 960 readwrite headers (I960WRMAGIC) is that the
1358 optional header is of a different size.
1359
1360 But the mips keeps extra stuff in it's opthdr, so dont check
1361 when doing that
1362 */
1363
1364#if defined(M88) || defined(I960)
6b3b007b 1365 if (internal_f->f_opthdr != 0 && bfd_coff_aoutsz (abfd) != internal_f->f_opthdr)
252b5132
RH
1366 return false;
1367#endif
1368
1369 return true;
1370}
1371
5dccc1dd
ILT
1372/* Check whether this section uses an alignment other than the
1373 default. */
1374
1375static void
1376coff_set_custom_section_alignment (abfd, section, alignment_table, table_size)
1377 bfd *abfd ATTRIBUTE_UNUSED;
1378 asection *section;
1379 const struct coff_section_alignment_entry *alignment_table;
1380 const unsigned int table_size;
1381{
1382 const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1383 unsigned int i;
1384
1385 for (i = 0; i < table_size; ++i)
1386 {
1387 const char *secname = bfd_get_section_name (abfd, section);
1388 if (alignment_table[i].comparison_length == (unsigned int) -1
1389 ? strcmp (alignment_table[i].name, secname) == 0
1390 : strncmp (alignment_table[i].name, secname,
1391 alignment_table[i].comparison_length) == 0)
1392 break;
1393 }
1394 if (i >= table_size)
1395 return;
1396
1397 if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1398 && default_alignment < alignment_table[i].default_alignment_min)
1399 return;
1400
1401 if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1402 && default_alignment > alignment_table[i].default_alignment_max)
1403 return;
1404
1405 section->alignment_power = alignment_table[i].alignment_power;
1406}
1407
1408/* Custom section alignment records. */
1409
1410static const struct coff_section_alignment_entry
1411coff_section_alignment_table[] =
1412{
1413#ifdef COFF_SECTION_ALIGNMENT_ENTRIES
1414 COFF_SECTION_ALIGNMENT_ENTRIES,
1415#endif
1416 /* There must not be any gaps between .stabstr sections. */
1417 { COFF_SECTION_NAME_PARTIAL_MATCH (".stabstr"),
1418 1, COFF_ALIGNMENT_FIELD_EMPTY, 0 },
1419 /* The .stab section must be aligned to 2**2 at most, to avoid gaps. */
1420 { COFF_SECTION_NAME_PARTIAL_MATCH (".stab"),
1421 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1422 /* Similarly for the .ctors and .dtors sections. */
1423 { COFF_SECTION_NAME_EXACT_MATCH (".ctors"),
1424 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1425 { COFF_SECTION_NAME_EXACT_MATCH (".dtors"),
1426 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 }
1427};
1428
1429static const unsigned int coff_section_alignment_table_size =
1430 sizeof coff_section_alignment_table / sizeof coff_section_alignment_table[0];
1431
1432/* Initialize a section structure with information peculiar to this
1433 particular implementation of COFF. */
252b5132
RH
1434
1435static boolean
1436coff_new_section_hook (abfd, section)
5dccc1dd
ILT
1437 bfd *abfd;
1438 asection *section;
252b5132
RH
1439{
1440 combined_entry_type *native;
1441
1442 section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1443
1444#ifdef RS6000COFF_C
1445 if (xcoff_data (abfd)->text_align_power != 0
1446 && strcmp (bfd_get_section_name (abfd, section), ".text") == 0)
1447 section->alignment_power = xcoff_data (abfd)->text_align_power;
1448 if (xcoff_data (abfd)->data_align_power != 0
1449 && strcmp (bfd_get_section_name (abfd, section), ".data") == 0)
1450 section->alignment_power = xcoff_data (abfd)->data_align_power;
1451#endif
1452
1453 /* Allocate aux records for section symbols, to store size and
1454 related info.
1455
1456 @@ The 10 is a guess at a plausible maximum number of aux entries
1457 (but shouldn't be a constant). */
1458 native = ((combined_entry_type *)
1459 bfd_zalloc (abfd, sizeof (combined_entry_type) * 10));
1460 if (native == NULL)
1461 return false;
1462
1463 /* We don't need to set up n_name, n_value, or n_scnum in the native
1464 symbol information, since they'll be overriden by the BFD symbol
1465 anyhow. However, we do need to set the type and storage class,
1466 in case this symbol winds up getting written out. The value 0
1467 for n_numaux is already correct. */
1468
1469 native->u.syment.n_type = T_NULL;
1470 native->u.syment.n_sclass = C_STAT;
1471
1472 coffsymbol (section->symbol)->native = native;
1473
5dccc1dd
ILT
1474 coff_set_custom_section_alignment (abfd, section,
1475 coff_section_alignment_table,
1476 coff_section_alignment_table_size);
252b5132
RH
1477
1478 return true;
1479}
1480
1481#ifdef COFF_ALIGN_IN_SECTION_HEADER
1482
1483/* Set the alignment of a BFD section. */
1484
1485static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1486
1487static void
1488coff_set_alignment_hook (abfd, section, scnhdr)
5f771d47 1489 bfd * abfd ATTRIBUTE_UNUSED;
252b5132
RH
1490 asection * section;
1491 PTR scnhdr;
1492{
1493 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1494 unsigned int i;
1495
1496#ifdef I960
1497 /* Extract ALIGN from 2**ALIGN stored in section header */
1498 for (i = 0; i < 32; i++)
1499 if ((1 << i) >= hdr->s_align)
1500 break;
1501#endif
1502#ifdef TIC80COFF
1503 /* TI tools hijack bits 8-11 for the alignment */
1504 i = (hdr->s_flags >> 8) & 0xF ;
1505#endif
1506 section->alignment_power = i;
1507}
1508
1509#else /* ! COFF_ALIGN_IN_SECTION_HEADER */
1510#ifdef COFF_WITH_PE
1511
1512/* a couple of macros to help setting the alignment power field */
1513#define ALIGN_SET(field,x,y) \
1514 if (((field) & IMAGE_SCN_ALIGN_64BYTES) == x )\
1515 {\
1516 section->alignment_power = y;\
1517 }
1518
1519#define ELIFALIGN_SET(field,x,y) \
1520 else if (( (field) & IMAGE_SCN_ALIGN_64BYTES) == x ) \
1521 {\
1522 section->alignment_power = y;\
1523 }
1524
1525static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1526
1527static void
1528coff_set_alignment_hook (abfd, section, scnhdr)
5f771d47 1529 bfd * abfd ATTRIBUTE_UNUSED;
252b5132
RH
1530 asection * section;
1531 PTR scnhdr;
1532{
1533 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1534
1535 ALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_64BYTES, 6)
1536 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_32BYTES, 5)
1537 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_16BYTES, 4)
1538 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_8BYTES, 3)
1539 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_4BYTES, 2)
1540 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_2BYTES, 1)
1541 ELIFALIGN_SET (hdr->s_flags, IMAGE_SCN_ALIGN_1BYTES, 0)
1542
252b5132 1543 /* In a PE image file, the s_paddr field holds the virtual size of a
8d3ad4e1
ILT
1544 section, while the s_size field holds the raw size. We also keep
1545 the original section flag value, since not every bit can be
1546 mapped onto a generic BFD section bit. */
1547 if (coff_section_data (abfd, section) == NULL)
252b5132 1548 {
8d3ad4e1
ILT
1549 section->used_by_bfd =
1550 (PTR) bfd_zalloc (abfd, sizeof (struct coff_section_tdata));
1551 if (section->used_by_bfd == NULL)
252b5132 1552 {
8d3ad4e1
ILT
1553 /* FIXME: Return error. */
1554 abort ();
252b5132 1555 }
8d3ad4e1
ILT
1556 }
1557 if (pei_section_data (abfd, section) == NULL)
1558 {
1559 coff_section_data (abfd, section)->tdata =
1560 (PTR) bfd_zalloc (abfd, sizeof (struct pei_section_tdata));
1561 if (coff_section_data (abfd, section)->tdata == NULL)
252b5132 1562 {
8d3ad4e1
ILT
1563 /* FIXME: Return error. */
1564 abort ();
252b5132 1565 }
252b5132 1566 }
8d3ad4e1
ILT
1567 pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1568 pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
252b5132 1569
9d8cefa9 1570 section->lma = hdr->s_vaddr;
252b5132
RH
1571}
1572#undef ALIGN_SET
1573#undef ELIFALIGN_SET
1574
1575#else /* ! COFF_WITH_PE */
1576#ifdef RS6000COFF_C
1577
1578/* We grossly abuse this function to handle XCOFF overflow headers.
1579 When we see one, we correct the reloc and line number counts in the
1580 real header, and remove the section we just created. */
1581
1582static void coff_set_alignment_hook PARAMS ((bfd *, asection *, PTR));
1583
1584static void
1585coff_set_alignment_hook (abfd, section, scnhdr)
1586 bfd *abfd;
1587 asection *section;
1588 PTR scnhdr;
1589{
1590 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1591 asection *real_sec;
1592 asection **ps;
1593
1594 if ((hdr->s_flags & STYP_OVRFLO) == 0)
1595 return;
1596
1597 real_sec = coff_section_from_bfd_index (abfd, hdr->s_nreloc);
1598 if (real_sec == NULL)
1599 return;
1600
1601 real_sec->reloc_count = hdr->s_paddr;
1602 real_sec->lineno_count = hdr->s_vaddr;
1603
1604 for (ps = &abfd->sections; *ps != NULL; ps = &(*ps)->next)
1605 {
1606 if (*ps == section)
1607 {
1608 *ps = (*ps)->next;
1609 --abfd->section_count;
1610 break;
1611 }
1612 }
1613}
1614
1615#else /* ! RS6000COFF_C */
1616
1617#define coff_set_alignment_hook \
1618 ((void (*) PARAMS ((bfd *, asection *, PTR))) bfd_void)
1619
1620#endif /* ! RS6000COFF_C */
1621#endif /* ! COFF_WITH_PE */
1622#endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
1623
1624#ifndef coff_mkobject
1625
1626static boolean coff_mkobject PARAMS ((bfd *));
1627
1628static boolean
1629coff_mkobject (abfd)
1630 bfd * abfd;
1631{
1632 coff_data_type *coff;
1633
1634 abfd->tdata.coff_obj_data = (struct coff_tdata *) bfd_zalloc (abfd, sizeof (coff_data_type));
1635 if (abfd->tdata.coff_obj_data == 0)
1636 return false;
1637 coff = coff_data (abfd);
1638 coff->symbols = (coff_symbol_type *) NULL;
1639 coff->conversion_table = (unsigned int *) NULL;
1640 coff->raw_syments = (struct coff_ptr_struct *) NULL;
1641 coff->relocbase = 0;
1642 coff->local_toc_sym_map = 0;
1643
1644/* make_abs_section(abfd);*/
1645
1646 return true;
1647}
1648#endif
1649
1650/* Create the COFF backend specific information. */
1651#ifndef coff_mkobject_hook
1652static PTR
1653coff_mkobject_hook (abfd, filehdr, aouthdr)
1654 bfd * abfd;
1655 PTR filehdr;
5f771d47 1656 PTR aouthdr ATTRIBUTE_UNUSED;
252b5132
RH
1657{
1658 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1659 coff_data_type *coff;
1660
1661 if (coff_mkobject (abfd) == false)
1662 return NULL;
1663
1664 coff = coff_data (abfd);
1665
1666 coff->sym_filepos = internal_f->f_symptr;
1667
1668 /* These members communicate important constants about the symbol
1669 table to GDB's symbol-reading code. These `constants'
1670 unfortunately vary among coff implementations... */
1671 coff->local_n_btmask = N_BTMASK;
1672 coff->local_n_btshft = N_BTSHFT;
1673 coff->local_n_tmask = N_TMASK;
1674 coff->local_n_tshift = N_TSHIFT;
6b3b007b
NC
1675 coff->local_symesz = bfd_coff_symesz (abfd);
1676 coff->local_auxesz = bfd_coff_auxesz (abfd);
1677 coff->local_linesz = bfd_coff_linesz (abfd);
252b5132 1678
1135238b
ILT
1679 coff->timestamp = internal_f->f_timdat;
1680
252b5132
RH
1681 obj_raw_syment_count (abfd) =
1682 obj_conv_table_size (abfd) =
1683 internal_f->f_nsyms;
1684
1685#ifdef RS6000COFF_C
1686 if ((internal_f->f_flags & F_SHROBJ) != 0)
1687 abfd->flags |= DYNAMIC;
6b3b007b 1688 if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
252b5132
RH
1689 {
1690 struct internal_aouthdr *internal_a =
1691 (struct internal_aouthdr *) aouthdr;
1692 struct xcoff_tdata *xcoff;
1693
1694 xcoff = xcoff_data (abfd);
1695 xcoff->full_aouthdr = true;
1696 xcoff->toc = internal_a->o_toc;
1697 xcoff->sntoc = internal_a->o_sntoc;
1698 xcoff->snentry = internal_a->o_snentry;
1699 xcoff->text_align_power = internal_a->o_algntext;
1700 xcoff->data_align_power = internal_a->o_algndata;
1701 xcoff->modtype = internal_a->o_modtype;
1702 xcoff->cputype = internal_a->o_cputype;
1703 xcoff->maxdata = internal_a->o_maxdata;
1704 xcoff->maxstack = internal_a->o_maxstack;
1705 }
1706#endif
1707
1708#ifdef ARM
1709 /* Set the flags field from the COFF header read in */
1710 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
1711 coff->flags = 0;
1712#endif
1713
4cfec37b
ILT
1714#ifdef COFF_WITH_PE
1715 /* FIXME: I'm not sure this is ever executed, since peicode.h
1716 defines coff_mkobject_hook. */
1717 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
1718 abfd->flags |= HAS_DEBUG;
1719#endif
1720
252b5132
RH
1721 return (PTR) coff;
1722}
1723#endif
1724
1725/* Determine the machine architecture and type. FIXME: This is target
1726 dependent because the magic numbers are defined in the target
1727 dependent header files. But there is no particular need for this.
1728 If the magic numbers were moved to a separate file, this function
1729 would be target independent and would also be much more successful
1730 at linking together COFF files for different architectures. */
1731
1732static boolean
1733coff_set_arch_mach_hook (abfd, filehdr)
1734 bfd *abfd;
1735 PTR filehdr;
1736{
1737 long machine;
1738 enum bfd_architecture arch;
1739 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1740
1741 machine = 0;
1742 switch (internal_f->f_magic)
1743 {
1744#ifdef PPCMAGIC
1745 case PPCMAGIC:
1746 arch = bfd_arch_powerpc;
1747 machine = 0; /* what does this mean? (krk) */
1748 break;
1749#endif
1750#ifdef I386MAGIC
1751 case I386MAGIC:
1752 case I386PTXMAGIC:
1753 case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler */
1754 case LYNXCOFFMAGIC: /* shadows the m68k Lynx number below, sigh */
1755 arch = bfd_arch_i386;
1756 machine = 0;
1757 break;
1758#endif
1759#ifdef A29K_MAGIC_BIG
1760 case A29K_MAGIC_BIG:
1761 case A29K_MAGIC_LITTLE:
1762 arch = bfd_arch_a29k;
1763 machine = 0;
1764 break;
1765#endif
1766#ifdef ARMMAGIC
1767 case ARMMAGIC:
1768 arch = bfd_arch_arm;
1769 switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
1770 {
948221a8
NC
1771 case F_ARM_2: machine = bfd_mach_arm_2; break;
1772 case F_ARM_2a: machine = bfd_mach_arm_2a; break;
1773 case F_ARM_3: machine = bfd_mach_arm_3; break;
1774 default:
1775 case F_ARM_3M: machine = bfd_mach_arm_3M; break;
1776 case F_ARM_4: machine = bfd_mach_arm_4; break;
1777 case F_ARM_4T: machine = bfd_mach_arm_4T; break;
478d07d6 1778 case F_ARM_5: machine = bfd_mach_arm_5; break;
252b5132
RH
1779 }
1780 break;
1781#endif
1782#ifdef MC68MAGIC
1783 case MC68MAGIC:
1784 case M68MAGIC:
1785#ifdef MC68KBCSMAGIC
1786 case MC68KBCSMAGIC:
1787#endif
1788#ifdef APOLLOM68KMAGIC
1789 case APOLLOM68KMAGIC:
1790#endif
1791#ifdef LYNXCOFFMAGIC
1792 case LYNXCOFFMAGIC:
1793#endif
1794 arch = bfd_arch_m68k;
1795 machine = bfd_mach_m68020;
1796 break;
1797#endif
1798#ifdef MC88MAGIC
1799 case MC88MAGIC:
1800 case MC88DMAGIC:
1801 case MC88OMAGIC:
1802 arch = bfd_arch_m88k;
1803 machine = 88100;
1804 break;
1805#endif
1806#ifdef Z8KMAGIC
1807 case Z8KMAGIC:
1808 arch = bfd_arch_z8k;
1809 switch (internal_f->f_flags & F_MACHMASK)
1810 {
1811 case F_Z8001:
1812 machine = bfd_mach_z8001;
1813 break;
1814 case F_Z8002:
1815 machine = bfd_mach_z8002;
1816 break;
1817 default:
1818 return false;
1819 }
1820 break;
1821#endif
1822#ifdef I860
1823 case I860MAGIC:
1824 arch = bfd_arch_i860;
1825 break;
1826#endif
1827#ifdef I960
1828#ifdef I960ROMAGIC
1829 case I960ROMAGIC:
1830 case I960RWMAGIC:
1831 arch = bfd_arch_i960;
1832 switch (F_I960TYPE & internal_f->f_flags)
1833 {
1834 default:
1835 case F_I960CORE:
1836 machine = bfd_mach_i960_core;
1837 break;
1838 case F_I960KB:
1839 machine = bfd_mach_i960_kb_sb;
1840 break;
1841 case F_I960MC:
1842 machine = bfd_mach_i960_mc;
1843 break;
1844 case F_I960XA:
1845 machine = bfd_mach_i960_xa;
1846 break;
1847 case F_I960CA:
1848 machine = bfd_mach_i960_ca;
1849 break;
1850 case F_I960KA:
1851 machine = bfd_mach_i960_ka_sa;
1852 break;
1853 case F_I960JX:
1854 machine = bfd_mach_i960_jx;
1855 break;
1856 case F_I960HX:
1857 machine = bfd_mach_i960_hx;
1858 break;
1859 }
1860 break;
1861#endif
1862#endif
1863
1864#ifdef RS6000COFF_C
1865 case U802ROMAGIC:
1866 case U802WRMAGIC:
1867 case U802TOCMAGIC:
1868 {
1869 int cputype;
1870
1871 if (xcoff_data (abfd)->cputype != -1)
1872 cputype = xcoff_data (abfd)->cputype & 0xff;
1873 else
1874 {
1875 /* We did not get a value from the a.out header. If the
1876 file has not been stripped, we may be able to get the
1877 architecture information from the first symbol, if it
1878 is a .file symbol. */
1879 if (obj_raw_syment_count (abfd) == 0)
1880 cputype = 0;
1881 else
1882 {
5ea1af0d 1883 bfd_byte *buf;
252b5132
RH
1884 struct internal_syment sym;
1885
5ea1af0d 1886 buf = (bfd_byte *) bfd_malloc (bfd_coff_symesz (abfd));
252b5132 1887 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
5ea1af0d
GK
1888 || (bfd_read (buf, 1, bfd_coff_symesz (abfd), abfd)
1889 != bfd_coff_symesz (abfd)))
1890 {
2fca4467 1891 free (buf);
5ea1af0d
GK
1892 return false;
1893 }
252b5132
RH
1894 coff_swap_sym_in (abfd, (PTR) buf, (PTR) &sym);
1895 if (sym.n_sclass == C_FILE)
1896 cputype = sym.n_type & 0xff;
1897 else
1898 cputype = 0;
2fca4467 1899 free (buf);
252b5132
RH
1900 }
1901 }
1902
1903 /* FIXME: We don't handle all cases here. */
1904 switch (cputype)
1905 {
1906 default:
1907 case 0:
1908#ifdef POWERMAC
1909 /* PowerPC Macs use the same magic numbers as RS/6000
1910 (because that's how they were bootstrapped originally),
1911 but they are always PowerPC architecture. */
1912 arch = bfd_arch_powerpc;
1913 machine = 0;
1914#else
1915 arch = bfd_arch_rs6000;
1916 machine = 6000;
1917#endif /* POWERMAC */
1918 break;
1919
1920 case 1:
1921 arch = bfd_arch_powerpc;
1922 machine = 601;
1923 break;
1924 case 2: /* 64 bit PowerPC */
1925 arch = bfd_arch_powerpc;
1926 machine = 620;
1927 break;
1928 case 3:
1929 arch = bfd_arch_powerpc;
1930 machine = 0;
1931 break;
1932 case 4:
1933 arch = bfd_arch_rs6000;
1934 machine = 6000;
1935 break;
1936 }
1937 }
1938 break;
1939#endif
1940
1941#ifdef WE32KMAGIC
1942 case WE32KMAGIC:
1943 arch = bfd_arch_we32k;
1944 machine = 0;
1945 break;
1946#endif
1947
1948#ifdef H8300MAGIC
1949 case H8300MAGIC:
1950 arch = bfd_arch_h8300;
1951 machine = bfd_mach_h8300;
1952 /* !! FIXME this probably isn't the right place for this */
1953 abfd->flags |= BFD_IS_RELAXABLE;
1954 break;
1955#endif
1956
1957#ifdef H8300HMAGIC
1958 case H8300HMAGIC:
1959 arch = bfd_arch_h8300;
1960 machine = bfd_mach_h8300h;
1961 /* !! FIXME this probably isn't the right place for this */
1962 abfd->flags |= BFD_IS_RELAXABLE;
1963 break;
1964#endif
1965
1966#ifdef H8300SMAGIC
1967 case H8300SMAGIC:
1968 arch = bfd_arch_h8300;
1969 machine = bfd_mach_h8300s;
1970 /* !! FIXME this probably isn't the right place for this */
1971 abfd->flags |= BFD_IS_RELAXABLE;
1972 break;
1973#endif
1974
1975#ifdef SH_ARCH_MAGIC_BIG
1976 case SH_ARCH_MAGIC_BIG:
1977 case SH_ARCH_MAGIC_LITTLE:
1978 arch = bfd_arch_sh;
1979 machine = 0;
1980 break;
1981#endif
1982
1983#ifdef H8500MAGIC
1984 case H8500MAGIC:
1985 arch = bfd_arch_h8500;
1986 machine = 0;
1987 break;
1988#endif
1989
1990#ifdef SPARCMAGIC
1991 case SPARCMAGIC:
1992#ifdef LYNXCOFFMAGIC
1993 case LYNXCOFFMAGIC:
1994#endif
1995 arch = bfd_arch_sparc;
1996 machine = 0;
1997 break;
1998#endif
1999
2000#ifdef TIC30MAGIC
2001 case TIC30MAGIC:
2002 arch = bfd_arch_tic30;
2003 break;
2004#endif
2005
2006#ifdef TIC80_ARCH_MAGIC
2007 case TIC80_ARCH_MAGIC:
2008 arch = bfd_arch_tic80;
2009 break;
2010#endif
2011
2012#ifdef MCOREMAGIC
2013 case MCOREMAGIC:
2014 arch = bfd_arch_mcore;
2015 break;
2016#endif
2017 default: /* Unreadable input file type */
2018 arch = bfd_arch_obscure;
2019 break;
2020 }
2021
2022 bfd_default_set_arch_mach (abfd, arch, machine);
2023 return true;
2024}
2025
2026#ifdef SYMNAME_IN_DEBUG
2027
2028static boolean symname_in_debug_hook
2029 PARAMS ((bfd *, struct internal_syment *));
2030
2031static boolean
2032symname_in_debug_hook (abfd, sym)
5f771d47 2033 bfd * abfd ATTRIBUTE_UNUSED;
252b5132
RH
2034 struct internal_syment *sym;
2035{
2036 return SYMNAME_IN_DEBUG (sym) ? true : false;
2037}
2038
2039#else
2040
2041#define symname_in_debug_hook \
2042 (boolean (*) PARAMS ((bfd *, struct internal_syment *))) bfd_false
2043
2044#endif
2045
2046#ifdef RS6000COFF_C
2047
2048/* Handle the csect auxent of a C_EXT or C_HIDEXT symbol. */
2049
2050static boolean coff_pointerize_aux_hook
2051 PARAMS ((bfd *, combined_entry_type *, combined_entry_type *,
2052 unsigned int, combined_entry_type *));
2053
2054/*ARGSUSED*/
2055static boolean
2056coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux)
5f771d47 2057 bfd *abfd ATTRIBUTE_UNUSED;
252b5132
RH
2058 combined_entry_type *table_base;
2059 combined_entry_type *symbol;
2060 unsigned int indaux;
2061 combined_entry_type *aux;
2062{
2063 int class = symbol->u.syment.n_sclass;
2064
2065 if ((class == C_EXT || class == C_HIDEXT)
2066 && indaux + 1 == symbol->u.syment.n_numaux)
2067 {
2068 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD)
2069 {
2070 aux->u.auxent.x_csect.x_scnlen.p =
2071 table_base + aux->u.auxent.x_csect.x_scnlen.l;
2072 aux->fix_scnlen = 1;
2073 }
2074
2075 /* Return true to indicate that the caller should not do any
2076 further work on this auxent. */
2077 return true;
2078 }
2079
2080 /* Return false to indicate that this auxent should be handled by
2081 the caller. */
2082 return false;
2083}
2084
2085#else
2086#ifdef I960
2087
2088/* We don't want to pointerize bal entries. */
2089
2090static boolean coff_pointerize_aux_hook
2091 PARAMS ((bfd *, combined_entry_type *, combined_entry_type *,
2092 unsigned int, combined_entry_type *));
2093
2094/*ARGSUSED*/
2095static boolean
2096coff_pointerize_aux_hook (abfd, table_base, symbol, indaux, aux)
5f771d47
ILT
2097 bfd *abfd ATTRIBUTE_UNUSED;
2098 combined_entry_type *table_base ATTRIBUTE_UNUSED;
252b5132
RH
2099 combined_entry_type *symbol;
2100 unsigned int indaux;
5f771d47 2101 combined_entry_type *aux ATTRIBUTE_UNUSED;
252b5132
RH
2102{
2103 /* Return true if we don't want to pointerize this aux entry, which
2104 is the case for the lastfirst aux entry for a C_LEAFPROC symbol. */
2105 return (indaux == 1
2106 && (symbol->u.syment.n_sclass == C_LEAFPROC
2107 || symbol->u.syment.n_sclass == C_LEAFSTAT
2108 || symbol->u.syment.n_sclass == C_LEAFEXT));
2109}
2110
2111#else /* ! I960 */
2112
2113#define coff_pointerize_aux_hook 0
2114
2115#endif /* ! I960 */
2116#endif /* ! RS6000COFF_C */
2117
2118/* Print an aux entry. This returns true if it has printed it. */
2119
2120static boolean coff_print_aux
2121 PARAMS ((bfd *, FILE *, combined_entry_type *, combined_entry_type *,
2122 combined_entry_type *, unsigned int));
2123
2124static boolean
2125coff_print_aux (abfd, file, table_base, symbol, aux, indaux)
5f771d47
ILT
2126 bfd *abfd ATTRIBUTE_UNUSED;
2127 FILE *file ATTRIBUTE_UNUSED;
2128 combined_entry_type *table_base ATTRIBUTE_UNUSED;
2129 combined_entry_type *symbol ATTRIBUTE_UNUSED;
2130 combined_entry_type *aux ATTRIBUTE_UNUSED;
2131 unsigned int indaux ATTRIBUTE_UNUSED;
252b5132
RH
2132{
2133#ifdef RS6000COFF_C
2134 if ((symbol->u.syment.n_sclass == C_EXT
2135 || symbol->u.syment.n_sclass == C_HIDEXT)
2136 && indaux + 1 == symbol->u.syment.n_numaux)
2137 {
2138 /* This is a csect entry. */
2139 fprintf (file, "AUX ");
2140 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
2141 {
2142 BFD_ASSERT (! aux->fix_scnlen);
2143 fprintf (file, "val %5ld", aux->u.auxent.x_csect.x_scnlen.l);
2144 }
2145 else
2146 {
2147 fprintf (file, "indx ");
2148 if (! aux->fix_scnlen)
2149 fprintf (file, "%4ld", aux->u.auxent.x_csect.x_scnlen.l);
2150 else
2151 fprintf (file, "%4ld",
2152 (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
2153 }
2154 fprintf (file,
2155 " prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u",
2156 aux->u.auxent.x_csect.x_parmhash,
2157 (unsigned int) aux->u.auxent.x_csect.x_snhash,
2158 SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
2159 SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
2160 (unsigned int) aux->u.auxent.x_csect.x_smclas,
2161 aux->u.auxent.x_csect.x_stab,
2162 (unsigned int) aux->u.auxent.x_csect.x_snstab);
2163 return true;
2164 }
2165#endif
2166
2167 /* Return false to indicate that no special action was taken. */
2168 return false;
2169}
2170
2171/*
2172SUBSUBSECTION
2173 Writing relocations
2174
2175 To write relocations, the back end steps though the
2176 canonical relocation table and create an
2177 @code{internal_reloc}. The symbol index to use is removed from
2178 the @code{offset} field in the symbol table supplied. The
2179 address comes directly from the sum of the section base
2180 address and the relocation offset; the type is dug directly
2181 from the howto field. Then the @code{internal_reloc} is
2182 swapped into the shape of an @code{external_reloc} and written
2183 out to disk.
2184
2185*/
2186
2187#ifdef TARG_AUX
2188
2189static int compare_arelent_ptr PARAMS ((const PTR, const PTR));
2190
2191/* AUX's ld wants relocations to be sorted */
2192static int
2193compare_arelent_ptr (x, y)
2194 const PTR x;
2195 const PTR y;
2196{
2197 const arelent **a = (const arelent **) x;
2198 const arelent **b = (const arelent **) y;
2199 bfd_size_type aadr = (*a)->address;
2200 bfd_size_type badr = (*b)->address;
2201
2202 return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
2203}
2204
2205#endif /* TARG_AUX */
2206
2207static boolean
2208coff_write_relocs (abfd, first_undef)
2209 bfd * abfd;
2210 int first_undef;
2211{
2212 asection *s;
2213
2214 for (s = abfd->sections; s != (asection *) NULL; s = s->next)
2215 {
2216 unsigned int i;
2217 struct external_reloc dst;
2218 arelent **p;
2219
2220#ifndef TARG_AUX
2221 p = s->orelocation;
2222#else
2223 /* sort relocations before we write them out */
2224 p = (arelent **) bfd_malloc (s->reloc_count * sizeof (arelent *));
2225 if (p == NULL && s->reloc_count > 0)
2226 return false;
2227 memcpy (p, s->orelocation, s->reloc_count * sizeof (arelent *));
2228 qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
2229#endif
2230
2231 if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
2232 return false;
2233 for (i = 0; i < s->reloc_count; i++)
2234 {
2235 struct internal_reloc n;
2236 arelent *q = p[i];
2237 memset ((PTR) & n, 0, sizeof (n));
2238
2239 /* Now we've renumbered the symbols we know where the
2240 undefined symbols live in the table. Check the reloc
2241 entries for symbols who's output bfd isn't the right one.
2242 This is because the symbol was undefined (which means
2243 that all the pointers are never made to point to the same
2244 place). This is a bad thing,'cause the symbols attached
2245 to the output bfd are indexed, so that the relocation
2246 entries know which symbol index they point to. So we
2247 have to look up the output symbol here. */
2248
2249 if (q->sym_ptr_ptr[0]->the_bfd != abfd)
2250 {
2251 int i;
2252 const char *sname = q->sym_ptr_ptr[0]->name;
2253 asymbol **outsyms = abfd->outsymbols;
2254 for (i = first_undef; outsyms[i]; i++)
2255 {
2256 const char *intable = outsyms[i]->name;
2257 if (strcmp (intable, sname) == 0) {
2258 /* got a hit, so repoint the reloc */
2259 q->sym_ptr_ptr = outsyms + i;
2260 break;
2261 }
2262 }
2263 }
2264
2265 n.r_vaddr = q->address + s->vma;
2266
2267#ifdef R_IHCONST
2268 /* The 29k const/consth reloc pair is a real kludge. The consth
2269 part doesn't have a symbol; it has an offset. So rebuilt
2270 that here. */
2271 if (q->howto->type == R_IHCONST)
2272 n.r_symndx = q->addend;
2273 else
2274#endif
2275 if (q->sym_ptr_ptr)
2276 {
6c784c9a
TW
2277#ifdef SECTION_RELATIVE_ABSOLUTE_SYMBOL_P
2278 if (SECTION_RELATIVE_ABSOLUTE_SYMBOL_P (q,s))
2279#else
252b5132 2280 if (q->sym_ptr_ptr == bfd_abs_section_ptr->symbol_ptr_ptr)
6c784c9a 2281#endif
252b5132
RH
2282 /* This is a relocation relative to the absolute symbol. */
2283 n.r_symndx = -1;
2284 else
2285 {
2286 n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
2287 /* Take notice if the symbol reloc points to a symbol
2288 we don't have in our symbol table. What should we
2289 do for this?? */
2290 if (n.r_symndx > obj_conv_table_size (abfd))
2291 abort ();
2292 }
2293 }
2294
2295#ifdef SWAP_OUT_RELOC_OFFSET
2296 n.r_offset = q->addend;
2297#endif
2298
2299#ifdef SELECT_RELOC
2300 /* Work out reloc type from what is required */
2301 SELECT_RELOC (n, q->howto);
2302#else
2303 n.r_type = q->howto->type;
2304#endif
2305 coff_swap_reloc_out (abfd, &n, &dst);
6b3b007b
NC
2306 if (bfd_write ((PTR) & dst, 1, bfd_coff_relsz (abfd), abfd)
2307 != bfd_coff_relsz (abfd))
252b5132
RH
2308 return false;
2309 }
2310
2311#ifdef TARG_AUX
2312 if (p != NULL)
2313 free (p);
2314#endif
2315 }
2316
2317 return true;
2318}
2319
2320/* Set flags and magic number of a coff file from architecture and machine
2321 type. Result is true if we can represent the arch&type, false if not. */
2322
2323static boolean
2324coff_set_flags (abfd, magicp, flagsp)
2325 bfd * abfd;
5f771d47
ILT
2326 unsigned int *magicp ATTRIBUTE_UNUSED;
2327 unsigned short *flagsp ATTRIBUTE_UNUSED;
252b5132
RH
2328{
2329 switch (bfd_get_arch (abfd))
2330 {
2331#ifdef Z8KMAGIC
2332 case bfd_arch_z8k:
2333 *magicp = Z8KMAGIC;
2334 switch (bfd_get_mach (abfd))
2335 {
2336 case bfd_mach_z8001:
2337 *flagsp = F_Z8001;
2338 break;
2339 case bfd_mach_z8002:
2340 *flagsp = F_Z8002;
2341 break;
2342 default:
2343 return false;
2344 }
2345 return true;
2346#endif
2347#ifdef I960ROMAGIC
2348
2349 case bfd_arch_i960:
2350
2351 {
2352 unsigned flags;
2353 *magicp = I960ROMAGIC;
2354 /*
2355 ((bfd_get_file_flags(abfd) & WP_TEXT) ? I960ROMAGIC :
2356 I960RWMAGIC); FIXME???
2357 */
2358 switch (bfd_get_mach (abfd))
2359 {
2360 case bfd_mach_i960_core:
2361 flags = F_I960CORE;
2362 break;
2363 case bfd_mach_i960_kb_sb:
2364 flags = F_I960KB;
2365 break;
2366 case bfd_mach_i960_mc:
2367 flags = F_I960MC;
2368 break;
2369 case bfd_mach_i960_xa:
2370 flags = F_I960XA;
2371 break;
2372 case bfd_mach_i960_ca:
2373 flags = F_I960CA;
2374 break;
2375 case bfd_mach_i960_ka_sa:
2376 flags = F_I960KA;
2377 break;
2378 case bfd_mach_i960_jx:
2379 flags = F_I960JX;
2380 break;
2381 case bfd_mach_i960_hx:
2382 flags = F_I960HX;
2383 break;
2384 default:
2385 return false;
2386 }
2387 *flagsp = flags;
2388 return true;
2389 }
2390 break;
2391#endif
2392
2393#ifdef TIC30MAGIC
2394 case bfd_arch_tic30:
2395 *magicp = TIC30MAGIC;
2396 return true;
2397#endif
2398#ifdef TIC80_ARCH_MAGIC
2399 case bfd_arch_tic80:
2400 *magicp = TIC80_ARCH_MAGIC;
2401 return true;
2402#endif
2403#ifdef ARMMAGIC
2404 case bfd_arch_arm:
2405 * magicp = ARMMAGIC;
2406 * flagsp = 0;
2407 if (APCS_SET (abfd))
2408 {
2409 if (APCS_26_FLAG (abfd))
2410 * flagsp |= F_APCS26;
2411
2412 if (APCS_FLOAT_FLAG (abfd))
2413 * flagsp |= F_APCS_FLOAT;
2414
2415 if (PIC_FLAG (abfd))
948221a8 2416 * flagsp |= F_PIC;
252b5132
RH
2417 }
2418 if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
2419 * flagsp |= F_INTERWORK;
2420 switch (bfd_get_mach (abfd))
2421 {
2422 case bfd_mach_arm_2: * flagsp |= F_ARM_2; break;
2423 case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
2424 case bfd_mach_arm_3: * flagsp |= F_ARM_3; break;
2425 case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
2426 case bfd_mach_arm_4: * flagsp |= F_ARM_4; break;
2427 case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
478d07d6
NC
2428 case bfd_mach_arm_5: * flagsp |= F_ARM_5; break;
2429 case bfd_mach_arm_5T: * flagsp |= F_ARM_5; break; /* XXX - we do not have an F_ARM_5T */
252b5132
RH
2430 }
2431 return true;
2432#endif
2433#ifdef PPCMAGIC
2434 case bfd_arch_powerpc:
2435 *magicp = PPCMAGIC;
2436 return true;
2437 break;
2438#endif
2439#ifdef I386MAGIC
2440 case bfd_arch_i386:
2441 *magicp = I386MAGIC;
2442#ifdef LYNXOS
2443 /* Just overwrite the usual value if we're doing Lynx. */
2444 *magicp = LYNXCOFFMAGIC;
2445#endif
2446 return true;
2447 break;
2448#endif
2449#ifdef I860MAGIC
2450 case bfd_arch_i860:
2451 *magicp = I860MAGIC;
2452 return true;
2453 break;
2454#endif
2455#ifdef MC68MAGIC
2456 case bfd_arch_m68k:
2457#ifdef APOLLOM68KMAGIC
2458 *magicp = APOLLO_COFF_VERSION_NUMBER;
2459#else
2460 /* NAMES_HAVE_UNDERSCORE may be defined by coff-u68k.c. */
2461#ifdef NAMES_HAVE_UNDERSCORE
2462 *magicp = MC68KBCSMAGIC;
2463#else
2464 *magicp = MC68MAGIC;
2465#endif
2466#endif
2467#ifdef LYNXOS
2468 /* Just overwrite the usual value if we're doing Lynx. */
2469 *magicp = LYNXCOFFMAGIC;
2470#endif
2471 return true;
2472 break;
2473#endif
2474
2475#ifdef MC88MAGIC
2476 case bfd_arch_m88k:
2477 *magicp = MC88OMAGIC;
2478 return true;
2479 break;
2480#endif
2481#ifdef H8300MAGIC
2482 case bfd_arch_h8300:
2483 switch (bfd_get_mach (abfd))
2484 {
2485 case bfd_mach_h8300:
2486 *magicp = H8300MAGIC;
2487 return true;
2488 case bfd_mach_h8300h:
2489 *magicp = H8300HMAGIC;
2490 return true;
2491 case bfd_mach_h8300s:
2492 *magicp = H8300SMAGIC;
2493 return true;
2494 }
2495 break;
2496#endif
2497
2498#ifdef SH_ARCH_MAGIC_BIG
2499 case bfd_arch_sh:
2500 if (bfd_big_endian (abfd))
2501 *magicp = SH_ARCH_MAGIC_BIG;
2502 else
2503 *magicp = SH_ARCH_MAGIC_LITTLE;
2504 return true;
2505 break;
2506#endif
2507
2508#ifdef SPARCMAGIC
2509 case bfd_arch_sparc:
2510 *magicp = SPARCMAGIC;
2511#ifdef LYNXOS
2512 /* Just overwrite the usual value if we're doing Lynx. */
2513 *magicp = LYNXCOFFMAGIC;
2514#endif
2515 return true;
2516 break;
2517#endif
2518
2519#ifdef H8500MAGIC
2520 case bfd_arch_h8500:
2521 *magicp = H8500MAGIC;
2522 return true;
2523 break;
2524#endif
2525#ifdef A29K_MAGIC_BIG
2526 case bfd_arch_a29k:
2527 if (bfd_big_endian (abfd))
2528 *magicp = A29K_MAGIC_BIG;
2529 else
2530 *magicp = A29K_MAGIC_LITTLE;
2531 return true;
2532 break;
2533#endif
2534
2535#ifdef WE32KMAGIC
2536 case bfd_arch_we32k:
2537 *magicp = WE32KMAGIC;
2538 return true;
2539 break;
2540#endif
2541
2542#ifdef U802TOCMAGIC
2543 case bfd_arch_rs6000:
2544#ifndef PPCMAGIC
2545 case bfd_arch_powerpc:
2546#endif
2547 *magicp = U802TOCMAGIC;
2548 return true;
2549 break;
2550#endif
2551
2552#ifdef MCOREMAGIC
2553 case bfd_arch_mcore:
2554 * magicp = MCOREMAGIC;
2555 return true;
2556#endif
2557
2558 default: /* Unknown architecture */
2559 /* return false; -- fall through to "return false" below, to avoid
2560 "statement never reached" errors on the one below. */
2561 break;
2562 }
2563
2564 return false;
2565}
2566
2567
2568static boolean
2569coff_set_arch_mach (abfd, arch, machine)
2570 bfd * abfd;
2571 enum bfd_architecture arch;
2572 unsigned long machine;
2573{
2574 unsigned dummy1;
2575 unsigned short dummy2;
2576
2577 if (! bfd_default_set_arch_mach (abfd, arch, machine))
2578 return false;
2579
2580 if (arch != bfd_arch_unknown &&
2581 coff_set_flags (abfd, &dummy1, &dummy2) != true)
2582 return false; /* We can't represent this type */
2583
2584 return true; /* We're easy ... */
2585}
2586
75cc7189
ILT
2587#ifdef COFF_IMAGE_WITH_PE
2588
2589/* This is used to sort sections by VMA, as required by PE image
2590 files. */
2591
2592static int sort_by_secaddr PARAMS ((const PTR, const PTR));
2593
2594static int
2595sort_by_secaddr (arg1, arg2)
2596 const PTR arg1;
2597 const PTR arg2;
2598{
2599 const asection *a = *(const asection **) arg1;
2600 const asection *b = *(const asection **) arg2;
2601
2602 if (a->vma < b->vma)
2603 return -1;
2604 else if (a->vma > b->vma)
2605 return 1;
2606 else
2607 return 0;
2608}
2609
2610#endif /* COFF_IMAGE_WITH_PE */
252b5132
RH
2611
2612/* Calculate the file position for each section. */
2613
2614#ifndef I960
2615#define ALIGN_SECTIONS_IN_FILE
2616#endif
2617#ifdef TIC80COFF
2618#undef ALIGN_SECTIONS_IN_FILE
2619#endif
2620
2621static boolean
2622coff_compute_section_file_positions (abfd)
2623 bfd * abfd;
2624{
2625 asection *current;
2626 asection *previous = (asection *) NULL;
6b3b007b 2627 file_ptr sofar = bfd_coff_filhsz (abfd);
252b5132 2628 boolean align_adjust;
252b5132
RH
2629#ifdef ALIGN_SECTIONS_IN_FILE
2630 file_ptr old_sofar;
2631#endif
2632
2633#ifdef RS6000COFF_C
2634 /* On XCOFF, if we have symbols, set up the .debug section. */
2635 if (bfd_get_symcount (abfd) > 0)
2636 {
2637 bfd_size_type sz;
2638 bfd_size_type i, symcount;
2639 asymbol **symp;
2640
2641 sz = 0;
2642 symcount = bfd_get_symcount (abfd);
2643 for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
2644 {
2645 coff_symbol_type *cf;
2646
2647 cf = coff_symbol_from (abfd, *symp);
2648 if (cf != NULL
2649 && cf->native != NULL
2650 && SYMNAME_IN_DEBUG (&cf->native->u.syment))
2651 {
2652 size_t len;
2653
2654 len = strlen (bfd_asymbol_name (*symp));
2655 if (len > SYMNMLEN)
2656 sz += len + 3;
2657 }
2658 }
2659 if (sz > 0)
2660 {
2661 asection *dsec;
2662
2663 dsec = bfd_make_section_old_way (abfd, ".debug");
2664 if (dsec == NULL)
2665 abort ();
2666 dsec->_raw_size = sz;
2667 dsec->flags |= SEC_HAS_CONTENTS;
2668 }
2669 }
2670#endif
2671
2672#ifdef COFF_IMAGE_WITH_PE
2673 int page_size;
2674 if (coff_data (abfd)->link_info)
2675 {
2676 page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
2677 }
2678 else
2679 page_size = PE_DEF_FILE_ALIGNMENT;
2680#else
2681#ifdef COFF_PAGE_SIZE
2682 int page_size = COFF_PAGE_SIZE;
2683#endif
2684#endif
2685
2686 if (bfd_get_start_address (abfd))
2687 {
2688 /* A start address may have been added to the original file. In this
2689 case it will need an optional header to record it. */
2690 abfd->flags |= EXEC_P;
2691 }
2692
2693 if (abfd->flags & EXEC_P)
6b3b007b 2694 sofar += bfd_coff_aoutsz (abfd);
252b5132
RH
2695#ifdef RS6000COFF_C
2696 else if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 2697 sofar += bfd_coff_aoutsz (abfd);
252b5132
RH
2698 else
2699 sofar += SMALL_AOUTSZ;
2700#endif
2701
6b3b007b 2702 sofar += abfd->section_count * bfd_coff_scnhsz (abfd);
252b5132
RH
2703
2704#ifdef RS6000COFF_C
2705 /* XCOFF handles overflows in the reloc and line number count fields
2706 by allocating a new section header to hold the correct counts. */
2707 for (current = abfd->sections; current != NULL; current = current->next)
2708 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
6b3b007b 2709 sofar += bfd_coff_scnhsz (abfd);
252b5132
RH
2710#endif
2711
75cc7189
ILT
2712#ifdef COFF_IMAGE_WITH_PE
2713 {
2714 /* PE requires the sections to be in memory order when listed in
2715 the section headers. It also does not like empty loadable
2716 sections. The sections apparently do not have to be in the
2717 right order in the image file itself, but we do need to get the
2718 target_index values right. */
2719
2720 int count;
2721 asection **section_list;
2722 int i;
2723 int target_index;
2724
2725 count = 0;
2726 for (current = abfd->sections; current != NULL; current = current->next)
2727 ++count;
2728
2729 /* We allocate an extra cell to simplify the final loop. */
2730 section_list = bfd_malloc (sizeof (struct asection *) * (count + 1));
2731 if (section_list == NULL)
2732 return false;
2733
2734 i = 0;
2735 for (current = abfd->sections; current != NULL; current = current->next)
2736 {
2737 section_list[i] = current;
2738 ++i;
2739 }
2740 section_list[i] = NULL;
2741
2742 qsort (section_list, count, sizeof (asection *), sort_by_secaddr);
2743
2744 /* Rethread the linked list into sorted order; at the same time,
2745 assign target_index values. */
2746 target_index = 1;
2747 abfd->sections = section_list[0];
2748 for (i = 0; i < count; i++)
2749 {
2750 current = section_list[i];
2751 current->next = section_list[i + 1];
2752
2753 /* Later, if the section has zero size, we'll be throwing it
2754 away, so we don't want to number it now. Note that having
2755 a zero size and having real contents are different
2756 concepts: .bss has no contents, but (usually) non-zero
2757 size. */
2758 if (current->_raw_size == 0)
2759 {
2760 /* Discard. However, it still might have (valid) symbols
2761 in it, so arbitrarily set it to section 1 (indexing is
2762 1-based here; usually .text). __end__ and other
2763 contents of .endsection really have this happen.
2764 FIXME: This seems somewhat dubious. */
2765 current->target_index = 1;
2766 }
2767 else
2768 current->target_index = target_index++;
2769 }
2770
2fca4467 2771 free (section_list);
75cc7189
ILT
2772 }
2773#else /* ! COFF_IMAGE_WITH_PE */
2774 {
2775 /* Set the target_index field. */
2776 int target_index;
2777
2778 target_index = 1;
2779 for (current = abfd->sections; current != NULL; current = current->next)
2780 current->target_index = target_index++;
2781 }
2782#endif /* ! COFF_IMAGE_WITH_PE */
2783
252b5132 2784 align_adjust = false;
75cc7189 2785 for (current = abfd->sections;
252b5132 2786 current != (asection *) NULL;
75cc7189 2787 current = current->next)
252b5132
RH
2788 {
2789#ifdef COFF_IMAGE_WITH_PE
75cc7189
ILT
2790 /* With PE we have to pad each section to be a multiple of its
2791 page size too, and remember both sizes. */
2792 if (coff_section_data (abfd, current) == NULL)
252b5132 2793 {
75cc7189
ILT
2794 current->used_by_bfd =
2795 (PTR) bfd_zalloc (abfd, sizeof (struct coff_section_tdata));
2796 if (current->used_by_bfd == NULL)
2797 return false;
252b5132 2798 }
75cc7189
ILT
2799 if (pei_section_data (abfd, current) == NULL)
2800 {
2801 coff_section_data (abfd, current)->tdata =
2802 (PTR) bfd_zalloc (abfd, sizeof (struct pei_section_tdata));
2803 if (coff_section_data (abfd, current)->tdata == NULL)
2804 return false;
2805 }
2806 if (pei_section_data (abfd, current)->virt_size == 0)
2807 pei_section_data (abfd, current)->virt_size = current->_raw_size;
252b5132
RH
2808#endif
2809
75cc7189 2810 /* Only deal with sections which have contents. */
252b5132
RH
2811 if (!(current->flags & SEC_HAS_CONTENTS))
2812 continue;
2813
75cc7189
ILT
2814#ifdef COFF_IMAGE_WITH_PE
2815 /* Make sure we skip empty sections in a PE image. */
2816 if (current->_raw_size == 0)
2817 continue;
2818#endif
2819
252b5132
RH
2820 /* Align the sections in the file to the same boundary on
2821 which they are aligned in virtual memory. I960 doesn't
2822 do this (FIXME) so we can stay in sync with Intel. 960
2823 doesn't yet page from files... */
2824#ifdef ALIGN_SECTIONS_IN_FILE
2825 if ((abfd->flags & EXEC_P) != 0)
2826 {
2827 /* make sure this section is aligned on the right boundary - by
2828 padding the previous section up if necessary */
2829
2830 old_sofar = sofar;
2831 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
2832 if (previous != (asection *) NULL)
2833 {
2834 previous->_raw_size += sofar - old_sofar;
2835 }
2836 }
2837
2838#endif
2839
2840 /* In demand paged files the low order bits of the file offset
2841 must match the low order bits of the virtual address. */
2842#ifdef COFF_PAGE_SIZE
2843 if ((abfd->flags & D_PAGED) != 0
2844 && (current->flags & SEC_ALLOC) != 0)
2845 sofar += (current->vma - sofar) % page_size;
2846#endif
2847 current->filepos = sofar;
2848
2849#ifdef COFF_IMAGE_WITH_PE
75cc7189 2850 /* Set the padded size. */
252b5132
RH
2851 current->_raw_size = (current->_raw_size + page_size -1) & -page_size;
2852#endif
2853
2854 sofar += current->_raw_size;
2855
2856#ifdef ALIGN_SECTIONS_IN_FILE
2857 /* make sure that this section is of the right size too */
2858 if ((abfd->flags & EXEC_P) == 0)
2859 {
2860 bfd_size_type old_size;
2861
2862 old_size = current->_raw_size;
2863 current->_raw_size = BFD_ALIGN (current->_raw_size,
2864 1 << current->alignment_power);
2865 align_adjust = current->_raw_size != old_size;
2866 sofar += current->_raw_size - old_size;
2867 }
2868 else
2869 {
2870 old_sofar = sofar;
2871 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
2872 align_adjust = sofar != old_sofar;
2873 current->_raw_size += sofar - old_sofar;
2874 }
2875#endif
2876
2877#ifdef COFF_IMAGE_WITH_PE
2878 /* For PE we need to make sure we pad out to the aligned
2879 _raw_size, in case the caller only writes out data to the
2880 unaligned _raw_size. */
2881 if (pei_section_data (abfd, current)->virt_size < current->_raw_size)
2882 align_adjust = true;
2883#endif
2884
2885#ifdef _LIB
2886 /* Force .lib sections to start at zero. The vma is then
2887 incremented in coff_set_section_contents. This is right for
2888 SVR3.2. */
2889 if (strcmp (current->name, _LIB) == 0)
2890 bfd_set_section_vma (abfd, current, 0);
2891#endif
2892
2893 previous = current;
2894 }
2895
2896 /* It is now safe to write to the output file. If we needed an
2897 alignment adjustment for the last section, then make sure that
2898 there is a byte at offset sofar. If there are no symbols and no
2899 relocs, then nothing follows the last section. If we don't force
2900 the last byte out, then the file may appear to be truncated. */
2901 if (align_adjust)
2902 {
2903 bfd_byte b;
2904
2905 b = 0;
2906 if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
2907 || bfd_write (&b, 1, 1, abfd) != 1)
2908 return false;
2909 }
2910
2911 /* Make sure the relocations are aligned. We don't need to make
2912 sure that this byte exists, because it will only matter if there
2913 really are relocs. */
2914 sofar = BFD_ALIGN (sofar, 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
2915
2916 obj_relocbase (abfd) = sofar;
2917 abfd->output_has_begun = true;
2918
2919 return true;
2920}
2921
2922#if 0
2923
2924/* This can never work, because it is called too late--after the
2925 section positions have been set. I can't figure out what it is
2926 for, so I am going to disable it--Ian Taylor 20 March 1996. */
2927
2928/* If .file, .text, .data, .bss symbols are missing, add them. */
2929/* @@ Should we only be adding missing symbols, or overriding the aux
2930 values for existing section symbols? */
2931static boolean
2932coff_add_missing_symbols (abfd)
2933 bfd *abfd;
2934{
2935 unsigned int nsyms = bfd_get_symcount (abfd);
2936 asymbol **sympp = abfd->outsymbols;
2937 asymbol **sympp2;
2938 unsigned int i;
2939 int need_text = 1, need_data = 1, need_bss = 1, need_file = 1;
2940
2941 for (i = 0; i < nsyms; i++)
2942 {
2943 coff_symbol_type *csym = coff_symbol_from (abfd, sympp[i]);
2944 CONST char *name;
2945 if (csym)
2946 {
2947 /* only do this if there is a coff representation of the input
2948 symbol */
2949 if (csym->native && csym->native->u.syment.n_sclass == C_FILE)
2950 {
2951 need_file = 0;
2952 continue;
2953 }
2954 name = csym->symbol.name;
2955 if (!name)
2956 continue;
2957 if (!strcmp (name, _TEXT))
2958 need_text = 0;
2959#ifdef APOLLO_M68
2960 else if (!strcmp (name, ".wtext"))
2961 need_text = 0;
2962#endif
2963 else if (!strcmp (name, _DATA))
2964 need_data = 0;
2965 else if (!strcmp (name, _BSS))
2966 need_bss = 0;
2967 }
2968 }
2969 /* Now i == bfd_get_symcount (abfd). */
2970 /* @@ For now, don't deal with .file symbol. */
2971 need_file = 0;
2972
2973 if (!need_text && !need_data && !need_bss && !need_file)
2974 return true;
2975 nsyms += need_text + need_data + need_bss + need_file;
2976 sympp2 = (asymbol **) bfd_alloc (abfd, nsyms * sizeof (asymbol *));
2977 if (!sympp2)
2978 return false;
2979 memcpy (sympp2, sympp, i * sizeof (asymbol *));
2980 if (need_file)
2981 {
2982 /* @@ Generate fake .file symbol, in sympp2[i], and increment i. */
2983 abort ();
2984 }
2985 if (need_text)
2986 sympp2[i++] = coff_section_symbol (abfd, _TEXT);
2987 if (need_data)
2988 sympp2[i++] = coff_section_symbol (abfd, _DATA);
2989 if (need_bss)
2990 sympp2[i++] = coff_section_symbol (abfd, _BSS);
2991 BFD_ASSERT (i == nsyms);
2992 bfd_set_symtab (abfd, sympp2, nsyms);
2993 return true;
2994}
2995
2996#endif /* 0 */
2997
2998/* SUPPRESS 558 */
2999/* SUPPRESS 529 */
3000static boolean
3001coff_write_object_contents (abfd)
3002 bfd * abfd;
3003{
3004 asection *current;
3005 boolean hasrelocs = false;
3006 boolean haslinno = false;
4cfec37b 3007 boolean hasdebug = false;
252b5132
RH
3008 file_ptr scn_base;
3009 file_ptr reloc_base;
3010 file_ptr lineno_base;
3011 file_ptr sym_base;
3012 unsigned long reloc_size = 0;
3013 unsigned long lnno_size = 0;
3014 boolean long_section_names;
3015 asection *text_sec = NULL;
3016 asection *data_sec = NULL;
3017 asection *bss_sec = NULL;
3018 struct internal_filehdr internal_f;
3019 struct internal_aouthdr internal_a;
3020#ifdef COFF_LONG_SECTION_NAMES
3021 size_t string_size = STRING_SIZE_SIZE;
3022#endif
3023
3024 bfd_set_error (bfd_error_system_call);
3025
3026 /* Make a pass through the symbol table to count line number entries and
3027 put them into the correct asections */
3028
6b3b007b 3029 lnno_size = coff_count_linenumbers (abfd) * bfd_coff_linesz (abfd);
252b5132
RH
3030
3031 if (abfd->output_has_begun == false)
3032 {
3033 if (! coff_compute_section_file_positions (abfd))
3034 return false;
3035 }
3036
3037 reloc_base = obj_relocbase (abfd);
3038
3039 /* Work out the size of the reloc and linno areas */
3040
3041 for (current = abfd->sections; current != NULL; current =
3042 current->next)
6b3b007b 3043 reloc_size += current->reloc_count * bfd_coff_relsz (abfd);
252b5132
RH
3044
3045 lineno_base = reloc_base + reloc_size;
3046 sym_base = lineno_base + lnno_size;
3047
3048 /* Indicate in each section->line_filepos its actual file address */
3049 for (current = abfd->sections; current != NULL; current =
3050 current->next)
3051 {
3052 if (current->lineno_count)
3053 {
3054 current->line_filepos = lineno_base;
3055 current->moving_line_filepos = lineno_base;
6b3b007b 3056 lineno_base += current->lineno_count * bfd_coff_linesz (abfd);
252b5132
RH
3057 }
3058 else
3059 {
3060 current->line_filepos = 0;
3061 }
3062 if (current->reloc_count)
3063 {
3064 current->rel_filepos = reloc_base;
6b3b007b 3065 reloc_base += current->reloc_count * bfd_coff_relsz (abfd);
252b5132
RH
3066 }
3067 else
3068 {
3069 current->rel_filepos = 0;
3070 }
3071 }
3072
3073 /* Write section headers to the file. */
3074 internal_f.f_nscns = 0;
3075
3076 if ((abfd->flags & EXEC_P) != 0)
6b3b007b 3077 scn_base = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
252b5132
RH
3078 else
3079 {
6b3b007b 3080 scn_base = bfd_coff_filhsz (abfd);
252b5132
RH
3081#ifdef RS6000COFF_C
3082 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3083 scn_base += bfd_coff_aoutsz (abfd);
252b5132
RH
3084 else
3085 scn_base += SMALL_AOUTSZ;
3086#endif
3087 }
3088
3089 if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
3090 return false;
3091
3092 long_section_names = false;
3093 for (current = abfd->sections;
3094 current != NULL;
3095 current = current->next)
3096 {
3097 struct internal_scnhdr section;
4cfec37b 3098 boolean is_reloc_section = false;
252b5132
RH
3099
3100#ifdef COFF_IMAGE_WITH_PE
3101 if (strcmp (current->name, ".reloc") == 0)
3102 {
4cfec37b
ILT
3103 is_reloc_section = true;
3104 hasrelocs = true;
252b5132
RH
3105 pe_data (abfd)->has_reloc_section = 1;
3106 }
3107#endif
3108
252b5132
RH
3109 internal_f.f_nscns++;
3110
3111 strncpy (section.s_name, current->name, SCNNMLEN);
3112
3113#ifdef COFF_LONG_SECTION_NAMES
3114 /* Handle long section names as in PE. This must be compatible
00692651 3115 with the code in coff_write_symbols and _bfd_coff_final_link. */
252b5132
RH
3116 {
3117 size_t len;
3118
3119 len = strlen (current->name);
3120 if (len > SCNNMLEN)
3121 {
3122 memset (section.s_name, 0, SCNNMLEN);
3123 sprintf (section.s_name, "/%lu", (unsigned long) string_size);
3124 string_size += len + 1;
3125 long_section_names = true;
3126 }
3127 }
3128#endif
3129
3130#ifdef _LIB
3131 /* Always set s_vaddr of .lib to 0. This is right for SVR3.2
3132 Ian Taylor <ian@cygnus.com>. */
3133 if (strcmp (current->name, _LIB) == 0)
3134 section.s_vaddr = 0;
3135 else
3136#endif
3137 section.s_vaddr = current->vma;
3138 section.s_paddr = current->lma;
3139 section.s_size = current->_raw_size;
3140
3141#ifdef COFF_WITH_PE
3142 section.s_paddr = 0;
3143#endif
3144#ifdef COFF_IMAGE_WITH_PE
3145 /* Reminder: s_paddr holds the virtual size of the section. */
3146 if (coff_section_data (abfd, current) != NULL
3147 && pei_section_data (abfd, current) != NULL)
3148 section.s_paddr = pei_section_data (abfd, current)->virt_size;
3149 else
3150 section.s_paddr = 0;
3151#endif
3152
3153 /*
3154 If this section has no size or is unloadable then the scnptr
3155 will be 0 too
3156 */
3157 if (current->_raw_size == 0 ||
3158 (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3159 {
3160 section.s_scnptr = 0;
3161 }
3162 else
3163 {
3164 section.s_scnptr = current->filepos;
3165 }
3166 section.s_relptr = current->rel_filepos;
3167 section.s_lnnoptr = current->line_filepos;
3168 section.s_nreloc = current->reloc_count;
3169 section.s_nlnno = current->lineno_count;
79207490
ILT
3170#ifndef COFF_IMAGE_WITH_PE
3171 /* In PEI, relocs come in the .reloc section. */
252b5132
RH
3172 if (current->reloc_count != 0)
3173 hasrelocs = true;
79207490 3174#endif
252b5132
RH
3175 if (current->lineno_count != 0)
3176 haslinno = true;
4cfec37b
ILT
3177 if ((current->flags & SEC_DEBUGGING) != 0
3178 && ! is_reloc_section)
3179 hasdebug = true;
252b5132
RH
3180
3181#ifdef RS6000COFF_C
3182 /* Indicate the use of an XCOFF overflow section header. */
3183 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3184 {
3185 section.s_nreloc = 0xffff;
3186 section.s_nlnno = 0xffff;
3187 }
3188#endif
3189
3190 section.s_flags = sec_to_styp_flags (current->name, current->flags);
3191
3192 if (!strcmp (current->name, _TEXT))
3193 {
3194 text_sec = current;
3195 }
3196 else if (!strcmp (current->name, _DATA))
3197 {
3198 data_sec = current;
3199 }
3200 else if (!strcmp (current->name, _BSS))
3201 {
3202 bss_sec = current;
3203 }
3204
3205#ifdef I960
3206 section.s_align = (current->alignment_power
3207 ? 1 << current->alignment_power
3208 : 0);
3209#else
3210#ifdef TIC80COFF
3211 section.s_flags |= (current->alignment_power & 0xF) << 8;
3212#endif
3213#endif
3214
3215#ifdef COFF_IMAGE_WITH_PE
00692651
ILT
3216 /* Suppress output of the sections if they are null. ld
3217 includes the bss and data sections even if there is no size
3218 assigned to them. NT loader doesn't like it if these section
3219 headers are included if the sections themselves are not
3220 needed. See also coff_compute_section_file_positions. */
252b5132
RH
3221 if (section.s_size == 0)
3222 internal_f.f_nscns--;
3223 else
3224#endif
3225 {
3226 SCNHDR buff;
3227 if (coff_swap_scnhdr_out (abfd, &section, &buff) == 0
6b3b007b
NC
3228 || bfd_write ((PTR) (&buff), 1, bfd_coff_scnhsz (abfd), abfd)
3229 != bfd_coff_scnhsz (abfd))
252b5132
RH
3230 return false;
3231 }
3232
3233#ifdef COFF_WITH_PE
3234 /* PE stores COMDAT section information in the symbol table. If
3235 this section is supposed to have some COMDAT info, track down
3236 the symbol in the symbol table and modify it. */
3237 if ((current->flags & SEC_LINK_ONCE) != 0)
3238 {
3239 unsigned int i, count;
3240 asymbol **psym;
3241 coff_symbol_type *csym = NULL;
3242 asymbol **psymsec;
3243
3244 psymsec = NULL;
3245 count = bfd_get_symcount (abfd);
3246 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3247 {
3248 if ((*psym)->section != current)
3249 continue;
3250
3251 /* Remember the location of the first symbol in this
3252 section. */
3253 if (psymsec == NULL)
3254 psymsec = psym;
3255
3256 /* See if this is the section symbol. */
3257 if (strcmp ((*psym)->name, current->name) == 0)
3258 {
3259 csym = coff_symbol_from (abfd, *psym);
3260 if (csym == NULL
3261 || csym->native == NULL
3262 || csym->native->u.syment.n_numaux < 1
3263 || csym->native->u.syment.n_sclass != C_STAT
3264 || csym->native->u.syment.n_type != T_NULL)
3265 continue;
3266
3267 /* Here *PSYM is the section symbol for CURRENT. */
3268
3269 break;
3270 }
3271 }
3272
3273 /* Did we find it?
3274 Note that we might not if we're converting the file from
3275 some other object file format. */
3276 if (i < count)
3277 {
3278 combined_entry_type *aux;
3279
3280 /* We don't touch the x_checksum field. The
3281 x_associated field is not currently supported. */
3282
3283 aux = csym->native + 1;
3284 switch (current->flags & SEC_LINK_DUPLICATES)
3285 {
3286 case SEC_LINK_DUPLICATES_DISCARD:
3287 aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
3288 break;
3289
3290 case SEC_LINK_DUPLICATES_ONE_ONLY:
3291 aux->u.auxent.x_scn.x_comdat =
3292 IMAGE_COMDAT_SELECT_NODUPLICATES;
3293 break;
3294
3295 case SEC_LINK_DUPLICATES_SAME_SIZE:
3296 aux->u.auxent.x_scn.x_comdat =
3297 IMAGE_COMDAT_SELECT_SAME_SIZE;
3298 break;
3299
3300 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
3301 aux->u.auxent.x_scn.x_comdat =
3302 IMAGE_COMDAT_SELECT_EXACT_MATCH;
3303 break;
3304 }
3305
3306 /* The COMDAT symbol must be the first symbol from this
3307 section in the symbol table. In order to make this
3308 work, we move the COMDAT symbol before the first
3309 symbol we found in the search above. It's OK to
3310 rearrange the symbol table at this point, because
3311 coff_renumber_symbols is going to rearrange it
3312 further and fix up all the aux entries. */
3313 if (psym != psymsec)
3314 {
3315 asymbol *hold;
3316 asymbol **pcopy;
3317
3318 hold = *psym;
3319 for (pcopy = psym; pcopy > psymsec; pcopy--)
3320 pcopy[0] = pcopy[-1];
3321 *psymsec = hold;
3322 }
3323 }
3324 }
3325#endif /* COFF_WITH_PE */
3326 }
3327
3328#ifdef RS6000COFF_C
3329 /* XCOFF handles overflows in the reloc and line number count fields
3330 by creating a new section header to hold the correct values. */
3331 for (current = abfd->sections; current != NULL; current = current->next)
3332 {
3333 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3334 {
3335 struct internal_scnhdr scnhdr;
3336 SCNHDR buff;
3337
3338 internal_f.f_nscns++;
3339 strncpy (&(scnhdr.s_name[0]), current->name, 8);
3340 scnhdr.s_paddr = current->reloc_count;
3341 scnhdr.s_vaddr = current->lineno_count;
3342 scnhdr.s_size = 0;
3343 scnhdr.s_scnptr = 0;
3344 scnhdr.s_relptr = current->rel_filepos;
3345 scnhdr.s_lnnoptr = current->line_filepos;
3346 scnhdr.s_nreloc = current->target_index;
3347 scnhdr.s_nlnno = current->target_index;
3348 scnhdr.s_flags = STYP_OVRFLO;
3349 if (coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
6b3b007b
NC
3350 || bfd_write ((PTR) &buff, 1, bfd_coff_scnhsz (abfd), abfd)
3351 != bfd_coff_scnhsz (abfd))
252b5132
RH
3352 return false;
3353 }
3354 }
3355#endif
3356
3357 /* OK, now set up the filehdr... */
3358
3359 /* Don't include the internal abs section in the section count */
3360
3361 /*
3362 We will NOT put a fucking timestamp in the header here. Every time you
3363 put it back, I will come in and take it out again. I'm sorry. This
3364 field does not belong here. We fill it with a 0 so it compares the
3365 same but is not a reasonable time. -- gnu@cygnus.com
3366 */
3367 internal_f.f_timdat = 0;
3368
3369 internal_f.f_flags = 0;
3370
3371 if (abfd->flags & EXEC_P)
6b3b007b 3372 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
252b5132
RH
3373 else
3374 {
3375 internal_f.f_opthdr = 0;
3376#ifdef RS6000COFF_C
3377 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3378 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
252b5132
RH
3379 else
3380 internal_f.f_opthdr = SMALL_AOUTSZ;
3381#endif
3382 }
3383
3384 if (!hasrelocs)
3385 internal_f.f_flags |= F_RELFLG;
3386 if (!haslinno)
3387 internal_f.f_flags |= F_LNNO;
3388 if (abfd->flags & EXEC_P)
3389 internal_f.f_flags |= F_EXEC;
4cfec37b
ILT
3390#ifdef COFF_IMAGE_WITH_PE
3391 if (! hasdebug)
3392 internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
3393#endif
252b5132 3394
8a1ad8e7 3395#ifndef COFF_WITH_PE
252b5132
RH
3396 if (bfd_little_endian (abfd))
3397 internal_f.f_flags |= F_AR32WR;
3398 else
3399 internal_f.f_flags |= F_AR32W;
8a1ad8e7 3400#endif
252b5132
RH
3401
3402#ifdef TIC80_TARGET_ID
3403 internal_f.f_target_id = TIC80_TARGET_ID;
3404#endif
3405
3406 /*
3407 FIXME, should do something about the other byte orders and
3408 architectures.
3409 */
3410
3411#ifdef RS6000COFF_C
3412 if ((abfd->flags & DYNAMIC) != 0)
3413 internal_f.f_flags |= F_SHROBJ;
3414 if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
3415 internal_f.f_flags |= F_DYNLOAD;
3416#endif
3417
3418 memset (&internal_a, 0, sizeof internal_a);
3419
3420 /* Set up architecture-dependent stuff */
3421
3422 {
3423 unsigned int magic = 0;
3424 unsigned short flags = 0;
3425 coff_set_flags (abfd, &magic, &flags);
3426 internal_f.f_magic = magic;
3427 internal_f.f_flags |= flags;
3428 /* ...and the "opt"hdr... */
3429
3430#ifdef A29K
3431#ifdef ULTRA3 /* NYU's machine */
3432 /* FIXME: This is a bogus check. I really want to see if there
3433 * is a .shbss or a .shdata section, if so then set the magic
3434 * number to indicate a shared data executable.
3435 */
3436 if (internal_f.f_nscns >= 7)
3437 internal_a.magic = SHMAGIC; /* Shared magic */
3438 else
3439#endif /* ULTRA3 */
3440 internal_a.magic = NMAGIC; /* Assume separate i/d */
3441#define __A_MAGIC_SET__
3442#endif /* A29K */
3443#ifdef TIC80COFF
3444 internal_a.magic = TIC80_ARCH_MAGIC;
3445#define __A_MAGIC_SET__
3446#endif /* TIC80 */
3447#ifdef I860
3448 /* FIXME: What are the a.out magic numbers for the i860? */
3449 internal_a.magic = 0;
3450#define __A_MAGIC_SET__
3451#endif /* I860 */
3452#ifdef I960
3453 internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC);
3454#define __A_MAGIC_SET__
3455#endif /* I960 */
3456#if M88
3457#define __A_MAGIC_SET__
3458 internal_a.magic = PAGEMAGICBCS;
3459#endif /* M88 */
3460
3461#if APOLLO_M68
3462#define __A_MAGIC_SET__
3463 internal_a.magic = APOLLO_COFF_VERSION_NUMBER;
3464#endif
3465
3466#if defined(M68) || defined(WE32K) || defined(M68K)
3467#define __A_MAGIC_SET__
3468#if defined(LYNXOS)
3469 internal_a.magic = LYNXCOFFMAGIC;
3470#else
3471#if defined(TARG_AUX)
3472 internal_a.magic = (abfd->flags & D_PAGED ? PAGEMAGICPEXECPAGED :
3473 abfd->flags & WP_TEXT ? PAGEMAGICPEXECSWAPPED :
3474 PAGEMAGICEXECSWAPPED);
3475#else
3476#if defined (PAGEMAGICPEXECPAGED)
3477 internal_a.magic = PAGEMAGICPEXECPAGED;
3478#endif
3479#endif /* TARG_AUX */
3480#endif /* LYNXOS */
3481#endif /* M68 || WE32K || M68K */
3482
3483#if defined(ARM)
3484#define __A_MAGIC_SET__
3485 internal_a.magic = ZMAGIC;
3486#endif
3487
3488#if defined(PPC_PE)
3489#define __A_MAGIC_SET__
3490 internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
3491#endif
3492
3493#if defined MCORE_PE
3494#define __A_MAGIC_SET__
3495 internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
3496#endif
3497
3498#if defined(I386)
3499#define __A_MAGIC_SET__
3500#if defined(LYNXOS)
3501 internal_a.magic = LYNXCOFFMAGIC;
3502#else /* LYNXOS */
3503 internal_a.magic = ZMAGIC;
3504#endif /* LYNXOS */
3505#endif /* I386 */
3506
3507#if defined(SPARC)
3508#define __A_MAGIC_SET__
3509#if defined(LYNXOS)
3510 internal_a.magic = LYNXCOFFMAGIC;
3511#endif /* LYNXOS */
3512#endif /* SPARC */
3513
3514#ifdef RS6000COFF_C
3515#define __A_MAGIC_SET__
3516 internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
3517 (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
3518 RS6K_AOUTHDR_OMAGIC;
3519#endif
3520
3521#ifndef __A_MAGIC_SET__
3522#include "Your aouthdr magic number is not being set!"
3523#else
3524#undef __A_MAGIC_SET__
3525#endif
3526 }
3527
3528 /* FIXME: Does anybody ever set this to another value? */
3529 internal_a.vstamp = 0;
3530
3531 /* Now should write relocs, strings, syms */
3532 obj_sym_filepos (abfd) = sym_base;
3533
3534 if (bfd_get_symcount (abfd) != 0)
3535 {
3536 int firstundef;
3537#if 0
3538 if (!coff_add_missing_symbols (abfd))
3539 return false;
3540#endif
3541 if (!coff_renumber_symbols (abfd, &firstundef))
3542 return false;
3543 coff_mangle_symbols (abfd);
3544 if (! coff_write_symbols (abfd))
3545 return false;
3546 if (! coff_write_linenumbers (abfd))
3547 return false;
3548 if (! coff_write_relocs (abfd, firstundef))
3549 return false;
3550 }
3551#ifdef COFF_LONG_SECTION_NAMES
3552 else if (long_section_names)
3553 {
3554 /* If we have long section names we have to write out the string
3555 table even if there are no symbols. */
3556 if (! coff_write_symbols (abfd))
3557 return false;
3558 }
3559#endif
3560#ifdef COFF_IMAGE_WITH_PE
3561#ifdef PPC_PE
3562 else if ((abfd->flags & EXEC_P) != 0)
3563 {
3564 bfd_byte b;
3565
3566 /* PowerPC PE appears to require that all executable files be
3567 rounded up to the page size. */
3568 b = 0;
3569 if (bfd_seek (abfd,
3570 BFD_ALIGN (sym_base, COFF_PAGE_SIZE) - 1,
3571 SEEK_SET) != 0
3572 || bfd_write (&b, 1, 1, abfd) != 1)
3573 return false;
3574 }
3575#endif
3576#endif
3577
3578 /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
3579 backend linker, and obj_raw_syment_count is not valid until after
3580 coff_write_symbols is called. */
3581 if (obj_raw_syment_count (abfd) != 0)
3582 {
3583 internal_f.f_symptr = sym_base;
3584#ifdef RS6000COFF_C
3585 /* AIX appears to require that F_RELFLG not be set if there are
3586 local symbols but no relocations. */
3587 internal_f.f_flags &=~ F_RELFLG;
3588#endif
3589 }
3590 else
3591 {
3592 if (long_section_names)
3593 internal_f.f_symptr = sym_base;
3594 else
3595 internal_f.f_symptr = 0;
3596 internal_f.f_flags |= F_LSYMS;
3597 }
3598
3599 if (text_sec)
3600 {
3601 internal_a.tsize = bfd_get_section_size_before_reloc (text_sec);
3602 internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
3603 }
3604 if (data_sec)
3605 {
3606 internal_a.dsize = bfd_get_section_size_before_reloc (data_sec);
3607 internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
3608 }
3609 if (bss_sec)
3610 {
3611 internal_a.bsize = bfd_get_section_size_before_reloc (bss_sec);
3612 if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
3613 internal_a.data_start = bss_sec->vma;
3614 }
3615
3616 internal_a.entry = bfd_get_start_address (abfd);
3617 internal_f.f_nsyms = obj_raw_syment_count (abfd);
3618
3619#ifdef RS6000COFF_C
3620 if (xcoff_data (abfd)->full_aouthdr)
3621 {
3622 bfd_vma toc;
3623 asection *loader_sec;
3624
3625 internal_a.vstamp = 1;
3626
3627 internal_a.o_snentry = xcoff_data (abfd)->snentry;
3628 if (internal_a.o_snentry == 0)
3629 internal_a.entry = (bfd_vma) -1;
3630
3631 if (text_sec != NULL)
3632 {
3633 internal_a.o_sntext = text_sec->target_index;
3634 internal_a.o_algntext = bfd_get_section_alignment (abfd, text_sec);
3635 }
3636 else
3637 {
3638 internal_a.o_sntext = 0;
3639 internal_a.o_algntext = 0;
3640 }
3641 if (data_sec != NULL)
3642 {
3643 internal_a.o_sndata = data_sec->target_index;
3644 internal_a.o_algndata = bfd_get_section_alignment (abfd, data_sec);
3645 }
3646 else
3647 {
3648 internal_a.o_sndata = 0;
3649 internal_a.o_algndata = 0;
3650 }
3651 loader_sec = bfd_get_section_by_name (abfd, ".loader");
3652 if (loader_sec != NULL)
3653 internal_a.o_snloader = loader_sec->target_index;
3654 else
3655 internal_a.o_snloader = 0;
3656 if (bss_sec != NULL)
3657 internal_a.o_snbss = bss_sec->target_index;
3658 else
3659 internal_a.o_snbss = 0;
3660
3661 toc = xcoff_data (abfd)->toc;
3662 internal_a.o_toc = toc;
3663 internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
3664
3665 internal_a.o_modtype = xcoff_data (abfd)->modtype;
3666 if (xcoff_data (abfd)->cputype != -1)
3667 internal_a.o_cputype = xcoff_data (abfd)->cputype;
3668 else
3669 {
3670 switch (bfd_get_arch (abfd))
3671 {
3672 case bfd_arch_rs6000:
3673 internal_a.o_cputype = 4;
3674 break;
3675 case bfd_arch_powerpc:
3676 if (bfd_get_mach (abfd) == 0)
3677 internal_a.o_cputype = 3;
3678 else
3679 internal_a.o_cputype = 1;
3680 break;
3681 default:
3682 abort ();
3683 }
3684 }
3685 internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
3686 internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
3687 }
3688#endif
3689
3690 /* now write them */
3691 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
3692 return false;
b5f303f0 3693
252b5132 3694 {
b5f303f0
NC
3695 char * buff;
3696 bfd_size_type amount;
3697
3698 buff = bfd_malloc (bfd_coff_filhsz (abfd));
3699 if (buff == NULL)
3700 return false;
3701
252b5132 3702 coff_swap_filehdr_out (abfd, (PTR) & internal_f, (PTR) buff);
b5f303f0
NC
3703 amount = bfd_write ((PTR) buff, 1, bfd_coff_filhsz (abfd), abfd);
3704
2fca4467 3705 free (buff);
b5f303f0
NC
3706
3707 if (amount != bfd_coff_filhsz (abfd))
252b5132
RH
3708 return false;
3709 }
b5f303f0 3710
252b5132
RH
3711 if (abfd->flags & EXEC_P)
3712 {
3713 /* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
3714 include/coff/pe.h sets AOUTSZ == sizeof(PEAOUTHDR)) */
b5f303f0
NC
3715 char * buff;
3716 bfd_size_type amount;
3717
3718 buff = bfd_malloc (bfd_coff_aoutsz (abfd));
3719 if (buff == NULL)
3720 return false;
3721
252b5132 3722 coff_swap_aouthdr_out (abfd, (PTR) & internal_a, (PTR) buff);
b5f303f0
NC
3723 amount = bfd_write ((PTR) buff, 1, bfd_coff_aoutsz (abfd), abfd);
3724
2fca4467 3725 free (buff);
b5f303f0
NC
3726
3727 if (amount != bfd_coff_aoutsz (abfd))
252b5132
RH
3728 return false;
3729 }
3730#ifdef RS6000COFF_C
3731 else
3732 {
3733 AOUTHDR buff;
3734 size_t size;
3735
3736 /* XCOFF seems to always write at least a small a.out header. */
3737 coff_swap_aouthdr_out (abfd, (PTR) &internal_a, (PTR) &buff);
3738 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3739 size = bfd_coff_aoutsz (abfd);
252b5132
RH
3740 else
3741 size = SMALL_AOUTSZ;
3742 if (bfd_write ((PTR) &buff, 1, size, abfd) != size)
3743 return false;
3744 }
3745#endif
3746
3747 return true;
3748}
3749
3750static boolean
3751coff_set_section_contents (abfd, section, location, offset, count)
3752 bfd * abfd;
3753 sec_ptr section;
3754 PTR location;
3755 file_ptr offset;
3756 bfd_size_type count;
3757{
3758 if (abfd->output_has_begun == false) /* set by bfd.c handler */
3759 {
3760 if (! coff_compute_section_file_positions (abfd))
3761 return false;
3762 }
3763
3764#if defined(_LIB) && !defined(TARG_AUX)
3765
3766 /* The physical address field of a .lib section is used to hold the
3767 number of shared libraries in the section. This code counts the
3768 number of sections being written, and increments the lma field
3769 with the number.
3770
3771 I have found no documentation on the contents of this section.
3772 Experimentation indicates that the section contains zero or more
3773 records, each of which has the following structure:
3774
3775 - a (four byte) word holding the length of this record, in words,
3776 - a word that always seems to be set to "2",
3777 - the path to a shared library, null-terminated and then padded
3778 to a whole word boundary.
3779
3780 bfd_assert calls have been added to alert if an attempt is made
3781 to write a section which doesn't follow these assumptions. The
3782 code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
3783 <robertl@arnet.com> (Thanks!).
3784
3785 Gvran Uddeborg <gvran@uddeborg.pp.se> */
3786
3787 if (strcmp (section->name, _LIB) == 0)
3788 {
3789 bfd_byte *rec, *recend;
3790
3791 rec = (bfd_byte *) location;
3792 recend = rec + count;
3793 while (rec < recend)
3794 {
3795 ++section->lma;
3796 rec += bfd_get_32 (abfd, rec) * 4;
3797 }
3798
3799 BFD_ASSERT (rec == recend);
3800 }
3801
3802#endif
3803
3804 /* Don't write out bss sections - one way to do this is to
3805 see if the filepos has not been set. */
3806 if (section->filepos == 0)
3807 return true;
3808
3809 if (bfd_seek (abfd, (file_ptr) (section->filepos + offset), SEEK_SET) != 0)
3810 return false;
3811
3812 if (count != 0)
3813 {
3814 return (bfd_write (location, 1, count, abfd) == count) ? true : false;
3815 }
3816 return true;
3817}
3818#if 0
3819static boolean
3820coff_close_and_cleanup (abfd)
3821 bfd *abfd;
3822{
3823 if (!bfd_read_p (abfd))
3824 switch (abfd->format)
3825 {
3826 case bfd_archive:
3827 if (!_bfd_write_archive_contents (abfd))
3828 return false;
3829 break;
3830 case bfd_object:
3831 if (!coff_write_object_contents (abfd))
3832 return false;
3833 break;
3834 default:
3835 bfd_set_error (bfd_error_invalid_operation);
3836 return false;
3837 }
3838
3839 /* We depend on bfd_close to free all the memory on the objalloc. */
3840 return true;
3841}
3842
3843#endif
3844
3845static PTR
3846buy_and_read (abfd, where, seek_direction, size)
3847 bfd *abfd;
3848 file_ptr where;
3849 int seek_direction;
3850 size_t size;
3851{
3852 PTR area = (PTR) bfd_alloc (abfd, size);
3853 if (!area)
3854 return (NULL);
3855 if (bfd_seek (abfd, where, seek_direction) != 0
3856 || bfd_read (area, 1, size, abfd) != size)
3857 return (NULL);
3858 return (area);
3859} /* buy_and_read() */
3860
3861/*
3862SUBSUBSECTION
3863 Reading linenumbers
3864
3865 Creating the linenumber table is done by reading in the entire
3866 coff linenumber table, and creating another table for internal use.
3867
3868 A coff linenumber table is structured so that each function
3869 is marked as having a line number of 0. Each line within the
3870 function is an offset from the first line in the function. The
3871 base of the line number information for the table is stored in
3872 the symbol associated with the function.
3873
00692651
ILT
3874 Note: The PE format uses line number 0 for a flag indicating a
3875 new source file.
3876
252b5132
RH
3877 The information is copied from the external to the internal
3878 table, and each symbol which marks a function is marked by
3879 pointing its...
3880
3881 How does this work ?
3882
3883*/
3884
3885static boolean
3886coff_slurp_line_table (abfd, asect)
3887 bfd *abfd;
3888 asection *asect;
3889{
3890 LINENO *native_lineno;
3891 alent *lineno_cache;
3892
3893 BFD_ASSERT (asect->lineno == (alent *) NULL);
3894
3895 native_lineno = (LINENO *) buy_and_read (abfd,
3896 asect->line_filepos,
3897 SEEK_SET,
6b3b007b 3898 (size_t) (bfd_coff_linesz (abfd) *
252b5132
RH
3899 asect->lineno_count));
3900 lineno_cache =
3901 (alent *) bfd_alloc (abfd, (size_t) ((asect->lineno_count + 1) * sizeof (alent)));
3902 if (lineno_cache == NULL)
3903 return false;
3904 else
3905 {
3906 unsigned int counter = 0;
3907 alent *cache_ptr = lineno_cache;
3908 LINENO *src = native_lineno;
3909
3910 while (counter < asect->lineno_count)
3911 {
3912 struct internal_lineno dst;
3913 coff_swap_lineno_in (abfd, src, &dst);
3914 cache_ptr->line_number = dst.l_lnno;
3915
3916 if (cache_ptr->line_number == 0)
3917 {
3918 boolean warned;
3919 long symndx;
3920 coff_symbol_type *sym;
3921
3922 warned = false;
3923 symndx = dst.l_addr.l_symndx;
3924 if (symndx < 0
3925 || (unsigned long) symndx >= obj_raw_syment_count (abfd))
3926 {
3927 (*_bfd_error_handler)
3928 (_("%s: warning: illegal symbol index %ld in line numbers"),
3929 bfd_get_filename (abfd), dst.l_addr.l_symndx);
3930 symndx = 0;
3931 warned = true;
3932 }
3933 /* FIXME: We should not be casting between ints and
3934 pointers like this. */
3935 sym = ((coff_symbol_type *)
3936 ((symndx + obj_raw_syments (abfd))
3937 ->u.syment._n._n_n._n_zeroes));
3938 cache_ptr->u.sym = (asymbol *) sym;
3939 if (sym->lineno != NULL && ! warned)
3940 {
3941 (*_bfd_error_handler)
3942 (_("%s: warning: duplicate line number information for `%s'"),
3943 bfd_get_filename (abfd),
3944 bfd_asymbol_name (&sym->symbol));
3945 }
3946 sym->lineno = cache_ptr;
3947 }
3948 else
3949 {
3950 cache_ptr->u.offset = dst.l_addr.l_paddr
3951 - bfd_section_vma (abfd, asect);
3952 } /* If no linenumber expect a symbol index */
3953
3954 cache_ptr++;
3955 src++;
3956 counter++;
3957 }
3958 cache_ptr->line_number = 0;
3959
3960 }
3961 asect->lineno = lineno_cache;
3962 /* FIXME, free native_lineno here, or use alloca or something. */
3963 return true;
3964}
3965
00692651
ILT
3966/* Slurp in the symbol table, converting it to generic form. Note
3967 that if coff_relocate_section is defined, the linker will read
3968 symbols via coff_link_add_symbols, rather than via this routine. */
3969
252b5132
RH
3970static boolean
3971coff_slurp_symbol_table (abfd)
3972 bfd * abfd;
3973{
3974 combined_entry_type *native_symbols;
3975 coff_symbol_type *cached_area;
3976 unsigned int *table_ptr;
3977
3978 unsigned int number_of_symbols = 0;
3979
3980 if (obj_symbols (abfd))
3981 return true;
3982
3983 /* Read in the symbol table */
3984 if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
3985 {
3986 return (false);
3987 } /* on error */
3988
3989 /* Allocate enough room for all the symbols in cached form */
3990 cached_area = ((coff_symbol_type *)
3991 bfd_alloc (abfd,
3992 (obj_raw_syment_count (abfd)
3993 * sizeof (coff_symbol_type))));
3994
3995 if (cached_area == NULL)
3996 return false;
3997 table_ptr = ((unsigned int *)
3998 bfd_alloc (abfd,
3999 (obj_raw_syment_count (abfd)
4000 * sizeof (unsigned int))));
4001
4002 if (table_ptr == NULL)
4003 return false;
4004 else
4005 {
4006 coff_symbol_type *dst = cached_area;
4007 unsigned int last_native_index = obj_raw_syment_count (abfd);
4008 unsigned int this_index = 0;
4009 while (this_index < last_native_index)
4010 {
4011 combined_entry_type *src = native_symbols + this_index;
4012 table_ptr[this_index] = number_of_symbols;
4013 dst->symbol.the_bfd = abfd;
4014
4015 dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
4016 /* We use the native name field to point to the cached field. */
4017 src->u.syment._n._n_n._n_zeroes = (long) dst;
4018 dst->symbol.section = coff_section_from_bfd_index (abfd,
4019 src->u.syment.n_scnum);
4020 dst->symbol.flags = 0;
4021 dst->done_lineno = false;
4022
4023 switch (src->u.syment.n_sclass)
4024 {
4025#ifdef I960
4026 case C_LEAFEXT:
4027#if 0
4028 dst->symbol.value = src->u.syment.n_value - dst->symbol.section->vma;
4029 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
4030 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4031#endif
4032 /* Fall through to next case */
4033
4034#endif
4035
4036 case C_EXT:
4037 case C_WEAKEXT:
4038#if defined ARM
4039 case C_THUMBEXT:
4040 case C_THUMBEXTFUNC:
4041#endif
4042#ifdef RS6000COFF_C
4043 case C_HIDEXT:
4044#endif
4045#ifdef C_SYSTEM
4046 case C_SYSTEM: /* System Wide variable */
4047#endif
4048#ifdef COFF_WITH_PE
5d54c628 4049 /* In PE, 0x68 (104) denotes a section symbol */
252b5132 4050 case C_SECTION:
5d54c628 4051 /* In PE, 0x69 (105) denotes a weak external symbol. */
252b5132
RH
4052 case C_NT_WEAK:
4053#endif
5d54c628 4054 switch (coff_classify_symbol (abfd, &src->u.syment))
252b5132 4055 {
5d54c628 4056 case COFF_SYMBOL_GLOBAL:
252b5132 4057 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
252b5132
RH
4058#if defined COFF_WITH_PE
4059 /* PE sets the symbol to a value relative to the
4060 start of the section. */
4061 dst->symbol.value = src->u.syment.n_value;
4062#else
4063 dst->symbol.value = (src->u.syment.n_value
4064 - dst->symbol.section->vma);
4065#endif
252b5132
RH
4066 if (ISFCN ((src->u.syment.n_type)))
4067 {
4068 /* A function ext does not go at the end of a
4069 file. */
4070 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4071 }
5d54c628
ILT
4072 break;
4073
4074 case COFF_SYMBOL_COMMON:
4075 dst->symbol.section = bfd_com_section_ptr;
4076 dst->symbol.value = src->u.syment.n_value;
4077 break;
4078
4079 case COFF_SYMBOL_UNDEFINED:
4080 dst->symbol.section = bfd_und_section_ptr;
4081 dst->symbol.value = 0;
4082 break;
4083
4084 case COFF_SYMBOL_PE_SECTION:
4085 dst->symbol.flags |= BSF_EXPORT | BSF_SECTION_SYM;
4086 dst->symbol.value = 0;
4087 break;
4088
4089 case COFF_SYMBOL_LOCAL:
4090 dst->symbol.flags = BSF_LOCAL;
4091#if defined COFF_WITH_PE
4092 /* PE sets the symbol to a value relative to the
4093 start of the section. */
4094 dst->symbol.value = src->u.syment.n_value;
4095#else
4096 dst->symbol.value = (src->u.syment.n_value
4097 - dst->symbol.section->vma);
4098#endif
4099 if (ISFCN ((src->u.syment.n_type)))
4100 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4101 break;
252b5132
RH
4102 }
4103
4104#ifdef RS6000COFF_C
252b5132
RH
4105 /* A symbol with a csect entry should not go at the end. */
4106 if (src->u.syment.n_numaux > 0)
4107 dst->symbol.flags |= BSF_NOT_AT_END;
4108#endif
4109
4110#ifdef COFF_WITH_PE
4111 if (src->u.syment.n_sclass == C_NT_WEAK)
4112 dst->symbol.flags = BSF_WEAK;
ec0ef80e
DD
4113 if (src->u.syment.n_sclass == C_SECTION
4114 && src->u.syment.n_scnum > 0)
4115 {
4116 dst->symbol.flags = BSF_LOCAL;
4117 }
252b5132
RH
4118#endif
4119
4120 if (src->u.syment.n_sclass == C_WEAKEXT)
4121 dst->symbol.flags = BSF_WEAK;
4122
4123 break;
4124
4125 case C_STAT: /* static */
4126#ifdef I960
4127 case C_LEAFSTAT: /* static leaf procedure */
4128#endif
4129#if defined ARM
4130 case C_THUMBSTAT: /* Thumb static */
4131 case C_THUMBLABEL: /* Thumb label */
4132 case C_THUMBSTATFUNC:/* Thumb static function */
4133#endif
4134 case C_LABEL: /* label */
00692651 4135 if (src->u.syment.n_scnum == N_DEBUG)
252b5132
RH
4136 dst->symbol.flags = BSF_DEBUGGING;
4137 else
4138 dst->symbol.flags = BSF_LOCAL;
4139
4140 /* Base the value as an index from the base of the
4141 section, if there is one. */
4142 if (dst->symbol.section)
4143 {
4144#if defined COFF_WITH_PE
4145 /* PE sets the symbol to a value relative to the
4146 start of the section. */
4147 dst->symbol.value = src->u.syment.n_value;
4148#else
4149 dst->symbol.value = (src->u.syment.n_value
4150 - dst->symbol.section->vma);
4151#endif
4152 }
4153 else
4154 dst->symbol.value = src->u.syment.n_value;
4155 break;
4156
4157 case C_MOS: /* member of structure */
4158 case C_EOS: /* end of structure */
4159#ifdef NOTDEF /* C_AUTOARG has the same value */
4160#ifdef C_GLBLREG
4161 case C_GLBLREG: /* A29k-specific storage class */
4162#endif
4163#endif
4164 case C_REGPARM: /* register parameter */
4165 case C_REG: /* register variable */
4166#ifndef TIC80COFF
4167#ifdef C_AUTOARG
4168 case C_AUTOARG: /* 960-specific storage class */
4169#endif
4170#endif
4171 case C_TPDEF: /* type definition */
4172 case C_ARG:
4173 case C_AUTO: /* automatic variable */
4174 case C_FIELD: /* bit field */
4175 case C_ENTAG: /* enumeration tag */
4176 case C_MOE: /* member of enumeration */
4177 case C_MOU: /* member of union */
4178 case C_UNTAG: /* union tag */
4179 dst->symbol.flags = BSF_DEBUGGING;
4180 dst->symbol.value = (src->u.syment.n_value);
4181 break;
4182
4183 case C_FILE: /* file name */
4184 case C_STRTAG: /* structure tag */
4185#ifdef RS6000COFF_C
4186 case C_GSYM:
4187 case C_LSYM:
4188 case C_PSYM:
4189 case C_RSYM:
4190 case C_RPSYM:
4191 case C_STSYM:
4192 case C_BCOMM:
4193 case C_ECOMM:
4194 case C_DECL:
4195 case C_ENTRY:
4196 case C_FUN:
4197 case C_ESTAT:
4198#endif
4199 dst->symbol.flags = BSF_DEBUGGING;
4200 dst->symbol.value = (src->u.syment.n_value);
4201 break;
4202
4203#ifdef RS6000COFF_C
4204 case C_BINCL: /* beginning of include file */
4205 case C_EINCL: /* ending of include file */
4206 /* The value is actually a pointer into the line numbers
4207 of the file. We locate the line number entry, and
4208 set the section to the section which contains it, and
4209 the value to the index in that section. */
4210 {
4211 asection *sec;
4212
4213 dst->symbol.flags = BSF_DEBUGGING;
4214 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4215 if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
4216 && ((file_ptr) (sec->line_filepos
6b3b007b 4217 + sec->lineno_count * bfd_coff_linesz (abfd))
252b5132
RH
4218 > (file_ptr) src->u.syment.n_value))
4219 break;
4220 if (sec == NULL)
4221 dst->symbol.value = 0;
4222 else
4223 {
4224 dst->symbol.section = sec;
4225 dst->symbol.value = ((src->u.syment.n_value
4226 - sec->line_filepos)
6b3b007b 4227 / bfd_coff_linesz (abfd));
252b5132
RH
4228 src->fix_line = 1;
4229 }
4230 }
4231 break;
4232
4233 case C_BSTAT:
4234 dst->symbol.flags = BSF_DEBUGGING;
4235
4236 /* The value is actually a symbol index. Save a pointer
4237 to the symbol instead of the index. FIXME: This
4238 should use a union. */
4239 src->u.syment.n_value =
4240 (long) (native_symbols + src->u.syment.n_value);
4241 dst->symbol.value = src->u.syment.n_value;
4242 src->fix_value = 1;
4243 break;
4244#endif
4245
4246 case C_BLOCK: /* ".bb" or ".eb" */
d510f9a6 4247 case C_FCN: /* ".bf" or ".ef" (or PE ".lf") */
252b5132 4248 case C_EFCN: /* physical end of function */
252b5132
RH
4249#if defined COFF_WITH_PE
4250 /* PE sets the symbol to a value relative to the start
4251 of the section. */
4252 dst->symbol.value = src->u.syment.n_value;
d510f9a6
ILT
4253 if (strcmp (dst->symbol.name, ".bf") != 0)
4254 {
4255 /* PE uses funny values for .ef and .lf; don't
4256 relocate them. */
4257 dst->symbol.flags = BSF_DEBUGGING;
4258 }
4259 else
4260 dst->symbol.flags = BSF_DEBUGGING | BSF_DEBUGGING_RELOC;
252b5132
RH
4261#else
4262 /* Base the value as an index from the base of the
4263 section. */
d510f9a6 4264 dst->symbol.flags = BSF_LOCAL;
252b5132
RH
4265 dst->symbol.value = (src->u.syment.n_value
4266 - dst->symbol.section->vma);
4267#endif
4268 break;
4269
4270 case C_NULL:
00692651
ILT
4271 /* PE DLLs sometimes have zeroed out symbols for some
4272 reason. Just ignore them without a warning. */
4273 if (src->u.syment.n_type == 0
4274 && src->u.syment.n_value == 0
4275 && src->u.syment.n_scnum == 0)
4276 break;
4277 /* Fall through. */
252b5132
RH
4278 case C_EXTDEF: /* external definition */
4279 case C_ULABEL: /* undefined label */
4280 case C_USTATIC: /* undefined static */
4281#ifndef COFF_WITH_PE
4282 /* C_LINE in regular coff is 0x68. NT has taken over this storage
4283 class to represent a section symbol */
4284 case C_LINE: /* line # reformatted as symbol table entry */
4285 /* NT uses 0x67 for a weak symbol, not C_ALIAS. */
4286 case C_ALIAS: /* duplicate tag */
4287#endif
4288 /* New storage classes for TIc80 */
4289#ifdef TIC80COFF
4290 case C_UEXT: /* Tentative external definition */
4291#endif
4292 case C_STATLAB: /* Static load time label */
4293 case C_EXTLAB: /* External load time label */
4294 case C_HIDDEN: /* ext symbol in dmert public lib */
4295 default:
4296 (*_bfd_error_handler)
4297 (_("%s: Unrecognized storage class %d for %s symbol `%s'"),
4298 bfd_get_filename (abfd), src->u.syment.n_sclass,
4299 dst->symbol.section->name, dst->symbol.name);
4300 dst->symbol.flags = BSF_DEBUGGING;
4301 dst->symbol.value = (src->u.syment.n_value);
4302 break;
4303 }
4304
4305/* BFD_ASSERT(dst->symbol.flags != 0);*/
4306
4307 dst->native = src;
4308
4309 dst->symbol.udata.i = 0;
4310 dst->lineno = (alent *) NULL;
4311 this_index += (src->u.syment.n_numaux) + 1;
4312 dst++;
4313 number_of_symbols++;
4314 } /* walk the native symtab */
4315 } /* bfdize the native symtab */
4316
4317 obj_symbols (abfd) = cached_area;
4318 obj_raw_syments (abfd) = native_symbols;
4319
4320 bfd_get_symcount (abfd) = number_of_symbols;
4321 obj_convert (abfd) = table_ptr;
4322 /* Slurp the line tables for each section too */
4323 {
4324 asection *p;
4325 p = abfd->sections;
4326 while (p)
4327 {
4328 coff_slurp_line_table (abfd, p);
4329 p = p->next;
4330 }
4331 }
4332 return true;
4333} /* coff_slurp_symbol_table() */
4334
5d54c628
ILT
4335/* Classify a COFF symbol. A couple of targets have globally visible
4336 symbols which are not class C_EXT, and this handles those. It also
4337 recognizes some special PE cases. */
252b5132 4338
5d54c628
ILT
4339static enum coff_symbol_classification
4340coff_classify_symbol (abfd, syment)
4341 bfd *abfd;
4342 struct internal_syment *syment;
4343{
4344 /* FIXME: This partially duplicates the switch in
4345 coff_slurp_symbol_table. */
4346 switch (syment->n_sclass)
4347 {
4348 case C_EXT:
4349 case C_WEAKEXT:
252b5132 4350#ifdef I960
5d54c628 4351 case C_LEAFEXT:
252b5132 4352#endif
5d54c628
ILT
4353#ifdef ARM
4354 case C_THUMBEXT:
4355 case C_THUMBEXTFUNC:
252b5132 4356#endif
5d54c628
ILT
4357#ifdef C_SYSTEM
4358 case C_SYSTEM:
252b5132 4359#endif
5d54c628
ILT
4360#ifdef COFF_WITH_PE
4361 case C_NT_WEAK:
4362#endif
4363 if (syment->n_scnum == 0)
4364 {
4365 if (syment->n_value == 0)
4366 return COFF_SYMBOL_UNDEFINED;
4367 else
4368 return COFF_SYMBOL_COMMON;
4369 }
4370 return COFF_SYMBOL_GLOBAL;
4371
4372 default:
4373 break;
4374 }
252b5132 4375
5d54c628
ILT
4376#ifdef COFF_WITH_PE
4377 if (syment->n_sclass == C_STAT)
4378 {
4379 if (syment->n_scnum == 0)
4380 {
4381 /* The Microsoft compiler sometimes generates these if a
4382 small static function is inlined every time it is used.
4383 The function is discarded, but the symbol table entry
4384 remains. */
4385 return COFF_SYMBOL_LOCAL;
4386 }
252b5132 4387
0717ebb7 4388#ifdef STRICT_PE_FORMAT
bd826630
ILT
4389 /* This is correct for Microsoft generated objects, but it
4390 breaks gas generated objects. */
4391
5d54c628
ILT
4392 if (syment->n_value == 0)
4393 {
4394 asection *sec;
4395 char buf[SYMNMLEN + 1];
4396
4397 sec = coff_section_from_bfd_index (abfd, syment->n_scnum);
4398 if (sec != NULL
4399 && (strcmp (bfd_get_section_name (abfd, sec),
4400 _bfd_coff_internal_syment_name (abfd, syment, buf))
4401 == 0))
4402 return COFF_SYMBOL_PE_SECTION;
4403 }
bd826630 4404#endif
252b5132 4405
5d54c628
ILT
4406 return COFF_SYMBOL_LOCAL;
4407 }
252b5132 4408
5d54c628
ILT
4409 if (syment->n_sclass == C_SECTION)
4410 {
4411 /* In some cases in a DLL generated by the Microsoft linker, the
4412 n_value field will contain garbage. FIXME: This should
4413 probably be handled by the swapping function instead. */
4414 syment->n_value = 0;
4415 if (syment->n_scnum == 0)
4416 return COFF_SYMBOL_UNDEFINED;
4417 return COFF_SYMBOL_PE_SECTION;
4418 }
4419#endif /* COFF_WITH_PE */
252b5132 4420
5d54c628 4421 /* If it is not a global symbol, we presume it is a local symbol. */
252b5132 4422
5d54c628
ILT
4423 if (syment->n_scnum == 0)
4424 {
4425 char buf[SYMNMLEN + 1];
252b5132 4426
5d54c628
ILT
4427 (*_bfd_error_handler)
4428 (_("warning: %s: local symbol `%s' has no section"),
4429 bfd_get_filename (abfd),
4430 _bfd_coff_internal_syment_name (abfd, syment, buf));
4431 }
252b5132 4432
5d54c628
ILT
4433 return COFF_SYMBOL_LOCAL;
4434}
252b5132
RH
4435
4436/*
4437SUBSUBSECTION
4438 Reading relocations
4439
4440 Coff relocations are easily transformed into the internal BFD form
4441 (@code{arelent}).
4442
4443 Reading a coff relocation table is done in the following stages:
4444
4445 o Read the entire coff relocation table into memory.
4446
4447 o Process each relocation in turn; first swap it from the
4448 external to the internal form.
4449
4450 o Turn the symbol referenced in the relocation's symbol index
4451 into a pointer into the canonical symbol table.
4452 This table is the same as the one returned by a call to
4453 @code{bfd_canonicalize_symtab}. The back end will call that
4454 routine and save the result if a canonicalization hasn't been done.
4455
4456 o The reloc index is turned into a pointer to a howto
4457 structure, in a back end specific way. For instance, the 386
4458 and 960 use the @code{r_type} to directly produce an index
4459 into a howto table vector; the 88k subtracts a number from the
4460 @code{r_type} field and creates an addend field.
4461
4462
4463*/
4464
4465#ifndef CALC_ADDEND
4466#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
4467 { \
4468 coff_symbol_type *coffsym = (coff_symbol_type *) NULL; \
4469 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
4470 coffsym = (obj_symbols (abfd) \
4471 + (cache_ptr->sym_ptr_ptr - symbols)); \
4472 else if (ptr) \
4473 coffsym = coff_symbol_from (abfd, ptr); \
4474 if (coffsym != (coff_symbol_type *) NULL \
4475 && coffsym->native->u.syment.n_scnum == 0) \
4476 cache_ptr->addend = 0; \
4477 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
4478 && ptr->section != (asection *) NULL) \
4479 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
4480 else \
4481 cache_ptr->addend = 0; \
4482 }
4483#endif
4484
4485static boolean
4486coff_slurp_reloc_table (abfd, asect, symbols)
4487 bfd * abfd;
4488 sec_ptr asect;
4489 asymbol ** symbols;
4490{
4491 RELOC *native_relocs;
4492 arelent *reloc_cache;
4493 arelent *cache_ptr;
4494
4495 unsigned int idx;
4496
4497 if (asect->relocation)
4498 return true;
4499 if (asect->reloc_count == 0)
4500 return true;
4501 if (asect->flags & SEC_CONSTRUCTOR)
4502 return true;
4503 if (!coff_slurp_symbol_table (abfd))
4504 return false;
4505 native_relocs =
4506 (RELOC *) buy_and_read (abfd,
4507 asect->rel_filepos,
4508 SEEK_SET,
6b3b007b 4509 (size_t) (bfd_coff_relsz (abfd) *
252b5132
RH
4510 asect->reloc_count));
4511 reloc_cache = (arelent *)
4512 bfd_alloc (abfd, (size_t) (asect->reloc_count * sizeof (arelent)));
4513
4514 if (reloc_cache == NULL)
4515 return false;
4516
4517
4518 for (idx = 0; idx < asect->reloc_count; idx++)
4519 {
4520 struct internal_reloc dst;
4521 struct external_reloc *src;
4522#ifndef RELOC_PROCESSING
4523 asymbol *ptr;
4524#endif
4525
4526 cache_ptr = reloc_cache + idx;
4527 src = native_relocs + idx;
4528
4529 coff_swap_reloc_in (abfd, src, &dst);
4530
4531#ifdef RELOC_PROCESSING
4532 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
4533#else
4534 cache_ptr->address = dst.r_vaddr;
4535
4536 if (dst.r_symndx != -1)
4537 {
4538 if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
4539 {
4540 (*_bfd_error_handler)
4541 (_("%s: warning: illegal symbol index %ld in relocs"),
4542 bfd_get_filename (abfd), dst.r_symndx);
4543 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
4544 ptr = NULL;
4545 }
4546 else
4547 {
4548 cache_ptr->sym_ptr_ptr = (symbols
4549 + obj_convert (abfd)[dst.r_symndx]);
4550 ptr = *(cache_ptr->sym_ptr_ptr);
4551 }
4552 }
4553 else
4554 {
4555 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
4556 ptr = NULL;
4557 }
4558
4559 /* The symbols definitions that we have read in have been
4560 relocated as if their sections started at 0. But the offsets
4561 refering to the symbols in the raw data have not been
4562 modified, so we have to have a negative addend to compensate.
4563
4564 Note that symbols which used to be common must be left alone */
4565
4566 /* Calculate any reloc addend by looking at the symbol */
4567 CALC_ADDEND (abfd, ptr, dst, cache_ptr);
4568
4569 cache_ptr->address -= asect->vma;
4570/* !! cache_ptr->section = (asection *) NULL;*/
4571
4572 /* Fill in the cache_ptr->howto field from dst.r_type */
4573 RTYPE2HOWTO (cache_ptr, &dst);
4574#endif /* RELOC_PROCESSING */
4575
4576 if (cache_ptr->howto == NULL)
4577 {
4578 (*_bfd_error_handler)
4579 (_("%s: illegal relocation type %d at address 0x%lx"),
4580 bfd_get_filename (abfd), dst.r_type, (long) dst.r_vaddr);
4581 bfd_set_error (bfd_error_bad_value);
4582 return false;
4583 }
4584 }
4585
4586 asect->relocation = reloc_cache;
4587 return true;
4588}
4589
4590#ifndef coff_rtype_to_howto
4591#ifdef RTYPE2HOWTO
4592
4593/* Get the howto structure for a reloc. This is only used if the file
4594 including this one defines coff_relocate_section to be
4595 _bfd_coff_generic_relocate_section, so it is OK if it does not
4596 always work. It is the responsibility of the including file to
4597 make sure it is reasonable if it is needed. */
4598
4599static reloc_howto_type *coff_rtype_to_howto
4600 PARAMS ((bfd *, asection *, struct internal_reloc *,
4601 struct coff_link_hash_entry *, struct internal_syment *,
4602 bfd_vma *));
4603
4604/*ARGSUSED*/
4605static reloc_howto_type *
4606coff_rtype_to_howto (abfd, sec, rel, h, sym, addendp)
5f771d47
ILT
4607 bfd *abfd ATTRIBUTE_UNUSED;
4608 asection *sec ATTRIBUTE_UNUSED;
252b5132 4609 struct internal_reloc *rel;
5f771d47
ILT
4610 struct coff_link_hash_entry *h ATTRIBUTE_UNUSED;
4611 struct internal_syment *sym ATTRIBUTE_UNUSED;
4612 bfd_vma *addendp ATTRIBUTE_UNUSED;
252b5132
RH
4613{
4614 arelent genrel;
4615
4616 RTYPE2HOWTO (&genrel, rel);
4617 return genrel.howto;
4618}
4619
4620#else /* ! defined (RTYPE2HOWTO) */
4621
4622#define coff_rtype_to_howto NULL
4623
4624#endif /* ! defined (RTYPE2HOWTO) */
4625#endif /* ! defined (coff_rtype_to_howto) */
4626
4627/* This is stupid. This function should be a boolean predicate. */
4628static long
4629coff_canonicalize_reloc (abfd, section, relptr, symbols)
4630 bfd * abfd;
4631 sec_ptr section;
4632 arelent ** relptr;
4633 asymbol ** symbols;
4634{
4635 arelent *tblptr = section->relocation;
4636 unsigned int count = 0;
4637
4638
4639 if (section->flags & SEC_CONSTRUCTOR)
4640 {
4641 /* this section has relocs made up by us, they are not in the
4642 file, so take them out of their chain and place them into
4643 the data area provided */
4644 arelent_chain *chain = section->constructor_chain;
4645 for (count = 0; count < section->reloc_count; count++)
4646 {
4647 *relptr++ = &chain->relent;
4648 chain = chain->next;
4649 }
4650
4651 }
4652 else
4653 {
4654 if (! coff_slurp_reloc_table (abfd, section, symbols))
4655 return -1;
4656
4657 tblptr = section->relocation;
4658
4659 for (; count++ < section->reloc_count;)
4660 *relptr++ = tblptr++;
4661
4662
4663 }
4664 *relptr = 0;
4665 return section->reloc_count;
4666}
4667
4668#ifdef GNU960
4669file_ptr
4670coff_sym_filepos (abfd)
4671 bfd *abfd;
4672{
4673 return obj_sym_filepos (abfd);
4674}
4675#endif
4676
4677#ifndef coff_reloc16_estimate
4678#define coff_reloc16_estimate dummy_reloc16_estimate
4679
4680static int dummy_reloc16_estimate
4681 PARAMS ((bfd *, asection *, arelent *, unsigned int,
4682 struct bfd_link_info *));
4683
4684static int
4685dummy_reloc16_estimate (abfd, input_section, reloc, shrink, link_info)
5f771d47
ILT
4686 bfd *abfd ATTRIBUTE_UNUSED;
4687 asection *input_section ATTRIBUTE_UNUSED;
4688 arelent *reloc ATTRIBUTE_UNUSED;
4689 unsigned int shrink ATTRIBUTE_UNUSED;
4690 struct bfd_link_info *link_info ATTRIBUTE_UNUSED;
252b5132
RH
4691{
4692 abort ();
00692651 4693 return 0;
252b5132
RH
4694}
4695
4696#endif
4697
4698#ifndef coff_reloc16_extra_cases
4699
4700#define coff_reloc16_extra_cases dummy_reloc16_extra_cases
4701
4702/* This works even if abort is not declared in any header file. */
4703
4704static void dummy_reloc16_extra_cases
4705 PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
4706 bfd_byte *, unsigned int *, unsigned int *));
4707
4708static void
4709dummy_reloc16_extra_cases (abfd, link_info, link_order, reloc, data, src_ptr,
4710 dst_ptr)
5f771d47
ILT
4711 bfd *abfd ATTRIBUTE_UNUSED;
4712 struct bfd_link_info *link_info ATTRIBUTE_UNUSED;
4713 struct bfd_link_order *link_order ATTRIBUTE_UNUSED;
4714 arelent *reloc ATTRIBUTE_UNUSED;
4715 bfd_byte *data ATTRIBUTE_UNUSED;
4716 unsigned int *src_ptr ATTRIBUTE_UNUSED;
4717 unsigned int *dst_ptr ATTRIBUTE_UNUSED;
252b5132
RH
4718{
4719 abort ();
4720}
4721#endif
4722
4723/* If coff_relocate_section is defined, we can use the optimized COFF
4724 backend linker. Otherwise we must continue to use the old linker. */
4725#ifdef coff_relocate_section
4726#ifndef coff_bfd_link_hash_table_create
4727#define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
4728#endif
4729#ifndef coff_bfd_link_add_symbols
4730#define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
4731#endif
4732#ifndef coff_bfd_final_link
4733#define coff_bfd_final_link _bfd_coff_final_link
4734#endif
4735#else /* ! defined (coff_relocate_section) */
4736#define coff_relocate_section NULL
4737#ifndef coff_bfd_link_hash_table_create
4738#define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
4739#endif
4740#ifndef coff_bfd_link_add_symbols
4741#define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
4742#endif
4743#define coff_bfd_final_link _bfd_generic_final_link
4744#endif /* ! defined (coff_relocate_section) */
4745
4746#define coff_bfd_link_split_section _bfd_generic_link_split_section
4747
4748#ifndef coff_start_final_link
4749#define coff_start_final_link NULL
4750#endif
4751
4752#ifndef coff_adjust_symndx
4753#define coff_adjust_symndx NULL
4754#endif
4755
4756#ifndef coff_link_add_one_symbol
4757#define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
4758#endif
4759
4760#ifndef coff_link_output_has_begun
4761
4762static boolean coff_link_output_has_begun
4763 PARAMS ((bfd *, struct coff_final_link_info *));
4764
4765static boolean
4766coff_link_output_has_begun (abfd, info)
4767 bfd * abfd;
5f771d47 4768 struct coff_final_link_info * info ATTRIBUTE_UNUSED;
252b5132
RH
4769{
4770 return abfd->output_has_begun;
4771}
4772#endif
4773
4774#ifndef coff_final_link_postscript
4775
4776static boolean coff_final_link_postscript
4777 PARAMS ((bfd *, struct coff_final_link_info *));
4778
4779static boolean
4780coff_final_link_postscript (abfd, pfinfo)
5f771d47
ILT
4781 bfd * abfd ATTRIBUTE_UNUSED;
4782 struct coff_final_link_info * pfinfo ATTRIBUTE_UNUSED;
252b5132
RH
4783{
4784 return true;
4785}
4786#endif
4787
4788#ifndef coff_SWAP_aux_in
4789#define coff_SWAP_aux_in coff_swap_aux_in
4790#endif
4791#ifndef coff_SWAP_sym_in
4792#define coff_SWAP_sym_in coff_swap_sym_in
4793#endif
4794#ifndef coff_SWAP_lineno_in
4795#define coff_SWAP_lineno_in coff_swap_lineno_in
4796#endif
4797#ifndef coff_SWAP_aux_out
4798#define coff_SWAP_aux_out coff_swap_aux_out
4799#endif
4800#ifndef coff_SWAP_sym_out
4801#define coff_SWAP_sym_out coff_swap_sym_out
4802#endif
4803#ifndef coff_SWAP_lineno_out
4804#define coff_SWAP_lineno_out coff_swap_lineno_out
4805#endif
4806#ifndef coff_SWAP_reloc_out
4807#define coff_SWAP_reloc_out coff_swap_reloc_out
4808#endif
4809#ifndef coff_SWAP_filehdr_out
4810#define coff_SWAP_filehdr_out coff_swap_filehdr_out
4811#endif
4812#ifndef coff_SWAP_aouthdr_out
4813#define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
4814#endif
4815#ifndef coff_SWAP_scnhdr_out
4816#define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
4817#endif
4818#ifndef coff_SWAP_reloc_in
4819#define coff_SWAP_reloc_in coff_swap_reloc_in
4820#endif
4821#ifndef coff_SWAP_filehdr_in
4822#define coff_SWAP_filehdr_in coff_swap_filehdr_in
4823#endif
4824#ifndef coff_SWAP_aouthdr_in
4825#define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
4826#endif
4827#ifndef coff_SWAP_scnhdr_in
4828#define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
4829#endif
4830
692b7d62 4831static const bfd_coff_backend_data bfd_coff_std_swap_table =
252b5132
RH
4832{
4833 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
4834 coff_SWAP_aux_out, coff_SWAP_sym_out,
4835 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
4836 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
4837 coff_SWAP_scnhdr_out,
692b7d62 4838 FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
252b5132
RH
4839#ifdef COFF_LONG_FILENAMES
4840 true,
4841#else
4842 false,
4843#endif
4844#ifdef COFF_LONG_SECTION_NAMES
4845 true,
4846#else
4847 false,
4848#endif
4849 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
4850 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
4851 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
4852 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
4853 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
4854 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5d54c628 4855 coff_classify_symbol, coff_compute_section_file_positions,
252b5132
RH
4856 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
4857 coff_adjust_symndx, coff_link_add_one_symbol,
4858 coff_link_output_has_begun, coff_final_link_postscript
4859};
4860
4861#ifndef coff_close_and_cleanup
4862#define coff_close_and_cleanup _bfd_generic_close_and_cleanup
4863#endif
4864
4865#ifndef coff_bfd_free_cached_info
4866#define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
4867#endif
4868
4869#ifndef coff_get_section_contents
4870#define coff_get_section_contents _bfd_generic_get_section_contents
4871#endif
4872
4873#ifndef coff_bfd_copy_private_symbol_data
4874#define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data
4875#endif
4876
4877#ifndef coff_bfd_copy_private_section_data
4878#define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data
4879#endif
4880
4881#ifndef coff_bfd_copy_private_bfd_data
4882#define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data
4883#endif
4884
4885#ifndef coff_bfd_merge_private_bfd_data
4886#define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
4887#endif
4888
4889#ifndef coff_bfd_set_private_flags
4890#define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
4891#endif
4892
4893#ifndef coff_bfd_print_private_bfd_data
4894#define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
4895#endif
4896
4897#ifndef coff_bfd_is_local_label_name
4898#define coff_bfd_is_local_label_name _bfd_coff_is_local_label_name
4899#endif
4900
4901#ifndef coff_read_minisymbols
4902#define coff_read_minisymbols _bfd_generic_read_minisymbols
4903#endif
4904
4905#ifndef coff_minisymbol_to_symbol
4906#define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
4907#endif
4908
4909/* The reloc lookup routine must be supplied by each individual COFF
4910 backend. */
4911#ifndef coff_bfd_reloc_type_lookup
4912#define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
4913#endif
4914
4915#ifndef coff_bfd_get_relocated_section_contents
4916#define coff_bfd_get_relocated_section_contents \
4917 bfd_generic_get_relocated_section_contents
4918#endif
4919
4920#ifndef coff_bfd_relax_section
4921#define coff_bfd_relax_section bfd_generic_relax_section
4922#endif
4923
4924#ifndef coff_bfd_gc_sections
4925#define coff_bfd_gc_sections bfd_generic_gc_sections
4926#endif
c3c89269
NC
4927
4928#define CREATE_BIG_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE) \
4c117b10
ILT
4929const bfd_target VAR = \
4930{ \
4931 NAME , \
4932 bfd_target_coff_flavour, \
4933 BFD_ENDIAN_BIG, /* data byte order is big */ \
4934 BFD_ENDIAN_BIG, /* header byte order is big */ \
4935 /* object flags */ \
4936 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
4937 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
4938 /* section flags */ \
4939 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
4940 UNDER, /* leading symbol underscore */ \
4941 '/', /* ar_pad_char */ \
4942 15, /* ar_max_namelen */ \
4943 \
4944 /* Data conversion functions. */ \
4945 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
4946 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
4947 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
4948 \
4949 /* Header conversion functions. */ \
4950 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
4951 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
4952 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
4953 \
4954 /* bfd_check_format */ \
4955 { _bfd_dummy_target, coff_object_p, bfd_generic_archive_p, \
4956 _bfd_dummy_target }, \
4957 /* bfd_set_format */ \
4958 { bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false }, \
4959 /* bfd_write_contents */ \
4960 { bfd_false, coff_write_object_contents, _bfd_write_archive_contents, \
4961 bfd_false }, \
4962 \
4963 BFD_JUMP_TABLE_GENERIC (coff), \
4964 BFD_JUMP_TABLE_COPY (coff), \
4965 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
4966 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
4967 BFD_JUMP_TABLE_SYMBOLS (coff), \
4968 BFD_JUMP_TABLE_RELOCS (coff), \
4969 BFD_JUMP_TABLE_WRITE (coff), \
4970 BFD_JUMP_TABLE_LINK (coff), \
4971 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
4972 \
4973 ALTERNATIVE, \
4974 \
4975 COFF_SWAP_TABLE \
c3c89269
NC
4976};
4977
4978#define CREATE_LITTLE_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE) \
4c117b10
ILT
4979const bfd_target VAR = \
4980{ \
4981 NAME , \
4982 bfd_target_coff_flavour, \
4983 BFD_ENDIAN_LITTLE, /* data byte order is little */ \
4984 BFD_ENDIAN_LITTLE, /* header byte order is little */ \
4985 /* object flags */ \
4986 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
4987 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
4988 /* section flags */ \
4989 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
4990 UNDER, /* leading symbol underscore */ \
4991 '/', /* ar_pad_char */ \
4992 15, /* ar_max_namelen */ \
4993 \
4994 /* Data conversion functions. */ \
4995 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
4996 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
4997 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
4998 /* Header conversion functions. */ \
4999 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
5000 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
5001 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
5002 /* bfd_check_format */ \
5003 { _bfd_dummy_target, coff_object_p, bfd_generic_archive_p, \
5004 _bfd_dummy_target }, \
5005 /* bfd_set_format */ \
5006 { bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false }, \
5007 /* bfd_write_contents */ \
5008 { bfd_false, coff_write_object_contents, _bfd_write_archive_contents, \
5009 bfd_false }, \
5010 \
5011 BFD_JUMP_TABLE_GENERIC (coff), \
5012 BFD_JUMP_TABLE_COPY (coff), \
5013 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
5014 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
5015 BFD_JUMP_TABLE_SYMBOLS (coff), \
5016 BFD_JUMP_TABLE_RELOCS (coff), \
5017 BFD_JUMP_TABLE_WRITE (coff), \
5018 BFD_JUMP_TABLE_LINK (coff), \
5019 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
5020 \
5021 ALTERNATIVE, \
5022 \
5023 COFF_SWAP_TABLE \
c3c89269 5024};