Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / coffcode.h
CommitLineData
252b5132 1/* Support for the generic parts of most COFF variants, for BFD.
250d07de 2 Copyright (C) 1990-2021 Free Software Foundation, Inc.
252b5132
RH
3 Written by Cygnus Support.
4
ed781d5d 5 This file is part of BFD, the Binary File Descriptor library.
252b5132 6
ed781d5d
NC
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
cd123cb7 9 the Free Software Foundation; either version 3 of the License, or
ed781d5d 10 (at your option) any later version.
252b5132 11
ed781d5d
NC
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
252b5132 16
ed781d5d
NC
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
cd123cb7
NC
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
252b5132 21
7920ce38
NC
22/* Most of this hacked by Steve Chamberlain,
23 sac@cygnus.com. */
252b5132 24/*
252b5132
RH
25SECTION
26 coff backends
27
28 BFD supports a number of different flavours of coff format.
29 The major differences between formats are the sizes and
30 alignments of fields in structures on disk, and the occasional
31 extra field.
32
33 Coff in all its varieties is implemented with a few common
34 files and a number of implementation specific files. For
c2bf1eec
AM
35 example, the i386 coff format is implemented in the file
36 @file{coff-i386.c}. This file @code{#include}s
37 @file{coff/i386.h} which defines the external structure of the
38 coff format for the i386, and @file{coff/internal.h} which
39 defines the internal structure. @file{coff-i386.c} also
40 defines the relocations used by the i386 coff format
252b5132
RH
41 @xref{Relocations}.
42
252b5132
RH
43SUBSECTION
44 Porting to a new version of coff
45
46 The recommended method is to select from the existing
47 implementations the version of coff which is most like the one
48 you want to use. For example, we'll say that i386 coff is
49 the one you select, and that your coff flavour is called foo.
50 Copy @file{i386coff.c} to @file{foocoff.c}, copy
51 @file{../include/coff/i386.h} to @file{../include/coff/foo.h},
52 and add the lines to @file{targets.c} and @file{Makefile.in}
53 so that your new back end is used. Alter the shapes of the
54 structures in @file{../include/coff/foo.h} so that they match
55 what you need. You will probably also have to add
56 @code{#ifdef}s to the code in @file{coff/internal.h} and
57 @file{coffcode.h} if your version of coff is too wild.
58
59 You can verify that your new BFD backend works quite simply by
60 building @file{objdump} from the @file{binutils} directory,
61 and making sure that its version of what's going on and your
62 host system's idea (assuming it has the pretty standard coff
63 dump utility, usually called @code{att-dump} or just
64 @code{dump}) are the same. Then clean up your code, and send
65 what you've done to Cygnus. Then your stuff will be in the
66 next release, and you won't have to keep integrating it.
67
68SUBSECTION
69 How the coff backend works
70
71SUBSUBSECTION
72 File layout
73
74 The Coff backend is split into generic routines that are
75 applicable to any Coff target and routines that are specific
76 to a particular target. The target-specific routines are
77 further split into ones which are basically the same for all
78 Coff targets except that they use the external symbol format
79 or use different values for certain constants.
80
81 The generic routines are in @file{coffgen.c}. These routines
82 work for any Coff target. They use some hooks into the target
83 specific code; the hooks are in a @code{bfd_coff_backend_data}
84 structure, one of which exists for each target.
85
86 The essentially similar target-specific routines are in
87 @file{coffcode.h}. This header file includes executable C code.
88 The various Coff targets first include the appropriate Coff
89 header file, make any special defines that are needed, and
90 then include @file{coffcode.h}.
91
92 Some of the Coff targets then also have additional routines in
93 the target source file itself.
94
88183869
DK
95SUBSUBSECTION
96 Coff long section names
97
98 In the standard Coff object format, section names are limited to
99 the eight bytes available in the @code{s_name} field of the
100 @code{SCNHDR} section header structure. The format requires the
101 field to be NUL-padded, but not necessarily NUL-terminated, so
102 the longest section names permitted are a full eight characters.
103
104 The Microsoft PE variants of the Coff object file format add
105 an extension to support the use of long section names. This
68ffbac6 106 extension is defined in section 4 of the Microsoft PE/COFF
88183869
DK
107 specification (rev 8.1). If a section name is too long to fit
108 into the section header's @code{s_name} field, it is instead
109 placed into the string table, and the @code{s_name} field is
68ffbac6 110 filled with a slash ("/") followed by the ASCII decimal
88183869
DK
111 representation of the offset of the full name relative to the
112 string table base.
113
114 Note that this implies that the extension can only be used in object
115 files, as executables do not contain a string table. The standard
116 specifies that long section names from objects emitted into executable
117 images are to be truncated.
118
119 However, as a GNU extension, BFD can generate executable images
120 that contain a string table and long section names. This
121 would appear to be technically valid, as the standard only says
122 that Coff debugging information is deprecated, not forbidden,
123 and in practice it works, although some tools that parse PE files
124 expecting the MS standard format may become confused; @file{PEview} is
125 one known example.
126
68ffbac6 127 The functionality is supported in BFD by code implemented under
88183869
DK
128 the control of the macro @code{COFF_LONG_SECTION_NAMES}. If not
129 defined, the format does not support long section names in any way.
68ffbac6
L
130 If defined, it is used to initialise a flag,
131 @code{_bfd_coff_long_section_names}, and a hook function pointer,
88183869
DK
132 @code{_bfd_coff_set_long_section_names}, in the Coff backend data
133 structure. The flag controls the generation of long section names
134 in output BFDs at runtime; if it is false, as it will be by default
135 when generating an executable image, long section names are truncated;
136 if true, the long section names extension is employed. The hook
137 points to a function that allows the value of the flag to be altered
138 at runtime, on formats that support long section names at all; on
139 other formats it points to a stub that returns an error indication.
68ffbac6 140
0408dee6
DK
141 With input BFDs, the flag is set according to whether any long section
142 names are detected while reading the section headers. For a completely
143 new BFD, the flag is set to the default for the target format. This
144 information can be used by a client of the BFD library when deciding
145 what output format to generate, and means that a BFD that is opened
146 for read and subsequently converted to a writeable BFD and modified
147 in-place will retain whatever format it had on input.
88183869
DK
148
149 If @code{COFF_LONG_SECTION_NAMES} is simply defined (blank), or is
150 defined to the value "1", then long section names are enabled by
151 default; if it is defined to the value zero, they are disabled by
152 default (but still accepted in input BFDs). The header @file{coffcode.h}
153 defines a macro, @code{COFF_DEFAULT_LONG_SECTION_NAMES}, which is
154 used in the backends to initialise the backend data structure fields
155 appropriately; see the comments for further detail.
156
252b5132
RH
157SUBSUBSECTION
158 Bit twiddling
159
160 Each flavour of coff supported in BFD has its own header file
161 describing the external layout of the structures. There is also
162 an internal description of the coff layout, in
163 @file{coff/internal.h}. A major function of the
164 coff backend is swapping the bytes and twiddling the bits to
165 translate the external form of the structures into the normal
166 internal form. This is all performed in the
167 @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
168 elements are different sizes between different versions of
169 coff; it is the duty of the coff version specific include file
170 to override the definitions of various packing routines in
171 @file{coffcode.h}. E.g., the size of line number entry in coff is
172 sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
173 @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
174 correct one. No doubt, some day someone will find a version of
175 coff which has a varying field size not catered to at the
176 moment. To port BFD, that person will have to add more @code{#defines}.
177 Three of the bit twiddling routines are exported to
178 @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
00692651 179 and @code{coff_swap_lineno_in}. @code{GDB} reads the symbol
252b5132
RH
180 table on its own, but uses BFD to fix things up. More of the
181 bit twiddlers are exported for @code{gas};
182 @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
183 @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
184 @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
185 @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
186 of all the symbol table and reloc drudgery itself, thereby
187 saving the internal BFD overhead, but uses BFD to swap things
188 on the way out, making cross ports much safer. Doing so also
189 allows BFD (and thus the linker) to use the same header files
190 as @code{gas}, which makes one avenue to disaster disappear.
191
192SUBSUBSECTION
193 Symbol reading
194
195 The simple canonical form for symbols used by BFD is not rich
196 enough to keep all the information available in a coff symbol
197 table. The back end gets around this problem by keeping the original
198 symbol table around, "behind the scenes".
199
200 When a symbol table is requested (through a call to
201 @code{bfd_canonicalize_symtab}), a request gets through to
202 @code{coff_get_normalized_symtab}. This reads the symbol table from
203 the coff file and swaps all the structures inside into the
204 internal form. It also fixes up all the pointers in the table
205 (represented in the file by offsets from the first symbol in
206 the table) into physical pointers to elements in the new
207 internal table. This involves some work since the meanings of
208 fields change depending upon context: a field that is a
209 pointer to another structure in the symbol table at one moment
210 may be the size in bytes of a structure at the next. Another
211 pass is made over the table. All symbols which mark file names
212 (<<C_FILE>> symbols) are modified so that the internal
213 string points to the value in the auxent (the real filename)
214 rather than the normal text associated with the symbol
215 (@code{".file"}).
216
217 At this time the symbol names are moved around. Coff stores
218 all symbols less than nine characters long physically
219 within the symbol table; longer strings are kept at the end of
46f2f11d 220 the file in the string table. This pass moves all strings
252b5132
RH
221 into memory and replaces them with pointers to the strings.
222
252b5132
RH
223 The symbol table is massaged once again, this time to create
224 the canonical table used by the BFD application. Each symbol
225 is inspected in turn, and a decision made (using the
226 @code{sclass} field) about the various flags to set in the
227 @code{asymbol}. @xref{Symbols}. The generated canonical table
228 shares strings with the hidden internal symbol table.
229
230 Any linenumbers are read from the coff file too, and attached
231 to the symbols which own the functions the linenumbers belong to.
232
233SUBSUBSECTION
234 Symbol writing
235
236 Writing a symbol to a coff file which didn't come from a coff
237 file will lose any debugging information. The @code{asymbol}
238 structure remembers the BFD from which the symbol was taken, and on
239 output the back end makes sure that the same destination target as
240 source target is present.
241
242 When the symbols have come from a coff file then all the
243 debugging information is preserved.
244
245 Symbol tables are provided for writing to the back end in a
246 vector of pointers to pointers. This allows applications like
247 the linker to accumulate and output large symbol tables
248 without having to do too much byte copying.
249
250 This function runs through the provided symbol table and
251 patches each symbol marked as a file place holder
252 (@code{C_FILE}) to point to the next file place holder in the
253 list. It also marks each @code{offset} field in the list with
254 the offset from the first symbol of the current symbol.
255
256 Another function of this procedure is to turn the canonical
257 value form of BFD into the form used by coff. Internally, BFD
258 expects symbol values to be offsets from a section base; so a
259 symbol physically at 0x120, but in a section starting at
260 0x100, would have the value 0x20. Coff expects symbols to
261 contain their final value, so symbols have their values
262 changed at this point to reflect their sum with their owning
263 section. This transformation uses the
264 <<output_section>> field of the @code{asymbol}'s
265 @code{asection} @xref{Sections}.
266
267 o <<coff_mangle_symbols>>
268
269 This routine runs though the provided symbol table and uses
270 the offsets generated by the previous pass and the pointers
271 generated when the symbol table was read in to create the
ed781d5d 272 structured hierarchy required by coff. It changes each pointer
252b5132
RH
273 to a symbol into the index into the symbol table of the asymbol.
274
275 o <<coff_write_symbols>>
276
277 This routine runs through the symbol table and patches up the
278 symbols from their internal form into the coff way, calls the
279 bit twiddlers, and writes out the table to the file.
280
281*/
282
283/*
284INTERNAL_DEFINITION
285 coff_symbol_type
286
287DESCRIPTION
288 The hidden information for an <<asymbol>> is described in a
289 <<combined_entry_type>>:
290
291CODE_FRAGMENT
292.
293.typedef struct coff_ptr_struct
294.{
dc810e39 295. {* Remembers the offset from the first symbol in the file for
a5c71af8 296. this symbol. Generated by coff_renumber_symbols. *}
dc810e39 297. unsigned int offset;
252b5132 298.
dc810e39
AM
299. {* Should the value of this symbol be renumbered. Used for
300. XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *}
301. unsigned int fix_value : 1;
252b5132 302.
dc810e39 303. {* Should the tag field of this symbol be renumbered.
a5c71af8 304. Created by coff_pointerize_aux. *}
dc810e39 305. unsigned int fix_tag : 1;
252b5132 306.
dc810e39 307. {* Should the endidx field of this symbol be renumbered.
a5c71af8 308. Created by coff_pointerize_aux. *}
dc810e39 309. unsigned int fix_end : 1;
252b5132 310.
dc810e39 311. {* Should the x_csect.x_scnlen field be renumbered.
a5c71af8 312. Created by coff_pointerize_aux. *}
dc810e39 313. unsigned int fix_scnlen : 1;
252b5132 314.
dc810e39
AM
315. {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the
316. index into the line number entries. Set by coff_slurp_symbol_table. *}
317. unsigned int fix_line : 1;
252b5132 318.
dc810e39 319. {* The container for the symbol structure as read and translated
a5c71af8 320. from the file. *}
dc810e39
AM
321. union
322. {
323. union internal_auxent auxent;
324. struct internal_syment syment;
325. } u;
a5c71af8
NC
326.
327. {* Selector for the union above. *}
328. bfd_boolean is_sym;
252b5132
RH
329.} combined_entry_type;
330.
331.
332.{* Each canonical asymbol really looks like this: *}
333.
334.typedef struct coff_symbol_struct
335.{
dc810e39
AM
336. {* The actual symbol which the rest of BFD works with *}
337. asymbol symbol;
252b5132 338.
dc810e39
AM
339. {* A pointer to the hidden information for this symbol *}
340. combined_entry_type *native;
252b5132 341.
dc810e39
AM
342. {* A pointer to the linenumber information for this symbol *}
343. struct lineno_cache_entry *lineno;
252b5132 344.
dc810e39 345. {* Have the line numbers been relocated yet ? *}
b34976b6 346. bfd_boolean done_lineno;
252b5132
RH
347.} coff_symbol_type;
348
252b5132
RH
349*/
350
3d03da9a
EZ
351#include "libiberty.h"
352
252b5132
RH
353#ifdef COFF_WITH_PE
354#include "peicode.h"
355#else
356#include "coffswap.h"
357#endif
358
b5b2699c 359#define STRING_SIZE_SIZE 4
252b5132 360
8a7140c3 361#define DOT_DEBUG ".debug"
a29a8af8 362#define DOT_ZDEBUG ".zdebug"
8a7140c3 363#define GNU_LINKONCE_WI ".gnu.linkonce.wi."
802d4822 364#define GNU_LINKONCE_WT ".gnu.linkonce.wt."
bdeb4032 365#define DOT_RELOC ".reloc"
8a7140c3 366
f717994f
JMG
367#if defined(COFF_WITH_PE) || defined(COFF_GO32_EXE) || defined(COFF_GO32)
368# define COFF_WITH_EXTENDED_RELOC_COUNTER
369#endif
370
88183869
DK
371#if defined (COFF_LONG_SECTION_NAMES)
372/* Needed to expand the inputs to BLANKOR1TOODD. */
373#define COFFLONGSECTIONCATHELPER(x,y) x ## y
374/* If the input macro Y is blank or '1', return an odd number; if it is
375 '0', return an even number. Result undefined in all other cases. */
07d6d2b8 376#define BLANKOR1TOODD(y) COFFLONGSECTIONCATHELPER(1,y)
88183869
DK
377/* Defined to numerical 0 or 1 according to whether generation of long
378 section names is disabled or enabled by default. */
379#define COFF_ENABLE_LONG_SECTION_NAMES (BLANKOR1TOODD(COFF_LONG_SECTION_NAMES) & 1)
380/* Where long section names are supported, we allow them to be enabled
381 and disabled at runtime, so select an appropriate hook function for
382 _bfd_coff_set_long_section_names. */
383#define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_allowed
384#else /* !defined (COFF_LONG_SECTION_NAMES) */
385/* If long section names are not supported, this stub disallows any
386 attempt to enable them at run-time. */
387#define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_disallowed
388#endif /* defined (COFF_LONG_SECTION_NAMES) */
389
390/* Define a macro that can be used to initialise both the fields relating
391 to long section names in the backend data struct simultaneously. */
392#if COFF_ENABLE_LONG_SECTION_NAMES
393#define COFF_DEFAULT_LONG_SECTION_NAMES (TRUE), COFF_LONG_SECTION_NAMES_SETTER
394#else /* !COFF_ENABLE_LONG_SECTION_NAMES */
395#define COFF_DEFAULT_LONG_SECTION_NAMES (FALSE), COFF_LONG_SECTION_NAMES_SETTER
396#endif /* COFF_ENABLE_LONG_SECTION_NAMES */
397
398#if defined (COFF_LONG_SECTION_NAMES)
399static bfd_boolean bfd_coff_set_long_section_names_allowed
400 (bfd *, int);
401#else /* !defined (COFF_LONG_SECTION_NAMES) */
402static bfd_boolean bfd_coff_set_long_section_names_disallowed
403 (bfd *, int);
404#endif /* defined (COFF_LONG_SECTION_NAMES) */
b34976b6 405static long sec_to_styp_flags
7920ce38 406 (const char *, flagword);
b34976b6 407static bfd_boolean styp_to_sec_flags
7920ce38 408 (bfd *, void *, const char *, asection *, flagword *);
b34976b6 409static bfd_boolean coff_bad_format_hook
7920ce38 410 (bfd *, void *);
5dccc1dd 411static void coff_set_custom_section_alignment
7920ce38
NC
412 (bfd *, asection *, const struct coff_section_alignment_entry *,
413 const unsigned int);
b34976b6 414static bfd_boolean coff_new_section_hook
7920ce38 415 (bfd *, asection *);
b34976b6 416static bfd_boolean coff_set_arch_mach_hook
7920ce38 417 (bfd *, void *);
b34976b6 418static bfd_boolean coff_write_relocs
7920ce38 419 (bfd *, int);
b34976b6 420static bfd_boolean coff_set_flags
7920ce38 421 (bfd *, unsigned int *, unsigned short *);
b34976b6 422static bfd_boolean coff_set_arch_mach
7920ce38 423 (bfd *, enum bfd_architecture, unsigned long) ATTRIBUTE_UNUSED;
b34976b6 424static bfd_boolean coff_compute_section_file_positions
7920ce38 425 (bfd *);
b34976b6 426static bfd_boolean coff_write_object_contents
7920ce38 427 (bfd *) ATTRIBUTE_UNUSED;
b34976b6 428static bfd_boolean coff_set_section_contents
7920ce38 429 (bfd *, asection *, const void *, file_ptr, bfd_size_type);
b34976b6 430static bfd_boolean coff_slurp_line_table
7920ce38 431 (bfd *, asection *);
b34976b6 432static bfd_boolean coff_slurp_symbol_table
7920ce38 433 (bfd *);
5d54c628 434static enum coff_symbol_classification coff_classify_symbol
7920ce38 435 (bfd *, struct internal_syment *);
b34976b6 436static bfd_boolean coff_slurp_reloc_table
7920ce38 437 (bfd *, asection *, asymbol **);
252b5132 438static long coff_canonicalize_reloc
7920ce38 439 (bfd *, asection *, arelent **, asymbol **);
252b5132 440#ifndef coff_mkobject_hook
7920ce38
NC
441static void * coff_mkobject_hook
442 (bfd *, void *, void *);
252b5132 443#endif
1276aefa 444#ifdef COFF_WITH_PE
b34976b6 445static flagword handle_COMDAT
7920ce38 446 (bfd *, flagword, void *, const char *, asection *);
1276aefa 447#endif
5a5b9651
SS
448#ifdef TICOFF
449static bfd_boolean ticoff0_bad_format_hook
7920ce38 450 (bfd *, void * );
5a5b9651 451static bfd_boolean ticoff1_bad_format_hook
7920ce38 452 (bfd *, void * );
5a5b9651 453#endif
252b5132
RH
454\f
455/* void warning(); */
456
88183869
DK
457#if defined (COFF_LONG_SECTION_NAMES)
458static bfd_boolean
459bfd_coff_set_long_section_names_allowed (bfd *abfd, int enable)
460{
461 coff_backend_info (abfd)->_bfd_coff_long_section_names = enable;
462 return TRUE;
463}
464#else /* !defined (COFF_LONG_SECTION_NAMES) */
465static bfd_boolean
466bfd_coff_set_long_section_names_disallowed (bfd *abfd, int enable)
467{
468 (void) abfd;
469 (void) enable;
470 return FALSE;
471}
472#endif /* defined (COFF_LONG_SECTION_NAMES) */
473
41733515
ILT
474/* Return a word with STYP_* (scnhdr.s_flags) flags set to represent
475 the incoming SEC_* flags. The inverse of this function is
476 styp_to_sec_flags(). NOTE: If you add to/change this routine, you
477 should probably mirror the changes in styp_to_sec_flags(). */
478
479#ifndef COFF_WITH_PE
480
51db3708 481/* Macros for setting debugging flags. */
7920ce38 482
51db3708
NC
483#ifdef STYP_DEBUG
484#define STYP_XCOFF_DEBUG STYP_DEBUG
485#else
486#define STYP_XCOFF_DEBUG STYP_INFO
487#endif
488
489#ifdef COFF_ALIGN_IN_S_FLAGS
490#define STYP_DEBUG_INFO STYP_DSECT
491#else
492#define STYP_DEBUG_INFO STYP_INFO
493#endif
494
252b5132 495static long
7920ce38 496sec_to_styp_flags (const char *sec_name, flagword sec_flags)
252b5132
RH
497{
498 long styp_flags = 0;
499
500 if (!strcmp (sec_name, _TEXT))
501 {
502 styp_flags = STYP_TEXT;
503 }
504 else if (!strcmp (sec_name, _DATA))
505 {
506 styp_flags = STYP_DATA;
507 }
508 else if (!strcmp (sec_name, _BSS))
509 {
510 styp_flags = STYP_BSS;
511#ifdef _COMMENT
512 }
513 else if (!strcmp (sec_name, _COMMENT))
514 {
515 styp_flags = STYP_INFO;
516#endif /* _COMMENT */
517#ifdef _LIB
518 }
519 else if (!strcmp (sec_name, _LIB))
520 {
521 styp_flags = STYP_LIB;
522#endif /* _LIB */
523#ifdef _LIT
524 }
525 else if (!strcmp (sec_name, _LIT))
526 {
527 styp_flags = STYP_LIT;
528#endif /* _LIT */
529 }
a29a8af8 530 else if (CONST_STRNEQ (sec_name, DOT_DEBUG)
07d6d2b8 531 || CONST_STRNEQ (sec_name, DOT_ZDEBUG))
252b5132 532 {
51db3708
NC
533 /* Handle the XCOFF debug section and DWARF2 debug sections. */
534 if (!sec_name[6])
46f2f11d 535 styp_flags = STYP_XCOFF_DEBUG;
51db3708 536 else
46f2f11d 537 styp_flags = STYP_DEBUG_INFO;
252b5132 538 }
0112cd26 539 else if (CONST_STRNEQ (sec_name, ".stab"))
252b5132 540 {
51db3708
NC
541 styp_flags = STYP_DEBUG_INFO;
542 }
543#ifdef COFF_LONG_SECTION_NAMES
802d4822 544 else if (CONST_STRNEQ (sec_name, GNU_LINKONCE_WI)
07d6d2b8 545 || CONST_STRNEQ (sec_name, GNU_LINKONCE_WT))
51db3708
NC
546 {
547 styp_flags = STYP_DEBUG_INFO;
252b5132 548 }
51db3708 549#endif
252b5132 550#ifdef RS6000COFF_C
1b2cb8e2
CC
551 else if (!strcmp (sec_name, _TDATA))
552 {
553 styp_flags = STYP_TDATA;
554 }
555 else if (!strcmp (sec_name, _TBSS))
556 {
557 styp_flags = STYP_TBSS;
558 }
252b5132
RH
559 else if (!strcmp (sec_name, _PAD))
560 {
561 styp_flags = STYP_PAD;
562 }
563 else if (!strcmp (sec_name, _LOADER))
564 {
565 styp_flags = STYP_LOADER;
566 }
67fdeebe
TR
567 else if (!strcmp (sec_name, _EXCEPT))
568 {
569 styp_flags = STYP_EXCEPT;
570 }
571 else if (!strcmp (sec_name, _TYPCHK))
572 {
573 styp_flags = STYP_TYPCHK;
574 }
85645aed
TG
575 else if (sec_flags & SEC_DEBUGGING)
576 {
577 int i;
578
579 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
07d6d2b8
AM
580 if (!strcmp (sec_name, xcoff_dwsect_names[i].name))
581 {
582 styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
583 break;
584 }
85645aed 585 }
252b5132
RH
586#endif
587 /* Try and figure out what it should be */
588 else if (sec_flags & SEC_CODE)
589 {
590 styp_flags = STYP_TEXT;
591 }
592 else if (sec_flags & SEC_DATA)
593 {
594 styp_flags = STYP_DATA;
595 }
596 else if (sec_flags & SEC_READONLY)
597 {
598#ifdef STYP_LIT /* 29k readonly text/data section */
599 styp_flags = STYP_LIT;
600#else
601 styp_flags = STYP_TEXT;
602#endif /* STYP_LIT */
603 }
604 else if (sec_flags & SEC_LOAD)
605 {
606 styp_flags = STYP_TEXT;
607 }
608 else if (sec_flags & SEC_ALLOC)
609 {
610 styp_flags = STYP_BSS;
611 }
612
34cbe64e 613#ifdef STYP_CLINK
ebe372c1 614 if (sec_flags & SEC_TIC54X_CLINK)
34cbe64e
TW
615 styp_flags |= STYP_CLINK;
616#endif
617
618#ifdef STYP_BLOCK
ebe372c1 619 if (sec_flags & SEC_TIC54X_BLOCK)
34cbe64e
TW
620 styp_flags |= STYP_BLOCK;
621#endif
622
252b5132
RH
623#ifdef STYP_NOLOAD
624 if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
625 styp_flags |= STYP_NOLOAD;
626#endif
627
41733515
ILT
628 return styp_flags;
629}
630
631#else /* COFF_WITH_PE */
632
633/* The PE version; see above for the general comments. The non-PE
634 case seems to be more guessing, and breaks PE format; specifically,
635 .rdata is readonly, but it sure ain't text. Really, all this
636 should be set up properly in gas (or whatever assembler is in use),
637 and honor whatever objcopy/strip, etc. sent us as input. */
638
639static long
7920ce38 640sec_to_styp_flags (const char *sec_name, flagword sec_flags)
41733515
ILT
641{
642 long styp_flags = 0;
72e4db75
KT
643 bfd_boolean is_dbg = FALSE;
644
645 if (CONST_STRNEQ (sec_name, DOT_DEBUG)
a29a8af8 646 || CONST_STRNEQ (sec_name, DOT_ZDEBUG)
72e4db75
KT
647#ifdef COFF_LONG_SECTION_NAMES
648 || CONST_STRNEQ (sec_name, GNU_LINKONCE_WI)
802d4822 649 || CONST_STRNEQ (sec_name, GNU_LINKONCE_WT)
72e4db75
KT
650#endif
651 || CONST_STRNEQ (sec_name, ".stab"))
652 is_dbg = TRUE;
41733515
ILT
653
654 /* caution: there are at least three groups of symbols that have
655 very similar bits and meanings: IMAGE_SCN*, SEC_*, and STYP_*.
656 SEC_* are the BFD internal flags, used for generic BFD
657 information. STYP_* are the COFF section flags which appear in
658 COFF files. IMAGE_SCN_* are the PE section flags which appear in
659 PE files. The STYP_* flags and the IMAGE_SCN_* flags overlap,
660 but there are more IMAGE_SCN_* flags. */
661
8a7140c3 662 /* FIXME: There is no gas syntax to specify the debug section flag. */
72e4db75 663 if (is_dbg)
72b016b4 664 {
2b914c2b 665 sec_flags &= (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD
07d6d2b8
AM
666 | SEC_LINK_DUPLICATES_SAME_CONTENTS
667 | SEC_LINK_DUPLICATES_SAME_SIZE);
72b016b4
NC
668 sec_flags |= SEC_DEBUGGING | SEC_READONLY;
669 }
8a7140c3 670
41733515
ILT
671 /* skip LOAD */
672 /* READONLY later */
673 /* skip RELOC */
674 if ((sec_flags & SEC_CODE) != 0)
675 styp_flags |= IMAGE_SCN_CNT_CODE;
72e4db75 676 if ((sec_flags & (SEC_DATA | SEC_DEBUGGING)) != 0)
41733515
ILT
677 styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
678 if ((sec_flags & SEC_ALLOC) != 0 && (sec_flags & SEC_LOAD) == 0)
679 styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
680 /* skip ROM */
dc810e39 681 /* skip constRUCTOR */
41733515 682 /* skip CONTENTS */
6b5465b9
JB
683#ifndef COFF_IMAGE_WITH_PE
684 /* I don't think any of the IMAGE_SCN_LNK_* flags set below should be set
685 when the output is PE. Only object files should have them, for the linker
686 to consume. */
41733515 687 if ((sec_flags & SEC_IS_COMMON) != 0)
252b5132 688 styp_flags |= IMAGE_SCN_LNK_COMDAT;
6b5465b9 689#endif
41733515
ILT
690 if ((sec_flags & SEC_DEBUGGING) != 0)
691 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
6b5465b9
JB
692 if ((sec_flags & (SEC_EXCLUDE | SEC_NEVER_LOAD)) != 0 && !is_dbg)
693#ifdef COFF_IMAGE_WITH_PE
694 styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
695#else
41733515 696 styp_flags |= IMAGE_SCN_LNK_REMOVE;
6b5465b9 697#endif
41733515
ILT
698 /* skip IN_MEMORY */
699 /* skip SORT */
6b5465b9 700#ifndef COFF_IMAGE_WITH_PE
e60b52c6
KH
701 if (sec_flags & SEC_LINK_ONCE)
702 styp_flags |= IMAGE_SCN_LNK_COMDAT;
2b914c2b
KT
703 if ((sec_flags
704 & (SEC_LINK_DUPLICATES_DISCARD | SEC_LINK_DUPLICATES_SAME_CONTENTS
07d6d2b8 705 | SEC_LINK_DUPLICATES_SAME_SIZE)) != 0)
2b914c2b 706 styp_flags |= IMAGE_SCN_LNK_COMDAT;
6b5465b9 707#endif
68ffbac6 708
41733515
ILT
709 /* skip LINKER_CREATED */
710
156621f3
KT
711 if ((sec_flags & SEC_COFF_NOREAD) == 0)
712 styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
713 if ((sec_flags & SEC_READONLY) == 0)
714 styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
715 if (sec_flags & SEC_CODE)
716 styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
717 if (sec_flags & SEC_COFF_SHARED)
718 styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
252b5132 719
e60b52c6 720 return styp_flags;
252b5132 721}
41733515
ILT
722
723#endif /* COFF_WITH_PE */
724
725/* Return a word with SEC_* flags set to represent the incoming STYP_*
726 flags (from scnhdr.s_flags). The inverse of this function is
727 sec_to_styp_flags(). NOTE: If you add to/change this routine, you
728 should probably mirror the changes in sec_to_styp_flags(). */
729
730#ifndef COFF_WITH_PE
731
b34976b6 732static bfd_boolean
a4dd6c97 733styp_to_sec_flags (bfd *abfd,
7920ce38
NC
734 void * hdr,
735 const char *name,
736 asection *section ATTRIBUTE_UNUSED,
737 flagword *flags_ptr)
252b5132
RH
738{
739 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
740 long styp_flags = internal_s->s_flags;
741 flagword sec_flags = 0;
742
34cbe64e
TW
743#ifdef STYP_BLOCK
744 if (styp_flags & STYP_BLOCK)
ebe372c1 745 sec_flags |= SEC_TIC54X_BLOCK;
e60b52c6 746#endif
34cbe64e
TW
747
748#ifdef STYP_CLINK
749 if (styp_flags & STYP_CLINK)
ebe372c1 750 sec_flags |= SEC_TIC54X_CLINK;
e60b52c6 751#endif
34cbe64e 752
252b5132
RH
753#ifdef STYP_NOLOAD
754 if (styp_flags & STYP_NOLOAD)
7c8ca0e4 755 sec_flags |= SEC_NEVER_LOAD;
252b5132
RH
756#endif /* STYP_NOLOAD */
757
758 /* For 386 COFF, at least, an unloadable text or data section is
759 actually a shared library section. */
760 if (styp_flags & STYP_TEXT)
761 {
762 if (sec_flags & SEC_NEVER_LOAD)
763 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
764 else
765 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
766 }
767 else if (styp_flags & STYP_DATA)
768 {
769 if (sec_flags & SEC_NEVER_LOAD)
770 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
771 else
772 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
773 }
774 else if (styp_flags & STYP_BSS)
775 {
776#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
777 if (sec_flags & SEC_NEVER_LOAD)
778 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
779 else
780#endif
781 sec_flags |= SEC_ALLOC;
782 }
783 else if (styp_flags & STYP_INFO)
784 {
785 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
786 defined. coff_compute_section_file_positions uses
787 COFF_PAGE_SIZE to ensure that the low order bits of the
788 section VMA and the file offset match. If we don't know
789 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
790 and demand page loading of the file will fail. */
791#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
792 sec_flags |= SEC_DEBUGGING;
793#endif
794 }
795 else if (styp_flags & STYP_PAD)
7c8ca0e4 796 sec_flags = 0;
85645aed 797#ifdef RS6000COFF_C
1b2cb8e2
CC
798 else if (styp_flags & STYP_TDATA)
799 {
800 if (sec_flags & SEC_NEVER_LOAD)
801 sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
802 else
803 sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
804 }
805 else if (styp_flags & STYP_TBSS)
806 {
807#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
808 if (sec_flags & SEC_NEVER_LOAD)
809 sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
810 else
811#endif
812 sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
813 }
110a61d3
JB
814 else if (styp_flags & STYP_EXCEPT)
815 sec_flags |= SEC_LOAD;
816 else if (styp_flags & STYP_LOADER)
817 sec_flags |= SEC_LOAD;
818 else if (styp_flags & STYP_TYPCHK)
819 sec_flags |= SEC_LOAD;
85645aed
TG
820 else if (styp_flags & STYP_DWARF)
821 sec_flags |= SEC_DEBUGGING;
822#endif
252b5132
RH
823 else if (strcmp (name, _TEXT) == 0)
824 {
825 if (sec_flags & SEC_NEVER_LOAD)
826 sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
827 else
828 sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
829 }
830 else if (strcmp (name, _DATA) == 0)
831 {
832 if (sec_flags & SEC_NEVER_LOAD)
833 sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
834 else
835 sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
836 }
837 else if (strcmp (name, _BSS) == 0)
838 {
839#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
840 if (sec_flags & SEC_NEVER_LOAD)
841 sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
842 else
843#endif
844 sec_flags |= SEC_ALLOC;
845 }
0112cd26 846 else if (CONST_STRNEQ (name, DOT_DEBUG)
a29a8af8 847 || CONST_STRNEQ (name, DOT_ZDEBUG)
252b5132
RH
848#ifdef _COMMENT
849 || strcmp (name, _COMMENT) == 0
51db3708
NC
850#endif
851#ifdef COFF_LONG_SECTION_NAMES
0112cd26 852 || CONST_STRNEQ (name, GNU_LINKONCE_WI)
802d4822 853 || CONST_STRNEQ (name, GNU_LINKONCE_WT)
252b5132 854#endif
0112cd26 855 || CONST_STRNEQ (name, ".stab"))
252b5132
RH
856 {
857#ifdef COFF_PAGE_SIZE
858 sec_flags |= SEC_DEBUGGING;
859#endif
860 }
861#ifdef _LIB
862 else if (strcmp (name, _LIB) == 0)
863 ;
864#endif
865#ifdef _LIT
866 else if (strcmp (name, _LIT) == 0)
7c8ca0e4 867 sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
252b5132
RH
868#endif
869 else
7c8ca0e4 870 sec_flags |= SEC_ALLOC | SEC_LOAD;
252b5132 871
ed781d5d 872#ifdef STYP_LIT /* A29k readonly text/data section type. */
252b5132 873 if ((styp_flags & STYP_LIT) == STYP_LIT)
7c8ca0e4 874 sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
252b5132 875#endif /* STYP_LIT */
7c8ca0e4 876
ed781d5d 877#ifdef STYP_OTHER_LOAD /* Other loaded sections. */
252b5132 878 if (styp_flags & STYP_OTHER_LOAD)
7c8ca0e4 879 sec_flags = (SEC_LOAD | SEC_ALLOC);
252b5132
RH
880#endif /* STYP_SDATA */
881
a4dd6c97
AM
882 if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
883 && (CONST_STRNEQ (name, ".sbss")
884 || CONST_STRNEQ (name, ".sdata")))
885 sec_flags |= SEC_SMALL_DATA;
886
41733515
ILT
887#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
888 /* As a GNU extension, if the name begins with .gnu.linkonce, we
889 only link a single copy of the section. This is used to support
890 g++. g++ will emit each template expansion in its own section.
891 The symbols will be defined as weak, so that multiple definitions
892 are permitted. The GNU linker extension is to actually discard
893 all but one of the sections. */
0112cd26 894 if (CONST_STRNEQ (name, ".gnu.linkonce"))
41733515
ILT
895 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
896#endif
897
7c8ca0e4 898 if (flags_ptr == NULL)
b34976b6 899 return FALSE;
7c8ca0e4
NC
900
901 * flags_ptr = sec_flags;
b34976b6 902 return TRUE;
41733515
ILT
903}
904
905#else /* COFF_WITH_PE */
906
41733515 907static flagword
7920ce38
NC
908handle_COMDAT (bfd * abfd,
909 flagword sec_flags,
910 void * hdr,
911 const char *name,
912 asection *section)
41733515
ILT
913{
914 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1276aefa
NC
915 bfd_byte *esymstart, *esym, *esymend;
916 int seen_state = 0;
917 char *target_name = NULL;
918
919 sec_flags |= SEC_LINK_ONCE;
920
921 /* Unfortunately, the PE format stores essential information in
922 the symbol table, of all places. We need to extract that
923 information now, so that objdump and the linker will know how
924 to handle the section without worrying about the symbols. We
925 can't call slurp_symtab, because the linker doesn't want the
926 swapped symbols. */
927
928 /* COMDAT sections are special. The first symbol is the section
929 symbol, which tells what kind of COMDAT section it is. The
930 second symbol is the "comdat symbol" - the one with the
931 unique name. GNU uses the section symbol for the unique
932 name; MS uses ".text" for every comdat section. Sigh. - DJ */
933
934 /* This is not mirrored in sec_to_styp_flags(), but there
935 doesn't seem to be a need to, either, and it would at best be
936 rather messy. */
937
938 if (! _bfd_coff_get_external_symbols (abfd))
939 return sec_flags;
dc810e39 940
1276aefa
NC
941 esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
942 esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
943
944 while (esym < esymend)
41733515 945 {
1276aefa
NC
946 struct internal_syment isym;
947 char buf[SYMNMLEN + 1];
948 const char *symname;
252b5132 949
7920ce38 950 bfd_coff_swap_sym_in (abfd, esym, & isym);
252b5132 951
a6f921c8 952 BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
1276aefa
NC
953
954 if (isym.n_scnum == section->target_index)
955 {
956 /* According to the MSVC documentation, the first
957 TWO entries with the section # are both of
958 interest to us. The first one is the "section
959 symbol" (section name). The second is the comdat
960 symbol name. Here, we've found the first
961 qualifying entry; we distinguish it from the
962 second with a state flag.
963
964 In the case of gas-generated (at least until that
965 is fixed) .o files, it isn't necessarily the
966 second one. It may be some other later symbol.
967
968 Since gas also doesn't follow MS conventions and
969 emits the section similar to .text$<name>, where
970 <something> is the name we're looking for, we
971 distinguish the two as follows:
972
973 If the section name is simply a section name (no
974 $) we presume it's MS-generated, and look at
975 precisely the second symbol for the comdat name.
976 If the section name has a $, we assume it's
977 gas-generated, and look for <something> (whatever
978 follows the $) as the comdat symbol. */
979
ed781d5d 980 /* All 3 branches use this. */
1276aefa
NC
981 symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
982
1b786873 983 /* PR 17512 file: 078-11867-0.004 */
1276aefa 984 if (symname == NULL)
a6f921c8 985 {
871b3ab2 986 _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
63a5468a 987 abfd);
a6f921c8
NC
988 break;
989 }
1276aefa
NC
990
991 switch (seen_state)
252b5132 992 {
1276aefa
NC
993 case 0:
994 {
995 /* The first time we've seen the symbol. */
996 union internal_auxent aux;
997
1276aefa
NC
998 /* If it isn't the stuff we're expecting, die;
999 The MS documentation is vague, but it
1000 appears that the second entry serves BOTH
1001 as the comdat symbol and the defining
1002 symbol record (either C_STAT or C_EXT,
1003 possibly with an aux entry with debug
1004 information if it's a function.) It
1005 appears the only way to find the second one
1006 is to count. (On Intel, they appear to be
1007 adjacent, but on Alpha, they have been
1008 found separated.)
1009
1010 Here, we think we've found the first one,
1011 but there's some checking we can do to be
1012 sure. */
1013
20135e4c
NC
1014 if (! ((isym.n_sclass == C_STAT
1015 || isym.n_sclass == C_EXT)
f432e63c 1016 && BTYPE (isym.n_type) == T_NULL
1276aefa 1017 && isym.n_value == 0))
e4e21d9e
NC
1018 {
1019 /* Malformed input files can trigger this test.
1020 cf PR 21781. */
871b3ab2 1021 _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
e4e21d9e
NC
1022 abfd, symname);
1023 goto breakloop;
1024 }
252b5132 1025
1276aefa
NC
1026 /* FIXME LATER: MSVC generates section names
1027 like .text for comdats. Gas generates
1028 names like .text$foo__Fv (in the case of a
1029 function). See comment above for more. */
252b5132 1030
20135e4c 1031 if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
695344c0 1032 /* xgettext:c-format */
871b3ab2 1033 _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
63a5468a 1034 " does not match section name '%s'"),
6e3b6835
NC
1035 abfd, symname, name);
1036
1037 seen_state = 1;
252b5132 1038
4e5cb37e
NC
1039 /* PR 17512: file: e2cfe54f. */
1040 if (esym + bfd_coff_symesz (abfd) >= esymend)
1041 {
695344c0 1042 /* xgettext:c-format */
59d08d6c 1043 _bfd_error_handler (_("%pB: warning: no symbol for"
63a5468a 1044 " section '%s' found"),
4e5cb37e
NC
1045 abfd, symname);
1046 break;
1047 }
1276aefa 1048 /* This is the section symbol. */
7920ce38 1049 bfd_coff_swap_aux_in (abfd, (esym + bfd_coff_symesz (abfd)),
1276aefa 1050 isym.n_type, isym.n_sclass,
7920ce38 1051 0, isym.n_numaux, & aux);
1276aefa
NC
1052
1053 target_name = strchr (name, '$');
1054 if (target_name != NULL)
1055 {
1056 /* Gas mode. */
1057 seen_state = 2;
1058 /* Skip the `$'. */
1059 target_name += 1;
1060 }
1061
1062 /* FIXME: Microsoft uses NODUPLICATES and
1063 ASSOCIATIVE, but gnu uses ANY and
1064 SAME_SIZE. Unfortunately, gnu doesn't do
1065 the comdat symbols right. So, until we can
1066 fix it to do the right thing, we are
1067 temporarily disabling comdats for the MS
1068 types (they're used in DLLs and C++, but we
1069 don't support *their* C++ libraries anyway
1070 - DJ. */
1071
1072 /* Cygwin does not follow the MS style, and
1073 uses ANY and SAME_SIZE where NODUPLICATES
1074 and ASSOCIATIVE should be used. For
1075 Interix, we just do the right thing up
1076 front. */
1077
1078 switch (aux.x_scn.x_comdat)
1079 {
1080 case IMAGE_COMDAT_SELECT_NODUPLICATES:
e60b52c6 1081#ifdef STRICT_PE_FORMAT
1276aefa 1082 sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
ec0ef80e 1083#else
1276aefa 1084 sec_flags &= ~SEC_LINK_ONCE;
ec0ef80e 1085#endif
1276aefa 1086 break;
252b5132 1087
1276aefa
NC
1088 case IMAGE_COMDAT_SELECT_ANY:
1089 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1090 break;
252b5132 1091
1276aefa
NC
1092 case IMAGE_COMDAT_SELECT_SAME_SIZE:
1093 sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1094 break;
252b5132 1095
1276aefa
NC
1096 case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1097 /* Not yet fully implemented ??? */
1098 sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1099 break;
252b5132 1100
1276aefa
NC
1101 /* debug$S gets this case; other
1102 implications ??? */
e5db213d 1103
1276aefa
NC
1104 /* There may be no symbol... we'll search
1105 the whole table... Is this the right
1106 place to play this game? Or should we do
1107 it when reading it in. */
1108 case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
0717ebb7 1109#ifdef STRICT_PE_FORMAT
1276aefa
NC
1110 /* FIXME: This is not currently implemented. */
1111 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
ec0ef80e 1112#else
1276aefa 1113 sec_flags &= ~SEC_LINK_ONCE;
ec0ef80e 1114#endif
1276aefa 1115 break;
e5db213d 1116
1276aefa
NC
1117 default: /* 0 means "no symbol" */
1118 /* debug$F gets this case; other
1119 implications ??? */
1120 sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1121 break;
1122 }
1123 }
1124 break;
41733515 1125
1276aefa
NC
1126 case 2:
1127 /* Gas mode: the first matching on partial name. */
252b5132 1128
e5db213d
ILT
1129#ifndef TARGET_UNDERSCORE
1130#define TARGET_UNDERSCORE 0
1131#endif
ed781d5d 1132 /* Is this the name we're looking for ? */
1276aefa
NC
1133 if (strcmp (target_name,
1134 symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1135 {
1136 /* Not the name we're looking for */
1137 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
1138 continue;
252b5132 1139 }
1276aefa
NC
1140 /* Fall through. */
1141 case 1:
1142 /* MSVC mode: the lexically second symbol (or
1143 drop through from the above). */
1144 {
1145 char *newname;
986f0783 1146 size_t amt;
1276aefa 1147
08da05b0 1148 /* This must the second symbol with the
1276aefa
NC
1149 section #. It is the actual symbol name.
1150 Intel puts the two adjacent, but Alpha (at
1151 least) spreads them out. */
1152
082b7297
L
1153 amt = sizeof (struct coff_comdat_info);
1154 coff_section_data (abfd, section)->comdat
a50b1753 1155 = (struct coff_comdat_info *) bfd_alloc (abfd, amt);
082b7297 1156 if (coff_section_data (abfd, section)->comdat == NULL)
1276aefa
NC
1157 abort ();
1158
082b7297 1159 coff_section_data (abfd, section)->comdat->symbol =
1276aefa
NC
1160 (esym - esymstart) / bfd_coff_symesz (abfd);
1161
dc810e39 1162 amt = strlen (symname) + 1;
a50b1753 1163 newname = (char *) bfd_alloc (abfd, amt);
1276aefa
NC
1164 if (newname == NULL)
1165 abort ();
1166
1167 strcpy (newname, symname);
082b7297
L
1168 coff_section_data (abfd, section)->comdat->name
1169 = newname;
1276aefa 1170 }
252b5132 1171
1276aefa 1172 goto breakloop;
252b5132
RH
1173 }
1174 }
1276aefa
NC
1175
1176 esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
1177 }
1178
1179 breakloop:
1180 return sec_flags;
1181}
1182
1183
1184/* The PE version; see above for the general comments.
1185
1186 Since to set the SEC_LINK_ONCE and associated flags, we have to
1187 look at the symbol table anyway, we return the symbol table index
1188 of the symbol being used as the COMDAT symbol. This is admittedly
1189 ugly, but there's really nowhere else that we have access to the
1190 required information. FIXME: Is the COMDAT symbol index used for
1191 any purpose other than objdump? */
1192
b34976b6 1193static bfd_boolean
7920ce38
NC
1194styp_to_sec_flags (bfd *abfd,
1195 void * hdr,
1196 const char *name,
1197 asection *section,
1198 flagword *flags_ptr)
1276aefa
NC
1199{
1200 struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
77ef8654 1201 unsigned long styp_flags = internal_s->s_flags;
1276aefa 1202 flagword sec_flags;
b34976b6 1203 bfd_boolean result = TRUE;
72e4db75 1204 bfd_boolean is_dbg = FALSE;
1276aefa 1205
72e4db75 1206 if (CONST_STRNEQ (name, DOT_DEBUG)
a29a8af8 1207 || CONST_STRNEQ (name, DOT_ZDEBUG)
72e4db75
KT
1208#ifdef COFF_LONG_SECTION_NAMES
1209 || CONST_STRNEQ (name, GNU_LINKONCE_WI)
802d4822 1210 || CONST_STRNEQ (name, GNU_LINKONCE_WT)
2cdc1a97
NC
1211 /* FIXME: These definitions ought to be in a header file. */
1212#define GNU_DEBUGLINK ".gnu_debuglink"
1213#define GNU_DEBUGALTLINK ".gnu_debugaltlink"
1214 || CONST_STRNEQ (name, GNU_DEBUGLINK)
1215 || CONST_STRNEQ (name, GNU_DEBUGALTLINK)
72e4db75
KT
1216#endif
1217 || CONST_STRNEQ (name, ".stab"))
1218 is_dbg = TRUE;
1276aefa
NC
1219 /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified. */
1220 sec_flags = SEC_READONLY;
1221
156621f3
KT
1222 /* If section disallows read, then set the NOREAD flag. */
1223 if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1224 sec_flags |= SEC_COFF_NOREAD;
1225
1276aefa
NC
1226 /* Process each flag bit in styp_flags in turn. */
1227 while (styp_flags)
1228 {
77ef8654 1229 unsigned long flag = styp_flags & - styp_flags;
1276aefa 1230 char * unhandled = NULL;
dc810e39 1231
1276aefa
NC
1232 styp_flags &= ~ flag;
1233
1234 /* We infer from the distinct read/write/execute bits the settings
1235 of some of the bfd flags; the actual values, should we need them,
1236 are also in pei_section_data (abfd, section)->pe_flags. */
1237
1238 switch (flag)
1239 {
1240 case STYP_DSECT:
1241 unhandled = "STYP_DSECT";
1242 break;
1243 case STYP_GROUP:
1244 unhandled = "STYP_GROUP";
1245 break;
1246 case STYP_COPY:
1247 unhandled = "STYP_COPY";
1248 break;
1249 case STYP_OVER:
1250 unhandled = "STYP_OVER";
1251 break;
1252#ifdef SEC_NEVER_LOAD
1253 case STYP_NOLOAD:
1254 sec_flags |= SEC_NEVER_LOAD;
1255 break;
dc810e39 1256#endif
1276aefa 1257 case IMAGE_SCN_MEM_READ:
156621f3 1258 sec_flags &= ~SEC_COFF_NOREAD;
1276aefa
NC
1259 break;
1260 case IMAGE_SCN_TYPE_NO_PAD:
1261 /* Skip. */
1262 break;
1263 case IMAGE_SCN_LNK_OTHER:
1264 unhandled = "IMAGE_SCN_LNK_OTHER";
1265 break;
1266 case IMAGE_SCN_MEM_NOT_CACHED:
1267 unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1268 break;
1269 case IMAGE_SCN_MEM_NOT_PAGED:
05576f10
NC
1270 /* Generate a warning message rather using the 'unhandled'
1271 variable as this will allow some .sys files generate by
1272 other toolchains to be processed. See bugzilla issue 196. */
695344c0 1273 /* xgettext:c-format */
59d08d6c
AM
1274 _bfd_error_handler (_("%pB: warning: ignoring section flag"
1275 " %s in section %s"),
1276 abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1276aefa
NC
1277 break;
1278 case IMAGE_SCN_MEM_EXECUTE:
1279 sec_flags |= SEC_CODE;
1280 break;
1281 case IMAGE_SCN_MEM_WRITE:
1282 sec_flags &= ~ SEC_READONLY;
1283 break;
1284 case IMAGE_SCN_MEM_DISCARDABLE:
f6d29e26
KT
1285 /* The MS PE spec says that debug sections are DISCARDABLE,
1286 but the presence of a DISCARDABLE flag does not necessarily
1287 mean that a given section contains debug information. Thus
1288 we only set the SEC_DEBUGGING flag on sections that we
1289 recognise as containing debug information. */
72e4db75 1290 if (is_dbg
f6d29e26
KT
1291#ifdef _COMMENT
1292 || strcmp (name, _COMMENT) == 0
1293#endif
72e4db75
KT
1294 )
1295 {
1296 sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1297 }
1276aefa
NC
1298 break;
1299 case IMAGE_SCN_MEM_SHARED:
ebe372c1 1300 sec_flags |= SEC_COFF_SHARED;
1276aefa
NC
1301 break;
1302 case IMAGE_SCN_LNK_REMOVE:
72e4db75
KT
1303 if (!is_dbg)
1304 sec_flags |= SEC_EXCLUDE;
1276aefa
NC
1305 break;
1306 case IMAGE_SCN_CNT_CODE:
1307 sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1308 break;
1309 case IMAGE_SCN_CNT_INITIALIZED_DATA:
72e4db75
KT
1310 if (is_dbg)
1311 sec_flags |= SEC_DEBUGGING;
1312 else
1313 sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1276aefa
NC
1314 break;
1315 case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1316 sec_flags |= SEC_ALLOC;
1317 break;
1318 case IMAGE_SCN_LNK_INFO:
1319 /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1320 defined. coff_compute_section_file_positions uses
1321 COFF_PAGE_SIZE to ensure that the low order bits of the
1322 section VMA and the file offset match. If we don't know
1323 COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1324 and demand page loading of the file will fail. */
1325#ifdef COFF_PAGE_SIZE
1326 sec_flags |= SEC_DEBUGGING;
1327#endif
1328 break;
1329 case IMAGE_SCN_LNK_COMDAT:
1330 /* COMDAT gets very special treatment. */
1331 sec_flags = handle_COMDAT (abfd, sec_flags, hdr, name, section);
1332 break;
1333 default:
1334 /* Silently ignore for now. */
dc810e39 1335 break;
1276aefa
NC
1336 }
1337
7c8ca0e4 1338 /* If the section flag was not handled, report it here. */
1276aefa 1339 if (unhandled != NULL)
7c8ca0e4 1340 {
4eca0228 1341 _bfd_error_handler
695344c0 1342 /* xgettext:c-format */
59d08d6c 1343 (_("%pB (%s): section flag %s (%#lx) ignored"),
d003868e 1344 abfd, name, unhandled, flag);
b34976b6 1345 result = FALSE;
7c8ca0e4 1346 }
252b5132 1347 }
252b5132 1348
a4dd6c97
AM
1349 if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1350 && (CONST_STRNEQ (name, ".sbss")
1351 || CONST_STRNEQ (name, ".sdata")))
1352 sec_flags |= SEC_SMALL_DATA;
1353
242eabea
ILT
1354#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1355 /* As a GNU extension, if the name begins with .gnu.linkonce, we
1356 only link a single copy of the section. This is used to support
1357 g++. g++ will emit each template expansion in its own section.
1358 The symbols will be defined as weak, so that multiple definitions
1359 are permitted. The GNU linker extension is to actually discard
1360 all but one of the sections. */
0112cd26 1361 if (CONST_STRNEQ (name, ".gnu.linkonce"))
242eabea
ILT
1362 sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1363#endif
1364
7c8ca0e4
NC
1365 if (flags_ptr)
1366 * flags_ptr = sec_flags;
dc810e39 1367
7c8ca0e4 1368 return result;
252b5132
RH
1369}
1370
41733515
ILT
1371#endif /* COFF_WITH_PE */
1372
252b5132
RH
1373#define get_index(symbol) ((symbol)->udata.i)
1374
1375/*
1376INTERNAL_DEFINITION
1377 bfd_coff_backend_data
1378
1379CODE_FRAGMENT
1380
5d54c628
ILT
1381.{* COFF symbol classifications. *}
1382.
1383.enum coff_symbol_classification
1384.{
1385. {* Global symbol. *}
1386. COFF_SYMBOL_GLOBAL,
1387. {* Common symbol. *}
1388. COFF_SYMBOL_COMMON,
1389. {* Undefined symbol. *}
1390. COFF_SYMBOL_UNDEFINED,
1391. {* Local symbol. *}
1392. COFF_SYMBOL_LOCAL,
1393. {* PE section symbol. *}
1394. COFF_SYMBOL_PE_SECTION
1395.};
1396.
0f088b2a
KT
1397.typedef asection * (*coff_gc_mark_hook_fn)
1398. (asection *, struct bfd_link_info *, struct internal_reloc *,
1399. struct coff_link_hash_entry *, struct internal_syment *);
1400.
252b5132
RH
1401Special entry points for gdb to swap in coff symbol table parts:
1402.typedef struct
1403.{
dc810e39 1404. void (*_bfd_coff_swap_aux_in)
7920ce38 1405. (bfd *, void *, int, int, int, int, void *);
252b5132 1406.
dc810e39 1407. void (*_bfd_coff_swap_sym_in)
7920ce38 1408. (bfd *, void *, void *);
252b5132 1409.
dc810e39 1410. void (*_bfd_coff_swap_lineno_in)
7920ce38 1411. (bfd *, void *, void *);
252b5132 1412.
dc810e39 1413. unsigned int (*_bfd_coff_swap_aux_out)
7920ce38 1414. (bfd *, void *, int, int, int, int, void *);
252b5132 1415.
dc810e39 1416. unsigned int (*_bfd_coff_swap_sym_out)
7920ce38 1417. (bfd *, void *, void *);
252b5132 1418.
dc810e39 1419. unsigned int (*_bfd_coff_swap_lineno_out)
7920ce38 1420. (bfd *, void *, void *);
252b5132 1421.
dc810e39 1422. unsigned int (*_bfd_coff_swap_reloc_out)
7920ce38 1423. (bfd *, void *, void *);
252b5132 1424.
dc810e39 1425. unsigned int (*_bfd_coff_swap_filehdr_out)
7920ce38 1426. (bfd *, void *, void *);
252b5132 1427.
dc810e39 1428. unsigned int (*_bfd_coff_swap_aouthdr_out)
7920ce38 1429. (bfd *, void *, void *);
252b5132 1430.
dc810e39 1431. unsigned int (*_bfd_coff_swap_scnhdr_out)
7920ce38 1432. (bfd *, void *, void *);
252b5132 1433.
dc810e39
AM
1434. unsigned int _bfd_filhsz;
1435. unsigned int _bfd_aoutsz;
1436. unsigned int _bfd_scnhsz;
1437. unsigned int _bfd_symesz;
1438. unsigned int _bfd_auxesz;
1439. unsigned int _bfd_relsz;
1440. unsigned int _bfd_linesz;
1441. unsigned int _bfd_filnmlen;
b34976b6 1442. bfd_boolean _bfd_coff_long_filenames;
88183869 1443.
b34976b6 1444. bfd_boolean _bfd_coff_long_section_names;
88183869
DK
1445. bfd_boolean (*_bfd_coff_set_long_section_names)
1446. (bfd *, int);
68ffbac6 1447.
dc810e39 1448. unsigned int _bfd_coff_default_section_alignment_power;
b34976b6 1449. bfd_boolean _bfd_coff_force_symnames_in_strings;
dc810e39 1450. unsigned int _bfd_coff_debug_string_prefix_length;
167ad85b 1451. unsigned int _bfd_coff_max_nscns;
dc810e39
AM
1452.
1453. void (*_bfd_coff_swap_filehdr_in)
7920ce38 1454. (bfd *, void *, void *);
dc810e39
AM
1455.
1456. void (*_bfd_coff_swap_aouthdr_in)
7920ce38 1457. (bfd *, void *, void *);
dc810e39
AM
1458.
1459. void (*_bfd_coff_swap_scnhdr_in)
7920ce38 1460. (bfd *, void *, void *);
dc810e39
AM
1461.
1462. void (*_bfd_coff_swap_reloc_in)
7920ce38 1463. (bfd *abfd, void *, void *);
dc810e39 1464.
b34976b6 1465. bfd_boolean (*_bfd_coff_bad_format_hook)
7920ce38 1466. (bfd *, void *);
dc810e39 1467.
b34976b6 1468. bfd_boolean (*_bfd_coff_set_arch_mach_hook)
7920ce38 1469. (bfd *, void *);
dc810e39 1470.
7920ce38
NC
1471. void * (*_bfd_coff_mkobject_hook)
1472. (bfd *, void *, void *);
dc810e39 1473.
b34976b6 1474. bfd_boolean (*_bfd_styp_to_sec_flags_hook)
7920ce38 1475. (bfd *, void *, const char *, asection *, flagword *);
dc810e39
AM
1476.
1477. void (*_bfd_set_alignment_hook)
7920ce38 1478. (bfd *, asection *, void *);
dc810e39 1479.
b34976b6 1480. bfd_boolean (*_bfd_coff_slurp_symbol_table)
7920ce38 1481. (bfd *);
dc810e39 1482.
b34976b6 1483. bfd_boolean (*_bfd_coff_symname_in_debug)
7920ce38 1484. (bfd *, struct internal_syment *);
dc810e39 1485.
b34976b6 1486. bfd_boolean (*_bfd_coff_pointerize_aux_hook)
7920ce38 1487. (bfd *, combined_entry_type *, combined_entry_type *,
07d6d2b8 1488. unsigned int, combined_entry_type *);
dc810e39 1489.
b34976b6 1490. bfd_boolean (*_bfd_coff_print_aux)
7920ce38 1491. (bfd *, FILE *, combined_entry_type *, combined_entry_type *,
07d6d2b8 1492. combined_entry_type *, unsigned int);
dc810e39
AM
1493.
1494. void (*_bfd_coff_reloc16_extra_cases)
7920ce38 1495. (bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
07d6d2b8 1496. bfd_byte *, unsigned int *, unsigned int *);
dc810e39
AM
1497.
1498. int (*_bfd_coff_reloc16_estimate)
7920ce38 1499. (bfd *, asection *, arelent *, unsigned int,
07d6d2b8 1500. struct bfd_link_info *);
dc810e39
AM
1501.
1502. enum coff_symbol_classification (*_bfd_coff_classify_symbol)
7920ce38 1503. (bfd *, struct internal_syment *);
dc810e39 1504.
b34976b6 1505. bfd_boolean (*_bfd_coff_compute_section_file_positions)
7920ce38 1506. (bfd *);
252b5132 1507.
b34976b6 1508. bfd_boolean (*_bfd_coff_start_final_link)
7920ce38 1509. (bfd *, struct bfd_link_info *);
dc810e39 1510.
b34976b6 1511. bfd_boolean (*_bfd_coff_relocate_section)
7920ce38 1512. (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
07d6d2b8 1513. struct internal_reloc *, struct internal_syment *, asection **);
dc810e39
AM
1514.
1515. reloc_howto_type *(*_bfd_coff_rtype_to_howto)
7920ce38 1516. (bfd *, asection *, struct internal_reloc *,
07d6d2b8 1517. struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *);
dc810e39 1518.
b34976b6 1519. bfd_boolean (*_bfd_coff_adjust_symndx)
7920ce38 1520. (bfd *, struct bfd_link_info *, bfd *, asection *,
07d6d2b8 1521. struct internal_reloc *, bfd_boolean *);
dc810e39 1522.
b34976b6 1523. bfd_boolean (*_bfd_coff_link_add_one_symbol)
7920ce38 1524. (struct bfd_link_info *, bfd *, const char *, flagword,
07d6d2b8
AM
1525. asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean,
1526. struct bfd_link_hash_entry **);
dc810e39 1527.
b34976b6 1528. bfd_boolean (*_bfd_coff_link_output_has_begun)
7920ce38 1529. (bfd *, struct coff_final_link_info *);
dc810e39 1530.
b34976b6 1531. bfd_boolean (*_bfd_coff_final_link_postscript)
7920ce38 1532. (bfd *, struct coff_final_link_info *);
252b5132 1533.
2b5c217d
NC
1534. bfd_boolean (*_bfd_coff_print_pdata)
1535. (bfd *, void *);
1536.
252b5132
RH
1537.} bfd_coff_backend_data;
1538.
dc810e39
AM
1539.#define coff_backend_info(abfd) \
1540. ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
252b5132
RH
1541.
1542.#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
dc810e39 1543. ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
252b5132
RH
1544.
1545.#define bfd_coff_swap_sym_in(a,e,i) \
dc810e39 1546. ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
252b5132
RH
1547.
1548.#define bfd_coff_swap_lineno_in(a,e,i) \
dc810e39 1549. ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
252b5132
RH
1550.
1551.#define bfd_coff_swap_reloc_out(abfd, i, o) \
dc810e39 1552. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
252b5132
RH
1553.
1554.#define bfd_coff_swap_lineno_out(abfd, i, o) \
dc810e39 1555. ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
252b5132
RH
1556.
1557.#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
dc810e39 1558. ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
252b5132
RH
1559.
1560.#define bfd_coff_swap_sym_out(abfd, i,o) \
dc810e39 1561. ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
252b5132
RH
1562.
1563.#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
dc810e39 1564. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
252b5132
RH
1565.
1566.#define bfd_coff_swap_filehdr_out(abfd, i,o) \
dc810e39 1567. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
252b5132
RH
1568.
1569.#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
dc810e39 1570. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
252b5132
RH
1571.
1572.#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
1573.#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
1574.#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
1575.#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
1576.#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
1577.#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz)
1578.#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
692b7d62 1579.#define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
dc810e39
AM
1580.#define bfd_coff_long_filenames(abfd) \
1581. (coff_backend_info (abfd)->_bfd_coff_long_filenames)
252b5132 1582.#define bfd_coff_long_section_names(abfd) \
dc810e39 1583. (coff_backend_info (abfd)->_bfd_coff_long_section_names)
88183869
DK
1584.#define bfd_coff_set_long_section_names(abfd, enable) \
1585. ((coff_backend_info (abfd)->_bfd_coff_set_long_section_names) (abfd, enable))
252b5132 1586.#define bfd_coff_default_section_alignment_power(abfd) \
dc810e39 1587. (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
167ad85b
TG
1588.#define bfd_coff_max_nscns(abfd) \
1589. (coff_backend_info (abfd)->_bfd_coff_max_nscns)
1590.
252b5132 1591.#define bfd_coff_swap_filehdr_in(abfd, i,o) \
dc810e39 1592. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
252b5132
RH
1593.
1594.#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
dc810e39 1595. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
252b5132
RH
1596.
1597.#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
dc810e39 1598. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
252b5132
RH
1599.
1600.#define bfd_coff_swap_reloc_in(abfd, i, o) \
dc810e39 1601. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
252b5132
RH
1602.
1603.#define bfd_coff_bad_format_hook(abfd, filehdr) \
dc810e39 1604. ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
252b5132
RH
1605.
1606.#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
dc810e39 1607. ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
252b5132 1608.#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
ed781d5d
NC
1609. ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook)\
1610. (abfd, filehdr, aouthdr))
252b5132 1611.
7c8ca0e4 1612.#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section, flags_ptr)\
dc810e39
AM
1613. ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
1614. (abfd, scnhdr, name, section, flags_ptr))
252b5132
RH
1615.
1616.#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
dc810e39 1617. ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
252b5132
RH
1618.
1619.#define bfd_coff_slurp_symbol_table(abfd)\
dc810e39 1620. ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
252b5132
RH
1621.
1622.#define bfd_coff_symname_in_debug(abfd, sym)\
dc810e39 1623. ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
252b5132 1624.
2243c419 1625.#define bfd_coff_force_symnames_in_strings(abfd)\
dc810e39 1626. (coff_backend_info (abfd)->_bfd_coff_force_symnames_in_strings)
2243c419
CP
1627.
1628.#define bfd_coff_debug_string_prefix_length(abfd)\
dc810e39 1629. (coff_backend_info (abfd)->_bfd_coff_debug_string_prefix_length)
2243c419 1630.
252b5132 1631.#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
dc810e39
AM
1632. ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
1633. (abfd, file, base, symbol, aux, indaux))
252b5132 1634.
ed781d5d 1635.#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order,\
07d6d2b8 1636. reloc, data, src_ptr, dst_ptr)\
dc810e39
AM
1637. ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
1638. (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
252b5132
RH
1639.
1640.#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
dc810e39
AM
1641. ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
1642. (abfd, section, reloc, shrink, link_info))
252b5132 1643.
5d54c628 1644.#define bfd_coff_classify_symbol(abfd, sym)\
dc810e39
AM
1645. ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
1646. (abfd, sym))
252b5132
RH
1647.
1648.#define bfd_coff_compute_section_file_positions(abfd)\
dc810e39
AM
1649. ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
1650. (abfd))
252b5132
RH
1651.
1652.#define bfd_coff_start_final_link(obfd, info)\
dc810e39
AM
1653. ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
1654. (obfd, info))
252b5132 1655.#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
dc810e39
AM
1656. ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
1657. (obfd, info, ibfd, o, con, rel, isyms, secs))
252b5132 1658.#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
dc810e39
AM
1659. ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
1660. (abfd, sec, rel, h, sym, addendp))
252b5132 1661.#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
dc810e39
AM
1662. ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
1663. (obfd, info, ibfd, sec, rel, adjustedp))
ed781d5d 1664.#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
07d6d2b8 1665. value, string, cp, coll, hashp)\
dc810e39
AM
1666. ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
1667. (info, abfd, name, flags, section, value, string, cp, coll, hashp))
252b5132
RH
1668.
1669.#define bfd_coff_link_output_has_begun(a,p) \
7920ce38 1670. ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a, p))
252b5132 1671.#define bfd_coff_final_link_postscript(a,p) \
7920ce38 1672. ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a, p))
252b5132 1673.
2b5c217d
NC
1674.#define bfd_coff_have_print_pdata(a) \
1675. (coff_backend_info (a)->_bfd_coff_print_pdata)
1676.#define bfd_coff_print_pdata(a,p) \
1677. ((coff_backend_info (a)->_bfd_coff_print_pdata) (a, p))
1678.
92dd4511
L
1679.{* Macro: Returns true if the bfd is a PE executable as opposed to a
1680. PE object file. *}
1681.#define bfd_pei_p(abfd) \
1682. (CONST_STRNEQ ((abfd)->xvec->name, "pei-"))
252b5132
RH
1683*/
1684
1685/* See whether the magic number matches. */
1686
b34976b6 1687static bfd_boolean
7920ce38 1688coff_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED, void * filehdr)
252b5132
RH
1689{
1690 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1691
1692 if (BADMAG (*internal_f))
b34976b6 1693 return FALSE;
252b5132 1694
b34976b6 1695 return TRUE;
252b5132
RH
1696}
1697
5a5b9651
SS
1698#ifdef TICOFF
1699static bfd_boolean
7920ce38 1700ticoff0_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
5a5b9651
SS
1701{
1702 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1703
1704 if (COFF0_BADMAG (*internal_f))
1705 return FALSE;
1706
1707 return TRUE;
1708}
1709#endif
1710
1711#ifdef TICOFF
1712static bfd_boolean
7920ce38 1713ticoff1_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
5a5b9651
SS
1714{
1715 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1716
1717 if (COFF1_BADMAG (*internal_f))
1718 return FALSE;
1719
1720 return TRUE;
1721}
1722#endif
1723
5dccc1dd
ILT
1724/* Check whether this section uses an alignment other than the
1725 default. */
1726
1727static void
7920ce38
NC
1728coff_set_custom_section_alignment (bfd *abfd ATTRIBUTE_UNUSED,
1729 asection *section,
1730 const struct coff_section_alignment_entry *alignment_table,
1731 const unsigned int table_size)
5dccc1dd
ILT
1732{
1733 const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1734 unsigned int i;
1735
1736 for (i = 0; i < table_size; ++i)
1737 {
fd361982 1738 const char *secname = bfd_section_name (section);
ed781d5d 1739
5dccc1dd
ILT
1740 if (alignment_table[i].comparison_length == (unsigned int) -1
1741 ? strcmp (alignment_table[i].name, secname) == 0
1742 : strncmp (alignment_table[i].name, secname,
1743 alignment_table[i].comparison_length) == 0)
1744 break;
1745 }
1746 if (i >= table_size)
1747 return;
1748
1749 if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1750 && default_alignment < alignment_table[i].default_alignment_min)
1751 return;
1752
1753 if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1e738b87
NC
1754#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1755 && default_alignment > alignment_table[i].default_alignment_max
1756#endif
1757 )
5dccc1dd
ILT
1758 return;
1759
1760 section->alignment_power = alignment_table[i].alignment_power;
1761}
1762
1763/* Custom section alignment records. */
1764
1765static const struct coff_section_alignment_entry
1766coff_section_alignment_table[] =
1767{
1768#ifdef COFF_SECTION_ALIGNMENT_ENTRIES
1769 COFF_SECTION_ALIGNMENT_ENTRIES,
1770#endif
1771 /* There must not be any gaps between .stabstr sections. */
1772 { COFF_SECTION_NAME_PARTIAL_MATCH (".stabstr"),
1773 1, COFF_ALIGNMENT_FIELD_EMPTY, 0 },
1774 /* The .stab section must be aligned to 2**2 at most, to avoid gaps. */
1775 { COFF_SECTION_NAME_PARTIAL_MATCH (".stab"),
1776 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1777 /* Similarly for the .ctors and .dtors sections. */
1778 { COFF_SECTION_NAME_EXACT_MATCH (".ctors"),
1779 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1780 { COFF_SECTION_NAME_EXACT_MATCH (".dtors"),
1781 3, COFF_ALIGNMENT_FIELD_EMPTY, 2 }
1782};
1783
1784static const unsigned int coff_section_alignment_table_size =
1785 sizeof coff_section_alignment_table / sizeof coff_section_alignment_table[0];
1786
1787/* Initialize a section structure with information peculiar to this
1788 particular implementation of COFF. */
252b5132 1789
b34976b6 1790static bfd_boolean
7920ce38 1791coff_new_section_hook (bfd * abfd, asection * section)
252b5132
RH
1792{
1793 combined_entry_type *native;
986f0783 1794 size_t amt;
85645aed 1795 unsigned char sclass = C_STAT;
252b5132
RH
1796
1797 section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1798
1799#ifdef RS6000COFF_C
eb1e0e80 1800 if (bfd_xcoff_text_align_power (abfd) != 0
fd361982 1801 && strcmp (bfd_section_name (section), ".text") == 0)
eb1e0e80 1802 section->alignment_power = bfd_xcoff_text_align_power (abfd);
85645aed 1803 else if (bfd_xcoff_data_align_power (abfd) != 0
fd361982 1804 && strcmp (bfd_section_name (section), ".data") == 0)
eb1e0e80 1805 section->alignment_power = bfd_xcoff_data_align_power (abfd);
85645aed
TG
1806 else
1807 {
1808 int i;
1809
1810 for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
fd361982 1811 if (strcmp (bfd_section_name (section),
07d6d2b8
AM
1812 xcoff_dwsect_names[i].name) == 0)
1813 {
1814 section->alignment_power = 0;
1815 sclass = C_DWARF;
1816 break;
1817 }
85645aed 1818 }
252b5132
RH
1819#endif
1820
f592407e
AM
1821 /* Set up the section symbol. */
1822 if (!_bfd_generic_new_section_hook (abfd, section))
1823 return FALSE;
1824
252b5132
RH
1825 /* Allocate aux records for section symbols, to store size and
1826 related info.
1827
1828 @@ The 10 is a guess at a plausible maximum number of aux entries
1829 (but shouldn't be a constant). */
dc810e39 1830 amt = sizeof (combined_entry_type) * 10;
a50b1753 1831 native = (combined_entry_type *) bfd_zalloc (abfd, amt);
252b5132 1832 if (native == NULL)
b34976b6 1833 return FALSE;
252b5132
RH
1834
1835 /* We don't need to set up n_name, n_value, or n_scnum in the native
5c4491d3 1836 symbol information, since they'll be overridden by the BFD symbol
252b5132
RH
1837 anyhow. However, we do need to set the type and storage class,
1838 in case this symbol winds up getting written out. The value 0
1839 for n_numaux is already correct. */
1840
a5c71af8 1841 native->is_sym = TRUE;
252b5132 1842 native->u.syment.n_type = T_NULL;
85645aed 1843 native->u.syment.n_sclass = sclass;
252b5132
RH
1844
1845 coffsymbol (section->symbol)->native = native;
1846
5dccc1dd
ILT
1847 coff_set_custom_section_alignment (abfd, section,
1848 coff_section_alignment_table,
1849 coff_section_alignment_table_size);
252b5132 1850
b34976b6 1851 return TRUE;
252b5132
RH
1852}
1853
1854#ifdef COFF_ALIGN_IN_SECTION_HEADER
1855
1856/* Set the alignment of a BFD section. */
1857
252b5132 1858static void
7920ce38
NC
1859coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1860 asection * section,
1861 void * scnhdr)
252b5132
RH
1862{
1863 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1864 unsigned int i;
1865
81635ce4
TW
1866#ifdef COFF_DECODE_ALIGNMENT
1867 i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
252b5132
RH
1868#endif
1869 section->alignment_power = i;
b9af77f5
TW
1870
1871#ifdef coff_set_section_load_page
1872 coff_set_section_load_page (section, hdr->s_page);
1873#endif
252b5132
RH
1874}
1875
1876#else /* ! COFF_ALIGN_IN_SECTION_HEADER */
1877#ifdef COFF_WITH_PE
1878
252b5132 1879static void
7920ce38
NC
1880coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1881 asection * section,
1882 void * scnhdr)
252b5132
RH
1883{
1884 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
986f0783 1885 size_t amt;
bd33be6e
L
1886 unsigned int alignment_power_const
1887 = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
252b5132 1888
bd33be6e
L
1889 switch (alignment_power_const)
1890 {
1891 case IMAGE_SCN_ALIGN_8192BYTES:
1892 case IMAGE_SCN_ALIGN_4096BYTES:
1893 case IMAGE_SCN_ALIGN_2048BYTES:
1894 case IMAGE_SCN_ALIGN_1024BYTES:
1895 case IMAGE_SCN_ALIGN_512BYTES:
1896 case IMAGE_SCN_ALIGN_256BYTES:
1897 case IMAGE_SCN_ALIGN_128BYTES:
1898 case IMAGE_SCN_ALIGN_64BYTES:
1899 case IMAGE_SCN_ALIGN_32BYTES:
1900 case IMAGE_SCN_ALIGN_16BYTES:
1901 case IMAGE_SCN_ALIGN_8BYTES:
1902 case IMAGE_SCN_ALIGN_4BYTES:
1903 case IMAGE_SCN_ALIGN_2BYTES:
1904 case IMAGE_SCN_ALIGN_1BYTES:
1905 section->alignment_power
1906 = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1907 break;
1908 default:
1909 break;
1910 }
252b5132 1911
252b5132 1912 /* In a PE image file, the s_paddr field holds the virtual size of a
8d3ad4e1
ILT
1913 section, while the s_size field holds the raw size. We also keep
1914 the original section flag value, since not every bit can be
1915 mapped onto a generic BFD section bit. */
1916 if (coff_section_data (abfd, section) == NULL)
252b5132 1917 {
dc810e39 1918 amt = sizeof (struct coff_section_tdata);
7920ce38 1919 section->used_by_bfd = bfd_zalloc (abfd, amt);
8d3ad4e1 1920 if (section->used_by_bfd == NULL)
7920ce38
NC
1921 /* FIXME: Return error. */
1922 abort ();
8d3ad4e1 1923 }
7920ce38 1924
8d3ad4e1
ILT
1925 if (pei_section_data (abfd, section) == NULL)
1926 {
dc810e39 1927 amt = sizeof (struct pei_section_tdata);
7920ce38 1928 coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
8d3ad4e1 1929 if (coff_section_data (abfd, section)->tdata == NULL)
7920ce38
NC
1930 /* FIXME: Return error. */
1931 abort ();
252b5132 1932 }
8d3ad4e1
ILT
1933 pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1934 pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
252b5132 1935
9d8cefa9 1936 section->lma = hdr->s_vaddr;
3e4554a2 1937
ed781d5d 1938 /* Check for extended relocs. */
3e4554a2
DD
1939 if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1940 {
1941 struct external_reloc dst;
57f3d89e 1942 struct internal_reloc n;
dc810e39 1943 file_ptr oldpos = bfd_tell (abfd);
cd339148 1944 bfd_size_type relsz = bfd_coff_relsz (abfd);
46f2f11d 1945
b42adabf
NC
1946 if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1947 return;
7920ce38 1948 if (bfd_bread (& dst, relsz, abfd) != relsz)
3e4554a2 1949 return;
e60b52c6 1950
3e4554a2 1951 coff_swap_reloc_in (abfd, &dst, &n);
b42adabf
NC
1952 if (bfd_seek (abfd, oldpos, 0) != 0)
1953 return;
cd339148
NS
1954 section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1955 section->rel_filepos += relsz;
3e4554a2 1956 }
cd339148 1957 else if (hdr->s_nreloc == 0xffff)
4eca0228 1958 _bfd_error_handler
871b3ab2 1959 (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
dae82561 1960 abfd);
252b5132
RH
1961}
1962#undef ALIGN_SET
1963#undef ELIFALIGN_SET
1964
1965#else /* ! COFF_WITH_PE */
1966#ifdef RS6000COFF_C
1967
1968/* We grossly abuse this function to handle XCOFF overflow headers.
1969 When we see one, we correct the reloc and line number counts in the
1970 real header, and remove the section we just created. */
1971
252b5132 1972static void
7920ce38 1973coff_set_alignment_hook (bfd *abfd, asection *section, void * scnhdr)
252b5132
RH
1974{
1975 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1976 asection *real_sec;
252b5132
RH
1977
1978 if ((hdr->s_flags & STYP_OVRFLO) == 0)
1979 return;
1980
dc810e39 1981 real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
252b5132
RH
1982 if (real_sec == NULL)
1983 return;
1984
1985 real_sec->reloc_count = hdr->s_paddr;
1986 real_sec->lineno_count = hdr->s_vaddr;
1987
5daa8fe7 1988 if (!bfd_section_removed_from_list (abfd, section))
252b5132 1989 {
5daa8fe7
L
1990 bfd_section_list_remove (abfd, section);
1991 --abfd->section_count;
252b5132
RH
1992 }
1993}
1994
1995#else /* ! RS6000COFF_C */
f717994f
JMG
1996#if defined (COFF_GO32_EXE) || defined (COFF_GO32)
1997
1998static void
1999coff_set_alignment_hook (bfd * abfd, asection * section, void * scnhdr)
2000{
2001 struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
2002
2003 /* Check for extended relocs. */
2004 if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
2005 {
2006 struct external_reloc dst;
2007 struct internal_reloc n;
2008 const file_ptr oldpos = bfd_tell (abfd);
2009 const bfd_size_type relsz = bfd_coff_relsz (abfd);
2010
2011 if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
2012 return;
2013 if (bfd_bread (& dst, relsz, abfd) != relsz)
2014 return;
2015
2016 coff_swap_reloc_in (abfd, &dst, &n);
2017 if (bfd_seek (abfd, oldpos, 0) != 0)
2018 return;
2019 section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
2020 section->rel_filepos += relsz;
2021 }
2022 else if (hdr->s_nreloc == 0xffff)
2023 _bfd_error_handler
2024 (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
2025 abfd);
2026}
2027
2028#else /* ! COFF_GO32_EXE && ! COFF_GO32 */
252b5132 2029
d00dd7dc
AM
2030static void
2031coff_set_alignment_hook (bfd *abfd ATTRIBUTE_UNUSED,
2032 asection *section ATTRIBUTE_UNUSED,
2033 void *scnhdr ATTRIBUTE_UNUSED)
2034{
2035}
252b5132 2036
f717994f 2037#endif /* ! COFF_GO32_EXE && ! COFF_GO32 */
252b5132
RH
2038#endif /* ! RS6000COFF_C */
2039#endif /* ! COFF_WITH_PE */
2040#endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
2041
2042#ifndef coff_mkobject
2043
b34976b6 2044static bfd_boolean
7920ce38 2045coff_mkobject (bfd * abfd)
252b5132
RH
2046{
2047 coff_data_type *coff;
986f0783 2048 size_t amt = sizeof (coff_data_type);
252b5132 2049
7920ce38
NC
2050 abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2051 if (abfd->tdata.coff_obj_data == NULL)
b34976b6 2052 return FALSE;
252b5132 2053 coff = coff_data (abfd);
7920ce38
NC
2054 coff->symbols = NULL;
2055 coff->conversion_table = NULL;
2056 coff->raw_syments = NULL;
252b5132
RH
2057 coff->relocbase = 0;
2058 coff->local_toc_sym_map = 0;
2059
2060/* make_abs_section(abfd);*/
2061
b34976b6 2062 return TRUE;
252b5132
RH
2063}
2064#endif
2065
2066/* Create the COFF backend specific information. */
ed781d5d 2067
252b5132 2068#ifndef coff_mkobject_hook
7920ce38
NC
2069static void *
2070coff_mkobject_hook (bfd * abfd,
2071 void * filehdr,
2072 void * aouthdr ATTRIBUTE_UNUSED)
252b5132
RH
2073{
2074 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2075 coff_data_type *coff;
2076
82e51918 2077 if (! coff_mkobject (abfd))
252b5132
RH
2078 return NULL;
2079
2080 coff = coff_data (abfd);
2081
2082 coff->sym_filepos = internal_f->f_symptr;
2083
2084 /* These members communicate important constants about the symbol
2085 table to GDB's symbol-reading code. These `constants'
2086 unfortunately vary among coff implementations... */
2087 coff->local_n_btmask = N_BTMASK;
2088 coff->local_n_btshft = N_BTSHFT;
2089 coff->local_n_tmask = N_TMASK;
2090 coff->local_n_tshift = N_TSHIFT;
6b3b007b
NC
2091 coff->local_symesz = bfd_coff_symesz (abfd);
2092 coff->local_auxesz = bfd_coff_auxesz (abfd);
2093 coff->local_linesz = bfd_coff_linesz (abfd);
252b5132 2094
1135238b
ILT
2095 coff->timestamp = internal_f->f_timdat;
2096
252b5132
RH
2097 obj_raw_syment_count (abfd) =
2098 obj_conv_table_size (abfd) =
2099 internal_f->f_nsyms;
2100
2101#ifdef RS6000COFF_C
2102 if ((internal_f->f_flags & F_SHROBJ) != 0)
2103 abfd->flags |= DYNAMIC;
6b3b007b 2104 if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
252b5132
RH
2105 {
2106 struct internal_aouthdr *internal_a =
2107 (struct internal_aouthdr *) aouthdr;
2108 struct xcoff_tdata *xcoff;
2109
2110 xcoff = xcoff_data (abfd);
a2fdf270
ND
2111# ifdef U803XTOCMAGIC
2112 xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2113# else
2114 xcoff->xcoff64 = 0;
2115# endif
b34976b6 2116 xcoff->full_aouthdr = TRUE;
252b5132
RH
2117 xcoff->toc = internal_a->o_toc;
2118 xcoff->sntoc = internal_a->o_sntoc;
2119 xcoff->snentry = internal_a->o_snentry;
f3813499
TR
2120 bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2121 bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
252b5132
RH
2122 xcoff->modtype = internal_a->o_modtype;
2123 xcoff->cputype = internal_a->o_cputype;
2124 xcoff->maxdata = internal_a->o_maxdata;
2125 xcoff->maxstack = internal_a->o_maxstack;
2126 }
2127#endif
2128
e60b52c6 2129#ifdef ARM
f13b834e 2130 /* Set the flags field from the COFF header read in. */
252b5132
RH
2131 if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2132 coff->flags = 0;
2133#endif
e60b52c6 2134
4cfec37b
ILT
2135#ifdef COFF_WITH_PE
2136 /* FIXME: I'm not sure this is ever executed, since peicode.h
2137 defines coff_mkobject_hook. */
2138 if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2139 abfd->flags |= HAS_DEBUG;
2140#endif
2141
7920ce38 2142 return coff;
252b5132
RH
2143}
2144#endif
2145
2146/* Determine the machine architecture and type. FIXME: This is target
2147 dependent because the magic numbers are defined in the target
2148 dependent header files. But there is no particular need for this.
2149 If the magic numbers were moved to a separate file, this function
2150 would be target independent and would also be much more successful
2151 at linking together COFF files for different architectures. */
2152
b34976b6 2153static bfd_boolean
7920ce38 2154coff_set_arch_mach_hook (bfd *abfd, void * filehdr)
252b5132 2155{
dc810e39 2156 unsigned long machine;
252b5132
RH
2157 enum bfd_architecture arch;
2158 struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2159
250d94fd 2160 /* Zero selects the default machine for an arch. */
252b5132
RH
2161 machine = 0;
2162 switch (internal_f->f_magic)
2163 {
252b5132
RH
2164#ifdef I386MAGIC
2165 case I386MAGIC:
2166 case I386PTXMAGIC:
99ad8390 2167 case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler. */
dc12032b 2168 case LYNXCOFFMAGIC:
1dd1bc4d
OM
2169 case I386_APPLE_MAGIC:
2170 case I386_FREEBSD_MAGIC:
2171 case I386_LINUX_MAGIC:
2172 case I386_NETBSD_MAGIC:
252b5132 2173 arch = bfd_arch_i386;
252b5132
RH
2174 break;
2175#endif
99ad8390
NC
2176#ifdef AMD64MAGIC
2177 case AMD64MAGIC:
1dd1bc4d
OM
2178 case AMD64_APPLE_MAGIC:
2179 case AMD64_FREEBSD_MAGIC:
2180 case AMD64_LINUX_MAGIC:
2181 case AMD64_NETBSD_MAGIC:
99ad8390
NC
2182 arch = bfd_arch_i386;
2183 machine = bfd_mach_x86_64;
2184 break;
2185#endif
fac41780
JW
2186#ifdef IA64MAGIC
2187 case IA64MAGIC:
2188 arch = bfd_arch_ia64;
fac41780
JW
2189 break;
2190#endif
252b5132
RH
2191#ifdef ARMMAGIC
2192 case ARMMAGIC:
17505c5c
NC
2193 case ARMPEMAGIC:
2194 case THUMBPEMAGIC:
252b5132 2195 arch = bfd_arch_arm;
5a6c6817
NC
2196 machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2197 if (machine == bfd_mach_arm_unknown)
252b5132 2198 {
5a6c6817
NC
2199 switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2200 {
2201 case F_ARM_2: machine = bfd_mach_arm_2; break;
2202 case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2203 case F_ARM_3: machine = bfd_mach_arm_3; break;
2204 default:
2205 case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2206 case F_ARM_4: machine = bfd_mach_arm_4; break;
2207 case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2208 /* The COFF header does not have enough bits available
2209 to cover all the different ARM architectures. So
2210 we interpret F_ARM_5, the highest flag value to mean
2211 "the highest ARM architecture known to BFD" which is
2212 currently the XScale. */
2213 case F_ARM_5: machine = bfd_mach_arm_XScale; break;
2214 }
252b5132
RH
2215 }
2216 break;
2217#endif
3c9b82ba
NC
2218#ifdef Z80MAGIC
2219 case Z80MAGIC:
2220 arch = bfd_arch_z80;
2221 switch (internal_f->f_flags & F_MACHMASK)
2222 {
3c9b82ba
NC
2223 case bfd_mach_z80strict << 12:
2224 case bfd_mach_z80 << 12:
9fc0b501 2225 case bfd_mach_z80n << 12:
3c9b82ba
NC
2226 case bfd_mach_z80full << 12:
2227 case bfd_mach_r800 << 12:
6655dba2
SB
2228 case bfd_mach_gbz80 << 12:
2229 case bfd_mach_z180 << 12:
2230 case bfd_mach_ez80_z80 << 12:
2231 case bfd_mach_ez80_adl << 12:
3c9b82ba
NC
2232 machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2233 break;
2234 default:
2235 return FALSE;
2236 }
2237 break;
2238#endif
252b5132
RH
2239#ifdef Z8KMAGIC
2240 case Z8KMAGIC:
2241 arch = bfd_arch_z8k;
2242 switch (internal_f->f_flags & F_MACHMASK)
2243 {
2244 case F_Z8001:
2245 machine = bfd_mach_z8001;
2246 break;
2247 case F_Z8002:
2248 machine = bfd_mach_z8002;
2249 break;
2250 default:
b34976b6 2251 return FALSE;
252b5132
RH
2252 }
2253 break;
2254#endif
252b5132
RH
2255
2256#ifdef RS6000COFF_C
7f6d05e8 2257#ifdef XCOFF64
eb1e0e80 2258 case U64_TOCMAGIC:
c6664dfb 2259 case U803XTOCMAGIC:
7f6d05e8 2260#else
252b5132
RH
2261 case U802ROMAGIC:
2262 case U802WRMAGIC:
2263 case U802TOCMAGIC:
7f6d05e8 2264#endif
252b5132
RH
2265 {
2266 int cputype;
2267
2268 if (xcoff_data (abfd)->cputype != -1)
2269 cputype = xcoff_data (abfd)->cputype & 0xff;
2270 else
2271 {
2272 /* We did not get a value from the a.out header. If the
2273 file has not been stripped, we may be able to get the
2274 architecture information from the first symbol, if it
2275 is a .file symbol. */
2276 if (obj_raw_syment_count (abfd) == 0)
2277 cputype = 0;
2278 else
2279 {
5ea1af0d 2280 bfd_byte *buf;
252b5132 2281 struct internal_syment sym;
dc810e39 2282 bfd_size_type amt = bfd_coff_symesz (abfd);
252b5132 2283
2bb3687b
AM
2284 if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2285 return FALSE;
2286 buf = _bfd_malloc_and_read (abfd, amt, amt);
86eafac0
NC
2287 if (buf == NULL)
2288 return FALSE;
7920ce38 2289 bfd_coff_swap_sym_in (abfd, buf, & sym);
252b5132
RH
2290 if (sym.n_sclass == C_FILE)
2291 cputype = sym.n_type & 0xff;
2292 else
2293 cputype = 0;
2fca4467 2294 free (buf);
252b5132
RH
2295 }
2296 }
2297
2298 /* FIXME: We don't handle all cases here. */
2299 switch (cputype)
2300 {
2301 default:
2302 case 0:
beb1bf64
TR
2303 arch = bfd_xcoff_architecture (abfd);
2304 machine = bfd_xcoff_machine (abfd);
252b5132
RH
2305 break;
2306
2307 case 1:
2308 arch = bfd_arch_powerpc;
87f33987 2309 machine = bfd_mach_ppc_601;
252b5132
RH
2310 break;
2311 case 2: /* 64 bit PowerPC */
2312 arch = bfd_arch_powerpc;
87f33987 2313 machine = bfd_mach_ppc_620;
252b5132
RH
2314 break;
2315 case 3:
2316 arch = bfd_arch_powerpc;
87f33987 2317 machine = bfd_mach_ppc;
252b5132
RH
2318 break;
2319 case 4:
2320 arch = bfd_arch_rs6000;
87f33987 2321 machine = bfd_mach_rs6k;
252b5132
RH
2322 break;
2323 }
2324 }
2325 break;
2326#endif
2327
252b5132
RH
2328#ifdef SH_ARCH_MAGIC_BIG
2329 case SH_ARCH_MAGIC_BIG:
2330 case SH_ARCH_MAGIC_LITTLE:
17505c5c
NC
2331#ifdef COFF_WITH_PE
2332 case SH_ARCH_MAGIC_WINCE:
2333#endif
252b5132 2334 arch = bfd_arch_sh;
252b5132
RH
2335 break;
2336#endif
2337
17505c5c
NC
2338#ifdef MIPS_ARCH_MAGIC_WINCE
2339 case MIPS_ARCH_MAGIC_WINCE:
2340 arch = bfd_arch_mips;
17505c5c
NC
2341 break;
2342#endif
2343
252b5132
RH
2344#ifdef SPARCMAGIC
2345 case SPARCMAGIC:
2346#ifdef LYNXCOFFMAGIC
2347 case LYNXCOFFMAGIC:
2348#endif
2349 arch = bfd_arch_sparc;
252b5132
RH
2350 break;
2351#endif
2352
2353#ifdef TIC30MAGIC
2354 case TIC30MAGIC:
2355 arch = bfd_arch_tic30;
2356 break;
2357#endif
2358
81635ce4
TW
2359#ifdef TICOFF0MAGIC
2360#ifdef TICOFF_TARGET_ARCH
ed781d5d 2361 /* This TI COFF section should be used by all new TI COFF v0 targets. */
81635ce4
TW
2362 case TICOFF0MAGIC:
2363 arch = TICOFF_TARGET_ARCH;
0da35f8b 2364 machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
81635ce4
TW
2365 break;
2366#endif
2367#endif
2368
2369#ifdef TICOFF1MAGIC
ed781d5d
NC
2370 /* This TI COFF section should be used by all new TI COFF v1/2 targets. */
2371 /* TI COFF1 and COFF2 use the target_id field to specify which arch. */
81635ce4
TW
2372 case TICOFF1MAGIC:
2373 case TICOFF2MAGIC:
2374 switch (internal_f->f_target_id)
46f2f11d 2375 {
81635ce4 2376#ifdef TI_TARGET_ID
46f2f11d
AM
2377 case TI_TARGET_ID:
2378 arch = TICOFF_TARGET_ARCH;
0da35f8b 2379 machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
46f2f11d
AM
2380 break;
2381#endif
2382 default:
2383 arch = bfd_arch_obscure;
4eca0228 2384 _bfd_error_handler
59d08d6c 2385 (_("unrecognized TI COFF target id '0x%x'"),
46f2f11d
AM
2386 internal_f->f_target_id);
2387 break;
2388 }
81635ce4
TW
2389 break;
2390#endif
2391
252b5132
RH
2392#ifdef MCOREMAGIC
2393 case MCOREMAGIC:
2394 arch = bfd_arch_mcore;
2395 break;
2396#endif
c8e48751 2397
ed781d5d 2398 default: /* Unreadable input file type. */
252b5132
RH
2399 arch = bfd_arch_obscure;
2400 break;
2401 }
2402
2403 bfd_default_set_arch_mach (abfd, arch, machine);
b34976b6 2404 return TRUE;
252b5132
RH
2405}
2406
b34976b6 2407static bfd_boolean
d00dd7dc
AM
2408symname_in_debug_hook (bfd *abfd ATTRIBUTE_UNUSED,
2409 struct internal_syment *sym ATTRIBUTE_UNUSED)
252b5132 2410{
d00dd7dc 2411#ifdef SYMNAME_IN_DEBUG
82e51918 2412 return SYMNAME_IN_DEBUG (sym) != 0;
252b5132 2413#else
d00dd7dc 2414 return FALSE;
252b5132 2415#endif
d00dd7dc 2416}
252b5132
RH
2417
2418#ifdef RS6000COFF_C
2419
7f6d05e8
CP
2420#ifdef XCOFF64
2421#define FORCE_SYMNAMES_IN_STRINGS
2422#endif
a022216b 2423
8602d4fe 2424/* Handle the csect auxent of a C_EXT, C_AIX_WEAKEXT or C_HIDEXT symbol. */
252b5132 2425
b34976b6 2426static bfd_boolean
7920ce38
NC
2427coff_pointerize_aux_hook (bfd *abfd ATTRIBUTE_UNUSED,
2428 combined_entry_type *table_base,
2429 combined_entry_type *symbol,
2430 unsigned int indaux,
2431 combined_entry_type *aux)
252b5132 2432{
a5c71af8 2433 BFD_ASSERT (symbol->is_sym);
96d56e9f 2434 int n_sclass = symbol->u.syment.n_sclass;
252b5132 2435
96d56e9f 2436 if (CSECT_SYM_P (n_sclass)
252b5132
RH
2437 && indaux + 1 == symbol->u.syment.n_numaux)
2438 {
a5c71af8 2439 BFD_ASSERT (! aux->is_sym);
252b5132
RH
2440 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD)
2441 {
2442 aux->u.auxent.x_csect.x_scnlen.p =
2443 table_base + aux->u.auxent.x_csect.x_scnlen.l;
2444 aux->fix_scnlen = 1;
2445 }
2446
b34976b6 2447 /* Return TRUE to indicate that the caller should not do any
46f2f11d 2448 further work on this auxent. */
b34976b6 2449 return TRUE;
252b5132
RH
2450 }
2451
b34976b6 2452 /* Return FALSE to indicate that this auxent should be handled by
252b5132 2453 the caller. */
b34976b6 2454 return FALSE;
252b5132
RH
2455}
2456
2457#else
252b5132 2458#define coff_pointerize_aux_hook 0
252b5132
RH
2459#endif /* ! RS6000COFF_C */
2460
b34976b6 2461/* Print an aux entry. This returns TRUE if it has printed it. */
252b5132 2462
b34976b6 2463static bfd_boolean
7920ce38
NC
2464coff_print_aux (bfd *abfd ATTRIBUTE_UNUSED,
2465 FILE *file ATTRIBUTE_UNUSED,
2466 combined_entry_type *table_base ATTRIBUTE_UNUSED,
2467 combined_entry_type *symbol ATTRIBUTE_UNUSED,
2468 combined_entry_type *aux ATTRIBUTE_UNUSED,
2469 unsigned int indaux ATTRIBUTE_UNUSED)
252b5132 2470{
a5c71af8
NC
2471 BFD_ASSERT (symbol->is_sym);
2472 BFD_ASSERT (! aux->is_sym);
252b5132 2473#ifdef RS6000COFF_C
8602d4fe 2474 if (CSECT_SYM_P (symbol->u.syment.n_sclass)
252b5132
RH
2475 && indaux + 1 == symbol->u.syment.n_numaux)
2476 {
2477 /* This is a csect entry. */
2478 fprintf (file, "AUX ");
2479 if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
2480 {
2481 BFD_ASSERT (! aux->fix_scnlen);
ce9116fd
AM
2482 fprintf (file, "val %5" BFD_VMA_FMT "d",
2483 aux->u.auxent.x_csect.x_scnlen.l);
252b5132
RH
2484 }
2485 else
2486 {
2487 fprintf (file, "indx ");
2488 if (! aux->fix_scnlen)
ce9116fd
AM
2489 fprintf (file, "%4" BFD_VMA_FMT "d",
2490 aux->u.auxent.x_csect.x_scnlen.l);
252b5132
RH
2491 else
2492 fprintf (file, "%4ld",
2493 (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
2494 }
2495 fprintf (file,
2496 " prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u",
2497 aux->u.auxent.x_csect.x_parmhash,
2498 (unsigned int) aux->u.auxent.x_csect.x_snhash,
2499 SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
2500 SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
2501 (unsigned int) aux->u.auxent.x_csect.x_smclas,
2502 aux->u.auxent.x_csect.x_stab,
2503 (unsigned int) aux->u.auxent.x_csect.x_snstab);
b34976b6 2504 return TRUE;
252b5132
RH
2505 }
2506#endif
2507
b34976b6
AM
2508 /* Return FALSE to indicate that no special action was taken. */
2509 return FALSE;
252b5132
RH
2510}
2511
2512/*
2513SUBSUBSECTION
2514 Writing relocations
2515
2516 To write relocations, the back end steps though the
2517 canonical relocation table and create an
2518 @code{internal_reloc}. The symbol index to use is removed from
2519 the @code{offset} field in the symbol table supplied. The
2520 address comes directly from the sum of the section base
2521 address and the relocation offset; the type is dug directly
2522 from the howto field. Then the @code{internal_reloc} is
2523 swapped into the shape of an @code{external_reloc} and written
2524 out to disk.
2525
2526*/
2527
2528#ifdef TARG_AUX
2529
252b5132 2530
ed781d5d 2531/* AUX's ld wants relocations to be sorted. */
252b5132 2532static int
7920ce38 2533compare_arelent_ptr (const void * x, const void * y)
252b5132
RH
2534{
2535 const arelent **a = (const arelent **) x;
2536 const arelent **b = (const arelent **) y;
2537 bfd_size_type aadr = (*a)->address;
2538 bfd_size_type badr = (*b)->address;
2539
2540 return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
2541}
2542
2543#endif /* TARG_AUX */
2544
b34976b6 2545static bfd_boolean
7920ce38 2546coff_write_relocs (bfd * abfd, int first_undef)
252b5132
RH
2547{
2548 asection *s;
2549
7920ce38 2550 for (s = abfd->sections; s != NULL; s = s->next)
252b5132
RH
2551 {
2552 unsigned int i;
2553 struct external_reloc dst;
2554 arelent **p;
2555
2556#ifndef TARG_AUX
2557 p = s->orelocation;
2558#else
dc810e39 2559 {
ed781d5d 2560 /* Sort relocations before we write them out. */
dc810e39
AM
2561 bfd_size_type amt;
2562
2563 amt = s->reloc_count;
2564 amt *= sizeof (arelent *);
7920ce38 2565 p = bfd_malloc (amt);
86eafac0
NC
2566 if (p == NULL)
2567 {
2568 if (s->reloc_count > 0)
2569 return FALSE;
2570 }
2571 else
2572 {
2573 memcpy (p, s->orelocation, (size_t) amt);
2574 qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
2575 }
dc810e39 2576 }
252b5132
RH
2577#endif
2578
2579 if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
b34976b6 2580 return FALSE;
3e4554a2 2581
f717994f
JMG
2582#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
2583 if ((obj_pe (abfd) || obj_go32 (abfd)) && s->reloc_count >= 0xffff)
3e4554a2 2584 {
ed781d5d 2585 /* Encode real count here as first reloc. */
3e4554a2 2586 struct internal_reloc n;
ed781d5d 2587
7920ce38 2588 memset (& n, 0, sizeof (n));
ed781d5d 2589 /* Add one to count *this* reloc (grr). */
3e4554a2
DD
2590 n.r_vaddr = s->reloc_count + 1;
2591 coff_swap_reloc_out (abfd, &n, &dst);
7920ce38
NC
2592 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
2593 abfd) != bfd_coff_relsz (abfd))
b34976b6 2594 return FALSE;
3e4554a2
DD
2595 }
2596#endif
2597
252b5132
RH
2598 for (i = 0; i < s->reloc_count; i++)
2599 {
2600 struct internal_reloc n;
2601 arelent *q = p[i];
ed781d5d 2602
7920ce38 2603 memset (& n, 0, sizeof (n));
252b5132
RH
2604
2605 /* Now we've renumbered the symbols we know where the
2606 undefined symbols live in the table. Check the reloc
2607 entries for symbols who's output bfd isn't the right one.
2608 This is because the symbol was undefined (which means
2609 that all the pointers are never made to point to the same
2610 place). This is a bad thing,'cause the symbols attached
2611 to the output bfd are indexed, so that the relocation
2612 entries know which symbol index they point to. So we
e60b52c6 2613 have to look up the output symbol here. */
252b5132 2614
ef72a554 2615 if (q->sym_ptr_ptr[0] != NULL && q->sym_ptr_ptr[0]->the_bfd != abfd)
252b5132 2616 {
dc810e39 2617 int j;
252b5132
RH
2618 const char *sname = q->sym_ptr_ptr[0]->name;
2619 asymbol **outsyms = abfd->outsymbols;
ed781d5d 2620
dc810e39 2621 for (j = first_undef; outsyms[j]; j++)
252b5132 2622 {
dc810e39 2623 const char *intable = outsyms[j]->name;
ed781d5d 2624
7920ce38
NC
2625 if (strcmp (intable, sname) == 0)
2626 {
2627 /* Got a hit, so repoint the reloc. */
2628 q->sym_ptr_ptr = outsyms + j;
2629 break;
2630 }
252b5132
RH
2631 }
2632 }
2633
2634 n.r_vaddr = q->address + s->vma;
2635
2636#ifdef R_IHCONST
2637 /* The 29k const/consth reloc pair is a real kludge. The consth
2638 part doesn't have a symbol; it has an offset. So rebuilt
2639 that here. */
2640 if (q->howto->type == R_IHCONST)
2641 n.r_symndx = q->addend;
2642 else
2643#endif
ef72a554 2644 if (q->sym_ptr_ptr && q->sym_ptr_ptr[0] != NULL)
252b5132 2645 {
6c784c9a 2646#ifdef SECTION_RELATIVE_ABSOLUTE_SYMBOL_P
46f2f11d 2647 if (SECTION_RELATIVE_ABSOLUTE_SYMBOL_P (q, s))
6c784c9a 2648#else
250d94fd
AM
2649 if ((*q->sym_ptr_ptr)->section == bfd_abs_section_ptr
2650 && ((*q->sym_ptr_ptr)->flags & BSF_SECTION_SYM) != 0)
6c784c9a 2651#endif
252b5132
RH
2652 /* This is a relocation relative to the absolute symbol. */
2653 n.r_symndx = -1;
2654 else
2655 {
2656 n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
337ff0a5
NC
2657 /* Check to see if the symbol reloc points to a symbol
2658 we don't have in our symbol table. */
252b5132 2659 if (n.r_symndx > obj_conv_table_size (abfd))
337ff0a5
NC
2660 {
2661 bfd_set_error (bfd_error_bad_value);
695344c0 2662 /* xgettext:c-format */
871b3ab2 2663 _bfd_error_handler (_("%pB: reloc against a non-existent"
63a5468a 2664 " symbol index: %ld"),
337ff0a5
NC
2665 abfd, n.r_symndx);
2666 return FALSE;
2667 }
252b5132
RH
2668 }
2669 }
2670
2671#ifdef SWAP_OUT_RELOC_OFFSET
2672 n.r_offset = q->addend;
2673#endif
2674
2675#ifdef SELECT_RELOC
ed781d5d 2676 /* Work out reloc type from what is required. */
252b5132
RH
2677 SELECT_RELOC (n, q->howto);
2678#else
2679 n.r_type = q->howto->type;
2680#endif
2681 coff_swap_reloc_out (abfd, &n, &dst);
ed781d5d 2682
7920ce38 2683 if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
dc810e39 2684 abfd) != bfd_coff_relsz (abfd))
b34976b6 2685 return FALSE;
252b5132
RH
2686 }
2687
2688#ifdef TARG_AUX
c9594989 2689 free (p);
252b5132
RH
2690#endif
2691 }
2692
b34976b6 2693 return TRUE;
252b5132
RH
2694}
2695
2696/* Set flags and magic number of a coff file from architecture and machine
b34976b6 2697 type. Result is TRUE if we can represent the arch&type, FALSE if not. */
252b5132 2698
b34976b6 2699static bfd_boolean
7920ce38
NC
2700coff_set_flags (bfd * abfd,
2701 unsigned int *magicp ATTRIBUTE_UNUSED,
2702 unsigned short *flagsp ATTRIBUTE_UNUSED)
252b5132
RH
2703{
2704 switch (bfd_get_arch (abfd))
2705 {
3c9b82ba
NC
2706#ifdef Z80MAGIC
2707 case bfd_arch_z80:
2708 *magicp = Z80MAGIC;
2709 switch (bfd_get_mach (abfd))
2710 {
3c9b82ba
NC
2711 case bfd_mach_z80strict:
2712 case bfd_mach_z80:
9fc0b501 2713 case bfd_mach_z80n:
3c9b82ba
NC
2714 case bfd_mach_z80full:
2715 case bfd_mach_r800:
6655dba2
SB
2716 case bfd_mach_gbz80:
2717 case bfd_mach_z180:
2718 case bfd_mach_ez80_z80:
2719 case bfd_mach_ez80_adl:
3c9b82ba
NC
2720 *flagsp = bfd_get_mach (abfd) << 12;
2721 break;
2722 default:
2723 return FALSE;
2724 }
2725 return TRUE;
2726#endif
2727
252b5132
RH
2728#ifdef Z8KMAGIC
2729 case bfd_arch_z8k:
2730 *magicp = Z8KMAGIC;
7920ce38 2731
252b5132
RH
2732 switch (bfd_get_mach (abfd))
2733 {
7920ce38
NC
2734 case bfd_mach_z8001: *flagsp = F_Z8001; break;
2735 case bfd_mach_z8002: *flagsp = F_Z8002; break;
2736 default: return FALSE;
252b5132 2737 }
b34976b6 2738 return TRUE;
252b5132 2739#endif
252b5132 2740
252b5132
RH
2741#ifdef TIC30MAGIC
2742 case bfd_arch_tic30:
2743 *magicp = TIC30MAGIC;
b34976b6 2744 return TRUE;
252b5132 2745#endif
81635ce4
TW
2746
2747#ifdef TICOFF_DEFAULT_MAGIC
2748 case TICOFF_TARGET_ARCH:
ed781d5d 2749 /* If there's no indication of which version we want, use the default. */
81635ce4 2750 if (!abfd->xvec )
46f2f11d 2751 *magicp = TICOFF_DEFAULT_MAGIC;
81635ce4 2752 else
46f2f11d
AM
2753 {
2754 /* We may want to output in a different COFF version. */
2755 switch (abfd->xvec->name[4])
2756 {
2757 case '0':
2758 *magicp = TICOFF0MAGIC;
2759 break;
2760 case '1':
2761 *magicp = TICOFF1MAGIC;
2762 break;
2763 case '2':
2764 *magicp = TICOFF2MAGIC;
2765 break;
2766 default:
2767 return FALSE;
2768 }
2769 }
0da35f8b 2770 TICOFF_TARGET_MACHINE_SET (flagsp, bfd_get_mach (abfd));
b34976b6 2771 return TRUE;
81635ce4
TW
2772#endif
2773
252b5132
RH
2774#ifdef ARMMAGIC
2775 case bfd_arch_arm:
17505c5c
NC
2776#ifdef ARM_WINCE
2777 * magicp = ARMPEMAGIC;
2778#else
252b5132 2779 * magicp = ARMMAGIC;
17505c5c 2780#endif
252b5132
RH
2781 * flagsp = 0;
2782 if (APCS_SET (abfd))
2783 {
2784 if (APCS_26_FLAG (abfd))
2785 * flagsp |= F_APCS26;
e60b52c6 2786
252b5132
RH
2787 if (APCS_FLOAT_FLAG (abfd))
2788 * flagsp |= F_APCS_FLOAT;
e60b52c6 2789
252b5132 2790 if (PIC_FLAG (abfd))
948221a8 2791 * flagsp |= F_PIC;
252b5132
RH
2792 }
2793 if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
2794 * flagsp |= F_INTERWORK;
2795 switch (bfd_get_mach (abfd))
2796 {
2797 case bfd_mach_arm_2: * flagsp |= F_ARM_2; break;
2798 case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
2799 case bfd_mach_arm_3: * flagsp |= F_ARM_3; break;
2800 case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
2801 case bfd_mach_arm_4: * flagsp |= F_ARM_4; break;
2802 case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
478d07d6 2803 case bfd_mach_arm_5: * flagsp |= F_ARM_5; break;
f13b834e
NC
2804 /* FIXME: we do not have F_ARM vaues greater than F_ARM_5.
2805 See also the comment in coff_set_arch_mach_hook(). */
077b8428
NC
2806 case bfd_mach_arm_5T: * flagsp |= F_ARM_5; break;
2807 case bfd_mach_arm_5TE: * flagsp |= F_ARM_5; break;
2808 case bfd_mach_arm_XScale: * flagsp |= F_ARM_5; break;
252b5132 2809 }
b34976b6 2810 return TRUE;
252b5132 2811#endif
7920ce38 2812
99ad8390 2813#if defined(I386MAGIC) || defined(AMD64MAGIC)
252b5132 2814 case bfd_arch_i386:
99ad8390 2815#if defined(I386MAGIC)
252b5132 2816 *magicp = I386MAGIC;
99ad8390
NC
2817#endif
2818#if defined LYNXOS
e60b52c6 2819 /* Just overwrite the usual value if we're doing Lynx. */
252b5132 2820 *magicp = LYNXCOFFMAGIC;
99ad8390
NC
2821#endif
2822#if defined AMD64MAGIC
2823 *magicp = AMD64MAGIC;
252b5132 2824#endif
b34976b6 2825 return TRUE;
252b5132 2826#endif
7920ce38 2827
fac41780
JW
2828#ifdef IA64MAGIC
2829 case bfd_arch_ia64:
2830 *magicp = IA64MAGIC;
b34976b6 2831 return TRUE;
fac41780 2832#endif
7920ce38 2833
252b5132
RH
2834#ifdef SH_ARCH_MAGIC_BIG
2835 case bfd_arch_sh:
17505c5c
NC
2836#ifdef COFF_IMAGE_WITH_PE
2837 *magicp = SH_ARCH_MAGIC_WINCE;
2838#else
252b5132
RH
2839 if (bfd_big_endian (abfd))
2840 *magicp = SH_ARCH_MAGIC_BIG;
2841 else
2842 *magicp = SH_ARCH_MAGIC_LITTLE;
17505c5c 2843#endif
b34976b6 2844 return TRUE;
17505c5c
NC
2845#endif
2846
2847#ifdef MIPS_ARCH_MAGIC_WINCE
2848 case bfd_arch_mips:
2849 *magicp = MIPS_ARCH_MAGIC_WINCE;
b34976b6 2850 return TRUE;
252b5132
RH
2851#endif
2852
2853#ifdef SPARCMAGIC
2854 case bfd_arch_sparc:
2855 *magicp = SPARCMAGIC;
2856#ifdef LYNXOS
e60b52c6 2857 /* Just overwrite the usual value if we're doing Lynx. */
252b5132
RH
2858 *magicp = LYNXCOFFMAGIC;
2859#endif
b34976b6 2860 return TRUE;
252b5132
RH
2861#endif
2862
7f6d05e8 2863#ifdef RS6000COFF_C
252b5132 2864 case bfd_arch_rs6000:
252b5132 2865 case bfd_arch_powerpc:
eb1e0e80
NC
2866 BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_xcoff_flavour);
2867 *magicp = bfd_xcoff_magic_number (abfd);
b34976b6 2868 return TRUE;
252b5132
RH
2869#endif
2870
2871#ifdef MCOREMAGIC
2872 case bfd_arch_mcore:
2873 * magicp = MCOREMAGIC;
b34976b6 2874 return TRUE;
252b5132 2875#endif
e60b52c6 2876
371e71b8 2877 default: /* Unknown architecture. */
b34976b6 2878 /* Fall through to "return FALSE" below, to avoid
371e71b8 2879 "statement never reached" errors on the one below. */
252b5132
RH
2880 break;
2881 }
2882
b34976b6 2883 return FALSE;
252b5132
RH
2884}
2885
b34976b6 2886static bfd_boolean
7920ce38
NC
2887coff_set_arch_mach (bfd * abfd,
2888 enum bfd_architecture arch,
2889 unsigned long machine)
252b5132
RH
2890{
2891 unsigned dummy1;
2892 unsigned short dummy2;
2893
2894 if (! bfd_default_set_arch_mach (abfd, arch, machine))
b34976b6 2895 return FALSE;
252b5132 2896
82e51918
AM
2897 if (arch != bfd_arch_unknown
2898 && ! coff_set_flags (abfd, &dummy1, &dummy2))
7920ce38 2899 return FALSE; /* We can't represent this type. */
252b5132 2900
7920ce38 2901 return TRUE; /* We're easy... */
252b5132
RH
2902}
2903
75cc7189
ILT
2904#ifdef COFF_IMAGE_WITH_PE
2905
2906/* This is used to sort sections by VMA, as required by PE image
2907 files. */
2908
75cc7189 2909static int
7920ce38 2910sort_by_secaddr (const void * arg1, const void * arg2)
75cc7189
ILT
2911{
2912 const asection *a = *(const asection **) arg1;
2913 const asection *b = *(const asection **) arg2;
2914
2915 if (a->vma < b->vma)
2916 return -1;
2917 else if (a->vma > b->vma)
2918 return 1;
7920ce38
NC
2919
2920 return 0;
75cc7189
ILT
2921}
2922
2923#endif /* COFF_IMAGE_WITH_PE */
252b5132 2924
e60b52c6 2925/* Calculate the file position for each section. */
252b5132 2926
252b5132 2927#define ALIGN_SECTIONS_IN_FILE
5b660084 2928#ifdef TICOFF
252b5132
RH
2929#undef ALIGN_SECTIONS_IN_FILE
2930#endif
2931
b34976b6 2932static bfd_boolean
7920ce38 2933coff_compute_section_file_positions (bfd * abfd)
252b5132
RH
2934{
2935 asection *current;
6b3b007b 2936 file_ptr sofar = bfd_coff_filhsz (abfd);
b34976b6 2937 bfd_boolean align_adjust;
167ad85b 2938 unsigned int target_index;
252b5132 2939#ifdef ALIGN_SECTIONS_IN_FILE
c7e2358a 2940 asection *previous = NULL;
252b5132
RH
2941 file_ptr old_sofar;
2942#endif
2943
22eb4b1d
AM
2944#ifdef COFF_IMAGE_WITH_PE
2945 int page_size;
2946
a4a027b7
KT
2947 if (coff_data (abfd)->link_info
2948 || (pe_data (abfd) && pe_data (abfd)->pe_opthdr.FileAlignment))
22eb4b1d
AM
2949 {
2950 page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
2951
2952 /* If no file alignment has been set, default to one.
2953 This repairs 'ld -r' for arm-wince-pe target. */
2954 if (page_size == 0)
2955 page_size = 1;
c86934ce
NC
2956
2957 /* PR 17512: file: 0ac816d3. */
2958 if (page_size < 0)
2959 {
2960 bfd_set_error (bfd_error_file_too_big);
4eca0228 2961 _bfd_error_handler
695344c0 2962 /* xgettext:c-format */
871b3ab2 2963 (_("%pB: page size is too large (0x%x)"), abfd, page_size);
c86934ce
NC
2964 return FALSE;
2965 }
22eb4b1d
AM
2966 }
2967 else
2968 page_size = PE_DEF_FILE_ALIGNMENT;
2969#else
2970#ifdef COFF_PAGE_SIZE
2971 int page_size = COFF_PAGE_SIZE;
2972#endif
2973#endif
2974
252b5132
RH
2975#ifdef RS6000COFF_C
2976 /* On XCOFF, if we have symbols, set up the .debug section. */
2977 if (bfd_get_symcount (abfd) > 0)
2978 {
2979 bfd_size_type sz;
2980 bfd_size_type i, symcount;
2981 asymbol **symp;
2982
2983 sz = 0;
2984 symcount = bfd_get_symcount (abfd);
2985 for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
2986 {
2987 coff_symbol_type *cf;
2988
f4943d82 2989 cf = coff_symbol_from (*symp);
252b5132
RH
2990 if (cf != NULL
2991 && cf->native != NULL
a5c71af8 2992 && cf->native->is_sym
252b5132
RH
2993 && SYMNAME_IN_DEBUG (&cf->native->u.syment))
2994 {
2995 size_t len;
2996
2997 len = strlen (bfd_asymbol_name (*symp));
7f6d05e8
CP
2998 if (len > SYMNMLEN || bfd_coff_force_symnames_in_strings (abfd))
2999 sz += len + 1 + bfd_coff_debug_string_prefix_length (abfd);
252b5132
RH
3000 }
3001 }
3002 if (sz > 0)
3003 {
3004 asection *dsec;
3005
8a7140c3 3006 dsec = bfd_make_section_old_way (abfd, DOT_DEBUG);
252b5132
RH
3007 if (dsec == NULL)
3008 abort ();
eea6121a 3009 dsec->size = sz;
252b5132
RH
3010 dsec->flags |= SEC_HAS_CONTENTS;
3011 }
3012 }
3013#endif
3014
252b5132 3015 if (bfd_get_start_address (abfd))
7920ce38
NC
3016 /* A start address may have been added to the original file. In this
3017 case it will need an optional header to record it. */
3018 abfd->flags |= EXEC_P;
252b5132
RH
3019
3020 if (abfd->flags & EXEC_P)
6b3b007b 3021 sofar += bfd_coff_aoutsz (abfd);
252b5132
RH
3022#ifdef RS6000COFF_C
3023 else if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3024 sofar += bfd_coff_aoutsz (abfd);
252b5132
RH
3025 else
3026 sofar += SMALL_AOUTSZ;
3027#endif
3028
6b3b007b 3029 sofar += abfd->section_count * bfd_coff_scnhsz (abfd);
252b5132
RH
3030
3031#ifdef RS6000COFF_C
3032 /* XCOFF handles overflows in the reloc and line number count fields
3033 by allocating a new section header to hold the correct counts. */
3034 for (current = abfd->sections; current != NULL; current = current->next)
3035 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
6b3b007b 3036 sofar += bfd_coff_scnhsz (abfd);
252b5132
RH
3037#endif
3038
75cc7189
ILT
3039#ifdef COFF_IMAGE_WITH_PE
3040 {
3041 /* PE requires the sections to be in memory order when listed in
3042 the section headers. It also does not like empty loadable
3043 sections. The sections apparently do not have to be in the
3044 right order in the image file itself, but we do need to get the
3045 target_index values right. */
3046
dc810e39 3047 unsigned int count;
75cc7189 3048 asection **section_list;
dc810e39 3049 unsigned int i;
dc810e39 3050 bfd_size_type amt;
75cc7189 3051
4f360784
L
3052#ifdef COFF_PAGE_SIZE
3053 /* Clear D_PAGED if section alignment is smaller than
3054 COFF_PAGE_SIZE. */
3055 if (pe_data (abfd)->pe_opthdr.SectionAlignment < COFF_PAGE_SIZE)
3056 abfd->flags &= ~D_PAGED;
3057#endif
3058
75cc7189
ILT
3059 count = 0;
3060 for (current = abfd->sections; current != NULL; current = current->next)
3061 ++count;
3062
3063 /* We allocate an extra cell to simplify the final loop. */
dc810e39 3064 amt = sizeof (struct asection *) * (count + 1);
a50b1753 3065 section_list = (asection **) bfd_malloc (amt);
75cc7189 3066 if (section_list == NULL)
b34976b6 3067 return FALSE;
75cc7189
ILT
3068
3069 i = 0;
3070 for (current = abfd->sections; current != NULL; current = current->next)
3071 {
3072 section_list[i] = current;
3073 ++i;
3074 }
3075 section_list[i] = NULL;
3076
3077 qsort (section_list, count, sizeof (asection *), sort_by_secaddr);
3078
3079 /* Rethread the linked list into sorted order; at the same time,
3080 assign target_index values. */
3081 target_index = 1;
5daa8fe7
L
3082 abfd->sections = NULL;
3083 abfd->section_last = NULL;
75cc7189
ILT
3084 for (i = 0; i < count; i++)
3085 {
3086 current = section_list[i];
5daa8fe7 3087 bfd_section_list_append (abfd, current);
75cc7189
ILT
3088
3089 /* Later, if the section has zero size, we'll be throwing it
3090 away, so we don't want to number it now. Note that having
3091 a zero size and having real contents are different
3092 concepts: .bss has no contents, but (usually) non-zero
3093 size. */
eea6121a 3094 if (current->size == 0)
75cc7189
ILT
3095 {
3096 /* Discard. However, it still might have (valid) symbols
3097 in it, so arbitrarily set it to section 1 (indexing is
3098 1-based here; usually .text). __end__ and other
3099 contents of .endsection really have this happen.
3100 FIXME: This seems somewhat dubious. */
3101 current->target_index = 1;
3102 }
3103 else
3104 current->target_index = target_index++;
3105 }
3106
2fca4467 3107 free (section_list);
75cc7189
ILT
3108 }
3109#else /* ! COFF_IMAGE_WITH_PE */
3110 {
3111 /* Set the target_index field. */
75cc7189
ILT
3112 target_index = 1;
3113 for (current = abfd->sections; current != NULL; current = current->next)
3114 current->target_index = target_index++;
3115 }
3116#endif /* ! COFF_IMAGE_WITH_PE */
3117
167ad85b 3118 if (target_index >= bfd_coff_max_nscns (abfd))
22eb4b1d
AM
3119 {
3120 bfd_set_error (bfd_error_file_too_big);
4eca0228 3121 _bfd_error_handler
695344c0 3122 /* xgettext:c-format */
871b3ab2 3123 (_("%pB: too many sections (%d)"), abfd, target_index);
22eb4b1d
AM
3124 return FALSE;
3125 }
3126
b34976b6 3127 align_adjust = FALSE;
75cc7189 3128 for (current = abfd->sections;
7920ce38 3129 current != NULL;
75cc7189 3130 current = current->next)
252b5132
RH
3131 {
3132#ifdef COFF_IMAGE_WITH_PE
75cc7189
ILT
3133 /* With PE we have to pad each section to be a multiple of its
3134 page size too, and remember both sizes. */
3135 if (coff_section_data (abfd, current) == NULL)
252b5132 3136 {
986f0783 3137 size_t amt = sizeof (struct coff_section_tdata);
7920ce38
NC
3138
3139 current->used_by_bfd = bfd_zalloc (abfd, amt);
75cc7189 3140 if (current->used_by_bfd == NULL)
b34976b6 3141 return FALSE;
252b5132 3142 }
75cc7189
ILT
3143 if (pei_section_data (abfd, current) == NULL)
3144 {
986f0783 3145 size_t amt = sizeof (struct pei_section_tdata);
7920ce38
NC
3146
3147 coff_section_data (abfd, current)->tdata = bfd_zalloc (abfd, amt);
75cc7189 3148 if (coff_section_data (abfd, current)->tdata == NULL)
b34976b6 3149 return FALSE;
75cc7189
ILT
3150 }
3151 if (pei_section_data (abfd, current)->virt_size == 0)
eea6121a 3152 pei_section_data (abfd, current)->virt_size = current->size;
252b5132
RH
3153#endif
3154
75cc7189 3155 /* Only deal with sections which have contents. */
252b5132
RH
3156 if (!(current->flags & SEC_HAS_CONTENTS))
3157 continue;
3158
21e68916
KT
3159 current->rawsize = current->size;
3160
75cc7189
ILT
3161#ifdef COFF_IMAGE_WITH_PE
3162 /* Make sure we skip empty sections in a PE image. */
eea6121a 3163 if (current->size == 0)
75cc7189
ILT
3164 continue;
3165#endif
3166
252b5132 3167 /* Align the sections in the file to the same boundary on
a8eb42a8 3168 which they are aligned in virtual memory. */
252b5132
RH
3169#ifdef ALIGN_SECTIONS_IN_FILE
3170 if ((abfd->flags & EXEC_P) != 0)
3171 {
ed781d5d
NC
3172 /* Make sure this section is aligned on the right boundary - by
3173 padding the previous section up if necessary. */
252b5132 3174 old_sofar = sofar;
7920ce38 3175
2eea2440
TG
3176 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
3177
47ede03a 3178#ifdef RS6000COFF_C
2eea2440
TG
3179 /* Make sure the file offset and the vma of .text/.data are at the
3180 same page offset, so that the file can be mmap'ed without being
3181 relocated. Failing that, AIX is able to load and execute the
3182 program, but it will be silently relocated (possible as
3183 executables are PIE). But the relocation is slightly costly and
3184 complexify the use of addr2line or gdb. So better to avoid it,
3185 like does the native linker. Usually gnu ld makes sure that
3186 the vma of .text is the file offset so this issue shouldn't
3187 appear unless you are stripping such an executable.
3188
3189 AIX loader checks the text section alignment of (vma - filepos),
3190 and the native linker doesn't try to align the text sections.
3191 For example:
3192
07d6d2b8
AM
3193 0 .text 000054cc 10000128 10000128 00000128 2**5
3194 CONTENTS, ALLOC, LOAD, CODE
1b2cb8e2
CC
3195
3196 Don't perform the above tweak if the previous one is .tdata,
3197 as it will increase the memory allocated for every threads
3198 created and not just improve performances with gdb.
2eea2440
TG
3199 */
3200
1b2cb8e2
CC
3201 if ((!strcmp (current->name, _TEXT)
3202 || !strcmp (current->name, _DATA))
3203 && (previous == NULL || strcmp(previous->name, _TDATA)))
47ede03a 3204 {
2eea2440
TG
3205 bfd_vma align = 4096;
3206 bfd_vma sofar_off = sofar % align;
3207 bfd_vma vma_off = current->vma % align;
3208
3209 if (vma_off > sofar_off)
3210 sofar += vma_off - sofar_off;
3211 else if (vma_off < sofar_off)
3212 sofar += align + vma_off - sofar_off;
47ede03a
TR
3213 }
3214#endif
7920ce38 3215 if (previous != NULL)
eea6121a 3216 previous->size += sofar - old_sofar;
252b5132
RH
3217 }
3218
3219#endif
3220
3221 /* In demand paged files the low order bits of the file offset
3222 must match the low order bits of the virtual address. */
3223#ifdef COFF_PAGE_SIZE
3224 if ((abfd->flags & D_PAGED) != 0
3225 && (current->flags & SEC_ALLOC) != 0)
7bf6dede 3226 sofar += (current->vma - (bfd_vma) sofar) % page_size;
252b5132
RH
3227#endif
3228 current->filepos = sofar;
3229
3230#ifdef COFF_IMAGE_WITH_PE
75cc7189 3231 /* Set the padded size. */
21e68916 3232 current->size = (current->size + page_size - 1) & -page_size;
252b5132
RH
3233#endif
3234
eea6121a 3235 sofar += current->size;
252b5132
RH
3236
3237#ifdef ALIGN_SECTIONS_IN_FILE
ed781d5d 3238 /* Make sure that this section is of the right size too. */
252b5132
RH
3239 if ((abfd->flags & EXEC_P) == 0)
3240 {
3241 bfd_size_type old_size;
3242
eea6121a
AM
3243 old_size = current->size;
3244 current->size = BFD_ALIGN (current->size,
3245 1 << current->alignment_power);
3246 align_adjust = current->size != old_size;
3247 sofar += current->size - old_size;
252b5132
RH
3248 }
3249 else
3250 {
3251 old_sofar = sofar;
3252 sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
3253 align_adjust = sofar != old_sofar;
eea6121a 3254 current->size += sofar - old_sofar;
252b5132
RH
3255 }
3256#endif
3257
3258#ifdef COFF_IMAGE_WITH_PE
3259 /* For PE we need to make sure we pad out to the aligned
46f2f11d
AM
3260 size, in case the caller only writes out data to the
3261 unaligned size. */
eea6121a 3262 if (pei_section_data (abfd, current)->virt_size < current->size)
b34976b6 3263 align_adjust = TRUE;
252b5132
RH
3264#endif
3265
3266#ifdef _LIB
3267 /* Force .lib sections to start at zero. The vma is then
3268 incremented in coff_set_section_contents. This is right for
3269 SVR3.2. */
3270 if (strcmp (current->name, _LIB) == 0)
fd361982 3271 bfd_set_section_vma (current, 0);
252b5132
RH
3272#endif
3273
c7e2358a 3274#ifdef ALIGN_SECTIONS_IN_FILE
252b5132 3275 previous = current;
c7e2358a 3276#endif
252b5132
RH
3277 }
3278
3279 /* It is now safe to write to the output file. If we needed an
3280 alignment adjustment for the last section, then make sure that
3281 there is a byte at offset sofar. If there are no symbols and no
3282 relocs, then nothing follows the last section. If we don't force
3283 the last byte out, then the file may appear to be truncated. */
3284 if (align_adjust)
3285 {
3286 bfd_byte b;
3287
3288 b = 0;
3289 if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
dc810e39 3290 || bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
b34976b6 3291 return FALSE;
252b5132
RH
3292 }
3293
3294 /* Make sure the relocations are aligned. We don't need to make
3295 sure that this byte exists, because it will only matter if there
3296 really are relocs. */
3297 sofar = BFD_ALIGN (sofar, 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
3298
3299 obj_relocbase (abfd) = sofar;
b34976b6 3300 abfd->output_has_begun = TRUE;
252b5132 3301
b34976b6 3302 return TRUE;
252b5132
RH
3303}
3304
05793179
NC
3305#ifdef COFF_IMAGE_WITH_PE
3306
b34976b6 3307static bfd_boolean
cf7a3c01 3308coff_read_word (bfd *abfd, unsigned int *value, unsigned int *pelength)
05793179
NC
3309{
3310 unsigned char b[2];
3311 int status;
3312
3313 status = bfd_bread (b, (bfd_size_type) 2, abfd);
3314 if (status < 1)
3315 {
3316 *value = 0;
b34976b6 3317 return FALSE;
05793179
NC
3318 }
3319
3320 if (status == 1)
3321 *value = (unsigned int) b[0];
3322 else
3323 *value = (unsigned int) (b[0] + (b[1] << 8));
3324
cf7a3c01 3325 *pelength += status;
05793179 3326
b34976b6 3327 return TRUE;
05793179
NC
3328}
3329
3330static unsigned int
cf7a3c01 3331coff_compute_checksum (bfd *abfd, unsigned int *pelength)
05793179 3332{
b34976b6 3333 bfd_boolean more_data;
05793179
NC
3334 file_ptr filepos;
3335 unsigned int value;
3336 unsigned int total;
3337
3338 total = 0;
cf7a3c01 3339 *pelength = 0;
05793179
NC
3340 filepos = (file_ptr) 0;
3341
3342 do
3343 {
3344 if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
3345 return 0;
3346
cf7a3c01 3347 more_data = coff_read_word (abfd, &value, pelength);
05793179
NC
3348 total += value;
3349 total = 0xffff & (total + (total >> 0x10));
3350 filepos += 2;
3351 }
3352 while (more_data);
3353
3354 return (0xffff & (total + (total >> 0x10)));
3355}
3356
b34976b6 3357static bfd_boolean
7920ce38 3358coff_apply_checksum (bfd *abfd)
05793179
NC
3359{
3360 unsigned int computed;
3361 unsigned int checksum = 0;
cf7a3c01
AM
3362 unsigned int peheader;
3363 unsigned int pelength;
05793179
NC
3364
3365 if (bfd_seek (abfd, 0x3c, SEEK_SET) != 0)
b34976b6 3366 return FALSE;
05793179 3367
cf7a3c01 3368 if (!coff_read_word (abfd, &peheader, &pelength))
b34976b6 3369 return FALSE;
05793179
NC
3370
3371 if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
b34976b6 3372 return FALSE;
05793179
NC
3373
3374 checksum = 0;
3375 bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3376
3377 if (bfd_seek (abfd, peheader, SEEK_SET) != 0)
b34976b6 3378 return FALSE;
05793179 3379
cf7a3c01 3380 computed = coff_compute_checksum (abfd, &pelength);
05793179
NC
3381
3382 checksum = computed + pelength;
3383
3384 if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
b34976b6 3385 return FALSE;
05793179
NC
3386
3387 bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3388
b34976b6 3389 return TRUE;
05793179
NC
3390}
3391
3392#endif /* COFF_IMAGE_WITH_PE */
3393
b34976b6 3394static bfd_boolean
7920ce38 3395coff_write_object_contents (bfd * abfd)
252b5132
RH
3396{
3397 asection *current;
b34976b6
AM
3398 bfd_boolean hasrelocs = FALSE;
3399 bfd_boolean haslinno = FALSE;
3390ce30 3400#ifdef COFF_IMAGE_WITH_PE
b34976b6 3401 bfd_boolean hasdebug = FALSE;
3390ce30 3402#endif
252b5132
RH
3403 file_ptr scn_base;
3404 file_ptr reloc_base;
3405 file_ptr lineno_base;
3406 file_ptr sym_base;
3e4554a2 3407 unsigned long reloc_size = 0, reloc_count = 0;
252b5132 3408 unsigned long lnno_size = 0;
b34976b6 3409 bfd_boolean long_section_names;
252b5132
RH
3410 asection *text_sec = NULL;
3411 asection *data_sec = NULL;
3412 asection *bss_sec = NULL;
1b2cb8e2
CC
3413#ifdef RS6000COFF_C
3414 asection *tdata_sec = NULL;
3415 asection *tbss_sec = NULL;
3416#endif
252b5132
RH
3417 struct internal_filehdr internal_f;
3418 struct internal_aouthdr internal_a;
3419#ifdef COFF_LONG_SECTION_NAMES
3420 size_t string_size = STRING_SIZE_SIZE;
3421#endif
3422
3423 bfd_set_error (bfd_error_system_call);
3424
3425 /* Make a pass through the symbol table to count line number entries and
ed781d5d 3426 put them into the correct asections. */
6b3b007b 3427 lnno_size = coff_count_linenumbers (abfd) * bfd_coff_linesz (abfd);
252b5132 3428
82e51918 3429 if (! abfd->output_has_begun)
252b5132
RH
3430 {
3431 if (! coff_compute_section_file_positions (abfd))
b34976b6 3432 return FALSE;
252b5132
RH
3433 }
3434
3435 reloc_base = obj_relocbase (abfd);
3436
ed781d5d 3437 /* Work out the size of the reloc and linno areas. */
252b5132
RH
3438
3439 for (current = abfd->sections; current != NULL; current =
3440 current->next)
3e4554a2 3441 {
f717994f 3442#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
ed781d5d 3443 /* We store the actual reloc count in the first reloc's addr. */
f717994f 3444 if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3e4554a2
DD
3445 reloc_count ++;
3446#endif
3447 reloc_count += current->reloc_count;
3448 }
3449
3450 reloc_size = reloc_count * bfd_coff_relsz (abfd);
252b5132
RH
3451
3452 lineno_base = reloc_base + reloc_size;
3453 sym_base = lineno_base + lnno_size;
3454
ed781d5d 3455 /* Indicate in each section->line_filepos its actual file address. */
252b5132
RH
3456 for (current = abfd->sections; current != NULL; current =
3457 current->next)
3458 {
3459 if (current->lineno_count)
3460 {
3461 current->line_filepos = lineno_base;
3462 current->moving_line_filepos = lineno_base;
6b3b007b 3463 lineno_base += current->lineno_count * bfd_coff_linesz (abfd);
252b5132
RH
3464 }
3465 else
7920ce38
NC
3466 current->line_filepos = 0;
3467
252b5132
RH
3468 if (current->reloc_count)
3469 {
3470 current->rel_filepos = reloc_base;
6b3b007b 3471 reloc_base += current->reloc_count * bfd_coff_relsz (abfd);
f717994f 3472#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
ed781d5d 3473 /* Extra reloc to hold real count. */
f717994f 3474 if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3e4554a2
DD
3475 reloc_base += bfd_coff_relsz (abfd);
3476#endif
252b5132
RH
3477 }
3478 else
7920ce38 3479 current->rel_filepos = 0;
252b5132
RH
3480 }
3481
3482 /* Write section headers to the file. */
3483 internal_f.f_nscns = 0;
3484
3485 if ((abfd->flags & EXEC_P) != 0)
6b3b007b 3486 scn_base = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
252b5132
RH
3487 else
3488 {
6b3b007b 3489 scn_base = bfd_coff_filhsz (abfd);
252b5132 3490#ifdef RS6000COFF_C
dc810e39 3491#ifndef XCOFF64
252b5132 3492 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3493 scn_base += bfd_coff_aoutsz (abfd);
252b5132
RH
3494 else
3495 scn_base += SMALL_AOUTSZ;
dc810e39 3496#endif
252b5132
RH
3497#endif
3498 }
3499
3500 if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
b34976b6 3501 return FALSE;
252b5132 3502
b34976b6 3503 long_section_names = FALSE;
252b5132
RH
3504 for (current = abfd->sections;
3505 current != NULL;
3506 current = current->next)
3507 {
3508 struct internal_scnhdr section;
3390ce30 3509#ifdef COFF_IMAGE_WITH_PE
b34976b6 3510 bfd_boolean is_reloc_section = FALSE;
252b5132 3511
bdeb4032 3512 if (strcmp (current->name, DOT_RELOC) == 0)
252b5132 3513 {
b34976b6
AM
3514 is_reloc_section = TRUE;
3515 hasrelocs = TRUE;
252b5132
RH
3516 pe_data (abfd)->has_reloc_section = 1;
3517 }
3518#endif
3519
252b5132
RH
3520 internal_f.f_nscns++;
3521
3522 strncpy (section.s_name, current->name, SCNNMLEN);
3523
3524#ifdef COFF_LONG_SECTION_NAMES
3525 /* Handle long section names as in PE. This must be compatible
46f2f11d 3526 with the code in coff_write_symbols and _bfd_coff_final_link. */
88183869
DK
3527 if (bfd_coff_long_section_names (abfd))
3528 {
3529 size_t len;
252b5132 3530
88183869
DK
3531 len = strlen (current->name);
3532 if (len > SCNNMLEN)
3533 {
6b1cecf3
DK
3534 /* The s_name field is defined to be NUL-padded but need not be
3535 NUL-terminated. We use a temporary buffer so that we can still
3536 sprintf all eight chars without splatting a terminating NUL
3537 over the first byte of the following member (s_paddr). */
1b7e3d2f
NC
3538 /* PR 21096: The +20 is to stop a bogus warning from gcc7 about
3539 a possible buffer overflow. */
3540 char s_name_buf[SCNNMLEN + 1 + 20];
6b1cecf3
DK
3541
3542 /* An inherent limitation of the /nnnnnnn notation used to indicate
3543 the offset of the long name in the string table is that we
3544 cannot address entries beyone the ten million byte boundary. */
3545 if (string_size >= 10000000)
3546 {
3547 bfd_set_error (bfd_error_file_too_big);
4eca0228 3548 _bfd_error_handler
695344c0 3549 /* xgettext:c-format */
871b3ab2 3550 (_("%pB: section %pA: string table overflow at offset %ld"),
d42c267e 3551 abfd, current, (unsigned long) string_size);
6b1cecf3
DK
3552 return FALSE;
3553 }
3554
1b7e3d2f
NC
3555 /* We do not need to use snprintf here as we have already verfied
3556 that string_size is not too big, plus we have an overlarge
3557 buffer, just in case. */
3558 sprintf (s_name_buf, "/%lu", (unsigned long) string_size);
6b1cecf3
DK
3559 /* Then strncpy takes care of any padding for us. */
3560 strncpy (section.s_name, s_name_buf, SCNNMLEN);
88183869
DK
3561 string_size += len + 1;
3562 long_section_names = TRUE;
3563 }
3564 }
252b5132
RH
3565#endif
3566
3567#ifdef _LIB
3568 /* Always set s_vaddr of .lib to 0. This is right for SVR3.2
3569 Ian Taylor <ian@cygnus.com>. */
3570 if (strcmp (current->name, _LIB) == 0)
3571 section.s_vaddr = 0;
3572 else
3573#endif
3574 section.s_vaddr = current->vma;
3575 section.s_paddr = current->lma;
eea6121a 3576 section.s_size = current->size;
b9af77f5 3577#ifdef coff_get_section_load_page
e60b52c6 3578 section.s_page = coff_get_section_load_page (current);
44f74642
NC
3579#else
3580 section.s_page = 0;
b9af77f5 3581#endif
252b5132
RH
3582
3583#ifdef COFF_WITH_PE
3584 section.s_paddr = 0;
3585#endif
3586#ifdef COFF_IMAGE_WITH_PE
3587 /* Reminder: s_paddr holds the virtual size of the section. */
3588 if (coff_section_data (abfd, current) != NULL
3589 && pei_section_data (abfd, current) != NULL)
3590 section.s_paddr = pei_section_data (abfd, current)->virt_size;
3591 else
3592 section.s_paddr = 0;
3593#endif
3594
ed781d5d
NC
3595 /* If this section has no size or is unloadable then the scnptr
3596 will be 0 too. */
eea6121a
AM
3597 if (current->size == 0
3598 || (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
ed781d5d 3599 section.s_scnptr = 0;
252b5132 3600 else
ed781d5d
NC
3601 section.s_scnptr = current->filepos;
3602
252b5132
RH
3603 section.s_relptr = current->rel_filepos;
3604 section.s_lnnoptr = current->line_filepos;
3605 section.s_nreloc = current->reloc_count;
3606 section.s_nlnno = current->lineno_count;
79207490
ILT
3607#ifndef COFF_IMAGE_WITH_PE
3608 /* In PEI, relocs come in the .reloc section. */
252b5132 3609 if (current->reloc_count != 0)
b34976b6 3610 hasrelocs = TRUE;
79207490 3611#endif
252b5132 3612 if (current->lineno_count != 0)
b34976b6 3613 haslinno = TRUE;
3390ce30 3614#ifdef COFF_IMAGE_WITH_PE
4cfec37b
ILT
3615 if ((current->flags & SEC_DEBUGGING) != 0
3616 && ! is_reloc_section)
b34976b6 3617 hasdebug = TRUE;
3390ce30 3618#endif
252b5132 3619
60bcf0fa 3620#ifdef RS6000COFF_C
7f6d05e8 3621#ifndef XCOFF64
252b5132
RH
3622 /* Indicate the use of an XCOFF overflow section header. */
3623 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3624 {
3625 section.s_nreloc = 0xffff;
3626 section.s_nlnno = 0xffff;
3627 }
7f6d05e8 3628#endif
252b5132
RH
3629#endif
3630
3631 section.s_flags = sec_to_styp_flags (current->name, current->flags);
3632
3633 if (!strcmp (current->name, _TEXT))
ed781d5d 3634 text_sec = current;
252b5132 3635 else if (!strcmp (current->name, _DATA))
ed781d5d 3636 data_sec = current;
252b5132 3637 else if (!strcmp (current->name, _BSS))
ed781d5d 3638 bss_sec = current;
1b2cb8e2
CC
3639#ifdef RS6000COFF_C
3640 else if (!strcmp (current->name, _TDATA))
3641 tdata_sec = current;
3642 else if (!strcmp (current->name, _TBSS))
3643 tbss_sec = current;
3644#endif
3645
252b5132 3646
81635ce4
TW
3647#ifdef COFF_ENCODE_ALIGNMENT
3648 COFF_ENCODE_ALIGNMENT(section, current->alignment_power);
5be87c8f
JB
3649 if ((unsigned int)COFF_DECODE_ALIGNMENT(section.s_flags)
3650 != current->alignment_power)
3651 {
3652 bfd_boolean warn = coff_data (abfd)->link_info
3653 && !bfd_link_relocatable (coff_data (abfd)->link_info);
3654
3655 _bfd_error_handler
3656 /* xgettext:c-format */
871b3ab2 3657 (_("%pB:%s section %s: alignment 2**%u not representable"),
5be87c8f 3658 abfd, warn ? " warning:" : "", current->name,
07d6d2b8 3659 current->alignment_power);
5be87c8f
JB
3660 if (!warn)
3661 {
3662 bfd_set_error (bfd_error_nonrepresentable_section);
3663 return FALSE;
07d6d2b8 3664 }
5be87c8f 3665 }
252b5132
RH
3666#endif
3667
3668#ifdef COFF_IMAGE_WITH_PE
00692651
ILT
3669 /* Suppress output of the sections if they are null. ld
3670 includes the bss and data sections even if there is no size
3671 assigned to them. NT loader doesn't like it if these section
3672 headers are included if the sections themselves are not
3673 needed. See also coff_compute_section_file_positions. */
252b5132
RH
3674 if (section.s_size == 0)
3675 internal_f.f_nscns--;
3676 else
3677#endif
3678 {
3679 SCNHDR buff;
dc810e39
AM
3680 bfd_size_type amt = bfd_coff_scnhsz (abfd);
3681
f717994f 3682 if (bfd_coff_swap_scnhdr_out (abfd, &section, &buff) == 0
7920ce38 3683 || bfd_bwrite (& buff, amt, abfd) != amt)
b34976b6 3684 return FALSE;
252b5132
RH
3685 }
3686
3687#ifdef COFF_WITH_PE
3688 /* PE stores COMDAT section information in the symbol table. If
46f2f11d
AM
3689 this section is supposed to have some COMDAT info, track down
3690 the symbol in the symbol table and modify it. */
252b5132
RH
3691 if ((current->flags & SEC_LINK_ONCE) != 0)
3692 {
3693 unsigned int i, count;
3694 asymbol **psym;
3695 coff_symbol_type *csym = NULL;
3696 asymbol **psymsec;
3697
3698 psymsec = NULL;
3699 count = bfd_get_symcount (abfd);
3700 for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3701 {
3702 if ((*psym)->section != current)
3703 continue;
3704
3705 /* Remember the location of the first symbol in this
46f2f11d 3706 section. */
252b5132
RH
3707 if (psymsec == NULL)
3708 psymsec = psym;
3709
3710 /* See if this is the section symbol. */
3711 if (strcmp ((*psym)->name, current->name) == 0)
3712 {
f4943d82 3713 csym = coff_symbol_from (*psym);
252b5132
RH
3714 if (csym == NULL
3715 || csym->native == NULL
a5c71af8 3716 || ! csym->native->is_sym
252b5132
RH
3717 || csym->native->u.syment.n_numaux < 1
3718 || csym->native->u.syment.n_sclass != C_STAT
3719 || csym->native->u.syment.n_type != T_NULL)
3720 continue;
3721
3722 /* Here *PSYM is the section symbol for CURRENT. */
3723
3724 break;
3725 }
3726 }
3727
3728 /* Did we find it?
3729 Note that we might not if we're converting the file from
3730 some other object file format. */
3731 if (i < count)
3732 {
3733 combined_entry_type *aux;
3734
3735 /* We don't touch the x_checksum field. The
3736 x_associated field is not currently supported. */
3737
3738 aux = csym->native + 1;
a5c71af8 3739 BFD_ASSERT (! aux->is_sym);
252b5132
RH
3740 switch (current->flags & SEC_LINK_DUPLICATES)
3741 {
3742 case SEC_LINK_DUPLICATES_DISCARD:
3743 aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
3744 break;
3745
3746 case SEC_LINK_DUPLICATES_ONE_ONLY:
3747 aux->u.auxent.x_scn.x_comdat =
3748 IMAGE_COMDAT_SELECT_NODUPLICATES;
3749 break;
3750
3751 case SEC_LINK_DUPLICATES_SAME_SIZE:
3752 aux->u.auxent.x_scn.x_comdat =
3753 IMAGE_COMDAT_SELECT_SAME_SIZE;
3754 break;
3755
3756 case SEC_LINK_DUPLICATES_SAME_CONTENTS:
3757 aux->u.auxent.x_scn.x_comdat =
3758 IMAGE_COMDAT_SELECT_EXACT_MATCH;
3759 break;
3760 }
3761
3762 /* The COMDAT symbol must be the first symbol from this
46f2f11d
AM
3763 section in the symbol table. In order to make this
3764 work, we move the COMDAT symbol before the first
3765 symbol we found in the search above. It's OK to
3766 rearrange the symbol table at this point, because
3767 coff_renumber_symbols is going to rearrange it
3768 further and fix up all the aux entries. */
252b5132
RH
3769 if (psym != psymsec)
3770 {
3771 asymbol *hold;
3772 asymbol **pcopy;
3773
3774 hold = *psym;
3775 for (pcopy = psym; pcopy > psymsec; pcopy--)
3776 pcopy[0] = pcopy[-1];
3777 *psymsec = hold;
3778 }
3779 }
3780 }
3781#endif /* COFF_WITH_PE */
3782 }
3783
3784#ifdef RS6000COFF_C
dc810e39 3785#ifndef XCOFF64
252b5132
RH
3786 /* XCOFF handles overflows in the reloc and line number count fields
3787 by creating a new section header to hold the correct values. */
3788 for (current = abfd->sections; current != NULL; current = current->next)
3789 {
3790 if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3791 {
3792 struct internal_scnhdr scnhdr;
3793 SCNHDR buff;
dc810e39 3794 bfd_size_type amt;
252b5132
RH
3795
3796 internal_f.f_nscns++;
2d63fb6c 3797 memcpy (scnhdr.s_name, ".ovrflo", 8);
252b5132
RH
3798 scnhdr.s_paddr = current->reloc_count;
3799 scnhdr.s_vaddr = current->lineno_count;
3800 scnhdr.s_size = 0;
3801 scnhdr.s_scnptr = 0;
3802 scnhdr.s_relptr = current->rel_filepos;
3803 scnhdr.s_lnnoptr = current->line_filepos;
3804 scnhdr.s_nreloc = current->target_index;
3805 scnhdr.s_nlnno = current->target_index;
3806 scnhdr.s_flags = STYP_OVRFLO;
dc810e39 3807 amt = bfd_coff_scnhsz (abfd);
f717994f 3808 if (bfd_coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
7920ce38 3809 || bfd_bwrite (& buff, amt, abfd) != amt)
b34976b6 3810 return FALSE;
252b5132
RH
3811 }
3812 }
beb1bf64 3813#endif
252b5132
RH
3814#endif
3815
f717994f
JMG
3816#if defined (COFF_GO32_EXE) || defined (COFF_GO32)
3817 /* Pad section headers. */
3818 if ((abfd->flags & EXEC_P) && abfd->sections != NULL)
3819 {
3820 file_ptr cur_ptr = scn_base
3821 + abfd->section_count * bfd_coff_scnhsz (abfd);
3822 long fill_size = (abfd->sections->filepos - cur_ptr);
3823 bfd_byte *b = bfd_zmalloc (fill_size);
3824 if (b)
3825 {
3826 bfd_bwrite ((PTR)b, fill_size, abfd);
3827 free (b);
3828 }
3829 }
3830#endif
3831
e60b52c6 3832 /* OK, now set up the filehdr... */
252b5132
RH
3833
3834 /* Don't include the internal abs section in the section count */
3835
ed781d5d 3836 /* We will NOT put a fucking timestamp in the header here. Every time you
252b5132
RH
3837 put it back, I will come in and take it out again. I'm sorry. This
3838 field does not belong here. We fill it with a 0 so it compares the
ed781d5d 3839 same but is not a reasonable time. -- gnu@cygnus.com */
252b5132 3840 internal_f.f_timdat = 0;
252b5132
RH
3841 internal_f.f_flags = 0;
3842
3843 if (abfd->flags & EXEC_P)
6b3b007b 3844 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
252b5132
RH
3845 else
3846 {
3847 internal_f.f_opthdr = 0;
3848#ifdef RS6000COFF_C
dc810e39 3849#ifndef XCOFF64
252b5132 3850 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 3851 internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
252b5132
RH
3852 else
3853 internal_f.f_opthdr = SMALL_AOUTSZ;
dc810e39 3854#endif
252b5132
RH
3855#endif
3856 }
3857
3858 if (!hasrelocs)
3859 internal_f.f_flags |= F_RELFLG;
3860 if (!haslinno)
3861 internal_f.f_flags |= F_LNNO;
3862 if (abfd->flags & EXEC_P)
3863 internal_f.f_flags |= F_EXEC;
4cfec37b
ILT
3864#ifdef COFF_IMAGE_WITH_PE
3865 if (! hasdebug)
3866 internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
d70270c5
BF
3867 if (pe_data (abfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE)
3868 internal_f.f_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
4cfec37b 3869#endif
252b5132 3870
99ad8390 3871#ifndef COFF_WITH_pex64
bcb9b88d
NC
3872#ifdef COFF_WITH_PE
3873 internal_f.f_flags |= IMAGE_FILE_32BIT_MACHINE;
3874#else
252b5132
RH
3875 if (bfd_little_endian (abfd))
3876 internal_f.f_flags |= F_AR32WR;
3877 else
3878 internal_f.f_flags |= F_AR32W;
8a1ad8e7 3879#endif
99ad8390 3880#endif
252b5132 3881
81635ce4 3882#ifdef TI_TARGET_ID
ed781d5d
NC
3883 /* Target id is used in TI COFF v1 and later; COFF0 won't use this field,
3884 but it doesn't hurt to set it internally. */
81635ce4
TW
3885 internal_f.f_target_id = TI_TARGET_ID;
3886#endif
252b5132 3887
ed781d5d
NC
3888 /* FIXME, should do something about the other byte orders and
3889 architectures. */
252b5132
RH
3890
3891#ifdef RS6000COFF_C
3892 if ((abfd->flags & DYNAMIC) != 0)
3893 internal_f.f_flags |= F_SHROBJ;
3894 if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
3895 internal_f.f_flags |= F_DYNLOAD;
3896#endif
3897
e2b4fc91
TS
3898 memset (&internal_a, 0, sizeof internal_a);
3899
ed781d5d 3900 /* Set up architecture-dependent stuff. */
252b5132
RH
3901 {
3902 unsigned int magic = 0;
3903 unsigned short flags = 0;
ed781d5d 3904
252b5132
RH
3905 coff_set_flags (abfd, &magic, &flags);
3906 internal_f.f_magic = magic;
3907 internal_f.f_flags |= flags;
e60b52c6 3908 /* ...and the "opt"hdr... */
252b5132 3909
81635ce4
TW
3910#ifdef TICOFF_AOUT_MAGIC
3911 internal_a.magic = TICOFF_AOUT_MAGIC;
3912#define __A_MAGIC_SET__
3913#endif
252b5132 3914
252b5132
RH
3915#if defined(ARM)
3916#define __A_MAGIC_SET__
3917 internal_a.magic = ZMAGIC;
e60b52c6 3918#endif
252b5132 3919
252b5132
RH
3920#if defined MCORE_PE
3921#define __A_MAGIC_SET__
3922 internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
e60b52c6 3923#endif
252b5132
RH
3924
3925#if defined(I386)
3926#define __A_MAGIC_SET__
99ad8390 3927#if defined LYNXOS
252b5132 3928 internal_a.magic = LYNXCOFFMAGIC;
99ad8390
NC
3929#elif defined AMD64
3930 internal_a.magic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;
3931#else
252b5132 3932 internal_a.magic = ZMAGIC;
99ad8390 3933#endif
252b5132
RH
3934#endif /* I386 */
3935
fac41780
JW
3936#if defined(IA64)
3937#define __A_MAGIC_SET__
7a2ec0a6 3938 internal_a.magic = PE32PMAGIC;
fac41780
JW
3939#endif /* IA64 */
3940
252b5132
RH
3941#if defined(SPARC)
3942#define __A_MAGIC_SET__
3943#if defined(LYNXOS)
3944 internal_a.magic = LYNXCOFFMAGIC;
3945#endif /* LYNXOS */
3946#endif /* SPARC */
3947
3948#ifdef RS6000COFF_C
3949#define __A_MAGIC_SET__
3950 internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
3951 (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
3952 RS6K_AOUTHDR_OMAGIC;
3953#endif
3954
17505c5c
NC
3955#if defined(SH) && defined(COFF_WITH_PE)
3956#define __A_MAGIC_SET__
3957 internal_a.magic = SH_PE_MAGIC;
3958#endif
3959
3960#if defined(MIPS) && defined(COFF_WITH_PE)
3961#define __A_MAGIC_SET__
3962 internal_a.magic = MIPS_PE_MAGIC;
3963#endif
3964
252b5132
RH
3965#ifndef __A_MAGIC_SET__
3966#include "Your aouthdr magic number is not being set!"
3967#else
3968#undef __A_MAGIC_SET__
3969#endif
3970 }
3971
3972 /* FIXME: Does anybody ever set this to another value? */
3973 internal_a.vstamp = 0;
3974
ed781d5d 3975 /* Now should write relocs, strings, syms. */
252b5132
RH
3976 obj_sym_filepos (abfd) = sym_base;
3977
3978 if (bfd_get_symcount (abfd) != 0)
3979 {
3980 int firstundef;
0e71e495 3981
252b5132 3982 if (!coff_renumber_symbols (abfd, &firstundef))
b34976b6 3983 return FALSE;
252b5132
RH
3984 coff_mangle_symbols (abfd);
3985 if (! coff_write_symbols (abfd))
b34976b6 3986 return FALSE;
252b5132 3987 if (! coff_write_linenumbers (abfd))
b34976b6 3988 return FALSE;
252b5132 3989 if (! coff_write_relocs (abfd, firstundef))
b34976b6 3990 return FALSE;
252b5132
RH
3991 }
3992#ifdef COFF_LONG_SECTION_NAMES
d71f672e 3993 else if (long_section_names && ! obj_coff_strings_written (abfd))
252b5132
RH
3994 {
3995 /* If we have long section names we have to write out the string
46f2f11d 3996 table even if there are no symbols. */
252b5132 3997 if (! coff_write_symbols (abfd))
b34976b6 3998 return FALSE;
252b5132
RH
3999 }
4000#endif
252b5132
RH
4001 /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
4002 backend linker, and obj_raw_syment_count is not valid until after
4003 coff_write_symbols is called. */
4004 if (obj_raw_syment_count (abfd) != 0)
4005 {
4006 internal_f.f_symptr = sym_base;
4007#ifdef RS6000COFF_C
4008 /* AIX appears to require that F_RELFLG not be set if there are
46f2f11d 4009 local symbols but no relocations. */
252b5132
RH
4010 internal_f.f_flags &=~ F_RELFLG;
4011#endif
4012 }
4013 else
4014 {
4015 if (long_section_names)
4016 internal_f.f_symptr = sym_base;
4017 else
4018 internal_f.f_symptr = 0;
4019 internal_f.f_flags |= F_LSYMS;
4020 }
4021
4022 if (text_sec)
4023 {
eea6121a 4024 internal_a.tsize = text_sec->size;
252b5132
RH
4025 internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
4026 }
4027 if (data_sec)
4028 {
eea6121a 4029 internal_a.dsize = data_sec->size;
252b5132
RH
4030 internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
4031 }
4032 if (bss_sec)
4033 {
eea6121a 4034 internal_a.bsize = bss_sec->size;
252b5132
RH
4035 if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
4036 internal_a.data_start = bss_sec->vma;
4037 }
4038
4039 internal_a.entry = bfd_get_start_address (abfd);
4040 internal_f.f_nsyms = obj_raw_syment_count (abfd);
4041
4042#ifdef RS6000COFF_C
4043 if (xcoff_data (abfd)->full_aouthdr)
4044 {
4045 bfd_vma toc;
4046 asection *loader_sec;
4047
4048 internal_a.vstamp = 1;
4049
4050 internal_a.o_snentry = xcoff_data (abfd)->snentry;
4051 if (internal_a.o_snentry == 0)
4052 internal_a.entry = (bfd_vma) -1;
4053
4054 if (text_sec != NULL)
4055 {
4056 internal_a.o_sntext = text_sec->target_index;
fd361982 4057 internal_a.o_algntext = bfd_section_alignment (text_sec);
252b5132
RH
4058 }
4059 else
4060 {
4061 internal_a.o_sntext = 0;
4062 internal_a.o_algntext = 0;
4063 }
4064 if (data_sec != NULL)
4065 {
4066 internal_a.o_sndata = data_sec->target_index;
fd361982 4067 internal_a.o_algndata = bfd_section_alignment (data_sec);
252b5132
RH
4068 }
4069 else
4070 {
4071 internal_a.o_sndata = 0;
4072 internal_a.o_algndata = 0;
4073 }
4074 loader_sec = bfd_get_section_by_name (abfd, ".loader");
4075 if (loader_sec != NULL)
4076 internal_a.o_snloader = loader_sec->target_index;
4077 else
4078 internal_a.o_snloader = 0;
4079 if (bss_sec != NULL)
4080 internal_a.o_snbss = bss_sec->target_index;
4081 else
4082 internal_a.o_snbss = 0;
4083
1b2cb8e2
CC
4084 if (tdata_sec != NULL)
4085 {
4086 internal_a.o_sntdata = tdata_sec->target_index;
4087 /* TODO: o_flags should be set to RS6K_AOUTHDR_TLS_LE
4088 if there is at least one R_TLS_LE relocations. */
4089 internal_a.o_flags = 0;
4090#ifdef XCOFF64
4091 internal_a.o_x64flags = 0;
4092#endif
4093 }
4094 else
4095 {
4096 internal_a.o_sntdata = 0;
4097 internal_a.o_flags = 0;
4098#ifdef XCOFF64
4099 internal_a.o_x64flags = 0;
4100#endif
4101 }
4102 if (tbss_sec != NULL)
4103 internal_a.o_sntbss = tbss_sec->target_index;
4104 else
4105 internal_a.o_sntbss = 0;
4106
252b5132
RH
4107 toc = xcoff_data (abfd)->toc;
4108 internal_a.o_toc = toc;
4109 internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
4110
4111 internal_a.o_modtype = xcoff_data (abfd)->modtype;
4112 if (xcoff_data (abfd)->cputype != -1)
4113 internal_a.o_cputype = xcoff_data (abfd)->cputype;
4114 else
4115 {
4116 switch (bfd_get_arch (abfd))
4117 {
4118 case bfd_arch_rs6000:
4119 internal_a.o_cputype = 4;
4120 break;
4121 case bfd_arch_powerpc:
250d94fd 4122 if (bfd_get_mach (abfd) == bfd_mach_ppc)
252b5132 4123 internal_a.o_cputype = 3;
6d4d9328
CC
4124 else if (bfd_get_mach (abfd) == bfd_mach_ppc_620)
4125 internal_a.o_cputype = 2;
252b5132
RH
4126 else
4127 internal_a.o_cputype = 1;
4128 break;
4129 default:
4130 abort ();
4131 }
4132 }
4133 internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
4134 internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
4135 }
4136#endif
4137
61e2488c
JT
4138#ifdef COFF_WITH_PE
4139 {
4140 /* After object contents are finalized so we can compute a reasonable hash,
4141 but before header is written so we can update it to point to debug directory. */
4142 struct pe_tdata *pe = pe_data (abfd);
4143
4144 if (pe->build_id.after_write_object_contents != NULL)
4145 (*pe->build_id.after_write_object_contents) (abfd);
4146 }
4147#endif
4148
4149 /* Now write header. */
252b5132 4150 if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
b34976b6 4151 return FALSE;
e60b52c6 4152
252b5132 4153 {
b5f303f0 4154 char * buff;
dc810e39 4155 bfd_size_type amount = bfd_coff_filhsz (abfd);
e60b52c6 4156
a50b1753 4157 buff = (char *) bfd_malloc (amount);
e60b52c6 4158 if (buff == NULL)
b34976b6 4159 return FALSE;
e60b52c6 4160
7920ce38
NC
4161 bfd_coff_swap_filehdr_out (abfd, & internal_f, buff);
4162 amount = bfd_bwrite (buff, amount, abfd);
e60b52c6 4163
2fca4467 4164 free (buff);
e60b52c6 4165
b5f303f0 4166 if (amount != bfd_coff_filhsz (abfd))
b34976b6 4167 return FALSE;
252b5132 4168 }
e60b52c6 4169
252b5132
RH
4170 if (abfd->flags & EXEC_P)
4171 {
e60b52c6 4172 /* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
ed781d5d 4173 include/coff/pe.h sets AOUTSZ == sizeof (PEAOUTHDR)). */
b5f303f0 4174 char * buff;
dc810e39 4175 bfd_size_type amount = bfd_coff_aoutsz (abfd);
b5f303f0 4176
a50b1753 4177 buff = (char *) bfd_malloc (amount);
e60b52c6 4178 if (buff == NULL)
b34976b6 4179 return FALSE;
e60b52c6 4180
7920ce38
NC
4181 coff_swap_aouthdr_out (abfd, & internal_a, buff);
4182 amount = bfd_bwrite (buff, amount, abfd);
e60b52c6 4183
2fca4467 4184 free (buff);
e60b52c6 4185
b5f303f0 4186 if (amount != bfd_coff_aoutsz (abfd))
b34976b6 4187 return FALSE;
05793179
NC
4188
4189#ifdef COFF_IMAGE_WITH_PE
4190 if (! coff_apply_checksum (abfd))
b34976b6 4191 return FALSE;
05793179 4192#endif
252b5132
RH
4193 }
4194#ifdef RS6000COFF_C
6d4d9328 4195#ifndef XCOFF64
252b5132
RH
4196 else
4197 {
4198 AOUTHDR buff;
4199 size_t size;
4200
6d4d9328 4201 /* XCOFF32 seems to always write at least a small a.out header. */
7920ce38 4202 coff_swap_aouthdr_out (abfd, & internal_a, & buff);
252b5132 4203 if (xcoff_data (abfd)->full_aouthdr)
6b3b007b 4204 size = bfd_coff_aoutsz (abfd);
252b5132
RH
4205 else
4206 size = SMALL_AOUTSZ;
7920ce38 4207 if (bfd_bwrite (& buff, (bfd_size_type) size, abfd) != size)
b34976b6 4208 return FALSE;
252b5132 4209 }
6d4d9328 4210#endif
252b5132
RH
4211#endif
4212
b34976b6 4213 return TRUE;
252b5132
RH
4214}
4215
b34976b6 4216static bfd_boolean
7920ce38
NC
4217coff_set_section_contents (bfd * abfd,
4218 sec_ptr section,
4219 const void * location,
4220 file_ptr offset,
4221 bfd_size_type count)
252b5132 4222{
ed781d5d 4223 if (! abfd->output_has_begun) /* Set by bfd.c handler. */
252b5132
RH
4224 {
4225 if (! coff_compute_section_file_positions (abfd))
b34976b6 4226 return FALSE;
252b5132
RH
4227 }
4228
4229#if defined(_LIB) && !defined(TARG_AUX)
252b5132
RH
4230 /* The physical address field of a .lib section is used to hold the
4231 number of shared libraries in the section. This code counts the
4232 number of sections being written, and increments the lma field
4233 with the number.
4234
4235 I have found no documentation on the contents of this section.
4236 Experimentation indicates that the section contains zero or more
4237 records, each of which has the following structure:
4238
4239 - a (four byte) word holding the length of this record, in words,
4240 - a word that always seems to be set to "2",
4241 - the path to a shared library, null-terminated and then padded
07d6d2b8 4242 to a whole word boundary.
252b5132
RH
4243
4244 bfd_assert calls have been added to alert if an attempt is made
4245 to write a section which doesn't follow these assumptions. The
4246 code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
4247 <robertl@arnet.com> (Thanks!).
e60b52c6 4248
ed781d5d 4249 Gvran Uddeborg <gvran@uddeborg.pp.se>. */
252b5132
RH
4250 if (strcmp (section->name, _LIB) == 0)
4251 {
4252 bfd_byte *rec, *recend;
4253
4254 rec = (bfd_byte *) location;
4255 recend = rec + count;
4256 while (rec < recend)
4257 {
4258 ++section->lma;
4259 rec += bfd_get_32 (abfd, rec) * 4;
4260 }
4261
4262 BFD_ASSERT (rec == recend);
4263 }
252b5132
RH
4264#endif
4265
4266 /* Don't write out bss sections - one way to do this is to
e60b52c6 4267 see if the filepos has not been set. */
252b5132 4268 if (section->filepos == 0)
b34976b6 4269 return TRUE;
252b5132 4270
dc810e39 4271 if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0)
b34976b6 4272 return FALSE;
252b5132 4273
dc810e39 4274 if (count == 0)
b34976b6 4275 return TRUE;
dc810e39
AM
4276
4277 return bfd_bwrite (location, count, abfd) == count;
252b5132 4278}
252b5132 4279
7920ce38 4280static void *
7a6e0d89
AM
4281buy_and_read (bfd *abfd, file_ptr where,
4282 bfd_size_type nmemb, bfd_size_type size)
252b5132 4283{
1f4361a7 4284 size_t amt;
7920ce38 4285
1f4361a7
AM
4286 if (_bfd_mul_overflow (nmemb, size, &amt))
4287 {
4288 bfd_set_error (bfd_error_file_too_big);
4289 return NULL;
4290 }
2bb3687b 4291 if (bfd_seek (abfd, where, SEEK_SET) != 0)
201159ec 4292 return NULL;
2bb3687b 4293 return _bfd_alloc_and_read (abfd, amt, amt);
7920ce38 4294}
252b5132
RH
4295
4296/*
4297SUBSUBSECTION
4298 Reading linenumbers
4299
4300 Creating the linenumber table is done by reading in the entire
4301 coff linenumber table, and creating another table for internal use.
4302
4303 A coff linenumber table is structured so that each function
4304 is marked as having a line number of 0. Each line within the
4305 function is an offset from the first line in the function. The
4306 base of the line number information for the table is stored in
4307 the symbol associated with the function.
4308
00692651
ILT
4309 Note: The PE format uses line number 0 for a flag indicating a
4310 new source file.
4311
252b5132
RH
4312 The information is copied from the external to the internal
4313 table, and each symbol which marks a function is marked by
4314 pointing its...
4315
4316 How does this work ?
252b5132
RH
4317*/
4318
e708816d
NC
4319static int
4320coff_sort_func_alent (const void * arg1, const void * arg2)
4321{
4322 const alent *al1 = *(const alent **) arg1;
4323 const alent *al2 = *(const alent **) arg2;
4324 const coff_symbol_type *s1 = (const coff_symbol_type *) (al1->u.sym);
4325 const coff_symbol_type *s2 = (const coff_symbol_type *) (al2->u.sym);
4326
20ad5e28
NC
4327 if (s1 == NULL || s2 == NULL)
4328 return 0;
e708816d
NC
4329 if (s1->symbol.value < s2->symbol.value)
4330 return -1;
4331 else if (s1->symbol.value > s2->symbol.value)
4332 return 1;
4333
4334 return 0;
4335}
4336
b34976b6 4337static bfd_boolean
7920ce38 4338coff_slurp_line_table (bfd *abfd, asection *asect)
252b5132
RH
4339{
4340 LINENO *native_lineno;
4341 alent *lineno_cache;
e708816d
NC
4342 unsigned int counter;
4343 alent *cache_ptr;
4344 bfd_vma prev_offset = 0;
f41e4712 4345 bfd_boolean ordered = TRUE;
e708816d
NC
4346 unsigned int nbr_func;
4347 LINENO *src;
6bb3e679 4348 bfd_boolean have_func;
86eafac0 4349 bfd_boolean ret = TRUE;
1f4361a7 4350 size_t amt;
252b5132 4351
5c4ce239
AM
4352 if (asect->lineno_count == 0)
4353 return TRUE;
4354
7920ce38 4355 BFD_ASSERT (asect->lineno == NULL);
252b5132 4356
a67d66eb
NC
4357 if (asect->lineno_count > asect->size)
4358 {
4359 _bfd_error_handler
871b3ab2 4360 (_("%pB: warning: line number count (%#lx) exceeds section size (%#lx)"),
a67d66eb
NC
4361 abfd, (unsigned long) asect->lineno_count, (unsigned long) asect->size);
4362 return FALSE;
4363 }
4364
1f4361a7
AM
4365 if (_bfd_mul_overflow (asect->lineno_count + 1, sizeof (alent), &amt))
4366 {
4367 bfd_set_error (bfd_error_file_too_big);
4368 return FALSE;
4369 }
4370 lineno_cache = (alent *) bfd_alloc (abfd, amt);
46f2f11d
AM
4371 if (lineno_cache == NULL)
4372 return FALSE;
4373
7a6e0d89
AM
4374 native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos,
4375 asect->lineno_count,
4376 bfd_coff_linesz (abfd));
14abcef9
NC
4377 if (native_lineno == NULL)
4378 {
4eca0228 4379 _bfd_error_handler
871b3ab2 4380 (_("%pB: warning: line number table read failed"), abfd);
46f2f11d 4381 bfd_release (abfd, lineno_cache);
14abcef9
NC
4382 return FALSE;
4383 }
e708816d 4384
e708816d 4385 cache_ptr = lineno_cache;
46f2f11d 4386 asect->lineno = lineno_cache;
e708816d
NC
4387 src = native_lineno;
4388 nbr_func = 0;
6bb3e679 4389 have_func = FALSE;
e708816d 4390
fcfa6240 4391 for (counter = 0; counter < asect->lineno_count; counter++, src++)
252b5132 4392 {
e708816d 4393 struct internal_lineno dst;
252b5132 4394
e708816d
NC
4395 bfd_coff_swap_lineno_in (abfd, src, &dst);
4396 cache_ptr->line_number = dst.l_lnno;
fcfa6240
AM
4397 /* Appease memory checkers that get all excited about
4398 uninitialised memory when copying alents if u.offset is
4399 larger than u.sym. (64-bit BFD on 32-bit host.) */
4400 memset (&cache_ptr->u, 0, sizeof (cache_ptr->u));
e708816d
NC
4401
4402 if (cache_ptr->line_number == 0)
252b5132 4403 {
a5c71af8 4404 combined_entry_type * ent;
d42c267e 4405 unsigned long symndx;
e708816d
NC
4406 coff_symbol_type *sym;
4407
6bb3e679 4408 have_func = FALSE;
e708816d 4409 symndx = dst.l_addr.l_symndx;
fcfa6240 4410 if (symndx >= obj_raw_syment_count (abfd))
e708816d 4411 {
4eca0228 4412 _bfd_error_handler
695344c0 4413 /* xgettext:c-format */
871b3ab2 4414 (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
d42c267e 4415 abfd, symndx, counter);
f41e4712 4416 cache_ptr->line_number = -1;
86eafac0 4417 ret = FALSE;
5a3f568b 4418 continue;
e708816d 4419 }
ed781d5d 4420
a5c71af8 4421 ent = obj_raw_syments (abfd) + symndx;
e708816d
NC
4422 /* FIXME: We should not be casting between ints and
4423 pointers like this. */
a5c71af8
NC
4424 if (! ent->is_sym)
4425 {
4eca0228 4426 _bfd_error_handler
695344c0 4427 /* xgettext:c-format */
871b3ab2 4428 (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
d42c267e 4429 abfd, symndx, counter);
a5c71af8 4430 cache_ptr->line_number = -1;
86eafac0 4431 ret = FALSE;
a5c71af8
NC
4432 continue;
4433 }
4434 sym = (coff_symbol_type *) (ent->u.syment._n._n_n._n_zeroes);
a6f921c8
NC
4435
4436 /* PR 17512 file: 078-10659-0.004 */
4437 if (sym < obj_symbols (abfd)
f41e4712 4438 || sym >= obj_symbols (abfd) + bfd_get_symcount (abfd))
fcfa6240 4439 {
4eca0228 4440 _bfd_error_handler
695344c0 4441 /* xgettext:c-format */
871b3ab2 4442 (_("%pB: warning: illegal symbol in line number entry %d"),
fcfa6240 4443 abfd, counter);
f41e4712 4444 cache_ptr->line_number = -1;
86eafac0 4445 ret = FALSE;
20ad5e28 4446 continue;
fcfa6240 4447 }
20ad5e28 4448
6bb3e679 4449 have_func = TRUE;
fcfa6240
AM
4450 nbr_func++;
4451 cache_ptr->u.sym = (asymbol *) sym;
5a3f568b 4452 if (sym->lineno != NULL)
4eca0228 4453 _bfd_error_handler
695344c0 4454 /* xgettext:c-format */
871b3ab2 4455 (_("%pB: warning: duplicate line number information for `%s'"),
e708816d
NC
4456 abfd, bfd_asymbol_name (&sym->symbol));
4457
4458 sym->lineno = cache_ptr;
4459 if (sym->symbol.value < prev_offset)
f41e4712 4460 ordered = FALSE;
e708816d
NC
4461 prev_offset = sym->symbol.value;
4462 }
6bb3e679
AM
4463 else if (!have_func)
4464 /* Drop line information that has no associated function.
4465 PR 17521: file: 078-10659-0.004. */
4466 continue;
e708816d 4467 else
fd361982 4468 cache_ptr->u.offset = dst.l_addr.l_paddr - bfd_section_vma (asect);
e708816d 4469 cache_ptr++;
e708816d 4470 }
a6f921c8 4471
fcfa6240
AM
4472 asect->lineno_count = cache_ptr - lineno_cache;
4473 memset (cache_ptr, 0, sizeof (*cache_ptr));
46f2f11d 4474 bfd_release (abfd, native_lineno);
e708816d
NC
4475
4476 /* On some systems (eg AIX5.3) the lineno table may not be sorted. */
4477 if (!ordered)
4478 {
4479 /* Sort the table. */
4480 alent **func_table;
4481 alent *n_lineno_cache;
4482
4483 /* Create a table of functions. */
1f4361a7
AM
4484 if (_bfd_mul_overflow (nbr_func, sizeof (alent *), &amt))
4485 {
4486 bfd_set_error (bfd_error_file_too_big);
4487 ret = FALSE;
4488 }
4489 else if ((func_table = (alent **) bfd_alloc (abfd, amt)) != NULL)
e708816d
NC
4490 {
4491 alent **p = func_table;
4492 unsigned int i;
4493
0ac23374 4494 for (i = 0; i < asect->lineno_count; i++)
e708816d
NC
4495 if (lineno_cache[i].line_number == 0)
4496 *p++ = &lineno_cache[i];
252b5132 4497
57494d81 4498 BFD_ASSERT ((unsigned int) (p - func_table) == nbr_func);
1b786873 4499
e708816d
NC
4500 /* Sort by functions. */
4501 qsort (func_table, nbr_func, sizeof (alent *), coff_sort_func_alent);
4502
4503 /* Create the new sorted table. */
1f4361a7
AM
4504 if (_bfd_mul_overflow (asect->lineno_count, sizeof (alent), &amt))
4505 {
4506 bfd_set_error (bfd_error_file_too_big);
4507 ret = FALSE;
4508 }
4509 else if ((n_lineno_cache = (alent *) bfd_alloc (abfd, amt)) != NULL)
252b5132 4510 {
e708816d
NC
4511 alent *n_cache_ptr = n_lineno_cache;
4512
4513 for (i = 0; i < nbr_func; i++)
252b5132 4514 {
e708816d
NC
4515 coff_symbol_type *sym;
4516 alent *old_ptr = func_table[i];
4517
fcfa6240
AM
4518 /* Update the function entry. */
4519 sym = (coff_symbol_type *) old_ptr->u.sym;
4520 /* PR binutils/17512: Point the lineno to where
4521 this entry will be after the memcpy below. */
4522 sym->lineno = lineno_cache + (n_cache_ptr - n_lineno_cache);
fcfa6240
AM
4523 /* Copy the function and line number entries. */
4524 do
e708816d 4525 *n_cache_ptr++ = *old_ptr++;
fcfa6240 4526 while (old_ptr->line_number != 0);
252b5132 4527 }
f41e4712 4528
7a6e0d89
AM
4529 memcpy (lineno_cache, n_lineno_cache,
4530 asect->lineno_count * sizeof (alent));
252b5132 4531 }
86eafac0
NC
4532 else
4533 ret = FALSE;
fcfa6240 4534 bfd_release (abfd, func_table);
252b5132 4535 }
86eafac0
NC
4536 else
4537 ret = FALSE;
252b5132 4538 }
e708816d 4539
86eafac0 4540 return ret;
252b5132
RH
4541}
4542
00692651
ILT
4543/* Slurp in the symbol table, converting it to generic form. Note
4544 that if coff_relocate_section is defined, the linker will read
4545 symbols via coff_link_add_symbols, rather than via this routine. */
4546
b34976b6 4547static bfd_boolean
7920ce38 4548coff_slurp_symbol_table (bfd * abfd)
252b5132
RH
4549{
4550 combined_entry_type *native_symbols;
4551 coff_symbol_type *cached_area;
4552 unsigned int *table_ptr;
252b5132 4553 unsigned int number_of_symbols = 0;
86eafac0 4554 bfd_boolean ret = TRUE;
1f4361a7 4555 size_t amt;
252b5132
RH
4556
4557 if (obj_symbols (abfd))
b34976b6 4558 return TRUE;
252b5132 4559
ed781d5d 4560 /* Read in the symbol table. */
252b5132 4561 if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
ed781d5d 4562 return FALSE;
252b5132 4563
ed781d5d 4564 /* Allocate enough room for all the symbols in cached form. */
1f4361a7
AM
4565 if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4566 sizeof (*cached_area), &amt))
4567 {
4568 bfd_set_error (bfd_error_file_too_big);
4569 return FALSE;
4570 }
4571 cached_area = (coff_symbol_type *) bfd_alloc (abfd, amt);
252b5132 4572 if (cached_area == NULL)
b34976b6 4573 return FALSE;
dc810e39 4574
1f4361a7
AM
4575 if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4576 sizeof (*table_ptr), &amt))
4577 {
4578 bfd_set_error (bfd_error_file_too_big);
4579 return FALSE;
4580 }
4581 table_ptr = (unsigned int *) bfd_zalloc (abfd, amt);
252b5132 4582 if (table_ptr == NULL)
b34976b6 4583 return FALSE;
252b5132
RH
4584 else
4585 {
4586 coff_symbol_type *dst = cached_area;
4587 unsigned int last_native_index = obj_raw_syment_count (abfd);
4588 unsigned int this_index = 0;
ed781d5d 4589
252b5132
RH
4590 while (this_index < last_native_index)
4591 {
4592 combined_entry_type *src = native_symbols + this_index;
4593 table_ptr[this_index] = number_of_symbols;
252b5132 4594
36e9d67b 4595 dst->symbol.the_bfd = abfd;
a5c71af8 4596 BFD_ASSERT (src->is_sym);
252b5132
RH
4597 dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
4598 /* We use the native name field to point to the cached field. */
d2df793a 4599 src->u.syment._n._n_n._n_zeroes = (bfd_hostptr_t) dst;
252b5132
RH
4600 dst->symbol.section = coff_section_from_bfd_index (abfd,
4601 src->u.syment.n_scnum);
4602 dst->symbol.flags = 0;
f41e4712
NC
4603 /* PR 17512: file: 079-7098-0.001:0.1. */
4604 dst->symbol.value = 0;
b34976b6 4605 dst->done_lineno = FALSE;
252b5132
RH
4606
4607 switch (src->u.syment.n_sclass)
4608 {
252b5132
RH
4609 case C_EXT:
4610 case C_WEAKEXT:
4611#if defined ARM
46f2f11d
AM
4612 case C_THUMBEXT:
4613 case C_THUMBEXTFUNC:
252b5132
RH
4614#endif
4615#ifdef RS6000COFF_C
4616 case C_HIDEXT:
adce5b39 4617#if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
532cc313 4618 case C_AIX_WEAKEXT:
252b5132 4619#endif
adce5b39 4620#endif
252b5132 4621#ifdef C_SYSTEM
ed781d5d 4622 case C_SYSTEM: /* System Wide variable. */
252b5132
RH
4623#endif
4624#ifdef COFF_WITH_PE
46f2f11d
AM
4625 /* In PE, 0x68 (104) denotes a section symbol. */
4626 case C_SECTION:
5d54c628 4627 /* In PE, 0x69 (105) denotes a weak external symbol. */
252b5132
RH
4628 case C_NT_WEAK:
4629#endif
5d54c628 4630 switch (coff_classify_symbol (abfd, &src->u.syment))
252b5132 4631 {
5d54c628 4632 case COFF_SYMBOL_GLOBAL:
252b5132 4633 dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
252b5132
RH
4634#if defined COFF_WITH_PE
4635 /* PE sets the symbol to a value relative to the
46f2f11d 4636 start of the section. */
252b5132
RH
4637 dst->symbol.value = src->u.syment.n_value;
4638#else
4639 dst->symbol.value = (src->u.syment.n_value
4640 - dst->symbol.section->vma);
4641#endif
252b5132 4642 if (ISFCN ((src->u.syment.n_type)))
7920ce38
NC
4643 /* A function ext does not go at the end of a
4644 file. */
4645 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
5d54c628
ILT
4646 break;
4647
4648 case COFF_SYMBOL_COMMON:
4649 dst->symbol.section = bfd_com_section_ptr;
4650 dst->symbol.value = src->u.syment.n_value;
4651 break;
4652
4653 case COFF_SYMBOL_UNDEFINED:
4654 dst->symbol.section = bfd_und_section_ptr;
4655 dst->symbol.value = 0;
e60b52c6 4656 break;
5d54c628
ILT
4657
4658 case COFF_SYMBOL_PE_SECTION:
4659 dst->symbol.flags |= BSF_EXPORT | BSF_SECTION_SYM;
4660 dst->symbol.value = 0;
4661 break;
4662
4663 case COFF_SYMBOL_LOCAL:
4664 dst->symbol.flags = BSF_LOCAL;
4665#if defined COFF_WITH_PE
4666 /* PE sets the symbol to a value relative to the
46f2f11d 4667 start of the section. */
5d54c628
ILT
4668 dst->symbol.value = src->u.syment.n_value;
4669#else
4670 dst->symbol.value = (src->u.syment.n_value
4671 - dst->symbol.section->vma);
4672#endif
4673 if (ISFCN ((src->u.syment.n_type)))
4674 dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4675 break;
252b5132
RH
4676 }
4677
4678#ifdef RS6000COFF_C
252b5132
RH
4679 /* A symbol with a csect entry should not go at the end. */
4680 if (src->u.syment.n_numaux > 0)
4681 dst->symbol.flags |= BSF_NOT_AT_END;
4682#endif
4683
4684#ifdef COFF_WITH_PE
4685 if (src->u.syment.n_sclass == C_NT_WEAK)
a181be0a
NC
4686 dst->symbol.flags |= BSF_WEAK;
4687
ec0ef80e
DD
4688 if (src->u.syment.n_sclass == C_SECTION
4689 && src->u.syment.n_scnum > 0)
eb1e0e80 4690 dst->symbol.flags = BSF_LOCAL;
252b5132 4691#endif
532cc313
AM
4692 if (src->u.syment.n_sclass == C_WEAKEXT
4693#ifdef RS6000COFF_C
4694 || src->u.syment.n_sclass == C_AIX_WEAKEXT
4695#endif
4696 )
a181be0a 4697 dst->symbol.flags |= BSF_WEAK;
252b5132
RH
4698
4699 break;
4700
ed781d5d 4701 case C_STAT: /* Static. */
e60b52c6 4702#if defined ARM
46f2f11d
AM
4703 case C_THUMBSTAT: /* Thumb static. */
4704 case C_THUMBLABEL: /* Thumb label. */
4705 case C_THUMBSTATFUNC:/* Thumb static function. */
85645aed
TG
4706#endif
4707#ifdef RS6000COFF_C
07d6d2b8
AM
4708 case C_DWARF: /* A label in a dwarf section. */
4709 case C_INFO: /* A label in a comment section. */
252b5132 4710#endif
ed781d5d 4711 case C_LABEL: /* Label. */
00692651 4712 if (src->u.syment.n_scnum == N_DEBUG)
252b5132
RH
4713 dst->symbol.flags = BSF_DEBUGGING;
4714 else
4715 dst->symbol.flags = BSF_LOCAL;
4716
4717 /* Base the value as an index from the base of the
4718 section, if there is one. */
4719 if (dst->symbol.section)
4720 {
4721#if defined COFF_WITH_PE
4722 /* PE sets the symbol to a value relative to the
46f2f11d 4723 start of the section. */
252b5132
RH
4724 dst->symbol.value = src->u.syment.n_value;
4725#else
4726 dst->symbol.value = (src->u.syment.n_value
4727 - dst->symbol.section->vma);
4728#endif
4729 }
4730 else
4731 dst->symbol.value = src->u.syment.n_value;
4732 break;
4733
ed781d5d
NC
4734 case C_MOS: /* Member of structure. */
4735 case C_EOS: /* End of structure. */
ed781d5d
NC
4736 case C_REGPARM: /* Register parameter. */
4737 case C_REG: /* register variable. */
46f2f11d 4738 /* C_AUTOARG conflicts with TI COFF C_UEXT. */
ed781d5d 4739 case C_TPDEF: /* Type definition. */
252b5132 4740 case C_ARG:
ed781d5d
NC
4741 case C_AUTO: /* Automatic variable. */
4742 case C_FIELD: /* Bit field. */
4743 case C_ENTAG: /* Enumeration tag. */
4744 case C_MOE: /* Member of enumeration. */
4745 case C_MOU: /* Member of union. */
4746 case C_UNTAG: /* Union tag. */
252b5132
RH
4747 dst->symbol.flags = BSF_DEBUGGING;
4748 dst->symbol.value = (src->u.syment.n_value);
4749 break;
4750
ed781d5d
NC
4751 case C_FILE: /* File name. */
4752 case C_STRTAG: /* Structure tag. */
252b5132
RH
4753#ifdef RS6000COFF_C
4754 case C_GSYM:
4755 case C_LSYM:
4756 case C_PSYM:
4757 case C_RSYM:
4758 case C_RPSYM:
4759 case C_STSYM:
f9f3cf65 4760 case C_TCSYM:
252b5132 4761 case C_BCOMM:
f9f3cf65 4762 case C_ECOML:
252b5132
RH
4763 case C_ECOMM:
4764 case C_DECL:
4765 case C_ENTRY:
4766 case C_FUN:
4767 case C_ESTAT:
4768#endif
4769 dst->symbol.flags = BSF_DEBUGGING;
4770 dst->symbol.value = (src->u.syment.n_value);
4771 break;
4772
4773#ifdef RS6000COFF_C
ed781d5d
NC
4774 case C_BINCL: /* Beginning of include file. */
4775 case C_EINCL: /* Ending of include file. */
252b5132 4776 /* The value is actually a pointer into the line numbers
46f2f11d
AM
4777 of the file. We locate the line number entry, and
4778 set the section to the section which contains it, and
4779 the value to the index in that section. */
252b5132
RH
4780 {
4781 asection *sec;
4782
4783 dst->symbol.flags = BSF_DEBUGGING;
4784 for (sec = abfd->sections; sec != NULL; sec = sec->next)
4785 if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
4786 && ((file_ptr) (sec->line_filepos
6b3b007b 4787 + sec->lineno_count * bfd_coff_linesz (abfd))
252b5132
RH
4788 > (file_ptr) src->u.syment.n_value))
4789 break;
4790 if (sec == NULL)
4791 dst->symbol.value = 0;
4792 else
4793 {
4794 dst->symbol.section = sec;
4795 dst->symbol.value = ((src->u.syment.n_value
4796 - sec->line_filepos)
6b3b007b 4797 / bfd_coff_linesz (abfd));
252b5132
RH
4798 src->fix_line = 1;
4799 }
4800 }
4801 break;
4802
4803 case C_BSTAT:
4804 dst->symbol.flags = BSF_DEBUGGING;
4805
4806 /* The value is actually a symbol index. Save a pointer
4807 to the symbol instead of the index. FIXME: This
4808 should use a union. */
4809 src->u.syment.n_value =
d68cd58c 4810 (long) (intptr_t) (native_symbols + src->u.syment.n_value);
252b5132
RH
4811 dst->symbol.value = src->u.syment.n_value;
4812 src->fix_value = 1;
4813 break;
4814#endif
4815
ed781d5d
NC
4816 case C_BLOCK: /* ".bb" or ".eb". */
4817 case C_FCN: /* ".bf" or ".ef" (or PE ".lf"). */
4818 case C_EFCN: /* Physical end of function. */
252b5132
RH
4819#if defined COFF_WITH_PE
4820 /* PE sets the symbol to a value relative to the start
4821 of the section. */
4822 dst->symbol.value = src->u.syment.n_value;
d510f9a6
ILT
4823 if (strcmp (dst->symbol.name, ".bf") != 0)
4824 {
4825 /* PE uses funny values for .ef and .lf; don't
46f2f11d 4826 relocate them. */
d510f9a6
ILT
4827 dst->symbol.flags = BSF_DEBUGGING;
4828 }
4829 else
4830 dst->symbol.flags = BSF_DEBUGGING | BSF_DEBUGGING_RELOC;
252b5132
RH
4831#else
4832 /* Base the value as an index from the base of the
4833 section. */
d510f9a6 4834 dst->symbol.flags = BSF_LOCAL;
252b5132
RH
4835 dst->symbol.value = (src->u.syment.n_value
4836 - dst->symbol.section->vma);
4837#endif
4838 break;
4839
ed781d5d 4840 case C_STATLAB: /* Static load time label. */
46f2f11d
AM
4841 dst->symbol.value = src->u.syment.n_value;
4842 dst->symbol.flags = BSF_GLOBAL;
4843 break;
34cbe64e 4844
252b5132 4845 case C_NULL:
00692651 4846 /* PE DLLs sometimes have zeroed out symbols for some
46f2f11d 4847 reason. Just ignore them without a warning. */
00692651
ILT
4848 if (src->u.syment.n_type == 0
4849 && src->u.syment.n_value == 0
4850 && src->u.syment.n_scnum == 0)
4851 break;
53dd76d3 4852#ifdef RS6000COFF_C
07d6d2b8
AM
4853 /* XCOFF specific: deleted entry. */
4854 if (src->u.syment.n_value == C_NULL_VALUE)
4855 break;
53dd76d3 4856#endif
00692651 4857 /* Fall through. */
ed781d5d
NC
4858 case C_EXTDEF: /* External definition. */
4859 case C_ULABEL: /* Undefined label. */
4860 case C_USTATIC: /* Undefined static. */
252b5132 4861#ifndef COFF_WITH_PE
46f2f11d
AM
4862 /* C_LINE in regular coff is 0x68. NT has taken over this storage
4863 class to represent a section symbol. */
ed781d5d 4864 case C_LINE: /* line # reformatted as symbol table entry. */
252b5132 4865 /* NT uses 0x67 for a weak symbol, not C_ALIAS. */
ed781d5d 4866 case C_ALIAS: /* Duplicate tag. */
252b5132 4867#endif
ed781d5d 4868 /* New storage classes for TI COFF. */
5b660084 4869#ifdef TICOFF
ed781d5d 4870 case C_UEXT: /* Tentative external definition. */
252b5132 4871#endif
2b804145 4872 case C_EXTLAB: /* External load time label. */
252b5132 4873 default:
4eca0228 4874 _bfd_error_handler
695344c0 4875 /* xgettext:c-format */
59d08d6c 4876 (_("%pB: unrecognized storage class %d for %s symbol `%s'"),
d003868e 4877 abfd, src->u.syment.n_sclass,
252b5132 4878 dst->symbol.section->name, dst->symbol.name);
86eafac0 4879 ret = FALSE;
63f2433d 4880 /* Fall through. */
7103ad76
LA
4881 case C_HIDDEN: /* Ext symbol in dmert public lib. */
4882 /* PR 20722: These symbols can also be generated by
4883 building DLLs with --gc-sections enabled. */
252b5132
RH
4884 dst->symbol.flags = BSF_DEBUGGING;
4885 dst->symbol.value = (src->u.syment.n_value);
4886 break;
4887 }
4888
252b5132 4889 dst->native = src;
252b5132 4890 dst->symbol.udata.i = 0;
7920ce38 4891 dst->lineno = NULL;
a5c71af8 4892
252b5132
RH
4893 this_index += (src->u.syment.n_numaux) + 1;
4894 dst++;
4895 number_of_symbols++;
ed781d5d
NC
4896 }
4897 }
252b5132
RH
4898
4899 obj_symbols (abfd) = cached_area;
4900 obj_raw_syments (abfd) = native_symbols;
4901
ed48ec2e 4902 abfd->symcount = number_of_symbols;
252b5132 4903 obj_convert (abfd) = table_ptr;
ed781d5d 4904 /* Slurp the line tables for each section too. */
252b5132
RH
4905 {
4906 asection *p;
ed781d5d 4907
252b5132
RH
4908 p = abfd->sections;
4909 while (p)
4910 {
063bb025
NC
4911 if (! coff_slurp_line_table (abfd, p))
4912 return FALSE;
252b5132
RH
4913 p = p->next;
4914 }
4915 }
ed781d5d 4916
86eafac0 4917 return ret;
7920ce38 4918}
252b5132 4919
5d54c628
ILT
4920/* Classify a COFF symbol. A couple of targets have globally visible
4921 symbols which are not class C_EXT, and this handles those. It also
4922 recognizes some special PE cases. */
252b5132 4923
5d54c628 4924static enum coff_symbol_classification
7920ce38
NC
4925coff_classify_symbol (bfd *abfd,
4926 struct internal_syment *syment)
5d54c628
ILT
4927{
4928 /* FIXME: This partially duplicates the switch in
4929 coff_slurp_symbol_table. */
4930 switch (syment->n_sclass)
4931 {
4932 case C_EXT:
4933 case C_WEAKEXT:
5d54c628
ILT
4934#ifdef ARM
4935 case C_THUMBEXT:
4936 case C_THUMBEXTFUNC:
252b5132 4937#endif
8af7926f
AM
4938#ifdef RS6000COFF_C
4939 case C_HIDEXT:
4940#if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
4941 case C_AIX_WEAKEXT:
4942#endif
4943#endif
5d54c628
ILT
4944#ifdef C_SYSTEM
4945 case C_SYSTEM:
252b5132 4946#endif
5d54c628
ILT
4947#ifdef COFF_WITH_PE
4948 case C_NT_WEAK:
4949#endif
4950 if (syment->n_scnum == 0)
4951 {
4952 if (syment->n_value == 0)
4953 return COFF_SYMBOL_UNDEFINED;
4954 else
4955 return COFF_SYMBOL_COMMON;
4956 }
8af7926f
AM
4957#ifdef RS6000COFF_C
4958 if (syment->n_sclass == C_HIDEXT)
4959 return COFF_SYMBOL_LOCAL;
4960#endif
5d54c628
ILT
4961 return COFF_SYMBOL_GLOBAL;
4962
4963 default:
4964 break;
4965 }
252b5132 4966
5d54c628
ILT
4967#ifdef COFF_WITH_PE
4968 if (syment->n_sclass == C_STAT)
4969 {
4970 if (syment->n_scnum == 0)
7920ce38
NC
4971 /* The Microsoft compiler sometimes generates these if a
4972 small static function is inlined every time it is used.
4973 The function is discarded, but the symbol table entry
4974 remains. */
4975 return COFF_SYMBOL_LOCAL;
252b5132 4976
0717ebb7 4977#ifdef STRICT_PE_FORMAT
bd826630 4978 /* This is correct for Microsoft generated objects, but it
46f2f11d 4979 breaks gas generated objects. */
5d54c628
ILT
4980 if (syment->n_value == 0)
4981 {
4982 asection *sec;
201159ec 4983 char * name;
07d6d2b8 4984 char buf[SYMNMLEN + 1];
1b786873 4985
201159ec 4986 name = _bfd_coff_internal_syment_name (abfd, syment, buf)
07d6d2b8 4987 sec = coff_section_from_bfd_index (abfd, syment->n_scnum);
201159ec 4988 if (sec != NULL && name != NULL
fd361982 4989 && (strcmp (bfd_section_name (sec), name) == 0))
5d54c628
ILT
4990 return COFF_SYMBOL_PE_SECTION;
4991 }
bd826630 4992#endif
252b5132 4993
5d54c628
ILT
4994 return COFF_SYMBOL_LOCAL;
4995 }
252b5132 4996
5d54c628
ILT
4997 if (syment->n_sclass == C_SECTION)
4998 {
4999 /* In some cases in a DLL generated by the Microsoft linker, the
46f2f11d
AM
5000 n_value field will contain garbage. FIXME: This should
5001 probably be handled by the swapping function instead. */
5d54c628
ILT
5002 syment->n_value = 0;
5003 if (syment->n_scnum == 0)
5004 return COFF_SYMBOL_UNDEFINED;
5005 return COFF_SYMBOL_PE_SECTION;
5006 }
5007#endif /* COFF_WITH_PE */
252b5132 5008
5d54c628 5009 /* If it is not a global symbol, we presume it is a local symbol. */
5d54c628
ILT
5010 if (syment->n_scnum == 0)
5011 {
5012 char buf[SYMNMLEN + 1];
252b5132 5013
4eca0228 5014 _bfd_error_handler
695344c0 5015 /* xgettext:c-format */
871b3ab2 5016 (_("warning: %pB: local symbol `%s' has no section"),
d003868e 5017 abfd, _bfd_coff_internal_syment_name (abfd, syment, buf));
5d54c628 5018 }
252b5132 5019
5d54c628
ILT
5020 return COFF_SYMBOL_LOCAL;
5021}
252b5132
RH
5022
5023/*
5024SUBSUBSECTION
5025 Reading relocations
5026
5027 Coff relocations are easily transformed into the internal BFD form
5028 (@code{arelent}).
5029
5030 Reading a coff relocation table is done in the following stages:
5031
5032 o Read the entire coff relocation table into memory.
5033
5034 o Process each relocation in turn; first swap it from the
5035 external to the internal form.
5036
5037 o Turn the symbol referenced in the relocation's symbol index
5038 into a pointer into the canonical symbol table.
5039 This table is the same as the one returned by a call to
5040 @code{bfd_canonicalize_symtab}. The back end will call that
5041 routine and save the result if a canonicalization hasn't been done.
5042
5043 o The reloc index is turned into a pointer to a howto
5044 structure, in a back end specific way. For instance, the 386
a8eb42a8 5045 uses the @code{r_type} to directly produce an index
c2bf1eec 5046 into a howto table vector.
252b5132
RH
5047*/
5048
5049#ifndef CALC_ADDEND
46f2f11d
AM
5050#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
5051 { \
5052 coff_symbol_type *coffsym = NULL; \
5053 \
5054 if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
5055 coffsym = (obj_symbols (abfd) \
5056 + (cache_ptr->sym_ptr_ptr - symbols)); \
5057 else if (ptr) \
f4943d82 5058 coffsym = coff_symbol_from (ptr); \
46f2f11d 5059 if (coffsym != NULL \
a5c71af8 5060 && coffsym->native->is_sym \
46f2f11d
AM
5061 && coffsym->native->u.syment.n_scnum == 0) \
5062 cache_ptr->addend = 0; \
5063 else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
5064 && ptr->section != NULL) \
5065 cache_ptr->addend = - (ptr->section->vma + ptr->value); \
5066 else \
5067 cache_ptr->addend = 0; \
252b5132
RH
5068 }
5069#endif
5070
b34976b6 5071static bfd_boolean
7920ce38 5072coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
252b5132
RH
5073{
5074 RELOC *native_relocs;
5075 arelent *reloc_cache;
5076 arelent *cache_ptr;
252b5132 5077 unsigned int idx;
1f4361a7 5078 size_t amt;
252b5132
RH
5079
5080 if (asect->relocation)
b34976b6 5081 return TRUE;
252b5132 5082 if (asect->reloc_count == 0)
b34976b6 5083 return TRUE;
252b5132 5084 if (asect->flags & SEC_CONSTRUCTOR)
b34976b6 5085 return TRUE;
252b5132 5086 if (!coff_slurp_symbol_table (abfd))
b34976b6 5087 return FALSE;
7920ce38 5088
7a6e0d89
AM
5089 native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos,
5090 asect->reloc_count,
5091 bfd_coff_relsz (abfd));
1f4361a7
AM
5092 if (_bfd_mul_overflow (asect->reloc_count, sizeof (arelent), &amt))
5093 {
5094 bfd_set_error (bfd_error_file_too_big);
5095 return FALSE;
5096 }
5097 reloc_cache = (arelent *) bfd_alloc (abfd, amt);
a50b2160 5098 if (reloc_cache == NULL || native_relocs == NULL)
b34976b6 5099 return FALSE;
252b5132 5100
252b5132
RH
5101 for (idx = 0; idx < asect->reloc_count; idx++)
5102 {
5103 struct internal_reloc dst;
5104 struct external_reloc *src;
5105#ifndef RELOC_PROCESSING
5106 asymbol *ptr;
5107#endif
5108
5109 cache_ptr = reloc_cache + idx;
5110 src = native_relocs + idx;
5111
40b1c6c5 5112 dst.r_offset = 0;
252b5132
RH
5113 coff_swap_reloc_in (abfd, src, &dst);
5114
5115#ifdef RELOC_PROCESSING
5116 RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
5117#else
5118 cache_ptr->address = dst.r_vaddr;
5119
4581a1c7 5120 if (dst.r_symndx != -1 && symbols != NULL)
252b5132
RH
5121 {
5122 if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
5123 {
4eca0228 5124 _bfd_error_handler
695344c0 5125 /* xgettext:c-format */
871b3ab2 5126 (_("%pB: warning: illegal symbol index %ld in relocs"),
d42c267e 5127 abfd, dst.r_symndx);
252b5132
RH
5128 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5129 ptr = NULL;
5130 }
5131 else
5132 {
5133 cache_ptr->sym_ptr_ptr = (symbols
5134 + obj_convert (abfd)[dst.r_symndx]);
5135 ptr = *(cache_ptr->sym_ptr_ptr);
5136 }
5137 }
5138 else
5139 {
5140 cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5141 ptr = NULL;
5142 }
5143
5144 /* The symbols definitions that we have read in have been
5145 relocated as if their sections started at 0. But the offsets
5146 refering to the symbols in the raw data have not been
5147 modified, so we have to have a negative addend to compensate.
5148
ed781d5d 5149 Note that symbols which used to be common must be left alone. */
252b5132 5150
ed781d5d 5151 /* Calculate any reloc addend by looking at the symbol. */
252b5132 5152 CALC_ADDEND (abfd, ptr, dst, cache_ptr);
c7e2358a 5153 (void) ptr;
252b5132
RH
5154
5155 cache_ptr->address -= asect->vma;
7920ce38 5156 /* !! cache_ptr->section = NULL;*/
252b5132 5157
ed781d5d 5158 /* Fill in the cache_ptr->howto field from dst.r_type. */
252b5132
RH
5159 RTYPE2HOWTO (cache_ptr, &dst);
5160#endif /* RELOC_PROCESSING */
5161
5162 if (cache_ptr->howto == NULL)
5163 {
4eca0228 5164 _bfd_error_handler
695344c0 5165 /* xgettext:c-format */
2dcf00ce
AM
5166 (_("%pB: illegal relocation type %d at address %#" PRIx64),
5167 abfd, dst.r_type, (uint64_t) dst.r_vaddr);
252b5132 5168 bfd_set_error (bfd_error_bad_value);
b34976b6 5169 return FALSE;
252b5132
RH
5170 }
5171 }
5172
5173 asect->relocation = reloc_cache;
b34976b6 5174 return TRUE;
252b5132
RH
5175}
5176
5177#ifndef coff_rtype_to_howto
5178#ifdef RTYPE2HOWTO
5179
5180/* Get the howto structure for a reloc. This is only used if the file
5181 including this one defines coff_relocate_section to be
5182 _bfd_coff_generic_relocate_section, so it is OK if it does not
5183 always work. It is the responsibility of the including file to
5184 make sure it is reasonable if it is needed. */
5185
252b5132 5186static reloc_howto_type *
7920ce38
NC
5187coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
5188 asection *sec ATTRIBUTE_UNUSED,
a1165289 5189 struct internal_reloc *rel ATTRIBUTE_UNUSED,
7920ce38
NC
5190 struct coff_link_hash_entry *h ATTRIBUTE_UNUSED,
5191 struct internal_syment *sym ATTRIBUTE_UNUSED,
5192 bfd_vma *addendp ATTRIBUTE_UNUSED)
252b5132
RH
5193{
5194 arelent genrel;
5195
964597d0 5196 genrel.howto = NULL;
252b5132
RH
5197 RTYPE2HOWTO (&genrel, rel);
5198 return genrel.howto;
5199}
5200
5201#else /* ! defined (RTYPE2HOWTO) */
5202
5203#define coff_rtype_to_howto NULL
5204
5205#endif /* ! defined (RTYPE2HOWTO) */
5206#endif /* ! defined (coff_rtype_to_howto) */
5207
5208/* This is stupid. This function should be a boolean predicate. */
7920ce38 5209
252b5132 5210static long
7920ce38
NC
5211coff_canonicalize_reloc (bfd * abfd,
5212 sec_ptr section,
5213 arelent ** relptr,
5214 asymbol ** symbols)
252b5132
RH
5215{
5216 arelent *tblptr = section->relocation;
5217 unsigned int count = 0;
5218
252b5132
RH
5219 if (section->flags & SEC_CONSTRUCTOR)
5220 {
ed781d5d
NC
5221 /* This section has relocs made up by us, they are not in the
5222 file, so take them out of their chain and place them into
5223 the data area provided. */
252b5132 5224 arelent_chain *chain = section->constructor_chain;
ed781d5d 5225
252b5132
RH
5226 for (count = 0; count < section->reloc_count; count++)
5227 {
5228 *relptr++ = &chain->relent;
5229 chain = chain->next;
5230 }
252b5132
RH
5231 }
5232 else
5233 {
5234 if (! coff_slurp_reloc_table (abfd, section, symbols))
5235 return -1;
5236
5237 tblptr = section->relocation;
5238
5239 for (; count++ < section->reloc_count;)
5240 *relptr++ = tblptr++;
252b5132
RH
5241 }
5242 *relptr = 0;
5243 return section->reloc_count;
5244}
5245
23186865
JM
5246#ifndef coff_set_reloc
5247#define coff_set_reloc _bfd_generic_set_reloc
5248#endif
5249
252b5132
RH
5250#ifndef coff_reloc16_estimate
5251#define coff_reloc16_estimate dummy_reloc16_estimate
5252
252b5132 5253static int
7920ce38
NC
5254dummy_reloc16_estimate (bfd *abfd ATTRIBUTE_UNUSED,
5255 asection *input_section ATTRIBUTE_UNUSED,
5256 arelent *reloc ATTRIBUTE_UNUSED,
5257 unsigned int shrink ATTRIBUTE_UNUSED,
5258 struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
252b5132
RH
5259{
5260 abort ();
00692651 5261 return 0;
252b5132
RH
5262}
5263
5264#endif
5265
5266#ifndef coff_reloc16_extra_cases
5267
5268#define coff_reloc16_extra_cases dummy_reloc16_extra_cases
5269
5270/* This works even if abort is not declared in any header file. */
5271
252b5132 5272static void
7920ce38
NC
5273dummy_reloc16_extra_cases (bfd *abfd ATTRIBUTE_UNUSED,
5274 struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
5275 struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
5276 arelent *reloc ATTRIBUTE_UNUSED,
5277 bfd_byte *data ATTRIBUTE_UNUSED,
5278 unsigned int *src_ptr ATTRIBUTE_UNUSED,
5279 unsigned int *dst_ptr ATTRIBUTE_UNUSED)
252b5132
RH
5280{
5281 abort ();
5282}
5283#endif
5284
5285/* If coff_relocate_section is defined, we can use the optimized COFF
5286 backend linker. Otherwise we must continue to use the old linker. */
7920ce38 5287
252b5132 5288#ifdef coff_relocate_section
7920ce38 5289
252b5132
RH
5290#ifndef coff_bfd_link_hash_table_create
5291#define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
5292#endif
5293#ifndef coff_bfd_link_add_symbols
5294#define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
5295#endif
5296#ifndef coff_bfd_final_link
5297#define coff_bfd_final_link _bfd_coff_final_link
5298#endif
7920ce38 5299
252b5132 5300#else /* ! defined (coff_relocate_section) */
7920ce38 5301
252b5132
RH
5302#define coff_relocate_section NULL
5303#ifndef coff_bfd_link_hash_table_create
5304#define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
5305#endif
5306#ifndef coff_bfd_link_add_symbols
5307#define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
5308#endif
5309#define coff_bfd_final_link _bfd_generic_final_link
7920ce38 5310
252b5132
RH
5311#endif /* ! defined (coff_relocate_section) */
5312
7920ce38 5313#define coff_bfd_link_just_syms _bfd_generic_link_just_syms
1338dd10
PB
5314#define coff_bfd_copy_link_hash_symbol_type \
5315 _bfd_generic_copy_link_hash_symbol_type
252b5132
RH
5316#define coff_bfd_link_split_section _bfd_generic_link_split_section
5317
4f3b23b3
NC
5318#define coff_bfd_link_check_relocs _bfd_generic_link_check_relocs
5319
252b5132
RH
5320#ifndef coff_start_final_link
5321#define coff_start_final_link NULL
5322#endif
5323
5324#ifndef coff_adjust_symndx
5325#define coff_adjust_symndx NULL
5326#endif
5327
5328#ifndef coff_link_add_one_symbol
5329#define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
5330#endif
5331
5332#ifndef coff_link_output_has_begun
5333
b34976b6 5334static bfd_boolean
7920ce38
NC
5335coff_link_output_has_begun (bfd * abfd,
5336 struct coff_final_link_info * info ATTRIBUTE_UNUSED)
252b5132
RH
5337{
5338 return abfd->output_has_begun;
5339}
5340#endif
5341
5342#ifndef coff_final_link_postscript
5343
b34976b6 5344static bfd_boolean
7920ce38
NC
5345coff_final_link_postscript (bfd * abfd ATTRIBUTE_UNUSED,
5346 struct coff_final_link_info * pfinfo ATTRIBUTE_UNUSED)
252b5132 5347{
b34976b6 5348 return TRUE;
252b5132
RH
5349}
5350#endif
5351
5352#ifndef coff_SWAP_aux_in
5353#define coff_SWAP_aux_in coff_swap_aux_in
5354#endif
5355#ifndef coff_SWAP_sym_in
5356#define coff_SWAP_sym_in coff_swap_sym_in
5357#endif
5358#ifndef coff_SWAP_lineno_in
5359#define coff_SWAP_lineno_in coff_swap_lineno_in
5360#endif
5361#ifndef coff_SWAP_aux_out
5362#define coff_SWAP_aux_out coff_swap_aux_out
5363#endif
5364#ifndef coff_SWAP_sym_out
5365#define coff_SWAP_sym_out coff_swap_sym_out
5366#endif
5367#ifndef coff_SWAP_lineno_out
5368#define coff_SWAP_lineno_out coff_swap_lineno_out
5369#endif
5370#ifndef coff_SWAP_reloc_out
5371#define coff_SWAP_reloc_out coff_swap_reloc_out
5372#endif
5373#ifndef coff_SWAP_filehdr_out
5374#define coff_SWAP_filehdr_out coff_swap_filehdr_out
5375#endif
5376#ifndef coff_SWAP_aouthdr_out
5377#define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
5378#endif
5379#ifndef coff_SWAP_scnhdr_out
5380#define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
5381#endif
5382#ifndef coff_SWAP_reloc_in
5383#define coff_SWAP_reloc_in coff_swap_reloc_in
5384#endif
5385#ifndef coff_SWAP_filehdr_in
5386#define coff_SWAP_filehdr_in coff_swap_filehdr_in
5387#endif
5388#ifndef coff_SWAP_aouthdr_in
5389#define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
5390#endif
5391#ifndef coff_SWAP_scnhdr_in
5392#define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
5393#endif
5394
88183869 5395static bfd_coff_backend_data bfd_coff_std_swap_table ATTRIBUTE_UNUSED =
252b5132
RH
5396{
5397 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5398 coff_SWAP_aux_out, coff_SWAP_sym_out,
5399 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5400 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5401 coff_SWAP_scnhdr_out,
692b7d62 5402 FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
252b5132 5403#ifdef COFF_LONG_FILENAMES
b34976b6 5404 TRUE,
252b5132 5405#else
b34976b6 5406 FALSE,
252b5132 5407#endif
88183869 5408 COFF_DEFAULT_LONG_SECTION_NAMES,
a022216b 5409 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
7f6d05e8 5410#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
b34976b6 5411 TRUE,
7f6d05e8 5412#else
b34976b6 5413 FALSE,
7f6d05e8
CP
5414#endif
5415#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5416 4,
5417#else
5418 2,
5419#endif
167ad85b 5420 32768,
252b5132
RH
5421 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5422 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5423 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5424 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5425 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5d54c628 5426 coff_classify_symbol, coff_compute_section_file_positions,
252b5132
RH
5427 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5428 coff_adjust_symndx, coff_link_add_one_symbol,
2b5c217d
NC
5429 coff_link_output_has_begun, coff_final_link_postscript,
5430 bfd_pe_print_pdata
252b5132
RH
5431};
5432
5a5b9651
SS
5433#ifdef TICOFF
5434/* COFF0 differs in file/section header size and relocation entry size. */
7920ce38 5435
88183869 5436static bfd_coff_backend_data ticoff0_swap_table =
5a5b9651
SS
5437{
5438 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5439 coff_SWAP_aux_out, coff_SWAP_sym_out,
5440 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5441 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5442 coff_SWAP_scnhdr_out,
5443 FILHSZ_V0, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ_V0, LINESZ, FILNMLEN,
5444#ifdef COFF_LONG_FILENAMES
5445 TRUE,
5446#else
5447 FALSE,
5448#endif
88183869 5449 COFF_DEFAULT_LONG_SECTION_NAMES,
5a5b9651
SS
5450 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5451#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5452 TRUE,
5453#else
5454 FALSE,
5455#endif
5456#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5457 4,
5458#else
5459 2,
5460#endif
167ad85b 5461 32768,
5a5b9651
SS
5462 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5463 coff_SWAP_reloc_in, ticoff0_bad_format_hook, coff_set_arch_mach_hook,
5464 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5465 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5466 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5467 coff_classify_symbol, coff_compute_section_file_positions,
5468 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5469 coff_adjust_symndx, coff_link_add_one_symbol,
2b5c217d
NC
5470 coff_link_output_has_begun, coff_final_link_postscript,
5471 bfd_pe_print_pdata
5a5b9651
SS
5472};
5473#endif
5474
5475#ifdef TICOFF
5476/* COFF1 differs in section header size. */
7920ce38 5477
88183869 5478static bfd_coff_backend_data ticoff1_swap_table =
5a5b9651
SS
5479{
5480 coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5481 coff_SWAP_aux_out, coff_SWAP_sym_out,
5482 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5483 coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5484 coff_SWAP_scnhdr_out,
5485 FILHSZ, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
5486#ifdef COFF_LONG_FILENAMES
5487 TRUE,
5488#else
5489 FALSE,
5490#endif
88183869 5491 COFF_DEFAULT_LONG_SECTION_NAMES,
5a5b9651
SS
5492 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5493#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5494 TRUE,
5495#else
5496 FALSE,
5497#endif
5498#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5499 4,
5500#else
5501 2,
5502#endif
167ad85b 5503 32768,
5a5b9651
SS
5504 coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5505 coff_SWAP_reloc_in, ticoff1_bad_format_hook, coff_set_arch_mach_hook,
5506 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5507 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5508 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5509 coff_classify_symbol, coff_compute_section_file_positions,
5510 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5511 coff_adjust_symndx, coff_link_add_one_symbol,
2b5c217d
NC
5512 coff_link_output_has_begun, coff_final_link_postscript,
5513 bfd_pe_print_pdata /* huh */
5a5b9651
SS
5514};
5515#endif
5516
167ad85b 5517#ifdef COFF_WITH_PE_BIGOBJ
a5c71af8 5518/* The UID for bigobj files. */
167ad85b
TG
5519
5520static const char header_bigobj_classid[16] =
5521{
5522 0xC7, 0xA1, 0xBA, 0xD1,
5523 0xEE, 0xBA,
5524 0xa9, 0x4b,
5525 0xAF, 0x20,
5526 0xFA, 0xF6, 0x6A, 0xA4, 0xDC, 0xB8
5527};
5528
5529/* Swap routines. */
5530
5531static void
5532coff_bigobj_swap_filehdr_in (bfd * abfd, void * src, void * dst)
5533{
5534 struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_src =
5535 (struct external_ANON_OBJECT_HEADER_BIGOBJ *) src;
5536 struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
5537
5538 filehdr_dst->f_magic = H_GET_16 (abfd, filehdr_src->Machine);
5539 filehdr_dst->f_nscns = H_GET_32 (abfd, filehdr_src->NumberOfSections);
5540 filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->TimeDateStamp);
5541 filehdr_dst->f_symptr =
5542 GET_FILEHDR_SYMPTR (abfd, filehdr_src->PointerToSymbolTable);
5543 filehdr_dst->f_nsyms = H_GET_32 (abfd, filehdr_src->NumberOfSymbols);
5544 filehdr_dst->f_opthdr = 0;
5545 filehdr_dst->f_flags = 0;
5546
5547 /* Check other magic numbers. */
5548 if (H_GET_16 (abfd, filehdr_src->Sig1) != IMAGE_FILE_MACHINE_UNKNOWN
5549 || H_GET_16 (abfd, filehdr_src->Sig2) != 0xffff
5550 || H_GET_16 (abfd, filehdr_src->Version) != 2
5551 || memcmp (filehdr_src->ClassID, header_bigobj_classid, 16) != 0)
5552 filehdr_dst->f_opthdr = 0xffff;
5553
5554 /* Note that CLR metadata are ignored. */
5555}
5556
5557static unsigned int
5558coff_bigobj_swap_filehdr_out (bfd *abfd, void * in, void * out)
5559{
5560 struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
5561 struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_out =
5562 (struct external_ANON_OBJECT_HEADER_BIGOBJ *) out;
5563
5564 memset (filehdr_out, 0, sizeof (*filehdr_out));
5565
5566 H_PUT_16 (abfd, IMAGE_FILE_MACHINE_UNKNOWN, filehdr_out->Sig1);
5567 H_PUT_16 (abfd, 0xffff, filehdr_out->Sig2);
5568 H_PUT_16 (abfd, 2, filehdr_out->Version);
5569 memcpy (filehdr_out->ClassID, header_bigobj_classid, 16);
5570 H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->Machine);
5571 H_PUT_32 (abfd, filehdr_in->f_nscns, filehdr_out->NumberOfSections);
5572 H_PUT_32 (abfd, filehdr_in->f_timdat, filehdr_out->TimeDateStamp);
5573 PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
5574 filehdr_out->PointerToSymbolTable);
5575 H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->NumberOfSymbols);
5576
5577 return bfd_coff_filhsz (abfd);
5578}
5579
5580static void
5581coff_bigobj_swap_sym_in (bfd * abfd, void * ext1, void * in1)
5582{
5583 SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) ext1;
5584 struct internal_syment *in = (struct internal_syment *) in1;
5585
5586 if (ext->e.e_name[0] == 0)
5587 {
5588 in->_n._n_n._n_zeroes = 0;
5589 in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
5590 }
5591 else
5592 {
5593#if SYMNMLEN != E_SYMNMLEN
5594#error we need to cope with truncating or extending SYMNMLEN
5595#else
5596 memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
5597#endif
5598 }
5599
5600 in->n_value = H_GET_32 (abfd, ext->e_value);
9ae678af 5601 BFD_ASSERT (sizeof (in->n_scnum) >= 4);
167ad85b
TG
5602 in->n_scnum = H_GET_32 (abfd, ext->e_scnum);
5603 in->n_type = H_GET_16 (abfd, ext->e_type);
5604 in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
5605 in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
5606}
5607
5608static unsigned int
5609coff_bigobj_swap_sym_out (bfd * abfd, void * inp, void * extp)
5610{
5611 struct internal_syment *in = (struct internal_syment *) inp;
5612 SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) extp;
5613
5614 if (in->_n._n_name[0] == 0)
5615 {
5616 H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
5617 H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
5618 }
5619 else
5620 {
5621#if SYMNMLEN != E_SYMNMLEN
5622#error we need to cope with truncating or extending SYMNMLEN
5623#else
5624 memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
5625#endif
5626 }
5627
5628 H_PUT_32 (abfd, in->n_value, ext->e_value);
5629 H_PUT_32 (abfd, in->n_scnum, ext->e_scnum);
5630
5631 H_PUT_16 (abfd, in->n_type, ext->e_type);
5632 H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
5633 H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
5634
5635 return SYMESZ_BIGOBJ;
5636}
5637
5638static void
5639coff_bigobj_swap_aux_in (bfd *abfd,
5640 void * ext1,
5641 int type,
5642 int in_class,
5643 int indx,
5644 int numaux,
5645 void * in1)
5646{
5647 AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) ext1;
5648 union internal_auxent *in = (union internal_auxent *) in1;
5649
810ed4db
CG
5650 /* Make sure that all fields in the aux structure are
5651 initialised. */
5652 memset (in, 0, sizeof * in);
167ad85b
TG
5653 switch (in_class)
5654 {
5655 case C_FILE:
5656 if (numaux > 1)
5657 {
5658 if (indx == 0)
5659 memcpy (in->x_file.x_fname, ext->File.Name,
5660 numaux * sizeof (AUXENT_BIGOBJ));
5661 }
5662 else
5663 memcpy (in->x_file.x_fname, ext->File.Name, sizeof (ext->File.Name));
5664 break;
5665
5666 case C_STAT:
5667 case C_LEAFSTAT:
5668 case C_HIDDEN:
5669 if (type == T_NULL)
5670 {
5671 in->x_scn.x_scnlen = H_GET_32 (abfd, ext->Section.Length);
5672 in->x_scn.x_nreloc =
5673 H_GET_16 (abfd, ext->Section.NumberOfRelocations);
5674 in->x_scn.x_nlinno =
5675 H_GET_16 (abfd, ext->Section.NumberOfLinenumbers);
5676 in->x_scn.x_checksum = H_GET_32 (abfd, ext->Section.Checksum);
5677 in->x_scn.x_associated = H_GET_16 (abfd, ext->Section.Number)
5678 | (H_GET_16 (abfd, ext->Section.HighNumber) << 16);
5679 in->x_scn.x_comdat = H_GET_8 (abfd, ext->Section.Selection);
5680 return;
5681 }
5682 break;
5683
5684 default:
5685 in->x_sym.x_tagndx.l = H_GET_32 (abfd, ext->Sym.WeakDefaultSymIndex);
5686 /* Characteristics is ignored. */
5687 break;
5688 }
5689}
5690
5691static unsigned int
5692coff_bigobj_swap_aux_out (bfd * abfd,
5693 void * inp,
5694 int type,
5695 int in_class,
5696 int indx ATTRIBUTE_UNUSED,
5697 int numaux ATTRIBUTE_UNUSED,
5698 void * extp)
5699{
5700 union internal_auxent * in = (union internal_auxent *) inp;
5701 AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) extp;
5702
5703 memset (ext, 0, AUXESZ);
5704
5705 switch (in_class)
5706 {
5707 case C_FILE:
5708 memcpy (ext->File.Name, in->x_file.x_fname, sizeof (ext->File.Name));
5709
5710 return AUXESZ;
5711
5712 case C_STAT:
5713 case C_LEAFSTAT:
5714 case C_HIDDEN:
5715 if (type == T_NULL)
5716 {
5717 H_PUT_32 (abfd, in->x_scn.x_scnlen, ext->Section.Length);
5718 H_PUT_16 (abfd, in->x_scn.x_nreloc,
5719 ext->Section.NumberOfRelocations);
5720 H_PUT_16 (abfd, in->x_scn.x_nlinno,
5721 ext->Section.NumberOfLinenumbers);
5722 H_PUT_32 (abfd, in->x_scn.x_checksum, ext->Section.Checksum);
5723 H_PUT_16 (abfd, in->x_scn.x_associated & 0xffff,
5724 ext->Section.Number);
5725 H_PUT_16 (abfd, (in->x_scn.x_associated >> 16),
5726 ext->Section.HighNumber);
5727 H_PUT_8 (abfd, in->x_scn.x_comdat, ext->Section.Selection);
5728 return AUXESZ;
5729 }
5730 break;
5731 }
5732
5733 H_PUT_32 (abfd, in->x_sym.x_tagndx.l, ext->Sym.WeakDefaultSymIndex);
5734 H_PUT_32 (abfd, 1, ext->Sym.WeakSearchType);
5735
5736 return AUXESZ;
5737}
5738
5739static bfd_coff_backend_data bigobj_swap_table =
5740{
5741 coff_bigobj_swap_aux_in, coff_bigobj_swap_sym_in, coff_SWAP_lineno_in,
5742 coff_bigobj_swap_aux_out, coff_bigobj_swap_sym_out,
5743 coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5744 coff_bigobj_swap_filehdr_out, coff_SWAP_aouthdr_out,
5745 coff_SWAP_scnhdr_out,
5746 FILHSZ_BIGOBJ, AOUTSZ, SCNHSZ, SYMESZ_BIGOBJ, AUXESZ_BIGOBJ,
5747 RELSZ, LINESZ, FILNMLEN_BIGOBJ,
5748 TRUE,
5749 COFF_DEFAULT_LONG_SECTION_NAMES,
5750 COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5751 FALSE,
5752 2,
5753 1U << 31,
5754 coff_bigobj_swap_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5755 coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5756 coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5757 coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5758 coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5759 coff_classify_symbol, coff_compute_section_file_positions,
5760 coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5761 coff_adjust_symndx, coff_link_add_one_symbol,
5762 coff_link_output_has_begun, coff_final_link_postscript,
5763 bfd_pe_print_pdata /* huh */
5764};
5765
5766#endif /* COFF_WITH_PE_BIGOBJ */
5767
252b5132 5768#ifndef coff_close_and_cleanup
f5d35bb7 5769#define coff_close_and_cleanup _bfd_coff_close_and_cleanup
252b5132
RH
5770#endif
5771
5772#ifndef coff_bfd_free_cached_info
46f2f11d 5773#define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
252b5132
RH
5774#endif
5775
5776#ifndef coff_get_section_contents
46f2f11d 5777#define coff_get_section_contents _bfd_generic_get_section_contents
252b5132
RH
5778#endif
5779
5780#ifndef coff_bfd_copy_private_symbol_data
5781#define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data
5782#endif
5783
80fccad2
BW
5784#ifndef coff_bfd_copy_private_header_data
5785#define coff_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
5786#endif
5787
252b5132
RH
5788#ifndef coff_bfd_copy_private_section_data
5789#define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data
5790#endif
5791
e60b52c6 5792#ifndef coff_bfd_copy_private_bfd_data
252b5132
RH
5793#define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data
5794#endif
5795
5796#ifndef coff_bfd_merge_private_bfd_data
5797#define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
5798#endif
5799
5800#ifndef coff_bfd_set_private_flags
46f2f11d 5801#define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
252b5132
RH
5802#endif
5803
e60b52c6 5804#ifndef coff_bfd_print_private_bfd_data
252b5132
RH
5805#define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
5806#endif
5807
5808#ifndef coff_bfd_is_local_label_name
5809#define coff_bfd_is_local_label_name _bfd_coff_is_local_label_name
5810#endif
5811
3c9458e9 5812#ifndef coff_bfd_is_target_special_symbol
d00dd7dc 5813#define coff_bfd_is_target_special_symbol _bfd_bool_bfd_asymbol_false
3c9458e9
NC
5814#endif
5815
252b5132
RH
5816#ifndef coff_read_minisymbols
5817#define coff_read_minisymbols _bfd_generic_read_minisymbols
5818#endif
5819
5820#ifndef coff_minisymbol_to_symbol
5821#define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
5822#endif
5823
5824/* The reloc lookup routine must be supplied by each individual COFF
5825 backend. */
5826#ifndef coff_bfd_reloc_type_lookup
5827#define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
5828#endif
157090f7
AM
5829#ifndef coff_bfd_reloc_name_lookup
5830#define coff_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
5831#endif
252b5132
RH
5832
5833#ifndef coff_bfd_get_relocated_section_contents
5834#define coff_bfd_get_relocated_section_contents \
5835 bfd_generic_get_relocated_section_contents
5836#endif
5837
5838#ifndef coff_bfd_relax_section
5839#define coff_bfd_relax_section bfd_generic_relax_section
5840#endif
5841
5842#ifndef coff_bfd_gc_sections
0f088b2a 5843#define coff_bfd_gc_sections bfd_coff_gc_sections
252b5132 5844#endif
c3c89269 5845
ae17ab41
CM
5846#ifndef coff_bfd_lookup_section_flags
5847#define coff_bfd_lookup_section_flags bfd_generic_lookup_section_flags
5848#endif
5849
8550eb6e
JJ
5850#ifndef coff_bfd_merge_sections
5851#define coff_bfd_merge_sections bfd_generic_merge_sections
5852#endif
5853
72adc230
AM
5854#ifndef coff_bfd_is_group_section
5855#define coff_bfd_is_group_section bfd_generic_is_group_section
5856#endif
5857
cb7f4b29
AM
5858#ifndef coff_bfd_group_name
5859#define coff_bfd_group_name bfd_coff_group_name
5860#endif
5861
e61463e1
AM
5862#ifndef coff_bfd_discard_group
5863#define coff_bfd_discard_group bfd_generic_discard_group
5864#endif
5865
082b7297
L
5866#ifndef coff_section_already_linked
5867#define coff_section_already_linked \
c77ec726 5868 _bfd_coff_section_already_linked
082b7297
L
5869#endif
5870
3023e3f6
RS
5871#ifndef coff_bfd_define_common_symbol
5872#define coff_bfd_define_common_symbol bfd_generic_define_common_symbol
5873#endif
5874
34a87bb0
L
5875#ifndef coff_bfd_link_hide_symbol
5876#define coff_bfd_link_hide_symbol _bfd_generic_link_hide_symbol
5877#endif
5878
7dba9362
AM
5879#ifndef coff_bfd_define_start_stop
5880#define coff_bfd_define_start_stop bfd_generic_define_start_stop
5881#endif
5882
3fa78519 5883#define CREATE_BIG_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
4c117b10
ILT
5884const bfd_target VAR = \
5885{ \
5886 NAME , \
5887 bfd_target_coff_flavour, \
7920ce38
NC
5888 BFD_ENDIAN_BIG, /* Data byte order is big. */ \
5889 BFD_ENDIAN_BIG, /* Header byte order is big. */ \
4c117b10
ILT
5890 /* object flags */ \
5891 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
5892 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
5893 /* section flags */ \
5894 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
7920ce38
NC
5895 UNDER, /* Leading symbol underscore. */ \
5896 '/', /* AR_pad_char. */ \
5897 15, /* AR_max_namelen. */ \
0aabe54e 5898 0, /* match priority. */ \
d1bcae83 5899 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
46f2f11d 5900 \
4c117b10
ILT
5901 /* Data conversion functions. */ \
5902 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5903 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5904 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
46f2f11d 5905 \
4c117b10
ILT
5906 /* Header conversion functions. */ \
5907 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5908 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5909 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5910 \
d00dd7dc
AM
5911 { /* bfd_check_format. */ \
5912 _bfd_dummy_target, \
5913 coff_object_p, \
5914 bfd_generic_archive_p, \
5915 _bfd_dummy_target \
5916 }, \
5917 { /* bfd_set_format. */ \
5918 _bfd_bool_bfd_false_error, \
5919 coff_mkobject, \
5920 _bfd_generic_mkarchive, \
5921 _bfd_bool_bfd_false_error \
5922 }, \
5923 { /* bfd_write_contents. */ \
5924 _bfd_bool_bfd_false_error, \
5925 coff_write_object_contents, \
5926 _bfd_write_archive_contents, \
5927 _bfd_bool_bfd_false_error \
5928 }, \
4c117b10
ILT
5929 \
5930 BFD_JUMP_TABLE_GENERIC (coff), \
5931 BFD_JUMP_TABLE_COPY (coff), \
5932 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
5933 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
5934 BFD_JUMP_TABLE_SYMBOLS (coff), \
5935 BFD_JUMP_TABLE_RELOCS (coff), \
5936 BFD_JUMP_TABLE_WRITE (coff), \
5937 BFD_JUMP_TABLE_LINK (coff), \
5938 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
46f2f11d 5939 \
4c117b10 5940 ALTERNATIVE, \
46f2f11d 5941 \
3fa78519 5942 SWAP_TABLE \
c3c89269
NC
5943};
5944
3fa78519
SS
5945#define CREATE_BIGHDR_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
5946const bfd_target VAR = \
5947{ \
5948 NAME , \
5949 bfd_target_coff_flavour, \
7920ce38
NC
5950 BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
5951 BFD_ENDIAN_BIG, /* Header byte order is big. */ \
3fa78519
SS
5952 /* object flags */ \
5953 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
5954 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
5955 /* section flags */ \
5956 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
7920ce38
NC
5957 UNDER, /* Leading symbol underscore. */ \
5958 '/', /* AR_pad_char. */ \
5959 15, /* AR_max_namelen. */ \
0aabe54e 5960 0, /* match priority. */ \
d1bcae83 5961 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
46f2f11d 5962 \
3fa78519
SS
5963 /* Data conversion functions. */ \
5964 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5965 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5966 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
46f2f11d 5967 \
3fa78519
SS
5968 /* Header conversion functions. */ \
5969 bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
5970 bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
5971 bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
5972 \
d00dd7dc
AM
5973 { /* bfd_check_format. */ \
5974 _bfd_dummy_target, \
5975 coff_object_p, \
5976 bfd_generic_archive_p, \
5977 _bfd_dummy_target \
5978 }, \
5979 { /* bfd_set_format. */ \
5980 _bfd_bool_bfd_false_error, \
5981 coff_mkobject, \
5982 _bfd_generic_mkarchive, \
5983 _bfd_bool_bfd_false_error \
5984 }, \
5985 { /* bfd_write_contents. */ \
5986 _bfd_bool_bfd_false_error, \
5987 coff_write_object_contents, \
5988 _bfd_write_archive_contents, \
5989 _bfd_bool_bfd_false_error \
5990 }, \
3fa78519
SS
5991 \
5992 BFD_JUMP_TABLE_GENERIC (coff), \
5993 BFD_JUMP_TABLE_COPY (coff), \
5994 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
5995 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
5996 BFD_JUMP_TABLE_SYMBOLS (coff), \
5997 BFD_JUMP_TABLE_RELOCS (coff), \
5998 BFD_JUMP_TABLE_WRITE (coff), \
5999 BFD_JUMP_TABLE_LINK (coff), \
6000 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
46f2f11d 6001 \
3fa78519 6002 ALTERNATIVE, \
46f2f11d 6003 \
3fa78519
SS
6004 SWAP_TABLE \
6005};
6006
6007#define CREATE_LITTLE_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
4c117b10
ILT
6008const bfd_target VAR = \
6009{ \
6010 NAME , \
6011 bfd_target_coff_flavour, \
7920ce38
NC
6012 BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
6013 BFD_ENDIAN_LITTLE, /* Header byte order is little. */ \
4c117b10
ILT
6014 /* object flags */ \
6015 (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
6016 HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
6017 /* section flags */ \
6018 (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
7920ce38
NC
6019 UNDER, /* Leading symbol underscore. */ \
6020 '/', /* AR_pad_char. */ \
6021 15, /* AR_max_namelen. */ \
0aabe54e 6022 0, /* match priority. */ \
d1bcae83 6023 TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols. */ \
4c117b10
ILT
6024 \
6025 /* Data conversion functions. */ \
6026 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
6027 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
6028 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
6029 /* Header conversion functions. */ \
6030 bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
6031 bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
6032 bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
d00dd7dc
AM
6033 \
6034 { /* bfd_check_format. */ \
6035 _bfd_dummy_target, \
6036 coff_object_p, \
6037 bfd_generic_archive_p, \
6038 _bfd_dummy_target \
6039 }, \
6040 { /* bfd_set_format. */ \
6041 _bfd_bool_bfd_false_error, \
6042 coff_mkobject, \
6043 _bfd_generic_mkarchive, \
6044 _bfd_bool_bfd_false_error \
6045 }, \
6046 { /* bfd_write_contents. */ \
6047 _bfd_bool_bfd_false_error, \
6048 coff_write_object_contents, \
6049 _bfd_write_archive_contents, \
6050 _bfd_bool_bfd_false_error \
6051 }, \
4c117b10
ILT
6052 \
6053 BFD_JUMP_TABLE_GENERIC (coff), \
6054 BFD_JUMP_TABLE_COPY (coff), \
6055 BFD_JUMP_TABLE_CORE (_bfd_nocore), \
6056 BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
6057 BFD_JUMP_TABLE_SYMBOLS (coff), \
6058 BFD_JUMP_TABLE_RELOCS (coff), \
6059 BFD_JUMP_TABLE_WRITE (coff), \
6060 BFD_JUMP_TABLE_LINK (coff), \
6061 BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
6062 \
6063 ALTERNATIVE, \
46f2f11d 6064 \
3fa78519 6065 SWAP_TABLE \
c3c89269 6066};
This page took 1.460439 seconds and 4 git commands to generate.