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