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