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