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