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