Coverage Report

Created: 2023-06-29 07:10

/src/binutils-gdb/bfd/coffcode.h
Line
Count
Source (jump to first uncovered line)
1
/* Support for the generic parts of most COFF variants, for BFD.
2
   Copyright (C) 1990-2023 Free Software Foundation, Inc.
3
   Written by Cygnus Support.
4
5
   This file is part of BFD, the Binary File Descriptor library.
6
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
9
   the Free Software Foundation; either version 3 of the License, or
10
   (at your option) any later version.
11
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.
16
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
19
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20
   MA 02110-1301, USA.  */
21
22
/* Most of this hacked by  Steve Chamberlain,
23
      sac@cygnus.com.  */
24
/*
25
SECTION
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
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
41
  @xref{Relocations}.
42
43
SUBSECTION
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
68
SUBSECTION
69
  How the coff backend works
70
71
SUBSUBSECTION
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
95
SUBSUBSECTION
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
106
  extension is defined in section 4 of the Microsoft PE/COFF
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
110
  filled with a slash ("/") followed by the ASCII decimal
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
127
  The functionality is supported in BFD by code implemented under
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.
130
  If defined, it is used to initialise a flag,
131
  @code{_bfd_coff_long_section_names}, and a hook function pointer,
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 a copy of the flag
138
  in coff object tdata to be altered at runtime, on formats that
139
  support long section names at all; on other formats it points
140
  to a stub that returns an error indication.
141
142
  With input BFDs, the flag is set according to whether any long section
143
  names are detected while reading the section headers.  For a completely
144
  new BFD, the flag is set to the default for the target format.  This
145
  information can be used by a client of the BFD library when deciding
146
  what output format to generate, and means that a BFD that is opened
147
  for read and subsequently converted to a writeable BFD and modified
148
  in-place will retain whatever format it had on input.
149
150
  If @code{COFF_LONG_SECTION_NAMES} is simply defined (blank), or is
151
  defined to the value "1", then long section names are enabled by
152
  default; if it is defined to the value zero, they are disabled by
153
  default (but still accepted in input BFDs).  The header @file{coffcode.h}
154
  defines a macro, @code{COFF_DEFAULT_LONG_SECTION_NAMES}, which is
155
  used in the backends to initialise the backend data structure fields
156
  appropriately; see the comments for further detail.
157
158
SUBSUBSECTION
159
  Bit twiddling
160
161
  Each flavour of coff supported in BFD has its own header file
162
  describing the external layout of the structures. There is also
163
  an internal description of the coff layout, in
164
  @file{coff/internal.h}. A major function of the
165
  coff backend is swapping the bytes and twiddling the bits to
166
  translate the external form of the structures into the normal
167
  internal form. This is all performed in the
168
  @code{bfd_swap}_@i{thing}_@i{direction} routines. Some
169
  elements are different sizes between different versions of
170
  coff; it is the duty of the coff version specific include file
171
  to override the definitions of various packing routines in
172
  @file{coffcode.h}. E.g., the size of line number entry in coff is
173
  sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
174
  @code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
175
  correct one. No doubt, some day someone will find a version of
176
  coff which has a varying field size not catered to at the
177
  moment. To port BFD, that person will have to add more @code{#defines}.
178
  Three of the bit twiddling routines are exported to
179
  @code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
180
  and @code{coff_swap_lineno_in}. @code{GDB} reads the symbol
181
  table on its own, but uses BFD to fix things up.  More of the
182
  bit twiddlers are exported for @code{gas};
183
  @code{coff_swap_aux_out}, @code{coff_swap_sym_out},
184
  @code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
185
  @code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
186
  @code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
187
  of all the symbol table and reloc drudgery itself, thereby
188
  saving the internal BFD overhead, but uses BFD to swap things
189
  on the way out, making cross ports much safer.  Doing so also
190
  allows BFD (and thus the linker) to use the same header files
191
  as @code{gas}, which makes one avenue to disaster disappear.
192
193
SUBSUBSECTION
194
  Symbol reading
195
196
  The simple canonical form for symbols used by BFD is not rich
197
  enough to keep all the information available in a coff symbol
198
  table. The back end gets around this problem by keeping the original
199
  symbol table around, "behind the scenes".
200
201
  When a symbol table is requested (through a call to
202
  @code{bfd_canonicalize_symtab}), a request gets through to
203
  @code{coff_get_normalized_symtab}. This reads the symbol table from
204
  the coff file and swaps all the structures inside into the
205
  internal form. It also fixes up all the pointers in the table
206
  (represented in the file by offsets from the first symbol in
207
  the table) into physical pointers to elements in the new
208
  internal table. This involves some work since the meanings of
209
  fields change depending upon context: a field that is a
210
  pointer to another structure in the symbol table at one moment
211
  may be the size in bytes of a structure at the next.  Another
212
  pass is made over the table. All symbols which mark file names
213
  (<<C_FILE>> symbols) are modified so that the internal
214
  string points to the value in the auxent (the real filename)
215
  rather than the normal text associated with the symbol
216
  (@code{".file"}).
217
218
  At this time the symbol names are moved around. Coff stores
219
  all symbols less than nine characters long physically
220
  within the symbol table; longer strings are kept at the end of
221
  the file in the string table. This pass moves all strings
222
  into memory and replaces them with pointers to the strings.
223
224
  The symbol table is massaged once again, this time to create
225
  the canonical table used by the BFD application. Each symbol
226
  is inspected in turn, and a decision made (using the
227
  @code{sclass} field) about the various flags to set in the
228
  @code{asymbol}.  @xref{Symbols}. The generated canonical table
229
  shares strings with the hidden internal symbol table.
230
231
  Any linenumbers are read from the coff file too, and attached
232
  to the symbols which own the functions the linenumbers belong to.
233
234
SUBSUBSECTION
235
  Symbol writing
236
237
  Writing a symbol to a coff file which didn't come from a coff
238
  file will lose any debugging information. The @code{asymbol}
239
  structure remembers the BFD from which the symbol was taken, and on
240
  output the back end makes sure that the same destination target as
241
  source target is present.
242
243
  When the symbols have come from a coff file then all the
244
  debugging information is preserved.
245
246
  Symbol tables are provided for writing to the back end in a
247
  vector of pointers to pointers. This allows applications like
248
  the linker to accumulate and output large symbol tables
249
  without having to do too much byte copying.
250
251
  This function runs through the provided symbol table and
252
  patches each symbol marked as a file place holder
253
  (@code{C_FILE}) to point to the next file place holder in the
254
  list. It also marks each @code{offset} field in the list with
255
  the offset from the first symbol of the current symbol.
256
257
  Another function of this procedure is to turn the canonical
258
  value form of BFD into the form used by coff. Internally, BFD
259
  expects symbol values to be offsets from a section base; so a
260
  symbol physically at 0x120, but in a section starting at
261
  0x100, would have the value 0x20. Coff expects symbols to
262
  contain their final value, so symbols have their values
263
  changed at this point to reflect their sum with their owning
264
  section.  This transformation uses the
265
  <<output_section>> field of the @code{asymbol}'s
266
  @code{asection} @xref{Sections}.
267
268
  o <<coff_mangle_symbols>>
269
270
  This routine runs though the provided symbol table and uses
271
  the offsets generated by the previous pass and the pointers
272
  generated when the symbol table was read in to create the
273
  structured hierarchy required by coff. It changes each pointer
274
  to a symbol into the index into the symbol table of the asymbol.
275
276
  o <<coff_write_symbols>>
277
278
  This routine runs through the symbol table and patches up the
279
  symbols from their internal form into the coff way, calls the
280
  bit twiddlers, and writes out the table to the file.
281
282
*/
283
284
/*
285
INTERNAL_DEFINITION
286
  coff_symbol_type
287
288
DESCRIPTION
289
  The hidden information for an <<asymbol>> is described in a
290
  <<combined_entry_type>>:
291
292
CODE_FRAGMENT
293
.typedef struct coff_ptr_struct
294
.{
295
.  {* Remembers the offset from the first symbol in the file for
296
.     this symbol.  Generated by coff_renumber_symbols.  *}
297
.  unsigned int offset;
298
.
299
.  {* Selects between the elements of the union below.  *}
300
.  unsigned int is_sym : 1;
301
.
302
.  {* Selects between the elements of the x_sym.x_tagndx union.  If set,
303
.     p is valid and the field will be renumbered.  *}
304
.  unsigned int fix_tag : 1;
305
.
306
.  {* Selects between the elements of the x_sym.x_fcnary.x_fcn.x_endndx
307
.     union.  If set, p is valid and the field will be renumbered.  *}
308
.  unsigned int fix_end : 1;
309
.
310
.  {* Selects between the elements of the x_csect.x_scnlen union.  If set,
311
.     p is valid and the field will be renumbered.  *}
312
.  unsigned int fix_scnlen : 1;
313
.
314
.  {* If set, u.syment.n_value contains a pointer to a symbol.  The final
315
.     value will be the offset field.  Used for XCOFF C_BSTAT symbols.  *}
316
.  unsigned int fix_value : 1;
317
.
318
.  {* If set, u.syment.n_value is an index into the line number entries.
319
.     Used for XCOFF C_BINCL/C_EINCL symbols.  *}
320
.  unsigned int fix_line : 1;
321
.
322
.  {* The container for the symbol structure as read and translated
323
.     from the file.  *}
324
.  union
325
.  {
326
.    union internal_auxent auxent;
327
.    struct internal_syment syment;
328
.  } u;
329
.
330
. {* An extra pointer which can used by format based on COFF (like XCOFF)
331
.    to provide extra information to their backend.  *}
332
. void *extrap;
333
.} combined_entry_type;
334
.
335
.{* Each canonical asymbol really looks like this: *}
336
.
337
.typedef struct coff_symbol_struct
338
.{
339
.  {* The actual symbol which the rest of BFD works with *}
340
.  asymbol symbol;
341
.
342
.  {* A pointer to the hidden information for this symbol *}
343
.  combined_entry_type *native;
344
.
345
.  {* A pointer to the linenumber information for this symbol *}
346
.  struct lineno_cache_entry *lineno;
347
.
348
.  {* Have the line numbers been relocated yet ? *}
349
.  bool done_lineno;
350
.} coff_symbol_type;
351
.
352
*/
353
354
#include "libiberty.h"
355
356
#ifdef COFF_WITH_PE
357
#include "peicode.h"
358
#else
359
#include "coffswap.h"
360
#endif
361
362
0
#define STRING_SIZE_SIZE 4
363
364
10.7M
#define DOT_DEBUG ".debug"
365
10.6M
#define DOT_ZDEBUG  ".zdebug"
366
837k
#define GNU_LINKONCE_WI ".gnu.linkonce.wi."
367
837k
#define GNU_LINKONCE_WT ".gnu.linkonce.wt."
368
0
#define DOT_RELOC ".reloc"
369
370
#if defined(COFF_WITH_PE) || defined(COFF_GO32_EXE) || defined(COFF_GO32)
371
# define COFF_WITH_EXTENDED_RELOC_COUNTER
372
#endif
373
374
#if defined (COFF_LONG_SECTION_NAMES)
375
/* Needed to expand the inputs to BLANKOR1TOODD.  */
376
#define COFFLONGSECTIONCATHELPER(x,y)    x ## y
377
/* If the input macro Y is blank or '1', return an odd number; if it is
378
   '0', return an even number.  Result undefined in all other cases.  */
379
#define BLANKOR1TOODD(y)     COFFLONGSECTIONCATHELPER(1,y)
380
/* Defined to numerical 0 or 1 according to whether generation of long
381
   section names is disabled or enabled by default.  */
382
#define COFF_ENABLE_LONG_SECTION_NAMES   (BLANKOR1TOODD(COFF_LONG_SECTION_NAMES) & 1)
383
/* Where long section names are supported, we allow them to be enabled
384
   and disabled at runtime, so select an appropriate hook function for
385
   _bfd_coff_set_long_section_names.  */
386
#define COFF_LONG_SECTION_NAMES_SETTER   bfd_coff_set_long_section_names_allowed
387
#else /* !defined (COFF_LONG_SECTION_NAMES) */
388
/* If long section names are not supported, this stub disallows any
389
   attempt to enable them at run-time.  */
390
#define COFF_LONG_SECTION_NAMES_SETTER   bfd_coff_set_long_section_names_disallowed
391
#endif /* defined (COFF_LONG_SECTION_NAMES) */
392
393
/* Define a macro that can be used to initialise both the fields relating
394
   to long section names in the backend data struct simultaneously.  */
395
#if COFF_ENABLE_LONG_SECTION_NAMES
396
#define COFF_DEFAULT_LONG_SECTION_NAMES  (true), COFF_LONG_SECTION_NAMES_SETTER
397
#else /* !COFF_ENABLE_LONG_SECTION_NAMES */
398
#define COFF_DEFAULT_LONG_SECTION_NAMES  (false), COFF_LONG_SECTION_NAMES_SETTER
399
#endif /* COFF_ENABLE_LONG_SECTION_NAMES */
400
401
static enum coff_symbol_classification coff_classify_symbol
402
  (bfd *, struct internal_syment *);
403

404
/* void warning(); */
405
406
#if defined (COFF_LONG_SECTION_NAMES)
407
static bool
408
bfd_coff_set_long_section_names_allowed (bfd *abfd, int enable)
409
1.23M
{
410
1.23M
  bfd_coff_long_section_names (abfd) = enable;
411
1.23M
  return true;
412
1.23M
}
pei-i386.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
49.7k
{
410
49.7k
  bfd_coff_long_section_names (abfd) = enable;
411
49.7k
  return true;
412
49.7k
}
pe-x86_64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
92.1k
{
410
92.1k
  bfd_coff_long_section_names (abfd) = enable;
411
92.1k
  return true;
412
92.1k
}
pei-x86_64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
74.0k
{
410
74.0k
  bfd_coff_long_section_names (abfd) = enable;
411
74.0k
  return true;
412
74.0k
}
pei-aarch64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
47.4k
{
410
47.4k
  bfd_coff_long_section_names (abfd) = enable;
411
47.4k
  return true;
412
47.4k
}
pe-aarch64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
36.9k
{
410
36.9k
  bfd_coff_long_section_names (abfd) = enable;
411
36.9k
  return true;
412
36.9k
}
pei-ia64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
40.5k
{
410
40.5k
  bfd_coff_long_section_names (abfd) = enable;
411
40.5k
  return true;
412
40.5k
}
pei-loongarch64.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
32.5k
{
410
32.5k
  bfd_coff_long_section_names (abfd) = enable;
411
32.5k
  return true;
412
32.5k
}
coff-go32.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
563k
{
410
563k
  bfd_coff_long_section_names (abfd) = enable;
411
563k
  return true;
412
563k
}
Unexecuted instantiation: coff-stgo32.c:bfd_coff_set_long_section_names_allowed
pe-arm-wince.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
9.96k
{
410
9.96k
  bfd_coff_long_section_names (abfd) = enable;
411
9.96k
  return true;
412
9.96k
}
pe-arm.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
9.96k
{
410
9.96k
  bfd_coff_long_section_names (abfd) = enable;
411
9.96k
  return true;
412
9.96k
}
pe-i386.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
27.1k
{
410
27.1k
  bfd_coff_long_section_names (abfd) = enable;
411
27.1k
  return true;
412
27.1k
}
pe-mcore.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
23.7k
{
410
23.7k
  bfd_coff_long_section_names (abfd) = enable;
411
23.7k
  return true;
412
23.7k
}
pe-sh.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
23.8k
{
410
23.8k
  bfd_coff_long_section_names (abfd) = enable;
411
23.8k
  return true;
412
23.8k
}
pei-arm-wince.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
38.1k
{
410
38.1k
  bfd_coff_long_section_names (abfd) = enable;
411
38.1k
  return true;
412
38.1k
}
pei-arm.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
54.5k
{
410
54.5k
  bfd_coff_long_section_names (abfd) = enable;
411
54.5k
  return true;
412
54.5k
}
pei-mcore.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
67.6k
{
410
67.6k
  bfd_coff_long_section_names (abfd) = enable;
411
67.6k
  return true;
412
67.6k
}
pei-sh.c:bfd_coff_set_long_section_names_allowed
Line
Count
Source
409
40.2k
{
410
40.2k
  bfd_coff_long_section_names (abfd) = enable;
411
40.2k
  return true;
412
40.2k
}
413
#else /* !defined (COFF_LONG_SECTION_NAMES) */
414
static bool
415
bfd_coff_set_long_section_names_disallowed (bfd *abfd ATTRIBUTE_UNUSED,
416
              int enable ATTRIBUTE_UNUSED)
417
25.4M
{
418
25.4M
  return false;
419
25.4M
}
coff-x86_64.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
4.82M
{
418
4.82M
  return false;
419
4.82M
}
coff64-rs6000.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
496k
{
418
496k
  return false;
419
496k
}
cf-i386lynx.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
631k
{
418
631k
  return false;
419
631k
}
coff-i386.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
631k
{
418
631k
  return false;
419
631k
}
coff-rs6000.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
7.85M
{
418
7.85M
  return false;
419
7.85M
}
coff-sh.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
4.19M
{
418
4.19M
  return false;
419
4.19M
}
coff-tic30.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
2.27M
{
418
2.27M
  return false;
419
2.27M
}
Unexecuted instantiation: coff-tic4x.c:bfd_coff_set_long_section_names_disallowed
coff-tic54x.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
3.92M
{
418
3.92M
  return false;
419
3.92M
}
coff-z80.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
427k
{
418
427k
  return false;
419
427k
}
coff-z8k.c:bfd_coff_set_long_section_names_disallowed
Line
Count
Source
417
193k
{
418
193k
  return false;
419
193k
}
420
#endif /* defined (COFF_LONG_SECTION_NAMES) */
421
422
/* Return a word with STYP_* (scnhdr.s_flags) flags set to represent
423
   the incoming SEC_* flags.  The inverse of this function is
424
   styp_to_sec_flags().  NOTE: If you add to/change this routine, you
425
   should probably mirror the changes in styp_to_sec_flags().  */
426
427
#ifndef COFF_WITH_PE
428
429
/* Macros for setting debugging flags.  */
430
431
#ifdef STYP_DEBUG
432
0
#define STYP_XCOFF_DEBUG STYP_DEBUG
433
#else
434
0
#define STYP_XCOFF_DEBUG STYP_INFO
435
#endif
436
437
#ifdef COFF_ALIGN_IN_S_FLAGS
438
0
#define STYP_DEBUG_INFO STYP_DSECT
439
#else
440
0
#define STYP_DEBUG_INFO STYP_INFO
441
#endif
442
443
static long
444
sec_to_styp_flags (const char *sec_name, flagword sec_flags)
445
0
{
446
0
  long styp_flags = 0;
447
448
0
  if (!strcmp (sec_name, _TEXT))
449
0
    {
450
0
      styp_flags = STYP_TEXT;
451
0
    }
452
0
  else if (!strcmp (sec_name, _DATA))
453
0
    {
454
0
      styp_flags = STYP_DATA;
455
0
    }
456
0
  else if (!strcmp (sec_name, _BSS))
457
0
    {
458
0
      styp_flags = STYP_BSS;
459
#ifdef _COMMENT
460
    }
461
0
  else if (!strcmp (sec_name, _COMMENT))
462
0
    {
463
0
      styp_flags = STYP_INFO;
464
#endif /* _COMMENT */
465
#ifdef _LIB
466
    }
467
0
  else if (!strcmp (sec_name, _LIB))
468
0
    {
469
0
      styp_flags = STYP_LIB;
470
#endif /* _LIB */
471
#ifdef _LIT
472
    }
473
  else if (!strcmp (sec_name, _LIT))
474
    {
475
      styp_flags = STYP_LIT;
476
#endif /* _LIT */
477
0
    }
478
0
  else if (startswith (sec_name, DOT_DEBUG)
479
0
     || startswith (sec_name, DOT_ZDEBUG))
480
0
    {
481
      /* Handle the XCOFF debug section and DWARF2 debug sections.  */
482
0
      if (!sec_name[6])
483
0
  styp_flags = STYP_XCOFF_DEBUG;
484
0
      else
485
0
  styp_flags = STYP_DEBUG_INFO;
486
0
    }
487
0
  else if (startswith (sec_name, ".stab"))
488
0
    {
489
0
      styp_flags = STYP_DEBUG_INFO;
490
0
    }
491
#ifdef COFF_LONG_SECTION_NAMES
492
0
  else if (startswith (sec_name, GNU_LINKONCE_WI)
493
0
     || startswith (sec_name, GNU_LINKONCE_WT))
494
0
    {
495
0
      styp_flags = STYP_DEBUG_INFO;
496
0
    }
497
0
#endif
498
#ifdef RS6000COFF_C
499
0
  else if (!strcmp (sec_name, _TDATA))
500
0
    {
501
0
      styp_flags = STYP_TDATA;
502
0
    }
503
0
  else if (!strcmp (sec_name, _TBSS))
504
0
    {
505
0
      styp_flags = STYP_TBSS;
506
0
    }
507
0
  else if (!strcmp (sec_name, _PAD))
508
0
    {
509
0
      styp_flags = STYP_PAD;
510
0
    }
511
0
  else if (!strcmp (sec_name, _LOADER))
512
0
    {
513
0
      styp_flags = STYP_LOADER;
514
0
    }
515
0
  else if (!strcmp (sec_name, _EXCEPT))
516
0
    {
517
0
      styp_flags = STYP_EXCEPT;
518
0
    }
519
0
  else if (!strcmp (sec_name, _TYPCHK))
520
0
    {
521
0
      styp_flags = STYP_TYPCHK;
522
0
    }
523
0
  else if (sec_flags & SEC_DEBUGGING)
524
0
    {
525
0
      int i;
526
527
0
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
528
0
  if (!strcmp (sec_name, xcoff_dwsect_names[i].xcoff_name))
529
0
    {
530
0
      styp_flags = STYP_DWARF | xcoff_dwsect_names[i].flag;
531
0
      break;
532
0
    }
533
0
    }
534
0
#endif
535
  /* Try and figure out what it should be */
536
0
  else if (sec_flags & SEC_CODE)
537
0
    {
538
0
      styp_flags = STYP_TEXT;
539
0
    }
540
0
  else if (sec_flags & SEC_DATA)
541
0
    {
542
0
      styp_flags = STYP_DATA;
543
0
    }
544
0
  else if (sec_flags & SEC_READONLY)
545
0
    {
546
0
#ifdef STYP_LIT     /* 29k readonly text/data section */
547
0
      styp_flags = STYP_LIT;
548
#else
549
      styp_flags = STYP_TEXT;
550
#endif /* STYP_LIT */
551
0
    }
552
0
  else if (sec_flags & SEC_LOAD)
553
0
    {
554
0
      styp_flags = STYP_TEXT;
555
0
    }
556
0
  else if (sec_flags & SEC_ALLOC)
557
0
    {
558
0
      styp_flags = STYP_BSS;
559
0
    }
560
561
#ifdef STYP_CLINK
562
0
  if (sec_flags & SEC_TIC54X_CLINK)
563
0
    styp_flags |= STYP_CLINK;
564
#endif
565
566
#ifdef STYP_BLOCK
567
0
  if (sec_flags & SEC_TIC54X_BLOCK)
568
0
    styp_flags |= STYP_BLOCK;
569
#endif
570
571
0
#ifdef STYP_NOLOAD
572
0
  if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
573
0
    styp_flags |= STYP_NOLOAD;
574
0
#endif
575
576
0
  return styp_flags;
577
0
}
Unexecuted instantiation: coff-x86_64.c:sec_to_styp_flags
Unexecuted instantiation: coff64-rs6000.c:sec_to_styp_flags
Unexecuted instantiation: cf-i386lynx.c:sec_to_styp_flags
Unexecuted instantiation: coff-go32.c:sec_to_styp_flags
Unexecuted instantiation: coff-i386.c:sec_to_styp_flags
Unexecuted instantiation: coff-rs6000.c:sec_to_styp_flags
Unexecuted instantiation: coff-sh.c:sec_to_styp_flags
Unexecuted instantiation: coff-stgo32.c:sec_to_styp_flags
Unexecuted instantiation: coff-tic30.c:sec_to_styp_flags
Unexecuted instantiation: coff-tic4x.c:sec_to_styp_flags
Unexecuted instantiation: coff-tic54x.c:sec_to_styp_flags
Unexecuted instantiation: coff-z80.c:sec_to_styp_flags
Unexecuted instantiation: coff-z8k.c:sec_to_styp_flags
578
579
#else /* COFF_WITH_PE */
580
581
/* The PE version; see above for the general comments.  The non-PE
582
   case seems to be more guessing, and breaks PE format; specifically,
583
   .rdata is readonly, but it sure ain't text.  Really, all this
584
   should be set up properly in gas (or whatever assembler is in use),
585
   and honor whatever objcopy/strip, etc. sent us as input.  */
586
587
static long
588
sec_to_styp_flags (const char *sec_name, flagword sec_flags)
589
0
{
590
0
  long styp_flags = 0;
591
0
  bool is_dbg = false;
592
593
0
  if (startswith (sec_name, DOT_DEBUG)
594
0
      || startswith (sec_name, DOT_ZDEBUG)
595
0
#ifdef COFF_LONG_SECTION_NAMES
596
0
      || startswith (sec_name, GNU_LINKONCE_WI)
597
0
      || startswith (sec_name, GNU_LINKONCE_WT)
598
0
#endif
599
0
      || startswith (sec_name, ".stab"))
600
0
    is_dbg = true;
601
602
  /* caution: there are at least three groups of symbols that have
603
     very similar bits and meanings: IMAGE_SCN*, SEC_*, and STYP_*.
604
     SEC_* are the BFD internal flags, used for generic BFD
605
     information.  STYP_* are the COFF section flags which appear in
606
     COFF files.  IMAGE_SCN_* are the PE section flags which appear in
607
     PE files.  The STYP_* flags and the IMAGE_SCN_* flags overlap,
608
     but there are more IMAGE_SCN_* flags.  */
609
610
  /* FIXME: There is no gas syntax to specify the debug section flag.  */
611
0
  if (is_dbg)
612
0
    {
613
0
      sec_flags &= (SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD
614
0
        | SEC_LINK_DUPLICATES_SAME_CONTENTS
615
0
        | SEC_LINK_DUPLICATES_SAME_SIZE);
616
0
      sec_flags |= SEC_DEBUGGING | SEC_READONLY;
617
0
    }
618
619
  /* skip LOAD */
620
  /* READONLY later */
621
  /* skip RELOC */
622
0
  if ((sec_flags & SEC_CODE) != 0)
623
0
    styp_flags |= IMAGE_SCN_CNT_CODE;
624
0
  if ((sec_flags & (SEC_DATA | SEC_DEBUGGING)) != 0)
625
0
    styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
626
0
  if ((sec_flags & SEC_ALLOC) != 0 && (sec_flags & SEC_LOAD) == 0)
627
0
    styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA;  /* ==STYP_BSS */
628
  /* skip ROM */
629
  /* skip constRUCTOR */
630
  /* skip CONTENTS */
631
#ifndef COFF_IMAGE_WITH_PE
632
  /* I don't think any of the IMAGE_SCN_LNK_* flags set below should be set
633
     when the output is PE. Only object files should have them, for the linker
634
     to consume.  */
635
0
  if ((sec_flags & SEC_IS_COMMON) != 0)
636
0
    styp_flags |= IMAGE_SCN_LNK_COMDAT;
637
#endif
638
0
  if ((sec_flags & SEC_DEBUGGING) != 0)
639
0
    styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
640
0
  if ((sec_flags & (SEC_EXCLUDE | SEC_NEVER_LOAD)) != 0 && !is_dbg)
641
#ifdef COFF_IMAGE_WITH_PE
642
0
    styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
643
#else
644
0
    styp_flags |= IMAGE_SCN_LNK_REMOVE;
645
#endif
646
  /* skip IN_MEMORY */
647
  /* skip SORT */
648
#ifndef COFF_IMAGE_WITH_PE
649
0
  if (sec_flags & SEC_LINK_ONCE)
650
0
    styp_flags |= IMAGE_SCN_LNK_COMDAT;
651
0
  if ((sec_flags
652
0
       & (SEC_LINK_DUPLICATES_DISCARD | SEC_LINK_DUPLICATES_SAME_CONTENTS
653
0
    | SEC_LINK_DUPLICATES_SAME_SIZE)) != 0)
654
0
    styp_flags |= IMAGE_SCN_LNK_COMDAT;
655
#endif
656
657
  /* skip LINKER_CREATED */
658
659
0
  if ((sec_flags & SEC_COFF_NOREAD) == 0)
660
0
    styp_flags |= IMAGE_SCN_MEM_READ;     /* Invert NOREAD for read.  */
661
0
  if ((sec_flags & SEC_READONLY) == 0)
662
0
    styp_flags |= IMAGE_SCN_MEM_WRITE;    /* Invert READONLY for write.  */
663
0
  if (sec_flags & SEC_CODE)
664
0
    styp_flags |= IMAGE_SCN_MEM_EXECUTE;  /* CODE->EXECUTE.  */
665
0
  if (sec_flags & SEC_COFF_SHARED)
666
0
    styp_flags |= IMAGE_SCN_MEM_SHARED;   /* Shared remains meaningful.  */
667
668
0
  return styp_flags;
669
0
}
Unexecuted instantiation: pei-i386.c:sec_to_styp_flags
Unexecuted instantiation: pe-x86_64.c:sec_to_styp_flags
Unexecuted instantiation: pei-x86_64.c:sec_to_styp_flags
Unexecuted instantiation: pei-aarch64.c:sec_to_styp_flags
Unexecuted instantiation: pe-aarch64.c:sec_to_styp_flags
Unexecuted instantiation: pei-ia64.c:sec_to_styp_flags
Unexecuted instantiation: pei-loongarch64.c:sec_to_styp_flags
Unexecuted instantiation: pe-arm-wince.c:sec_to_styp_flags
Unexecuted instantiation: pe-arm.c:sec_to_styp_flags
Unexecuted instantiation: pe-i386.c:sec_to_styp_flags
Unexecuted instantiation: pe-mcore.c:sec_to_styp_flags
Unexecuted instantiation: pe-sh.c:sec_to_styp_flags
Unexecuted instantiation: pei-arm-wince.c:sec_to_styp_flags
Unexecuted instantiation: pei-arm.c:sec_to_styp_flags
Unexecuted instantiation: pei-mcore.c:sec_to_styp_flags
Unexecuted instantiation: pei-sh.c:sec_to_styp_flags
670
671
#endif /* COFF_WITH_PE */
672
673
/* Return a word with SEC_* flags set to represent the incoming STYP_*
674
   flags (from scnhdr.s_flags).  The inverse of this function is
675
   sec_to_styp_flags().  NOTE: If you add to/change this routine, you
676
   should probably mirror the changes in sec_to_styp_flags().  */
677
678
#ifndef COFF_WITH_PE
679
680
static bool
681
styp_to_sec_flags (bfd *abfd,
682
       void * hdr,
683
       const char *name,
684
       asection *section ATTRIBUTE_UNUSED,
685
       flagword *flags_ptr)
686
26.0M
{
687
26.0M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
26.0M
  unsigned long styp_flags = internal_s->s_flags;
689
26.0M
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
3.92M
  if (styp_flags & STYP_BLOCK)
693
1.24M
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
3.92M
  if (styp_flags & STYP_CLINK)
698
1.13M
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
26.0M
#ifdef STYP_NOLOAD
702
26.0M
  if (styp_flags & STYP_NOLOAD)
703
7.58M
    sec_flags |= SEC_NEVER_LOAD;
704
26.0M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
26.0M
  if (styp_flags & STYP_TEXT)
709
10.4M
    {
710
10.4M
      if (sec_flags & SEC_NEVER_LOAD)
711
5.40M
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
5.08M
      else
713
5.08M
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
10.4M
    }
715
15.5M
  else if (styp_flags & STYP_DATA)
716
1.78M
    {
717
1.78M
      if (sec_flags & SEC_NEVER_LOAD)
718
900k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
887k
      else
720
887k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
1.78M
    }
722
13.7M
  else if (styp_flags & STYP_BSS)
723
940k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
259k
      if (sec_flags & SEC_NEVER_LOAD)
726
82.0k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
177k
      else
728
177k
#endif
729
858k
  sec_flags |= SEC_ALLOC;
730
940k
    }
731
12.8M
  else if (styp_flags & STYP_INFO)
732
1.60M
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
406k
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
1.60M
    }
743
11.1M
  else if (styp_flags & STYP_PAD)
744
587k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
3.30M
  else if (styp_flags & STYP_TDATA)
747
169k
    {
748
169k
      if (sec_flags & SEC_NEVER_LOAD)
749
14.1k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
155k
      else
751
155k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
169k
    }
753
3.13M
  else if (styp_flags & STYP_TBSS)
754
90.0k
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
90.0k
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
90.0k
    }
762
3.04M
  else if (styp_flags & STYP_EXCEPT)
763
148k
    sec_flags |= SEC_LOAD;
764
2.89M
  else if (styp_flags & STYP_LOADER)
765
39.7k
    sec_flags |= SEC_LOAD;
766
2.85M
  else if (styp_flags & STYP_TYPCHK)
767
18.2k
    sec_flags |= SEC_LOAD;
768
2.83M
  else if (styp_flags & STYP_DWARF)
769
36.8k
    sec_flags |= SEC_DEBUGGING;
770
2.80M
#endif
771
10.1M
  else if (strcmp (name, _TEXT) == 0)
772
19.6k
    {
773
19.6k
      if (sec_flags & SEC_NEVER_LOAD)
774
6.57k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
13.0k
      else
776
13.0k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
19.6k
    }
778
10.0M
  else if (strcmp (name, _DATA) == 0)
779
29.5k
    {
780
29.5k
      if (sec_flags & SEC_NEVER_LOAD)
781
5.55k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
24.0k
      else
783
24.0k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
29.5k
    }
785
10.0M
  else if (strcmp (name, _BSS) == 0)
786
15.3k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
4.40k
      if (sec_flags & SEC_NEVER_LOAD)
789
1.81k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
2.59k
      else
791
2.59k
#endif
792
13.4k
  sec_flags |= SEC_ALLOC;
793
15.3k
    }
794
10.0M
  else if (startswith (name, DOT_DEBUG)
795
10.0M
     || startswith (name, DOT_ZDEBUG)
796
#ifdef _COMMENT
797
5.61M
     || strcmp (name, _COMMENT) == 0
798
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
195k
     || startswith (name, GNU_LINKONCE_WI)
801
195k
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
10.0M
     || startswith (name, ".stab"))
804
66.8k
    {
805
#ifdef COFF_PAGE_SIZE
806
25.4k
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
66.8k
    }
809
#ifdef _LIB
810
5.58M
  else if (strcmp (name, _LIB) == 0)
811
5.72k
    ;
812
5.58M
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
5.58M
  else
818
9.97M
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
26.0M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
26.0M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
2.82M
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
26.0M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
26.0M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
26.0M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
553k
  if (startswith (name, ".gnu.linkonce"))
843
407
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
26.0M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
26.0M
  * flags_ptr = sec_flags;
850
26.0M
  return true;
851
26.0M
}
coff-x86_64.c:styp_to_sec_flags
Line
Count
Source
686
4.82M
{
687
4.82M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
4.82M
  unsigned long styp_flags = internal_s->s_flags;
689
4.82M
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
4.82M
#ifdef STYP_NOLOAD
702
4.82M
  if (styp_flags & STYP_NOLOAD)
703
1.34M
    sec_flags |= SEC_NEVER_LOAD;
704
4.82M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
4.82M
  if (styp_flags & STYP_TEXT)
709
1.89M
    {
710
1.89M
      if (sec_flags & SEC_NEVER_LOAD)
711
965k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
928k
      else
713
928k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
1.89M
    }
715
2.93M
  else if (styp_flags & STYP_DATA)
716
309k
    {
717
309k
      if (sec_flags & SEC_NEVER_LOAD)
718
157k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
151k
      else
720
151k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
309k
    }
722
2.62M
  else if (styp_flags & STYP_BSS)
723
161k
    {
724
161k
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
161k
      if (sec_flags & SEC_NEVER_LOAD)
726
41.3k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
119k
      else
728
119k
#endif
729
119k
  sec_flags |= SEC_ALLOC;
730
161k
    }
731
2.46M
  else if (styp_flags & STYP_INFO)
732
294k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
294k
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
294k
      sec_flags |= SEC_DEBUGGING;
741
294k
#endif
742
294k
    }
743
2.16M
  else if (styp_flags & STYP_PAD)
744
99.7k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
2.06M
  else if (strcmp (name, _TEXT) == 0)
772
5.30k
    {
773
5.30k
      if (sec_flags & SEC_NEVER_LOAD)
774
2.85k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
2.45k
      else
776
2.45k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
5.30k
    }
778
2.06M
  else if (strcmp (name, _DATA) == 0)
779
4.81k
    {
780
4.81k
      if (sec_flags & SEC_NEVER_LOAD)
781
1.51k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
3.30k
      else
783
3.30k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
4.81k
    }
785
2.05M
  else if (strcmp (name, _BSS) == 0)
786
2.47k
    {
787
2.47k
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
2.47k
      if (sec_flags & SEC_NEVER_LOAD)
789
541
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
1.93k
      else
791
1.93k
#endif
792
1.93k
  sec_flags |= SEC_ALLOC;
793
2.47k
    }
794
2.05M
  else if (startswith (name, DOT_DEBUG)
795
2.05M
     || startswith (name, DOT_ZDEBUG)
796
2.05M
#ifdef _COMMENT
797
2.05M
     || strcmp (name, _COMMENT) == 0
798
2.05M
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
2.05M
     || startswith (name, ".stab"))
804
20.0k
    {
805
20.0k
#ifdef COFF_PAGE_SIZE
806
20.0k
      sec_flags |= SEC_DEBUGGING;
807
20.0k
#endif
808
20.0k
    }
809
2.03M
#ifdef _LIB
810
2.03M
  else if (strcmp (name, _LIB) == 0)
811
1.70k
    ;
812
2.03M
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
2.03M
  else
818
2.03M
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
4.82M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
4.82M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
512k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
4.82M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
4.82M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
4.82M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
4.82M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
4.82M
  * flags_ptr = sec_flags;
850
4.82M
  return true;
851
4.82M
}
coff64-rs6000.c:styp_to_sec_flags
Line
Count
Source
686
496k
{
687
496k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
496k
  unsigned long styp_flags = internal_s->s_flags;
689
496k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
496k
#ifdef STYP_NOLOAD
702
496k
  if (styp_flags & STYP_NOLOAD)
703
171k
    sec_flags |= SEC_NEVER_LOAD;
704
496k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
496k
  if (styp_flags & STYP_TEXT)
709
218k
    {
710
218k
      if (sec_flags & SEC_NEVER_LOAD)
711
124k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
93.2k
      else
713
93.2k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
218k
    }
715
278k
  else if (styp_flags & STYP_DATA)
716
40.8k
    {
717
40.8k
      if (sec_flags & SEC_NEVER_LOAD)
718
20.1k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
20.6k
      else
720
20.6k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
40.8k
    }
722
237k
  else if (styp_flags & STYP_BSS)
723
20.2k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
20.2k
  sec_flags |= SEC_ALLOC;
730
20.2k
    }
731
217k
  else if (styp_flags & STYP_INFO)
732
32.1k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
32.1k
    }
743
185k
  else if (styp_flags & STYP_PAD)
744
10.7k
    sec_flags = 0;
745
174k
#ifdef RS6000COFF_C
746
174k
  else if (styp_flags & STYP_TDATA)
747
8.56k
    {
748
8.56k
      if (sec_flags & SEC_NEVER_LOAD)
749
1.35k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
7.21k
      else
751
7.21k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
8.56k
    }
753
166k
  else if (styp_flags & STYP_TBSS)
754
6.67k
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
6.67k
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
6.67k
    }
762
159k
  else if (styp_flags & STYP_EXCEPT)
763
8.94k
    sec_flags |= SEC_LOAD;
764
150k
  else if (styp_flags & STYP_LOADER)
765
2.10k
    sec_flags |= SEC_LOAD;
766
148k
  else if (styp_flags & STYP_TYPCHK)
767
1.62k
    sec_flags |= SEC_LOAD;
768
146k
  else if (styp_flags & STYP_DWARF)
769
1.49k
    sec_flags |= SEC_DEBUGGING;
770
145k
#endif
771
145k
  else if (strcmp (name, _TEXT) == 0)
772
581
    {
773
581
      if (sec_flags & SEC_NEVER_LOAD)
774
234
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
347
      else
776
347
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
581
    }
778
144k
  else if (strcmp (name, _DATA) == 0)
779
445
    {
780
445
      if (sec_flags & SEC_NEVER_LOAD)
781
101
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
344
      else
783
344
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
445
    }
785
144k
  else if (strcmp (name, _BSS) == 0)
786
345
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
345
  sec_flags |= SEC_ALLOC;
793
345
    }
794
143k
  else if (startswith (name, DOT_DEBUG)
795
143k
     || startswith (name, DOT_ZDEBUG)
796
#ifdef _COMMENT
797
     || strcmp (name, _COMMENT) == 0
798
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
143k
     || startswith (name, ".stab"))
804
1.22k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
1.22k
    }
809
#ifdef _LIB
810
  else if (strcmp (name, _LIB) == 0)
811
    ;
812
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
142k
  else
818
142k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
496k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
496k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
71.4k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
496k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
496k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
496k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
496k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
496k
  * flags_ptr = sec_flags;
850
496k
  return true;
851
496k
}
cf-i386lynx.c:styp_to_sec_flags
Line
Count
Source
686
631k
{
687
631k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
631k
  unsigned long styp_flags = internal_s->s_flags;
689
631k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
631k
#ifdef STYP_NOLOAD
702
631k
  if (styp_flags & STYP_NOLOAD)
703
193k
    sec_flags |= SEC_NEVER_LOAD;
704
631k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
631k
  if (styp_flags & STYP_TEXT)
709
249k
    {
710
249k
      if (sec_flags & SEC_NEVER_LOAD)
711
119k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
130k
      else
713
130k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
249k
    }
715
381k
  else if (styp_flags & STYP_DATA)
716
67.2k
    {
717
67.2k
      if (sec_flags & SEC_NEVER_LOAD)
718
33.5k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
33.7k
      else
720
33.7k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
67.2k
    }
722
314k
  else if (styp_flags & STYP_BSS)
723
33.9k
    {
724
33.9k
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
33.9k
      if (sec_flags & SEC_NEVER_LOAD)
726
14.1k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
19.7k
      else
728
19.7k
#endif
729
19.7k
  sec_flags |= SEC_ALLOC;
730
33.9k
    }
731
280k
  else if (styp_flags & STYP_INFO)
732
39.0k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
39.0k
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
39.0k
      sec_flags |= SEC_DEBUGGING;
741
39.0k
#endif
742
39.0k
    }
743
241k
  else if (styp_flags & STYP_PAD)
744
15.0k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
226k
  else if (strcmp (name, _TEXT) == 0)
772
875
    {
773
875
      if (sec_flags & SEC_NEVER_LOAD)
774
438
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
437
      else
776
437
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
875
    }
778
225k
  else if (strcmp (name, _DATA) == 0)
779
923
    {
780
923
      if (sec_flags & SEC_NEVER_LOAD)
781
132
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
791
      else
783
791
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
923
    }
785
224k
  else if (strcmp (name, _BSS) == 0)
786
649
    {
787
649
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
649
      if (sec_flags & SEC_NEVER_LOAD)
789
426
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
223
      else
791
223
#endif
792
223
  sec_flags |= SEC_ALLOC;
793
649
    }
794
223k
  else if (startswith (name, DOT_DEBUG)
795
223k
     || startswith (name, DOT_ZDEBUG)
796
223k
#ifdef _COMMENT
797
223k
     || strcmp (name, _COMMENT) == 0
798
223k
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
223k
     || startswith (name, ".stab"))
804
1.75k
    {
805
1.75k
#ifdef COFF_PAGE_SIZE
806
1.75k
      sec_flags |= SEC_DEBUGGING;
807
1.75k
#endif
808
1.75k
    }
809
221k
#ifdef _LIB
810
221k
  else if (strcmp (name, _LIB) == 0)
811
348
    ;
812
221k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
221k
  else
818
221k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
631k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
631k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
62.8k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
631k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
631k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
631k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
631k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
631k
  * flags_ptr = sec_flags;
850
631k
  return true;
851
631k
}
coff-go32.c:styp_to_sec_flags
Line
Count
Source
686
553k
{
687
553k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
553k
  unsigned long styp_flags = internal_s->s_flags;
689
553k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
553k
#ifdef STYP_NOLOAD
702
553k
  if (styp_flags & STYP_NOLOAD)
703
170k
    sec_flags |= SEC_NEVER_LOAD;
704
553k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
553k
  if (styp_flags & STYP_TEXT)
709
216k
    {
710
216k
      if (sec_flags & SEC_NEVER_LOAD)
711
105k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
111k
      else
713
111k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
216k
    }
715
336k
  else if (styp_flags & STYP_DATA)
716
60.0k
    {
717
60.0k
      if (sec_flags & SEC_NEVER_LOAD)
718
30.4k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
29.5k
      else
720
29.5k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
60.0k
    }
722
276k
  else if (styp_flags & STYP_BSS)
723
30.0k
    {
724
30.0k
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
30.0k
      if (sec_flags & SEC_NEVER_LOAD)
726
12.4k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
17.5k
      else
728
17.5k
#endif
729
17.5k
  sec_flags |= SEC_ALLOC;
730
30.0k
    }
731
246k
  else if (styp_flags & STYP_INFO)
732
33.6k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
33.6k
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
33.6k
      sec_flags |= SEC_DEBUGGING;
741
33.6k
#endif
742
33.6k
    }
743
212k
  else if (styp_flags & STYP_PAD)
744
13.7k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
198k
  else if (strcmp (name, _TEXT) == 0)
772
870
    {
773
870
      if (sec_flags & SEC_NEVER_LOAD)
774
437
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
433
      else
776
433
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
870
    }
778
197k
  else if (strcmp (name, _DATA) == 0)
779
908
    {
780
908
      if (sec_flags & SEC_NEVER_LOAD)
781
132
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
776
      else
783
776
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
908
    }
785
196k
  else if (strcmp (name, _BSS) == 0)
786
637
    {
787
637
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
637
      if (sec_flags & SEC_NEVER_LOAD)
789
420
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
217
      else
791
217
#endif
792
217
  sec_flags |= SEC_ALLOC;
793
637
    }
794
196k
  else if (startswith (name, DOT_DEBUG)
795
196k
     || startswith (name, DOT_ZDEBUG)
796
196k
#ifdef _COMMENT
797
196k
     || strcmp (name, _COMMENT) == 0
798
196k
#endif
799
196k
#ifdef COFF_LONG_SECTION_NAMES
800
196k
     || startswith (name, GNU_LINKONCE_WI)
801
196k
     || startswith (name, GNU_LINKONCE_WT)
802
196k
#endif
803
196k
     || startswith (name, ".stab"))
804
1.82k
    {
805
1.82k
#ifdef COFF_PAGE_SIZE
806
1.82k
      sec_flags |= SEC_DEBUGGING;
807
1.82k
#endif
808
1.82k
    }
809
194k
#ifdef _LIB
810
194k
  else if (strcmp (name, _LIB) == 0)
811
347
    ;
812
194k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
194k
  else
818
194k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
553k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
553k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
54.4k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
553k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
553k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
553k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
553k
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
553k
  if (startswith (name, ".gnu.linkonce"))
843
407
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
553k
#endif
845
846
553k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
553k
  * flags_ptr = sec_flags;
850
553k
  return true;
851
553k
}
coff-i386.c:styp_to_sec_flags
Line
Count
Source
686
631k
{
687
631k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
631k
  unsigned long styp_flags = internal_s->s_flags;
689
631k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
631k
#ifdef STYP_NOLOAD
702
631k
  if (styp_flags & STYP_NOLOAD)
703
193k
    sec_flags |= SEC_NEVER_LOAD;
704
631k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
631k
  if (styp_flags & STYP_TEXT)
709
249k
    {
710
249k
      if (sec_flags & SEC_NEVER_LOAD)
711
119k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
130k
      else
713
130k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
249k
    }
715
381k
  else if (styp_flags & STYP_DATA)
716
67.2k
    {
717
67.2k
      if (sec_flags & SEC_NEVER_LOAD)
718
33.5k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
33.7k
      else
720
33.7k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
67.2k
    }
722
314k
  else if (styp_flags & STYP_BSS)
723
33.9k
    {
724
33.9k
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
33.9k
      if (sec_flags & SEC_NEVER_LOAD)
726
14.1k
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
19.7k
      else
728
19.7k
#endif
729
19.7k
  sec_flags |= SEC_ALLOC;
730
33.9k
    }
731
280k
  else if (styp_flags & STYP_INFO)
732
39.0k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
39.0k
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
39.0k
      sec_flags |= SEC_DEBUGGING;
741
39.0k
#endif
742
39.0k
    }
743
241k
  else if (styp_flags & STYP_PAD)
744
15.0k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
226k
  else if (strcmp (name, _TEXT) == 0)
772
875
    {
773
875
      if (sec_flags & SEC_NEVER_LOAD)
774
438
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
437
      else
776
437
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
875
    }
778
225k
  else if (strcmp (name, _DATA) == 0)
779
923
    {
780
923
      if (sec_flags & SEC_NEVER_LOAD)
781
132
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
791
      else
783
791
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
923
    }
785
224k
  else if (strcmp (name, _BSS) == 0)
786
649
    {
787
649
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
649
      if (sec_flags & SEC_NEVER_LOAD)
789
426
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
223
      else
791
223
#endif
792
223
  sec_flags |= SEC_ALLOC;
793
649
    }
794
223k
  else if (startswith (name, DOT_DEBUG)
795
223k
     || startswith (name, DOT_ZDEBUG)
796
223k
#ifdef _COMMENT
797
223k
     || strcmp (name, _COMMENT) == 0
798
223k
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
223k
     || startswith (name, ".stab"))
804
1.75k
    {
805
1.75k
#ifdef COFF_PAGE_SIZE
806
1.75k
      sec_flags |= SEC_DEBUGGING;
807
1.75k
#endif
808
1.75k
    }
809
221k
#ifdef _LIB
810
221k
  else if (strcmp (name, _LIB) == 0)
811
348
    ;
812
221k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
221k
  else
818
221k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
631k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
631k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
62.8k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
631k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
631k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
631k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
631k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
631k
  * flags_ptr = sec_flags;
850
631k
  return true;
851
631k
}
coff-rs6000.c:styp_to_sec_flags
Line
Count
Source
686
7.85M
{
687
7.85M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
7.85M
  unsigned long styp_flags = internal_s->s_flags;
689
7.85M
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
7.85M
#ifdef STYP_NOLOAD
702
7.85M
  if (styp_flags & STYP_NOLOAD)
703
2.38M
    sec_flags |= SEC_NEVER_LOAD;
704
7.85M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
7.85M
  if (styp_flags & STYP_TEXT)
709
3.21M
    {
710
3.21M
      if (sec_flags & SEC_NEVER_LOAD)
711
1.70M
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
1.50M
      else
713
1.50M
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
3.21M
    }
715
4.64M
  else if (styp_flags & STYP_DATA)
716
553k
    {
717
553k
      if (sec_flags & SEC_NEVER_LOAD)
718
281k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
272k
      else
720
272k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
553k
    }
722
4.09M
  else if (styp_flags & STYP_BSS)
723
326k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
326k
  sec_flags |= SEC_ALLOC;
730
326k
    }
731
3.76M
  else if (styp_flags & STYP_INFO)
732
457k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
457k
    }
743
3.31M
  else if (styp_flags & STYP_PAD)
744
181k
    sec_flags = 0;
745
3.12M
#ifdef RS6000COFF_C
746
3.12M
  else if (styp_flags & STYP_TDATA)
747
161k
    {
748
161k
      if (sec_flags & SEC_NEVER_LOAD)
749
12.7k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
148k
      else
751
148k
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
161k
    }
753
2.96M
  else if (styp_flags & STYP_TBSS)
754
83.4k
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
83.4k
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
83.4k
    }
762
2.88M
  else if (styp_flags & STYP_EXCEPT)
763
139k
    sec_flags |= SEC_LOAD;
764
2.74M
  else if (styp_flags & STYP_LOADER)
765
37.6k
    sec_flags |= SEC_LOAD;
766
2.70M
  else if (styp_flags & STYP_TYPCHK)
767
16.6k
    sec_flags |= SEC_LOAD;
768
2.69M
  else if (styp_flags & STYP_DWARF)
769
35.3k
    sec_flags |= SEC_DEBUGGING;
770
2.65M
#endif
771
2.65M
  else if (strcmp (name, _TEXT) == 0)
772
3.55k
    {
773
3.55k
      if (sec_flags & SEC_NEVER_LOAD)
774
338
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
3.22k
      else
776
3.22k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
3.55k
    }
778
2.65M
  else if (strcmp (name, _DATA) == 0)
779
3.56k
    {
780
3.56k
      if (sec_flags & SEC_NEVER_LOAD)
781
873
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
2.69k
      else
783
2.69k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
3.56k
    }
785
2.64M
  else if (strcmp (name, _BSS) == 0)
786
1.82k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
1.82k
  sec_flags |= SEC_ALLOC;
793
1.82k
    }
794
2.64M
  else if (startswith (name, DOT_DEBUG)
795
2.64M
     || startswith (name, DOT_ZDEBUG)
796
#ifdef _COMMENT
797
     || strcmp (name, _COMMENT) == 0
798
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
2.64M
     || startswith (name, ".stab"))
804
11.7k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
11.7k
    }
809
#ifdef _LIB
810
  else if (strcmp (name, _LIB) == 0)
811
    ;
812
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
2.63M
  else
818
2.63M
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
7.85M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
7.85M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
880k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
7.85M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
7.85M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
7.85M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
7.85M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
7.85M
  * flags_ptr = sec_flags;
850
7.85M
  return true;
851
7.85M
}
coff-sh.c:styp_to_sec_flags
Line
Count
Source
686
4.19M
{
687
4.19M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
4.19M
  unsigned long styp_flags = internal_s->s_flags;
689
4.19M
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
4.19M
#ifdef STYP_NOLOAD
702
4.19M
  if (styp_flags & STYP_NOLOAD)
703
1.13M
    sec_flags |= SEC_NEVER_LOAD;
704
4.19M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
4.19M
  if (styp_flags & STYP_TEXT)
709
1.64M
    {
710
1.64M
      if (sec_flags & SEC_NEVER_LOAD)
711
813k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
827k
      else
713
827k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
1.64M
    }
715
2.55M
  else if (styp_flags & STYP_DATA)
716
255k
    {
717
255k
      if (sec_flags & SEC_NEVER_LOAD)
718
109k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
146k
      else
720
146k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
255k
    }
722
2.30M
  else if (styp_flags & STYP_BSS)
723
123k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
123k
  sec_flags |= SEC_ALLOC;
730
123k
    }
731
2.17M
  else if (styp_flags & STYP_INFO)
732
296k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
296k
    }
743
1.88M
  else if (styp_flags & STYP_PAD)
744
116k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
1.76M
  else if (strcmp (name, _TEXT) == 0)
772
2.37k
    {
773
2.37k
      if (sec_flags & SEC_NEVER_LOAD)
774
1.07k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
1.30k
      else
776
1.30k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
2.37k
    }
778
1.76M
  else if (strcmp (name, _DATA) == 0)
779
5.94k
    {
780
5.94k
      if (sec_flags & SEC_NEVER_LOAD)
781
840
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
5.10k
      else
783
5.10k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
5.94k
    }
785
1.75M
  else if (strcmp (name, _BSS) == 0)
786
3.87k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
3.87k
  sec_flags |= SEC_ALLOC;
793
3.87k
    }
794
1.75M
  else if (startswith (name, DOT_DEBUG)
795
1.75M
     || startswith (name, DOT_ZDEBUG)
796
1.75M
#ifdef _COMMENT
797
1.75M
     || strcmp (name, _COMMENT) == 0
798
1.75M
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
1.75M
     || startswith (name, ".stab"))
804
7.67k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
7.67k
    }
809
1.74M
#ifdef _LIB
810
1.74M
  else if (strcmp (name, _LIB) == 0)
811
1.43k
    ;
812
1.74M
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
1.74M
  else
818
1.74M
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
4.19M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
4.19M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
392k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
4.19M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
4.19M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
4.19M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
4.19M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
4.19M
  * flags_ptr = sec_flags;
850
4.19M
  return true;
851
4.19M
}
Unexecuted instantiation: coff-stgo32.c:styp_to_sec_flags
coff-tic30.c:styp_to_sec_flags
Line
Count
Source
686
2.27M
{
687
2.27M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
2.27M
  unsigned long styp_flags = internal_s->s_flags;
689
2.27M
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
2.27M
#ifdef STYP_NOLOAD
702
2.27M
  if (styp_flags & STYP_NOLOAD)
703
654k
    sec_flags |= SEC_NEVER_LOAD;
704
2.27M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
2.27M
  if (styp_flags & STYP_TEXT)
709
898k
    {
710
898k
      if (sec_flags & SEC_NEVER_LOAD)
711
453k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
444k
      else
713
444k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
898k
    }
715
1.37M
  else if (styp_flags & STYP_DATA)
716
152k
    {
717
152k
      if (sec_flags & SEC_NEVER_LOAD)
718
92.1k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
59.8k
      else
720
59.8k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
152k
    }
722
1.22M
  else if (styp_flags & STYP_BSS)
723
77.9k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
77.9k
  sec_flags |= SEC_ALLOC;
730
77.9k
    }
731
1.14M
  else if (styp_flags & STYP_INFO)
732
135k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
135k
    }
743
1.01M
  else if (styp_flags & STYP_PAD)
744
46.6k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
965k
  else if (strcmp (name, _TEXT) == 0)
772
2.20k
    {
773
2.20k
      if (sec_flags & SEC_NEVER_LOAD)
774
415
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
1.78k
      else
776
1.78k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
2.20k
    }
778
963k
  else if (strcmp (name, _DATA) == 0)
779
5.63k
    {
780
5.63k
      if (sec_flags & SEC_NEVER_LOAD)
781
937
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
4.69k
      else
783
4.69k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
5.63k
    }
785
957k
  else if (strcmp (name, _BSS) == 0)
786
1.95k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
1.95k
  sec_flags |= SEC_ALLOC;
793
1.95k
    }
794
955k
  else if (startswith (name, DOT_DEBUG)
795
955k
     || startswith (name, DOT_ZDEBUG)
796
955k
#ifdef _COMMENT
797
955k
     || strcmp (name, _COMMENT) == 0
798
955k
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
955k
     || startswith (name, ".stab"))
804
7.21k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
7.21k
    }
809
948k
#ifdef _LIB
810
948k
  else if (strcmp (name, _LIB) == 0)
811
1.16k
    ;
812
947k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
947k
  else
818
947k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
2.27M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
2.27M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
242k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
2.27M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
2.27M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
2.27M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
2.27M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
2.27M
  * flags_ptr = sec_flags;
850
2.27M
  return true;
851
2.27M
}
Unexecuted instantiation: coff-tic4x.c:styp_to_sec_flags
coff-tic54x.c:styp_to_sec_flags
Line
Count
Source
686
3.92M
{
687
3.92M
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
3.92M
  unsigned long styp_flags = internal_s->s_flags;
689
3.92M
  flagword sec_flags = 0;
690
691
3.92M
#ifdef STYP_BLOCK
692
3.92M
  if (styp_flags & STYP_BLOCK)
693
1.24M
    sec_flags |= SEC_TIC54X_BLOCK;
694
3.92M
#endif
695
696
3.92M
#ifdef STYP_CLINK
697
3.92M
  if (styp_flags & STYP_CLINK)
698
1.13M
    sec_flags |= SEC_TIC54X_CLINK;
699
3.92M
#endif
700
701
3.92M
#ifdef STYP_NOLOAD
702
3.92M
  if (styp_flags & STYP_NOLOAD)
703
1.13M
    sec_flags |= SEC_NEVER_LOAD;
704
3.92M
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
3.92M
  if (styp_flags & STYP_TEXT)
709
1.63M
    {
710
1.63M
      if (sec_flags & SEC_NEVER_LOAD)
711
846k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
792k
      else
713
792k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
1.63M
    }
715
2.28M
  else if (styp_flags & STYP_DATA)
716
234k
    {
717
234k
      if (sec_flags & SEC_NEVER_LOAD)
718
115k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
119k
      else
720
119k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
234k
    }
722
2.05M
  else if (styp_flags & STYP_BSS)
723
107k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
107k
  sec_flags |= SEC_ALLOC;
730
107k
    }
731
1.94M
  else if (styp_flags & STYP_INFO)
732
243k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
243k
    }
743
1.70M
  else if (styp_flags & STYP_PAD)
744
74.6k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
1.62M
  else if (strcmp (name, _TEXT) == 0)
772
1.69k
    {
773
1.69k
      if (sec_flags & SEC_NEVER_LOAD)
774
104
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
1.59k
      else
776
1.59k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
1.69k
    }
778
1.62M
  else if (strcmp (name, _DATA) == 0)
779
4.16k
    {
780
4.16k
      if (sec_flags & SEC_NEVER_LOAD)
781
497
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
3.67k
      else
783
3.67k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
4.16k
    }
785
1.61M
  else if (strcmp (name, _BSS) == 0)
786
1.59k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
1.59k
  sec_flags |= SEC_ALLOC;
793
1.59k
    }
794
1.61M
  else if (startswith (name, DOT_DEBUG)
795
1.61M
     || startswith (name, DOT_ZDEBUG)
796
#ifdef _COMMENT
797
     || strcmp (name, _COMMENT) == 0
798
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
1.61M
     || startswith (name, ".stab"))
804
7.28k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
7.28k
    }
809
#ifdef _LIB
810
  else if (strcmp (name, _LIB) == 0)
811
    ;
812
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
1.61M
  else
818
1.61M
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
3.92M
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
3.92M
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
446k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
3.92M
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
3.92M
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
3.92M
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
3.92M
  if (flags_ptr == NULL)
847
0
    return false;
848
849
3.92M
  * flags_ptr = sec_flags;
850
3.92M
  return true;
851
3.92M
}
coff-z80.c:styp_to_sec_flags
Line
Count
Source
686
427k
{
687
427k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
427k
  unsigned long styp_flags = internal_s->s_flags;
689
427k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
427k
#ifdef STYP_NOLOAD
702
427k
  if (styp_flags & STYP_NOLOAD)
703
153k
    sec_flags |= SEC_NEVER_LOAD;
704
427k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
427k
  if (styp_flags & STYP_TEXT)
709
189k
    {
710
189k
      if (sec_flags & SEC_NEVER_LOAD)
711
113k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
75.5k
      else
713
75.5k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
189k
    }
715
238k
  else if (styp_flags & STYP_DATA)
716
30.1k
    {
717
30.1k
      if (sec_flags & SEC_NEVER_LOAD)
718
16.2k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
13.8k
      else
720
13.8k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
30.1k
    }
722
208k
  else if (styp_flags & STYP_BSS)
723
17.6k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
17.6k
  sec_flags |= SEC_ALLOC;
730
17.6k
    }
731
190k
  else if (styp_flags & STYP_INFO)
732
24.1k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
24.1k
    }
743
166k
  else if (styp_flags & STYP_PAD)
744
8.73k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
157k
  else if (strcmp (name, _TEXT) == 0)
772
742
    {
773
742
      if (sec_flags & SEC_NEVER_LOAD)
774
101
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
641
      else
776
641
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
742
    }
778
156k
  else if (strcmp (name, _DATA) == 0)
779
1.63k
    {
780
1.63k
      if (sec_flags & SEC_NEVER_LOAD)
781
399
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
1.23k
      else
783
1.23k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
1.63k
    }
785
155k
  else if (strcmp (name, _BSS) == 0)
786
1.16k
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
1.16k
  sec_flags |= SEC_ALLOC;
793
1.16k
    }
794
154k
  else if (startswith (name, DOT_DEBUG)
795
154k
     || startswith (name, DOT_ZDEBUG)
796
154k
#ifdef _COMMENT
797
154k
     || strcmp (name, _COMMENT) == 0
798
154k
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
154k
     || startswith (name, ".stab"))
804
3.66k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
3.66k
    }
809
150k
#ifdef _LIB
810
150k
  else if (strcmp (name, _LIB) == 0)
811
233
    ;
812
150k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
150k
  else
818
150k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
427k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
427k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
75.7k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
427k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
427k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
427k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
427k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
427k
  * flags_ptr = sec_flags;
850
427k
  return true;
851
427k
}
coff-z8k.c:styp_to_sec_flags
Line
Count
Source
686
193k
{
687
193k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
688
193k
  unsigned long styp_flags = internal_s->s_flags;
689
193k
  flagword sec_flags = 0;
690
691
#ifdef STYP_BLOCK
692
  if (styp_flags & STYP_BLOCK)
693
    sec_flags |= SEC_TIC54X_BLOCK;
694
#endif
695
696
#ifdef STYP_CLINK
697
  if (styp_flags & STYP_CLINK)
698
    sec_flags |= SEC_TIC54X_CLINK;
699
#endif
700
701
193k
#ifdef STYP_NOLOAD
702
193k
  if (styp_flags & STYP_NOLOAD)
703
54.0k
    sec_flags |= SEC_NEVER_LOAD;
704
193k
#endif /* STYP_NOLOAD */
705
706
  /* For 386 COFF, at least, an unloadable text or data section is
707
     actually a shared library section.  */
708
193k
  if (styp_flags & STYP_TEXT)
709
78.5k
    {
710
78.5k
      if (sec_flags & SEC_NEVER_LOAD)
711
35.2k
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
712
43.2k
      else
713
43.2k
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
714
78.5k
    }
715
115k
  else if (styp_flags & STYP_DATA)
716
16.5k
    {
717
16.5k
      if (sec_flags & SEC_NEVER_LOAD)
718
9.98k
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
719
6.61k
      else
720
6.61k
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
721
16.5k
    }
722
98.6k
  else if (styp_flags & STYP_BSS)
723
7.34k
    {
724
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
725
      if (sec_flags & SEC_NEVER_LOAD)
726
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
727
      else
728
#endif
729
7.34k
  sec_flags |= SEC_ALLOC;
730
7.34k
    }
731
91.3k
  else if (styp_flags & STYP_INFO)
732
12.0k
    {
733
      /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
734
   defined.  coff_compute_section_file_positions uses
735
   COFF_PAGE_SIZE to ensure that the low order bits of the
736
   section VMA and the file offset match.  If we don't know
737
   COFF_PAGE_SIZE, we can't ensure the correct correspondence,
738
   and demand page loading of the file will fail.  */
739
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
740
      sec_flags |= SEC_DEBUGGING;
741
#endif
742
12.0k
    }
743
79.2k
  else if (styp_flags & STYP_PAD)
744
4.82k
    sec_flags = 0;
745
#ifdef RS6000COFF_C
746
  else if (styp_flags & STYP_TDATA)
747
    {
748
      if (sec_flags & SEC_NEVER_LOAD)
749
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
750
      else
751
  sec_flags |= SEC_DATA | SEC_THREAD_LOCAL | SEC_LOAD | SEC_ALLOC;
752
    }
753
  else if (styp_flags & STYP_TBSS)
754
    {
755
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
756
      if (sec_flags & SEC_NEVER_LOAD)
757
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL | SEC_COFF_SHARED_LIBRARY;
758
      else
759
#endif
760
  sec_flags |= SEC_ALLOC | SEC_THREAD_LOCAL;
761
    }
762
  else if (styp_flags & STYP_EXCEPT)
763
    sec_flags |= SEC_LOAD;
764
  else if (styp_flags & STYP_LOADER)
765
    sec_flags |= SEC_LOAD;
766
  else if (styp_flags & STYP_TYPCHK)
767
    sec_flags |= SEC_LOAD;
768
  else if (styp_flags & STYP_DWARF)
769
    sec_flags |= SEC_DEBUGGING;
770
#endif
771
74.4k
  else if (strcmp (name, _TEXT) == 0)
772
550
    {
773
550
      if (sec_flags & SEC_NEVER_LOAD)
774
138
  sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
775
412
      else
776
412
  sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
777
550
    }
778
73.8k
  else if (strcmp (name, _DATA) == 0)
779
635
    {
780
635
      if (sec_flags & SEC_NEVER_LOAD)
781
3
  sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
782
632
      else
783
632
  sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
784
635
    }
785
73.2k
  else if (strcmp (name, _BSS) == 0)
786
143
    {
787
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
788
      if (sec_flags & SEC_NEVER_LOAD)
789
  sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
790
      else
791
#endif
792
143
  sec_flags |= SEC_ALLOC;
793
143
    }
794
73.0k
  else if (startswith (name, DOT_DEBUG)
795
73.0k
     || startswith (name, DOT_ZDEBUG)
796
73.0k
#ifdef _COMMENT
797
73.0k
     || strcmp (name, _COMMENT) == 0
798
73.0k
#endif
799
#ifdef COFF_LONG_SECTION_NAMES
800
     || startswith (name, GNU_LINKONCE_WI)
801
     || startswith (name, GNU_LINKONCE_WT)
802
#endif
803
73.0k
     || startswith (name, ".stab"))
804
2.59k
    {
805
#ifdef COFF_PAGE_SIZE
806
      sec_flags |= SEC_DEBUGGING;
807
#endif
808
2.59k
    }
809
70.4k
#ifdef _LIB
810
70.4k
  else if (strcmp (name, _LIB) == 0)
811
144
    ;
812
70.3k
#endif
813
#ifdef _LIT
814
  else if (strcmp (name, _LIT) == 0)
815
    sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
816
#endif
817
70.3k
  else
818
70.3k
    sec_flags |= SEC_ALLOC | SEC_LOAD;
819
820
193k
#ifdef STYP_LIT     /* A29k readonly text/data section type.  */
821
193k
  if ((styp_flags & STYP_LIT) == STYP_LIT)
822
22.4k
    sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
823
193k
#endif /* STYP_LIT */
824
825
#ifdef STYP_OTHER_LOAD    /* Other loaded sections.  */
826
  if (styp_flags & STYP_OTHER_LOAD)
827
    sec_flags = (SEC_LOAD | SEC_ALLOC);
828
#endif /* STYP_SDATA */
829
830
193k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
831
193k
      && (startswith (name, ".sbss")
832
0
    || startswith (name, ".sdata")))
833
0
    sec_flags |= SEC_SMALL_DATA;
834
835
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
836
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
837
     only link a single copy of the section.  This is used to support
838
     g++.  g++ will emit each template expansion in its own section.
839
     The symbols will be defined as weak, so that multiple definitions
840
     are permitted.  The GNU linker extension is to actually discard
841
     all but one of the sections.  */
842
  if (startswith (name, ".gnu.linkonce"))
843
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
844
#endif
845
846
193k
  if (flags_ptr == NULL)
847
0
    return false;
848
849
193k
  * flags_ptr = sec_flags;
850
193k
  return true;
851
193k
}
852
853
#else /* COFF_WITH_PE */
854
855
static bool
856
handle_COMDAT (bfd * abfd,
857
         flagword *sec_flags,
858
         void * hdr,
859
         const char *name,
860
         asection *section)
861
147k
{
862
147k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
147k
  bfd_byte *esymstart, *esym, *esymend;
864
147k
  int seen_state = 0;
865
147k
  char *target_name = NULL;
866
867
147k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
147k
  if (! _bfd_coff_get_external_symbols (abfd))
887
45.7k
    return true;
888
889
101k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
101k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
101k
  for (struct internal_syment isym;
893
1.44M
       esym < esymend;
894
1.34M
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
1.36M
    {
896
1.36M
      char buf[SYMNMLEN + 1];
897
1.36M
      const char *symname;
898
899
1.36M
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
1.36M
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
1.36M
      if (isym.n_scnum == section->target_index)
904
42.0k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
42.0k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
42.0k
    if (symname == NULL)
934
4.49k
      {
935
4.49k
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
4.49k
          abfd);
937
4.49k
        return false;
938
4.49k
      }
939
940
37.5k
    switch (seen_state)
941
37.5k
      {
942
30.3k
      case 0:
943
30.3k
        {
944
    /* The first time we've seen the symbol.  */
945
30.3k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
30.3k
    if (! ((isym.n_sclass == C_STAT
964
30.3k
      || isym.n_sclass == C_EXT)
965
30.3k
           && BTYPE (isym.n_type) == T_NULL
966
30.3k
           && isym.n_value == 0))
967
8.20k
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
8.20k
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
8.20k
          abfd, symname);
972
8.20k
        return false;
973
8.20k
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
22.1k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
14.3k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
14.3k
          " does not match section name '%s'"),
984
14.3k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
22.1k
    seen_state = 1;
988
22.1k
    target_name = strchr (name, '$');
989
22.1k
    if (target_name != NULL)
990
5.26k
      {
991
        /* Gas mode.  */
992
5.26k
        seen_state = 2;
993
        /* Skip the `$'.  */
994
5.26k
        target_name += 1;
995
5.26k
      }
996
997
22.1k
    if (isym.n_numaux == 0)
998
6.79k
      aux.x_scn.x_comdat = 0;
999
15.3k
    else
1000
15.3k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
15.3k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
718
          {
1004
      /* xgettext:c-format */
1005
718
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
718
                " section '%s' found"),
1007
718
              abfd, symname);
1008
718
      break;
1009
718
          }
1010
14.6k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
14.6k
            isym.n_type, isym.n_sclass,
1012
14.6k
            0, isym.n_numaux, &aux);
1013
14.6k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
21.4k
    switch (aux.x_scn.x_comdat)
1032
21.4k
      {
1033
2.01k
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
2.01k
        *sec_flags &= ~SEC_LINK_ONCE;
1038
2.01k
#endif
1039
2.01k
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
1.17k
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
1.17k
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
1.17k
        break;
1048
1049
1.08k
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
1.08k
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
1.08k
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
1.08k
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
1.08k
        *sec_flags &= ~SEC_LINK_ONCE;
1067
1.08k
#endif
1068
1.08k
        break;
1069
1070
16.0k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
16.0k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
16.0k
        break;
1075
21.4k
      }
1076
21.4k
        }
1077
21.4k
        break;
1078
1079
21.4k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
478
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
2.59k
        if (strcmp (target_name,
1087
2.59k
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
1.89k
    {
1089
      /* Not the name we're looking for */
1090
1.89k
      continue;
1091
1.89k
    }
1092
        /* Fall through.  */
1093
5.29k
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
5.29k
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
5.29k
    struct coff_comdat_info *comdat;
1103
5.29k
    size_t len = strlen (symname) + 1;
1104
1105
5.29k
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
5.29k
    if (comdat == NULL)
1107
0
      return false;
1108
1109
5.29k
    coff_section_data (abfd, section)->comdat = comdat;
1110
5.29k
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
5.29k
    char *newname = (char *) (comdat + 1);
1112
5.29k
    comdat->name = newname;
1113
5.29k
    memcpy (newname, symname, len);
1114
5.29k
    return true;
1115
5.29k
        }
1116
37.5k
      }
1117
37.5k
  }
1118
1.36M
    }
1119
1120
83.5k
  return true;
1121
101k
}
pei-i386.c:handle_COMDAT
Line
Count
Source
861
8.79k
{
862
8.79k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
8.79k
  bfd_byte *esymstart, *esym, *esymend;
864
8.79k
  int seen_state = 0;
865
8.79k
  char *target_name = NULL;
866
867
8.79k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
8.79k
  if (! _bfd_coff_get_external_symbols (abfd))
887
2.14k
    return true;
888
889
6.64k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
6.64k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
6.64k
  for (struct internal_syment isym;
893
47.5k
       esym < esymend;
894
40.8k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
41.7k
    {
896
41.7k
      char buf[SYMNMLEN + 1];
897
41.7k
      const char *symname;
898
899
41.7k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
41.7k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
41.7k
      if (isym.n_scnum == section->target_index)
904
2.77k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
2.77k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
2.77k
    if (symname == NULL)
934
236
      {
935
236
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
236
          abfd);
937
236
        return false;
938
236
      }
939
940
2.54k
    switch (seen_state)
941
2.54k
      {
942
1.82k
      case 0:
943
1.82k
        {
944
    /* The first time we've seen the symbol.  */
945
1.82k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.82k
    if (! ((isym.n_sclass == C_STAT
964
1.82k
      || isym.n_sclass == C_EXT)
965
1.82k
           && BTYPE (isym.n_type) == T_NULL
966
1.82k
           && isym.n_value == 0))
967
342
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
342
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
342
          abfd, symname);
972
342
        return false;
973
342
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.48k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
1.24k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
1.24k
          " does not match section name '%s'"),
984
1.24k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.48k
    seen_state = 1;
988
1.48k
    target_name = strchr (name, '$');
989
1.48k
    if (target_name != NULL)
990
1.14k
      {
991
        /* Gas mode.  */
992
1.14k
        seen_state = 2;
993
        /* Skip the `$'.  */
994
1.14k
        target_name += 1;
995
1.14k
      }
996
997
1.48k
    if (isym.n_numaux == 0)
998
813
      aux.x_scn.x_comdat = 0;
999
668
    else
1000
668
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
668
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
668
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
668
            isym.n_type, isym.n_sclass,
1012
668
            0, isym.n_numaux, &aux);
1013
668
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.48k
    switch (aux.x_scn.x_comdat)
1032
1.48k
      {
1033
0
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
0
        *sec_flags &= ~SEC_LINK_ONCE;
1038
0
#endif
1039
0
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
466
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
466
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
466
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
1.01k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
1.01k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
1.01k
        break;
1075
1.48k
      }
1076
1.48k
        }
1077
1.48k
        break;
1078
1079
1.48k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
712
        if (strcmp (target_name,
1087
712
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
478
    {
1089
      /* Not the name we're looking for */
1090
478
      continue;
1091
478
    }
1092
        /* Fall through.  */
1093
240
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
240
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
240
    struct coff_comdat_info *comdat;
1103
240
    size_t len = strlen (symname) + 1;
1104
1105
240
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
240
    if (comdat == NULL)
1107
0
      return false;
1108
1109
240
    coff_section_data (abfd, section)->comdat = comdat;
1110
240
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
240
    char *newname = (char *) (comdat + 1);
1112
240
    comdat->name = newname;
1113
240
    memcpy (newname, symname, len);
1114
240
    return true;
1115
240
        }
1116
2.54k
      }
1117
2.54k
  }
1118
41.7k
    }
1119
1120
5.82k
  return true;
1121
6.64k
}
pe-x86_64.c:handle_COMDAT
Line
Count
Source
861
22.5k
{
862
22.5k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
22.5k
  bfd_byte *esymstart, *esym, *esymend;
864
22.5k
  int seen_state = 0;
865
22.5k
  char *target_name = NULL;
866
867
22.5k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
22.5k
  if (! _bfd_coff_get_external_symbols (abfd))
887
7.40k
    return true;
888
889
15.1k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
15.1k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
15.1k
  for (struct internal_syment isym;
893
105k
       esym < esymend;
894
89.9k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
91.6k
    {
896
91.6k
      char buf[SYMNMLEN + 1];
897
91.6k
      const char *symname;
898
899
91.6k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
91.6k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
91.6k
      if (isym.n_scnum == section->target_index)
904
4.85k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
4.85k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
4.85k
    if (symname == NULL)
934
465
      {
935
465
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
465
          abfd);
937
465
        return false;
938
465
      }
939
940
4.38k
    switch (seen_state)
941
4.38k
      {
942
4.15k
      case 0:
943
4.15k
        {
944
    /* The first time we've seen the symbol.  */
945
4.15k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
4.15k
    if (! ((isym.n_sclass == C_STAT
964
4.15k
      || isym.n_sclass == C_EXT)
965
4.15k
           && BTYPE (isym.n_type) == T_NULL
966
4.15k
           && isym.n_value == 0))
967
1.00k
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
1.00k
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
1.00k
          abfd, symname);
972
1.00k
        return false;
973
1.00k
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
3.14k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
336
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
336
          " does not match section name '%s'"),
984
336
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
3.14k
    seen_state = 1;
988
3.14k
    target_name = strchr (name, '$');
989
3.14k
    if (target_name != NULL)
990
236
      {
991
        /* Gas mode.  */
992
236
        seen_state = 2;
993
        /* Skip the `$'.  */
994
236
        target_name += 1;
995
236
      }
996
997
3.14k
    if (isym.n_numaux == 0)
998
467
      aux.x_scn.x_comdat = 0;
999
2.68k
    else
1000
2.68k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
2.68k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
237
          {
1004
      /* xgettext:c-format */
1005
237
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
237
                " section '%s' found"),
1007
237
              abfd, symname);
1008
237
      break;
1009
237
          }
1010
2.44k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
2.44k
            isym.n_type, isym.n_sclass,
1012
2.44k
            0, isym.n_numaux, &aux);
1013
2.44k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
2.91k
    switch (aux.x_scn.x_comdat)
1032
2.91k
      {
1033
232
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
232
        *sec_flags &= ~SEC_LINK_ONCE;
1038
232
#endif
1039
232
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
232
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
232
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
232
        break;
1048
1049
134
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
134
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
134
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
232
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
232
        *sec_flags &= ~SEC_LINK_ONCE;
1067
232
#endif
1068
232
        break;
1069
1070
2.08k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
2.08k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
2.08k
        break;
1075
2.91k
      }
1076
2.91k
        }
1077
2.91k
        break;
1078
1079
2.91k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
0
        if (strcmp (target_name,
1087
0
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
0
    {
1089
      /* Not the name we're looking for */
1090
0
      continue;
1091
0
    }
1092
        /* Fall through.  */
1093
233
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
233
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
233
    struct coff_comdat_info *comdat;
1103
233
    size_t len = strlen (symname) + 1;
1104
1105
233
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
233
    if (comdat == NULL)
1107
0
      return false;
1108
1109
233
    coff_section_data (abfd, section)->comdat = comdat;
1110
233
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
233
    char *newname = (char *) (comdat + 1);
1112
233
    comdat->name = newname;
1113
233
    memcpy (newname, symname, len);
1114
233
    return true;
1115
233
        }
1116
4.38k
      }
1117
4.38k
  }
1118
91.6k
    }
1119
1120
13.4k
  return true;
1121
15.1k
}
pei-x86_64.c:handle_COMDAT
Line
Count
Source
861
9.28k
{
862
9.28k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
9.28k
  bfd_byte *esymstart, *esym, *esymend;
864
9.28k
  int seen_state = 0;
865
9.28k
  char *target_name = NULL;
866
867
9.28k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
9.28k
  if (! _bfd_coff_get_external_symbols (abfd))
887
5.18k
    return true;
888
889
4.09k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
4.09k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
4.09k
  for (struct internal_syment isym;
893
54.2k
       esym < esymend;
894
50.1k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
51.4k
    {
896
51.4k
      char buf[SYMNMLEN + 1];
897
51.4k
      const char *symname;
898
899
51.4k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
51.4k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
51.4k
      if (isym.n_scnum == section->target_index)
904
3.69k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
3.69k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
3.69k
    if (symname == NULL)
934
103
      {
935
103
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
103
          abfd);
937
103
        return false;
938
103
      }
939
940
3.59k
    switch (seen_state)
941
3.59k
      {
942
2.79k
      case 0:
943
2.79k
        {
944
    /* The first time we've seen the symbol.  */
945
2.79k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
2.79k
    if (! ((isym.n_sclass == C_STAT
964
2.79k
      || isym.n_sclass == C_EXT)
965
2.79k
           && BTYPE (isym.n_type) == T_NULL
966
2.79k
           && isym.n_value == 0))
967
579
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
579
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
579
          abfd, symname);
972
579
        return false;
973
579
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
2.21k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
2.10k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
2.10k
          " does not match section name '%s'"),
984
2.10k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
2.21k
    seen_state = 1;
988
2.21k
    target_name = strchr (name, '$');
989
2.21k
    if (target_name != NULL)
990
932
      {
991
        /* Gas mode.  */
992
932
        seen_state = 2;
993
        /* Skip the `$'.  */
994
932
        target_name += 1;
995
932
      }
996
997
2.21k
    if (isym.n_numaux == 0)
998
1.04k
      aux.x_scn.x_comdat = 0;
999
1.17k
    else
1000
1.17k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
1.17k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
1.17k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
1.17k
            isym.n_type, isym.n_sclass,
1012
1.17k
            0, isym.n_numaux, &aux);
1013
1.17k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
2.21k
    switch (aux.x_scn.x_comdat)
1032
2.21k
      {
1033
235
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
235
        *sec_flags &= ~SEC_LINK_ONCE;
1038
235
#endif
1039
235
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
4
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
4
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
4
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
1.97k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
1.97k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
1.97k
        break;
1075
2.21k
      }
1076
2.21k
        }
1077
2.21k
        break;
1078
1079
2.21k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
466
        if (strcmp (target_name,
1087
466
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
233
    {
1089
      /* Not the name we're looking for */
1090
233
      continue;
1091
233
    }
1092
        /* Fall through.  */
1093
571
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
571
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
571
    struct coff_comdat_info *comdat;
1103
571
    size_t len = strlen (symname) + 1;
1104
1105
571
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
571
    if (comdat == NULL)
1107
0
      return false;
1108
1109
571
    coff_section_data (abfd, section)->comdat = comdat;
1110
571
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
571
    char *newname = (char *) (comdat + 1);
1112
571
    comdat->name = newname;
1113
571
    memcpy (newname, symname, len);
1114
571
    return true;
1115
571
        }
1116
3.59k
      }
1117
3.59k
  }
1118
51.4k
    }
1119
1120
2.84k
  return true;
1121
4.09k
}
pei-aarch64.c:handle_COMDAT
Line
Count
Source
861
14.7k
{
862
14.7k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
14.7k
  bfd_byte *esymstart, *esym, *esymend;
864
14.7k
  int seen_state = 0;
865
14.7k
  char *target_name = NULL;
866
867
14.7k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
14.7k
  if (! _bfd_coff_get_external_symbols (abfd))
887
3.45k
    return true;
888
889
11.3k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
11.3k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
11.3k
  for (struct internal_syment isym;
893
724k
       esym < esymend;
894
713k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
717k
    {
896
717k
      char buf[SYMNMLEN + 1];
897
717k
      const char *symname;
898
899
717k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
717k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
717k
      if (isym.n_scnum == section->target_index)
904
9.53k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
9.53k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
9.53k
    if (symname == NULL)
934
667
      {
935
667
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
667
          abfd);
937
667
        return false;
938
667
      }
939
940
8.87k
    switch (seen_state)
941
8.87k
      {
942
6.11k
      case 0:
943
6.11k
        {
944
    /* The first time we've seen the symbol.  */
945
6.11k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
6.11k
    if (! ((isym.n_sclass == C_STAT
964
6.11k
      || isym.n_sclass == C_EXT)
965
6.11k
           && BTYPE (isym.n_type) == T_NULL
966
6.11k
           && isym.n_value == 0))
967
1.42k
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
1.42k
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
1.42k
          abfd, symname);
972
1.42k
        return false;
973
1.42k
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
4.69k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
3.10k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
3.10k
          " does not match section name '%s'"),
984
3.10k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
4.69k
    seen_state = 1;
988
4.69k
    target_name = strchr (name, '$');
989
4.69k
    if (target_name != NULL)
990
475
      {
991
        /* Gas mode.  */
992
475
        seen_state = 2;
993
        /* Skip the `$'.  */
994
475
        target_name += 1;
995
475
      }
996
997
4.69k
    if (isym.n_numaux == 0)
998
1.69k
      aux.x_scn.x_comdat = 0;
999
2.99k
    else
1000
2.99k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
2.99k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
2.99k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
2.99k
            isym.n_type, isym.n_sclass,
1012
2.99k
            0, isym.n_numaux, &aux);
1013
2.99k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
4.69k
    switch (aux.x_scn.x_comdat)
1032
4.69k
      {
1033
666
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
666
        *sec_flags &= ~SEC_LINK_ONCE;
1038
666
#endif
1039
666
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
1
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
1
        break;
1048
1049
265
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
265
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
265
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
237
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
237
        *sec_flags &= ~SEC_LINK_ONCE;
1067
237
#endif
1068
237
        break;
1069
1070
3.52k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
3.52k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
3.52k
        break;
1075
4.69k
      }
1076
4.69k
        }
1077
4.69k
        break;
1078
1079
4.69k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
238
#ifndef TARGET_UNDERSCORE
1083
238
#define TARGET_UNDERSCORE 0
1084
238
#endif
1085
        /* Is this the name we're looking for ?  */
1086
238
        if (strcmp (target_name,
1087
238
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
238
    {
1089
      /* Not the name we're looking for */
1090
238
      continue;
1091
238
    }
1092
        /* Fall through.  */
1093
2.51k
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
2.51k
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
2.51k
    struct coff_comdat_info *comdat;
1103
2.51k
    size_t len = strlen (symname) + 1;
1104
1105
2.51k
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
2.51k
    if (comdat == NULL)
1107
0
      return false;
1108
1109
2.51k
    coff_section_data (abfd, section)->comdat = comdat;
1110
2.51k
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
2.51k
    char *newname = (char *) (comdat + 1);
1112
2.51k
    comdat->name = newname;
1113
2.51k
    memcpy (newname, symname, len);
1114
2.51k
    return true;
1115
2.51k
        }
1116
8.87k
      }
1117
8.87k
  }
1118
717k
    }
1119
1120
6.70k
  return true;
1121
11.3k
}
pe-aarch64.c:handle_COMDAT
Line
Count
Source
861
3.33k
{
862
3.33k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
3.33k
  bfd_byte *esymstart, *esym, *esymend;
864
3.33k
  int seen_state = 0;
865
3.33k
  char *target_name = NULL;
866
867
3.33k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
3.33k
  if (! _bfd_coff_get_external_symbols (abfd))
887
1.19k
    return true;
888
889
2.14k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
2.14k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
2.14k
  for (struct internal_syment isym;
893
20.9k
       esym < esymend;
894
18.8k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
19.1k
    {
896
19.1k
      char buf[SYMNMLEN + 1];
897
19.1k
      const char *symname;
898
899
19.1k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
19.1k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
19.1k
      if (isym.n_scnum == section->target_index)
904
1.01k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
1.01k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
1.01k
    if (symname == NULL)
934
105
      {
935
105
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
105
          abfd);
937
105
        return false;
938
105
      }
939
940
906
    switch (seen_state)
941
906
      {
942
903
      case 0:
943
903
        {
944
    /* The first time we've seen the symbol.  */
945
903
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
903
    if (! ((isym.n_sclass == C_STAT
964
903
      || isym.n_sclass == C_EXT)
965
903
           && BTYPE (isym.n_type) == T_NULL
966
903
           && isym.n_value == 0))
967
210
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
210
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
210
          abfd, symname);
972
210
        return false;
973
210
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
693
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
209
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
209
          " does not match section name '%s'"),
984
209
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
693
    seen_state = 1;
988
693
    target_name = strchr (name, '$');
989
693
    if (target_name != NULL)
990
105
      {
991
        /* Gas mode.  */
992
105
        seen_state = 2;
993
        /* Skip the `$'.  */
994
105
        target_name += 1;
995
105
      }
996
997
693
    if (isym.n_numaux == 0)
998
1
      aux.x_scn.x_comdat = 0;
999
692
    else
1000
692
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
692
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
238
          {
1004
      /* xgettext:c-format */
1005
238
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
238
                " section '%s' found"),
1007
238
              abfd, symname);
1008
238
      break;
1009
238
          }
1010
454
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
454
            isym.n_type, isym.n_sclass,
1012
454
            0, isym.n_numaux, &aux);
1013
454
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
455
    switch (aux.x_scn.x_comdat)
1032
455
      {
1033
1
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
1
        *sec_flags &= ~SEC_LINK_ONCE;
1038
1
#endif
1039
1
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
238
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
238
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
238
        break;
1048
1049
1
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
1
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
1
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
1
        *sec_flags &= ~SEC_LINK_ONCE;
1067
1
#endif
1068
1
        break;
1069
1070
214
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
214
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
214
        break;
1075
455
      }
1076
455
        }
1077
455
        break;
1078
1079
455
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
0
#ifndef TARGET_UNDERSCORE
1083
0
#define TARGET_UNDERSCORE 0
1084
0
#endif
1085
        /* Is this the name we're looking for ?  */
1086
0
        if (strcmp (target_name,
1087
0
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
0
    {
1089
      /* Not the name we're looking for */
1090
0
      continue;
1091
0
    }
1092
        /* Fall through.  */
1093
3
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
3
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
3
    struct coff_comdat_info *comdat;
1103
3
    size_t len = strlen (symname) + 1;
1104
1105
3
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
3
    if (comdat == NULL)
1107
0
      return false;
1108
1109
3
    coff_section_data (abfd, section)->comdat = comdat;
1110
3
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
3
    char *newname = (char *) (comdat + 1);
1112
3
    comdat->name = newname;
1113
3
    memcpy (newname, symname, len);
1114
3
    return true;
1115
3
        }
1116
906
      }
1117
906
  }
1118
19.1k
    }
1119
1120
1.82k
  return true;
1121
2.14k
}
pei-ia64.c:handle_COMDAT
Line
Count
Source
861
9.77k
{
862
9.77k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
9.77k
  bfd_byte *esymstart, *esym, *esymend;
864
9.77k
  int seen_state = 0;
865
9.77k
  char *target_name = NULL;
866
867
9.77k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
9.77k
  if (! _bfd_coff_get_external_symbols (abfd))
887
2.04k
    return true;
888
889
7.72k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
7.72k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
7.72k
  for (struct internal_syment isym;
893
37.2k
       esym < esymend;
894
29.5k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
30.4k
    {
896
30.4k
      char buf[SYMNMLEN + 1];
897
30.4k
      const char *symname;
898
899
30.4k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
30.4k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
30.4k
      if (isym.n_scnum == section->target_index)
904
1.64k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
1.64k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
1.64k
    if (symname == NULL)
934
337
      {
935
337
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
337
          abfd);
937
337
        return false;
938
337
      }
939
940
1.30k
    switch (seen_state)
941
1.30k
      {
942
1.30k
      case 0:
943
1.30k
        {
944
    /* The first time we've seen the symbol.  */
945
1.30k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.30k
    if (! ((isym.n_sclass == C_STAT
964
1.30k
      || isym.n_sclass == C_EXT)
965
1.30k
           && BTYPE (isym.n_type) == T_NULL
966
1.30k
           && isym.n_value == 0))
967
576
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
576
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
576
          abfd, symname);
972
576
        return false;
973
576
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
725
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
484
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
484
          " does not match section name '%s'"),
984
484
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
725
    seen_state = 1;
988
725
    target_name = strchr (name, '$');
989
725
    if (target_name != NULL)
990
237
      {
991
        /* Gas mode.  */
992
237
        seen_state = 2;
993
        /* Skip the `$'.  */
994
237
        target_name += 1;
995
237
      }
996
997
725
    if (isym.n_numaux == 0)
998
9
      aux.x_scn.x_comdat = 0;
999
716
    else
1000
716
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
716
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
238
          {
1004
      /* xgettext:c-format */
1005
238
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
238
                " section '%s' found"),
1007
238
              abfd, symname);
1008
238
      break;
1009
238
          }
1010
478
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
478
            isym.n_type, isym.n_sclass,
1012
478
            0, isym.n_numaux, &aux);
1013
478
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
487
    switch (aux.x_scn.x_comdat)
1032
487
      {
1033
3
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
3
        *sec_flags &= ~SEC_LINK_ONCE;
1038
3
#endif
1039
3
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
1
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
1
        break;
1048
1049
233
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
233
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
233
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
250
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
250
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
250
        break;
1075
487
      }
1076
487
        }
1077
487
        break;
1078
1079
487
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
3
        if (strcmp (target_name,
1087
3
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
3
    {
1089
      /* Not the name we're looking for */
1090
3
      continue;
1091
3
    }
1092
        /* Fall through.  */
1093
3
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
3
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
3
    struct coff_comdat_info *comdat;
1103
3
    size_t len = strlen (symname) + 1;
1104
1105
3
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
3
    if (comdat == NULL)
1107
0
      return false;
1108
1109
3
    coff_section_data (abfd, section)->comdat = comdat;
1110
3
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
3
    char *newname = (char *) (comdat + 1);
1112
3
    comdat->name = newname;
1113
3
    memcpy (newname, symname, len);
1114
3
    return true;
1115
3
        }
1116
1.30k
      }
1117
1.30k
  }
1118
30.4k
    }
1119
1120
6.80k
  return true;
1121
7.72k
}
pei-loongarch64.c:handle_COMDAT
Line
Count
Source
861
7.26k
{
862
7.26k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
7.26k
  bfd_byte *esymstart, *esym, *esymend;
864
7.26k
  int seen_state = 0;
865
7.26k
  char *target_name = NULL;
866
867
7.26k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
7.26k
  if (! _bfd_coff_get_external_symbols (abfd))
887
1.86k
    return true;
888
889
5.40k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
5.40k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
5.40k
  for (struct internal_syment isym;
893
26.7k
       esym < esymend;
894
21.3k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
22.1k
    {
896
22.1k
      char buf[SYMNMLEN + 1];
897
22.1k
      const char *symname;
898
899
22.1k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
22.1k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
22.1k
      if (isym.n_scnum == section->target_index)
904
1.50k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
1.50k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
1.50k
    if (symname == NULL)
934
341
      {
935
341
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
341
          abfd);
937
341
        return false;
938
341
      }
939
940
1.16k
    switch (seen_state)
941
1.16k
      {
942
1.16k
      case 0:
943
1.16k
        {
944
    /* The first time we've seen the symbol.  */
945
1.16k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.16k
    if (! ((isym.n_sclass == C_STAT
964
1.16k
      || isym.n_sclass == C_EXT)
965
1.16k
           && BTYPE (isym.n_type) == T_NULL
966
1.16k
           && isym.n_value == 0))
967
443
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
443
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
443
          abfd, symname);
972
443
        return false;
973
443
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
721
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
482
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
482
          " does not match section name '%s'"),
984
482
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
721
    seen_state = 1;
988
721
    target_name = strchr (name, '$');
989
721
    if (target_name != NULL)
990
0
      {
991
        /* Gas mode.  */
992
0
        seen_state = 2;
993
        /* Skip the `$'.  */
994
0
        target_name += 1;
995
0
      }
996
997
721
    if (isym.n_numaux == 0)
998
480
      aux.x_scn.x_comdat = 0;
999
241
    else
1000
241
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
241
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
1
          {
1004
      /* xgettext:c-format */
1005
1
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
1
                " section '%s' found"),
1007
1
              abfd, symname);
1008
1
      break;
1009
1
          }
1010
240
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
240
            isym.n_type, isym.n_sclass,
1012
240
            0, isym.n_numaux, &aux);
1013
240
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
720
    switch (aux.x_scn.x_comdat)
1032
720
      {
1033
0
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
0
        *sec_flags &= ~SEC_LINK_ONCE;
1038
0
#endif
1039
0
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
1
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
1
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
719
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
719
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
719
        break;
1075
720
      }
1076
720
        }
1077
720
        break;
1078
1079
720
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
0
#ifndef TARGET_UNDERSCORE
1083
0
#define TARGET_UNDERSCORE 0
1084
0
#endif
1085
        /* Is this the name we're looking for ?  */
1086
0
        if (strcmp (target_name,
1087
0
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
0
    {
1089
      /* Not the name we're looking for */
1090
0
      continue;
1091
0
    }
1092
        /* Fall through.  */
1093
0
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
0
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
0
    struct coff_comdat_info *comdat;
1103
0
    size_t len = strlen (symname) + 1;
1104
1105
0
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
0
    if (comdat == NULL)
1107
0
      return false;
1108
1109
0
    coff_section_data (abfd, section)->comdat = comdat;
1110
0
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
0
    char *newname = (char *) (comdat + 1);
1112
0
    comdat->name = newname;
1113
0
    memcpy (newname, symname, len);
1114
0
    return true;
1115
0
        }
1116
1.16k
      }
1117
1.16k
  }
1118
22.1k
    }
1119
1120
4.61k
  return true;
1121
5.40k
}
pe-arm-wince.c:handle_COMDAT
Line
Count
Source
861
3.22k
{
862
3.22k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
3.22k
  bfd_byte *esymstart, *esym, *esymend;
864
3.22k
  int seen_state = 0;
865
3.22k
  char *target_name = NULL;
866
867
3.22k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
3.22k
  if (! _bfd_coff_get_external_symbols (abfd))
887
1.02k
    return true;
888
889
2.20k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
2.20k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
2.20k
  for (struct internal_syment isym;
893
12.3k
       esym < esymend;
894
10.1k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
10.4k
    {
896
10.4k
      char buf[SYMNMLEN + 1];
897
10.4k
      const char *symname;
898
899
10.4k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
10.4k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
10.4k
      if (isym.n_scnum == section->target_index)
904
961
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
961
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
961
    if (symname == NULL)
934
105
      {
935
105
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
105
          abfd);
937
105
        return false;
938
105
      }
939
940
856
    switch (seen_state)
941
856
      {
942
749
      case 0:
943
749
        {
944
    /* The first time we've seen the symbol.  */
945
749
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
749
    if (! ((isym.n_sclass == C_STAT
964
749
      || isym.n_sclass == C_EXT)
965
749
           && BTYPE (isym.n_type) == T_NULL
966
749
           && isym.n_value == 0))
967
217
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
217
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
217
          abfd, symname);
972
217
        return false;
973
217
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
532
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
419
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
419
          " does not match section name '%s'"),
984
419
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
532
    seen_state = 1;
988
532
    target_name = strchr (name, '$');
989
532
    if (target_name != NULL)
990
204
      {
991
        /* Gas mode.  */
992
204
        seen_state = 2;
993
        /* Skip the `$'.  */
994
204
        target_name += 1;
995
204
      }
996
997
532
    if (isym.n_numaux == 0)
998
107
      aux.x_scn.x_comdat = 0;
999
425
    else
1000
425
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
425
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
425
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
425
            isym.n_type, isym.n_sclass,
1012
425
            0, isym.n_numaux, &aux);
1013
425
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
532
    switch (aux.x_scn.x_comdat)
1032
532
      {
1033
2
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
2
        *sec_flags &= ~SEC_LINK_ONCE;
1038
2
#endif
1039
2
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
1
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
1
        break;
1048
1049
4
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
4
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
4
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
2
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
2
        *sec_flags &= ~SEC_LINK_ONCE;
1067
2
#endif
1068
2
        break;
1069
1070
523
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
523
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
523
        break;
1075
532
      }
1076
532
        }
1077
532
        break;
1078
1079
532
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
103
        if (strcmp (target_name,
1087
103
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
103
    {
1089
      /* Not the name we're looking for */
1090
103
      continue;
1091
103
    }
1092
        /* Fall through.  */
1093
4
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
4
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
4
    struct coff_comdat_info *comdat;
1103
4
    size_t len = strlen (symname) + 1;
1104
1105
4
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
4
    if (comdat == NULL)
1107
0
      return false;
1108
1109
4
    coff_section_data (abfd, section)->comdat = comdat;
1110
4
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
4
    char *newname = (char *) (comdat + 1);
1112
4
    comdat->name = newname;
1113
4
    memcpy (newname, symname, len);
1114
4
    return true;
1115
4
        }
1116
856
      }
1117
856
  }
1118
10.4k
    }
1119
1120
1.88k
  return true;
1121
2.20k
}
pe-arm.c:handle_COMDAT
Line
Count
Source
861
3.22k
{
862
3.22k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
3.22k
  bfd_byte *esymstart, *esym, *esymend;
864
3.22k
  int seen_state = 0;
865
3.22k
  char *target_name = NULL;
866
867
3.22k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
3.22k
  if (! _bfd_coff_get_external_symbols (abfd))
887
1.02k
    return true;
888
889
2.20k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
2.20k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
2.20k
  for (struct internal_syment isym;
893
12.3k
       esym < esymend;
894
10.1k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
10.4k
    {
896
10.4k
      char buf[SYMNMLEN + 1];
897
10.4k
      const char *symname;
898
899
10.4k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
10.4k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
10.4k
      if (isym.n_scnum == section->target_index)
904
961
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
961
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
961
    if (symname == NULL)
934
105
      {
935
105
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
105
          abfd);
937
105
        return false;
938
105
      }
939
940
856
    switch (seen_state)
941
856
      {
942
749
      case 0:
943
749
        {
944
    /* The first time we've seen the symbol.  */
945
749
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
749
    if (! ((isym.n_sclass == C_STAT
964
749
      || isym.n_sclass == C_EXT)
965
749
           && BTYPE (isym.n_type) == T_NULL
966
749
           && isym.n_value == 0))
967
217
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
217
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
217
          abfd, symname);
972
217
        return false;
973
217
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
532
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
419
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
419
          " does not match section name '%s'"),
984
419
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
532
    seen_state = 1;
988
532
    target_name = strchr (name, '$');
989
532
    if (target_name != NULL)
990
204
      {
991
        /* Gas mode.  */
992
204
        seen_state = 2;
993
        /* Skip the `$'.  */
994
204
        target_name += 1;
995
204
      }
996
997
532
    if (isym.n_numaux == 0)
998
107
      aux.x_scn.x_comdat = 0;
999
425
    else
1000
425
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
425
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
425
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
425
            isym.n_type, isym.n_sclass,
1012
425
            0, isym.n_numaux, &aux);
1013
425
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
532
    switch (aux.x_scn.x_comdat)
1032
532
      {
1033
2
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
2
        *sec_flags &= ~SEC_LINK_ONCE;
1038
2
#endif
1039
2
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
1
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
1
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
1
        break;
1048
1049
4
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
4
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
4
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
2
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
2
        *sec_flags &= ~SEC_LINK_ONCE;
1067
2
#endif
1068
2
        break;
1069
1070
523
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
523
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
523
        break;
1075
532
      }
1076
532
        }
1077
532
        break;
1078
1079
532
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
103
        if (strcmp (target_name,
1087
103
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
103
    {
1089
      /* Not the name we're looking for */
1090
103
      continue;
1091
103
    }
1092
        /* Fall through.  */
1093
4
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
4
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
4
    struct coff_comdat_info *comdat;
1103
4
    size_t len = strlen (symname) + 1;
1104
1105
4
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
4
    if (comdat == NULL)
1107
0
      return false;
1108
1109
4
    coff_section_data (abfd, section)->comdat = comdat;
1110
4
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
4
    char *newname = (char *) (comdat + 1);
1112
4
    comdat->name = newname;
1113
4
    memcpy (newname, symname, len);
1114
4
    return true;
1115
4
        }
1116
856
      }
1117
856
  }
1118
10.4k
    }
1119
1120
1.88k
  return true;
1121
2.20k
}
pe-i386.c:handle_COMDAT
Line
Count
Source
861
6.94k
{
862
6.94k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
6.94k
  bfd_byte *esymstart, *esym, *esymend;
864
6.94k
  int seen_state = 0;
865
6.94k
  char *target_name = NULL;
866
867
6.94k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
6.94k
  if (! _bfd_coff_get_external_symbols (abfd))
887
4.07k
    return true;
888
889
2.87k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
2.87k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
2.87k
  for (struct internal_syment isym;
893
9.65k
       esym < esymend;
894
6.78k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
6.99k
    {
896
6.99k
      char buf[SYMNMLEN + 1];
897
6.99k
      const char *symname;
898
899
6.99k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
6.99k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
6.99k
      if (isym.n_scnum == section->target_index)
904
354
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
354
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
354
    if (symname == NULL)
934
106
      {
935
106
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
106
          abfd);
937
106
        return false;
938
106
      }
939
940
248
    switch (seen_state)
941
248
      {
942
224
      case 0:
943
224
        {
944
    /* The first time we've seen the symbol.  */
945
224
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
224
    if (! ((isym.n_sclass == C_STAT
964
224
      || isym.n_sclass == C_EXT)
965
224
           && BTYPE (isym.n_type) == T_NULL
966
224
           && isym.n_value == 0))
967
109
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
109
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
109
          abfd, symname);
972
109
        return false;
973
109
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
115
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
0
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
0
          " does not match section name '%s'"),
984
0
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
115
    seen_state = 1;
988
115
    target_name = strchr (name, '$');
989
115
    if (target_name != NULL)
990
8
      {
991
        /* Gas mode.  */
992
8
        seen_state = 2;
993
        /* Skip the `$'.  */
994
8
        target_name += 1;
995
8
      }
996
997
115
    if (isym.n_numaux == 0)
998
113
      aux.x_scn.x_comdat = 0;
999
2
    else
1000
2
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
2
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
2
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
2
            isym.n_type, isym.n_sclass,
1012
2
            0, isym.n_numaux, &aux);
1013
2
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
115
    switch (aux.x_scn.x_comdat)
1032
115
      {
1033
0
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
0
        *sec_flags &= ~SEC_LINK_ONCE;
1038
0
#endif
1039
0
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
115
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
115
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
115
        break;
1075
115
      }
1076
115
        }
1077
115
        break;
1078
1079
115
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
23
        if (strcmp (target_name,
1087
23
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
23
    {
1089
      /* Not the name we're looking for */
1090
23
      continue;
1091
23
    }
1092
        /* Fall through.  */
1093
1
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
1
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
1
    struct coff_comdat_info *comdat;
1103
1
    size_t len = strlen (symname) + 1;
1104
1105
1
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
1
    if (comdat == NULL)
1107
0
      return false;
1108
1109
1
    coff_section_data (abfd, section)->comdat = comdat;
1110
1
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
1
    char *newname = (char *) (comdat + 1);
1112
1
    comdat->name = newname;
1113
1
    memcpy (newname, symname, len);
1114
1
    return true;
1115
1
        }
1116
248
      }
1117
248
  }
1118
6.99k
    }
1119
1120
2.65k
  return true;
1121
2.87k
}
pe-mcore.c:handle_COMDAT
Line
Count
Source
861
4.57k
{
862
4.57k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
4.57k
  bfd_byte *esymstart, *esym, *esymend;
864
4.57k
  int seen_state = 0;
865
4.57k
  char *target_name = NULL;
866
867
4.57k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
4.57k
  if (! _bfd_coff_get_external_symbols (abfd))
887
957
    return true;
888
889
3.61k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
3.61k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
3.61k
  for (struct internal_syment isym;
893
11.7k
       esym < esymend;
894
8.10k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
8.56k
    {
896
8.56k
      char buf[SYMNMLEN + 1];
897
8.56k
      const char *symname;
898
899
8.56k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
8.56k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
8.56k
      if (isym.n_scnum == section->target_index)
904
1.30k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
1.30k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
1.30k
    if (symname == NULL)
934
110
      {
935
110
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
110
          abfd);
937
110
        return false;
938
110
      }
939
940
1.19k
    switch (seen_state)
941
1.19k
      {
942
949
      case 0:
943
949
        {
944
    /* The first time we've seen the symbol.  */
945
949
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
949
    if (! ((isym.n_sclass == C_STAT
964
949
      || isym.n_sclass == C_EXT)
965
949
           && BTYPE (isym.n_type) == T_NULL
966
949
           && isym.n_value == 0))
967
110
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
110
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
110
          abfd, symname);
972
110
        return false;
973
110
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
839
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
829
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
829
          " does not match section name '%s'"),
984
829
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
839
    seen_state = 1;
988
839
    target_name = strchr (name, '$');
989
839
    if (target_name != NULL)
990
109
      {
991
        /* Gas mode.  */
992
109
        seen_state = 2;
993
        /* Skip the `$'.  */
994
109
        target_name += 1;
995
109
      }
996
997
839
    if (isym.n_numaux == 0)
998
243
      aux.x_scn.x_comdat = 0;
999
596
    else
1000
596
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
596
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
1
          {
1004
      /* xgettext:c-format */
1005
1
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
1
                " section '%s' found"),
1007
1
              abfd, symname);
1008
1
      break;
1009
1
          }
1010
595
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
595
            isym.n_type, isym.n_sclass,
1012
595
            0, isym.n_numaux, &aux);
1013
595
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
838
    switch (aux.x_scn.x_comdat)
1032
838
      {
1033
101
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
101
        *sec_flags &= ~SEC_LINK_ONCE;
1038
101
#endif
1039
101
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
3
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
3
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
3
        break;
1048
1049
238
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
238
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
238
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
3
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
3
        *sec_flags &= ~SEC_LINK_ONCE;
1067
3
#endif
1068
3
        break;
1069
1070
493
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
493
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
493
        break;
1075
838
      }
1076
838
        }
1077
838
        break;
1078
1079
838
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
7
#ifndef TARGET_UNDERSCORE
1083
7
#define TARGET_UNDERSCORE 0
1084
7
#endif
1085
        /* Is this the name we're looking for ?  */
1086
7
        if (strcmp (target_name,
1087
7
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
7
    {
1089
      /* Not the name we're looking for */
1090
7
      continue;
1091
7
    }
1092
        /* Fall through.  */
1093
240
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
240
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
240
    struct coff_comdat_info *comdat;
1103
240
    size_t len = strlen (symname) + 1;
1104
1105
240
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
240
    if (comdat == NULL)
1107
0
      return false;
1108
1109
240
    coff_section_data (abfd, section)->comdat = comdat;
1110
240
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
240
    char *newname = (char *) (comdat + 1);
1112
240
    comdat->name = newname;
1113
240
    memcpy (newname, symname, len);
1114
240
    return true;
1115
240
        }
1116
1.19k
      }
1117
1.19k
  }
1118
8.56k
    }
1119
1120
3.15k
  return true;
1121
3.61k
}
pe-sh.c:handle_COMDAT
Line
Count
Source
861
7.02k
{
862
7.02k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
7.02k
  bfd_byte *esymstart, *esym, *esymend;
864
7.02k
  int seen_state = 0;
865
7.02k
  char *target_name = NULL;
866
867
7.02k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
7.02k
  if (! _bfd_coff_get_external_symbols (abfd))
887
2.61k
    return true;
888
889
4.41k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
4.41k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
4.41k
  for (struct internal_syment isym;
893
112k
       esym < esymend;
894
107k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
108k
    {
896
108k
      char buf[SYMNMLEN + 1];
897
108k
      const char *symname;
898
899
108k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
108k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
108k
      if (isym.n_scnum == section->target_index)
904
2.17k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
2.17k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
2.17k
    if (symname == NULL)
934
408
      {
935
408
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
408
          abfd);
937
408
        return false;
938
408
      }
939
940
1.76k
    switch (seen_state)
941
1.76k
      {
942
1.45k
      case 0:
943
1.45k
        {
944
    /* The first time we've seen the symbol.  */
945
1.45k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.45k
    if (! ((isym.n_sclass == C_STAT
964
1.45k
      || isym.n_sclass == C_EXT)
965
1.45k
           && BTYPE (isym.n_type) == T_NULL
966
1.45k
           && isym.n_value == 0))
967
412
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
412
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
412
          abfd, symname);
972
412
        return false;
973
412
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.04k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
629
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
629
          " does not match section name '%s'"),
984
629
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.04k
    seen_state = 1;
988
1.04k
    target_name = strchr (name, '$');
989
1.04k
    if (target_name != NULL)
990
9
      {
991
        /* Gas mode.  */
992
9
        seen_state = 2;
993
        /* Skip the `$'.  */
994
9
        target_name += 1;
995
9
      }
996
997
1.04k
    if (isym.n_numaux == 0)
998
409
      aux.x_scn.x_comdat = 0;
999
632
    else
1000
632
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
632
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
3
          {
1004
      /* xgettext:c-format */
1005
3
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
3
                " section '%s' found"),
1007
3
              abfd, symname);
1008
3
      break;
1009
3
          }
1010
629
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
629
            isym.n_type, isym.n_sclass,
1012
629
            0, isym.n_numaux, &aux);
1013
629
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.03k
    switch (aux.x_scn.x_comdat)
1032
1.03k
      {
1033
104
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
104
        *sec_flags &= ~SEC_LINK_ONCE;
1038
104
#endif
1039
104
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
202
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
202
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
202
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
6
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
6
        *sec_flags &= ~SEC_LINK_ONCE;
1067
6
#endif
1068
6
        break;
1069
1070
726
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
726
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
726
        break;
1075
1.03k
      }
1076
1.03k
        }
1077
1.03k
        break;
1078
1079
1.03k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
6
        if (strcmp (target_name,
1087
6
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
6
    {
1089
      /* Not the name we're looking for */
1090
6
      continue;
1091
6
    }
1092
        /* Fall through.  */
1093
306
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
306
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
306
    struct coff_comdat_info *comdat;
1103
306
    size_t len = strlen (symname) + 1;
1104
1105
306
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
306
    if (comdat == NULL)
1107
0
      return false;
1108
1109
306
    coff_section_data (abfd, section)->comdat = comdat;
1110
306
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
306
    char *newname = (char *) (comdat + 1);
1112
306
    comdat->name = newname;
1113
306
    memcpy (newname, symname, len);
1114
306
    return true;
1115
306
        }
1116
1.76k
      }
1117
1.76k
  }
1118
108k
    }
1119
1120
3.29k
  return true;
1121
4.41k
}
pei-arm-wince.c:handle_COMDAT
Line
Count
Source
861
10.9k
{
862
10.9k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
10.9k
  bfd_byte *esymstart, *esym, *esymend;
864
10.9k
  int seen_state = 0;
865
10.9k
  char *target_name = NULL;
866
867
10.9k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
10.9k
  if (! _bfd_coff_get_external_symbols (abfd))
887
3.57k
    return true;
888
889
7.41k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
7.41k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
7.41k
  for (struct internal_syment isym;
893
66.6k
       esym < esymend;
894
59.2k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
60.6k
    {
896
60.6k
      char buf[SYMNMLEN + 1];
897
60.6k
      const char *symname;
898
899
60.6k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
60.6k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
60.6k
      if (isym.n_scnum == section->target_index)
904
2.62k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
2.62k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
2.62k
    if (symname == NULL)
934
467
      {
935
467
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
467
          abfd);
937
467
        return false;
938
467
      }
939
940
2.15k
    switch (seen_state)
941
2.15k
      {
942
1.68k
      case 0:
943
1.68k
        {
944
    /* The first time we've seen the symbol.  */
945
1.68k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.68k
    if (! ((isym.n_sclass == C_STAT
964
1.68k
      || isym.n_sclass == C_EXT)
965
1.68k
           && BTYPE (isym.n_type) == T_NULL
966
1.68k
           && isym.n_value == 0))
967
641
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
641
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
641
          abfd, symname);
972
641
        return false;
973
641
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.04k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
575
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
575
          " does not match section name '%s'"),
984
575
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.04k
    seen_state = 1;
988
1.04k
    target_name = strchr (name, '$');
989
1.04k
    if (target_name != NULL)
990
335
      {
991
        /* Gas mode.  */
992
335
        seen_state = 2;
993
        /* Skip the `$'.  */
994
335
        target_name += 1;
995
335
      }
996
997
1.04k
    if (isym.n_numaux == 0)
998
4
      aux.x_scn.x_comdat = 0;
999
1.03k
    else
1000
1.03k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
1.03k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
1.03k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
1.03k
            isym.n_type, isym.n_sclass,
1012
1.03k
            0, isym.n_numaux, &aux);
1013
1.03k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.04k
    switch (aux.x_scn.x_comdat)
1032
1.04k
      {
1033
101
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
101
        *sec_flags &= ~SEC_LINK_ONCE;
1038
101
#endif
1039
101
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
942
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
942
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
942
        break;
1075
1.04k
      }
1076
1.04k
        }
1077
1.04k
        break;
1078
1079
1.04k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
234
        if (strcmp (target_name,
1087
234
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
234
    {
1089
      /* Not the name we're looking for */
1090
234
      continue;
1091
234
    }
1092
        /* Fall through.  */
1093
239
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
239
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
239
    struct coff_comdat_info *comdat;
1103
239
    size_t len = strlen (symname) + 1;
1104
1105
239
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
239
    if (comdat == NULL)
1107
0
      return false;
1108
1109
239
    coff_section_data (abfd, section)->comdat = comdat;
1110
239
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
239
    char *newname = (char *) (comdat + 1);
1112
239
    comdat->name = newname;
1113
239
    memcpy (newname, symname, len);
1114
239
    return true;
1115
239
        }
1116
2.15k
      }
1117
2.15k
  }
1118
60.6k
    }
1119
1120
6.06k
  return true;
1121
7.41k
}
pei-arm.c:handle_COMDAT
Line
Count
Source
861
14.3k
{
862
14.3k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
14.3k
  bfd_byte *esymstart, *esym, *esymend;
864
14.3k
  int seen_state = 0;
865
14.3k
  char *target_name = NULL;
866
867
14.3k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
14.3k
  if (! _bfd_coff_get_external_symbols (abfd))
887
5.33k
    return true;
888
889
8.98k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
8.98k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
8.98k
  for (struct internal_syment isym;
893
68.3k
       esym < esymend;
894
59.3k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
60.7k
    {
896
60.7k
      char buf[SYMNMLEN + 1];
897
60.7k
      const char *symname;
898
899
60.7k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
60.7k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
60.7k
      if (isym.n_scnum == section->target_index)
904
2.62k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
2.62k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
2.62k
    if (symname == NULL)
934
468
      {
935
468
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
468
          abfd);
937
468
        return false;
938
468
      }
939
940
2.15k
    switch (seen_state)
941
2.15k
      {
942
1.68k
      case 0:
943
1.68k
        {
944
    /* The first time we've seen the symbol.  */
945
1.68k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.68k
    if (! ((isym.n_sclass == C_STAT
964
1.68k
      || isym.n_sclass == C_EXT)
965
1.68k
           && BTYPE (isym.n_type) == T_NULL
966
1.68k
           && isym.n_value == 0))
967
640
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
640
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
640
          abfd, symname);
972
640
        return false;
973
640
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.04k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
575
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
575
          " does not match section name '%s'"),
984
575
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.04k
    seen_state = 1;
988
1.04k
    target_name = strchr (name, '$');
989
1.04k
    if (target_name != NULL)
990
335
      {
991
        /* Gas mode.  */
992
335
        seen_state = 2;
993
        /* Skip the `$'.  */
994
335
        target_name += 1;
995
335
      }
996
997
1.04k
    if (isym.n_numaux == 0)
998
4
      aux.x_scn.x_comdat = 0;
999
1.03k
    else
1000
1.03k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
1.03k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
1.03k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
1.03k
            isym.n_type, isym.n_sclass,
1012
1.03k
            0, isym.n_numaux, &aux);
1013
1.03k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.04k
    switch (aux.x_scn.x_comdat)
1032
1.04k
      {
1033
101
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
101
        *sec_flags &= ~SEC_LINK_ONCE;
1038
101
#endif
1039
101
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
0
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
0
        *sec_flags &= ~SEC_LINK_ONCE;
1067
0
#endif
1068
0
        break;
1069
1070
942
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
942
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
942
        break;
1075
1.04k
      }
1076
1.04k
        }
1077
1.04k
        break;
1078
1079
1.04k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
234
        if (strcmp (target_name,
1087
234
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
233
    {
1089
      /* Not the name we're looking for */
1090
233
      continue;
1091
233
    }
1092
        /* Fall through.  */
1093
240
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
240
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
240
    struct coff_comdat_info *comdat;
1103
240
    size_t len = strlen (symname) + 1;
1104
1105
240
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
240
    if (comdat == NULL)
1107
0
      return false;
1108
1109
240
    coff_section_data (abfd, section)->comdat = comdat;
1110
240
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
240
    char *newname = (char *) (comdat + 1);
1112
240
    comdat->name = newname;
1113
240
    memcpy (newname, symname, len);
1114
240
    return true;
1115
240
        }
1116
2.15k
      }
1117
2.15k
  }
1118
60.7k
    }
1119
1120
7.64k
  return true;
1121
8.98k
}
pei-mcore.c:handle_COMDAT
Line
Count
Source
861
10.7k
{
862
10.7k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
10.7k
  bfd_byte *esymstart, *esym, *esymend;
864
10.7k
  int seen_state = 0;
865
10.7k
  char *target_name = NULL;
866
867
10.7k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
10.7k
  if (! _bfd_coff_get_external_symbols (abfd))
887
2.82k
    return true;
888
889
7.88k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
7.88k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
7.88k
  for (struct internal_syment isym;
893
55.1k
       esym < esymend;
894
47.2k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
48.3k
    {
896
48.3k
      char buf[SYMNMLEN + 1];
897
48.3k
      const char *symname;
898
899
48.3k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
48.3k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
48.3k
      if (isym.n_scnum == section->target_index)
904
2.77k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
2.77k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
2.77k
    if (symname == NULL)
934
335
      {
935
335
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
335
          abfd);
937
335
        return false;
938
335
      }
939
940
2.43k
    switch (seen_state)
941
2.43k
      {
942
1.97k
      case 0:
943
1.97k
        {
944
    /* The first time we've seen the symbol.  */
945
1.97k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
1.97k
    if (! ((isym.n_sclass == C_STAT
964
1.97k
      || isym.n_sclass == C_EXT)
965
1.97k
           && BTYPE (isym.n_type) == T_NULL
966
1.97k
           && isym.n_value == 0))
967
571
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
571
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
571
          abfd, symname);
972
571
        return false;
973
571
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.40k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
1.16k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
1.16k
          " does not match section name '%s'"),
984
1.16k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.40k
    seen_state = 1;
988
1.40k
    target_name = strchr (name, '$');
989
1.40k
    if (target_name != NULL)
990
467
      {
991
        /* Gas mode.  */
992
467
        seen_state = 2;
993
        /* Skip the `$'.  */
994
467
        target_name += 1;
995
467
      }
996
997
1.40k
    if (isym.n_numaux == 0)
998
467
      aux.x_scn.x_comdat = 0;
999
934
    else
1000
934
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
934
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
934
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
934
            isym.n_type, isym.n_sclass,
1012
934
            0, isym.n_numaux, &aux);
1013
934
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.40k
    switch (aux.x_scn.x_comdat)
1032
1.40k
      {
1033
233
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
233
        *sec_flags &= ~SEC_LINK_ONCE;
1038
233
#endif
1039
233
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
0
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
0
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
466
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
466
        *sec_flags &= ~SEC_LINK_ONCE;
1067
466
#endif
1068
466
        break;
1069
1070
702
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
702
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
702
        break;
1075
1.40k
      }
1076
1.40k
        }
1077
1.40k
        break;
1078
1079
1.40k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
233
#ifndef TARGET_UNDERSCORE
1083
233
#define TARGET_UNDERSCORE 0
1084
233
#endif
1085
        /* Is this the name we're looking for ?  */
1086
233
        if (strcmp (target_name,
1087
233
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
233
    {
1089
      /* Not the name we're looking for */
1090
233
      continue;
1091
233
    }
1092
        /* Fall through.  */
1093
233
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
233
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
233
    struct coff_comdat_info *comdat;
1103
233
    size_t len = strlen (symname) + 1;
1104
1105
233
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
233
    if (comdat == NULL)
1107
0
      return false;
1108
1109
233
    coff_section_data (abfd, section)->comdat = comdat;
1110
233
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
233
    char *newname = (char *) (comdat + 1);
1112
233
    comdat->name = newname;
1113
233
    memcpy (newname, symname, len);
1114
233
    return true;
1115
233
        }
1116
2.43k
      }
1117
2.43k
  }
1118
48.3k
    }
1119
1120
6.74k
  return true;
1121
7.88k
}
pei-sh.c:handle_COMDAT
Line
Count
Source
861
10.5k
{
862
10.5k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
863
10.5k
  bfd_byte *esymstart, *esym, *esymend;
864
10.5k
  int seen_state = 0;
865
10.5k
  char *target_name = NULL;
866
867
10.5k
  *sec_flags |= SEC_LINK_ONCE;
868
869
  /* Unfortunately, the PE format stores essential information in
870
     the symbol table, of all places.  We need to extract that
871
     information now, so that objdump and the linker will know how
872
     to handle the section without worrying about the symbols.  We
873
     can't call slurp_symtab, because the linker doesn't want the
874
     swapped symbols.  */
875
876
  /* COMDAT sections are special.  The first symbol is the section
877
     symbol, which tells what kind of COMDAT section it is.  The
878
     second symbol is the "comdat symbol" - the one with the
879
     unique name.  GNU uses the section symbol for the unique
880
     name; MS uses ".text" for every comdat section.  Sigh.  - DJ */
881
882
  /* This is not mirrored in sec_to_styp_flags(), but there
883
     doesn't seem to be a need to, either, and it would at best be
884
     rather messy.  */
885
886
10.5k
  if (! _bfd_coff_get_external_symbols (abfd))
887
1.07k
    return true;
888
889
9.49k
  esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
890
9.49k
  esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
891
892
9.49k
  for (struct internal_syment isym;
893
79.3k
       esym < esymend;
894
69.8k
       esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd))
895
71.1k
    {
896
71.1k
      char buf[SYMNMLEN + 1];
897
71.1k
      const char *symname;
898
899
71.1k
      bfd_coff_swap_sym_in (abfd, esym, &isym);
900
901
71.1k
      BFD_ASSERT (sizeof (internal_s->s_name) <= SYMNMLEN);
902
903
71.1k
      if (isym.n_scnum == section->target_index)
904
3.20k
  {
905
    /* According to the MSVC documentation, the first
906
       TWO entries with the section # are both of
907
       interest to us.  The first one is the "section
908
       symbol" (section name).  The second is the comdat
909
       symbol name.  Here, we've found the first
910
       qualifying entry; we distinguish it from the
911
       second with a state flag.
912
913
       In the case of gas-generated (at least until that
914
       is fixed) .o files, it isn't necessarily the
915
       second one.  It may be some other later symbol.
916
917
       Since gas also doesn't follow MS conventions and
918
       emits the section similar to .text$<name>, where
919
       <something> is the name we're looking for, we
920
       distinguish the two as follows:
921
922
       If the section name is simply a section name (no
923
       $) we presume it's MS-generated, and look at
924
       precisely the second symbol for the comdat name.
925
       If the section name has a $, we assume it's
926
       gas-generated, and look for <something> (whatever
927
       follows the $) as the comdat symbol.  */
928
929
    /* All 3 branches use this.  */
930
3.20k
    symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
931
932
    /* PR 17512 file: 078-11867-0.004  */
933
3.20k
    if (symname == NULL)
934
135
      {
935
135
        _bfd_error_handler (_("%pB: unable to load COMDAT section name"),
936
135
          abfd);
937
135
        return false;
938
135
      }
939
940
3.07k
    switch (seen_state)
941
3.07k
      {
942
2.60k
      case 0:
943
2.60k
        {
944
    /* The first time we've seen the symbol.  */
945
2.60k
    union internal_auxent aux;
946
947
    /* If it isn't the stuff we're expecting, die;
948
       The MS documentation is vague, but it
949
       appears that the second entry serves BOTH
950
       as the comdat symbol and the defining
951
       symbol record (either C_STAT or C_EXT,
952
       possibly with an aux entry with debug
953
       information if it's a function.)  It
954
       appears the only way to find the second one
955
       is to count.  (On Intel, they appear to be
956
       adjacent, but on Alpha, they have been
957
       found separated.)
958
959
       Here, we think we've found the first one,
960
       but there's some checking we can do to be
961
       sure.  */
962
963
2.60k
    if (! ((isym.n_sclass == C_STAT
964
2.60k
      || isym.n_sclass == C_EXT)
965
2.60k
           && BTYPE (isym.n_type) == T_NULL
966
2.60k
           && isym.n_value == 0))
967
704
      {
968
        /* Malformed input files can trigger this test.
969
           cf PR 21781.  */
970
704
        _bfd_error_handler (_("%pB: error: unexpected symbol '%s' in COMDAT section"),
971
704
          abfd, symname);
972
704
        return false;
973
704
      }
974
975
    /* FIXME LATER: MSVC generates section names
976
       like .text for comdats.  Gas generates
977
       names like .text$foo__Fv (in the case of a
978
       function).  See comment above for more.  */
979
980
1.89k
    if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
981
      /* xgettext:c-format */
982
1.76k
      _bfd_error_handler (_("%pB: warning: COMDAT symbol '%s'"
983
1.76k
          " does not match section name '%s'"),
984
1.76k
              abfd, symname, name);
985
986
    /* This is the section symbol.  */
987
1.89k
    seen_state = 1;
988
1.89k
    target_name = strchr (name, '$');
989
1.89k
    if (target_name != NULL)
990
468
      {
991
        /* Gas mode.  */
992
468
        seen_state = 2;
993
        /* Skip the `$'.  */
994
468
        target_name += 1;
995
468
      }
996
997
1.89k
    if (isym.n_numaux == 0)
998
833
      aux.x_scn.x_comdat = 0;
999
1.06k
    else
1000
1.06k
      {
1001
        /* PR 17512: file: e2cfe54f.  */
1002
1.06k
        if (esym + bfd_coff_symesz (abfd) >= esymend)
1003
0
          {
1004
      /* xgettext:c-format */
1005
0
      _bfd_error_handler (_("%pB: warning: no symbol for"
1006
0
                " section '%s' found"),
1007
0
              abfd, symname);
1008
0
      break;
1009
0
          }
1010
1.06k
        bfd_coff_swap_aux_in (abfd, esym + bfd_coff_symesz (abfd),
1011
1.06k
            isym.n_type, isym.n_sclass,
1012
1.06k
            0, isym.n_numaux, &aux);
1013
1.06k
      }
1014
1015
    /* FIXME: Microsoft uses NODUPLICATES and
1016
       ASSOCIATIVE, but gnu uses ANY and
1017
       SAME_SIZE.  Unfortunately, gnu doesn't do
1018
       the comdat symbols right.  So, until we can
1019
       fix it to do the right thing, we are
1020
       temporarily disabling comdats for the MS
1021
       types (they're used in DLLs and C++, but we
1022
       don't support *their* C++ libraries anyway
1023
       - DJ.  */
1024
1025
    /* Cygwin does not follow the MS style, and
1026
       uses ANY and SAME_SIZE where NODUPLICATES
1027
       and ASSOCIATIVE should be used.  For
1028
       Interix, we just do the right thing up
1029
       front.  */
1030
1031
1.89k
    switch (aux.x_scn.x_comdat)
1032
1.89k
      {
1033
233
      case IMAGE_COMDAT_SELECT_NODUPLICATES:
1034
#ifdef STRICT_PE_FORMAT
1035
        *sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
1036
#else
1037
233
        *sec_flags &= ~SEC_LINK_ONCE;
1038
233
#endif
1039
233
        break;
1040
1041
0
      case IMAGE_COMDAT_SELECT_ANY:
1042
0
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1043
0
        break;
1044
1045
233
      case IMAGE_COMDAT_SELECT_SAME_SIZE:
1046
233
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
1047
233
        break;
1048
1049
0
      case IMAGE_COMDAT_SELECT_EXACT_MATCH:
1050
        /* Not yet fully implemented ??? */
1051
0
        *sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
1052
0
        break;
1053
1054
        /* debug$S gets this case; other
1055
           implications ??? */
1056
1057
        /* There may be no symbol... we'll search
1058
           the whole table... Is this the right
1059
           place to play this game? Or should we do
1060
           it when reading it in.  */
1061
132
      case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
1062
#ifdef STRICT_PE_FORMAT
1063
        /* FIXME: This is not currently implemented.  */
1064
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1065
#else
1066
132
        *sec_flags &= ~SEC_LINK_ONCE;
1067
132
#endif
1068
132
        break;
1069
1070
1.29k
      default:  /* 0 means "no symbol" */
1071
        /* debug$F gets this case; other
1072
           implications ??? */
1073
1.29k
        *sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
1074
1.29k
        break;
1075
1.89k
      }
1076
1.89k
        }
1077
1.89k
        break;
1078
1079
1.89k
      case 2:
1080
        /* Gas mode: the first matching on partial name.  */
1081
1082
#ifndef TARGET_UNDERSCORE
1083
#define TARGET_UNDERSCORE 0
1084
#endif
1085
        /* Is this the name we're looking for ?  */
1086
236
        if (strcmp (target_name,
1087
236
        symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
1088
3
    {
1089
      /* Not the name we're looking for */
1090
3
      continue;
1091
3
    }
1092
        /* Fall through.  */
1093
466
      case 1:
1094
        /* MSVC mode: the lexically second symbol (or
1095
     drop through from the above).  */
1096
466
        {
1097
    /* This must the second symbol with the
1098
       section #.  It is the actual symbol name.
1099
       Intel puts the two adjacent, but Alpha (at
1100
       least) spreads them out.  */
1101
1102
466
    struct coff_comdat_info *comdat;
1103
466
    size_t len = strlen (symname) + 1;
1104
1105
466
    comdat = bfd_alloc (abfd, sizeof (*comdat) + len);
1106
466
    if (comdat == NULL)
1107
0
      return false;
1108
1109
466
    coff_section_data (abfd, section)->comdat = comdat;
1110
466
    comdat->symbol = (esym - esymstart) / bfd_coff_symesz (abfd);
1111
466
    char *newname = (char *) (comdat + 1);
1112
466
    comdat->name = newname;
1113
466
    memcpy (newname, symname, len);
1114
466
    return true;
1115
466
        }
1116
3.07k
      }
1117
3.07k
  }
1118
71.1k
    }
1119
1120
8.19k
  return true;
1121
9.49k
}
1122
1123
1124
/* The PE version; see above for the general comments.
1125
1126
   Since to set the SEC_LINK_ONCE and associated flags, we have to
1127
   look at the symbol table anyway, we return the symbol table index
1128
   of the symbol being used as the COMDAT symbol.  This is admittedly
1129
   ugly, but there's really nowhere else that we have access to the
1130
   required information.  FIXME: Is the COMDAT symbol index used for
1131
   any purpose other than objdump?  */
1132
1133
static bool
1134
styp_to_sec_flags (bfd *abfd,
1135
       void * hdr,
1136
       const char *name,
1137
       asection *section,
1138
       flagword *flags_ptr)
1139
660k
{
1140
660k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
660k
  unsigned long styp_flags = internal_s->s_flags;
1142
660k
  flagword sec_flags;
1143
660k
  bool result = true;
1144
660k
  bool is_dbg = false;
1145
1146
660k
  if (startswith (name, DOT_DEBUG)
1147
660k
      || startswith (name, DOT_ZDEBUG)
1148
660k
#ifdef COFF_LONG_SECTION_NAMES
1149
660k
      || startswith (name, GNU_LINKONCE_WI)
1150
660k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
660k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
660k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
660k
      || startswith (name, GNU_DEBUGLINK)
1155
660k
      || startswith (name, GNU_DEBUGALTLINK)
1156
660k
#endif
1157
660k
      || startswith (name, ".stab"))
1158
35.3k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
660k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
660k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
484k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
5.04M
  while (styp_flags)
1168
4.38M
    {
1169
4.38M
      unsigned long flag = styp_flags & - styp_flags;
1170
4.38M
      char * unhandled = NULL;
1171
1172
4.38M
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
4.38M
      switch (flag)
1179
4.38M
  {
1180
64.0k
  case STYP_DSECT:
1181
64.0k
    unhandled = "STYP_DSECT";
1182
64.0k
    break;
1183
56.1k
  case STYP_GROUP:
1184
56.1k
    unhandled = "STYP_GROUP";
1185
56.1k
    break;
1186
66.6k
  case STYP_COPY:
1187
66.6k
    unhandled = "STYP_COPY";
1188
66.6k
    break;
1189
62.6k
  case STYP_OVER:
1190
62.6k
    unhandled = "STYP_OVER";
1191
62.6k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
138k
  case STYP_NOLOAD:
1194
138k
    sec_flags |= SEC_NEVER_LOAD;
1195
138k
    break;
1196
0
#endif
1197
175k
  case IMAGE_SCN_MEM_READ:
1198
175k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
175k
    break;
1200
140k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
140k
    break;
1203
71.6k
  case IMAGE_SCN_LNK_OTHER:
1204
71.6k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
71.6k
    break;
1206
57.0k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
57.0k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
57.0k
    break;
1209
153k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
153k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
153k
        " %s in section %s"),
1216
153k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
153k
    break;
1218
207k
  case IMAGE_SCN_MEM_EXECUTE:
1219
207k
    sec_flags |= SEC_CODE;
1220
207k
    break;
1221
155k
  case IMAGE_SCN_MEM_WRITE:
1222
155k
    sec_flags &= ~ SEC_READONLY;
1223
155k
    break;
1224
168k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
168k
       if (is_dbg
1231
168k
#ifdef _COMMENT
1232
168k
        || strcmp (name, _COMMENT) == 0
1233
168k
#endif
1234
168k
        )
1235
16.6k
      {
1236
16.6k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
16.6k
      }
1238
168k
    break;
1239
122k
  case IMAGE_SCN_MEM_SHARED:
1240
122k
    sec_flags |= SEC_COFF_SHARED;
1241
122k
    break;
1242
158k
  case IMAGE_SCN_LNK_REMOVE:
1243
158k
    if (!is_dbg)
1244
150k
      sec_flags |= SEC_EXCLUDE;
1245
158k
    break;
1246
177k
  case IMAGE_SCN_CNT_CODE:
1247
177k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
177k
    break;
1249
142k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
142k
    if (is_dbg)
1251
9.78k
      sec_flags |= SEC_DEBUGGING;
1252
133k
    else
1253
133k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
142k
    break;
1255
123k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
123k
    sec_flags |= SEC_ALLOC;
1257
123k
    break;
1258
162k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
#ifdef COFF_PAGE_SIZE
1266
156k
    sec_flags |= SEC_DEBUGGING;
1267
#endif
1268
162k
    break;
1269
147k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
147k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
12.6k
      result = false;
1273
147k
    break;
1274
1.82M
  default:
1275
    /* Silently ignore for now.  */
1276
1.82M
    break;
1277
4.38M
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
4.38M
      if (unhandled != NULL)
1281
378k
  {
1282
378k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
378k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
378k
       abfd, name, unhandled, flag);
1286
378k
    result = false;
1287
378k
  }
1288
4.38M
    }
1289
1290
660k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
660k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
238k
  if (startswith (name, ".gnu.linkonce"))
1303
404
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
660k
  if (flags_ptr)
1307
660k
    * flags_ptr = sec_flags;
1308
1309
660k
  return result;
1310
660k
}
pei-i386.c:styp_to_sec_flags
Line
Count
Source
1139
49.3k
{
1140
49.3k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
49.3k
  unsigned long styp_flags = internal_s->s_flags;
1142
49.3k
  flagword sec_flags;
1143
49.3k
  bool result = true;
1144
49.3k
  bool is_dbg = false;
1145
1146
49.3k
  if (startswith (name, DOT_DEBUG)
1147
49.3k
      || startswith (name, DOT_ZDEBUG)
1148
49.3k
#ifdef COFF_LONG_SECTION_NAMES
1149
49.3k
      || startswith (name, GNU_LINKONCE_WI)
1150
49.3k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
49.3k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
49.3k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
49.3k
      || startswith (name, GNU_DEBUGLINK)
1155
49.3k
      || startswith (name, GNU_DEBUGALTLINK)
1156
49.3k
#endif
1157
49.3k
      || startswith (name, ".stab"))
1158
2.02k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
49.3k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
49.3k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
39.7k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
332k
  while (styp_flags)
1168
283k
    {
1169
283k
      unsigned long flag = styp_flags & - styp_flags;
1170
283k
      char * unhandled = NULL;
1171
1172
283k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
283k
      switch (flag)
1179
283k
  {
1180
3.70k
  case STYP_DSECT:
1181
3.70k
    unhandled = "STYP_DSECT";
1182
3.70k
    break;
1183
2.97k
  case STYP_GROUP:
1184
2.97k
    unhandled = "STYP_GROUP";
1185
2.97k
    break;
1186
2.93k
  case STYP_COPY:
1187
2.93k
    unhandled = "STYP_COPY";
1188
2.93k
    break;
1189
4.78k
  case STYP_OVER:
1190
4.78k
    unhandled = "STYP_OVER";
1191
4.78k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
10.2k
  case STYP_NOLOAD:
1194
10.2k
    sec_flags |= SEC_NEVER_LOAD;
1195
10.2k
    break;
1196
0
#endif
1197
9.59k
  case IMAGE_SCN_MEM_READ:
1198
9.59k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
9.59k
    break;
1200
10.2k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
10.2k
    break;
1203
6.13k
  case IMAGE_SCN_LNK_OTHER:
1204
6.13k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
6.13k
    break;
1206
2.23k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
2.23k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
2.23k
    break;
1209
9.35k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
9.35k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
9.35k
        " %s in section %s"),
1216
9.35k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
9.35k
    break;
1218
14.9k
  case IMAGE_SCN_MEM_EXECUTE:
1219
14.9k
    sec_flags |= SEC_CODE;
1220
14.9k
    break;
1221
6.92k
  case IMAGE_SCN_MEM_WRITE:
1222
6.92k
    sec_flags &= ~ SEC_READONLY;
1223
6.92k
    break;
1224
10.2k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
10.2k
       if (is_dbg
1231
10.2k
#ifdef _COMMENT
1232
10.2k
        || strcmp (name, _COMMENT) == 0
1233
10.2k
#endif
1234
10.2k
        )
1235
1.42k
      {
1236
1.42k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.42k
      }
1238
10.2k
    break;
1239
6.58k
  case IMAGE_SCN_MEM_SHARED:
1240
6.58k
    sec_flags |= SEC_COFF_SHARED;
1241
6.58k
    break;
1242
12.0k
  case IMAGE_SCN_LNK_REMOVE:
1243
12.0k
    if (!is_dbg)
1244
11.3k
      sec_flags |= SEC_EXCLUDE;
1245
12.0k
    break;
1246
13.8k
  case IMAGE_SCN_CNT_CODE:
1247
13.8k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
13.8k
    break;
1249
8.76k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
8.76k
    if (is_dbg)
1251
998
      sec_flags |= SEC_DEBUGGING;
1252
7.76k
    else
1253
7.76k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
8.76k
    break;
1255
6.04k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
6.04k
    sec_flags |= SEC_ALLOC;
1257
6.04k
    break;
1258
10.7k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
10.7k
#ifdef COFF_PAGE_SIZE
1266
10.7k
    sec_flags |= SEC_DEBUGGING;
1267
10.7k
#endif
1268
10.7k
    break;
1269
8.79k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
8.79k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
578
      result = false;
1273
8.79k
    break;
1274
122k
  default:
1275
    /* Silently ignore for now.  */
1276
122k
    break;
1277
283k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
283k
      if (unhandled != NULL)
1281
22.7k
  {
1282
22.7k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
22.7k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
22.7k
       abfd, name, unhandled, flag);
1286
22.7k
    result = false;
1287
22.7k
  }
1288
283k
    }
1289
1290
49.3k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
49.3k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
49.3k
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
49.3k
  if (startswith (name, ".gnu.linkonce"))
1303
0
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
49.3k
#endif
1305
1306
49.3k
  if (flags_ptr)
1307
49.3k
    * flags_ptr = sec_flags;
1308
1309
49.3k
  return result;
1310
49.3k
}
pe-x86_64.c:styp_to_sec_flags
Line
Count
Source
1139
91.8k
{
1140
91.8k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
91.8k
  unsigned long styp_flags = internal_s->s_flags;
1142
91.8k
  flagword sec_flags;
1143
91.8k
  bool result = true;
1144
91.8k
  bool is_dbg = false;
1145
1146
91.8k
  if (startswith (name, DOT_DEBUG)
1147
91.8k
      || startswith (name, DOT_ZDEBUG)
1148
91.8k
#ifdef COFF_LONG_SECTION_NAMES
1149
91.8k
      || startswith (name, GNU_LINKONCE_WI)
1150
91.8k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
91.8k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
91.8k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
91.8k
      || startswith (name, GNU_DEBUGLINK)
1155
91.8k
      || startswith (name, GNU_DEBUGALTLINK)
1156
91.8k
#endif
1157
91.8k
      || startswith (name, ".stab"))
1158
13.9k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
91.8k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
91.8k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
68.6k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
726k
  while (styp_flags)
1168
634k
    {
1169
634k
      unsigned long flag = styp_flags & - styp_flags;
1170
634k
      char * unhandled = NULL;
1171
1172
634k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
634k
      switch (flag)
1179
634k
  {
1180
9.85k
  case STYP_DSECT:
1181
9.85k
    unhandled = "STYP_DSECT";
1182
9.85k
    break;
1183
7.81k
  case STYP_GROUP:
1184
7.81k
    unhandled = "STYP_GROUP";
1185
7.81k
    break;
1186
9.06k
  case STYP_COPY:
1187
9.06k
    unhandled = "STYP_COPY";
1188
9.06k
    break;
1189
8.90k
  case STYP_OVER:
1190
8.90k
    unhandled = "STYP_OVER";
1191
8.90k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
20.5k
  case STYP_NOLOAD:
1194
20.5k
    sec_flags |= SEC_NEVER_LOAD;
1195
20.5k
    break;
1196
0
#endif
1197
23.2k
  case IMAGE_SCN_MEM_READ:
1198
23.2k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
23.2k
    break;
1200
29.3k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
29.3k
    break;
1203
11.8k
  case IMAGE_SCN_LNK_OTHER:
1204
11.8k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
11.8k
    break;
1206
10.7k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
10.7k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
10.7k
    break;
1209
27.8k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
27.8k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
27.8k
        " %s in section %s"),
1216
27.8k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
27.8k
    break;
1218
26.1k
  case IMAGE_SCN_MEM_EXECUTE:
1219
26.1k
    sec_flags |= SEC_CODE;
1220
26.1k
    break;
1221
23.1k
  case IMAGE_SCN_MEM_WRITE:
1222
23.1k
    sec_flags &= ~ SEC_READONLY;
1223
23.1k
    break;
1224
23.3k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
23.3k
       if (is_dbg
1231
23.3k
#ifdef _COMMENT
1232
23.3k
        || strcmp (name, _COMMENT) == 0
1233
23.3k
#endif
1234
23.3k
        )
1235
2.19k
      {
1236
2.19k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
2.19k
      }
1238
23.3k
    break;
1239
26.9k
  case IMAGE_SCN_MEM_SHARED:
1240
26.9k
    sec_flags |= SEC_COFF_SHARED;
1241
26.9k
    break;
1242
23.0k
  case IMAGE_SCN_LNK_REMOVE:
1243
23.0k
    if (!is_dbg)
1244
20.7k
      sec_flags |= SEC_EXCLUDE;
1245
23.0k
    break;
1246
28.0k
  case IMAGE_SCN_CNT_CODE:
1247
28.0k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
28.0k
    break;
1249
21.7k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
21.7k
    if (is_dbg)
1251
2.08k
      sec_flags |= SEC_DEBUGGING;
1252
19.6k
    else
1253
19.6k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
21.7k
    break;
1255
11.8k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
11.8k
    sec_flags |= SEC_ALLOC;
1257
11.8k
    break;
1258
17.6k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
17.6k
#ifdef COFF_PAGE_SIZE
1266
17.6k
    sec_flags |= SEC_DEBUGGING;
1267
17.6k
#endif
1268
17.6k
    break;
1269
22.5k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
22.5k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
1.47k
      result = false;
1273
22.5k
    break;
1274
250k
  default:
1275
    /* Silently ignore for now.  */
1276
250k
    break;
1277
634k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
634k
      if (unhandled != NULL)
1281
58.2k
  {
1282
58.2k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
58.2k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
58.2k
       abfd, name, unhandled, flag);
1286
58.2k
    result = false;
1287
58.2k
  }
1288
634k
    }
1289
1290
91.8k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
91.8k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
91.8k
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
91.8k
  if (startswith (name, ".gnu.linkonce"))
1303
0
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
91.8k
#endif
1305
1306
91.8k
  if (flags_ptr)
1307
91.8k
    * flags_ptr = sec_flags;
1308
1309
91.8k
  return result;
1310
91.8k
}
pei-x86_64.c:styp_to_sec_flags
Line
Count
Source
1139
73.0k
{
1140
73.0k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
73.0k
  unsigned long styp_flags = internal_s->s_flags;
1142
73.0k
  flagword sec_flags;
1143
73.0k
  bool result = true;
1144
73.0k
  bool is_dbg = false;
1145
1146
73.0k
  if (startswith (name, DOT_DEBUG)
1147
73.0k
      || startswith (name, DOT_ZDEBUG)
1148
73.0k
#ifdef COFF_LONG_SECTION_NAMES
1149
73.0k
      || startswith (name, GNU_LINKONCE_WI)
1150
73.0k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
73.0k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
73.0k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
73.0k
      || startswith (name, GNU_DEBUGLINK)
1155
73.0k
      || startswith (name, GNU_DEBUGALTLINK)
1156
73.0k
#endif
1157
73.0k
      || startswith (name, ".stab"))
1158
3.38k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
73.0k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
73.0k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
55.9k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
437k
  while (styp_flags)
1168
364k
    {
1169
364k
      unsigned long flag = styp_flags & - styp_flags;
1170
364k
      char * unhandled = NULL;
1171
1172
364k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
364k
      switch (flag)
1179
364k
  {
1180
2.66k
  case STYP_DSECT:
1181
2.66k
    unhandled = "STYP_DSECT";
1182
2.66k
    break;
1183
3.47k
  case STYP_GROUP:
1184
3.47k
    unhandled = "STYP_GROUP";
1185
3.47k
    break;
1186
4.71k
  case STYP_COPY:
1187
4.71k
    unhandled = "STYP_COPY";
1188
4.71k
    break;
1189
2.88k
  case STYP_OVER:
1190
2.88k
    unhandled = "STYP_OVER";
1191
2.88k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
11.8k
  case STYP_NOLOAD:
1194
11.8k
    sec_flags |= SEC_NEVER_LOAD;
1195
11.8k
    break;
1196
0
#endif
1197
17.0k
  case IMAGE_SCN_MEM_READ:
1198
17.0k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
17.0k
    break;
1200
11.6k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
11.6k
    break;
1203
3.17k
  case IMAGE_SCN_LNK_OTHER:
1204
3.17k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
3.17k
    break;
1206
2.90k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
2.90k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
2.90k
    break;
1209
13.7k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
13.7k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
13.7k
        " %s in section %s"),
1216
13.7k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
13.7k
    break;
1218
20.4k
  case IMAGE_SCN_MEM_EXECUTE:
1219
20.4k
    sec_flags |= SEC_CODE;
1220
20.4k
    break;
1221
13.1k
  case IMAGE_SCN_MEM_WRITE:
1222
13.1k
    sec_flags &= ~ SEC_READONLY;
1223
13.1k
    break;
1224
14.4k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
14.4k
       if (is_dbg
1231
14.4k
#ifdef _COMMENT
1232
14.4k
        || strcmp (name, _COMMENT) == 0
1233
14.4k
#endif
1234
14.4k
        )
1235
1.76k
      {
1236
1.76k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.76k
      }
1238
14.4k
    break;
1239
8.23k
  case IMAGE_SCN_MEM_SHARED:
1240
8.23k
    sec_flags |= SEC_COFF_SHARED;
1241
8.23k
    break;
1242
14.9k
  case IMAGE_SCN_LNK_REMOVE:
1243
14.9k
    if (!is_dbg)
1244
13.6k
      sec_flags |= SEC_EXCLUDE;
1245
14.9k
    break;
1246
15.5k
  case IMAGE_SCN_CNT_CODE:
1247
15.5k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
15.5k
    break;
1249
14.8k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
14.8k
    if (is_dbg)
1251
1.86k
      sec_flags |= SEC_DEBUGGING;
1252
12.9k
    else
1253
12.9k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
14.8k
    break;
1255
12.0k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
12.0k
    sec_flags |= SEC_ALLOC;
1257
12.0k
    break;
1258
13.2k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
13.2k
#ifdef COFF_PAGE_SIZE
1266
13.2k
    sec_flags |= SEC_DEBUGGING;
1267
13.2k
#endif
1268
13.2k
    break;
1269
9.28k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
9.28k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
682
      result = false;
1273
9.28k
    break;
1274
154k
  default:
1275
    /* Silently ignore for now.  */
1276
154k
    break;
1277
364k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
364k
      if (unhandled != NULL)
1281
19.8k
  {
1282
19.8k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
19.8k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
19.8k
       abfd, name, unhandled, flag);
1286
19.8k
    result = false;
1287
19.8k
  }
1288
364k
    }
1289
1290
73.0k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
73.0k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
73.0k
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
73.0k
  if (startswith (name, ".gnu.linkonce"))
1303
0
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
73.0k
#endif
1305
1306
73.0k
  if (flags_ptr)
1307
73.0k
    * flags_ptr = sec_flags;
1308
1309
73.0k
  return result;
1310
73.0k
}
pei-aarch64.c:styp_to_sec_flags
Line
Count
Source
1139
47.4k
{
1140
47.4k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
47.4k
  unsigned long styp_flags = internal_s->s_flags;
1142
47.4k
  flagword sec_flags;
1143
47.4k
  bool result = true;
1144
47.4k
  bool is_dbg = false;
1145
1146
47.4k
  if (startswith (name, DOT_DEBUG)
1147
47.4k
      || startswith (name, DOT_ZDEBUG)
1148
47.4k
#ifdef COFF_LONG_SECTION_NAMES
1149
47.4k
      || startswith (name, GNU_LINKONCE_WI)
1150
47.4k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
47.4k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
47.4k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
47.4k
      || startswith (name, GNU_DEBUGLINK)
1155
47.4k
      || startswith (name, GNU_DEBUGALTLINK)
1156
47.4k
#endif
1157
47.4k
      || startswith (name, ".stab"))
1158
1.01k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
47.4k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
47.4k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
26.5k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
486k
  while (styp_flags)
1168
439k
    {
1169
439k
      unsigned long flag = styp_flags & - styp_flags;
1170
439k
      char * unhandled = NULL;
1171
1172
439k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
439k
      switch (flag)
1179
439k
  {
1180
5.06k
  case STYP_DSECT:
1181
5.06k
    unhandled = "STYP_DSECT";
1182
5.06k
    break;
1183
4.27k
  case STYP_GROUP:
1184
4.27k
    unhandled = "STYP_GROUP";
1185
4.27k
    break;
1186
6.42k
  case STYP_COPY:
1187
6.42k
    unhandled = "STYP_COPY";
1188
6.42k
    break;
1189
4.17k
  case STYP_OVER:
1190
4.17k
    unhandled = "STYP_OVER";
1191
4.17k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
6.07k
  case STYP_NOLOAD:
1194
6.07k
    sec_flags |= SEC_NEVER_LOAD;
1195
6.07k
    break;
1196
0
#endif
1197
20.9k
  case IMAGE_SCN_MEM_READ:
1198
20.9k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
20.9k
    break;
1200
17.8k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
17.8k
    break;
1203
5.09k
  case IMAGE_SCN_LNK_OTHER:
1204
5.09k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
5.09k
    break;
1206
5.75k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
5.75k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
5.75k
    break;
1209
18.7k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
18.7k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
18.7k
        " %s in section %s"),
1216
18.7k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
18.7k
    break;
1218
21.8k
  case IMAGE_SCN_MEM_EXECUTE:
1219
21.8k
    sec_flags |= SEC_CODE;
1220
21.8k
    break;
1221
19.4k
  case IMAGE_SCN_MEM_WRITE:
1222
19.4k
    sec_flags &= ~ SEC_READONLY;
1223
19.4k
    break;
1224
9.65k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
9.65k
       if (is_dbg
1231
9.65k
#ifdef _COMMENT
1232
9.65k
        || strcmp (name, _COMMENT) == 0
1233
9.65k
#endif
1234
9.65k
        )
1235
913
      {
1236
913
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
913
      }
1238
9.65k
    break;
1239
8.61k
  case IMAGE_SCN_MEM_SHARED:
1240
8.61k
    sec_flags |= SEC_COFF_SHARED;
1241
8.61k
    break;
1242
18.3k
  case IMAGE_SCN_LNK_REMOVE:
1243
18.3k
    if (!is_dbg)
1244
18.2k
      sec_flags |= SEC_EXCLUDE;
1245
18.3k
    break;
1246
19.3k
  case IMAGE_SCN_CNT_CODE:
1247
19.3k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
19.3k
    break;
1249
15.4k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
15.4k
    if (is_dbg)
1251
341
      sec_flags |= SEC_DEBUGGING;
1252
15.0k
    else
1253
15.0k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
15.4k
    break;
1255
15.5k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
15.5k
    sec_flags |= SEC_ALLOC;
1257
15.5k
    break;
1258
10.1k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
10.1k
#ifdef COFF_PAGE_SIZE
1266
10.1k
    sec_flags |= SEC_DEBUGGING;
1267
10.1k
#endif
1268
10.1k
    break;
1269
14.7k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
14.7k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
2.09k
      result = false;
1273
14.7k
    break;
1274
191k
  default:
1275
    /* Silently ignore for now.  */
1276
191k
    break;
1277
439k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
439k
      if (unhandled != NULL)
1281
30.7k
  {
1282
30.7k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
30.7k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
30.7k
       abfd, name, unhandled, flag);
1286
30.7k
    result = false;
1287
30.7k
  }
1288
439k
    }
1289
1290
47.4k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
47.4k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
47.4k
  if (flags_ptr)
1307
47.4k
    * flags_ptr = sec_flags;
1308
1309
47.4k
  return result;
1310
47.4k
}
pe-aarch64.c:styp_to_sec_flags
Line
Count
Source
1139
36.7k
{
1140
36.7k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
36.7k
  unsigned long styp_flags = internal_s->s_flags;
1142
36.7k
  flagword sec_flags;
1143
36.7k
  bool result = true;
1144
36.7k
  bool is_dbg = false;
1145
1146
36.7k
  if (startswith (name, DOT_DEBUG)
1147
36.7k
      || startswith (name, DOT_ZDEBUG)
1148
36.7k
#ifdef COFF_LONG_SECTION_NAMES
1149
36.7k
      || startswith (name, GNU_LINKONCE_WI)
1150
36.7k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
36.7k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
36.7k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
36.7k
      || startswith (name, GNU_DEBUGLINK)
1155
36.7k
      || startswith (name, GNU_DEBUGALTLINK)
1156
36.7k
#endif
1157
36.7k
      || startswith (name, ".stab"))
1158
1.41k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
36.7k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
36.7k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
17.4k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
310k
  while (styp_flags)
1168
273k
    {
1169
273k
      unsigned long flag = styp_flags & - styp_flags;
1170
273k
      char * unhandled = NULL;
1171
1172
273k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
273k
      switch (flag)
1179
273k
  {
1180
1.20k
  case STYP_DSECT:
1181
1.20k
    unhandled = "STYP_DSECT";
1182
1.20k
    break;
1183
1.09k
  case STYP_GROUP:
1184
1.09k
    unhandled = "STYP_GROUP";
1185
1.09k
    break;
1186
1.21k
  case STYP_COPY:
1187
1.21k
    unhandled = "STYP_COPY";
1188
1.21k
    break;
1189
1.20k
  case STYP_OVER:
1190
1.20k
    unhandled = "STYP_OVER";
1191
1.20k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
12.0k
  case STYP_NOLOAD:
1194
12.0k
    sec_flags |= SEC_NEVER_LOAD;
1195
12.0k
    break;
1196
0
#endif
1197
19.3k
  case IMAGE_SCN_MEM_READ:
1198
19.3k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
19.3k
    break;
1200
6.80k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
6.80k
    break;
1203
1.09k
  case IMAGE_SCN_LNK_OTHER:
1204
1.09k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
1.09k
    break;
1206
1.38k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
1.38k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
1.38k
    break;
1209
7.85k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
7.85k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
7.85k
        " %s in section %s"),
1216
7.85k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
7.85k
    break;
1218
7.16k
  case IMAGE_SCN_MEM_EXECUTE:
1219
7.16k
    sec_flags |= SEC_CODE;
1220
7.16k
    break;
1221
19.3k
  case IMAGE_SCN_MEM_WRITE:
1222
19.3k
    sec_flags &= ~ SEC_READONLY;
1223
19.3k
    break;
1224
13.2k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
13.2k
       if (is_dbg
1231
13.2k
#ifdef _COMMENT
1232
13.2k
        || strcmp (name, _COMMENT) == 0
1233
13.2k
#endif
1234
13.2k
        )
1235
1.01k
      {
1236
1.01k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.01k
      }
1238
13.2k
    break;
1239
2.25k
  case IMAGE_SCN_MEM_SHARED:
1240
2.25k
    sec_flags |= SEC_COFF_SHARED;
1241
2.25k
    break;
1242
6.85k
  case IMAGE_SCN_LNK_REMOVE:
1243
6.85k
    if (!is_dbg)
1244
6.74k
      sec_flags |= SEC_EXCLUDE;
1245
6.85k
    break;
1246
4.55k
  case IMAGE_SCN_CNT_CODE:
1247
4.55k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
4.55k
    break;
1249
15.8k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
15.8k
    if (is_dbg)
1251
447
      sec_flags |= SEC_DEBUGGING;
1252
15.3k
    else
1253
15.3k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
15.8k
    break;
1255
17.5k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
17.5k
    sec_flags |= SEC_ALLOC;
1257
17.5k
    break;
1258
12.5k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
12.5k
#ifdef COFF_PAGE_SIZE
1266
12.5k
    sec_flags |= SEC_DEBUGGING;
1267
12.5k
#endif
1268
12.5k
    break;
1269
3.33k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
3.33k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
315
      result = false;
1273
3.33k
    break;
1274
117k
  default:
1275
    /* Silently ignore for now.  */
1276
117k
    break;
1277
273k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
273k
      if (unhandled != NULL)
1281
7.20k
  {
1282
7.20k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
7.20k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
7.20k
       abfd, name, unhandled, flag);
1286
7.20k
    result = false;
1287
7.20k
  }
1288
273k
    }
1289
1290
36.7k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
36.7k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
36.7k
  if (flags_ptr)
1307
36.7k
    * flags_ptr = sec_flags;
1308
1309
36.7k
  return result;
1310
36.7k
}
pei-ia64.c:styp_to_sec_flags
Line
Count
Source
1139
40.5k
{
1140
40.5k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
40.5k
  unsigned long styp_flags = internal_s->s_flags;
1142
40.5k
  flagword sec_flags;
1143
40.5k
  bool result = true;
1144
40.5k
  bool is_dbg = false;
1145
1146
40.5k
  if (startswith (name, DOT_DEBUG)
1147
40.5k
      || startswith (name, DOT_ZDEBUG)
1148
40.5k
#ifdef COFF_LONG_SECTION_NAMES
1149
40.5k
      || startswith (name, GNU_LINKONCE_WI)
1150
40.5k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
40.5k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
40.5k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
40.5k
      || startswith (name, GNU_DEBUGLINK)
1155
40.5k
      || startswith (name, GNU_DEBUGALTLINK)
1156
40.5k
#endif
1157
40.5k
      || startswith (name, ".stab"))
1158
1.25k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
40.5k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
40.5k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
28.6k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
334k
  while (styp_flags)
1168
293k
    {
1169
293k
      unsigned long flag = styp_flags & - styp_flags;
1170
293k
      char * unhandled = NULL;
1171
1172
293k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
293k
      switch (flag)
1179
293k
  {
1180
4.82k
  case STYP_DSECT:
1181
4.82k
    unhandled = "STYP_DSECT";
1182
4.82k
    break;
1183
4.15k
  case STYP_GROUP:
1184
4.15k
    unhandled = "STYP_GROUP";
1185
4.15k
    break;
1186
5.27k
  case STYP_COPY:
1187
5.27k
    unhandled = "STYP_COPY";
1188
5.27k
    break;
1189
5.51k
  case STYP_OVER:
1190
5.51k
    unhandled = "STYP_OVER";
1191
5.51k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
10.1k
  case STYP_NOLOAD:
1194
10.1k
    sec_flags |= SEC_NEVER_LOAD;
1195
10.1k
    break;
1196
0
#endif
1197
11.8k
  case IMAGE_SCN_MEM_READ:
1198
11.8k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
11.8k
    break;
1200
8.83k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
8.83k
    break;
1203
5.43k
  case IMAGE_SCN_LNK_OTHER:
1204
5.43k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
5.43k
    break;
1206
5.44k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
5.44k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
5.44k
    break;
1209
10.1k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
10.1k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
10.1k
        " %s in section %s"),
1216
10.1k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
10.1k
    break;
1218
13.8k
  case IMAGE_SCN_MEM_EXECUTE:
1219
13.8k
    sec_flags |= SEC_CODE;
1220
13.8k
    break;
1221
8.12k
  case IMAGE_SCN_MEM_WRITE:
1222
8.12k
    sec_flags &= ~ SEC_READONLY;
1223
8.12k
    break;
1224
11.7k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
11.7k
       if (is_dbg
1231
11.7k
#ifdef _COMMENT
1232
11.7k
        || strcmp (name, _COMMENT) == 0
1233
11.7k
#endif
1234
11.7k
        )
1235
444
      {
1236
444
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
444
      }
1238
11.7k
    break;
1239
8.18k
  case IMAGE_SCN_MEM_SHARED:
1240
8.18k
    sec_flags |= SEC_COFF_SHARED;
1241
8.18k
    break;
1242
11.7k
  case IMAGE_SCN_LNK_REMOVE:
1243
11.7k
    if (!is_dbg)
1244
11.0k
      sec_flags |= SEC_EXCLUDE;
1245
11.7k
    break;
1246
11.6k
  case IMAGE_SCN_CNT_CODE:
1247
11.6k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
11.6k
    break;
1249
8.72k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
8.72k
    if (is_dbg)
1251
342
      sec_flags |= SEC_DEBUGGING;
1252
8.38k
    else
1253
8.38k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
8.72k
    break;
1255
8.54k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
8.54k
    sec_flags |= SEC_ALLOC;
1257
8.54k
    break;
1258
12.4k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
12.4k
#ifdef COFF_PAGE_SIZE
1266
12.4k
    sec_flags |= SEC_DEBUGGING;
1267
12.4k
#endif
1268
12.4k
    break;
1269
9.77k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
9.77k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
913
      result = false;
1273
9.77k
    break;
1274
117k
  default:
1275
    /* Silently ignore for now.  */
1276
117k
    break;
1277
293k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
293k
      if (unhandled != NULL)
1281
30.6k
  {
1282
30.6k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
30.6k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
30.6k
       abfd, name, unhandled, flag);
1286
30.6k
    result = false;
1287
30.6k
  }
1288
293k
    }
1289
1290
40.5k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
40.5k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
40.5k
  if (flags_ptr)
1307
40.5k
    * flags_ptr = sec_flags;
1308
1309
40.5k
  return result;
1310
40.5k
}
pei-loongarch64.c:styp_to_sec_flags
Line
Count
Source
1139
32.0k
{
1140
32.0k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
32.0k
  unsigned long styp_flags = internal_s->s_flags;
1142
32.0k
  flagword sec_flags;
1143
32.0k
  bool result = true;
1144
32.0k
  bool is_dbg = false;
1145
1146
32.0k
  if (startswith (name, DOT_DEBUG)
1147
32.0k
      || startswith (name, DOT_ZDEBUG)
1148
32.0k
#ifdef COFF_LONG_SECTION_NAMES
1149
32.0k
      || startswith (name, GNU_LINKONCE_WI)
1150
32.0k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
32.0k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
32.0k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
32.0k
      || startswith (name, GNU_DEBUGLINK)
1155
32.0k
      || startswith (name, GNU_DEBUGALTLINK)
1156
32.0k
#endif
1157
32.0k
      || startswith (name, ".stab"))
1158
1.34k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
32.0k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
32.0k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
21.9k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
275k
  while (styp_flags)
1168
243k
    {
1169
243k
      unsigned long flag = styp_flags & - styp_flags;
1170
243k
      char * unhandled = NULL;
1171
1172
243k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
243k
      switch (flag)
1179
243k
  {
1180
4.81k
  case STYP_DSECT:
1181
4.81k
    unhandled = "STYP_DSECT";
1182
4.81k
    break;
1183
4.15k
  case STYP_GROUP:
1184
4.15k
    unhandled = "STYP_GROUP";
1185
4.15k
    break;
1186
4.28k
  case STYP_COPY:
1187
4.28k
    unhandled = "STYP_COPY";
1188
4.28k
    break;
1189
4.28k
  case STYP_OVER:
1190
4.28k
    unhandled = "STYP_OVER";
1191
4.28k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
8.41k
  case STYP_NOLOAD:
1194
8.41k
    sec_flags |= SEC_NEVER_LOAD;
1195
8.41k
    break;
1196
0
#endif
1197
10.1k
  case IMAGE_SCN_MEM_READ:
1198
10.1k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
10.1k
    break;
1200
9.15k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
9.15k
    break;
1203
4.87k
  case IMAGE_SCN_LNK_OTHER:
1204
4.87k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
4.87k
    break;
1206
4.01k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
4.01k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
4.01k
    break;
1209
9.41k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
9.41k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
9.41k
        " %s in section %s"),
1216
9.41k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
9.41k
    break;
1218
11.4k
  case IMAGE_SCN_MEM_EXECUTE:
1219
11.4k
    sec_flags |= SEC_CODE;
1220
11.4k
    break;
1221
7.58k
  case IMAGE_SCN_MEM_WRITE:
1222
7.58k
    sec_flags &= ~ SEC_READONLY;
1223
7.58k
    break;
1224
9.94k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
9.94k
       if (is_dbg
1231
9.94k
#ifdef _COMMENT
1232
9.94k
        || strcmp (name, _COMMENT) == 0
1233
9.94k
#endif
1234
9.94k
        )
1235
555
      {
1236
555
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
555
      }
1238
9.94k
    break;
1239
7.06k
  case IMAGE_SCN_MEM_SHARED:
1240
7.06k
    sec_flags |= SEC_COFF_SHARED;
1241
7.06k
    break;
1242
8.78k
  case IMAGE_SCN_LNK_REMOVE:
1243
8.78k
    if (!is_dbg)
1244
8.33k
      sec_flags |= SEC_EXCLUDE;
1245
8.78k
    break;
1246
8.38k
  case IMAGE_SCN_CNT_CODE:
1247
8.38k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
8.38k
    break;
1249
8.69k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
8.69k
    if (is_dbg)
1251
445
      sec_flags |= SEC_DEBUGGING;
1252
8.24k
    else
1253
8.24k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
8.69k
    break;
1255
6.19k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
6.19k
    sec_flags |= SEC_ALLOC;
1257
6.19k
    break;
1258
8.34k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
8.34k
#ifdef COFF_PAGE_SIZE
1266
8.34k
    sec_flags |= SEC_DEBUGGING;
1267
8.34k
#endif
1268
8.34k
    break;
1269
7.26k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
7.26k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
784
      result = false;
1273
7.26k
    break;
1274
95.8k
  default:
1275
    /* Silently ignore for now.  */
1276
95.8k
    break;
1277
243k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
243k
      if (unhandled != NULL)
1281
26.4k
  {
1282
26.4k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
26.4k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
26.4k
       abfd, name, unhandled, flag);
1286
26.4k
    result = false;
1287
26.4k
  }
1288
243k
    }
1289
1290
32.0k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
32.0k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
32.0k
  if (flags_ptr)
1307
32.0k
    * flags_ptr = sec_flags;
1308
1309
32.0k
  return result;
1310
32.0k
}
pe-arm-wince.c:styp_to_sec_flags
Line
Count
Source
1139
9.52k
{
1140
9.52k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
9.52k
  unsigned long styp_flags = internal_s->s_flags;
1142
9.52k
  flagword sec_flags;
1143
9.52k
  bool result = true;
1144
9.52k
  bool is_dbg = false;
1145
1146
9.52k
  if (startswith (name, DOT_DEBUG)
1147
9.52k
      || startswith (name, DOT_ZDEBUG)
1148
9.52k
#ifdef COFF_LONG_SECTION_NAMES
1149
9.52k
      || startswith (name, GNU_LINKONCE_WI)
1150
9.52k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
9.52k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
9.52k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
9.52k
      || startswith (name, GNU_DEBUGLINK)
1155
9.52k
      || startswith (name, GNU_DEBUGALTLINK)
1156
9.52k
#endif
1157
9.52k
      || startswith (name, ".stab"))
1158
338
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
9.52k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
9.52k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
7.79k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
72.0k
  while (styp_flags)
1168
62.4k
    {
1169
62.4k
      unsigned long flag = styp_flags & - styp_flags;
1170
62.4k
      char * unhandled = NULL;
1171
1172
62.4k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
62.4k
      switch (flag)
1179
62.4k
  {
1180
1.51k
  case STYP_DSECT:
1181
1.51k
    unhandled = "STYP_DSECT";
1182
1.51k
    break;
1183
1.51k
  case STYP_GROUP:
1184
1.51k
    unhandled = "STYP_GROUP";
1185
1.51k
    break;
1186
1.52k
  case STYP_COPY:
1187
1.52k
    unhandled = "STYP_COPY";
1188
1.52k
    break;
1189
1.41k
  case STYP_OVER:
1190
1.41k
    unhandled = "STYP_OVER";
1191
1.41k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
1.27k
  case STYP_NOLOAD:
1194
1.27k
    sec_flags |= SEC_NEVER_LOAD;
1195
1.27k
    break;
1196
0
#endif
1197
1.73k
  case IMAGE_SCN_MEM_READ:
1198
1.73k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
1.73k
    break;
1200
1.19k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
1.19k
    break;
1203
1.21k
  case IMAGE_SCN_LNK_OTHER:
1204
1.21k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
1.21k
    break;
1206
1.18k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
1.18k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
1.18k
    break;
1209
1.60k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
1.60k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
1.60k
        " %s in section %s"),
1216
1.60k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
1.60k
    break;
1218
2.47k
  case IMAGE_SCN_MEM_EXECUTE:
1219
2.47k
    sec_flags |= SEC_CODE;
1220
2.47k
    break;
1221
998
  case IMAGE_SCN_MEM_WRITE:
1222
998
    sec_flags &= ~ SEC_READONLY;
1223
998
    break;
1224
1.61k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
1.61k
       if (is_dbg
1231
1.61k
#ifdef _COMMENT
1232
1.61k
        || strcmp (name, _COMMENT) == 0
1233
1.61k
#endif
1234
1.61k
        )
1235
222
      {
1236
222
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
222
      }
1238
1.61k
    break;
1239
1.95k
  case IMAGE_SCN_MEM_SHARED:
1240
1.95k
    sec_flags |= SEC_COFF_SHARED;
1241
1.95k
    break;
1242
879
  case IMAGE_SCN_LNK_REMOVE:
1243
879
    if (!is_dbg)
1244
766
      sec_flags |= SEC_EXCLUDE;
1245
879
    break;
1246
4.32k
  case IMAGE_SCN_CNT_CODE:
1247
4.32k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
4.32k
    break;
1249
1.62k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
1.62k
    if (is_dbg)
1251
113
      sec_flags |= SEC_DEBUGGING;
1252
1.51k
    else
1253
1.51k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
1.62k
    break;
1255
1.08k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
1.08k
    sec_flags |= SEC_ALLOC;
1257
1.08k
    break;
1258
2.91k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
2.91k
#ifdef COFF_PAGE_SIZE
1266
2.91k
    sec_flags |= SEC_DEBUGGING;
1267
2.91k
#endif
1268
2.91k
    break;
1269
3.22k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
3.22k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
322
      result = false;
1273
3.22k
    break;
1274
27.2k
  default:
1275
    /* Silently ignore for now.  */
1276
27.2k
    break;
1277
62.4k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
62.4k
      if (unhandled != NULL)
1281
8.37k
  {
1282
8.37k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
8.37k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
8.37k
       abfd, name, unhandled, flag);
1286
8.37k
    result = false;
1287
8.37k
  }
1288
62.4k
    }
1289
1290
9.52k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
9.52k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
9.52k
  if (flags_ptr)
1307
9.52k
    * flags_ptr = sec_flags;
1308
1309
9.52k
  return result;
1310
9.52k
}
pe-arm.c:styp_to_sec_flags
Line
Count
Source
1139
9.52k
{
1140
9.52k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
9.52k
  unsigned long styp_flags = internal_s->s_flags;
1142
9.52k
  flagword sec_flags;
1143
9.52k
  bool result = true;
1144
9.52k
  bool is_dbg = false;
1145
1146
9.52k
  if (startswith (name, DOT_DEBUG)
1147
9.52k
      || startswith (name, DOT_ZDEBUG)
1148
9.52k
#ifdef COFF_LONG_SECTION_NAMES
1149
9.52k
      || startswith (name, GNU_LINKONCE_WI)
1150
9.52k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
9.52k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
9.52k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
9.52k
      || startswith (name, GNU_DEBUGLINK)
1155
9.52k
      || startswith (name, GNU_DEBUGALTLINK)
1156
9.52k
#endif
1157
9.52k
      || startswith (name, ".stab"))
1158
338
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
9.52k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
9.52k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
7.79k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
72.0k
  while (styp_flags)
1168
62.4k
    {
1169
62.4k
      unsigned long flag = styp_flags & - styp_flags;
1170
62.4k
      char * unhandled = NULL;
1171
1172
62.4k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
62.4k
      switch (flag)
1179
62.4k
  {
1180
1.51k
  case STYP_DSECT:
1181
1.51k
    unhandled = "STYP_DSECT";
1182
1.51k
    break;
1183
1.51k
  case STYP_GROUP:
1184
1.51k
    unhandled = "STYP_GROUP";
1185
1.51k
    break;
1186
1.52k
  case STYP_COPY:
1187
1.52k
    unhandled = "STYP_COPY";
1188
1.52k
    break;
1189
1.41k
  case STYP_OVER:
1190
1.41k
    unhandled = "STYP_OVER";
1191
1.41k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
1.27k
  case STYP_NOLOAD:
1194
1.27k
    sec_flags |= SEC_NEVER_LOAD;
1195
1.27k
    break;
1196
0
#endif
1197
1.73k
  case IMAGE_SCN_MEM_READ:
1198
1.73k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
1.73k
    break;
1200
1.19k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
1.19k
    break;
1203
1.21k
  case IMAGE_SCN_LNK_OTHER:
1204
1.21k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
1.21k
    break;
1206
1.18k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
1.18k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
1.18k
    break;
1209
1.60k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
1.60k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
1.60k
        " %s in section %s"),
1216
1.60k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
1.60k
    break;
1218
2.47k
  case IMAGE_SCN_MEM_EXECUTE:
1219
2.47k
    sec_flags |= SEC_CODE;
1220
2.47k
    break;
1221
998
  case IMAGE_SCN_MEM_WRITE:
1222
998
    sec_flags &= ~ SEC_READONLY;
1223
998
    break;
1224
1.61k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
1.61k
       if (is_dbg
1231
1.61k
#ifdef _COMMENT
1232
1.61k
        || strcmp (name, _COMMENT) == 0
1233
1.61k
#endif
1234
1.61k
        )
1235
222
      {
1236
222
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
222
      }
1238
1.61k
    break;
1239
1.95k
  case IMAGE_SCN_MEM_SHARED:
1240
1.95k
    sec_flags |= SEC_COFF_SHARED;
1241
1.95k
    break;
1242
879
  case IMAGE_SCN_LNK_REMOVE:
1243
879
    if (!is_dbg)
1244
766
      sec_flags |= SEC_EXCLUDE;
1245
879
    break;
1246
4.32k
  case IMAGE_SCN_CNT_CODE:
1247
4.32k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
4.32k
    break;
1249
1.62k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
1.62k
    if (is_dbg)
1251
113
      sec_flags |= SEC_DEBUGGING;
1252
1.51k
    else
1253
1.51k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
1.62k
    break;
1255
1.08k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
1.08k
    sec_flags |= SEC_ALLOC;
1257
1.08k
    break;
1258
2.91k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
2.91k
#ifdef COFF_PAGE_SIZE
1266
2.91k
    sec_flags |= SEC_DEBUGGING;
1267
2.91k
#endif
1268
2.91k
    break;
1269
3.22k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
3.22k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
322
      result = false;
1273
3.22k
    break;
1274
27.2k
  default:
1275
    /* Silently ignore for now.  */
1276
27.2k
    break;
1277
62.4k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
62.4k
      if (unhandled != NULL)
1281
8.37k
  {
1282
8.37k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
8.37k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
8.37k
       abfd, name, unhandled, flag);
1286
8.37k
    result = false;
1287
8.37k
  }
1288
62.4k
    }
1289
1290
9.52k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
9.52k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
9.52k
  if (flags_ptr)
1307
9.52k
    * flags_ptr = sec_flags;
1308
1309
9.52k
  return result;
1310
9.52k
}
pe-i386.c:styp_to_sec_flags
Line
Count
Source
1139
23.8k
{
1140
23.8k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
23.8k
  unsigned long styp_flags = internal_s->s_flags;
1142
23.8k
  flagword sec_flags;
1143
23.8k
  bool result = true;
1144
23.8k
  bool is_dbg = false;
1145
1146
23.8k
  if (startswith (name, DOT_DEBUG)
1147
23.8k
      || startswith (name, DOT_ZDEBUG)
1148
23.8k
#ifdef COFF_LONG_SECTION_NAMES
1149
23.8k
      || startswith (name, GNU_LINKONCE_WI)
1150
23.8k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
23.8k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
23.8k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
23.8k
      || startswith (name, GNU_DEBUGLINK)
1155
23.8k
      || startswith (name, GNU_DEBUGALTLINK)
1156
23.8k
#endif
1157
23.8k
      || startswith (name, ".stab"))
1158
1.85k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
23.8k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
23.8k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
16.1k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
223k
  while (styp_flags)
1168
200k
    {
1169
200k
      unsigned long flag = styp_flags & - styp_flags;
1170
200k
      char * unhandled = NULL;
1171
1172
200k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
200k
      switch (flag)
1179
200k
  {
1180
4.85k
  case STYP_DSECT:
1181
4.85k
    unhandled = "STYP_DSECT";
1182
4.85k
    break;
1183
5.78k
  case STYP_GROUP:
1184
5.78k
    unhandled = "STYP_GROUP";
1185
5.78k
    break;
1186
4.88k
  case STYP_COPY:
1187
4.88k
    unhandled = "STYP_COPY";
1188
4.88k
    break;
1189
4.40k
  case STYP_OVER:
1190
4.40k
    unhandled = "STYP_OVER";
1191
4.40k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
7.02k
  case STYP_NOLOAD:
1194
7.02k
    sec_flags |= SEC_NEVER_LOAD;
1195
7.02k
    break;
1196
0
#endif
1197
7.69k
  case IMAGE_SCN_MEM_READ:
1198
7.69k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
7.69k
    break;
1200
5.88k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
5.88k
    break;
1203
4.67k
  case IMAGE_SCN_LNK_OTHER:
1204
4.67k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
4.67k
    break;
1206
4.28k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
4.28k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
4.28k
    break;
1209
5.92k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
5.92k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
5.92k
        " %s in section %s"),
1216
5.92k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
5.92k
    break;
1218
10.4k
  case IMAGE_SCN_MEM_EXECUTE:
1219
10.4k
    sec_flags |= SEC_CODE;
1220
10.4k
    break;
1221
2.81k
  case IMAGE_SCN_MEM_WRITE:
1222
2.81k
    sec_flags &= ~ SEC_READONLY;
1223
2.81k
    break;
1224
8.64k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
8.64k
       if (is_dbg
1231
8.64k
#ifdef _COMMENT
1232
8.64k
        || strcmp (name, _COMMENT) == 0
1233
8.64k
#endif
1234
8.64k
        )
1235
857
      {
1236
857
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
857
      }
1238
8.64k
    break;
1239
7.42k
  case IMAGE_SCN_MEM_SHARED:
1240
7.42k
    sec_flags |= SEC_COFF_SHARED;
1241
7.42k
    break;
1242
5.21k
  case IMAGE_SCN_LNK_REMOVE:
1243
5.21k
    if (!is_dbg)
1244
4.90k
      sec_flags |= SEC_EXCLUDE;
1245
5.21k
    break;
1246
6.77k
  case IMAGE_SCN_CNT_CODE:
1247
6.77k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
6.77k
    break;
1249
6.87k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
6.87k
    if (is_dbg)
1251
551
      sec_flags |= SEC_DEBUGGING;
1252
6.32k
    else
1253
6.32k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
6.87k
    break;
1255
2.01k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
2.01k
    sec_flags |= SEC_ALLOC;
1257
2.01k
    break;
1258
7.61k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
7.61k
#ifdef COFF_PAGE_SIZE
1266
7.61k
    sec_flags |= SEC_DEBUGGING;
1267
7.61k
#endif
1268
7.61k
    break;
1269
6.94k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
6.94k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
215
      result = false;
1273
6.94k
    break;
1274
79.8k
  default:
1275
    /* Silently ignore for now.  */
1276
79.8k
    break;
1277
200k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
200k
      if (unhandled != NULL)
1281
28.8k
  {
1282
28.8k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
28.8k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
28.8k
       abfd, name, unhandled, flag);
1286
28.8k
    result = false;
1287
28.8k
  }
1288
200k
    }
1289
1290
23.8k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
23.8k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
23.8k
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
23.8k
  if (startswith (name, ".gnu.linkonce"))
1303
404
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
23.8k
#endif
1305
1306
23.8k
  if (flags_ptr)
1307
23.8k
    * flags_ptr = sec_flags;
1308
1309
23.8k
  return result;
1310
23.8k
}
pe-mcore.c:styp_to_sec_flags
Line
Count
Source
1139
23.4k
{
1140
23.4k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
23.4k
  unsigned long styp_flags = internal_s->s_flags;
1142
23.4k
  flagword sec_flags;
1143
23.4k
  bool result = true;
1144
23.4k
  bool is_dbg = false;
1145
1146
23.4k
  if (startswith (name, DOT_DEBUG)
1147
23.4k
      || startswith (name, DOT_ZDEBUG)
1148
23.4k
#ifdef COFF_LONG_SECTION_NAMES
1149
23.4k
      || startswith (name, GNU_LINKONCE_WI)
1150
23.4k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
23.4k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
23.4k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
23.4k
      || startswith (name, GNU_DEBUGLINK)
1155
23.4k
      || startswith (name, GNU_DEBUGALTLINK)
1156
23.4k
#endif
1157
23.4k
      || startswith (name, ".stab"))
1158
1.78k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
23.4k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
23.4k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
17.3k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
166k
  while (styp_flags)
1168
142k
    {
1169
142k
      unsigned long flag = styp_flags & - styp_flags;
1170
142k
      char * unhandled = NULL;
1171
1172
142k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
142k
      switch (flag)
1179
142k
  {
1180
760
  case STYP_DSECT:
1181
760
    unhandled = "STYP_DSECT";
1182
760
    break;
1183
644
  case STYP_GROUP:
1184
644
    unhandled = "STYP_GROUP";
1185
644
    break;
1186
752
  case STYP_COPY:
1187
752
    unhandled = "STYP_COPY";
1188
752
    break;
1189
452
  case STYP_OVER:
1190
452
    unhandled = "STYP_OVER";
1191
452
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
5.27k
  case STYP_NOLOAD:
1194
5.27k
    sec_flags |= SEC_NEVER_LOAD;
1195
5.27k
    break;
1196
0
#endif
1197
6.11k
  case IMAGE_SCN_MEM_READ:
1198
6.11k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
6.11k
    break;
1200
2.82k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
2.82k
    break;
1203
668
  case IMAGE_SCN_LNK_OTHER:
1204
668
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
668
    break;
1206
651
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
651
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
651
    break;
1209
4.35k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
4.35k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
4.35k
        " %s in section %s"),
1216
4.35k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
4.35k
    break;
1218
8.49k
  case IMAGE_SCN_MEM_EXECUTE:
1219
8.49k
    sec_flags |= SEC_CODE;
1220
8.49k
    break;
1221
7.46k
  case IMAGE_SCN_MEM_WRITE:
1222
7.46k
    sec_flags &= ~ SEC_READONLY;
1223
7.46k
    break;
1224
7.76k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
7.76k
       if (is_dbg
1231
7.76k
#ifdef _COMMENT
1232
7.76k
        || strcmp (name, _COMMENT) == 0
1233
7.76k
#endif
1234
7.76k
        )
1235
1.20k
      {
1236
1.20k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.20k
      }
1238
7.76k
    break;
1239
5.11k
  case IMAGE_SCN_MEM_SHARED:
1240
5.11k
    sec_flags |= SEC_COFF_SHARED;
1241
5.11k
    break;
1242
3.27k
  case IMAGE_SCN_LNK_REMOVE:
1243
3.27k
    if (!is_dbg)
1244
3.03k
      sec_flags |= SEC_EXCLUDE;
1245
3.27k
    break;
1246
7.15k
  case IMAGE_SCN_CNT_CODE:
1247
7.15k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
7.15k
    break;
1249
5.88k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
5.88k
    if (is_dbg)
1251
738
      sec_flags |= SEC_DEBUGGING;
1252
5.14k
    else
1253
5.14k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
5.88k
    break;
1255
5.34k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
5.34k
    sec_flags |= SEC_ALLOC;
1257
5.34k
    break;
1258
6.75k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
6.75k
#ifdef COFF_PAGE_SIZE
1266
6.75k
    sec_flags |= SEC_DEBUGGING;
1267
6.75k
#endif
1268
6.75k
    break;
1269
4.57k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
4.57k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
220
      result = false;
1273
4.57k
    break;
1274
58.2k
  default:
1275
    /* Silently ignore for now.  */
1276
58.2k
    break;
1277
142k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
142k
      if (unhandled != NULL)
1281
3.92k
  {
1282
3.92k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
3.92k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
3.92k
       abfd, name, unhandled, flag);
1286
3.92k
    result = false;
1287
3.92k
  }
1288
142k
    }
1289
1290
23.4k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
23.4k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
23.4k
  if (flags_ptr)
1307
23.4k
    * flags_ptr = sec_flags;
1308
1309
23.4k
  return result;
1310
23.4k
}
pe-sh.c:styp_to_sec_flags
Line
Count
Source
1139
23.5k
{
1140
23.5k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
23.5k
  unsigned long styp_flags = internal_s->s_flags;
1142
23.5k
  flagword sec_flags;
1143
23.5k
  bool result = true;
1144
23.5k
  bool is_dbg = false;
1145
1146
23.5k
  if (startswith (name, DOT_DEBUG)
1147
23.5k
      || startswith (name, DOT_ZDEBUG)
1148
23.5k
#ifdef COFF_LONG_SECTION_NAMES
1149
23.5k
      || startswith (name, GNU_LINKONCE_WI)
1150
23.5k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
23.5k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
23.5k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
23.5k
      || startswith (name, GNU_DEBUGLINK)
1155
23.5k
      || startswith (name, GNU_DEBUGALTLINK)
1156
23.5k
#endif
1157
23.5k
      || startswith (name, ".stab"))
1158
1.85k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
23.5k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
23.5k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
19.8k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
159k
  while (styp_flags)
1168
136k
    {
1169
136k
      unsigned long flag = styp_flags & - styp_flags;
1170
136k
      char * unhandled = NULL;
1171
1172
136k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
136k
      switch (flag)
1179
136k
  {
1180
3.97k
  case STYP_DSECT:
1181
3.97k
    unhandled = "STYP_DSECT";
1182
3.97k
    break;
1183
2.12k
  case STYP_GROUP:
1184
2.12k
    unhandled = "STYP_GROUP";
1185
2.12k
    break;
1186
2.32k
  case STYP_COPY:
1187
2.32k
    unhandled = "STYP_COPY";
1188
2.32k
    break;
1189
3.34k
  case STYP_OVER:
1190
3.34k
    unhandled = "STYP_OVER";
1191
3.34k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
3.44k
  case STYP_NOLOAD:
1194
3.44k
    sec_flags |= SEC_NEVER_LOAD;
1195
3.44k
    break;
1196
0
#endif
1197
3.72k
  case IMAGE_SCN_MEM_READ:
1198
3.72k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
3.72k
    break;
1200
2.52k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
2.52k
    break;
1203
4.54k
  case IMAGE_SCN_LNK_OTHER:
1204
4.54k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
4.54k
    break;
1206
2.23k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
2.23k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
2.23k
    break;
1209
3.02k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
3.02k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
3.02k
        " %s in section %s"),
1216
3.02k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
3.02k
    break;
1218
5.26k
  case IMAGE_SCN_MEM_EXECUTE:
1219
5.26k
    sec_flags |= SEC_CODE;
1220
5.26k
    break;
1221
3.21k
  case IMAGE_SCN_MEM_WRITE:
1222
3.21k
    sec_flags &= ~ SEC_READONLY;
1223
3.21k
    break;
1224
5.31k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
5.31k
       if (is_dbg
1231
5.31k
#ifdef _COMMENT
1232
5.31k
        || strcmp (name, _COMMENT) == 0
1233
5.31k
#endif
1234
5.31k
        )
1235
628
      {
1236
628
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
628
      }
1238
5.31k
    break;
1239
4.09k
  case IMAGE_SCN_MEM_SHARED:
1240
4.09k
    sec_flags |= SEC_COFF_SHARED;
1241
4.09k
    break;
1242
5.09k
  case IMAGE_SCN_LNK_REMOVE:
1243
5.09k
    if (!is_dbg)
1244
4.89k
      sec_flags |= SEC_EXCLUDE;
1245
5.09k
    break;
1246
5.57k
  case IMAGE_SCN_CNT_CODE:
1247
5.57k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
5.57k
    break;
1249
5.36k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
5.36k
    if (is_dbg)
1251
413
      sec_flags |= SEC_DEBUGGING;
1252
4.94k
    else
1253
4.94k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
5.36k
    break;
1255
1.41k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
1.41k
    sec_flags |= SEC_ALLOC;
1257
1.41k
    break;
1258
5.70k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
#ifdef COFF_PAGE_SIZE
1266
    sec_flags |= SEC_DEBUGGING;
1267
#endif
1268
5.70k
    break;
1269
7.02k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
7.02k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
820
      result = false;
1273
7.02k
    break;
1274
56.8k
  default:
1275
    /* Silently ignore for now.  */
1276
56.8k
    break;
1277
136k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
136k
      if (unhandled != NULL)
1281
18.5k
  {
1282
18.5k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
18.5k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
18.5k
       abfd, name, unhandled, flag);
1286
18.5k
    result = false;
1287
18.5k
  }
1288
136k
    }
1289
1290
23.5k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
23.5k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
23.5k
  if (flags_ptr)
1307
23.5k
    * flags_ptr = sec_flags;
1308
1309
23.5k
  return result;
1310
23.5k
}
pei-arm-wince.c:styp_to_sec_flags
Line
Count
Source
1139
37.9k
{
1140
37.9k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
37.9k
  unsigned long styp_flags = internal_s->s_flags;
1142
37.9k
  flagword sec_flags;
1143
37.9k
  bool result = true;
1144
37.9k
  bool is_dbg = false;
1145
1146
37.9k
  if (startswith (name, DOT_DEBUG)
1147
37.9k
      || startswith (name, DOT_ZDEBUG)
1148
37.9k
#ifdef COFF_LONG_SECTION_NAMES
1149
37.9k
      || startswith (name, GNU_LINKONCE_WI)
1150
37.9k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
37.9k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
37.9k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
37.9k
      || startswith (name, GNU_DEBUGLINK)
1155
37.9k
      || startswith (name, GNU_DEBUGALTLINK)
1156
37.9k
#endif
1157
37.9k
      || startswith (name, ".stab"))
1158
1.26k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
37.9k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
37.9k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
27.9k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
322k
  while (styp_flags)
1168
284k
    {
1169
284k
      unsigned long flag = styp_flags & - styp_flags;
1170
284k
      char * unhandled = NULL;
1171
1172
284k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
284k
      switch (flag)
1179
284k
  {
1180
5.15k
  case STYP_DSECT:
1181
5.15k
    unhandled = "STYP_DSECT";
1182
5.15k
    break;
1183
3.96k
  case STYP_GROUP:
1184
3.96k
    unhandled = "STYP_GROUP";
1185
3.96k
    break;
1186
5.98k
  case STYP_COPY:
1187
5.98k
    unhandled = "STYP_COPY";
1188
5.98k
    break;
1189
4.43k
  case STYP_OVER:
1190
4.43k
    unhandled = "STYP_OVER";
1191
4.43k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
10.2k
  case STYP_NOLOAD:
1194
10.2k
    sec_flags |= SEC_NEVER_LOAD;
1195
10.2k
    break;
1196
0
#endif
1197
9.95k
  case IMAGE_SCN_MEM_READ:
1198
9.95k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
9.95k
    break;
1200
8.80k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
8.80k
    break;
1203
5.29k
  case IMAGE_SCN_LNK_OTHER:
1204
5.29k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
5.29k
    break;
1206
3.52k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
3.52k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
3.52k
    break;
1209
8.75k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
8.75k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
8.75k
        " %s in section %s"),
1216
8.75k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
8.75k
    break;
1218
14.0k
  case IMAGE_SCN_MEM_EXECUTE:
1219
14.0k
    sec_flags |= SEC_CODE;
1220
14.0k
    break;
1221
10.5k
  case IMAGE_SCN_MEM_WRITE:
1222
10.5k
    sec_flags &= ~ SEC_READONLY;
1223
10.5k
    break;
1224
12.5k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
12.5k
       if (is_dbg
1231
12.5k
#ifdef _COMMENT
1232
12.5k
        || strcmp (name, _COMMENT) == 0
1233
12.5k
#endif
1234
12.5k
        )
1235
1.28k
      {
1236
1.28k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.28k
      }
1238
12.5k
    break;
1239
8.75k
  case IMAGE_SCN_MEM_SHARED:
1240
8.75k
    sec_flags |= SEC_COFF_SHARED;
1241
8.75k
    break;
1242
11.8k
  case IMAGE_SCN_LNK_REMOVE:
1243
11.8k
    if (!is_dbg)
1244
11.2k
      sec_flags |= SEC_EXCLUDE;
1245
11.8k
    break;
1246
8.76k
  case IMAGE_SCN_CNT_CODE:
1247
8.76k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
8.76k
    break;
1249
5.57k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
5.57k
    if (is_dbg)
1251
343
      sec_flags |= SEC_DEBUGGING;
1252
5.22k
    else
1253
5.22k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
5.57k
    break;
1255
8.49k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
8.49k
    sec_flags |= SEC_ALLOC;
1257
8.49k
    break;
1258
12.8k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
12.8k
#ifdef COFF_PAGE_SIZE
1266
12.8k
    sec_flags |= SEC_DEBUGGING;
1267
12.8k
#endif
1268
12.8k
    break;
1269
10.9k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
10.9k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
1.10k
      result = false;
1273
10.9k
    break;
1274
113k
  default:
1275
    /* Silently ignore for now.  */
1276
113k
    break;
1277
284k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
284k
      if (unhandled != NULL)
1281
28.3k
  {
1282
28.3k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
28.3k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
28.3k
       abfd, name, unhandled, flag);
1286
28.3k
    result = false;
1287
28.3k
  }
1288
284k
    }
1289
1290
37.9k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
37.9k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
37.9k
  if (flags_ptr)
1307
37.9k
    * flags_ptr = sec_flags;
1308
1309
37.9k
  return result;
1310
37.9k
}
pei-arm.c:styp_to_sec_flags
Line
Count
Source
1139
54.0k
{
1140
54.0k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
54.0k
  unsigned long styp_flags = internal_s->s_flags;
1142
54.0k
  flagword sec_flags;
1143
54.0k
  bool result = true;
1144
54.0k
  bool is_dbg = false;
1145
1146
54.0k
  if (startswith (name, DOT_DEBUG)
1147
54.0k
      || startswith (name, DOT_ZDEBUG)
1148
54.0k
#ifdef COFF_LONG_SECTION_NAMES
1149
54.0k
      || startswith (name, GNU_LINKONCE_WI)
1150
54.0k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
54.0k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
54.0k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
54.0k
      || startswith (name, GNU_DEBUGLINK)
1155
54.0k
      || startswith (name, GNU_DEBUGALTLINK)
1156
54.0k
#endif
1157
54.0k
      || startswith (name, ".stab"))
1158
1.27k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
54.0k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
54.0k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
40.9k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
438k
  while (styp_flags)
1168
384k
    {
1169
384k
      unsigned long flag = styp_flags & - styp_flags;
1170
384k
      char * unhandled = NULL;
1171
1172
384k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
384k
      switch (flag)
1179
384k
  {
1180
7.09k
  case STYP_DSECT:
1181
7.09k
    unhandled = "STYP_DSECT";
1182
7.09k
    break;
1183
6.32k
  case STYP_GROUP:
1184
6.32k
    unhandled = "STYP_GROUP";
1185
6.32k
    break;
1186
8.02k
  case STYP_COPY:
1187
8.02k
    unhandled = "STYP_COPY";
1188
8.02k
    break;
1189
6.76k
  case STYP_OVER:
1190
6.76k
    unhandled = "STYP_OVER";
1191
6.76k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
12.3k
  case STYP_NOLOAD:
1194
12.3k
    sec_flags |= SEC_NEVER_LOAD;
1195
12.3k
    break;
1196
0
#endif
1197
13.0k
  case IMAGE_SCN_MEM_READ:
1198
13.0k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
13.0k
    break;
1200
10.6k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
10.6k
    break;
1203
7.22k
  case IMAGE_SCN_LNK_OTHER:
1204
7.22k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
7.22k
    break;
1206
5.61k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
5.61k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
5.61k
    break;
1209
12.5k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
12.5k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
12.5k
        " %s in section %s"),
1216
12.5k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
12.5k
    break;
1218
17.6k
  case IMAGE_SCN_MEM_EXECUTE:
1219
17.6k
    sec_flags |= SEC_CODE;
1220
17.6k
    break;
1221
13.8k
  case IMAGE_SCN_MEM_WRITE:
1222
13.8k
    sec_flags &= ~ SEC_READONLY;
1223
13.8k
    break;
1224
16.2k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
16.2k
       if (is_dbg
1231
16.2k
#ifdef _COMMENT
1232
16.2k
        || strcmp (name, _COMMENT) == 0
1233
16.2k
#endif
1234
16.2k
        )
1235
1.28k
      {
1236
1.28k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.28k
      }
1238
16.2k
    break;
1239
9.81k
  case IMAGE_SCN_MEM_SHARED:
1240
9.81k
    sec_flags |= SEC_COFF_SHARED;
1241
9.81k
    break;
1242
15.3k
  case IMAGE_SCN_LNK_REMOVE:
1243
15.3k
    if (!is_dbg)
1244
14.8k
      sec_flags |= SEC_EXCLUDE;
1245
15.3k
    break;
1246
14.1k
  case IMAGE_SCN_CNT_CODE:
1247
14.1k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
14.1k
    break;
1249
8.50k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
8.50k
    if (is_dbg)
1251
349
      sec_flags |= SEC_DEBUGGING;
1252
8.15k
    else
1253
8.15k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
8.50k
    break;
1255
10.9k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
10.9k
    sec_flags |= SEC_ALLOC;
1257
10.9k
    break;
1258
16.3k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
16.3k
#ifdef COFF_PAGE_SIZE
1266
16.3k
    sec_flags |= SEC_DEBUGGING;
1267
16.3k
#endif
1268
16.3k
    break;
1269
14.3k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
14.3k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
1.10k
      result = false;
1273
14.3k
    break;
1274
157k
  default:
1275
    /* Silently ignore for now.  */
1276
157k
    break;
1277
384k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
384k
      if (unhandled != NULL)
1281
41.0k
  {
1282
41.0k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
41.0k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
41.0k
       abfd, name, unhandled, flag);
1286
41.0k
    result = false;
1287
41.0k
  }
1288
384k
    }
1289
1290
54.0k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
54.0k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
54.0k
  if (flags_ptr)
1307
54.0k
    * flags_ptr = sec_flags;
1308
1309
54.0k
  return result;
1310
54.0k
}
pei-mcore.c:styp_to_sec_flags
Line
Count
Source
1139
67.4k
{
1140
67.4k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
67.4k
  unsigned long styp_flags = internal_s->s_flags;
1142
67.4k
  flagword sec_flags;
1143
67.4k
  bool result = true;
1144
67.4k
  bool is_dbg = false;
1145
1146
67.4k
  if (startswith (name, DOT_DEBUG)
1147
67.4k
      || startswith (name, DOT_ZDEBUG)
1148
67.4k
#ifdef COFF_LONG_SECTION_NAMES
1149
67.4k
      || startswith (name, GNU_LINKONCE_WI)
1150
67.4k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
67.4k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
67.4k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
67.4k
      || startswith (name, GNU_DEBUGLINK)
1155
67.4k
      || startswith (name, GNU_DEBUGALTLINK)
1156
67.4k
#endif
1157
67.4k
      || startswith (name, ".stab"))
1158
1.08k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
67.4k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
67.4k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
55.7k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
370k
  while (styp_flags)
1168
303k
    {
1169
303k
      unsigned long flag = styp_flags & - styp_flags;
1170
303k
      char * unhandled = NULL;
1171
1172
303k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
303k
      switch (flag)
1179
303k
  {
1180
2.52k
  case STYP_DSECT:
1181
2.52k
    unhandled = "STYP_DSECT";
1182
2.52k
    break;
1183
1.86k
  case STYP_GROUP:
1184
1.86k
    unhandled = "STYP_GROUP";
1185
1.86k
    break;
1186
3.01k
  case STYP_COPY:
1187
3.01k
    unhandled = "STYP_COPY";
1188
3.01k
    break;
1189
3.47k
  case STYP_OVER:
1190
3.47k
    unhandled = "STYP_OVER";
1191
3.47k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
9.46k
  case STYP_NOLOAD:
1194
9.46k
    sec_flags |= SEC_NEVER_LOAD;
1195
9.46k
    break;
1196
0
#endif
1197
11.7k
  case IMAGE_SCN_MEM_READ:
1198
11.7k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
11.7k
    break;
1200
7.08k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
7.08k
    break;
1203
3.89k
  case IMAGE_SCN_LNK_OTHER:
1204
3.89k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
3.89k
    break;
1206
2.54k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
2.54k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
2.54k
    break;
1209
8.76k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
8.76k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
8.76k
        " %s in section %s"),
1216
8.76k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
8.76k
    break;
1218
16.1k
  case IMAGE_SCN_MEM_EXECUTE:
1219
16.1k
    sec_flags |= SEC_CODE;
1220
16.1k
    break;
1221
9.67k
  case IMAGE_SCN_MEM_WRITE:
1222
9.67k
    sec_flags &= ~ SEC_READONLY;
1223
9.67k
    break;
1224
11.5k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
11.5k
       if (is_dbg
1231
11.5k
#ifdef _COMMENT
1232
11.5k
        || strcmp (name, _COMMENT) == 0
1233
11.5k
#endif
1234
11.5k
        )
1235
1.96k
      {
1236
1.96k
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
1.96k
      }
1238
11.5k
    break;
1239
8.42k
  case IMAGE_SCN_MEM_SHARED:
1240
8.42k
    sec_flags |= SEC_COFF_SHARED;
1241
8.42k
    break;
1242
13.2k
  case IMAGE_SCN_LNK_REMOVE:
1243
13.2k
    if (!is_dbg)
1244
13.0k
      sec_flags |= SEC_EXCLUDE;
1245
13.2k
    break;
1246
13.4k
  case IMAGE_SCN_CNT_CODE:
1247
13.4k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
13.4k
    break;
1249
6.92k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
6.92k
    if (is_dbg)
1251
404
      sec_flags |= SEC_DEBUGGING;
1252
6.51k
    else
1253
6.51k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
6.92k
    break;
1255
6.67k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
6.67k
    sec_flags |= SEC_ALLOC;
1257
6.67k
    break;
1258
11.3k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
11.3k
#ifdef COFF_PAGE_SIZE
1266
11.3k
    sec_flags |= SEC_DEBUGGING;
1267
11.3k
#endif
1268
11.3k
    break;
1269
10.7k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
10.7k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
906
      result = false;
1273
10.7k
    break;
1274
140k
  default:
1275
    /* Silently ignore for now.  */
1276
140k
    break;
1277
303k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
303k
      if (unhandled != NULL)
1281
17.3k
  {
1282
17.3k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
17.3k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
17.3k
       abfd, name, unhandled, flag);
1286
17.3k
    result = false;
1287
17.3k
  }
1288
303k
    }
1289
1290
67.4k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
67.4k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
67.4k
  if (flags_ptr)
1307
67.4k
    * flags_ptr = sec_flags;
1308
1309
67.4k
  return result;
1310
67.4k
}
pei-sh.c:styp_to_sec_flags
Line
Count
Source
1139
40.0k
{
1140
40.0k
  struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
1141
40.0k
  unsigned long styp_flags = internal_s->s_flags;
1142
40.0k
  flagword sec_flags;
1143
40.0k
  bool result = true;
1144
40.0k
  bool is_dbg = false;
1145
1146
40.0k
  if (startswith (name, DOT_DEBUG)
1147
40.0k
      || startswith (name, DOT_ZDEBUG)
1148
40.0k
#ifdef COFF_LONG_SECTION_NAMES
1149
40.0k
      || startswith (name, GNU_LINKONCE_WI)
1150
40.0k
      || startswith (name, GNU_LINKONCE_WT)
1151
      /* FIXME: These definitions ought to be in a header file.  */
1152
40.0k
#define GNU_DEBUGLINK   ".gnu_debuglink"
1153
40.0k
#define GNU_DEBUGALTLINK  ".gnu_debugaltlink"
1154
40.0k
      || startswith (name, GNU_DEBUGLINK)
1155
40.0k
      || startswith (name, GNU_DEBUGALTLINK)
1156
40.0k
#endif
1157
40.0k
      || startswith (name, ".stab"))
1158
1.18k
    is_dbg = true;
1159
  /* Assume read only unless IMAGE_SCN_MEM_WRITE is specified.  */
1160
40.0k
  sec_flags = SEC_READONLY;
1161
1162
  /* If section disallows read, then set the NOREAD flag. */
1163
40.0k
  if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
1164
31.9k
    sec_flags |= SEC_COFF_NOREAD;
1165
1166
  /* Process each flag bit in styp_flags in turn.  */
1167
313k
  while (styp_flags)
1168
273k
    {
1169
273k
      unsigned long flag = styp_flags & - styp_flags;
1170
273k
      char * unhandled = NULL;
1171
1172
273k
      styp_flags &= ~ flag;
1173
1174
      /* We infer from the distinct read/write/execute bits the settings
1175
   of some of the bfd flags; the actual values, should we need them,
1176
   are also in pei_section_data (abfd, section)->pe_flags.  */
1177
1178
273k
      switch (flag)
1179
273k
  {
1180
4.53k
  case STYP_DSECT:
1181
4.53k
    unhandled = "STYP_DSECT";
1182
4.53k
    break;
1183
4.50k
  case STYP_GROUP:
1184
4.50k
    unhandled = "STYP_GROUP";
1185
4.50k
    break;
1186
4.65k
  case STYP_COPY:
1187
4.65k
    unhandled = "STYP_COPY";
1188
4.65k
    break;
1189
5.21k
  case STYP_OVER:
1190
5.21k
    unhandled = "STYP_OVER";
1191
5.21k
    break;
1192
0
#ifdef SEC_NEVER_LOAD
1193
8.82k
  case STYP_NOLOAD:
1194
8.82k
    sec_flags |= SEC_NEVER_LOAD;
1195
8.82k
    break;
1196
0
#endif
1197
8.08k
  case IMAGE_SCN_MEM_READ:
1198
8.08k
    sec_flags &= ~SEC_COFF_NOREAD;
1199
8.08k
    break;
1200
6.53k
  case IMAGE_SCN_TYPE_NO_PAD:
1201
    /* Skip.  */
1202
6.53k
    break;
1203
5.23k
  case IMAGE_SCN_LNK_OTHER:
1204
5.23k
    unhandled = "IMAGE_SCN_LNK_OTHER";
1205
5.23k
    break;
1206
3.33k
  case IMAGE_SCN_MEM_NOT_CACHED:
1207
3.33k
    unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
1208
3.33k
    break;
1209
10.0k
  case IMAGE_SCN_MEM_NOT_PAGED:
1210
    /* Generate a warning message rather using the 'unhandled'
1211
       variable as this will allow some .sys files generate by
1212
       other toolchains to be processed.  See bugzilla issue 196.  */
1213
    /* xgettext:c-format */
1214
10.0k
    _bfd_error_handler (_("%pB: warning: ignoring section flag"
1215
10.0k
        " %s in section %s"),
1216
10.0k
            abfd, "IMAGE_SCN_MEM_NOT_PAGED", name);
1217
10.0k
    break;
1218
14.9k
  case IMAGE_SCN_MEM_EXECUTE:
1219
14.9k
    sec_flags |= SEC_CODE;
1220
14.9k
    break;
1221
8.53k
  case IMAGE_SCN_MEM_WRITE:
1222
8.53k
    sec_flags &= ~ SEC_READONLY;
1223
8.53k
    break;
1224
10.7k
  case IMAGE_SCN_MEM_DISCARDABLE:
1225
    /* The MS PE spec says that debug sections are DISCARDABLE,
1226
       but the presence of a DISCARDABLE flag does not necessarily
1227
       mean that a given section contains debug information.  Thus
1228
       we only set the SEC_DEBUGGING flag on sections that we
1229
       recognise as containing debug information.  */
1230
10.7k
       if (is_dbg
1231
10.7k
#ifdef _COMMENT
1232
10.7k
        || strcmp (name, _COMMENT) == 0
1233
10.7k
#endif
1234
10.7k
        )
1235
712
      {
1236
712
        sec_flags |= SEC_DEBUGGING | SEC_READONLY;
1237
712
      }
1238
10.7k
    break;
1239
7.00k
  case IMAGE_SCN_MEM_SHARED:
1240
7.00k
    sec_flags |= SEC_COFF_SHARED;
1241
7.00k
    break;
1242
7.14k
  case IMAGE_SCN_LNK_REMOVE:
1243
7.14k
    if (!is_dbg)
1244
6.66k
      sec_flags |= SEC_EXCLUDE;
1245
7.14k
    break;
1246
11.6k
  case IMAGE_SCN_CNT_CODE:
1247
11.6k
    sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
1248
11.6k
    break;
1249
6.55k
  case IMAGE_SCN_CNT_INITIALIZED_DATA:
1250
6.55k
    if (is_dbg)
1251
239
      sec_flags |= SEC_DEBUGGING;
1252
6.31k
    else
1253
6.31k
      sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
1254
6.55k
    break;
1255
8.63k
  case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
1256
8.63k
    sec_flags |= SEC_ALLOC;
1257
8.63k
    break;
1258
10.9k
  case IMAGE_SCN_LNK_INFO:
1259
    /* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
1260
       defined.  coff_compute_section_file_positions uses
1261
       COFF_PAGE_SIZE to ensure that the low order bits of the
1262
       section VMA and the file offset match.  If we don't know
1263
       COFF_PAGE_SIZE, we can't ensure the correct correspondence,
1264
       and demand page loading of the file will fail.  */
1265
10.9k
#ifdef COFF_PAGE_SIZE
1266
10.9k
    sec_flags |= SEC_DEBUGGING;
1267
10.9k
#endif
1268
10.9k
    break;
1269
10.5k
  case IMAGE_SCN_LNK_COMDAT:
1270
    /* COMDAT gets very special treatment.  */
1271
10.5k
    if (!handle_COMDAT (abfd, &sec_flags, hdr, name, section))
1272
839
      result = false;
1273
10.5k
    break;
1274
115k
  default:
1275
    /* Silently ignore for now.  */
1276
115k
    break;
1277
273k
  }
1278
1279
      /* If the section flag was not handled, report it here.  */
1280
273k
      if (unhandled != NULL)
1281
27.4k
  {
1282
27.4k
    _bfd_error_handler
1283
      /* xgettext:c-format */
1284
27.4k
      (_("%pB (%s): section flag %s (%#lx) ignored"),
1285
27.4k
       abfd, name, unhandled, flag);
1286
27.4k
    result = false;
1287
27.4k
  }
1288
273k
    }
1289
1290
40.0k
  if ((bfd_applicable_section_flags (abfd) & SEC_SMALL_DATA) != 0
1291
40.0k
      && (startswith (name, ".sbss")
1292
0
    || startswith (name, ".sdata")))
1293
0
    sec_flags |= SEC_SMALL_DATA;
1294
1295
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
1296
  /* As a GNU extension, if the name begins with .gnu.linkonce, we
1297
     only link a single copy of the section.  This is used to support
1298
     g++.  g++ will emit each template expansion in its own section.
1299
     The symbols will be defined as weak, so that multiple definitions
1300
     are permitted.  The GNU linker extension is to actually discard
1301
     all but one of the sections.  */
1302
  if (startswith (name, ".gnu.linkonce"))
1303
    sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
1304
#endif
1305
1306
40.0k
  if (flags_ptr)
1307
40.0k
    * flags_ptr = sec_flags;
1308
1309
40.0k
  return result;
1310
40.0k
}
1311
1312
#endif /* COFF_WITH_PE */
1313
1314
0
#define get_index(symbol) ((symbol)->udata.i)
1315
1316
/*
1317
INTERNAL_DEFINITION
1318
  bfd_coff_backend_data
1319
1320
INTERNAL
1321
.{* COFF symbol classifications.  *}
1322
.
1323
.enum coff_symbol_classification
1324
.{
1325
.  {* Global symbol.  *}
1326
.  COFF_SYMBOL_GLOBAL,
1327
.  {* Common symbol.  *}
1328
.  COFF_SYMBOL_COMMON,
1329
.  {* Undefined symbol.  *}
1330
.  COFF_SYMBOL_UNDEFINED,
1331
.  {* Local symbol.  *}
1332
.  COFF_SYMBOL_LOCAL,
1333
.  {* PE section symbol.  *}
1334
.  COFF_SYMBOL_PE_SECTION
1335
.};
1336
.
1337
.typedef asection * (*coff_gc_mark_hook_fn)
1338
.  (asection *, struct bfd_link_info *, struct internal_reloc *,
1339
.   struct coff_link_hash_entry *, struct internal_syment *);
1340
.
1341
1342
Special entry points for gdb to swap in coff symbol table parts:
1343
1344
CODE_FRAGMENT
1345
.typedef struct
1346
.{
1347
.  void (*_bfd_coff_swap_aux_in)
1348
.    (bfd *, void *, int, int, int, int, void *);
1349
.
1350
.  void (*_bfd_coff_swap_sym_in)
1351
.    (bfd *, void *, void *);
1352
.
1353
.  void (*_bfd_coff_swap_lineno_in)
1354
.    (bfd *, void *, void *);
1355
.
1356
.  unsigned int (*_bfd_coff_swap_aux_out)
1357
.    (bfd *, void *, int, int, int, int, void *);
1358
.
1359
.  unsigned int (*_bfd_coff_swap_sym_out)
1360
.    (bfd *, void *, void *);
1361
.
1362
.  unsigned int (*_bfd_coff_swap_lineno_out)
1363
.    (bfd *, void *, void *);
1364
.
1365
.  unsigned int (*_bfd_coff_swap_reloc_out)
1366
.    (bfd *, void *, void *);
1367
.
1368
.  unsigned int (*_bfd_coff_swap_filehdr_out)
1369
.    (bfd *, void *, void *);
1370
.
1371
.  unsigned int (*_bfd_coff_swap_aouthdr_out)
1372
.    (bfd *, void *, void *);
1373
.
1374
.  unsigned int (*_bfd_coff_swap_scnhdr_out)
1375
.    (bfd *, void *, void *);
1376
.
1377
.  unsigned int _bfd_filhsz;
1378
.  unsigned int _bfd_aoutsz;
1379
.  unsigned int _bfd_scnhsz;
1380
.  unsigned int _bfd_symesz;
1381
.  unsigned int _bfd_auxesz;
1382
.  unsigned int _bfd_relsz;
1383
.  unsigned int _bfd_linesz;
1384
.  unsigned int _bfd_filnmlen;
1385
.  bool _bfd_coff_long_filenames;
1386
.
1387
.  bool _bfd_coff_long_section_names;
1388
.  bool (*_bfd_coff_set_long_section_names)
1389
.    (bfd *, int);
1390
.
1391
.  unsigned int _bfd_coff_default_section_alignment_power;
1392
.  bool _bfd_coff_force_symnames_in_strings;
1393
.  unsigned int _bfd_coff_debug_string_prefix_length;
1394
.  unsigned int _bfd_coff_max_nscns;
1395
.
1396
.  void (*_bfd_coff_swap_filehdr_in)
1397
.    (bfd *, void *, void *);
1398
.
1399
.  void (*_bfd_coff_swap_aouthdr_in)
1400
.    (bfd *, void *, void *);
1401
.
1402
.  void (*_bfd_coff_swap_scnhdr_in)
1403
.    (bfd *, void *, void *);
1404
.
1405
.  void (*_bfd_coff_swap_reloc_in)
1406
.    (bfd *abfd, void *, void *);
1407
.
1408
.  bool (*_bfd_coff_bad_format_hook)
1409
.    (bfd *, void *);
1410
.
1411
.  bool (*_bfd_coff_set_arch_mach_hook)
1412
.    (bfd *, void *);
1413
.
1414
.  void * (*_bfd_coff_mkobject_hook)
1415
.    (bfd *, void *, void *);
1416
.
1417
.  bool (*_bfd_styp_to_sec_flags_hook)
1418
.    (bfd *, void *, const char *, asection *, flagword *);
1419
.
1420
.  void (*_bfd_set_alignment_hook)
1421
.    (bfd *, asection *, void *);
1422
.
1423
.  bool (*_bfd_coff_slurp_symbol_table)
1424
.    (bfd *);
1425
.
1426
.  bool (*_bfd_coff_symname_in_debug)
1427
.    (bfd *, struct internal_syment *);
1428
.
1429
.  bool (*_bfd_coff_pointerize_aux_hook)
1430
.    (bfd *, combined_entry_type *, combined_entry_type *,
1431
.     unsigned int, combined_entry_type *);
1432
.
1433
.  bool (*_bfd_coff_print_aux)
1434
.    (bfd *, FILE *, combined_entry_type *, combined_entry_type *,
1435
.     combined_entry_type *, unsigned int);
1436
.
1437
.  bool (*_bfd_coff_reloc16_extra_cases)
1438
.    (bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
1439
.     bfd_byte *, size_t *, size_t *);
1440
.
1441
.  int (*_bfd_coff_reloc16_estimate)
1442
.    (bfd *, asection *, arelent *, unsigned int,
1443
.     struct bfd_link_info *);
1444
.
1445
.  enum coff_symbol_classification (*_bfd_coff_classify_symbol)
1446
.    (bfd *, struct internal_syment *);
1447
.
1448
.  bool (*_bfd_coff_compute_section_file_positions)
1449
.    (bfd *);
1450
.
1451
.  bool (*_bfd_coff_start_final_link)
1452
.    (bfd *, struct bfd_link_info *);
1453
.
1454
.  bool (*_bfd_coff_relocate_section)
1455
.    (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
1456
.     struct internal_reloc *, struct internal_syment *, asection **);
1457
.
1458
.  reloc_howto_type *(*_bfd_coff_rtype_to_howto)
1459
.    (bfd *, asection *, struct internal_reloc *,
1460
.     struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *);
1461
.
1462
.  bool (*_bfd_coff_adjust_symndx)
1463
.    (bfd *, struct bfd_link_info *, bfd *, asection *,
1464
.     struct internal_reloc *, bool *);
1465
.
1466
.  bool (*_bfd_coff_link_add_one_symbol)
1467
.    (struct bfd_link_info *, bfd *, const char *, flagword,
1468
.     asection *, bfd_vma, const char *, bool, bool,
1469
.     struct bfd_link_hash_entry **);
1470
.
1471
.  bool (*_bfd_coff_link_output_has_begun)
1472
.    (bfd *, struct coff_final_link_info *);
1473
.
1474
.  bool (*_bfd_coff_final_link_postscript)
1475
.    (bfd *, struct coff_final_link_info *);
1476
.
1477
.  bool (*_bfd_coff_print_pdata)
1478
.    (bfd *, void *);
1479
.
1480
.} bfd_coff_backend_data;
1481
.
1482
1483
INTERNAL
1484
.#define coff_backend_info(abfd) \
1485
.  ((const bfd_coff_backend_data *) (abfd)->xvec->backend_data)
1486
.
1487
.#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
1488
.  ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
1489
.
1490
.#define bfd_coff_swap_sym_in(a,e,i) \
1491
.  ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
1492
.
1493
.#define bfd_coff_swap_lineno_in(a,e,i) \
1494
.  ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
1495
.
1496
.#define bfd_coff_swap_reloc_out(abfd, i, o) \
1497
.  ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
1498
.
1499
.#define bfd_coff_swap_lineno_out(abfd, i, o) \
1500
.  ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
1501
.
1502
.#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
1503
.  ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
1504
.
1505
.#define bfd_coff_swap_sym_out(abfd, i,o) \
1506
.  ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
1507
.
1508
.#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
1509
.  ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
1510
.
1511
.#define bfd_coff_swap_filehdr_out(abfd, i,o) \
1512
.  ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
1513
.
1514
.#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
1515
.  ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
1516
.
1517
.#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
1518
.#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
1519
.#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
1520
.#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
1521
.#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
1522
.#define bfd_coff_relsz(abfd)  (coff_backend_info (abfd)->_bfd_relsz)
1523
.#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
1524
.#define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
1525
.#define bfd_coff_long_filenames(abfd) \
1526
.  (coff_backend_info (abfd)->_bfd_coff_long_filenames)
1527
.#define bfd_coff_long_section_names(abfd) \
1528
.  (coff_data (abfd)->long_section_names)
1529
.#define bfd_coff_set_long_section_names(abfd, enable) \
1530
.  ((coff_backend_info (abfd)->_bfd_coff_set_long_section_names) (abfd, enable))
1531
.#define bfd_coff_default_section_alignment_power(abfd) \
1532
.  (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
1533
.#define bfd_coff_max_nscns(abfd) \
1534
.  (coff_backend_info (abfd)->_bfd_coff_max_nscns)
1535
.
1536
.#define bfd_coff_swap_filehdr_in(abfd, i,o) \
1537
.  ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
1538
.
1539
.#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
1540
.  ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
1541
.
1542
.#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
1543
.  ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
1544
.
1545
.#define bfd_coff_swap_reloc_in(abfd, i, o) \
1546
.  ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
1547
.
1548
.#define bfd_coff_bad_format_hook(abfd, filehdr) \
1549
.  ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
1550
.
1551
.#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
1552
.  ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
1553
.#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
1554
.  ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook)\
1555
.   (abfd, filehdr, aouthdr))
1556
.
1557
.#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section, flags_ptr)\
1558
.  ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
1559
.   (abfd, scnhdr, name, section, flags_ptr))
1560
.
1561
.#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
1562
.  ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
1563
.
1564
.#define bfd_coff_slurp_symbol_table(abfd)\
1565
.  ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
1566
.
1567
.#define bfd_coff_symname_in_debug(abfd, sym)\
1568
.  ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
1569
.
1570
.#define bfd_coff_force_symnames_in_strings(abfd)\
1571
.  (coff_backend_info (abfd)->_bfd_coff_force_symnames_in_strings)
1572
.
1573
.#define bfd_coff_debug_string_prefix_length(abfd)\
1574
.  (coff_backend_info (abfd)->_bfd_coff_debug_string_prefix_length)
1575
.
1576
.#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
1577
.  ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
1578
.   (abfd, file, base, symbol, aux, indaux))
1579
.
1580
.#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order,\
1581
.             reloc, data, src_ptr, dst_ptr)\
1582
.  ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
1583
.   (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
1584
.
1585
.#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
1586
.  ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
1587
.   (abfd, section, reloc, shrink, link_info))
1588
.
1589
.#define bfd_coff_classify_symbol(abfd, sym)\
1590
.  ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
1591
.   (abfd, sym))
1592
.
1593
.#define bfd_coff_compute_section_file_positions(abfd)\
1594
.  ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
1595
.   (abfd))
1596
.
1597
.#define bfd_coff_start_final_link(obfd, info)\
1598
.  ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
1599
.   (obfd, info))
1600
.#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
1601
.  ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
1602
.   (obfd, info, ibfd, o, con, rel, isyms, secs))
1603
.#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
1604
.  ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
1605
.   (abfd, sec, rel, h, sym, addendp))
1606
.#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
1607
.  ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
1608
.   (obfd, info, ibfd, sec, rel, adjustedp))
1609
.#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
1610
.             value, string, cp, coll, hashp)\
1611
.  ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
1612
.   (info, abfd, name, flags, section, value, string, cp, coll, hashp))
1613
.
1614
.#define bfd_coff_link_output_has_begun(a,p) \
1615
.  ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a, p))
1616
.#define bfd_coff_final_link_postscript(a,p) \
1617
.  ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a, p))
1618
.
1619
.#define bfd_coff_have_print_pdata(a) \
1620
.  (coff_backend_info (a)->_bfd_coff_print_pdata)
1621
.#define bfd_coff_print_pdata(a,p) \
1622
.  ((coff_backend_info (a)->_bfd_coff_print_pdata) (a, p))
1623
.
1624
.{* Macro: Returns true if the bfd is a PE executable as opposed to a
1625
.   PE object file.  *}
1626
.#define bfd_pei_p(abfd) \
1627
.  (startswith ((abfd)->xvec->name, "pei-"))
1628
*/
1629
1630
/* See whether the magic number matches.  */
1631
1632
static bool
1633
coff_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED, void * filehdr)
1634
14.9M
{
1635
14.9M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
14.9M
  if (BADMAG (*internal_f))
1638
14.5M
    return false;
1639
1640
439k
  return true;
1641
14.9M
}
pei-i386.c:coff_bad_format_hook
Line
Count
Source
1634
183k
{
1635
183k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
183k
  if (BADMAG (*internal_f))
1638
163k
    return false;
1639
1640
20.2k
  return true;
1641
183k
}
pe-x86_64.c:coff_bad_format_hook
Line
Count
Source
1634
1.00M
{
1635
1.00M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
1.00M
  if (BADMAG (*internal_f))
1638
962k
    return false;
1639
1640
38.3k
  return true;
1641
1.00M
}
pei-x86_64.c:coff_bad_format_hook
Line
Count
Source
1634
186k
{
1635
186k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
186k
  if (BADMAG (*internal_f))
1638
158k
    return false;
1639
1640
27.6k
  return true;
1641
186k
}
coff-x86_64.c:coff_bad_format_hook
Line
Count
Source
1634
515k
{
1635
515k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
515k
  if (BADMAG (*internal_f))
1638
485k
    return false;
1639
1640
29.3k
  return true;
1641
515k
}
Unexecuted instantiation: coff64-rs6000.c:coff_bad_format_hook
pei-aarch64.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
156k
    return false;
1639
1640
23.4k
  return true;
1641
179k
}
pe-aarch64.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
507k
    return false;
1639
1640
7.22k
  return true;
1641
514k
}
pei-ia64.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
156k
    return false;
1639
1640
23.5k
  return true;
1641
179k
}
pei-loongarch64.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
160k
    return false;
1639
1640
18.8k
  return true;
1641
179k
}
cf-i386lynx.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
501k
    return false;
1639
1640
13.6k
  return true;
1641
514k
}
coff-go32.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
501k
    return false;
1639
1640
13.6k
  return true;
1641
514k
}
coff-i386.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
501k
    return false;
1639
1640
13.6k
  return true;
1641
514k
}
coff-rs6000.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
496k
    return false;
1639
1640
18.6k
  return true;
1641
514k
}
coff-sh.c:coff_bad_format_hook
Line
Count
Source
1634
2.05M
{
1635
2.05M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
2.05M
  if (BADMAG (*internal_f))
1638
2.04M
    return false;
1639
1640
18.1k
  return true;
1641
2.05M
}
Unexecuted instantiation: coff-stgo32.c:coff_bad_format_hook
coff-tic30.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
505k
    return false;
1639
1640
9.65k
  return true;
1641
514k
}
Unexecuted instantiation: coff-tic4x.c:coff_bad_format_hook
coff-tic54x.c:coff_bad_format_hook
Line
Count
Source
1634
1.02M
{
1635
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
1.02M
  if (BADMAG (*internal_f))
1638
1.02M
    return false;
1639
1640
0
  return true;
1641
1.02M
}
coff-z80.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
508k
    return false;
1639
1640
6.52k
  return true;
1641
514k
}
coff-z8k.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
508k
    return false;
1639
1640
6.26k
  return true;
1641
514k
}
pe-arm-wince.c:coff_bad_format_hook
Line
Count
Source
1634
1.02M
{
1635
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
1.02M
  if (BADMAG (*internal_f))
1638
1.02M
    return false;
1639
1640
3.79k
  return true;
1641
1.02M
}
pe-arm.c:coff_bad_format_hook
Line
Count
Source
1634
1.02M
{
1635
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
1.02M
  if (BADMAG (*internal_f))
1638
1.02M
    return false;
1639
1640
3.79k
  return true;
1641
1.02M
}
pe-i386.c:coff_bad_format_hook
Line
Count
Source
1634
992k
{
1635
992k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
992k
  if (BADMAG (*internal_f))
1638
976k
    return false;
1639
1640
16.0k
  return true;
1641
992k
}
pe-mcore.c:coff_bad_format_hook
Line
Count
Source
1634
1.02M
{
1635
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
1.02M
  if (BADMAG (*internal_f))
1638
1.02M
    return false;
1639
1640
9.08k
  return true;
1641
1.02M
}
pe-sh.c:coff_bad_format_hook
Line
Count
Source
1634
514k
{
1635
514k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
514k
  if (BADMAG (*internal_f))
1638
505k
    return false;
1639
1640
8.98k
  return true;
1641
514k
}
pei-arm-wince.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
147k
    return false;
1639
1640
32.7k
  return true;
1641
179k
}
pei-arm.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
147k
    return false;
1639
1640
32.7k
  return true;
1641
179k
}
pei-mcore.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
152k
    return false;
1639
1640
26.8k
  return true;
1641
179k
}
pei-sh.c:coff_bad_format_hook
Line
Count
Source
1634
179k
{
1635
179k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1636
1637
179k
  if (BADMAG (*internal_f))
1638
163k
    return false;
1639
1640
16.1k
  return true;
1641
179k
}
1642
1643
#ifdef TICOFF
1644
static bool
1645
ticoff0_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
1646
1.02M
{
1647
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1648
1649
1.02M
  if (COFF0_BADMAG (*internal_f))
1650
1.02M
    return false;
1651
1652
5.01k
  return true;
1653
1.02M
}
Unexecuted instantiation: coff-tic4x.c:ticoff0_bad_format_hook
coff-tic54x.c:ticoff0_bad_format_hook
Line
Count
Source
1646
1.02M
{
1647
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1648
1649
1.02M
  if (COFF0_BADMAG (*internal_f))
1650
1.02M
    return false;
1651
1652
5.01k
  return true;
1653
1.02M
}
1654
#endif
1655
1656
#ifdef TICOFF
1657
static bool
1658
ticoff1_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
1659
1.02M
{
1660
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1661
1662
1.02M
  if (COFF1_BADMAG (*internal_f))
1663
1.02M
    return false;
1664
1665
2.11k
  return true;
1666
1.02M
}
Unexecuted instantiation: coff-tic4x.c:ticoff1_bad_format_hook
coff-tic54x.c:ticoff1_bad_format_hook
Line
Count
Source
1659
1.02M
{
1660
1.02M
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
1661
1662
1.02M
  if (COFF1_BADMAG (*internal_f))
1663
1.02M
    return false;
1664
1665
2.11k
  return true;
1666
1.02M
}
1667
#endif
1668
1669
/* Check whether this section uses an alignment other than the
1670
   default.  */
1671
1672
static void
1673
coff_set_custom_section_alignment (bfd *abfd ATTRIBUTE_UNUSED,
1674
           asection *section,
1675
           const struct coff_section_alignment_entry *alignment_table,
1676
           const unsigned int table_size)
1677
26.7M
{
1678
26.7M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
26.7M
  unsigned int i;
1680
1681
142M
  for (i = 0; i < table_size; ++i)
1682
116M
    {
1683
116M
      const char *secname = bfd_section_name (section);
1684
1685
116M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
116M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
116M
    : strncmp (alignment_table[i].name, secname,
1688
61.4M
         alignment_table[i].comparison_length) == 0)
1689
142k
  break;
1690
116M
    }
1691
26.7M
  if (i >= table_size)
1692
26.5M
    return;
1693
1694
142k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
142k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
56.8k
    return;
1697
1698
85.5k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
0
      && default_alignment > alignment_table[i].default_alignment_max
1701
#endif
1702
85.5k
      )
1703
0
    return;
1704
1705
85.5k
  section->alignment_power = alignment_table[i].alignment_power;
1706
85.5k
}
pei-i386.c:coff_set_custom_section_alignment
Line
Count
Source
1677
54.2k
{
1678
54.2k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
54.2k
  unsigned int i;
1680
1681
438k
  for (i = 0; i < table_size; ++i)
1682
391k
    {
1683
391k
      const char *secname = bfd_section_name (section);
1684
1685
391k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
391k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
391k
    : strncmp (alignment_table[i].name, secname,
1688
246k
         alignment_table[i].comparison_length) == 0)
1689
7.16k
  break;
1690
391k
    }
1691
54.2k
  if (i >= table_size)
1692
47.0k
    return;
1693
1694
7.16k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
7.16k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
600
    return;
1697
1698
6.56k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
6.56k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
6.56k
      && default_alignment > alignment_table[i].default_alignment_max
1701
6.56k
#endif
1702
6.56k
      )
1703
0
    return;
1704
1705
6.56k
  section->alignment_power = alignment_table[i].alignment_power;
1706
6.56k
}
pe-x86_64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
92.9k
{
1678
92.9k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
92.9k
  unsigned int i;
1680
1681
1.22M
  for (i = 0; i < table_size; ++i)
1682
1.15M
    {
1683
1.15M
      const char *secname = bfd_section_name (section);
1684
1685
1.15M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
1.15M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
1.15M
    : strncmp (alignment_table[i].name, secname,
1688
809k
         alignment_table[i].comparison_length) == 0)
1689
15.1k
  break;
1690
1.15M
    }
1691
92.9k
  if (i >= table_size)
1692
77.8k
    return;
1693
1694
15.1k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
15.1k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
6.76k
    return;
1697
1698
8.39k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
8.39k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
8.39k
      && default_alignment > alignment_table[i].default_alignment_max
1701
8.39k
#endif
1702
8.39k
      )
1703
0
    return;
1704
1705
8.39k
  section->alignment_power = alignment_table[i].alignment_power;
1706
8.39k
}
pei-x86_64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
78.3k
{
1678
78.3k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
78.3k
  unsigned int i;
1680
1681
969k
  for (i = 0; i < table_size; ++i)
1682
898k
    {
1683
898k
      const char *secname = bfd_section_name (section);
1684
1685
898k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
898k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
898k
    : strncmp (alignment_table[i].name, secname,
1688
603k
         alignment_table[i].comparison_length) == 0)
1689
7.16k
  break;
1690
898k
    }
1691
78.3k
  if (i >= table_size)
1692
71.1k
    return;
1693
1694
7.16k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
7.16k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
679
    return;
1697
1698
6.48k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
6.48k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
6.48k
      && default_alignment > alignment_table[i].default_alignment_max
1701
6.48k
#endif
1702
6.48k
      )
1703
0
    return;
1704
1705
6.48k
  section->alignment_power = alignment_table[i].alignment_power;
1706
6.48k
}
coff-x86_64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
4.82M
{
1678
4.82M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
4.82M
  unsigned int i;
1680
1681
24.0M
  for (i = 0; i < table_size; ++i)
1682
19.2M
    {
1683
19.2M
      const char *secname = bfd_section_name (section);
1684
1685
19.2M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
19.2M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
19.2M
    : strncmp (alignment_table[i].name, secname,
1688
9.64M
         alignment_table[i].comparison_length) == 0)
1689
22.7k
  break;
1690
19.2M
    }
1691
4.82M
  if (i >= table_size)
1692
4.80M
    return;
1693
1694
22.7k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
22.7k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
16.2k
    return;
1697
1698
6.57k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
6.57k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
6.57k
      && default_alignment > alignment_table[i].default_alignment_max
1701
6.57k
#endif
1702
6.57k
      )
1703
0
    return;
1704
1705
6.57k
  section->alignment_power = alignment_table[i].alignment_power;
1706
6.57k
}
coff64-rs6000.c:coff_set_custom_section_alignment
Line
Count
Source
1677
496k
{
1678
496k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
496k
  unsigned int i;
1680
1681
2.47M
  for (i = 0; i < table_size; ++i)
1682
1.98M
    {
1683
1.98M
      const char *secname = bfd_section_name (section);
1684
1685
1.98M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
1.98M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
1.98M
    : strncmp (alignment_table[i].name, secname,
1688
992k
         alignment_table[i].comparison_length) == 0)
1689
3.60k
  break;
1690
1.98M
    }
1691
496k
  if (i >= table_size)
1692
493k
    return;
1693
1694
3.60k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
3.60k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
0
    return;
1697
1698
3.60k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
3.60k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
3.60k
      && default_alignment > alignment_table[i].default_alignment_max
1701
3.60k
#endif
1702
3.60k
      )
1703
0
    return;
1704
1705
3.60k
  section->alignment_power = alignment_table[i].alignment_power;
1706
3.60k
}
pei-aarch64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
55.8k
{
1678
55.8k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
55.8k
  unsigned int i;
1680
1681
697k
  for (i = 0; i < table_size; ++i)
1682
645k
    {
1683
645k
      const char *secname = bfd_section_name (section);
1684
1685
645k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
645k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
645k
    : strncmp (alignment_table[i].name, secname,
1688
265k
         alignment_table[i].comparison_length) == 0)
1689
3.92k
  break;
1690
645k
    }
1691
55.8k
  if (i >= table_size)
1692
51.8k
    return;
1693
1694
3.92k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
3.92k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
476
    return;
1697
1698
3.45k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
3.45k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
3.45k
      && default_alignment > alignment_table[i].default_alignment_max
1701
3.45k
#endif
1702
3.45k
      )
1703
0
    return;
1704
1705
3.45k
  section->alignment_power = alignment_table[i].alignment_power;
1706
3.45k
}
pe-aarch64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
37.2k
{
1678
37.2k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
37.2k
  unsigned int i;
1680
1681
479k
  for (i = 0; i < table_size; ++i)
1682
443k
    {
1683
443k
      const char *secname = bfd_section_name (section);
1684
1685
443k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
443k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
443k
    : strncmp (alignment_table[i].name, secname,
1688
184k
         alignment_table[i].comparison_length) == 0)
1689
1.17k
  break;
1690
443k
    }
1691
37.2k
  if (i >= table_size)
1692
36.0k
    return;
1693
1694
1.17k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
1.17k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
629
    return;
1697
1698
548
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
548
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
548
      && default_alignment > alignment_table[i].default_alignment_max
1701
548
#endif
1702
548
      )
1703
0
    return;
1704
1705
548
  section->alignment_power = alignment_table[i].alignment_power;
1706
548
}
pei-ia64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
41.9k
{
1678
41.9k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
41.9k
  unsigned int i;
1680
1681
208k
  for (i = 0; i < table_size; ++i)
1682
166k
    {
1683
166k
      const char *secname = bfd_section_name (section);
1684
1685
166k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
166k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
166k
    : strncmp (alignment_table[i].name, secname,
1688
83.6k
         alignment_table[i].comparison_length) == 0)
1689
577
  break;
1690
166k
    }
1691
41.9k
  if (i >= table_size)
1692
41.3k
    return;
1693
1694
577
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
577
      && default_alignment < alignment_table[i].default_alignment_min)
1696
239
    return;
1697
1698
338
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
338
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
338
      && default_alignment > alignment_table[i].default_alignment_max
1701
338
#endif
1702
338
      )
1703
0
    return;
1704
1705
338
  section->alignment_power = alignment_table[i].alignment_power;
1706
338
}
pei-loongarch64.c:coff_set_custom_section_alignment
Line
Count
Source
1677
38.1k
{
1678
38.1k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
38.1k
  unsigned int i;
1680
1681
453k
  for (i = 0; i < table_size; ++i)
1682
421k
    {
1683
421k
      const char *secname = bfd_section_name (section);
1684
1685
421k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
421k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
421k
    : strncmp (alignment_table[i].name, secname,
1688
170k
         alignment_table[i].comparison_length) == 0)
1689
5.77k
  break;
1690
421k
    }
1691
38.1k
  if (i >= table_size)
1692
32.3k
    return;
1693
1694
5.77k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
5.77k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
445
    return;
1697
1698
5.33k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
5.33k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
5.33k
      && default_alignment > alignment_table[i].default_alignment_max
1701
5.33k
#endif
1702
5.33k
      )
1703
0
    return;
1704
1705
5.33k
  section->alignment_power = alignment_table[i].alignment_power;
1706
5.33k
}
cf-i386lynx.c:coff_set_custom_section_alignment
Line
Count
Source
1677
631k
{
1678
631k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
631k
  unsigned int i;
1680
1681
3.15M
  for (i = 0; i < table_size; ++i)
1682
2.52M
    {
1683
2.52M
      const char *secname = bfd_section_name (section);
1684
1685
2.52M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
2.52M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
2.52M
    : strncmp (alignment_table[i].name, secname,
1688
1.26M
         alignment_table[i].comparison_length) == 0)
1689
2.36k
  break;
1690
2.52M
    }
1691
631k
  if (i >= table_size)
1692
628k
    return;
1693
1694
2.36k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
2.36k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.90k
    return;
1697
1698
463
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
463
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
463
      && default_alignment > alignment_table[i].default_alignment_max
1701
463
#endif
1702
463
      )
1703
0
    return;
1704
1705
463
  section->alignment_power = alignment_table[i].alignment_power;
1706
463
}
coff-go32.c:coff_set_custom_section_alignment
Line
Count
Source
1677
553k
{
1678
553k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
553k
  unsigned int i;
1680
1681
8.79M
  for (i = 0; i < table_size; ++i)
1682
8.24M
    {
1683
8.24M
      const char *secname = bfd_section_name (section);
1684
1685
8.24M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
8.24M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
8.24M
    : strncmp (alignment_table[i].name, secname,
1688
7.15M
         alignment_table[i].comparison_length) == 0)
1689
7.14k
  break;
1690
8.24M
    }
1691
553k
  if (i >= table_size)
1692
546k
    return;
1693
1694
7.14k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
7.14k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.86k
    return;
1697
1698
5.27k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
5.27k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
5.27k
      && default_alignment > alignment_table[i].default_alignment_max
1701
5.27k
#endif
1702
5.27k
      )
1703
0
    return;
1704
1705
5.27k
  section->alignment_power = alignment_table[i].alignment_power;
1706
5.27k
}
coff-i386.c:coff_set_custom_section_alignment
Line
Count
Source
1677
631k
{
1678
631k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
631k
  unsigned int i;
1680
1681
3.15M
  for (i = 0; i < table_size; ++i)
1682
2.52M
    {
1683
2.52M
      const char *secname = bfd_section_name (section);
1684
1685
2.52M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
2.52M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
2.52M
    : strncmp (alignment_table[i].name, secname,
1688
1.26M
         alignment_table[i].comparison_length) == 0)
1689
2.36k
  break;
1690
2.52M
    }
1691
631k
  if (i >= table_size)
1692
628k
    return;
1693
1694
2.36k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
2.36k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.90k
    return;
1697
1698
463
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
463
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
463
      && default_alignment > alignment_table[i].default_alignment_max
1701
463
#endif
1702
463
      )
1703
0
    return;
1704
1705
463
  section->alignment_power = alignment_table[i].alignment_power;
1706
463
}
coff-rs6000.c:coff_set_custom_section_alignment
Line
Count
Source
1677
7.85M
{
1678
7.85M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
7.85M
  unsigned int i;
1680
1681
39.2M
  for (i = 0; i < table_size; ++i)
1682
31.4M
    {
1683
31.4M
      const char *secname = bfd_section_name (section);
1684
1685
31.4M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
31.4M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
31.4M
    : strncmp (alignment_table[i].name, secname,
1688
15.7M
         alignment_table[i].comparison_length) == 0)
1689
12.7k
  break;
1690
31.4M
    }
1691
7.85M
  if (i >= table_size)
1692
7.84M
    return;
1693
1694
12.7k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
12.7k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
0
    return;
1697
1698
12.7k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
12.7k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
12.7k
      && default_alignment > alignment_table[i].default_alignment_max
1701
12.7k
#endif
1702
12.7k
      )
1703
0
    return;
1704
1705
12.7k
  section->alignment_power = alignment_table[i].alignment_power;
1706
12.7k
}
coff-sh.c:coff_set_custom_section_alignment
Line
Count
Source
1677
4.19M
{
1678
4.19M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
4.19M
  unsigned int i;
1680
1681
20.9M
  for (i = 0; i < table_size; ++i)
1682
16.7M
    {
1683
16.7M
      const char *secname = bfd_section_name (section);
1684
1685
16.7M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
16.7M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
16.7M
    : strncmp (alignment_table[i].name, secname,
1688
8.39M
         alignment_table[i].comparison_length) == 0)
1689
11.5k
  break;
1690
16.7M
    }
1691
4.19M
  if (i >= table_size)
1692
4.18M
    return;
1693
1694
11.5k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
11.5k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
0
    return;
1697
1698
11.5k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
11.5k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
11.5k
      && default_alignment > alignment_table[i].default_alignment_max
1701
11.5k
#endif
1702
11.5k
      )
1703
0
    return;
1704
1705
11.5k
  section->alignment_power = alignment_table[i].alignment_power;
1706
11.5k
}
Unexecuted instantiation: coff-stgo32.c:coff_set_custom_section_alignment
coff-tic30.c:coff_set_custom_section_alignment
Line
Count
Source
1677
2.27M
{
1678
2.27M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
2.27M
  unsigned int i;
1680
1681
11.3M
  for (i = 0; i < table_size; ++i)
1682
9.08M
    {
1683
9.08M
      const char *secname = bfd_section_name (section);
1684
1685
9.08M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
9.08M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
9.08M
    : strncmp (alignment_table[i].name, secname,
1688
4.54M
         alignment_table[i].comparison_length) == 0)
1689
10.6k
  break;
1690
9.08M
    }
1691
2.27M
  if (i >= table_size)
1692
2.26M
    return;
1693
1694
10.6k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
10.6k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
8.27k
    return;
1697
1698
2.37k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
2.37k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
2.37k
      && default_alignment > alignment_table[i].default_alignment_max
1701
2.37k
#endif
1702
2.37k
      )
1703
0
    return;
1704
1705
2.37k
  section->alignment_power = alignment_table[i].alignment_power;
1706
2.37k
}
Unexecuted instantiation: coff-tic4x.c:coff_set_custom_section_alignment
coff-tic54x.c:coff_set_custom_section_alignment
Line
Count
Source
1677
3.92M
{
1678
3.92M
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
3.92M
  unsigned int i;
1680
1681
19.6M
  for (i = 0; i < table_size; ++i)
1682
15.6M
    {
1683
15.6M
      const char *secname = bfd_section_name (section);
1684
1685
15.6M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
15.6M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
15.6M
    : strncmp (alignment_table[i].name, secname,
1688
7.85M
         alignment_table[i].comparison_length) == 0)
1689
7.27k
  break;
1690
15.6M
    }
1691
3.92M
  if (i >= table_size)
1692
3.91M
    return;
1693
1694
7.27k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
7.27k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
7.27k
    return;
1697
1698
0
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
      && default_alignment > alignment_table[i].default_alignment_max
1701
#endif
1702
0
      )
1703
0
    return;
1704
1705
0
  section->alignment_power = alignment_table[i].alignment_power;
1706
0
}
coff-z80.c:coff_set_custom_section_alignment
Line
Count
Source
1677
427k
{
1678
427k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
427k
  unsigned int i;
1680
1681
2.12M
  for (i = 0; i < table_size; ++i)
1682
1.70M
    {
1683
1.70M
      const char *secname = bfd_section_name (section);
1684
1685
1.70M
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
1.70M
    ? strcmp (alignment_table[i].name, secname) == 0
1687
1.70M
    : strncmp (alignment_table[i].name, secname,
1688
854k
         alignment_table[i].comparison_length) == 0)
1689
2.49k
  break;
1690
1.70M
    }
1691
427k
  if (i >= table_size)
1692
424k
    return;
1693
1694
2.49k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
2.49k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
2.49k
    return;
1697
1698
0
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
      && default_alignment > alignment_table[i].default_alignment_max
1701
#endif
1702
0
      )
1703
0
    return;
1704
1705
0
  section->alignment_power = alignment_table[i].alignment_power;
1706
0
}
coff-z8k.c:coff_set_custom_section_alignment
Line
Count
Source
1677
193k
{
1678
193k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
193k
  unsigned int i;
1680
1681
961k
  for (i = 0; i < table_size; ++i)
1682
770k
    {
1683
770k
      const char *secname = bfd_section_name (section);
1684
1685
770k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
770k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
770k
    : strncmp (alignment_table[i].name, secname,
1688
386k
         alignment_table[i].comparison_length) == 0)
1689
2.46k
  break;
1690
770k
    }
1691
193k
  if (i >= table_size)
1692
191k
    return;
1693
1694
2.46k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
2.46k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.51k
    return;
1697
1698
945
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
945
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
945
      && default_alignment > alignment_table[i].default_alignment_max
1701
945
#endif
1702
945
      )
1703
0
    return;
1704
1705
945
  section->alignment_power = alignment_table[i].alignment_power;
1706
945
}
pe-arm-wince.c:coff_set_custom_section_alignment
Line
Count
Source
1677
9.95k
{
1678
9.95k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
9.95k
  unsigned int i;
1680
1681
137k
  for (i = 0; i < table_size; ++i)
1682
128k
    {
1683
128k
      const char *secname = bfd_section_name (section);
1684
1685
128k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
128k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
128k
    : strncmp (alignment_table[i].name, secname,
1688
59.2k
         alignment_table[i].comparison_length) == 0)
1689
448
  break;
1690
128k
    }
1691
9.95k
  if (i >= table_size)
1692
9.51k
    return;
1693
1694
448
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
448
      && default_alignment < alignment_table[i].default_alignment_min)
1696
309
    return;
1697
1698
139
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
139
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
139
      && default_alignment > alignment_table[i].default_alignment_max
1701
139
#endif
1702
139
      )
1703
0
    return;
1704
1705
139
  section->alignment_power = alignment_table[i].alignment_power;
1706
139
}
pe-arm.c:coff_set_custom_section_alignment
Line
Count
Source
1677
9.95k
{
1678
9.95k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
9.95k
  unsigned int i;
1680
1681
137k
  for (i = 0; i < table_size; ++i)
1682
128k
    {
1683
128k
      const char *secname = bfd_section_name (section);
1684
1685
128k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
128k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
128k
    : strncmp (alignment_table[i].name, secname,
1688
59.2k
         alignment_table[i].comparison_length) == 0)
1689
448
  break;
1690
128k
    }
1691
9.95k
  if (i >= table_size)
1692
9.51k
    return;
1693
1694
448
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
448
      && default_alignment < alignment_table[i].default_alignment_min)
1696
309
    return;
1697
1698
139
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
139
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
139
      && default_alignment > alignment_table[i].default_alignment_max
1701
139
#endif
1702
139
      )
1703
0
    return;
1704
1705
139
  section->alignment_power = alignment_table[i].alignment_power;
1706
139
}
pe-i386.c:coff_set_custom_section_alignment
Line
Count
Source
1677
23.8k
{
1678
23.8k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
23.8k
  unsigned int i;
1680
1681
227k
  for (i = 0; i < table_size; ++i)
1682
205k
    {
1683
205k
      const char *secname = bfd_section_name (section);
1684
1685
205k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
205k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
205k
    : strncmp (alignment_table[i].name, secname,
1688
138k
         alignment_table[i].comparison_length) == 0)
1689
1.85k
  break;
1690
205k
    }
1691
23.8k
  if (i >= table_size)
1692
21.9k
    return;
1693
1694
1.85k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
1.85k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
425
    return;
1697
1698
1.43k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
1.43k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
1.43k
      && default_alignment > alignment_table[i].default_alignment_max
1701
1.43k
#endif
1702
1.43k
      )
1703
0
    return;
1704
1705
1.43k
  section->alignment_power = alignment_table[i].alignment_power;
1706
1.43k
}
pe-mcore.c:coff_set_custom_section_alignment
Line
Count
Source
1677
24.6k
{
1678
24.6k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
24.6k
  unsigned int i;
1680
1681
118k
  for (i = 0; i < table_size; ++i)
1682
95.2k
    {
1683
95.2k
      const char *secname = bfd_section_name (section);
1684
1685
95.2k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
95.2k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
95.2k
    : strncmp (alignment_table[i].name, secname,
1688
48.9k
         alignment_table[i].comparison_length) == 0)
1689
1.65k
  break;
1690
95.2k
    }
1691
24.6k
  if (i >= table_size)
1692
23.0k
    return;
1693
1694
1.65k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
1.65k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.31k
    return;
1697
1698
341
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
341
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
341
      && default_alignment > alignment_table[i].default_alignment_max
1701
341
#endif
1702
341
      )
1703
0
    return;
1704
1705
341
  section->alignment_power = alignment_table[i].alignment_power;
1706
341
}
pe-sh.c:coff_set_custom_section_alignment
Line
Count
Source
1677
24.7k
{
1678
24.7k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
24.7k
  unsigned int i;
1680
1681
118k
  for (i = 0; i < table_size; ++i)
1682
95.6k
    {
1683
95.6k
      const char *secname = bfd_section_name (section);
1684
1685
95.6k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
95.6k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
95.6k
    : strncmp (alignment_table[i].name, secname,
1688
49.1k
         alignment_table[i].comparison_length) == 0)
1689
1.84k
  break;
1690
95.6k
    }
1691
24.7k
  if (i >= table_size)
1692
22.8k
    return;
1693
1694
1.84k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
1.84k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
1.54k
    return;
1697
1698
306
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
306
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
306
      && default_alignment > alignment_table[i].default_alignment_max
1701
306
#endif
1702
306
      )
1703
0
    return;
1704
1705
306
  section->alignment_power = alignment_table[i].alignment_power;
1706
306
}
pei-arm-wince.c:coff_set_custom_section_alignment
Line
Count
Source
1677
39.0k
{
1678
39.0k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
39.0k
  unsigned int i;
1680
1681
498k
  for (i = 0; i < table_size; ++i)
1682
460k
    {
1683
460k
      const char *secname = bfd_section_name (section);
1684
1685
460k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
460k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
460k
    : strncmp (alignment_table[i].name, secname,
1688
190k
         alignment_table[i].comparison_length) == 0)
1689
1.61k
  break;
1690
460k
    }
1691
39.0k
  if (i >= table_size)
1692
37.4k
    return;
1693
1694
1.61k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
1.61k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
219
    return;
1697
1698
1.39k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
1.39k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
1.39k
      && default_alignment > alignment_table[i].default_alignment_max
1701
1.39k
#endif
1702
1.39k
      )
1703
0
    return;
1704
1705
1.39k
  section->alignment_power = alignment_table[i].alignment_power;
1706
1.39k
}
pei-arm.c:coff_set_custom_section_alignment
Line
Count
Source
1677
60.2k
{
1678
60.2k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
60.2k
  unsigned int i;
1680
1681
735k
  for (i = 0; i < table_size; ++i)
1682
681k
    {
1683
681k
      const char *secname = bfd_section_name (section);
1684
1685
681k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
681k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
681k
    : strncmp (alignment_table[i].name, secname,
1688
277k
         alignment_table[i].comparison_length) == 0)
1689
6.46k
  break;
1690
681k
    }
1691
60.2k
  if (i >= table_size)
1692
53.8k
    return;
1693
1694
6.46k
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
6.46k
      && default_alignment < alignment_table[i].default_alignment_min)
1696
459
    return;
1697
1698
6.00k
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
6.00k
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
6.00k
      && default_alignment > alignment_table[i].default_alignment_max
1701
6.00k
#endif
1702
6.00k
      )
1703
0
    return;
1704
1705
6.00k
  section->alignment_power = alignment_table[i].alignment_power;
1706
6.00k
}
pei-mcore.c:coff_set_custom_section_alignment
Line
Count
Source
1677
68.8k
{
1678
68.8k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
68.8k
  unsigned int i;
1680
1681
341k
  for (i = 0; i < table_size; ++i)
1682
273k
    {
1683
273k
      const char *secname = bfd_section_name (section);
1684
1685
273k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
273k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
273k
    : strncmp (alignment_table[i].name, secname,
1688
137k
         alignment_table[i].comparison_length) == 0)
1689
883
  break;
1690
273k
    }
1691
68.8k
  if (i >= table_size)
1692
67.9k
    return;
1693
1694
883
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
883
      && default_alignment < alignment_table[i].default_alignment_min)
1696
247
    return;
1697
1698
636
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
636
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
636
      && default_alignment > alignment_table[i].default_alignment_max
1701
636
#endif
1702
636
      )
1703
0
    return;
1704
1705
636
  section->alignment_power = alignment_table[i].alignment_power;
1706
636
}
pei-sh.c:coff_set_custom_section_alignment
Line
Count
Source
1677
43.1k
{
1678
43.1k
  const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1679
43.1k
  unsigned int i;
1680
1681
214k
  for (i = 0; i < table_size; ++i)
1682
172k
    {
1683
172k
      const char *secname = bfd_section_name (section);
1684
1685
172k
      if (alignment_table[i].comparison_length == (unsigned int) -1
1686
172k
    ? strcmp (alignment_table[i].name, secname) == 0
1687
172k
    : strncmp (alignment_table[i].name, secname,
1688
86.2k
         alignment_table[i].comparison_length) == 0)
1689
711
  break;
1690
172k
    }
1691
43.1k
  if (i >= table_size)
1692
42.4k
    return;
1693
1694
711
  if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
1695
711
      && default_alignment < alignment_table[i].default_alignment_min)
1696
709
    return;
1697
1698
2
  if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
1699
2
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
1700
2
      && default_alignment > alignment_table[i].default_alignment_max
1701
2
#endif
1702
2
      )
1703
0
    return;
1704
1705
2
  section->alignment_power = alignment_table[i].alignment_power;
1706
2
}
1707
1708
/* Custom section alignment records.  */
1709
1710
static const struct coff_section_alignment_entry
1711
coff_section_alignment_table[] =
1712
{
1713
#ifdef COFF_SECTION_ALIGNMENT_ENTRIES
1714
  COFF_SECTION_ALIGNMENT_ENTRIES,
1715
#endif
1716
  /* There must not be any gaps between .stabstr sections.  */
1717
  { COFF_SECTION_NAME_PARTIAL_MATCH (".stabstr"),
1718
    1, COFF_ALIGNMENT_FIELD_EMPTY, 0 },
1719
  /* The .stab section must be aligned to 2**2 at most, to avoid gaps.  */
1720
  { COFF_SECTION_NAME_PARTIAL_MATCH (".stab"),
1721
    3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1722
  /* Similarly for the .ctors and .dtors sections.  */
1723
  { COFF_SECTION_NAME_EXACT_MATCH (".ctors"),
1724
    3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
1725
  { COFF_SECTION_NAME_EXACT_MATCH (".dtors"),
1726
    3, COFF_ALIGNMENT_FIELD_EMPTY, 2 }
1727
};
1728
1729
static const unsigned int coff_section_alignment_table_size =
1730
  sizeof coff_section_alignment_table / sizeof coff_section_alignment_table[0];
1731
1732
/* Initialize a section structure with information peculiar to this
1733
   particular implementation of COFF.  */
1734
1735
static bool
1736
coff_new_section_hook (bfd * abfd, asection * section)
1737
26.7M
{
1738
26.7M
  combined_entry_type *native;
1739
26.7M
  size_t amt;
1740
26.7M
  unsigned char sclass = C_STAT;
1741
1742
26.7M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
8.35M
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
8.35M
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
5.40k
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
8.34M
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
8.34M
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
3.25k
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
8.34M
  else
1752
8.34M
    {
1753
8.34M
      int i;
1754
1755
100M
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
91.7M
  if (strcmp (bfd_section_name (section),
1757
91.7M
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
2.80k
    {
1759
2.80k
      section->alignment_power = 0;
1760
2.80k
      sclass = C_DWARF;
1761
2.80k
      break;
1762
2.80k
    }
1763
8.34M
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
26.7M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
26.7M
  amt = sizeof (combined_entry_type) * 10;
1776
26.7M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
26.7M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
26.7M
  native->is_sym = true;
1787
26.7M
  native->u.syment.n_type = T_NULL;
1788
26.7M
  native->u.syment.n_sclass = sclass;
1789
1790
26.7M
  coffsymbol (section->symbol)->native = native;
1791
1792
26.7M
  coff_set_custom_section_alignment (abfd, section,
1793
26.7M
             coff_section_alignment_table,
1794
26.7M
             coff_section_alignment_table_size);
1795
1796
26.7M
  return true;
1797
26.7M
}
pei-i386.c:coff_new_section_hook
Line
Count
Source
1737
54.2k
{
1738
54.2k
  combined_entry_type *native;
1739
54.2k
  size_t amt;
1740
54.2k
  unsigned char sclass = C_STAT;
1741
1742
54.2k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
54.2k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
54.2k
  amt = sizeof (combined_entry_type) * 10;
1776
54.2k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
54.2k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
54.2k
  native->is_sym = true;
1787
54.2k
  native->u.syment.n_type = T_NULL;
1788
54.2k
  native->u.syment.n_sclass = sclass;
1789
1790
54.2k
  coffsymbol (section->symbol)->native = native;
1791
1792
54.2k
  coff_set_custom_section_alignment (abfd, section,
1793
54.2k
             coff_section_alignment_table,
1794
54.2k
             coff_section_alignment_table_size);
1795
1796
54.2k
  return true;
1797
54.2k
}
pe-x86_64.c:coff_new_section_hook
Line
Count
Source
1737
92.9k
{
1738
92.9k
  combined_entry_type *native;
1739
92.9k
  size_t amt;
1740
92.9k
  unsigned char sclass = C_STAT;
1741
1742
92.9k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
92.9k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
92.9k
  amt = sizeof (combined_entry_type) * 10;
1776
92.9k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
92.9k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
92.9k
  native->is_sym = true;
1787
92.9k
  native->u.syment.n_type = T_NULL;
1788
92.9k
  native->u.syment.n_sclass = sclass;
1789
1790
92.9k
  coffsymbol (section->symbol)->native = native;
1791
1792
92.9k
  coff_set_custom_section_alignment (abfd, section,
1793
92.9k
             coff_section_alignment_table,
1794
92.9k
             coff_section_alignment_table_size);
1795
1796
92.9k
  return true;
1797
92.9k
}
pei-x86_64.c:coff_new_section_hook
Line
Count
Source
1737
78.3k
{
1738
78.3k
  combined_entry_type *native;
1739
78.3k
  size_t amt;
1740
78.3k
  unsigned char sclass = C_STAT;
1741
1742
78.3k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
78.3k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
78.3k
  amt = sizeof (combined_entry_type) * 10;
1776
78.3k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
78.3k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
78.3k
  native->is_sym = true;
1787
78.3k
  native->u.syment.n_type = T_NULL;
1788
78.3k
  native->u.syment.n_sclass = sclass;
1789
1790
78.3k
  coffsymbol (section->symbol)->native = native;
1791
1792
78.3k
  coff_set_custom_section_alignment (abfd, section,
1793
78.3k
             coff_section_alignment_table,
1794
78.3k
             coff_section_alignment_table_size);
1795
1796
78.3k
  return true;
1797
78.3k
}
coff-x86_64.c:coff_new_section_hook
Line
Count
Source
1737
4.82M
{
1738
4.82M
  combined_entry_type *native;
1739
4.82M
  size_t amt;
1740
4.82M
  unsigned char sclass = C_STAT;
1741
1742
4.82M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
4.82M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
4.82M
  amt = sizeof (combined_entry_type) * 10;
1776
4.82M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
4.82M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
4.82M
  native->is_sym = true;
1787
4.82M
  native->u.syment.n_type = T_NULL;
1788
4.82M
  native->u.syment.n_sclass = sclass;
1789
1790
4.82M
  coffsymbol (section->symbol)->native = native;
1791
1792
4.82M
  coff_set_custom_section_alignment (abfd, section,
1793
4.82M
             coff_section_alignment_table,
1794
4.82M
             coff_section_alignment_table_size);
1795
1796
4.82M
  return true;
1797
4.82M
}
coff64-rs6000.c:coff_new_section_hook
Line
Count
Source
1737
496k
{
1738
496k
  combined_entry_type *native;
1739
496k
  size_t amt;
1740
496k
  unsigned char sclass = C_STAT;
1741
1742
496k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
496k
#ifdef RS6000COFF_C
1745
496k
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
496k
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
683
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
495k
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
495k
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
923
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
495k
  else
1752
495k
    {
1753
495k
      int i;
1754
1755
5.93M
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
5.44M
  if (strcmp (bfd_section_name (section),
1757
5.44M
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
874
    {
1759
874
      section->alignment_power = 0;
1760
874
      sclass = C_DWARF;
1761
874
      break;
1762
874
    }
1763
495k
    }
1764
496k
#endif
1765
1766
  /* Set up the section symbol.  */
1767
496k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
496k
  amt = sizeof (combined_entry_type) * 10;
1776
496k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
496k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
496k
  native->is_sym = true;
1787
496k
  native->u.syment.n_type = T_NULL;
1788
496k
  native->u.syment.n_sclass = sclass;
1789
1790
496k
  coffsymbol (section->symbol)->native = native;
1791
1792
496k
  coff_set_custom_section_alignment (abfd, section,
1793
496k
             coff_section_alignment_table,
1794
496k
             coff_section_alignment_table_size);
1795
1796
496k
  return true;
1797
496k
}
pei-aarch64.c:coff_new_section_hook
Line
Count
Source
1737
55.8k
{
1738
55.8k
  combined_entry_type *native;
1739
55.8k
  size_t amt;
1740
55.8k
  unsigned char sclass = C_STAT;
1741
1742
55.8k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
55.8k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
55.8k
  amt = sizeof (combined_entry_type) * 10;
1776
55.8k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
55.8k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
55.8k
  native->is_sym = true;
1787
55.8k
  native->u.syment.n_type = T_NULL;
1788
55.8k
  native->u.syment.n_sclass = sclass;
1789
1790
55.8k
  coffsymbol (section->symbol)->native = native;
1791
1792
55.8k
  coff_set_custom_section_alignment (abfd, section,
1793
55.8k
             coff_section_alignment_table,
1794
55.8k
             coff_section_alignment_table_size);
1795
1796
55.8k
  return true;
1797
55.8k
}
pe-aarch64.c:coff_new_section_hook
Line
Count
Source
1737
37.2k
{
1738
37.2k
  combined_entry_type *native;
1739
37.2k
  size_t amt;
1740
37.2k
  unsigned char sclass = C_STAT;
1741
1742
37.2k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
37.2k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
37.2k
  amt = sizeof (combined_entry_type) * 10;
1776
37.2k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
37.2k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
37.2k
  native->is_sym = true;
1787
37.2k
  native->u.syment.n_type = T_NULL;
1788
37.2k
  native->u.syment.n_sclass = sclass;
1789
1790
37.2k
  coffsymbol (section->symbol)->native = native;
1791
1792
37.2k
  coff_set_custom_section_alignment (abfd, section,
1793
37.2k
             coff_section_alignment_table,
1794
37.2k
             coff_section_alignment_table_size);
1795
1796
37.2k
  return true;
1797
37.2k
}
pei-ia64.c:coff_new_section_hook
Line
Count
Source
1737
41.9k
{
1738
41.9k
  combined_entry_type *native;
1739
41.9k
  size_t amt;
1740
41.9k
  unsigned char sclass = C_STAT;
1741
1742
41.9k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
41.9k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
41.9k
  amt = sizeof (combined_entry_type) * 10;
1776
41.9k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
41.9k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
41.9k
  native->is_sym = true;
1787
41.9k
  native->u.syment.n_type = T_NULL;
1788
41.9k
  native->u.syment.n_sclass = sclass;
1789
1790
41.9k
  coffsymbol (section->symbol)->native = native;
1791
1792
41.9k
  coff_set_custom_section_alignment (abfd, section,
1793
41.9k
             coff_section_alignment_table,
1794
41.9k
             coff_section_alignment_table_size);
1795
1796
41.9k
  return true;
1797
41.9k
}
pei-loongarch64.c:coff_new_section_hook
Line
Count
Source
1737
38.1k
{
1738
38.1k
  combined_entry_type *native;
1739
38.1k
  size_t amt;
1740
38.1k
  unsigned char sclass = C_STAT;
1741
1742
38.1k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
38.1k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
38.1k
  amt = sizeof (combined_entry_type) * 10;
1776
38.1k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
38.1k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
38.1k
  native->is_sym = true;
1787
38.1k
  native->u.syment.n_type = T_NULL;
1788
38.1k
  native->u.syment.n_sclass = sclass;
1789
1790
38.1k
  coffsymbol (section->symbol)->native = native;
1791
1792
38.1k
  coff_set_custom_section_alignment (abfd, section,
1793
38.1k
             coff_section_alignment_table,
1794
38.1k
             coff_section_alignment_table_size);
1795
1796
38.1k
  return true;
1797
38.1k
}
cf-i386lynx.c:coff_new_section_hook
Line
Count
Source
1737
631k
{
1738
631k
  combined_entry_type *native;
1739
631k
  size_t amt;
1740
631k
  unsigned char sclass = C_STAT;
1741
1742
631k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
631k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
631k
  amt = sizeof (combined_entry_type) * 10;
1776
631k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
631k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
631k
  native->is_sym = true;
1787
631k
  native->u.syment.n_type = T_NULL;
1788
631k
  native->u.syment.n_sclass = sclass;
1789
1790
631k
  coffsymbol (section->symbol)->native = native;
1791
1792
631k
  coff_set_custom_section_alignment (abfd, section,
1793
631k
             coff_section_alignment_table,
1794
631k
             coff_section_alignment_table_size);
1795
1796
631k
  return true;
1797
631k
}
coff-go32.c:coff_new_section_hook
Line
Count
Source
1737
553k
{
1738
553k
  combined_entry_type *native;
1739
553k
  size_t amt;
1740
553k
  unsigned char sclass = C_STAT;
1741
1742
553k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
553k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
553k
  amt = sizeof (combined_entry_type) * 10;
1776
553k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
553k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
553k
  native->is_sym = true;
1787
553k
  native->u.syment.n_type = T_NULL;
1788
553k
  native->u.syment.n_sclass = sclass;
1789
1790
553k
  coffsymbol (section->symbol)->native = native;
1791
1792
553k
  coff_set_custom_section_alignment (abfd, section,
1793
553k
             coff_section_alignment_table,
1794
553k
             coff_section_alignment_table_size);
1795
1796
553k
  return true;
1797
553k
}
coff-i386.c:coff_new_section_hook
Line
Count
Source
1737
631k
{
1738
631k
  combined_entry_type *native;
1739
631k
  size_t amt;
1740
631k
  unsigned char sclass = C_STAT;
1741
1742
631k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
631k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
631k
  amt = sizeof (combined_entry_type) * 10;
1776
631k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
631k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
631k
  native->is_sym = true;
1787
631k
  native->u.syment.n_type = T_NULL;
1788
631k
  native->u.syment.n_sclass = sclass;
1789
1790
631k
  coffsymbol (section->symbol)->native = native;
1791
1792
631k
  coff_set_custom_section_alignment (abfd, section,
1793
631k
             coff_section_alignment_table,
1794
631k
             coff_section_alignment_table_size);
1795
1796
631k
  return true;
1797
631k
}
coff-rs6000.c:coff_new_section_hook
Line
Count
Source
1737
7.85M
{
1738
7.85M
  combined_entry_type *native;
1739
7.85M
  size_t amt;
1740
7.85M
  unsigned char sclass = C_STAT;
1741
1742
7.85M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
7.85M
#ifdef RS6000COFF_C
1745
7.85M
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
7.85M
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
4.72k
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
7.85M
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
7.85M
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
2.33k
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
7.85M
  else
1752
7.85M
    {
1753
7.85M
      int i;
1754
1755
94.2M
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
86.3M
  if (strcmp (bfd_section_name (section),
1757
86.3M
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
1.93k
    {
1759
1.93k
      section->alignment_power = 0;
1760
1.93k
      sclass = C_DWARF;
1761
1.93k
      break;
1762
1.93k
    }
1763
7.85M
    }
1764
7.85M
#endif
1765
1766
  /* Set up the section symbol.  */
1767
7.85M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
7.85M
  amt = sizeof (combined_entry_type) * 10;
1776
7.85M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
7.85M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
7.85M
  native->is_sym = true;
1787
7.85M
  native->u.syment.n_type = T_NULL;
1788
7.85M
  native->u.syment.n_sclass = sclass;
1789
1790
7.85M
  coffsymbol (section->symbol)->native = native;
1791
1792
7.85M
  coff_set_custom_section_alignment (abfd, section,
1793
7.85M
             coff_section_alignment_table,
1794
7.85M
             coff_section_alignment_table_size);
1795
1796
7.85M
  return true;
1797
7.85M
}
coff-sh.c:coff_new_section_hook
Line
Count
Source
1737
4.19M
{
1738
4.19M
  combined_entry_type *native;
1739
4.19M
  size_t amt;
1740
4.19M
  unsigned char sclass = C_STAT;
1741
1742
4.19M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
4.19M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
4.19M
  amt = sizeof (combined_entry_type) * 10;
1776
4.19M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
4.19M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
4.19M
  native->is_sym = true;
1787
4.19M
  native->u.syment.n_type = T_NULL;
1788
4.19M
  native->u.syment.n_sclass = sclass;
1789
1790
4.19M
  coffsymbol (section->symbol)->native = native;
1791
1792
4.19M
  coff_set_custom_section_alignment (abfd, section,
1793
4.19M
             coff_section_alignment_table,
1794
4.19M
             coff_section_alignment_table_size);
1795
1796
4.19M
  return true;
1797
4.19M
}
Unexecuted instantiation: coff-stgo32.c:coff_new_section_hook
coff-tic30.c:coff_new_section_hook
Line
Count
Source
1737
2.27M
{
1738
2.27M
  combined_entry_type *native;
1739
2.27M
  size_t amt;
1740
2.27M
  unsigned char sclass = C_STAT;
1741
1742
2.27M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
2.27M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
2.27M
  amt = sizeof (combined_entry_type) * 10;
1776
2.27M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
2.27M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
2.27M
  native->is_sym = true;
1787
2.27M
  native->u.syment.n_type = T_NULL;
1788
2.27M
  native->u.syment.n_sclass = sclass;
1789
1790
2.27M
  coffsymbol (section->symbol)->native = native;
1791
1792
2.27M
  coff_set_custom_section_alignment (abfd, section,
1793
2.27M
             coff_section_alignment_table,
1794
2.27M
             coff_section_alignment_table_size);
1795
1796
2.27M
  return true;
1797
2.27M
}
Unexecuted instantiation: coff-tic4x.c:coff_new_section_hook
coff-tic54x.c:coff_new_section_hook
Line
Count
Source
1737
3.92M
{
1738
3.92M
  combined_entry_type *native;
1739
3.92M
  size_t amt;
1740
3.92M
  unsigned char sclass = C_STAT;
1741
1742
3.92M
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
3.92M
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
3.92M
  amt = sizeof (combined_entry_type) * 10;
1776
3.92M
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
3.92M
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
3.92M
  native->is_sym = true;
1787
3.92M
  native->u.syment.n_type = T_NULL;
1788
3.92M
  native->u.syment.n_sclass = sclass;
1789
1790
3.92M
  coffsymbol (section->symbol)->native = native;
1791
1792
3.92M
  coff_set_custom_section_alignment (abfd, section,
1793
3.92M
             coff_section_alignment_table,
1794
3.92M
             coff_section_alignment_table_size);
1795
1796
3.92M
  return true;
1797
3.92M
}
coff-z80.c:coff_new_section_hook
Line
Count
Source
1737
427k
{
1738
427k
  combined_entry_type *native;
1739
427k
  size_t amt;
1740
427k
  unsigned char sclass = C_STAT;
1741
1742
427k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
427k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
427k
  amt = sizeof (combined_entry_type) * 10;
1776
427k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
427k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
427k
  native->is_sym = true;
1787
427k
  native->u.syment.n_type = T_NULL;
1788
427k
  native->u.syment.n_sclass = sclass;
1789
1790
427k
  coffsymbol (section->symbol)->native = native;
1791
1792
427k
  coff_set_custom_section_alignment (abfd, section,
1793
427k
             coff_section_alignment_table,
1794
427k
             coff_section_alignment_table_size);
1795
1796
427k
  return true;
1797
427k
}
coff-z8k.c:coff_new_section_hook
Line
Count
Source
1737
193k
{
1738
193k
  combined_entry_type *native;
1739
193k
  size_t amt;
1740
193k
  unsigned char sclass = C_STAT;
1741
1742
193k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
193k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
193k
  amt = sizeof (combined_entry_type) * 10;
1776
193k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
193k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
193k
  native->is_sym = true;
1787
193k
  native->u.syment.n_type = T_NULL;
1788
193k
  native->u.syment.n_sclass = sclass;
1789
1790
193k
  coffsymbol (section->symbol)->native = native;
1791
1792
193k
  coff_set_custom_section_alignment (abfd, section,
1793
193k
             coff_section_alignment_table,
1794
193k
             coff_section_alignment_table_size);
1795
1796
193k
  return true;
1797
193k
}
pe-arm-wince.c:coff_new_section_hook
Line
Count
Source
1737
9.95k
{
1738
9.95k
  combined_entry_type *native;
1739
9.95k
  size_t amt;
1740
9.95k
  unsigned char sclass = C_STAT;
1741
1742
9.95k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
9.95k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
9.95k
  amt = sizeof (combined_entry_type) * 10;
1776
9.95k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
9.95k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
9.95k
  native->is_sym = true;
1787
9.95k
  native->u.syment.n_type = T_NULL;
1788
9.95k
  native->u.syment.n_sclass = sclass;
1789
1790
9.95k
  coffsymbol (section->symbol)->native = native;
1791
1792
9.95k
  coff_set_custom_section_alignment (abfd, section,
1793
9.95k
             coff_section_alignment_table,
1794
9.95k
             coff_section_alignment_table_size);
1795
1796
9.95k
  return true;
1797
9.95k
}
pe-arm.c:coff_new_section_hook
Line
Count
Source
1737
9.95k
{
1738
9.95k
  combined_entry_type *native;
1739
9.95k
  size_t amt;
1740
9.95k
  unsigned char sclass = C_STAT;
1741
1742
9.95k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
9.95k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
9.95k
  amt = sizeof (combined_entry_type) * 10;
1776
9.95k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
9.95k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
9.95k
  native->is_sym = true;
1787
9.95k
  native->u.syment.n_type = T_NULL;
1788
9.95k
  native->u.syment.n_sclass = sclass;
1789
1790
9.95k
  coffsymbol (section->symbol)->native = native;
1791
1792
9.95k
  coff_set_custom_section_alignment (abfd, section,
1793
9.95k
             coff_section_alignment_table,
1794
9.95k
             coff_section_alignment_table_size);
1795
1796
9.95k
  return true;
1797
9.95k
}
pe-i386.c:coff_new_section_hook
Line
Count
Source
1737
23.8k
{
1738
23.8k
  combined_entry_type *native;
1739
23.8k
  size_t amt;
1740
23.8k
  unsigned char sclass = C_STAT;
1741
1742
23.8k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
23.8k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
23.8k
  amt = sizeof (combined_entry_type) * 10;
1776
23.8k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
23.8k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
23.8k
  native->is_sym = true;
1787
23.8k
  native->u.syment.n_type = T_NULL;
1788
23.8k
  native->u.syment.n_sclass = sclass;
1789
1790
23.8k
  coffsymbol (section->symbol)->native = native;
1791
1792
23.8k
  coff_set_custom_section_alignment (abfd, section,
1793
23.8k
             coff_section_alignment_table,
1794
23.8k
             coff_section_alignment_table_size);
1795
1796
23.8k
  return true;
1797
23.8k
}
pe-mcore.c:coff_new_section_hook
Line
Count
Source
1737
24.6k
{
1738
24.6k
  combined_entry_type *native;
1739
24.6k
  size_t amt;
1740
24.6k
  unsigned char sclass = C_STAT;
1741
1742
24.6k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
24.6k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
24.6k
  amt = sizeof (combined_entry_type) * 10;
1776
24.6k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
24.6k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
24.6k
  native->is_sym = true;
1787
24.6k
  native->u.syment.n_type = T_NULL;
1788
24.6k
  native->u.syment.n_sclass = sclass;
1789
1790
24.6k
  coffsymbol (section->symbol)->native = native;
1791
1792
24.6k
  coff_set_custom_section_alignment (abfd, section,
1793
24.6k
             coff_section_alignment_table,
1794
24.6k
             coff_section_alignment_table_size);
1795
1796
24.6k
  return true;
1797
24.6k
}
pe-sh.c:coff_new_section_hook
Line
Count
Source
1737
24.7k
{
1738
24.7k
  combined_entry_type *native;
1739
24.7k
  size_t amt;
1740
24.7k
  unsigned char sclass = C_STAT;
1741
1742
24.7k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
24.7k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
24.7k
  amt = sizeof (combined_entry_type) * 10;
1776
24.7k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
24.7k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
24.7k
  native->is_sym = true;
1787
24.7k
  native->u.syment.n_type = T_NULL;
1788
24.7k
  native->u.syment.n_sclass = sclass;
1789
1790
24.7k
  coffsymbol (section->symbol)->native = native;
1791
1792
24.7k
  coff_set_custom_section_alignment (abfd, section,
1793
24.7k
             coff_section_alignment_table,
1794
24.7k
             coff_section_alignment_table_size);
1795
1796
24.7k
  return true;
1797
24.7k
}
pei-arm-wince.c:coff_new_section_hook
Line
Count
Source
1737
39.0k
{
1738
39.0k
  combined_entry_type *native;
1739
39.0k
  size_t amt;
1740
39.0k
  unsigned char sclass = C_STAT;
1741
1742
39.0k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
39.0k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
39.0k
  amt = sizeof (combined_entry_type) * 10;
1776
39.0k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
39.0k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
39.0k
  native->is_sym = true;
1787
39.0k
  native->u.syment.n_type = T_NULL;
1788
39.0k
  native->u.syment.n_sclass = sclass;
1789
1790
39.0k
  coffsymbol (section->symbol)->native = native;
1791
1792
39.0k
  coff_set_custom_section_alignment (abfd, section,
1793
39.0k
             coff_section_alignment_table,
1794
39.0k
             coff_section_alignment_table_size);
1795
1796
39.0k
  return true;
1797
39.0k
}
pei-arm.c:coff_new_section_hook
Line
Count
Source
1737
60.2k
{
1738
60.2k
  combined_entry_type *native;
1739
60.2k
  size_t amt;
1740
60.2k
  unsigned char sclass = C_STAT;
1741
1742
60.2k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
60.2k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
60.2k
  amt = sizeof (combined_entry_type) * 10;
1776
60.2k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
60.2k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
60.2k
  native->is_sym = true;
1787
60.2k
  native->u.syment.n_type = T_NULL;
1788
60.2k
  native->u.syment.n_sclass = sclass;
1789
1790
60.2k
  coffsymbol (section->symbol)->native = native;
1791
1792
60.2k
  coff_set_custom_section_alignment (abfd, section,
1793
60.2k
             coff_section_alignment_table,
1794
60.2k
             coff_section_alignment_table_size);
1795
1796
60.2k
  return true;
1797
60.2k
}
pei-mcore.c:coff_new_section_hook
Line
Count
Source
1737
68.8k
{
1738
68.8k
  combined_entry_type *native;
1739
68.8k
  size_t amt;
1740
68.8k
  unsigned char sclass = C_STAT;
1741
1742
68.8k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
68.8k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
68.8k
  amt = sizeof (combined_entry_type) * 10;
1776
68.8k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
68.8k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
68.8k
  native->is_sym = true;
1787
68.8k
  native->u.syment.n_type = T_NULL;
1788
68.8k
  native->u.syment.n_sclass = sclass;
1789
1790
68.8k
  coffsymbol (section->symbol)->native = native;
1791
1792
68.8k
  coff_set_custom_section_alignment (abfd, section,
1793
68.8k
             coff_section_alignment_table,
1794
68.8k
             coff_section_alignment_table_size);
1795
1796
68.8k
  return true;
1797
68.8k
}
pei-sh.c:coff_new_section_hook
Line
Count
Source
1737
43.1k
{
1738
43.1k
  combined_entry_type *native;
1739
43.1k
  size_t amt;
1740
43.1k
  unsigned char sclass = C_STAT;
1741
1742
43.1k
  section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
1743
1744
#ifdef RS6000COFF_C
1745
  if (bfd_xcoff_text_align_power (abfd) != 0
1746
      && strcmp (bfd_section_name (section), ".text") == 0)
1747
    section->alignment_power = bfd_xcoff_text_align_power (abfd);
1748
  else if (bfd_xcoff_data_align_power (abfd) != 0
1749
      && strcmp (bfd_section_name (section), ".data") == 0)
1750
    section->alignment_power = bfd_xcoff_data_align_power (abfd);
1751
  else
1752
    {
1753
      int i;
1754
1755
      for (i = 0; i < XCOFF_DWSECT_NBR_NAMES; i++)
1756
  if (strcmp (bfd_section_name (section),
1757
        xcoff_dwsect_names[i].xcoff_name) == 0)
1758
    {
1759
      section->alignment_power = 0;
1760
      sclass = C_DWARF;
1761
      break;
1762
    }
1763
    }
1764
#endif
1765
1766
  /* Set up the section symbol.  */
1767
43.1k
  if (!_bfd_generic_new_section_hook (abfd, section))
1768
0
    return false;
1769
1770
  /* Allocate aux records for section symbols, to store size and
1771
     related info.
1772
1773
     @@ The 10 is a guess at a plausible maximum number of aux entries
1774
     (but shouldn't be a constant).  */
1775
43.1k
  amt = sizeof (combined_entry_type) * 10;
1776
43.1k
  native = (combined_entry_type *) bfd_zalloc (abfd, amt);
1777
43.1k
  if (native == NULL)
1778
0
    return false;
1779
1780
  /* We don't need to set up n_name, n_value, or n_scnum in the native
1781
     symbol information, since they'll be overridden by the BFD symbol
1782
     anyhow.  However, we do need to set the type and storage class,
1783
     in case this symbol winds up getting written out.  The value 0
1784
     for n_numaux is already correct.  */
1785
1786
43.1k
  native->is_sym = true;
1787
43.1k
  native->u.syment.n_type = T_NULL;
1788
43.1k
  native->u.syment.n_sclass = sclass;
1789
1790
43.1k
  coffsymbol (section->symbol)->native = native;
1791
1792
43.1k
  coff_set_custom_section_alignment (abfd, section,
1793
43.1k
             coff_section_alignment_table,
1794
43.1k
             coff_section_alignment_table_size);
1795
1796
43.1k
  return true;
1797
43.1k
}
1798
1799
#ifdef COFF_ALIGN_IN_SECTION_HEADER
1800
1801
/* Set the alignment of a BFD section.  */
1802
1803
static void
1804
coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1805
       asection * section,
1806
       void * scnhdr)
1807
4.35M
{
1808
4.35M
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1809
4.35M
  unsigned int i;
1810
1811
4.35M
#ifdef COFF_DECODE_ALIGNMENT
1812
4.35M
  i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
1813
4.35M
#endif
1814
4.35M
  section->alignment_power = i;
1815
1816
#ifdef coff_set_section_load_page
1817
3.92M
  coff_set_section_load_page (section, hdr->s_page);
1818
#endif
1819
4.35M
}
Unexecuted instantiation: coff-tic4x.c:coff_set_alignment_hook
coff-tic54x.c:coff_set_alignment_hook
Line
Count
Source
1807
3.92M
{
1808
3.92M
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1809
3.92M
  unsigned int i;
1810
1811
3.92M
#ifdef COFF_DECODE_ALIGNMENT
1812
3.92M
  i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
1813
3.92M
#endif
1814
3.92M
  section->alignment_power = i;
1815
1816
3.92M
#ifdef coff_set_section_load_page
1817
3.92M
  coff_set_section_load_page (section, hdr->s_page);
1818
3.92M
#endif
1819
3.92M
}
coff-z80.c:coff_set_alignment_hook
Line
Count
Source
1807
427k
{
1808
427k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1809
427k
  unsigned int i;
1810
1811
427k
#ifdef COFF_DECODE_ALIGNMENT
1812
427k
  i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
1813
427k
#endif
1814
427k
  section->alignment_power = i;
1815
1816
#ifdef coff_set_section_load_page
1817
  coff_set_section_load_page (section, hdr->s_page);
1818
#endif
1819
427k
}
1820
1821
#else /* ! COFF_ALIGN_IN_SECTION_HEADER */
1822
#ifdef COFF_WITH_PE
1823
1824
static void
1825
coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
1826
       asection * section,
1827
       void * scnhdr)
1828
660k
{
1829
660k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
660k
  size_t amt;
1831
660k
  unsigned int alignment_power_const
1832
660k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
660k
  switch (alignment_power_const)
1835
660k
    {
1836
24.0k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
31.6k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
60.1k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
67.6k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
86.9k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
94.6k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
115k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
132k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
165k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
176k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
203k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
228k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
288k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
296k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
296k
      section->alignment_power
1851
296k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
296k
      break;
1853
363k
    default:
1854
363k
      break;
1855
660k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
660k
  if (coff_section_data (abfd, section) == NULL)
1862
660k
    {
1863
660k
      amt = sizeof (struct coff_section_tdata);
1864
660k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
660k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
660k
    }
1869
1870
660k
  if (pei_section_data (abfd, section) == NULL)
1871
660k
    {
1872
660k
      amt = sizeof (struct pei_section_tdata);
1873
660k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
660k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
660k
    }
1878
660k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
660k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
660k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
660k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
131k
    {
1886
131k
      struct external_reloc dst;
1887
131k
      struct internal_reloc n;
1888
131k
      file_ptr oldpos = bfd_tell (abfd);
1889
131k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
131k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
131k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
91.2k
  return;
1895
1896
40.1k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
40.1k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
40.1k
      if (n.r_vaddr < 0x10000)
1900
13.8k
  {
1901
13.8k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
13.8k
    bfd_set_error (bfd_error_bad_value);
1903
13.8k
    return;
1904
13.8k
  }
1905
26.3k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
26.3k
      section->rel_filepos += relsz;
1907
26.3k
    }
1908
529k
  else if (hdr->s_nreloc == 0xffff)
1909
3.68k
    _bfd_error_handler
1910
3.68k
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
3.68k
       abfd);
1912
660k
}
pei-i386.c:coff_set_alignment_hook
Line
Count
Source
1828
49.3k
{
1829
49.3k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
49.3k
  size_t amt;
1831
49.3k
  unsigned int alignment_power_const
1832
49.3k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
49.3k
  switch (alignment_power_const)
1835
49.3k
    {
1836
928
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
1.29k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
1.42k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.65k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
3.91k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
4.48k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
4.48k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
5.42k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
10.9k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
11.7k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
14.3k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
15.0k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
19.4k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
19.6k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
19.6k
      section->alignment_power
1851
19.6k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
19.6k
      break;
1853
29.7k
    default:
1854
29.7k
      break;
1855
49.3k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
49.3k
  if (coff_section_data (abfd, section) == NULL)
1862
49.3k
    {
1863
49.3k
      amt = sizeof (struct coff_section_tdata);
1864
49.3k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
49.3k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
49.3k
    }
1869
1870
49.3k
  if (pei_section_data (abfd, section) == NULL)
1871
49.3k
    {
1872
49.3k
      amt = sizeof (struct pei_section_tdata);
1873
49.3k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
49.3k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
49.3k
    }
1878
49.3k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
49.3k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
49.3k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
49.3k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
9.35k
    {
1886
9.35k
      struct external_reloc dst;
1887
9.35k
      struct internal_reloc n;
1888
9.35k
      file_ptr oldpos = bfd_tell (abfd);
1889
9.35k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
9.35k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
9.35k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
6.38k
  return;
1895
1896
2.97k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
2.97k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
2.97k
      if (n.r_vaddr < 0x10000)
1900
1.73k
  {
1901
1.73k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
1.73k
    bfd_set_error (bfd_error_bad_value);
1903
1.73k
    return;
1904
1.73k
  }
1905
1.23k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.23k
      section->rel_filepos += relsz;
1907
1.23k
    }
1908
40.0k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
49.3k
}
pe-x86_64.c:coff_set_alignment_hook
Line
Count
Source
1828
91.8k
{
1829
91.8k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
91.8k
  size_t amt;
1831
91.8k
  unsigned int alignment_power_const
1832
91.8k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
91.8k
  switch (alignment_power_const)
1835
91.8k
    {
1836
1.84k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
4.24k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
5.40k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
6.49k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
8.38k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
10.4k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
13.6k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
18.1k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
23.1k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
24.8k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
30.6k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
38.6k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
45.0k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
45.8k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
45.8k
      section->alignment_power
1851
45.8k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
45.8k
      break;
1853
45.9k
    default:
1854
45.9k
      break;
1855
91.8k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
91.8k
  if (coff_section_data (abfd, section) == NULL)
1862
91.8k
    {
1863
91.8k
      amt = sizeof (struct coff_section_tdata);
1864
91.8k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
91.8k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
91.8k
    }
1869
1870
91.8k
  if (pei_section_data (abfd, section) == NULL)
1871
91.8k
    {
1872
91.8k
      amt = sizeof (struct pei_section_tdata);
1873
91.8k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
91.8k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
91.8k
    }
1878
91.8k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
91.8k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
91.8k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
91.8k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
16.2k
    {
1886
16.2k
      struct external_reloc dst;
1887
16.2k
      struct internal_reloc n;
1888
16.2k
      file_ptr oldpos = bfd_tell (abfd);
1889
16.2k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
16.2k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
16.2k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
11.5k
  return;
1895
1896
4.71k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
4.71k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
4.71k
      if (n.r_vaddr < 0x10000)
1900
495
  {
1901
495
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
495
    bfd_set_error (bfd_error_bad_value);
1903
495
    return;
1904
495
  }
1905
4.22k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
4.22k
      section->rel_filepos += relsz;
1907
4.22k
    }
1908
75.5k
  else if (hdr->s_nreloc == 0xffff)
1909
858
    _bfd_error_handler
1910
858
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
858
       abfd);
1912
91.8k
}
pei-x86_64.c:coff_set_alignment_hook
Line
Count
Source
1828
73.0k
{
1829
73.0k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
73.0k
  size_t amt;
1831
73.0k
  unsigned int alignment_power_const
1832
73.0k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
73.0k
  switch (alignment_power_const)
1835
73.0k
    {
1836
4.82k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
5.31k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
6.02k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
6.15k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
6.53k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
7.20k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
10.5k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
11.9k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
15.5k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
16.0k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
18.6k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
20.1k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
26.2k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
28.3k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
28.3k
      section->alignment_power
1851
28.3k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
28.3k
      break;
1853
44.6k
    default:
1854
44.6k
      break;
1855
73.0k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
73.0k
  if (coff_section_data (abfd, section) == NULL)
1862
73.0k
    {
1863
73.0k
      amt = sizeof (struct coff_section_tdata);
1864
73.0k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
73.0k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
73.0k
    }
1869
1870
73.0k
  if (pei_section_data (abfd, section) == NULL)
1871
73.0k
    {
1872
73.0k
      amt = sizeof (struct pei_section_tdata);
1873
73.0k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
73.0k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
73.0k
    }
1878
73.0k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
73.0k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
73.0k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
73.0k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
8.76k
    {
1886
8.76k
      struct external_reloc dst;
1887
8.76k
      struct internal_reloc n;
1888
8.76k
      file_ptr oldpos = bfd_tell (abfd);
1889
8.76k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
8.76k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
8.76k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
5.91k
  return;
1895
1896
2.84k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
2.84k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
2.84k
      if (n.r_vaddr < 0x10000)
1900
762
  {
1901
762
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
762
    bfd_set_error (bfd_error_bad_value);
1903
762
    return;
1904
762
  }
1905
2.08k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
2.08k
      section->rel_filepos += relsz;
1907
2.08k
    }
1908
64.2k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
73.0k
}
pei-aarch64.c:coff_set_alignment_hook
Line
Count
Source
1828
47.4k
{
1829
47.4k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
47.4k
  size_t amt;
1831
47.4k
  unsigned int alignment_power_const
1832
47.4k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
47.4k
  switch (alignment_power_const)
1835
47.4k
    {
1836
9.00k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
9.61k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
11.3k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
11.7k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
12.7k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
13.2k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
17.6k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
18.7k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
20.0k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
22.3k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
23.5k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
26.8k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
28.5k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
28.8k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
28.8k
      section->alignment_power
1851
28.8k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
28.8k
      break;
1853
18.6k
    default:
1854
18.6k
      break;
1855
47.4k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
47.4k
  if (coff_section_data (abfd, section) == NULL)
1862
47.4k
    {
1863
47.4k
      amt = sizeof (struct coff_section_tdata);
1864
47.4k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
47.4k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
47.4k
    }
1869
1870
47.4k
  if (pei_section_data (abfd, section) == NULL)
1871
47.4k
    {
1872
47.4k
      amt = sizeof (struct pei_section_tdata);
1873
47.4k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
47.4k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
47.4k
    }
1878
47.4k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
47.4k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
47.4k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
47.4k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
10.7k
    {
1886
10.7k
      struct external_reloc dst;
1887
10.7k
      struct internal_reloc n;
1888
10.7k
      file_ptr oldpos = bfd_tell (abfd);
1889
10.7k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
10.7k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
10.7k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
7.81k
  return;
1895
1896
2.98k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
2.98k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
2.98k
      if (n.r_vaddr < 0x10000)
1900
2.07k
  {
1901
2.07k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
2.07k
    bfd_set_error (bfd_error_bad_value);
1903
2.07k
    return;
1904
2.07k
  }
1905
910
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
910
      section->rel_filepos += relsz;
1907
910
    }
1908
36.6k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
47.4k
}
pe-aarch64.c:coff_set_alignment_hook
Line
Count
Source
1828
36.7k
{
1829
36.7k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
36.7k
  size_t amt;
1831
36.7k
  unsigned int alignment_power_const
1832
36.7k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
36.7k
  switch (alignment_power_const)
1835
36.7k
    {
1836
273
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
274
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
15.6k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
15.7k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
17.3k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
17.5k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
18.1k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
19.3k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
20.0k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
20.2k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
20.2k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
21.2k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
22.5k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
23.0k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
23.0k
      section->alignment_power
1851
23.0k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
23.0k
      break;
1853
13.7k
    default:
1854
13.7k
      break;
1855
36.7k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
36.7k
  if (coff_section_data (abfd, section) == NULL)
1862
36.7k
    {
1863
36.7k
      amt = sizeof (struct coff_section_tdata);
1864
36.7k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
36.7k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
36.7k
    }
1869
1870
36.7k
  if (pei_section_data (abfd, section) == NULL)
1871
36.7k
    {
1872
36.7k
      amt = sizeof (struct pei_section_tdata);
1873
36.7k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
36.7k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
36.7k
    }
1878
36.7k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
36.7k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
36.7k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
36.7k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
3.59k
    {
1886
3.59k
      struct external_reloc dst;
1887
3.59k
      struct internal_reloc n;
1888
3.59k
      file_ptr oldpos = bfd_tell (abfd);
1889
3.59k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
3.59k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
3.59k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
2.55k
  return;
1895
1896
1.04k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.04k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.04k
      if (n.r_vaddr < 0x10000)
1900
347
  {
1901
347
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
347
    bfd_set_error (bfd_error_bad_value);
1903
347
    return;
1904
347
  }
1905
699
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
699
      section->rel_filepos += relsz;
1907
699
    }
1908
33.1k
  else if (hdr->s_nreloc == 0xffff)
1909
514
    _bfd_error_handler
1910
514
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
514
       abfd);
1912
36.7k
}
pei-ia64.c:coff_set_alignment_hook
Line
Count
Source
1828
40.5k
{
1829
40.5k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
40.5k
  size_t amt;
1831
40.5k
  unsigned int alignment_power_const
1832
40.5k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
40.5k
  switch (alignment_power_const)
1835
40.5k
    {
1836
1.08k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
1.45k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
3.84k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
4.21k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
4.70k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
5.31k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
6.49k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
8.04k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
9.33k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
9.93k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
10.7k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
12.8k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
18.4k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
18.9k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
18.9k
      section->alignment_power
1851
18.9k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
18.9k
      break;
1853
21.5k
    default:
1854
21.5k
      break;
1855
40.5k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
40.5k
  if (coff_section_data (abfd, section) == NULL)
1862
40.5k
    {
1863
40.5k
      amt = sizeof (struct coff_section_tdata);
1864
40.5k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
40.5k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
40.5k
    }
1869
1870
40.5k
  if (pei_section_data (abfd, section) == NULL)
1871
40.5k
    {
1872
40.5k
      amt = sizeof (struct pei_section_tdata);
1873
40.5k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
40.5k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
40.5k
    }
1878
40.5k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
40.5k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
40.5k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
40.5k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
10.5k
    {
1886
10.5k
      struct external_reloc dst;
1887
10.5k
      struct internal_reloc n;
1888
10.5k
      file_ptr oldpos = bfd_tell (abfd);
1889
10.5k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
10.5k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
10.5k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
8.30k
  return;
1895
1896
2.24k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
2.24k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
2.24k
      if (n.r_vaddr < 0x10000)
1900
251
  {
1901
251
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
251
    bfd_set_error (bfd_error_bad_value);
1903
251
    return;
1904
251
  }
1905
1.99k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.99k
      section->rel_filepos += relsz;
1907
1.99k
    }
1908
29.9k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
40.5k
}
pei-loongarch64.c:coff_set_alignment_hook
Line
Count
Source
1828
32.0k
{
1829
32.0k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
32.0k
  size_t amt;
1831
32.0k
  unsigned int alignment_power_const
1832
32.0k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
32.0k
  switch (alignment_power_const)
1835
32.0k
    {
1836
445
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
922
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
2.62k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
2.62k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
3.34k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
3.56k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
4.31k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
6.43k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
8.00k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
8.45k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
8.99k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
10.2k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
13.1k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
13.2k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
13.2k
      section->alignment_power
1851
13.2k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
13.2k
      break;
1853
18.8k
    default:
1854
18.8k
      break;
1855
32.0k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
32.0k
  if (coff_section_data (abfd, section) == NULL)
1862
32.0k
    {
1863
32.0k
      amt = sizeof (struct coff_section_tdata);
1864
32.0k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
32.0k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
32.0k
    }
1869
1870
32.0k
  if (pei_section_data (abfd, section) == NULL)
1871
32.0k
    {
1872
32.0k
      amt = sizeof (struct pei_section_tdata);
1873
32.0k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
32.0k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
32.0k
    }
1878
32.0k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
32.0k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
32.0k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
32.0k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
5.85k
    {
1886
5.85k
      struct external_reloc dst;
1887
5.85k
      struct internal_reloc n;
1888
5.85k
      file_ptr oldpos = bfd_tell (abfd);
1889
5.85k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
5.85k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
5.85k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
3.94k
  return;
1895
1896
1.90k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.90k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.90k
      if (n.r_vaddr < 0x10000)
1900
822
  {
1901
822
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
822
    bfd_set_error (bfd_error_bad_value);
1903
822
    return;
1904
822
  }
1905
1.08k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.08k
      section->rel_filepos += relsz;
1907
1.08k
    }
1908
26.2k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
32.0k
}
pe-arm-wince.c:coff_set_alignment_hook
Line
Count
Source
1828
9.52k
{
1829
9.52k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
9.52k
  size_t amt;
1831
9.52k
  unsigned int alignment_power_const
1832
9.52k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
9.52k
  switch (alignment_power_const)
1835
9.52k
    {
1836
272
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
377
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
391
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.15k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
1.45k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
1.57k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
1.69k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
1.70k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
2.13k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
2.14k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
2.56k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
2.89k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
4.05k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
4.26k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
4.26k
      section->alignment_power
1851
4.26k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
4.26k
      break;
1853
5.26k
    default:
1854
5.26k
      break;
1855
9.52k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
9.52k
  if (coff_section_data (abfd, section) == NULL)
1862
9.52k
    {
1863
9.52k
      amt = sizeof (struct coff_section_tdata);
1864
9.52k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
9.52k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
9.52k
    }
1869
1870
9.52k
  if (pei_section_data (abfd, section) == NULL)
1871
9.52k
    {
1872
9.52k
      amt = sizeof (struct pei_section_tdata);
1873
9.52k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
9.52k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
9.52k
    }
1878
9.52k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
9.52k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
9.52k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
9.52k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
2.58k
    {
1886
2.58k
      struct external_reloc dst;
1887
2.58k
      struct internal_reloc n;
1888
2.58k
      file_ptr oldpos = bfd_tell (abfd);
1889
2.58k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
2.58k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
2.58k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
1.64k
  return;
1895
1896
935
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
935
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
935
      if (n.r_vaddr < 0x10000)
1900
205
  {
1901
205
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
205
    bfd_set_error (bfd_error_bad_value);
1903
205
    return;
1904
205
  }
1905
730
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
730
      section->rel_filepos += relsz;
1907
730
    }
1908
6.94k
  else if (hdr->s_nreloc == 0xffff)
1909
114
    _bfd_error_handler
1910
114
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
114
       abfd);
1912
9.52k
}
pe-arm.c:coff_set_alignment_hook
Line
Count
Source
1828
9.52k
{
1829
9.52k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
9.52k
  size_t amt;
1831
9.52k
  unsigned int alignment_power_const
1832
9.52k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
9.52k
  switch (alignment_power_const)
1835
9.52k
    {
1836
272
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
377
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
391
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.15k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
1.45k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
1.57k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
1.69k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
1.70k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
2.13k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
2.14k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
2.56k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
2.89k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
4.05k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
4.26k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
4.26k
      section->alignment_power
1851
4.26k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
4.26k
      break;
1853
5.26k
    default:
1854
5.26k
      break;
1855
9.52k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
9.52k
  if (coff_section_data (abfd, section) == NULL)
1862
9.52k
    {
1863
9.52k
      amt = sizeof (struct coff_section_tdata);
1864
9.52k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
9.52k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
9.52k
    }
1869
1870
9.52k
  if (pei_section_data (abfd, section) == NULL)
1871
9.52k
    {
1872
9.52k
      amt = sizeof (struct pei_section_tdata);
1873
9.52k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
9.52k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
9.52k
    }
1878
9.52k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
9.52k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
9.52k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
9.52k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
2.58k
    {
1886
2.58k
      struct external_reloc dst;
1887
2.58k
      struct internal_reloc n;
1888
2.58k
      file_ptr oldpos = bfd_tell (abfd);
1889
2.58k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
2.58k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
2.58k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
1.64k
  return;
1895
1896
935
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
935
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
935
      if (n.r_vaddr < 0x10000)
1900
205
  {
1901
205
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
205
    bfd_set_error (bfd_error_bad_value);
1903
205
    return;
1904
205
  }
1905
730
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
730
      section->rel_filepos += relsz;
1907
730
    }
1908
6.94k
  else if (hdr->s_nreloc == 0xffff)
1909
114
    _bfd_error_handler
1910
114
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
114
       abfd);
1912
9.52k
}
pe-i386.c:coff_set_alignment_hook
Line
Count
Source
1828
23.8k
{
1829
23.8k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
23.8k
  size_t amt;
1831
23.8k
  unsigned int alignment_power_const
1832
23.8k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
23.8k
  switch (alignment_power_const)
1835
23.8k
    {
1836
120
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
371
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
481
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.93k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
2.44k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
3.28k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
3.65k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
4.23k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
5.83k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
6.65k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
8.20k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
9.46k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
11.9k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
12.1k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
12.1k
      section->alignment_power
1851
12.1k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
12.1k
      break;
1853
11.6k
    default:
1854
11.6k
      break;
1855
23.8k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
23.8k
  if (coff_section_data (abfd, section) == NULL)
1862
23.8k
    {
1863
23.8k
      amt = sizeof (struct coff_section_tdata);
1864
23.8k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
23.8k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
23.8k
    }
1869
1870
23.8k
  if (pei_section_data (abfd, section) == NULL)
1871
23.8k
    {
1872
23.8k
      amt = sizeof (struct pei_section_tdata);
1873
23.8k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
23.8k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
23.8k
    }
1878
23.8k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
23.8k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
23.8k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
23.8k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
7.13k
    {
1886
7.13k
      struct external_reloc dst;
1887
7.13k
      struct internal_reloc n;
1888
7.13k
      file_ptr oldpos = bfd_tell (abfd);
1889
7.13k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
7.13k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
7.13k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
5.60k
  return;
1895
1896
1.53k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.53k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.53k
      if (n.r_vaddr < 0x10000)
1900
550
  {
1901
550
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
550
    bfd_set_error (bfd_error_bad_value);
1903
550
    return;
1904
550
  }
1905
983
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
983
      section->rel_filepos += relsz;
1907
983
    }
1908
16.6k
  else if (hdr->s_nreloc == 0xffff)
1909
424
    _bfd_error_handler
1910
424
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
424
       abfd);
1912
23.8k
}
pe-mcore.c:coff_set_alignment_hook
Line
Count
Source
1828
23.4k
{
1829
23.4k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
23.4k
  size_t amt;
1831
23.4k
  unsigned int alignment_power_const
1832
23.4k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
23.4k
  switch (alignment_power_const)
1835
23.4k
    {
1836
1.16k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
1.40k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
1.88k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
2.14k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
2.93k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
3.30k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
6.02k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
6.36k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
6.94k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
6.94k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
7.85k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
7.86k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
10.7k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
10.9k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
10.9k
      section->alignment_power
1851
10.9k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
10.9k
      break;
1853
12.5k
    default:
1854
12.5k
      break;
1855
23.4k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
23.4k
  if (coff_section_data (abfd, section) == NULL)
1862
23.4k
    {
1863
23.4k
      amt = sizeof (struct coff_section_tdata);
1864
23.4k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
23.4k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
23.4k
    }
1869
1870
23.4k
  if (pei_section_data (abfd, section) == NULL)
1871
23.4k
    {
1872
23.4k
      amt = sizeof (struct pei_section_tdata);
1873
23.4k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
23.4k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
23.4k
    }
1878
23.4k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
23.4k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
23.4k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
23.4k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
4.65k
    {
1886
4.65k
      struct external_reloc dst;
1887
4.65k
      struct internal_reloc n;
1888
4.65k
      file_ptr oldpos = bfd_tell (abfd);
1889
4.65k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
4.65k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
4.65k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
2.99k
  return;
1895
1896
1.66k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.66k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.66k
      if (n.r_vaddr < 0x10000)
1900
341
  {
1901
341
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
341
    bfd_set_error (bfd_error_bad_value);
1903
341
    return;
1904
341
  }
1905
1.32k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.32k
      section->rel_filepos += relsz;
1907
1.32k
    }
1908
18.8k
  else if (hdr->s_nreloc == 0xffff)
1909
1.24k
    _bfd_error_handler
1910
1.24k
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
1.24k
       abfd);
1912
23.4k
}
pe-sh.c:coff_set_alignment_hook
Line
Count
Source
1828
23.5k
{
1829
23.5k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
23.5k
  size_t amt;
1831
23.5k
  unsigned int alignment_power_const
1832
23.5k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
23.5k
  switch (alignment_power_const)
1835
23.5k
    {
1836
9
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
48
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
126
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
153
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
396
    case IMAGE_SCN_ALIGN_512BYTES:
1841
1.22k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
1.23k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
1.36k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
4.11k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
4.83k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
5.78k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
6.34k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
8.83k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
9.34k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
9.34k
      section->alignment_power
1851
9.34k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
9.34k
      break;
1853
14.2k
    default:
1854
14.2k
      break;
1855
23.5k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
23.5k
  if (coff_section_data (abfd, section) == NULL)
1862
23.5k
    {
1863
23.5k
      amt = sizeof (struct coff_section_tdata);
1864
23.5k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
23.5k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
23.5k
    }
1869
1870
23.5k
  if (pei_section_data (abfd, section) == NULL)
1871
23.5k
    {
1872
23.5k
      amt = sizeof (struct pei_section_tdata);
1873
23.5k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
23.5k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
23.5k
    }
1878
23.5k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
23.5k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
23.5k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
23.5k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
5.29k
    {
1886
5.29k
      struct external_reloc dst;
1887
5.29k
      struct internal_reloc n;
1888
5.29k
      file_ptr oldpos = bfd_tell (abfd);
1889
5.29k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
5.29k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
5.29k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
3.69k
  return;
1895
1896
1.59k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.59k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.59k
      if (n.r_vaddr < 0x10000)
1900
413
  {
1901
413
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
413
    bfd_set_error (bfd_error_bad_value);
1903
413
    return;
1904
413
  }
1905
1.18k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.18k
      section->rel_filepos += relsz;
1907
1.18k
    }
1908
18.2k
  else if (hdr->s_nreloc == 0xffff)
1909
415
    _bfd_error_handler
1910
415
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
415
       abfd);
1912
23.5k
}
pei-arm-wince.c:coff_set_alignment_hook
Line
Count
Source
1828
37.9k
{
1829
37.9k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
37.9k
  size_t amt;
1831
37.9k
  unsigned int alignment_power_const
1832
37.9k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
37.9k
  switch (alignment_power_const)
1835
37.9k
    {
1836
854
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
1.09k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
1.69k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.70k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
5.03k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
5.04k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
5.51k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
6.43k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
7.19k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
7.43k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
9.88k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
11.1k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
14.5k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
15.0k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
15.0k
      section->alignment_power
1851
15.0k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
15.0k
      break;
1853
22.8k
    default:
1854
22.8k
      break;
1855
37.9k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
37.9k
  if (coff_section_data (abfd, section) == NULL)
1862
37.9k
    {
1863
37.9k
      amt = sizeof (struct coff_section_tdata);
1864
37.9k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
37.9k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
37.9k
    }
1869
1870
37.9k
  if (pei_section_data (abfd, section) == NULL)
1871
37.9k
    {
1872
37.9k
      amt = sizeof (struct pei_section_tdata);
1873
37.9k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
37.9k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
37.9k
    }
1878
37.9k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
37.9k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
37.9k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
37.9k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
11.3k
    {
1886
11.3k
      struct external_reloc dst;
1887
11.3k
      struct internal_reloc n;
1888
11.3k
      file_ptr oldpos = bfd_tell (abfd);
1889
11.3k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
11.3k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
11.3k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
7.46k
  return;
1895
1896
3.88k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
3.88k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
3.88k
      if (n.r_vaddr < 0x10000)
1900
1.71k
  {
1901
1.71k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
1.71k
    bfd_set_error (bfd_error_bad_value);
1903
1.71k
    return;
1904
1.71k
  }
1905
2.16k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
2.16k
      section->rel_filepos += relsz;
1907
2.16k
    }
1908
26.5k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
37.9k
}
pei-arm.c:coff_set_alignment_hook
Line
Count
Source
1828
54.0k
{
1829
54.0k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
54.0k
  size_t amt;
1831
54.0k
  unsigned int alignment_power_const
1832
54.0k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
54.0k
  switch (alignment_power_const)
1835
54.0k
    {
1836
377
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
613
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
2.99k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
2.99k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
6.09k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
6.09k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
7.41k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
8.01k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
9.41k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
9.42k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
12.2k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
13.5k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
19.3k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
20.2k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
20.2k
      section->alignment_power
1851
20.2k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
20.2k
      break;
1853
33.8k
    default:
1854
33.8k
      break;
1855
54.0k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
54.0k
  if (coff_section_data (abfd, section) == NULL)
1862
54.0k
    {
1863
54.0k
      amt = sizeof (struct coff_section_tdata);
1864
54.0k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
54.0k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
54.0k
    }
1869
1870
54.0k
  if (pei_section_data (abfd, section) == NULL)
1871
54.0k
    {
1872
54.0k
      amt = sizeof (struct pei_section_tdata);
1873
54.0k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
54.0k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
54.0k
    }
1878
54.0k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
54.0k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
54.0k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
54.0k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
13.3k
    {
1886
13.3k
      struct external_reloc dst;
1887
13.3k
      struct internal_reloc n;
1888
13.3k
      file_ptr oldpos = bfd_tell (abfd);
1889
13.3k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
13.3k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
13.3k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
8.99k
  return;
1895
1896
4.38k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
4.38k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
4.38k
      if (n.r_vaddr < 0x10000)
1900
1.97k
  {
1901
1.97k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
1.97k
    bfd_set_error (bfd_error_bad_value);
1903
1.97k
    return;
1904
1.97k
  }
1905
2.41k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
2.41k
      section->rel_filepos += relsz;
1907
2.41k
    }
1908
40.6k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
54.0k
}
pei-mcore.c:coff_set_alignment_hook
Line
Count
Source
1828
67.4k
{
1829
67.4k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
67.4k
  size_t amt;
1831
67.4k
  unsigned int alignment_power_const
1832
67.4k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
67.4k
  switch (alignment_power_const)
1835
67.4k
    {
1836
1.80k
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
3.45k
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
4.75k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
5.90k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
6.37k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
6.58k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
6.68k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
7.19k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
9.33k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
10.8k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
11.9k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
12.7k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
21.0k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
21.4k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
21.4k
      section->alignment_power
1851
21.4k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
21.4k
      break;
1853
46.0k
    default:
1854
46.0k
      break;
1855
67.4k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
67.4k
  if (coff_section_data (abfd, section) == NULL)
1862
67.4k
    {
1863
67.4k
      amt = sizeof (struct coff_section_tdata);
1864
67.4k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
67.4k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
67.4k
    }
1869
1870
67.4k
  if (pei_section_data (abfd, section) == NULL)
1871
67.4k
    {
1872
67.4k
      amt = sizeof (struct pei_section_tdata);
1873
67.4k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
67.4k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
67.4k
    }
1878
67.4k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
67.4k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
67.4k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
67.4k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
12.8k
    {
1886
12.8k
      struct external_reloc dst;
1887
12.8k
      struct internal_reloc n;
1888
12.8k
      file_ptr oldpos = bfd_tell (abfd);
1889
12.8k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
12.8k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
12.8k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
8.30k
  return;
1895
1896
4.57k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
4.57k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
4.57k
      if (n.r_vaddr < 0x10000)
1900
1.53k
  {
1901
1.53k
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
1.53k
    bfd_set_error (bfd_error_bad_value);
1903
1.53k
    return;
1904
1.53k
  }
1905
3.04k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
3.04k
      section->rel_filepos += relsz;
1907
3.04k
    }
1908
54.5k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
67.4k
}
pei-sh.c:coff_set_alignment_hook
Line
Count
Source
1828
40.0k
{
1829
40.0k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1830
40.0k
  size_t amt;
1831
40.0k
  unsigned int alignment_power_const
1832
40.0k
    = hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
1833
1834
40.0k
  switch (alignment_power_const)
1835
40.0k
    {
1836
743
    case IMAGE_SCN_ALIGN_8192BYTES:
1837
750
    case IMAGE_SCN_ALIGN_4096BYTES:
1838
1.15k
    case IMAGE_SCN_ALIGN_2048BYTES:
1839
1.76k
    case IMAGE_SCN_ALIGN_1024BYTES:
1840
3.84k
    case IMAGE_SCN_ALIGN_512BYTES:
1841
4.21k
    case IMAGE_SCN_ALIGN_256BYTES:
1842
6.25k
    case IMAGE_SCN_ALIGN_128BYTES:
1843
6.96k
    case IMAGE_SCN_ALIGN_64BYTES:
1844
11.2k
    case IMAGE_SCN_ALIGN_32BYTES:
1845
12.4k
    case IMAGE_SCN_ALIGN_16BYTES:
1846
15.0k
    case IMAGE_SCN_ALIGN_8BYTES:
1847
16.1k
    case IMAGE_SCN_ALIGN_4BYTES:
1848
20.3k
    case IMAGE_SCN_ALIGN_2BYTES:
1849
21.0k
    case IMAGE_SCN_ALIGN_1BYTES:
1850
21.0k
      section->alignment_power
1851
21.0k
  = IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
1852
21.0k
      break;
1853
18.9k
    default:
1854
18.9k
      break;
1855
40.0k
    }
1856
1857
  /* In a PE image file, the s_paddr field holds the virtual size of a
1858
     section, while the s_size field holds the raw size.  We also keep
1859
     the original section flag value, since not every bit can be
1860
     mapped onto a generic BFD section bit.  */
1861
40.0k
  if (coff_section_data (abfd, section) == NULL)
1862
40.0k
    {
1863
40.0k
      amt = sizeof (struct coff_section_tdata);
1864
40.0k
      section->used_by_bfd = bfd_zalloc (abfd, amt);
1865
40.0k
      if (section->used_by_bfd == NULL)
1866
  /* FIXME: Return error.  */
1867
0
  abort ();
1868
40.0k
    }
1869
1870
40.0k
  if (pei_section_data (abfd, section) == NULL)
1871
40.0k
    {
1872
40.0k
      amt = sizeof (struct pei_section_tdata);
1873
40.0k
      coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
1874
40.0k
      if (coff_section_data (abfd, section)->tdata == NULL)
1875
  /* FIXME: Return error.  */
1876
0
  abort ();
1877
40.0k
    }
1878
40.0k
  pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
1879
40.0k
  pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
1880
1881
40.0k
  section->lma = hdr->s_vaddr;
1882
1883
  /* Check for extended relocs.  */
1884
40.0k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1885
6.34k
    {
1886
6.34k
      struct external_reloc dst;
1887
6.34k
      struct internal_reloc n;
1888
6.34k
      file_ptr oldpos = bfd_tell (abfd);
1889
6.34k
      bfd_size_type relsz = bfd_coff_relsz (abfd);
1890
1891
6.34k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1892
0
  return;
1893
6.34k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1894
4.39k
  return;
1895
1896
1.94k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1897
1.94k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1898
0
  return;
1899
1.94k
      if (n.r_vaddr < 0x10000)
1900
439
  {
1901
439
    _bfd_error_handler (_("%pB: overflow reloc count too small"), abfd);
1902
439
    bfd_set_error (bfd_error_bad_value);
1903
439
    return;
1904
439
  }
1905
1.51k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1906
1.51k
      section->rel_filepos += relsz;
1907
1.51k
    }
1908
33.7k
  else if (hdr->s_nreloc == 0xffff)
1909
0
    _bfd_error_handler
1910
0
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1911
0
       abfd);
1912
40.0k
}
1913
#undef ALIGN_SET
1914
#undef ELIFALIGN_SET
1915
1916
#else /* ! COFF_WITH_PE */
1917
#ifdef RS6000COFF_C
1918
1919
/* We grossly abuse this function to handle XCOFF overflow headers.
1920
   When we see one, we correct the reloc and line number counts in the
1921
   real header, and remove the section we just created.  */
1922
1923
static void
1924
coff_set_alignment_hook (bfd *abfd, asection *section, void * scnhdr)
1925
8.35M
{
1926
8.35M
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1927
8.35M
  asection *real_sec;
1928
1929
8.35M
  if ((hdr->s_flags & STYP_OVRFLO) == 0)
1930
6.84M
    return;
1931
1932
1.50M
  real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
1933
1.50M
  if (real_sec == NULL)
1934
0
    return;
1935
1936
1.50M
  real_sec->reloc_count = hdr->s_paddr;
1937
1.50M
  real_sec->lineno_count = hdr->s_vaddr;
1938
1939
1.50M
  if (!bfd_section_removed_from_list (abfd, section))
1940
1.50M
    {
1941
1.50M
      bfd_section_list_remove (abfd, section);
1942
1.50M
      --abfd->section_count;
1943
1.50M
    }
1944
1.50M
}
coff64-rs6000.c:coff_set_alignment_hook
Line
Count
Source
1925
496k
{
1926
496k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1927
496k
  asection *real_sec;
1928
1929
496k
  if ((hdr->s_flags & STYP_OVRFLO) == 0)
1930
387k
    return;
1931
1932
109k
  real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
1933
109k
  if (real_sec == NULL)
1934
0
    return;
1935
1936
109k
  real_sec->reloc_count = hdr->s_paddr;
1937
109k
  real_sec->lineno_count = hdr->s_vaddr;
1938
1939
109k
  if (!bfd_section_removed_from_list (abfd, section))
1940
109k
    {
1941
109k
      bfd_section_list_remove (abfd, section);
1942
109k
      --abfd->section_count;
1943
109k
    }
1944
109k
}
coff-rs6000.c:coff_set_alignment_hook
Line
Count
Source
1925
7.85M
{
1926
7.85M
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1927
7.85M
  asection *real_sec;
1928
1929
7.85M
  if ((hdr->s_flags & STYP_OVRFLO) == 0)
1930
6.46M
    return;
1931
1932
1.39M
  real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
1933
1.39M
  if (real_sec == NULL)
1934
0
    return;
1935
1936
1.39M
  real_sec->reloc_count = hdr->s_paddr;
1937
1.39M
  real_sec->lineno_count = hdr->s_vaddr;
1938
1939
1.39M
  if (!bfd_section_removed_from_list (abfd, section))
1940
1.39M
    {
1941
1.39M
      bfd_section_list_remove (abfd, section);
1942
1.39M
      --abfd->section_count;
1943
1.39M
    }
1944
1.39M
}
1945
1946
#else /* ! RS6000COFF_C */
1947
#if defined (COFF_GO32_EXE) || defined (COFF_GO32)
1948
1949
static void
1950
coff_set_alignment_hook (bfd * abfd, asection * section, void * scnhdr)
1951
553k
{
1952
553k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1953
1954
  /* Check for extended relocs.  */
1955
553k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1956
177k
    {
1957
177k
      struct external_reloc dst;
1958
177k
      struct internal_reloc n;
1959
177k
      const file_ptr oldpos = bfd_tell (abfd);
1960
177k
      const bfd_size_type relsz = bfd_coff_relsz (abfd);
1961
1962
177k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1963
0
  return;
1964
177k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1965
148k
  return;
1966
1967
28.9k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1968
28.9k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1969
0
  return;
1970
28.9k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1971
28.9k
      section->rel_filepos += relsz;
1972
28.9k
    }
1973
375k
  else if (hdr->s_nreloc == 0xffff)
1974
6.32k
    _bfd_error_handler
1975
6.32k
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1976
6.32k
       abfd);
1977
553k
}
coff-go32.c:coff_set_alignment_hook
Line
Count
Source
1951
553k
{
1952
553k
  struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
1953
1954
  /* Check for extended relocs.  */
1955
553k
  if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
1956
177k
    {
1957
177k
      struct external_reloc dst;
1958
177k
      struct internal_reloc n;
1959
177k
      const file_ptr oldpos = bfd_tell (abfd);
1960
177k
      const bfd_size_type relsz = bfd_coff_relsz (abfd);
1961
1962
177k
      if (bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0) != 0)
1963
0
  return;
1964
177k
      if (bfd_bread (& dst, relsz, abfd) != relsz)
1965
148k
  return;
1966
1967
28.9k
      bfd_coff_swap_reloc_in (abfd, &dst, &n);
1968
28.9k
      if (bfd_seek (abfd, oldpos, 0) != 0)
1969
0
  return;
1970
28.9k
      section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
1971
28.9k
      section->rel_filepos += relsz;
1972
28.9k
    }
1973
375k
  else if (hdr->s_nreloc == 0xffff)
1974
6.32k
    _bfd_error_handler
1975
6.32k
      (_("%pB: warning: claims to have 0xffff relocs, without overflow"),
1976
6.32k
       abfd);
1977
553k
}
Unexecuted instantiation: coff-stgo32.c:coff_set_alignment_hook
1978
1979
#else /* ! COFF_GO32_EXE && ! COFF_GO32 */
1980
1981
static void
1982
coff_set_alignment_hook (bfd *abfd ATTRIBUTE_UNUSED,
1983
       asection *section ATTRIBUTE_UNUSED,
1984
       void *scnhdr ATTRIBUTE_UNUSED)
1985
12.7M
{
1986
12.7M
}
coff-x86_64.c:coff_set_alignment_hook
Line
Count
Source
1985
4.82M
{
1986
4.82M
}
cf-i386lynx.c:coff_set_alignment_hook
Line
Count
Source
1985
631k
{
1986
631k
}
coff-i386.c:coff_set_alignment_hook
Line
Count
Source
1985
631k
{
1986
631k
}
coff-sh.c:coff_set_alignment_hook
Line
Count
Source
1985
4.19M
{
1986
4.19M
}
coff-tic30.c:coff_set_alignment_hook
Line
Count
Source
1985
2.27M
{
1986
2.27M
}
coff-z8k.c:coff_set_alignment_hook
Line
Count
Source
1985
193k
{
1986
193k
}
1987
1988
#endif /* ! COFF_GO32_EXE && ! COFF_GO32 */
1989
#endif /* ! RS6000COFF_C */
1990
#endif /* ! COFF_WITH_PE */
1991
#endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
1992
1993
#ifndef coff_mkobject
1994
1995
static bool
1996
coff_mkobject (bfd * abfd)
1997
97.5k
{
1998
97.5k
  coff_data_type *coff;
1999
97.5k
  size_t amt = sizeof (coff_data_type);
2000
2001
97.5k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
97.5k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
97.5k
  coff = coff_data (abfd);
2006
97.5k
  coff->symbols = NULL;
2007
97.5k
  coff->conversion_table = NULL;
2008
97.5k
  coff->raw_syments = NULL;
2009
97.5k
  coff->relocbase = 0;
2010
97.5k
  coff->local_toc_sym_map = 0;
2011
2012
97.5k
  bfd_coff_long_section_names (abfd)
2013
97.5k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
97.5k
  return true;
2018
97.5k
}
coff-x86_64.c:coff_mkobject
Line
Count
Source
1997
28.8k
{
1998
28.8k
  coff_data_type *coff;
1999
28.8k
  size_t amt = sizeof (coff_data_type);
2000
2001
28.8k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
28.8k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
28.8k
  coff = coff_data (abfd);
2006
28.8k
  coff->symbols = NULL;
2007
28.8k
  coff->conversion_table = NULL;
2008
28.8k
  coff->raw_syments = NULL;
2009
28.8k
  coff->relocbase = 0;
2010
28.8k
  coff->local_toc_sym_map = 0;
2011
2012
28.8k
  bfd_coff_long_section_names (abfd)
2013
28.8k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
28.8k
  return true;
2018
28.8k
}
cf-i386lynx.c:coff_mkobject
Line
Count
Source
1997
11.4k
{
1998
11.4k
  coff_data_type *coff;
1999
11.4k
  size_t amt = sizeof (coff_data_type);
2000
2001
11.4k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
11.4k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
11.4k
  coff = coff_data (abfd);
2006
11.4k
  coff->symbols = NULL;
2007
11.4k
  coff->conversion_table = NULL;
2008
11.4k
  coff->raw_syments = NULL;
2009
11.4k
  coff->relocbase = 0;
2010
11.4k
  coff->local_toc_sym_map = 0;
2011
2012
11.4k
  bfd_coff_long_section_names (abfd)
2013
11.4k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
11.4k
  return true;
2018
11.4k
}
coff-i386.c:coff_mkobject
Line
Count
Source
1997
11.4k
{
1998
11.4k
  coff_data_type *coff;
1999
11.4k
  size_t amt = sizeof (coff_data_type);
2000
2001
11.4k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
11.4k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
11.4k
  coff = coff_data (abfd);
2006
11.4k
  coff->symbols = NULL;
2007
11.4k
  coff->conversion_table = NULL;
2008
11.4k
  coff->raw_syments = NULL;
2009
11.4k
  coff->relocbase = 0;
2010
11.4k
  coff->local_toc_sym_map = 0;
2011
2012
11.4k
  bfd_coff_long_section_names (abfd)
2013
11.4k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
11.4k
  return true;
2018
11.4k
}
coff-sh.c:coff_mkobject
Line
Count
Source
1997
16.3k
{
1998
16.3k
  coff_data_type *coff;
1999
16.3k
  size_t amt = sizeof (coff_data_type);
2000
2001
16.3k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
16.3k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
16.3k
  coff = coff_data (abfd);
2006
16.3k
  coff->symbols = NULL;
2007
16.3k
  coff->conversion_table = NULL;
2008
16.3k
  coff->raw_syments = NULL;
2009
16.3k
  coff->relocbase = 0;
2010
16.3k
  coff->local_toc_sym_map = 0;
2011
2012
16.3k
  bfd_coff_long_section_names (abfd)
2013
16.3k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
16.3k
  return true;
2018
16.3k
}
coff-tic30.c:coff_mkobject
Line
Count
Source
1997
9.65k
{
1998
9.65k
  coff_data_type *coff;
1999
9.65k
  size_t amt = sizeof (coff_data_type);
2000
2001
9.65k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
9.65k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
9.65k
  coff = coff_data (abfd);
2006
9.65k
  coff->symbols = NULL;
2007
9.65k
  coff->conversion_table = NULL;
2008
9.65k
  coff->raw_syments = NULL;
2009
9.65k
  coff->relocbase = 0;
2010
9.65k
  coff->local_toc_sym_map = 0;
2011
2012
9.65k
  bfd_coff_long_section_names (abfd)
2013
9.65k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
9.65k
  return true;
2018
9.65k
}
Unexecuted instantiation: coff-tic4x.c:coff_mkobject
coff-tic54x.c:coff_mkobject
Line
Count
Source
1997
7.12k
{
1998
7.12k
  coff_data_type *coff;
1999
7.12k
  size_t amt = sizeof (coff_data_type);
2000
2001
7.12k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
7.12k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
7.12k
  coff = coff_data (abfd);
2006
7.12k
  coff->symbols = NULL;
2007
7.12k
  coff->conversion_table = NULL;
2008
7.12k
  coff->raw_syments = NULL;
2009
7.12k
  coff->relocbase = 0;
2010
7.12k
  coff->local_toc_sym_map = 0;
2011
2012
7.12k
  bfd_coff_long_section_names (abfd)
2013
7.12k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
7.12k
  return true;
2018
7.12k
}
coff-z80.c:coff_mkobject
Line
Count
Source
1997
6.52k
{
1998
6.52k
  coff_data_type *coff;
1999
6.52k
  size_t amt = sizeof (coff_data_type);
2000
2001
6.52k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
6.52k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
6.52k
  coff = coff_data (abfd);
2006
6.52k
  coff->symbols = NULL;
2007
6.52k
  coff->conversion_table = NULL;
2008
6.52k
  coff->raw_syments = NULL;
2009
6.52k
  coff->relocbase = 0;
2010
6.52k
  coff->local_toc_sym_map = 0;
2011
2012
6.52k
  bfd_coff_long_section_names (abfd)
2013
6.52k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
6.52k
  return true;
2018
6.52k
}
coff-z8k.c:coff_mkobject
Line
Count
Source
1997
6.24k
{
1998
6.24k
  coff_data_type *coff;
1999
6.24k
  size_t amt = sizeof (coff_data_type);
2000
2001
6.24k
  abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
2002
6.24k
  if (abfd->tdata.coff_obj_data == NULL)
2003
0
    return false;
2004
2005
6.24k
  coff = coff_data (abfd);
2006
6.24k
  coff->symbols = NULL;
2007
6.24k
  coff->conversion_table = NULL;
2008
6.24k
  coff->raw_syments = NULL;
2009
6.24k
  coff->relocbase = 0;
2010
6.24k
  coff->local_toc_sym_map = 0;
2011
2012
6.24k
  bfd_coff_long_section_names (abfd)
2013
6.24k
    = coff_backend_info (abfd)->_bfd_coff_long_section_names;
2014
2015
/*  make_abs_section(abfd);*/
2016
2017
6.24k
  return true;
2018
6.24k
}
2019
#endif
2020
2021
/* Create the COFF backend specific information.  */
2022
2023
#ifndef coff_mkobject_hook
2024
static void *
2025
coff_mkobject_hook (bfd * abfd,
2026
        void * filehdr,
2027
        void * aouthdr ATTRIBUTE_UNUSED)
2028
148k
{
2029
148k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
148k
  coff_data_type *coff;
2031
2032
148k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
148k
  coff = coff_data (abfd);
2036
2037
148k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
148k
  coff->local_n_btmask = N_BTMASK;
2043
148k
  coff->local_n_btshft = N_BTSHFT;
2044
148k
  coff->local_n_tmask = N_TMASK;
2045
148k
  coff->local_n_tshift = N_TSHIFT;
2046
148k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
148k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
148k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
148k
  coff->timestamp = internal_f->f_timdat;
2051
2052
148k
  obj_raw_syment_count (abfd) =
2053
148k
    obj_conv_table_size (abfd) =
2054
148k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
39.4k
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
18.3k
    abfd->flags |= DYNAMIC;
2059
39.4k
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
15.0k
    {
2061
15.0k
      struct internal_aouthdr *internal_a =
2062
15.0k
  (struct internal_aouthdr *) aouthdr;
2063
15.0k
      struct xcoff_tdata *xcoff;
2064
2065
15.0k
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
9.42k
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
15.0k
      xcoff->full_aouthdr = true;
2072
15.0k
      xcoff->toc = internal_a->o_toc;
2073
15.0k
      xcoff->sntoc = internal_a->o_sntoc;
2074
15.0k
      xcoff->snentry = internal_a->o_snentry;
2075
15.0k
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
15.0k
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
15.0k
      xcoff->modtype = internal_a->o_modtype;
2078
15.0k
      xcoff->cputype = internal_a->o_cputype;
2079
15.0k
      xcoff->maxdata = internal_a->o_maxdata;
2080
15.0k
      xcoff->maxstack = internal_a->o_maxstack;
2081
15.0k
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
148k
  return coff;
2098
148k
}
coff-x86_64.c:coff_mkobject_hook
Line
Count
Source
2028
28.8k
{
2029
28.8k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
28.8k
  coff_data_type *coff;
2031
2032
28.8k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
28.8k
  coff = coff_data (abfd);
2036
2037
28.8k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
28.8k
  coff->local_n_btmask = N_BTMASK;
2043
28.8k
  coff->local_n_btshft = N_BTSHFT;
2044
28.8k
  coff->local_n_tmask = N_TMASK;
2045
28.8k
  coff->local_n_tshift = N_TSHIFT;
2046
28.8k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
28.8k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
28.8k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
28.8k
  coff->timestamp = internal_f->f_timdat;
2051
2052
28.8k
  obj_raw_syment_count (abfd) =
2053
28.8k
    obj_conv_table_size (abfd) =
2054
28.8k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
28.8k
  return coff;
2098
28.8k
}
coff64-rs6000.c:coff_mkobject_hook
Line
Count
Source
2028
20.9k
{
2029
20.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
20.9k
  coff_data_type *coff;
2031
2032
20.9k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
20.9k
  coff = coff_data (abfd);
2036
2037
20.9k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
20.9k
  coff->local_n_btmask = N_BTMASK;
2043
20.9k
  coff->local_n_btshft = N_BTSHFT;
2044
20.9k
  coff->local_n_tmask = N_TMASK;
2045
20.9k
  coff->local_n_tshift = N_TSHIFT;
2046
20.9k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
20.9k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
20.9k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
20.9k
  coff->timestamp = internal_f->f_timdat;
2051
2052
20.9k
  obj_raw_syment_count (abfd) =
2053
20.9k
    obj_conv_table_size (abfd) =
2054
20.9k
      internal_f->f_nsyms;
2055
2056
20.9k
#ifdef RS6000COFF_C
2057
20.9k
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
11.6k
    abfd->flags |= DYNAMIC;
2059
20.9k
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
9.42k
    {
2061
9.42k
      struct internal_aouthdr *internal_a =
2062
9.42k
  (struct internal_aouthdr *) aouthdr;
2063
9.42k
      struct xcoff_tdata *xcoff;
2064
2065
9.42k
      xcoff = xcoff_data (abfd);
2066
9.42k
# ifdef U803XTOCMAGIC
2067
9.42k
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
9.42k
      xcoff->full_aouthdr = true;
2072
9.42k
      xcoff->toc = internal_a->o_toc;
2073
9.42k
      xcoff->sntoc = internal_a->o_sntoc;
2074
9.42k
      xcoff->snentry = internal_a->o_snentry;
2075
9.42k
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
9.42k
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
9.42k
      xcoff->modtype = internal_a->o_modtype;
2078
9.42k
      xcoff->cputype = internal_a->o_cputype;
2079
9.42k
      xcoff->maxdata = internal_a->o_maxdata;
2080
9.42k
      xcoff->maxstack = internal_a->o_maxstack;
2081
9.42k
    }
2082
20.9k
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
20.9k
  return coff;
2098
20.9k
}
cf-i386lynx.c:coff_mkobject_hook
Line
Count
Source
2028
11.4k
{
2029
11.4k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
11.4k
  coff_data_type *coff;
2031
2032
11.4k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
11.4k
  coff = coff_data (abfd);
2036
2037
11.4k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
11.4k
  coff->local_n_btmask = N_BTMASK;
2043
11.4k
  coff->local_n_btshft = N_BTSHFT;
2044
11.4k
  coff->local_n_tmask = N_TMASK;
2045
11.4k
  coff->local_n_tshift = N_TSHIFT;
2046
11.4k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
11.4k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
11.4k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
11.4k
  coff->timestamp = internal_f->f_timdat;
2051
2052
11.4k
  obj_raw_syment_count (abfd) =
2053
11.4k
    obj_conv_table_size (abfd) =
2054
11.4k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
11.4k
  return coff;
2098
11.4k
}
coff-go32.c:coff_mkobject_hook
Line
Count
Source
2028
11.4k
{
2029
11.4k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
11.4k
  coff_data_type *coff;
2031
2032
11.4k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
11.4k
  coff = coff_data (abfd);
2036
2037
11.4k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
11.4k
  coff->local_n_btmask = N_BTMASK;
2043
11.4k
  coff->local_n_btshft = N_BTSHFT;
2044
11.4k
  coff->local_n_tmask = N_TMASK;
2045
11.4k
  coff->local_n_tshift = N_TSHIFT;
2046
11.4k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
11.4k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
11.4k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
11.4k
  coff->timestamp = internal_f->f_timdat;
2051
2052
11.4k
  obj_raw_syment_count (abfd) =
2053
11.4k
    obj_conv_table_size (abfd) =
2054
11.4k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
11.4k
  return coff;
2098
11.4k
}
coff-i386.c:coff_mkobject_hook
Line
Count
Source
2028
11.4k
{
2029
11.4k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
11.4k
  coff_data_type *coff;
2031
2032
11.4k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
11.4k
  coff = coff_data (abfd);
2036
2037
11.4k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
11.4k
  coff->local_n_btmask = N_BTMASK;
2043
11.4k
  coff->local_n_btshft = N_BTSHFT;
2044
11.4k
  coff->local_n_tmask = N_TMASK;
2045
11.4k
  coff->local_n_tshift = N_TSHIFT;
2046
11.4k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
11.4k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
11.4k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
11.4k
  coff->timestamp = internal_f->f_timdat;
2051
2052
11.4k
  obj_raw_syment_count (abfd) =
2053
11.4k
    obj_conv_table_size (abfd) =
2054
11.4k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
11.4k
  return coff;
2098
11.4k
}
coff-rs6000.c:coff_mkobject_hook
Line
Count
Source
2028
18.4k
{
2029
18.4k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
18.4k
  coff_data_type *coff;
2031
2032
18.4k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
18.4k
  coff = coff_data (abfd);
2036
2037
18.4k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
18.4k
  coff->local_n_btmask = N_BTMASK;
2043
18.4k
  coff->local_n_btshft = N_BTSHFT;
2044
18.4k
  coff->local_n_tmask = N_TMASK;
2045
18.4k
  coff->local_n_tshift = N_TSHIFT;
2046
18.4k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
18.4k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
18.4k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
18.4k
  coff->timestamp = internal_f->f_timdat;
2051
2052
18.4k
  obj_raw_syment_count (abfd) =
2053
18.4k
    obj_conv_table_size (abfd) =
2054
18.4k
      internal_f->f_nsyms;
2055
2056
18.4k
#ifdef RS6000COFF_C
2057
18.4k
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
6.70k
    abfd->flags |= DYNAMIC;
2059
18.4k
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
5.60k
    {
2061
5.60k
      struct internal_aouthdr *internal_a =
2062
5.60k
  (struct internal_aouthdr *) aouthdr;
2063
5.60k
      struct xcoff_tdata *xcoff;
2064
2065
5.60k
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
5.60k
      xcoff->xcoff64 = 0;
2070
5.60k
# endif
2071
5.60k
      xcoff->full_aouthdr = true;
2072
5.60k
      xcoff->toc = internal_a->o_toc;
2073
5.60k
      xcoff->sntoc = internal_a->o_sntoc;
2074
5.60k
      xcoff->snentry = internal_a->o_snentry;
2075
5.60k
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
5.60k
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
5.60k
      xcoff->modtype = internal_a->o_modtype;
2078
5.60k
      xcoff->cputype = internal_a->o_cputype;
2079
5.60k
      xcoff->maxdata = internal_a->o_maxdata;
2080
5.60k
      xcoff->maxstack = internal_a->o_maxstack;
2081
5.60k
    }
2082
18.4k
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
18.4k
  return coff;
2098
18.4k
}
coff-sh.c:coff_mkobject_hook
Line
Count
Source
2028
16.3k
{
2029
16.3k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
16.3k
  coff_data_type *coff;
2031
2032
16.3k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
16.3k
  coff = coff_data (abfd);
2036
2037
16.3k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
16.3k
  coff->local_n_btmask = N_BTMASK;
2043
16.3k
  coff->local_n_btshft = N_BTSHFT;
2044
16.3k
  coff->local_n_tmask = N_TMASK;
2045
16.3k
  coff->local_n_tshift = N_TSHIFT;
2046
16.3k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
16.3k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
16.3k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
16.3k
  coff->timestamp = internal_f->f_timdat;
2051
2052
16.3k
  obj_raw_syment_count (abfd) =
2053
16.3k
    obj_conv_table_size (abfd) =
2054
16.3k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
16.3k
  return coff;
2098
16.3k
}
Unexecuted instantiation: coff-stgo32.c:coff_mkobject_hook
coff-tic30.c:coff_mkobject_hook
Line
Count
Source
2028
9.65k
{
2029
9.65k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
9.65k
  coff_data_type *coff;
2031
2032
9.65k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
9.65k
  coff = coff_data (abfd);
2036
2037
9.65k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
9.65k
  coff->local_n_btmask = N_BTMASK;
2043
9.65k
  coff->local_n_btshft = N_BTSHFT;
2044
9.65k
  coff->local_n_tmask = N_TMASK;
2045
9.65k
  coff->local_n_tshift = N_TSHIFT;
2046
9.65k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
9.65k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
9.65k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
9.65k
  coff->timestamp = internal_f->f_timdat;
2051
2052
9.65k
  obj_raw_syment_count (abfd) =
2053
9.65k
    obj_conv_table_size (abfd) =
2054
9.65k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
9.65k
  return coff;
2098
9.65k
}
Unexecuted instantiation: coff-tic4x.c:coff_mkobject_hook
coff-tic54x.c:coff_mkobject_hook
Line
Count
Source
2028
7.12k
{
2029
7.12k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
7.12k
  coff_data_type *coff;
2031
2032
7.12k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
7.12k
  coff = coff_data (abfd);
2036
2037
7.12k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
7.12k
  coff->local_n_btmask = N_BTMASK;
2043
7.12k
  coff->local_n_btshft = N_BTSHFT;
2044
7.12k
  coff->local_n_tmask = N_TMASK;
2045
7.12k
  coff->local_n_tshift = N_TSHIFT;
2046
7.12k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
7.12k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
7.12k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
7.12k
  coff->timestamp = internal_f->f_timdat;
2051
2052
7.12k
  obj_raw_syment_count (abfd) =
2053
7.12k
    obj_conv_table_size (abfd) =
2054
7.12k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
7.12k
  return coff;
2098
7.12k
}
coff-z80.c:coff_mkobject_hook
Line
Count
Source
2028
6.52k
{
2029
6.52k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
6.52k
  coff_data_type *coff;
2031
2032
6.52k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
6.52k
  coff = coff_data (abfd);
2036
2037
6.52k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
6.52k
  coff->local_n_btmask = N_BTMASK;
2043
6.52k
  coff->local_n_btshft = N_BTSHFT;
2044
6.52k
  coff->local_n_tmask = N_TMASK;
2045
6.52k
  coff->local_n_tshift = N_TSHIFT;
2046
6.52k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
6.52k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
6.52k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
6.52k
  coff->timestamp = internal_f->f_timdat;
2051
2052
6.52k
  obj_raw_syment_count (abfd) =
2053
6.52k
    obj_conv_table_size (abfd) =
2054
6.52k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
6.52k
  return coff;
2098
6.52k
}
coff-z8k.c:coff_mkobject_hook
Line
Count
Source
2028
6.24k
{
2029
6.24k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2030
6.24k
  coff_data_type *coff;
2031
2032
6.24k
  if (! coff_mkobject (abfd))
2033
0
    return NULL;
2034
2035
6.24k
  coff = coff_data (abfd);
2036
2037
6.24k
  coff->sym_filepos = internal_f->f_symptr;
2038
2039
  /* These members communicate important constants about the symbol
2040
     table to GDB's symbol-reading code.  These `constants'
2041
     unfortunately vary among coff implementations...  */
2042
6.24k
  coff->local_n_btmask = N_BTMASK;
2043
6.24k
  coff->local_n_btshft = N_BTSHFT;
2044
6.24k
  coff->local_n_tmask = N_TMASK;
2045
6.24k
  coff->local_n_tshift = N_TSHIFT;
2046
6.24k
  coff->local_symesz = bfd_coff_symesz (abfd);
2047
6.24k
  coff->local_auxesz = bfd_coff_auxesz (abfd);
2048
6.24k
  coff->local_linesz = bfd_coff_linesz (abfd);
2049
2050
6.24k
  coff->timestamp = internal_f->f_timdat;
2051
2052
6.24k
  obj_raw_syment_count (abfd) =
2053
6.24k
    obj_conv_table_size (abfd) =
2054
6.24k
      internal_f->f_nsyms;
2055
2056
#ifdef RS6000COFF_C
2057
  if ((internal_f->f_flags & F_SHROBJ) != 0)
2058
    abfd->flags |= DYNAMIC;
2059
  if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
2060
    {
2061
      struct internal_aouthdr *internal_a =
2062
  (struct internal_aouthdr *) aouthdr;
2063
      struct xcoff_tdata *xcoff;
2064
2065
      xcoff = xcoff_data (abfd);
2066
# ifdef U803XTOCMAGIC
2067
      xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
2068
# else
2069
      xcoff->xcoff64 = 0;
2070
# endif
2071
      xcoff->full_aouthdr = true;
2072
      xcoff->toc = internal_a->o_toc;
2073
      xcoff->sntoc = internal_a->o_sntoc;
2074
      xcoff->snentry = internal_a->o_snentry;
2075
      bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
2076
      bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
2077
      xcoff->modtype = internal_a->o_modtype;
2078
      xcoff->cputype = internal_a->o_cputype;
2079
      xcoff->maxdata = internal_a->o_maxdata;
2080
      xcoff->maxstack = internal_a->o_maxstack;
2081
    }
2082
#endif
2083
2084
#ifdef ARM
2085
  /* Set the flags field from the COFF header read in.  */
2086
  if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
2087
    coff->flags = 0;
2088
#endif
2089
2090
#ifdef COFF_WITH_PE
2091
  /* FIXME: I'm not sure this is ever executed, since peicode.h
2092
     defines coff_mkobject_hook.  */
2093
  if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
2094
    abfd->flags |= HAS_DEBUG;
2095
#endif
2096
2097
6.24k
  return coff;
2098
6.24k
}
2099
#endif
2100
2101
/* Determine the machine architecture and type.  FIXME: This is target
2102
   dependent because the magic numbers are defined in the target
2103
   dependent header files.  But there is no particular need for this.
2104
   If the magic numbers were moved to a separate file, this function
2105
   would be target independent and would also be much more successful
2106
   at linking together COFF files for different architectures.  */
2107
2108
static bool
2109
coff_set_arch_mach_hook (bfd *abfd, void * filehdr)
2110
410k
{
2111
410k
  unsigned long machine;
2112
410k
  enum bfd_architecture arch;
2113
410k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
410k
  machine = 0;
2117
410k
  switch (internal_f->f_magic)
2118
410k
    {
2119
#ifdef I386MAGIC
2120
64.6k
    case I386MAGIC:
2121
64.9k
    case I386PTXMAGIC:
2122
65.2k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
65.5k
    case LYNXCOFFMAGIC:
2124
65.7k
    case I386_APPLE_MAGIC:
2125
65.7k
    case I386_FREEBSD_MAGIC:
2126
65.7k
    case I386_LINUX_MAGIC:
2127
65.7k
    case I386_NETBSD_MAGIC:
2128
65.7k
      arch = bfd_arch_i386;
2129
65.7k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
1.97k
    case AMD64MAGIC:
2133
92.2k
    case AMD64_APPLE_MAGIC:
2134
92.2k
    case AMD64_FREEBSD_MAGIC:
2135
92.2k
    case AMD64_LINUX_MAGIC:
2136
92.2k
    case AMD64_NETBSD_MAGIC:
2137
92.2k
      arch = bfd_arch_i386;
2138
92.2k
      machine = bfd_mach_x86_64;
2139
92.2k
      break;
2140
0
#endif
2141
#ifdef IA64MAGIC
2142
19.1k
    case IA64MAGIC:
2143
19.1k
      arch = bfd_arch_ia64;
2144
19.1k
      break;
2145
0
#endif
2146
#ifdef ARMMAGIC
2147
26.6k
    case ARMMAGIC:
2148
28.9k
    case ARMPEMAGIC:
2149
43.8k
    case THUMBPEMAGIC:
2150
43.8k
      arch = bfd_arch_arm;
2151
43.8k
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
43.8k
      if (machine == bfd_mach_arm_unknown)
2153
43.8k
  {
2154
43.8k
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
43.8k
      {
2156
2.37k
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
743
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
2.59k
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
29.6k
      default:
2160
29.6k
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
1.86k
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
2.59k
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
3.99k
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
43.8k
      }
2170
43.8k
  }
2171
43.8k
      break;
2172
43.8k
#endif
2173
#ifdef AARCH64MAGIC
2174
28.6k
    case AARCH64MAGIC:
2175
28.6k
      arch = bfd_arch_aarch64;
2176
28.6k
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
28.6k
      break;
2178
0
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
16.3k
    case LOONGARCH64MAGIC:
2181
16.3k
      arch = bfd_arch_loongarch;
2182
16.3k
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
16.3k
      break;
2184
0
#endif
2185
#ifdef Z80MAGIC
2186
6.52k
    case Z80MAGIC:
2187
6.52k
      arch = bfd_arch_z80;
2188
6.52k
      switch (internal_f->f_flags & F_MACHMASK)
2189
6.52k
  {
2190
202
  case bfd_mach_z80strict << 12:
2191
3.02k
  case bfd_mach_z80 << 12:
2192
3.93k
  case bfd_mach_z80n << 12:
2193
4.47k
  case bfd_mach_z80full << 12:
2194
5.73k
  case bfd_mach_r800 << 12:
2195
6.07k
  case bfd_mach_gbz80 << 12:
2196
6.07k
  case bfd_mach_z180 << 12:
2197
6.18k
  case bfd_mach_ez80_z80 << 12:
2198
6.41k
  case bfd_mach_ez80_adl << 12:
2199
6.41k
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
6.41k
    break;
2201
104
  default:
2202
104
    return false;
2203
6.52k
  }
2204
6.41k
      break;
2205
6.41k
#endif
2206
#ifdef Z8KMAGIC
2207
6.12k
    case Z8KMAGIC:
2208
6.12k
      arch = bfd_arch_z8k;
2209
6.12k
      switch (internal_f->f_flags & F_MACHMASK)
2210
6.12k
  {
2211
1.02k
  case F_Z8001:
2212
1.02k
    machine = bfd_mach_z8001;
2213
1.02k
    break;
2214
4.99k
  case F_Z8002:
2215
4.99k
    machine = bfd_mach_z8002;
2216
4.99k
    break;
2217
106
  default:
2218
106
    return false;
2219
6.12k
  }
2220
6.01k
      break;
2221
6.01k
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
20.5k
    case U64_TOCMAGIC:
2226
20.7k
    case U803XTOCMAGIC:
2227
#else
2228
8.64k
    case U802ROMAGIC:
2229
10.5k
    case U802WRMAGIC:
2230
18.2k
    case U802TOCMAGIC:
2231
#endif
2232
18.2k
      {
2233
18.2k
  int cputype;
2234
2235
38.9k
  if (xcoff_data (abfd)->cputype != -1)
2236
15.0k
    cputype = xcoff_data (abfd)->cputype & 0xff;
2237
23.9k
  else
2238
23.9k
    {
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
23.9k
      if (obj_raw_syment_count (abfd) == 0)
2244
9.53k
        cputype = 0;
2245
14.4k
      else
2246
14.4k
        {
2247
14.4k
    bfd_byte *buf;
2248
14.4k
    struct internal_syment sym;
2249
14.4k
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
14.4k
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
106
      return false;
2253
14.3k
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
14.3k
    if (buf == NULL)
2255
216
      return false;
2256
14.1k
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
14.1k
    if (sym.n_sclass == C_FILE)
2258
435
      cputype = sym.n_type & 0xff;
2259
13.6k
    else
2260
13.6k
      cputype = 0;
2261
14.1k
    free (buf);
2262
14.1k
        }
2263
23.9k
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
38.6k
  switch (cputype)
2267
38.6k
    {
2268
8.04k
    default:
2269
34.1k
    case 0:
2270
34.1k
      arch = bfd_xcoff_architecture (abfd);
2271
34.1k
      machine = bfd_xcoff_machine (abfd);
2272
34.1k
      break;
2273
2274
1.51k
    case 1:
2275
1.51k
      arch = bfd_arch_powerpc;
2276
1.51k
      machine = bfd_mach_ppc_601;
2277
1.51k
      break;
2278
572
    case 2: /* 64 bit PowerPC */
2279
572
      arch = bfd_arch_powerpc;
2280
572
      machine = bfd_mach_ppc_620;
2281
572
      break;
2282
669
    case 3:
2283
669
      arch = bfd_arch_powerpc;
2284
669
      machine = bfd_mach_ppc;
2285
669
      break;
2286
1.72k
    case 4:
2287
1.72k
      arch = bfd_arch_rs6000;
2288
1.72k
      machine = bfd_mach_rs6k;
2289
1.72k
      break;
2290
38.6k
    }
2291
38.6k
      }
2292
38.6k
      break;
2293
38.6k
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
27.4k
    case SH_ARCH_MAGIC_BIG:
2297
27.6k
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
23.3k
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
23.3k
      arch = bfd_arch_sh;
2302
23.3k
      break;
2303
0
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
9.55k
    case TIC30MAGIC:
2322
9.55k
      arch = bfd_arch_tic30;
2323
9.55k
      break;
2324
0
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
4.80k
    case TICOFF0MAGIC:
2330
4.80k
      arch = TICOFF_TARGET_ARCH;
2331
4.80k
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
4.80k
      break;
2333
0
#endif
2334
0
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
2.11k
    case TICOFF1MAGIC:
2340
2.11k
    case TICOFF2MAGIC:
2341
2.11k
      switch (internal_f->f_target_id)
2342
2.11k
  {
2343
0
#ifdef TI_TARGET_ID
2344
2.11k
  case TI_TARGET_ID:
2345
2.11k
    arch = TICOFF_TARGET_ARCH;
2346
2.11k
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
2.11k
    break;
2348
0
#endif
2349
0
  default:
2350
0
    arch = bfd_arch_obscure;
2351
0
    _bfd_error_handler
2352
0
      (_("unrecognized TI COFF target id '0x%x'"),
2353
0
       internal_f->f_target_id);
2354
0
    break;
2355
2.11k
  }
2356
2.11k
      break;
2357
2.11k
#endif
2358
2359
#ifdef MCOREMAGIC
2360
33.7k
    case MCOREMAGIC:
2361
33.7k
      arch = bfd_arch_mcore;
2362
33.7k
      break;
2363
0
#endif
2364
2365
3.52k
    default:      /* Unreadable input file type.  */
2366
3.52k
      arch = bfd_arch_obscure;
2367
3.52k
      break;
2368
410k
    }
2369
2370
409k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
409k
  return true;
2372
410k
}
pei-i386.c:coff_set_arch_mach_hook
Line
Count
Source
2110
20.0k
{
2111
20.0k
  unsigned long machine;
2112
20.0k
  enum bfd_architecture arch;
2113
20.0k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
20.0k
  machine = 0;
2117
20.0k
  switch (internal_f->f_magic)
2118
20.0k
    {
2119
0
#ifdef I386MAGIC
2120
19.3k
    case I386MAGIC:
2121
19.6k
    case I386PTXMAGIC:
2122
19.8k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
20.0k
    case LYNXCOFFMAGIC:
2124
20.0k
    case I386_APPLE_MAGIC:
2125
20.0k
    case I386_FREEBSD_MAGIC:
2126
20.0k
    case I386_LINUX_MAGIC:
2127
20.0k
    case I386_NETBSD_MAGIC:
2128
20.0k
      arch = bfd_arch_i386;
2129
20.0k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
20.0k
    }
2369
2370
20.0k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
20.0k
  return true;
2372
20.0k
}
pe-x86_64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
36.9k
{
2111
36.9k
  unsigned long machine;
2112
36.9k
  enum bfd_architecture arch;
2113
36.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
36.9k
  machine = 0;
2117
36.9k
  switch (internal_f->f_magic)
2118
36.9k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
0
#ifdef AMD64MAGIC
2132
471
    case AMD64MAGIC:
2133
36.9k
    case AMD64_APPLE_MAGIC:
2134
36.9k
    case AMD64_FREEBSD_MAGIC:
2135
36.9k
    case AMD64_LINUX_MAGIC:
2136
36.9k
    case AMD64_NETBSD_MAGIC:
2137
36.9k
      arch = bfd_arch_i386;
2138
36.9k
      machine = bfd_mach_x86_64;
2139
36.9k
      break;
2140
0
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
36.9k
    }
2369
2370
36.9k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
36.9k
  return true;
2372
36.9k
}
pei-x86_64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
26.5k
{
2111
26.5k
  unsigned long machine;
2112
26.5k
  enum bfd_architecture arch;
2113
26.5k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
26.5k
  machine = 0;
2117
26.5k
  switch (internal_f->f_magic)
2118
26.5k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
0
#ifdef AMD64MAGIC
2132
1.26k
    case AMD64MAGIC:
2133
26.5k
    case AMD64_APPLE_MAGIC:
2134
26.5k
    case AMD64_FREEBSD_MAGIC:
2135
26.5k
    case AMD64_LINUX_MAGIC:
2136
26.5k
    case AMD64_NETBSD_MAGIC:
2137
26.5k
      arch = bfd_arch_i386;
2138
26.5k
      machine = bfd_mach_x86_64;
2139
26.5k
      break;
2140
0
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
26.5k
    }
2369
2370
26.5k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
26.5k
  return true;
2372
26.5k
}
coff-x86_64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
28.7k
{
2111
28.7k
  unsigned long machine;
2112
28.7k
  enum bfd_architecture arch;
2113
28.7k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
28.7k
  machine = 0;
2117
28.7k
  switch (internal_f->f_magic)
2118
28.7k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
0
#ifdef AMD64MAGIC
2132
236
    case AMD64MAGIC:
2133
28.7k
    case AMD64_APPLE_MAGIC:
2134
28.7k
    case AMD64_FREEBSD_MAGIC:
2135
28.7k
    case AMD64_LINUX_MAGIC:
2136
28.7k
    case AMD64_NETBSD_MAGIC:
2137
28.7k
      arch = bfd_arch_i386;
2138
28.7k
      machine = bfd_mach_x86_64;
2139
28.7k
      break;
2140
0
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
28.7k
    }
2369
2370
28.7k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
28.7k
  return true;
2372
28.7k
}
coff64-rs6000.c:coff_set_arch_mach_hook
Line
Count
Source
2110
20.7k
{
2111
20.7k
  unsigned long machine;
2112
20.7k
  enum bfd_architecture arch;
2113
20.7k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
20.7k
  machine = 0;
2117
20.7k
  switch (internal_f->f_magic)
2118
20.7k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
0
#ifdef RS6000COFF_C
2224
0
#ifdef XCOFF64
2225
20.5k
    case U64_TOCMAGIC:
2226
20.7k
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
2232
20.7k
      {
2233
20.7k
  int cputype;
2234
2235
20.7k
  if (xcoff_data (abfd)->cputype != -1)
2236
9.42k
    cputype = xcoff_data (abfd)->cputype & 0xff;
2237
11.3k
  else
2238
11.3k
    {
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
11.3k
      if (obj_raw_syment_count (abfd) == 0)
2244
3.93k
        cputype = 0;
2245
7.39k
      else
2246
7.39k
        {
2247
7.39k
    bfd_byte *buf;
2248
7.39k
    struct internal_syment sym;
2249
7.39k
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
7.39k
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
106
      return false;
2253
7.28k
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
7.28k
    if (buf == NULL)
2255
106
      return false;
2256
7.18k
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
7.18k
    if (sym.n_sclass == C_FILE)
2258
101
      cputype = sym.n_type & 0xff;
2259
7.08k
    else
2260
7.08k
      cputype = 0;
2261
7.18k
    free (buf);
2262
7.18k
        }
2263
11.3k
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
20.5k
  switch (cputype)
2267
20.5k
    {
2268
4.98k
    default:
2269
18.6k
    case 0:
2270
18.6k
      arch = bfd_xcoff_architecture (abfd);
2271
18.6k
      machine = bfd_xcoff_machine (abfd);
2272
18.6k
      break;
2273
2274
366
    case 1:
2275
366
      arch = bfd_arch_powerpc;
2276
366
      machine = bfd_mach_ppc_601;
2277
366
      break;
2278
335
    case 2: /* 64 bit PowerPC */
2279
335
      arch = bfd_arch_powerpc;
2280
335
      machine = bfd_mach_ppc_620;
2281
335
      break;
2282
435
    case 3:
2283
435
      arch = bfd_arch_powerpc;
2284
435
      machine = bfd_mach_ppc;
2285
435
      break;
2286
722
    case 4:
2287
722
      arch = bfd_arch_rs6000;
2288
722
      machine = bfd_mach_rs6k;
2289
722
      break;
2290
20.5k
    }
2291
20.5k
      }
2292
20.5k
      break;
2293
20.5k
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
20.5k
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
20.7k
    }
2369
2370
20.5k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
20.5k
  return true;
2372
20.7k
}
pei-aarch64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
21.5k
{
2111
21.5k
  unsigned long machine;
2112
21.5k
  enum bfd_architecture arch;
2113
21.5k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
21.5k
  machine = 0;
2117
21.5k
  switch (internal_f->f_magic)
2118
21.5k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
0
#ifdef AARCH64MAGIC
2174
21.5k
    case AARCH64MAGIC:
2175
21.5k
      arch = bfd_arch_aarch64;
2176
21.5k
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
21.5k
      break;
2178
0
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
21.5k
    }
2369
2370
21.5k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
21.5k
  return true;
2372
21.5k
}
pe-aarch64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
7.10k
{
2111
7.10k
  unsigned long machine;
2112
7.10k
  enum bfd_architecture arch;
2113
7.10k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
7.10k
  machine = 0;
2117
7.10k
  switch (internal_f->f_magic)
2118
7.10k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
0
#ifdef AARCH64MAGIC
2174
7.10k
    case AARCH64MAGIC:
2175
7.10k
      arch = bfd_arch_aarch64;
2176
7.10k
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
7.10k
      break;
2178
0
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
7.10k
    }
2369
2370
7.10k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
7.10k
  return true;
2372
7.10k
}
pei-ia64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
19.1k
{
2111
19.1k
  unsigned long machine;
2112
19.1k
  enum bfd_architecture arch;
2113
19.1k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
19.1k
  machine = 0;
2117
19.1k
  switch (internal_f->f_magic)
2118
19.1k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
0
#ifdef IA64MAGIC
2142
19.1k
    case IA64MAGIC:
2143
19.1k
      arch = bfd_arch_ia64;
2144
19.1k
      break;
2145
0
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
19.1k
    }
2369
2370
19.1k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
19.1k
  return true;
2372
19.1k
}
pei-loongarch64.c:coff_set_arch_mach_hook
Line
Count
Source
2110
16.3k
{
2111
16.3k
  unsigned long machine;
2112
16.3k
  enum bfd_architecture arch;
2113
16.3k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
16.3k
  machine = 0;
2117
16.3k
  switch (internal_f->f_magic)
2118
16.3k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
0
#ifdef LOONGARCH64MAGIC
2180
16.3k
    case LOONGARCH64MAGIC:
2181
16.3k
      arch = bfd_arch_loongarch;
2182
16.3k
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
16.3k
      break;
2184
0
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
16.3k
    }
2369
2370
16.3k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
16.3k
  return true;
2372
16.3k
}
cf-i386lynx.c:coff_set_arch_mach_hook
Line
Count
Source
2110
10.9k
{
2111
10.9k
  unsigned long machine;
2112
10.9k
  enum bfd_architecture arch;
2113
10.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
10.9k
  machine = 0;
2117
10.9k
  switch (internal_f->f_magic)
2118
10.9k
    {
2119
0
#ifdef I386MAGIC
2120
10.8k
    case I386MAGIC:
2121
10.8k
    case I386PTXMAGIC:
2122
10.8k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
10.9k
    case LYNXCOFFMAGIC:
2124
10.9k
    case I386_APPLE_MAGIC:
2125
10.9k
    case I386_FREEBSD_MAGIC:
2126
10.9k
    case I386_LINUX_MAGIC:
2127
10.9k
    case I386_NETBSD_MAGIC:
2128
10.9k
      arch = bfd_arch_i386;
2129
10.9k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
10.9k
    }
2369
2370
10.9k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
10.9k
  return true;
2372
10.9k
}
coff-go32.c:coff_set_arch_mach_hook
Line
Count
Source
2110
10.9k
{
2111
10.9k
  unsigned long machine;
2112
10.9k
  enum bfd_architecture arch;
2113
10.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
10.9k
  machine = 0;
2117
10.9k
  switch (internal_f->f_magic)
2118
10.9k
    {
2119
0
#ifdef I386MAGIC
2120
10.8k
    case I386MAGIC:
2121
10.8k
    case I386PTXMAGIC:
2122
10.8k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
10.9k
    case LYNXCOFFMAGIC:
2124
10.9k
    case I386_APPLE_MAGIC:
2125
10.9k
    case I386_FREEBSD_MAGIC:
2126
10.9k
    case I386_LINUX_MAGIC:
2127
10.9k
    case I386_NETBSD_MAGIC:
2128
10.9k
      arch = bfd_arch_i386;
2129
10.9k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
10.9k
    }
2369
2370
10.9k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
10.9k
  return true;
2372
10.9k
}
coff-i386.c:coff_set_arch_mach_hook
Line
Count
Source
2110
10.9k
{
2111
10.9k
  unsigned long machine;
2112
10.9k
  enum bfd_architecture arch;
2113
10.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
10.9k
  machine = 0;
2117
10.9k
  switch (internal_f->f_magic)
2118
10.9k
    {
2119
0
#ifdef I386MAGIC
2120
10.8k
    case I386MAGIC:
2121
10.8k
    case I386PTXMAGIC:
2122
10.8k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
10.9k
    case LYNXCOFFMAGIC:
2124
10.9k
    case I386_APPLE_MAGIC:
2125
10.9k
    case I386_FREEBSD_MAGIC:
2126
10.9k
    case I386_LINUX_MAGIC:
2127
10.9k
    case I386_NETBSD_MAGIC:
2128
10.9k
      arch = bfd_arch_i386;
2129
10.9k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
10.9k
    }
2369
2370
10.9k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
10.9k
  return true;
2372
10.9k
}
coff-rs6000.c:coff_set_arch_mach_hook
Line
Count
Source
2110
18.2k
{
2111
18.2k
  unsigned long machine;
2112
18.2k
  enum bfd_architecture arch;
2113
18.2k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
18.2k
  machine = 0;
2117
18.2k
  switch (internal_f->f_magic)
2118
18.2k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
0
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
8.64k
    case U802ROMAGIC:
2229
10.5k
    case U802WRMAGIC:
2230
18.2k
    case U802TOCMAGIC:
2231
18.2k
#endif
2232
18.2k
      {
2233
18.2k
  int cputype;
2234
2235
18.2k
  if (xcoff_data (abfd)->cputype != -1)
2236
5.60k
    cputype = xcoff_data (abfd)->cputype & 0xff;
2237
12.6k
  else
2238
12.6k
    {
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
12.6k
      if (obj_raw_syment_count (abfd) == 0)
2244
5.60k
        cputype = 0;
2245
7.03k
      else
2246
7.03k
        {
2247
7.03k
    bfd_byte *buf;
2248
7.03k
    struct internal_syment sym;
2249
7.03k
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
7.03k
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
0
      return false;
2253
7.03k
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
7.03k
    if (buf == NULL)
2255
110
      return false;
2256
6.92k
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
6.92k
    if (sym.n_sclass == C_FILE)
2258
334
      cputype = sym.n_type & 0xff;
2259
6.59k
    else
2260
6.59k
      cputype = 0;
2261
6.92k
    free (buf);
2262
6.92k
        }
2263
12.6k
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
18.1k
  switch (cputype)
2267
18.1k
    {
2268
3.06k
    default:
2269
15.5k
    case 0:
2270
15.5k
      arch = bfd_xcoff_architecture (abfd);
2271
15.5k
      machine = bfd_xcoff_machine (abfd);
2272
15.5k
      break;
2273
2274
1.14k
    case 1:
2275
1.14k
      arch = bfd_arch_powerpc;
2276
1.14k
      machine = bfd_mach_ppc_601;
2277
1.14k
      break;
2278
237
    case 2: /* 64 bit PowerPC */
2279
237
      arch = bfd_arch_powerpc;
2280
237
      machine = bfd_mach_ppc_620;
2281
237
      break;
2282
234
    case 3:
2283
234
      arch = bfd_arch_powerpc;
2284
234
      machine = bfd_mach_ppc;
2285
234
      break;
2286
1.00k
    case 4:
2287
1.00k
      arch = bfd_arch_rs6000;
2288
1.00k
      machine = bfd_mach_rs6k;
2289
1.00k
      break;
2290
18.1k
    }
2291
18.1k
      }
2292
18.1k
      break;
2293
18.1k
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
18.1k
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
18.2k
    }
2369
2370
18.1k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
18.1k
  return true;
2372
18.2k
}
coff-sh.c:coff_set_arch_mach_hook
Line
Count
Source
2110
15.4k
{
2111
15.4k
  unsigned long machine;
2112
15.4k
  enum bfd_architecture arch;
2113
15.4k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
15.4k
  machine = 0;
2117
15.4k
  switch (internal_f->f_magic)
2118
15.4k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
0
#ifdef SH_ARCH_MAGIC_BIG
2296
15.2k
    case SH_ARCH_MAGIC_BIG:
2297
15.4k
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
15.4k
      arch = bfd_arch_sh;
2302
15.4k
      break;
2303
0
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
2
    default:      /* Unreadable input file type.  */
2366
2
      arch = bfd_arch_obscure;
2367
2
      break;
2368
15.4k
    }
2369
2370
15.4k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
15.4k
  return true;
2372
15.4k
}
Unexecuted instantiation: coff-stgo32.c:coff_set_arch_mach_hook
coff-tic30.c:coff_set_arch_mach_hook
Line
Count
Source
2110
9.55k
{
2111
9.55k
  unsigned long machine;
2112
9.55k
  enum bfd_architecture arch;
2113
9.55k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
9.55k
  machine = 0;
2117
9.55k
  switch (internal_f->f_magic)
2118
9.55k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
0
#ifdef TIC30MAGIC
2321
9.55k
    case TIC30MAGIC:
2322
9.55k
      arch = bfd_arch_tic30;
2323
9.55k
      break;
2324
0
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
9.55k
    }
2369
2370
9.55k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
9.55k
  return true;
2372
9.55k
}
Unexecuted instantiation: coff-tic4x.c:coff_set_arch_mach_hook
coff-tic54x.c:coff_set_arch_mach_hook
Line
Count
Source
2110
6.91k
{
2111
6.91k
  unsigned long machine;
2112
6.91k
  enum bfd_architecture arch;
2113
6.91k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
6.91k
  machine = 0;
2117
6.91k
  switch (internal_f->f_magic)
2118
6.91k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
0
#ifdef TICOFF0MAGIC
2327
0
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
4.80k
    case TICOFF0MAGIC:
2330
4.80k
      arch = TICOFF_TARGET_ARCH;
2331
4.80k
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
4.80k
      break;
2333
0
#endif
2334
0
#endif
2335
2336
0
#ifdef TICOFF1MAGIC
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.  */
2339
2.11k
    case TICOFF1MAGIC:
2340
2.11k
    case TICOFF2MAGIC:
2341
2.11k
      switch (internal_f->f_target_id)
2342
2.11k
  {
2343
0
#ifdef TI_TARGET_ID
2344
2.11k
  case TI_TARGET_ID:
2345
2.11k
    arch = TICOFF_TARGET_ARCH;
2346
2.11k
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
2.11k
    break;
2348
0
#endif
2349
0
  default:
2350
0
    arch = bfd_arch_obscure;
2351
0
    _bfd_error_handler
2352
0
      (_("unrecognized TI COFF target id '0x%x'"),
2353
0
       internal_f->f_target_id);
2354
0
    break;
2355
2.11k
  }
2356
2.11k
      break;
2357
2.11k
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
2.11k
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
6.91k
    }
2369
2370
6.91k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
6.91k
  return true;
2372
6.91k
}
coff-z80.c:coff_set_arch_mach_hook
Line
Count
Source
2110
6.52k
{
2111
6.52k
  unsigned long machine;
2112
6.52k
  enum bfd_architecture arch;
2113
6.52k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
6.52k
  machine = 0;
2117
6.52k
  switch (internal_f->f_magic)
2118
6.52k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
0
#ifdef Z80MAGIC
2186
6.52k
    case Z80MAGIC:
2187
6.52k
      arch = bfd_arch_z80;
2188
6.52k
      switch (internal_f->f_flags & F_MACHMASK)
2189
6.52k
  {
2190
202
  case bfd_mach_z80strict << 12:
2191
3.02k
  case bfd_mach_z80 << 12:
2192
3.93k
  case bfd_mach_z80n << 12:
2193
4.47k
  case bfd_mach_z80full << 12:
2194
5.73k
  case bfd_mach_r800 << 12:
2195
6.07k
  case bfd_mach_gbz80 << 12:
2196
6.07k
  case bfd_mach_z180 << 12:
2197
6.18k
  case bfd_mach_ez80_z80 << 12:
2198
6.41k
  case bfd_mach_ez80_adl << 12:
2199
6.41k
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
6.41k
    break;
2201
104
  default:
2202
104
    return false;
2203
6.52k
  }
2204
6.41k
      break;
2205
6.41k
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
6.41k
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
6.52k
    }
2369
2370
6.41k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
6.41k
  return true;
2372
6.52k
}
coff-z8k.c:coff_set_arch_mach_hook
Line
Count
Source
2110
6.12k
{
2111
6.12k
  unsigned long machine;
2112
6.12k
  enum bfd_architecture arch;
2113
6.12k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
6.12k
  machine = 0;
2117
6.12k
  switch (internal_f->f_magic)
2118
6.12k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
2206
0
#ifdef Z8KMAGIC
2207
6.12k
    case Z8KMAGIC:
2208
6.12k
      arch = bfd_arch_z8k;
2209
6.12k
      switch (internal_f->f_flags & F_MACHMASK)
2210
6.12k
  {
2211
1.02k
  case F_Z8001:
2212
1.02k
    machine = bfd_mach_z8001;
2213
1.02k
    break;
2214
4.99k
  case F_Z8002:
2215
4.99k
    machine = bfd_mach_z8002;
2216
4.99k
    break;
2217
106
  default:
2218
106
    return false;
2219
6.12k
  }
2220
6.01k
      break;
2221
6.01k
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
6.01k
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
6.12k
    }
2369
2370
6.01k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
6.01k
  return true;
2372
6.12k
}
pe-arm-wince.c:coff_set_arch_mach_hook
Line
Count
Source
2110
3.46k
{
2111
3.46k
  unsigned long machine;
2112
3.46k
  enum bfd_architecture arch;
2113
3.46k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
3.46k
  machine = 0;
2117
3.46k
  switch (internal_f->f_magic)
2118
3.46k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
0
#ifdef ARMMAGIC
2147
3.24k
    case ARMMAGIC:
2148
3.34k
    case ARMPEMAGIC:
2149
3.45k
    case THUMBPEMAGIC:
2150
3.45k
      arch = bfd_arch_arm;
2151
3.45k
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
3.45k
      if (machine == bfd_mach_arm_unknown)
2153
3.45k
  {
2154
3.45k
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
3.45k
      {
2156
125
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
117
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
713
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
2.15k
      default:
2160
2.16k
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
112
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
107
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
123
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
3.45k
      }
2170
3.45k
  }
2171
3.45k
      break;
2172
3.45k
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
3.45k
    default:      /* Unreadable input file type.  */
2366
4
      arch = bfd_arch_obscure;
2367
4
      break;
2368
3.46k
    }
2369
2370
3.46k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
3.46k
  return true;
2372
3.46k
}
pe-arm.c:coff_set_arch_mach_hook
Line
Count
Source
2110
3.46k
{
2111
3.46k
  unsigned long machine;
2112
3.46k
  enum bfd_architecture arch;
2113
3.46k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
3.46k
  machine = 0;
2117
3.46k
  switch (internal_f->f_magic)
2118
3.46k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
0
#ifdef ARMMAGIC
2147
3.24k
    case ARMMAGIC:
2148
3.34k
    case ARMPEMAGIC:
2149
3.45k
    case THUMBPEMAGIC:
2150
3.45k
      arch = bfd_arch_arm;
2151
3.45k
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
3.45k
      if (machine == bfd_mach_arm_unknown)
2153
3.45k
  {
2154
3.45k
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
3.45k
      {
2156
125
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
117
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
713
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
2.15k
      default:
2160
2.16k
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
112
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
107
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
123
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
3.45k
      }
2170
3.45k
  }
2171
3.45k
      break;
2172
3.45k
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
3.45k
    default:      /* Unreadable input file type.  */
2366
4
      arch = bfd_arch_obscure;
2367
4
      break;
2368
3.46k
    }
2369
2370
3.46k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
3.46k
  return true;
2372
3.46k
}
pe-i386.c:coff_set_arch_mach_hook
Line
Count
Source
2110
13.0k
{
2111
13.0k
  unsigned long machine;
2112
13.0k
  enum bfd_architecture arch;
2113
13.0k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
13.0k
  machine = 0;
2117
13.0k
  switch (internal_f->f_magic)
2118
13.0k
    {
2119
0
#ifdef I386MAGIC
2120
12.7k
    case I386MAGIC:
2121
12.7k
    case I386PTXMAGIC:
2122
12.7k
    case I386AIXMAGIC:   /* Danbury PS/2 AIX C Compiler.  */
2123
12.8k
    case LYNXCOFFMAGIC:
2124
13.0k
    case I386_APPLE_MAGIC:
2125
13.0k
    case I386_FREEBSD_MAGIC:
2126
13.0k
    case I386_LINUX_MAGIC:
2127
13.0k
    case I386_NETBSD_MAGIC:
2128
13.0k
      arch = bfd_arch_i386;
2129
13.0k
      break;
2130
0
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
13.0k
    }
2369
2370
13.0k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
13.0k
  return true;
2372
13.0k
}
pe-mcore.c:coff_set_arch_mach_hook
Line
Count
Source
2110
9.07k
{
2111
9.07k
  unsigned long machine;
2112
9.07k
  enum bfd_architecture arch;
2113
9.07k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
9.07k
  machine = 0;
2117
9.07k
  switch (internal_f->f_magic)
2118
9.07k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
0
#ifdef MCOREMAGIC
2360
9.07k
    case MCOREMAGIC:
2361
9.07k
      arch = bfd_arch_mcore;
2362
9.07k
      break;
2363
0
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
9.07k
    }
2369
2370
9.07k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
9.07k
  return true;
2372
9.07k
}
pe-sh.c:coff_set_arch_mach_hook
Line
Count
Source
2110
8.36k
{
2111
8.36k
  unsigned long machine;
2112
8.36k
  enum bfd_architecture arch;
2113
8.36k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
8.36k
  machine = 0;
2117
8.36k
  switch (internal_f->f_magic)
2118
8.36k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
0
#ifdef SH_ARCH_MAGIC_BIG
2296
8.35k
    case SH_ARCH_MAGIC_BIG:
2297
8.36k
    case SH_ARCH_MAGIC_LITTLE:
2298
8.36k
#ifdef COFF_WITH_PE
2299
8.36k
    case SH_ARCH_MAGIC_WINCE:
2300
8.36k
#endif
2301
8.36k
      arch = bfd_arch_sh;
2302
8.36k
      break;
2303
0
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
8.36k
    }
2369
2370
8.36k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
8.36k
  return true;
2372
8.36k
}
pei-arm-wince.c:coff_set_arch_mach_hook
Line
Count
Source
2110
14.5k
{
2111
14.5k
  unsigned long machine;
2112
14.5k
  enum bfd_architecture arch;
2113
14.5k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
14.5k
  machine = 0;
2117
14.5k
  switch (internal_f->f_magic)
2118
14.5k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
0
#ifdef ARMMAGIC
2147
8.73k
    case ARMMAGIC:
2148
8.84k
    case ARMPEMAGIC:
2149
13.8k
    case THUMBPEMAGIC:
2150
13.8k
      arch = bfd_arch_arm;
2151
13.8k
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
13.8k
      if (machine == bfd_mach_arm_unknown)
2153
13.8k
  {
2154
13.8k
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
13.8k
      {
2156
588
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
137
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
586
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
8.57k
      default:
2160
8.58k
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
818
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
1.42k
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
1.75k
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
13.8k
      }
2170
13.8k
  }
2171
13.8k
      break;
2172
13.8k
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
13.8k
    default:      /* Unreadable input file type.  */
2366
677
      arch = bfd_arch_obscure;
2367
677
      break;
2368
14.5k
    }
2369
2370
14.5k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
14.5k
  return true;
2372
14.5k
}
pei-arm.c:coff_set_arch_mach_hook
Line
Count
Source
2110
25.8k
{
2111
25.8k
  unsigned long machine;
2112
25.8k
  enum bfd_architecture arch;
2113
25.8k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
25.8k
  machine = 0;
2117
25.8k
  switch (internal_f->f_magic)
2118
25.8k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
0
#ifdef ARMMAGIC
2147
11.4k
    case ARMMAGIC:
2148
13.4k
    case ARMPEMAGIC:
2149
23.0k
    case THUMBPEMAGIC:
2150
23.0k
      arch = bfd_arch_arm;
2151
23.0k
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
23.0k
      if (machine == bfd_mach_arm_unknown)
2153
23.0k
  {
2154
23.0k
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
23.0k
      {
2156
1.53k
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
372
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
586
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
16.7k
      default:
2160
16.7k
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
818
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
954
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
1.99k
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
23.0k
      }
2170
23.0k
  }
2171
23.0k
      break;
2172
23.0k
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
23.0k
    default:      /* Unreadable input file type.  */
2366
2.83k
      arch = bfd_arch_obscure;
2367
2.83k
      break;
2368
25.8k
    }
2369
2370
25.8k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
25.8k
  return true;
2372
25.8k
}
pei-mcore.c:coff_set_arch_mach_hook
Line
Count
Source
2110
24.7k
{
2111
24.7k
  unsigned long machine;
2112
24.7k
  enum bfd_architecture arch;
2113
24.7k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
24.7k
  machine = 0;
2117
24.7k
  switch (internal_f->f_magic)
2118
24.7k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
#ifdef SH_ARCH_MAGIC_BIG
2296
    case SH_ARCH_MAGIC_BIG:
2297
    case SH_ARCH_MAGIC_LITTLE:
2298
#ifdef COFF_WITH_PE
2299
    case SH_ARCH_MAGIC_WINCE:
2300
#endif
2301
      arch = bfd_arch_sh;
2302
      break;
2303
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
0
#ifdef MCOREMAGIC
2360
24.7k
    case MCOREMAGIC:
2361
24.7k
      arch = bfd_arch_mcore;
2362
24.7k
      break;
2363
0
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
24.7k
    }
2369
2370
24.7k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
24.7k
  return true;
2372
24.7k
}
pei-sh.c:coff_set_arch_mach_hook
Line
Count
Source
2110
14.9k
{
2111
14.9k
  unsigned long machine;
2112
14.9k
  enum bfd_architecture arch;
2113
14.9k
  struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
2114
2115
  /* Zero selects the default machine for an arch.  */
2116
14.9k
  machine = 0;
2117
14.9k
  switch (internal_f->f_magic)
2118
14.9k
    {
2119
#ifdef I386MAGIC
2120
    case I386MAGIC:
2121
    case I386PTXMAGIC:
2122
    case I386AIXMAGIC:    /* Danbury PS/2 AIX C Compiler.  */
2123
    case LYNXCOFFMAGIC:
2124
    case I386_APPLE_MAGIC:
2125
    case I386_FREEBSD_MAGIC:
2126
    case I386_LINUX_MAGIC:
2127
    case I386_NETBSD_MAGIC:
2128
      arch = bfd_arch_i386;
2129
      break;
2130
#endif
2131
#ifdef AMD64MAGIC
2132
    case AMD64MAGIC:
2133
    case AMD64_APPLE_MAGIC:
2134
    case AMD64_FREEBSD_MAGIC:
2135
    case AMD64_LINUX_MAGIC:
2136
    case AMD64_NETBSD_MAGIC:
2137
      arch = bfd_arch_i386;
2138
      machine = bfd_mach_x86_64;
2139
      break;
2140
#endif
2141
#ifdef IA64MAGIC
2142
    case IA64MAGIC:
2143
      arch = bfd_arch_ia64;
2144
      break;
2145
#endif
2146
#ifdef ARMMAGIC
2147
    case ARMMAGIC:
2148
    case ARMPEMAGIC:
2149
    case THUMBPEMAGIC:
2150
      arch = bfd_arch_arm;
2151
      machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2152
      if (machine == bfd_mach_arm_unknown)
2153
  {
2154
    switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
2155
      {
2156
      case F_ARM_2:  machine = bfd_mach_arm_2;  break;
2157
      case F_ARM_2a: machine = bfd_mach_arm_2a; break;
2158
      case F_ARM_3:  machine = bfd_mach_arm_3;  break;
2159
      default:
2160
      case F_ARM_3M: machine = bfd_mach_arm_3M; break;
2161
      case F_ARM_4:  machine = bfd_mach_arm_4;  break;
2162
      case F_ARM_4T: machine = bfd_mach_arm_4T; break;
2163
        /* The COFF header does not have enough bits available
2164
     to cover all the different ARM architectures.  So
2165
     we interpret F_ARM_5, the highest flag value to mean
2166
     "the highest ARM architecture known to BFD" which is
2167
     currently the XScale.  */
2168
      case F_ARM_5:  machine = bfd_mach_arm_XScale;  break;
2169
      }
2170
  }
2171
      break;
2172
#endif
2173
#ifdef AARCH64MAGIC
2174
    case AARCH64MAGIC:
2175
      arch = bfd_arch_aarch64;
2176
      machine = internal_f->f_flags & F_AARCH64_ARCHITECTURE_MASK;
2177
      break;
2178
#endif
2179
#ifdef LOONGARCH64MAGIC
2180
    case LOONGARCH64MAGIC:
2181
      arch = bfd_arch_loongarch;
2182
      machine = internal_f->f_flags & F_LOONGARCH64_ARCHITECTURE_MASK;
2183
      break;
2184
#endif
2185
#ifdef Z80MAGIC
2186
    case Z80MAGIC:
2187
      arch = bfd_arch_z80;
2188
      switch (internal_f->f_flags & F_MACHMASK)
2189
  {
2190
  case bfd_mach_z80strict << 12:
2191
  case bfd_mach_z80 << 12:
2192
  case bfd_mach_z80n << 12:
2193
  case bfd_mach_z80full << 12:
2194
  case bfd_mach_r800 << 12:
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:
2199
    machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
2200
    break;
2201
  default:
2202
    return false;
2203
  }
2204
      break;
2205
#endif
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:
2218
    return false;
2219
  }
2220
      break;
2221
#endif
2222
2223
#ifdef RS6000COFF_C
2224
#ifdef XCOFF64
2225
    case U64_TOCMAGIC:
2226
    case U803XTOCMAGIC:
2227
#else
2228
    case U802ROMAGIC:
2229
    case U802WRMAGIC:
2230
    case U802TOCMAGIC:
2231
#endif
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
        {
2247
    bfd_byte *buf;
2248
    struct internal_syment sym;
2249
    bfd_size_type amt = bfd_coff_symesz (abfd);
2250
2251
    if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0)
2252
      return false;
2253
    buf = _bfd_malloc_and_read (abfd, amt, amt);
2254
    if (buf == NULL)
2255
      return false;
2256
    bfd_coff_swap_sym_in (abfd, buf, & sym);
2257
    if (sym.n_sclass == C_FILE)
2258
      cputype = sym.n_type & 0xff;
2259
    else
2260
      cputype = 0;
2261
    free (buf);
2262
        }
2263
    }
2264
2265
  /* FIXME: We don't handle all cases here.  */
2266
  switch (cputype)
2267
    {
2268
    default:
2269
    case 0:
2270
      arch = bfd_xcoff_architecture (abfd);
2271
      machine = bfd_xcoff_machine (abfd);
2272
      break;
2273
2274
    case 1:
2275
      arch = bfd_arch_powerpc;
2276
      machine = bfd_mach_ppc_601;
2277
      break;
2278
    case 2: /* 64 bit PowerPC */
2279
      arch = bfd_arch_powerpc;
2280
      machine = bfd_mach_ppc_620;
2281
      break;
2282
    case 3:
2283
      arch = bfd_arch_powerpc;
2284
      machine = bfd_mach_ppc;
2285
      break;
2286
    case 4:
2287
      arch = bfd_arch_rs6000;
2288
      machine = bfd_mach_rs6k;
2289
      break;
2290
    }
2291
      }
2292
      break;
2293
#endif
2294
2295
0
#ifdef SH_ARCH_MAGIC_BIG
2296
3.78k
    case SH_ARCH_MAGIC_BIG:
2297
3.78k
    case SH_ARCH_MAGIC_LITTLE:
2298
3.78k
#ifdef COFF_WITH_PE
2299
14.9k
    case SH_ARCH_MAGIC_WINCE:
2300
14.9k
#endif
2301
14.9k
      arch = bfd_arch_sh;
2302
14.9k
      break;
2303
0
#endif
2304
2305
#ifdef MIPS_ARCH_MAGIC_WINCE
2306
    case MIPS_ARCH_MAGIC_WINCE:
2307
      arch = bfd_arch_mips;
2308
      break;
2309
#endif
2310
2311
#ifdef SPARCMAGIC
2312
    case SPARCMAGIC:
2313
#ifdef LYNXCOFFMAGIC
2314
    case LYNXCOFFMAGIC:
2315
#endif
2316
      arch = bfd_arch_sparc;
2317
      break;
2318
#endif
2319
2320
#ifdef TIC30MAGIC
2321
    case TIC30MAGIC:
2322
      arch = bfd_arch_tic30;
2323
      break;
2324
#endif
2325
2326
#ifdef TICOFF0MAGIC
2327
#ifdef TICOFF_TARGET_ARCH
2328
      /* This TI COFF section should be used by all new TI COFF v0 targets.  */
2329
    case TICOFF0MAGIC:
2330
      arch = TICOFF_TARGET_ARCH;
2331
      machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2332
      break;
2333
#endif
2334
#endif
2335
2336
#ifdef TICOFF1MAGIC
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.  */
2339
    case TICOFF1MAGIC:
2340
    case TICOFF2MAGIC:
2341
      switch (internal_f->f_target_id)
2342
  {
2343
#ifdef TI_TARGET_ID
2344
  case TI_TARGET_ID:
2345
    arch = TICOFF_TARGET_ARCH;
2346
    machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
2347
    break;
2348
#endif
2349
  default:
2350
    arch = bfd_arch_obscure;
2351
    _bfd_error_handler
2352
      (_("unrecognized TI COFF target id '0x%x'"),
2353
       internal_f->f_target_id);
2354
    break;
2355
  }
2356
      break;
2357
#endif
2358
2359
#ifdef MCOREMAGIC
2360
    case MCOREMAGIC:
2361
      arch = bfd_arch_mcore;
2362
      break;
2363
#endif
2364
2365
0
    default:      /* Unreadable input file type.  */
2366
0
      arch = bfd_arch_obscure;
2367
0
      break;
2368
14.9k
    }
2369
2370
14.9k
  bfd_default_set_arch_mach (abfd, arch, machine);
2371
14.9k
  return true;
2372
14.9k
}
2373
2374
static bool
2375
symname_in_debug_hook (bfd *abfd ATTRIBUTE_UNUSED,
2376
           struct internal_syment *sym ATTRIBUTE_UNUSED)
2377
0
{
2378
#ifdef SYMNAME_IN_DEBUG
2379
0
  return SYMNAME_IN_DEBUG (sym) != 0;
2380
#else
2381
  return false;
2382
#endif
2383
0
}
Unexecuted instantiation: pei-i386.c:symname_in_debug_hook
Unexecuted instantiation: pe-x86_64.c:symname_in_debug_hook
Unexecuted instantiation: pei-x86_64.c:symname_in_debug_hook
Unexecuted instantiation: coff-x86_64.c:symname_in_debug_hook
Unexecuted instantiation: coff64-rs6000.c:symname_in_debug_hook
Unexecuted instantiation: pei-aarch64.c:symname_in_debug_hook
Unexecuted instantiation: pe-aarch64.c:symname_in_debug_hook
Unexecuted instantiation: pei-ia64.c:symname_in_debug_hook
Unexecuted instantiation: pei-loongarch64.c:symname_in_debug_hook
Unexecuted instantiation: cf-i386lynx.c:symname_in_debug_hook
Unexecuted instantiation: coff-go32.c:symname_in_debug_hook
Unexecuted instantiation: coff-i386.c:symname_in_debug_hook
Unexecuted instantiation: coff-rs6000.c:symname_in_debug_hook
Unexecuted instantiation: coff-sh.c:symname_in_debug_hook
Unexecuted instantiation: coff-stgo32.c:symname_in_debug_hook
Unexecuted instantiation: coff-tic30.c:symname_in_debug_hook
Unexecuted instantiation: coff-tic4x.c:symname_in_debug_hook
Unexecuted instantiation: coff-tic54x.c:symname_in_debug_hook
Unexecuted instantiation: coff-z80.c:symname_in_debug_hook
Unexecuted instantiation: coff-z8k.c:symname_in_debug_hook
Unexecuted instantiation: pe-arm-wince.c:symname_in_debug_hook
Unexecuted instantiation: pe-arm.c:symname_in_debug_hook
Unexecuted instantiation: pe-i386.c:symname_in_debug_hook
Unexecuted instantiation: pe-mcore.c:symname_in_debug_hook
Unexecuted instantiation: pe-sh.c:symname_in_debug_hook
Unexecuted instantiation: pei-arm-wince.c:symname_in_debug_hook
Unexecuted instantiation: pei-arm.c:symname_in_debug_hook
Unexecuted instantiation: pei-mcore.c:symname_in_debug_hook
Unexecuted instantiation: pei-sh.c:symname_in_debug_hook
2384
2385
#ifdef RS6000COFF_C
2386
2387
#ifdef XCOFF64
2388
#define FORCE_SYMNAMES_IN_STRINGS
2389
#endif
2390
2391
/* Handle the csect auxent of a C_EXT, C_AIX_WEAKEXT or C_HIDEXT symbol.  */
2392
2393
static bool
2394
coff_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)
2399
0
{
2400
0
  BFD_ASSERT (symbol->is_sym);
2401
0
  int n_sclass = symbol->u.syment.n_sclass;
2402
2403
0
  if (CSECT_SYM_P (n_sclass)
2404
0
      && indaux + 1 == symbol->u.syment.n_numaux)
2405
0
    {
2406
0
      BFD_ASSERT (! aux->is_sym);
2407
0
      if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD
2408
0
    && aux->u.auxent.x_csect.x_scnlen.u64 < obj_raw_syment_count (abfd))
2409
0
  {
2410
0
    aux->u.auxent.x_csect.x_scnlen.p =
2411
0
      table_base + aux->u.auxent.x_csect.x_scnlen.u64;
2412
0
    aux->fix_scnlen = 1;
2413
0
  }
2414
2415
      /* Return TRUE to indicate that the caller should not do any
2416
   further work on this auxent.  */
2417
0
      return true;
2418
0
    }
2419
2420
  /* Return FALSE to indicate that this auxent should be handled by
2421
     the caller.  */
2422
0
  return false;
2423
0
}
Unexecuted instantiation: coff64-rs6000.c:coff_pointerize_aux_hook
Unexecuted instantiation: coff-rs6000.c:coff_pointerize_aux_hook
2424
2425
#else
2426
#define coff_pointerize_aux_hook 0
2427
#endif /* ! RS6000COFF_C */
2428
2429
/* Print an aux entry.  This returns TRUE if it has printed it.  */
2430
2431
static bool
2432
coff_print_aux (bfd *abfd ATTRIBUTE_UNUSED,
2433
    FILE *file ATTRIBUTE_UNUSED,
2434
    combined_entry_type *table_base ATTRIBUTE_UNUSED,
2435
    combined_entry_type *symbol ATTRIBUTE_UNUSED,
2436
    combined_entry_type *aux ATTRIBUTE_UNUSED,
2437
    unsigned int indaux ATTRIBUTE_UNUSED)
2438
0
{
2439
0
  BFD_ASSERT (symbol->is_sym);
2440
0
  BFD_ASSERT (! aux->is_sym);
2441
#ifdef RS6000COFF_C
2442
0
  if (CSECT_SYM_P (symbol->u.syment.n_sclass)
2443
0
      && indaux + 1 == symbol->u.syment.n_numaux)
2444
0
    {
2445
      /* This is a csect entry.  */
2446
0
      fprintf (file, "AUX ");
2447
0
      if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
2448
0
  {
2449
0
    BFD_ASSERT (! aux->fix_scnlen);
2450
0
    fprintf (file, "val %5" PRIu64,
2451
0
       aux->u.auxent.x_csect.x_scnlen.u64);
2452
0
  }
2453
0
      else
2454
0
  {
2455
0
    fprintf (file, "indx ");
2456
0
    if (! aux->fix_scnlen)
2457
0
      fprintf (file, "%4" PRIu64,
2458
0
         aux->u.auxent.x_csect.x_scnlen.u64);
2459
0
    else
2460
0
      fprintf (file, "%4ld",
2461
0
         (long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
2462
0
  }
2463
0
      fprintf (file,
2464
0
         " prmhsh %u snhsh %u typ %d algn %d clss %u stb %u snstb %u",
2465
0
         aux->u.auxent.x_csect.x_parmhash,
2466
0
         (unsigned int) aux->u.auxent.x_csect.x_snhash,
2467
0
         SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
2468
0
         SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
2469
0
         (unsigned int) aux->u.auxent.x_csect.x_smclas,
2470
0
         aux->u.auxent.x_csect.x_stab,
2471
0
         (unsigned int) aux->u.auxent.x_csect.x_snstab);
2472
0
      return true;
2473
0
    }
2474
0
#endif
2475
2476
  /* Return FALSE to indicate that no special action was taken.  */
2477
0
  return false;
2478
0
}
Unexecuted instantiation: pei-i386.c:coff_print_aux
Unexecuted instantiation: pe-x86_64.c:coff_print_aux
Unexecuted instantiation: pei-x86_64.c:coff_print_aux
Unexecuted instantiation: coff-x86_64.c:coff_print_aux
Unexecuted instantiation: coff64-rs6000.c:coff_print_aux
Unexecuted instantiation: pei-aarch64.c:coff_print_aux
Unexecuted instantiation: pe-aarch64.c:coff_print_aux
Unexecuted instantiation: pei-ia64.c:coff_print_aux
Unexecuted instantiation: pei-loongarch64.c:coff_print_aux
Unexecuted instantiation: cf-i386lynx.c:coff_print_aux
Unexecuted instantiation: coff-go32.c:coff_print_aux
Unexecuted instantiation: coff-i386.c:coff_print_aux
Unexecuted instantiation: coff-rs6000.c:coff_print_aux
Unexecuted instantiation: coff-sh.c:coff_print_aux
Unexecuted instantiation: coff-stgo32.c:coff_print_aux
Unexecuted instantiation: coff-tic30.c:coff_print_aux
Unexecuted instantiation: coff-tic4x.c:coff_print_aux
Unexecuted instantiation: coff-tic54x.c:coff_print_aux
Unexecuted instantiation: coff-z80.c:coff_print_aux
Unexecuted instantiation: coff-z8k.c:coff_print_aux
Unexecuted instantiation: pe-arm-wince.c:coff_print_aux
Unexecuted instantiation: pe-arm.c:coff_print_aux
Unexecuted instantiation: pe-i386.c:coff_print_aux
Unexecuted instantiation: pe-mcore.c:coff_print_aux
Unexecuted instantiation: pe-sh.c:coff_print_aux
Unexecuted instantiation: pei-arm-wince.c:coff_print_aux
Unexecuted instantiation: pei-arm.c:coff_print_aux
Unexecuted instantiation: pei-mcore.c:coff_print_aux
Unexecuted instantiation: pei-sh.c:coff_print_aux
2479
2480
/*
2481
SUBSUBSECTION
2482
  Writing relocations
2483
2484
  To write relocations, the back end steps though the
2485
  canonical relocation table and create an
2486
  @code{internal_reloc}. The symbol index to use is removed from
2487
  the @code{offset} field in the symbol table supplied.  The
2488
  address comes directly from the sum of the section base
2489
  address and the relocation offset; the type is dug directly
2490
  from the howto field.  Then the @code{internal_reloc} is
2491
  swapped into the shape of an @code{external_reloc} and written
2492
  out to disk.
2493
2494
*/
2495
2496
#ifdef TARG_AUX
2497
2498
2499
/* AUX's ld wants relocations to be sorted.  */
2500
static int
2501
compare_arelent_ptr (const void * x, const void * y)
2502
{
2503
  const arelent **a = (const arelent **) x;
2504
  const arelent **b = (const arelent **) y;
2505
  bfd_size_type aadr = (*a)->address;
2506
  bfd_size_type badr = (*b)->address;
2507
2508
  return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
2509
}
2510
2511
#endif /* TARG_AUX */
2512
2513
static bool
2514
coff_write_relocs (bfd * abfd, int first_undef)
2515
0
{
2516
0
  asection *s;
2517
2518
0
  for (s = abfd->sections; s != NULL; s = s->next)
2519
0
    {
2520
0
      unsigned int i;
2521
0
      struct external_reloc dst;
2522
0
      arelent **p;
2523
2524
0
#ifndef TARG_AUX
2525
0
      p = s->orelocation;
2526
#else
2527
      {
2528
  /* Sort relocations before we write them out.  */
2529
  bfd_size_type amt;
2530
2531
  amt = s->reloc_count;
2532
  amt *= sizeof (arelent *);
2533
  p = bfd_malloc (amt);
2534
  if (p == NULL)
2535
    {
2536
      if (s->reloc_count > 0)
2537
        return false;
2538
    }
2539
  else
2540
    {
2541
      memcpy (p, s->orelocation, (size_t) amt);
2542
      qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
2543
    }
2544
      }
2545
#endif
2546
2547
0
      if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
2548
0
  return false;
2549
2550
#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
2551
0
      if ((obj_pe (abfd) || obj_go32 (abfd)) && s->reloc_count >= 0xffff)
2552
0
  {
2553
    /* Encode real count here as first reloc.  */
2554
0
    struct internal_reloc n;
2555
2556
0
    memset (& n, 0, sizeof (n));
2557
    /* Add one to count *this* reloc (grr).  */
2558
0
    n.r_vaddr = s->reloc_count + 1;
2559
0
    coff_swap_reloc_out (abfd, &n, &dst);
2560
0
    if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
2561
0
        abfd) != bfd_coff_relsz (abfd))
2562
0
      return false;
2563
0
  }
2564
0
#endif
2565
2566
0
      for (i = 0; i < s->reloc_count; i++)
2567
0
  {
2568
0
    struct internal_reloc n;
2569
0
    arelent *q = p[i];
2570
2571
0
    memset (& n, 0, sizeof (n));
2572
2573
    /* Now we've renumbered the symbols we know where the
2574
       undefined symbols live in the table.  Check the reloc
2575
       entries for symbols who's output bfd isn't the right one.
2576
       This is because the symbol was undefined (which means
2577
       that all the pointers are never made to point to the same
2578
       place). This is a bad thing,'cause the symbols attached
2579
       to the output bfd are indexed, so that the relocation
2580
       entries know which symbol index they point to.  So we
2581
       have to look up the output symbol here.  */
2582
2583
0
    if (q->sym_ptr_ptr[0] != NULL && q->sym_ptr_ptr[0]->the_bfd != abfd)
2584
0
      {
2585
0
        int j;
2586
0
        const char *sname = q->sym_ptr_ptr[0]->name;
2587
0
        asymbol **outsyms = abfd->outsymbols;
2588
2589
0
        for (j = first_undef; outsyms[j]; j++)
2590
0
    {
2591
0
      const char *intable = outsyms[j]->name;
2592
2593
0
      if (strcmp (intable, sname) == 0)
2594
0
        {
2595
          /* Got a hit, so repoint the reloc.  */
2596
0
          q->sym_ptr_ptr = outsyms + j;
2597
0
          break;
2598
0
        }
2599
0
    }
2600
0
      }
2601
2602
0
    n.r_vaddr = q->address + s->vma;
2603
2604
#ifdef R_IHCONST
2605
    /* The 29k const/consth reloc pair is a real kludge.  The consth
2606
       part doesn't have a symbol; it has an offset.  So rebuilt
2607
       that here.  */
2608
    if (q->howto->type == R_IHCONST)
2609
      n.r_symndx = q->addend;
2610
    else
2611
#endif
2612
0
      if (q->sym_ptr_ptr && q->sym_ptr_ptr[0] != NULL)
2613
0
        {
2614
#ifdef SECTION_RELATIVE_ABSOLUTE_SYMBOL_P
2615
0
    if (SECTION_RELATIVE_ABSOLUTE_SYMBOL_P (q, s))
2616
#else
2617
0
    if ((*q->sym_ptr_ptr)->section == bfd_abs_section_ptr
2618
0
        && ((*q->sym_ptr_ptr)->flags & BSF_SECTION_SYM) != 0)
2619
0
#endif
2620
      /* This is a relocation relative to the absolute symbol.  */
2621
0
      n.r_symndx = -1;
2622
0
    else
2623
0
      {
2624
0
        n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
2625
        /* Check to see if the symbol reloc points to a symbol
2626
           we don't have in our symbol table.  */
2627
0
        if (n.r_symndx > obj_conv_table_size (abfd))
2628
0
          {
2629
0
      bfd_set_error (bfd_error_bad_value);
2630
      /* xgettext:c-format */
2631
0
      _bfd_error_handler (_("%pB: reloc against a non-existent"
2632
0
                " symbol index: %ld"),
2633
0
              abfd, n.r_symndx);
2634
0
      return false;
2635
0
          }
2636
0
      }
2637
0
        }
2638
2639
#ifdef SWAP_OUT_RELOC_OFFSET
2640
0
    n.r_offset = q->addend;
2641
0
#endif
2642
2643
#ifdef SELECT_RELOC
2644
    /* Work out reloc type from what is required.  */
2645
0
    if (q->howto)
2646
0
      SELECT_RELOC (n, q->howto);
2647
#else
2648
0
    if (q->howto)
2649
0
      n.r_type = q->howto->type;
2650
#endif
2651
0
    coff_swap_reloc_out (abfd, &n, &dst);
2652
2653
0
    if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
2654
0
       abfd) != bfd_coff_relsz (abfd))
2655
0
      return false;
2656
0
  }
2657
2658
#ifdef TARG_AUX
2659
      free (p);
2660
#endif
2661
0
    }
2662
2663
0
  return true;
2664
0
}
Unexecuted instantiation: pei-i386.c:coff_write_relocs
Unexecuted instantiation: pe-x86_64.c:coff_write_relocs
Unexecuted instantiation: pei-x86_64.c:coff_write_relocs
Unexecuted instantiation: coff-x86_64.c:coff_write_relocs
Unexecuted instantiation: coff64-rs6000.c:coff_write_relocs
Unexecuted instantiation: pei-aarch64.c:coff_write_relocs
Unexecuted instantiation: pe-aarch64.c:coff_write_relocs
Unexecuted instantiation: pei-ia64.c:coff_write_relocs
Unexecuted instantiation: pei-loongarch64.c:coff_write_relocs
Unexecuted instantiation: cf-i386lynx.c:coff_write_relocs
Unexecuted instantiation: coff-go32.c:coff_write_relocs
Unexecuted instantiation: coff-i386.c:coff_write_relocs
Unexecuted instantiation: coff-rs6000.c:coff_write_relocs
Unexecuted instantiation: coff-sh.c:coff_write_relocs
Unexecuted instantiation: coff-stgo32.c:coff_write_relocs
Unexecuted instantiation: coff-tic30.c:coff_write_relocs
Unexecuted instantiation: coff-tic4x.c:coff_write_relocs
Unexecuted instantiation: coff-tic54x.c:coff_write_relocs
Unexecuted instantiation: coff-z80.c:coff_write_relocs
Unexecuted instantiation: coff-z8k.c:coff_write_relocs
Unexecuted instantiation: pe-arm-wince.c:coff_write_relocs
Unexecuted instantiation: pe-arm.c:coff_write_relocs
Unexecuted instantiation: pe-i386.c:coff_write_relocs
Unexecuted instantiation: pe-mcore.c:coff_write_relocs
Unexecuted instantiation: pe-sh.c:coff_write_relocs
Unexecuted instantiation: pei-arm-wince.c:coff_write_relocs
Unexecuted instantiation: pei-arm.c:coff_write_relocs
Unexecuted instantiation: pei-mcore.c:coff_write_relocs
Unexecuted instantiation: pei-sh.c:coff_write_relocs
2665
2666
/* Set flags and magic number of a coff file from architecture and machine
2667
   type.  Result is TRUE if we can represent the arch&type, FALSE if not.  */
2668
2669
static bool
2670
coff_set_flags (bfd * abfd,
2671
    unsigned int *magicp ATTRIBUTE_UNUSED,
2672
    unsigned short *flagsp ATTRIBUTE_UNUSED)
2673
0
{
2674
0
  switch (bfd_get_arch (abfd))
2675
0
    {
2676
#ifdef Z80MAGIC
2677
0
    case bfd_arch_z80:
2678
0
      *magicp = Z80MAGIC;
2679
0
      switch (bfd_get_mach (abfd))
2680
0
  {
2681
0
  case bfd_mach_z80strict:
2682
0
  case bfd_mach_z80:
2683
0
  case bfd_mach_z80n:
2684
0
  case bfd_mach_z80full:
2685
0
  case bfd_mach_r800:
2686
0
  case bfd_mach_gbz80:
2687
0
  case bfd_mach_z180:
2688
0
  case bfd_mach_ez80_z80:
2689
0
  case bfd_mach_ez80_adl:
2690
0
    *flagsp = bfd_get_mach (abfd) << 12;
2691
0
    break;
2692
0
  default:
2693
0
    return false;
2694
0
  }
2695
0
      return true;
2696
0
#endif
2697
2698
#ifdef Z8KMAGIC
2699
0
    case bfd_arch_z8k:
2700
0
      *magicp = Z8KMAGIC;
2701
2702
0
      switch (bfd_get_mach (abfd))
2703
0
  {
2704
0
  case bfd_mach_z8001: *flagsp = F_Z8001; break;
2705
0
  case bfd_mach_z8002: *flagsp = F_Z8002; break;
2706
0
  default:       return false;
2707
0
  }
2708
0
      return true;
2709
0
#endif
2710
2711
#ifdef TIC30MAGIC
2712
0
    case bfd_arch_tic30:
2713
0
      *magicp = TIC30MAGIC;
2714
0
      return true;
2715
0
#endif
2716
2717
#ifdef TICOFF_DEFAULT_MAGIC
2718
0
    case TICOFF_TARGET_ARCH:
2719
      /* If there's no indication of which version we want, use the default.  */
2720
0
      if (!abfd->xvec )
2721
0
  *magicp = TICOFF_DEFAULT_MAGIC;
2722
0
      else
2723
0
  {
2724
    /* We may want to output in a different COFF version.  */
2725
0
    switch (abfd->xvec->name[4])
2726
0
      {
2727
0
      case '0':
2728
0
        *magicp = TICOFF0MAGIC;
2729
0
        break;
2730
0
      case '1':
2731
0
        *magicp = TICOFF1MAGIC;
2732
0
        break;
2733
0
      case '2':
2734
0
        *magicp = TICOFF2MAGIC;
2735
0
        break;
2736
0
      default:
2737
0
        return false;
2738
0
      }
2739
0
  }
2740
0
      TICOFF_TARGET_MACHINE_SET (flagsp, bfd_get_mach (abfd));
2741
0
      return true;
2742
0
#endif
2743
2744
#ifdef AARCH64MAGIC
2745
0
    case bfd_arch_aarch64:
2746
0
      * magicp = AARCH64MAGIC;
2747
0
      return true;
2748
0
#endif
2749
2750
#ifdef LOONGARCH64MAGIC
2751
0
    case bfd_arch_loongarch:
2752
0
      * magicp = LOONGARCH64MAGIC;
2753
0
      return true;
2754
0
#endif
2755
2756
#ifdef ARMMAGIC
2757
0
    case bfd_arch_arm:
2758
#ifdef ARM_WINCE
2759
      * magicp = ARMPEMAGIC;
2760
#else
2761
0
      * magicp = ARMMAGIC;
2762
0
#endif
2763
0
      * flagsp = 0;
2764
0
      if (APCS_SET (abfd))
2765
0
  {
2766
0
    if (APCS_26_FLAG (abfd))
2767
0
      * flagsp |= F_APCS26;
2768
2769
0
    if (APCS_FLOAT_FLAG (abfd))
2770
0
      * flagsp |= F_APCS_FLOAT;
2771
2772
0
    if (PIC_FLAG (abfd))
2773
0
      * flagsp |= F_PIC;
2774
0
  }
2775
0
      if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
2776
0
  * flagsp |= F_INTERWORK;
2777
0
      switch (bfd_get_mach (abfd))
2778
0
  {
2779
0
  case bfd_mach_arm_2:  * flagsp |= F_ARM_2;  break;
2780
0
  case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
2781
0
  case bfd_mach_arm_3:  * flagsp |= F_ARM_3;  break;
2782
0
  case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
2783
0
  case bfd_mach_arm_4:  * flagsp |= F_ARM_4;  break;
2784
0
  case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
2785
0
  case bfd_mach_arm_5:  * flagsp |= F_ARM_5;  break;
2786
    /* FIXME: we do not have F_ARM vaues greater than F_ARM_5.
2787
       See also the comment in coff_set_arch_mach_hook().  */
2788
0
  case bfd_mach_arm_5T: * flagsp |= F_ARM_5;  break;
2789
0
  case bfd_mach_arm_5TE: * flagsp |= F_ARM_5; break;
2790
0
  case bfd_mach_arm_XScale: * flagsp |= F_ARM_5; break;
2791
0
  }
2792
0
      return true;
2793
0
#endif
2794
2795
#if defined(I386MAGIC) || defined(AMD64MAGIC)
2796
0
    case bfd_arch_i386:
2797
#if defined(I386MAGIC)
2798
0
      *magicp = I386MAGIC;
2799
#endif
2800
#if defined LYNXOS
2801
      /* Just overwrite the usual value if we're doing Lynx.  */
2802
0
      *magicp = LYNXCOFFMAGIC;
2803
#endif
2804
#if defined AMD64MAGIC
2805
0
      *magicp = AMD64MAGIC;
2806
#endif
2807
0
      return true;
2808
0
#endif
2809
2810
#ifdef IA64MAGIC
2811
0
    case bfd_arch_ia64:
2812
0
      *magicp = IA64MAGIC;
2813
0
      return true;
2814
0
#endif
2815
2816
#ifdef SH_ARCH_MAGIC_BIG
2817
0
    case bfd_arch_sh:
2818
#ifdef COFF_IMAGE_WITH_PE
2819
0
      *magicp = SH_ARCH_MAGIC_WINCE;
2820
#else
2821
0
      if (bfd_big_endian (abfd))
2822
0
  *magicp = SH_ARCH_MAGIC_BIG;
2823
0
      else
2824
0
  *magicp = SH_ARCH_MAGIC_LITTLE;
2825
#endif
2826
0
      return true;
2827
0
#endif
2828
2829
#ifdef MIPS_ARCH_MAGIC_WINCE
2830
    case bfd_arch_mips:
2831
      *magicp = MIPS_ARCH_MAGIC_WINCE;
2832
      return true;
2833
#endif
2834
2835
#ifdef SPARCMAGIC
2836
    case bfd_arch_sparc:
2837
      *magicp = SPARCMAGIC;
2838
#ifdef LYNXOS
2839
      /* Just overwrite the usual value if we're doing Lynx.  */
2840
      *magicp = LYNXCOFFMAGIC;
2841
#endif
2842
      return true;
2843
#endif
2844
2845
#ifdef RS6000COFF_C
2846
0
    case bfd_arch_rs6000:
2847
0
    case bfd_arch_powerpc:
2848
0
      BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_xcoff_flavour);
2849
0
      *magicp = bfd_xcoff_magic_number (abfd);
2850
0
      return true;
2851
0
#endif
2852
2853
#ifdef MCOREMAGIC
2854
0
    case bfd_arch_mcore:
2855
0
      * magicp = MCOREMAGIC;
2856
0
      return true;
2857
0
#endif
2858
2859
0
    default:      /* Unknown architecture.  */
2860
0
      break;
2861
0
    }
2862
2863
0
  return false;
2864
0
}
Unexecuted instantiation: pei-i386.c:coff_set_flags
Unexecuted instantiation: pe-x86_64.c:coff_set_flags
Unexecuted instantiation: pei-x86_64.c:coff_set_flags
Unexecuted instantiation: coff-x86_64.c:coff_set_flags
Unexecuted instantiation: coff64-rs6000.c:coff_set_flags
Unexecuted instantiation: pei-aarch64.c:coff_set_flags
Unexecuted instantiation: pe-aarch64.c:coff_set_flags
Unexecuted instantiation: pei-ia64.c:coff_set_flags
Unexecuted instantiation: pei-loongarch64.c:coff_set_flags
Unexecuted instantiation: cf-i386lynx.c:coff_set_flags
Unexecuted instantiation: coff-go32.c:coff_set_flags
Unexecuted instantiation: coff-i386.c:coff_set_flags
Unexecuted instantiation: coff-rs6000.c:coff_set_flags
Unexecuted instantiation: coff-sh.c:coff_set_flags
Unexecuted instantiation: coff-stgo32.c:coff_set_flags
Unexecuted instantiation: coff-tic30.c:coff_set_flags
Unexecuted instantiation: coff-tic4x.c:coff_set_flags
Unexecuted instantiation: coff-tic54x.c:coff_set_flags
Unexecuted instantiation: coff-z80.c:coff_set_flags
Unexecuted instantiation: coff-z8k.c:coff_set_flags
Unexecuted instantiation: pe-arm-wince.c:coff_set_flags
Unexecuted instantiation: pe-arm.c:coff_set_flags
Unexecuted instantiation: pe-i386.c:coff_set_flags
Unexecuted instantiation: pe-mcore.c:coff_set_flags
Unexecuted instantiation: pe-sh.c:coff_set_flags
Unexecuted instantiation: pei-arm-wince.c:coff_set_flags
Unexecuted instantiation: pei-arm.c:coff_set_flags
Unexecuted instantiation: pei-mcore.c:coff_set_flags
Unexecuted instantiation: pei-sh.c:coff_set_flags
2865
2866
static bool
2867
coff_set_arch_mach (bfd * abfd,
2868
        enum bfd_architecture arch,
2869
        unsigned long machine)
2870
0
{
2871
0
  unsigned dummy1;
2872
0
  unsigned short dummy2;
2873
2874
0
  if (! bfd_default_set_arch_mach (abfd, arch, machine))
2875
0
    return false;
2876
2877
0
  if (arch != bfd_arch_unknown
2878
0
      && ! coff_set_flags (abfd, &dummy1, &dummy2))
2879
0
    return false;   /* We can't represent this type.  */
2880
2881
0
  return true;     /* We're easy...  */
2882
0
}
Unexecuted instantiation: pei-i386.c:coff_set_arch_mach
Unexecuted instantiation: pe-x86_64.c:coff_set_arch_mach
Unexecuted instantiation: pei-x86_64.c:coff_set_arch_mach
Unexecuted instantiation: coff-x86_64.c:coff_set_arch_mach
Unexecuted instantiation: coff64-rs6000.c:coff_set_arch_mach
Unexecuted instantiation: pei-aarch64.c:coff_set_arch_mach
Unexecuted instantiation: pe-aarch64.c:coff_set_arch_mach
Unexecuted instantiation: pei-ia64.c:coff_set_arch_mach
Unexecuted instantiation: pei-loongarch64.c:coff_set_arch_mach
Unexecuted instantiation: cf-i386lynx.c:coff_set_arch_mach
Unexecuted instantiation: coff-go32.c:coff_set_arch_mach
Unexecuted instantiation: coff-i386.c:coff_set_arch_mach
Unexecuted instantiation: coff-rs6000.c:coff_set_arch_mach
Unexecuted instantiation: coff-sh.c:coff_set_arch_mach
Unexecuted instantiation: coff-stgo32.c:coff_set_arch_mach
Unexecuted instantiation: coff-tic30.c:coff_set_arch_mach
Unexecuted instantiation: coff-tic4x.c:coff_set_arch_mach
Unexecuted instantiation: coff-tic54x.c:coff_set_arch_mach
Unexecuted instantiation: coff-z80.c:coff_set_arch_mach
Unexecuted instantiation: coff-z8k.c:coff_set_arch_mach
Unexecuted instantiation: pe-arm-wince.c:coff_set_arch_mach
Unexecuted instantiation: pe-arm.c:coff_set_arch_mach
Unexecuted instantiation: pe-i386.c:coff_set_arch_mach
Unexecuted instantiation: pe-mcore.c:coff_set_arch_mach
Unexecuted instantiation: pe-sh.c:coff_set_arch_mach
Unexecuted instantiation: pei-arm-wince.c:coff_set_arch_mach
Unexecuted instantiation: pei-arm.c:coff_set_arch_mach
Unexecuted instantiation: pei-mcore.c:coff_set_arch_mach
Unexecuted instantiation: pei-sh.c:coff_set_arch_mach
2883
2884
#ifdef COFF_IMAGE_WITH_PE
2885
2886
/* This is used to sort sections by VMA, as required by PE image
2887
   files.  */
2888
2889
static int
2890
sort_by_secaddr (const void * arg1, const void * arg2)
2891
0
{
2892
0
  const asection *a = *(const asection **) arg1;
2893
0
  const asection *b = *(const asection **) arg2;
2894
2895
0
  if (a->vma < b->vma)
2896
0
    return -1;
2897
0
  else if (a->vma > b->vma)
2898
0
    return 1;
2899
2900
0
  return 0;
2901
0
}
Unexecuted instantiation: pei-i386.c:sort_by_secaddr
Unexecuted instantiation: pei-x86_64.c:sort_by_secaddr
Unexecuted instantiation: pei-aarch64.c:sort_by_secaddr
Unexecuted instantiation: pei-ia64.c:sort_by_secaddr
Unexecuted instantiation: pei-loongarch64.c:sort_by_secaddr
Unexecuted instantiation: pei-arm-wince.c:sort_by_secaddr
Unexecuted instantiation: pei-arm.c:sort_by_secaddr
Unexecuted instantiation: pei-mcore.c:sort_by_secaddr
Unexecuted instantiation: pei-sh.c:sort_by_secaddr
2902
2903
#endif /* COFF_IMAGE_WITH_PE */
2904
2905
/* Calculate the file position for each section.  */
2906
2907
#define ALIGN_SECTIONS_IN_FILE
2908
#ifdef TICOFF
2909
#undef ALIGN_SECTIONS_IN_FILE
2910
#endif
2911
2912
static bool
2913
coff_compute_section_file_positions (bfd * abfd)
2914
0
{
2915
0
  asection *current;
2916
0
  file_ptr sofar = bfd_coff_filhsz (abfd);
2917
0
  bool align_adjust;
2918
0
  unsigned int target_index;
2919
#ifdef ALIGN_SECTIONS_IN_FILE
2920
  asection *previous = NULL;
2921
  file_ptr old_sofar;
2922
#endif
2923
2924
#ifdef COFF_IMAGE_WITH_PE
2925
  unsigned int page_size;
2926
2927
0
  if (coff_data (abfd)->link_info
2928
0
      || (pe_data (abfd) && pe_data (abfd)->pe_opthdr.FileAlignment))
2929
0
    {
2930
0
      page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
2931
2932
      /* If no file alignment has been set, default to one.
2933
   This repairs 'ld -r' for arm-wince-pe target.  */
2934
0
      if (page_size == 0)
2935
0
  page_size = 1;
2936
0
    }
2937
0
  else
2938
0
    page_size = PE_DEF_FILE_ALIGNMENT;
2939
#else
2940
#ifdef COFF_PAGE_SIZE
2941
0
  unsigned int page_size = COFF_PAGE_SIZE;
2942
#endif
2943
#endif
2944
2945
#ifdef RS6000COFF_C
2946
  /* On XCOFF, if we have symbols, set up the .debug section.  */
2947
0
  if (bfd_get_symcount (abfd) > 0)
2948
0
    {
2949
0
      bfd_size_type sz;
2950
0
      bfd_size_type i, symcount;
2951
0
      asymbol **symp;
2952
2953
      sz = 0;
2954
      symcount = bfd_get_symcount (abfd);
2955
0
      for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
2956
0
  {
2957
0
    coff_symbol_type *cf;
2958
2959
0
    cf = coff_symbol_from (*symp);
2960
0
    if (cf != NULL
2961
0
        && cf->native != NULL
2962
0
        && cf->native->is_sym
2963
0
        && SYMNAME_IN_DEBUG (&cf->native->u.syment))
2964
0
      {
2965
0
        size_t len;
2966
2967
0
        len = strlen (bfd_asymbol_name (*symp));
2968
0
        if (len > SYMNMLEN || bfd_coff_force_symnames_in_strings (abfd))
2969
0
    sz += len + 1 + bfd_coff_debug_string_prefix_length (abfd);
2970
0
      }
2971
0
  }
2972
0
      if (sz > 0)
2973
0
  {
2974
0
    asection *dsec;
2975
2976
0
    dsec = bfd_make_section_old_way (abfd, DOT_DEBUG);
2977
0
    if (dsec == NULL)
2978
0
      abort ();
2979
0
    dsec->size = sz;
2980
0
    dsec->flags |= SEC_HAS_CONTENTS;
2981
0
  }
2982
0
    }
2983
0
#endif
2984
2985
0
  if (bfd_get_start_address (abfd))
2986
    /*  A start address may have been added to the original file. In this
2987
  case it will need an optional header to record it.  */
2988
0
    abfd->flags |= EXEC_P;
2989
2990
0
  if (abfd->flags & EXEC_P)
2991
0
    sofar += bfd_coff_aoutsz (abfd);
2992
#ifdef RS6000COFF_C
2993
0
  else if (xcoff_data (abfd)->full_aouthdr)
2994
0
    sofar += bfd_coff_aoutsz (abfd);
2995
0
  else
2996
0
    sofar += SMALL_AOUTSZ;
2997
#endif
2998
2999
0
  sofar += abfd->section_count * bfd_coff_scnhsz (abfd);
3000
3001
#ifdef RS6000COFF_C
3002
  /* XCOFF handles overflows in the reloc and line number count fields
3003
     by allocating a new section header to hold the correct counts.  */
3004
0
  for (current = abfd->sections; current != NULL; current = current->next)
3005
0
    if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3006
0
      sofar += bfd_coff_scnhsz (abfd);
3007
#endif
3008
3009
0
  if (coff_data (abfd)->section_by_target_index)
3010
0
    htab_empty (coff_data (abfd)->section_by_target_index);
3011
3012
#ifdef COFF_IMAGE_WITH_PE
3013
  {
3014
    /* PE requires the sections to be in memory order when listed in
3015
       the section headers.  It also does not like empty loadable
3016
       sections.  The sections apparently do not have to be in the
3017
       right order in the image file itself, but we do need to get the
3018
       target_index values right.  */
3019
3020
    unsigned int count;
3021
    asection **section_list;
3022
    unsigned int i;
3023
    bfd_size_type amt;
3024
3025
#ifdef COFF_PAGE_SIZE
3026
    /* Clear D_PAGED if section / file alignment aren't suitable for
3027
       paging at COFF_PAGE_SIZE granularity.  */
3028
0
   if (pe_data (abfd)->pe_opthdr.SectionAlignment < COFF_PAGE_SIZE
3029
0
       || page_size < COFF_PAGE_SIZE)
3030
0
     abfd->flags &= ~D_PAGED;
3031
#endif
3032
3033
    count = 0;
3034
0
    for (current = abfd->sections; current != NULL; current = current->next)
3035
0
      ++count;
3036
3037
    /* We allocate an extra cell to simplify the final loop.  */
3038
    amt = sizeof (struct asection *) * (count + 1);
3039
    section_list = (asection **) bfd_malloc (amt);
3040
0
    if (section_list == NULL)
3041
0
      return false;
3042
3043
0
    i = 0;
3044
0
    for (current = abfd->sections; current != NULL; current = current->next)
3045
0
      {
3046
0
  section_list[i] = current;
3047
0
  ++i;
3048
0
      }
3049
0
    section_list[i] = NULL;
3050
3051
0
    qsort (section_list, count, sizeof (asection *), sort_by_secaddr);
3052
3053
    /* Rethread the linked list into sorted order; at the same time,
3054
       assign target_index values.  */
3055
0
    target_index = 1;
3056
0
    abfd->sections = NULL;
3057
0
    abfd->section_last = NULL;
3058
0
    for (i = 0; i < count; i++)
3059
0
      {
3060
0
  current = section_list[i];
3061
0
  bfd_section_list_append (abfd, current);
3062
3063
  /* Later, if the section has zero size, we'll be throwing it
3064
     away, so we don't want to number it now.  Note that having
3065
     a zero size and having real contents are different
3066
     concepts: .bss has no contents, but (usually) non-zero
3067
     size.  */
3068
0
  if (current->size == 0)
3069
0
    {
3070
      /* Discard.  However, it still might have (valid) symbols
3071
         in it, so arbitrarily set it to section 1 (indexing is
3072
         1-based here; usually .text).  __end__ and other
3073
         contents of .endsection really have this happen.
3074
         FIXME: This seems somewhat dubious.  */
3075
0
      current->target_index = 1;
3076
0
    }
3077
0
  else
3078
0
    current->target_index = target_index++;
3079
0
      }
3080
3081
0
    free (section_list);
3082
0
  }
3083
#else /* ! COFF_IMAGE_WITH_PE */
3084
  {
3085
    /* Set the target_index field.  */
3086
    target_index = 1;
3087
0
    for (current = abfd->sections; current != NULL; current = current->next)
3088
0
      current->target_index = target_index++;
3089
  }
3090
#endif /* ! COFF_IMAGE_WITH_PE */
3091
3092
0
  if (target_index >= bfd_coff_max_nscns (abfd))
3093
0
    {
3094
0
      bfd_set_error (bfd_error_file_too_big);
3095
0
      _bfd_error_handler
3096
  /* xgettext:c-format */
3097
0
  (_("%pB: too many sections (%d)"), abfd, target_index);
3098
0
      return false;
3099
0
    }
3100
3101
0
  align_adjust = false;
3102
0
  for (current = abfd->sections;
3103
0
       current != NULL;
3104
0
       current = current->next)
3105
0
    {
3106
#ifdef COFF_IMAGE_WITH_PE
3107
      /* With PE we have to pad each section to be a multiple of its
3108
   page size too, and remember both sizes.  */
3109
0
      if (coff_section_data (abfd, current) == NULL)
3110
0
  {
3111
0
    size_t amt = sizeof (struct coff_section_tdata);
3112
3113
    current->used_by_bfd = bfd_zalloc (abfd, amt);
3114
0
    if (current->used_by_bfd == NULL)
3115
0
      return false;
3116
0
  }
3117
0
      if (pei_section_data (abfd, current) == NULL)
3118
0
  {
3119
0
    size_t amt = sizeof (struct pei_section_tdata);
3120
3121
0
    coff_section_data (abfd, current)->tdata = bfd_zalloc (abfd, amt);
3122
0
    if (coff_section_data (abfd, current)->tdata == NULL)
3123
0
      return false;
3124
0
  }
3125
0
      if (pei_section_data (abfd, current)->virt_size == 0)
3126
0
  pei_section_data (abfd, current)->virt_size = current->size;
3127
0
#endif
3128
3129
      /* Only deal with sections which have contents.  */
3130
0
      if (!(current->flags & SEC_HAS_CONTENTS))
3131
0
  continue;
3132
3133
0
      current->rawsize = current->size;
3134
3135
#ifdef COFF_IMAGE_WITH_PE
3136
      /* Make sure we skip empty sections in a PE image.  */
3137
0
      if (current->size == 0)
3138
0
  continue;
3139
0
#endif
3140
3141
      /* Align the sections in the file to the same boundary on
3142
   which they are aligned in virtual memory.  */
3143
#ifdef ALIGN_SECTIONS_IN_FILE
3144
0
      if ((abfd->flags & EXEC_P) != 0)
3145
0
  {
3146
    /* Make sure this section is aligned on the right boundary - by
3147
       padding the previous section up if necessary.  */
3148
0
    old_sofar = sofar;
3149
3150
#ifdef COFF_IMAGE_WITH_PE
3151
0
    sofar = BFD_ALIGN (sofar, page_size);
3152
#else
3153
0
    sofar = BFD_ALIGN (sofar, (bfd_vma) 1 << current->alignment_power);
3154
#endif
3155
3156
#ifdef RS6000COFF_C
3157
    /* Make sure the file offset and the vma of .text/.data are at the
3158
       same page offset, so that the file can be mmap'ed without being
3159
       relocated.  Failing that, AIX is able to load and execute the
3160
       program, but it will be silently relocated (possible as
3161
       executables are PIE).  But the relocation is slightly costly and
3162
       complexify the use of addr2line or gdb.  So better to avoid it,
3163
       like does the native linker.  Usually gnu ld makes sure that
3164
       the vma of .text is the file offset so this issue shouldn't
3165
       appear unless you are stripping such an executable.
3166
3167
       AIX loader checks the text section alignment of (vma - filepos),
3168
       and the native linker doesn't try to align the text sections.
3169
       For example:
3170
3171
       0 .text       000054cc  10000128  10000128  00000128  2**5
3172
           CONTENTS, ALLOC, LOAD, CODE
3173
3174
       Don't perform the above tweak if the previous one is .tdata,
3175
       as it will increase the memory allocated for every threads
3176
       created and not just improve performances with gdb.
3177
    */
3178
3179
0
    if ((!strcmp (current->name, _TEXT)
3180
0
         || !strcmp (current->name, _DATA))
3181
0
        && (previous == NULL || strcmp(previous->name, _TDATA)))
3182
0
      {
3183
0
        bfd_vma align = 4096;
3184
0
        bfd_vma sofar_off = sofar % align;
3185
0
        bfd_vma vma_off = current->vma % align;
3186
3187
0
        if (vma_off > sofar_off)
3188
0
    sofar += vma_off - sofar_off;
3189
0
        else if (vma_off < sofar_off)
3190
0
    sofar += align + vma_off - sofar_off;
3191
0
      }
3192
#endif
3193
0
    if (previous != NULL)
3194
0
      previous->size += sofar - old_sofar;
3195
0
  }
3196
3197
0
#endif
3198
3199
      /* In demand paged files the low order bits of the file offset
3200
   must match the low order bits of the virtual address.  */
3201
#ifdef COFF_PAGE_SIZE
3202
0
      if ((abfd->flags & D_PAGED) != 0
3203
0
    && (current->flags & SEC_ALLOC) != 0)
3204
0
  sofar += (current->vma - (bfd_vma) sofar) % page_size;
3205
#endif
3206
0
      current->filepos = sofar;
3207
3208
#ifdef COFF_IMAGE_WITH_PE
3209
      /* Set the padded size.  */
3210
      current->size = (current->size + page_size - 1) & -page_size;
3211
#endif
3212
3213
0
      sofar += current->size;
3214
3215
#ifdef ALIGN_SECTIONS_IN_FILE
3216
      /* Make sure that this section is of the right size too.  */
3217
0
      if ((abfd->flags & EXEC_P) == 0)
3218
0
  {
3219
0
    bfd_size_type old_size;
3220
3221
0
    old_size = current->size;
3222
0
    current->size = BFD_ALIGN (current->size,
3223
0
             (bfd_vma) 1 << current->alignment_power);
3224
0
    align_adjust = current->size != old_size;
3225
0
    sofar += current->size - old_size;
3226
0
  }
3227
0
      else
3228
0
  {
3229
0
    old_sofar = sofar;
3230
#ifdef COFF_IMAGE_WITH_PE
3231
0
    sofar = BFD_ALIGN (sofar, page_size);
3232
#else
3233
0
    sofar = BFD_ALIGN (sofar, (bfd_vma) 1 << current->alignment_power);
3234
#endif
3235
0
    align_adjust = sofar != old_sofar;
3236
0
    current->size += sofar - old_sofar;
3237
0
  }
3238
#endif
3239
3240
#ifdef COFF_IMAGE_WITH_PE
3241
      /* For PE we need to make sure we pad out to the aligned
3242
   size, in case the caller only writes out data to the
3243
   unaligned size.  */
3244
0
      if (pei_section_data (abfd, current)->virt_size < current->size)
3245
0
  align_adjust = true;
3246
#endif
3247
3248
#ifdef _LIB
3249
      /* Force .lib sections to start at zero.  The vma is then
3250
   incremented in coff_set_section_contents.  This is right for
3251
   SVR3.2.  */
3252
0
      if (strcmp (current->name, _LIB) == 0)
3253
0
  bfd_set_section_vma (current, 0);
3254
#endif
3255
3256
#ifdef ALIGN_SECTIONS_IN_FILE
3257
      previous = current;
3258
#endif
3259
0
    }
3260
3261
  /* It is now safe to write to the output file.  If we needed an
3262
     alignment adjustment for the last section, then make sure that
3263
     there is a byte at offset sofar.  If there are no symbols and no
3264
     relocs, then nothing follows the last section.  If we don't force
3265
     the last byte out, then the file may appear to be truncated.  */
3266
0
  if (align_adjust)
3267
0
    {
3268
0
      bfd_byte b;
3269
3270
0
      b = 0;
3271
0
      if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
3272
0
    || bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
3273
0
  return false;
3274
0
    }
3275
3276
  /* Make sure the relocations are aligned.  We don't need to make
3277
     sure that this byte exists, because it will only matter if there
3278
     really are relocs.  */
3279
0
  sofar = BFD_ALIGN (sofar,
3280
0
         (bfd_vma) 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
3281
3282
0
  obj_relocbase (abfd) = sofar;
3283
0
  abfd->output_has_begun = true;
3284
3285
0
  return true;
3286
0
}
Unexecuted instantiation: pei-i386.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-x86_64.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-x86_64.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-x86_64.c:coff_compute_section_file_positions
Unexecuted instantiation: coff64-rs6000.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-aarch64.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-aarch64.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-ia64.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-loongarch64.c:coff_compute_section_file_positions
Unexecuted instantiation: cf-i386lynx.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-go32.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-i386.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-rs6000.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-sh.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-stgo32.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-tic30.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-tic4x.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-tic54x.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-z80.c:coff_compute_section_file_positions
Unexecuted instantiation: coff-z8k.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-arm-wince.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-arm.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-i386.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-mcore.c:coff_compute_section_file_positions
Unexecuted instantiation: pe-sh.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-arm-wince.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-arm.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-mcore.c:coff_compute_section_file_positions
Unexecuted instantiation: pei-sh.c:coff_compute_section_file_positions
3287
3288
#ifdef COFF_IMAGE_WITH_PE
3289
3290
static bool
3291
coff_read_word (bfd *abfd, unsigned int *value, unsigned int *pelength)
3292
0
{
3293
0
  unsigned char b[2];
3294
0
  int status;
3295
3296
0
  status = bfd_bread (b, (bfd_size_type) 2, abfd);
3297
0
  if (status < 1)
3298
0
    {
3299
0
      *value = 0;
3300
0
      return false;
3301
0
    }
3302
3303
0
  if (status == 1)
3304
0
    *value = (unsigned int) b[0];
3305
0
  else
3306
0
    *value = (unsigned int) (b[0] + (b[1] << 8));
3307
3308
0
  *pelength += status;
3309
3310
0
  return true;
3311
0
}
Unexecuted instantiation: pei-i386.c:coff_read_word
Unexecuted instantiation: pei-x86_64.c:coff_read_word
Unexecuted instantiation: pei-aarch64.c:coff_read_word
Unexecuted instantiation: pei-ia64.c:coff_read_word
Unexecuted instantiation: pei-loongarch64.c:coff_read_word
Unexecuted instantiation: pei-arm-wince.c:coff_read_word
Unexecuted instantiation: pei-arm.c:coff_read_word
Unexecuted instantiation: pei-mcore.c:coff_read_word
Unexecuted instantiation: pei-sh.c:coff_read_word
3312
3313
/* Read a two byte number from buffer B returning the result in VALUE.
3314
   No more than BUF_SIZE bytes will be read.
3315
   Returns true upobn success, false otherwise.
3316
   If successful, increases the value stored in PELENGTH by the number
3317
   of bytes read.  */
3318
3319
static bool
3320
coff_read_word_from_buffer (unsigned char *  b,
3321
          int              buf_size,
3322
                            unsigned int *   value,
3323
          unsigned int *   pelength)
3324
0
{
3325
0
  if (buf_size < 1)
3326
0
    {
3327
0
      *value = 0;
3328
0
      return false;
3329
0
    }
3330
3331
0
  if (buf_size == 1)
3332
0
    {
3333
0
      *value = (unsigned int)b[0];
3334
0
      *pelength += 1;
3335
0
    }
3336
0
  else
3337
0
    {
3338
0
      *value = (unsigned int)(b[0] + (b[1] << 8));
3339
0
      *pelength += 2;
3340
0
    }
3341
3342
0
  return true;
3343
0
}
Unexecuted instantiation: pei-i386.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-x86_64.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-aarch64.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-ia64.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-loongarch64.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-arm-wince.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-arm.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-mcore.c:coff_read_word_from_buffer
Unexecuted instantiation: pei-sh.c:coff_read_word_from_buffer
3344
3345
0
#define COFF_CHECKSUM_BUFFER_SIZE 0x800000
3346
3347
static unsigned int
3348
coff_compute_checksum (bfd *abfd, unsigned int *pelength)
3349
0
{
3350
0
  file_ptr filepos;
3351
0
  unsigned int value;
3352
0
  unsigned int total;
3353
0
  unsigned char *buf;
3354
0
  int buf_size;
3355
3356
0
  total = 0;
3357
0
  *pelength = 0;
3358
0
  filepos = (file_ptr) 0;
3359
0
  buf = (unsigned char *) bfd_malloc (COFF_CHECKSUM_BUFFER_SIZE);
3360
0
  if (buf == NULL)
3361
0
    return 0;
3362
0
  buf_size = 0;
3363
3364
0
  do
3365
0
    {
3366
0
      unsigned char *cur_buf;
3367
0
      int cur_buf_size;
3368
3369
0
      if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
3370
0
  return 0;
3371
3372
0
      buf_size = bfd_bread (buf, COFF_CHECKSUM_BUFFER_SIZE, abfd);
3373
0
      cur_buf_size = buf_size;
3374
0
      cur_buf = buf;
3375
3376
0
      while (cur_buf_size > 0)
3377
0
        {
3378
0
          coff_read_word_from_buffer (cur_buf, cur_buf_size, &value, pelength);
3379
0
          cur_buf += 2;
3380
0
          cur_buf_size -= 2;
3381
0
          total += value;
3382
0
          total = 0xffff & (total + (total >> 0x10));
3383
0
        }
3384
3385
0
      filepos += buf_size;
3386
0
    }
3387
0
  while (buf_size > 0);
3388
3389
0
  free (buf);
3390
3391
0
  return (0xffff & (total + (total >> 0x10)));
3392
0
}
Unexecuted instantiation: pei-i386.c:coff_compute_checksum
Unexecuted instantiation: pei-x86_64.c:coff_compute_checksum
Unexecuted instantiation: pei-aarch64.c:coff_compute_checksum
Unexecuted instantiation: pei-ia64.c:coff_compute_checksum
Unexecuted instantiation: pei-loongarch64.c:coff_compute_checksum
Unexecuted instantiation: pei-arm-wince.c:coff_compute_checksum
Unexecuted instantiation: pei-arm.c:coff_compute_checksum
Unexecuted instantiation: pei-mcore.c:coff_compute_checksum
Unexecuted instantiation: pei-sh.c:coff_compute_checksum
3393
3394
static bool
3395
coff_apply_checksum (bfd *abfd)
3396
0
{
3397
0
  unsigned int computed;
3398
0
  unsigned int checksum = 0;
3399
0
  unsigned int peheader;
3400
0
  unsigned int pelength;
3401
3402
0
  if (bfd_seek (abfd, 0x3c, SEEK_SET) != 0)
3403
0
    return false;
3404
3405
0
  if (!coff_read_word (abfd, &peheader, &pelength))
3406
0
    return false;
3407
3408
0
  if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
3409
0
    return false;
3410
3411
0
  checksum = 0;
3412
0
  bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3413
3414
0
  if (bfd_seek (abfd, peheader, SEEK_SET) != 0)
3415
0
    return false;
3416
3417
0
  computed = coff_compute_checksum (abfd, &pelength);
3418
3419
0
  checksum = computed + pelength;
3420
3421
0
  if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
3422
0
    return false;
3423
3424
0
  bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
3425
3426
0
  return true;
3427
0
}
Unexecuted instantiation: pei-i386.c:coff_apply_checksum
Unexecuted instantiation: pei-x86_64.c:coff_apply_checksum
Unexecuted instantiation: pei-aarch64.c:coff_apply_checksum
Unexecuted instantiation: pei-ia64.c:coff_apply_checksum
Unexecuted instantiation: pei-loongarch64.c:coff_apply_checksum
Unexecuted instantiation: pei-arm-wince.c:coff_apply_checksum
Unexecuted instantiation: pei-arm.c:coff_apply_checksum
Unexecuted instantiation: pei-mcore.c:coff_apply_checksum
Unexecuted instantiation: pei-sh.c:coff_apply_checksum
3428
3429
#endif /* COFF_IMAGE_WITH_PE */
3430
3431
static bool
3432
coff_write_object_contents (bfd * abfd)
3433
0
{
3434
0
  asection *current;
3435
0
  bool hasrelocs = false;
3436
0
  bool haslinno = false;
3437
#ifdef COFF_IMAGE_WITH_PE
3438
  bool hasdebug = false;
3439
#endif
3440
0
  file_ptr scn_base;
3441
0
  file_ptr reloc_base;
3442
0
  file_ptr lineno_base;
3443
0
  file_ptr sym_base;
3444
0
  unsigned long reloc_size = 0, reloc_count = 0;
3445
0
  unsigned long lnno_size = 0;
3446
0
  bool long_section_names;
3447
0
  asection *text_sec = NULL;
3448
0
  asection *data_sec = NULL;
3449
0
  asection *bss_sec = NULL;
3450
#ifdef RS6000COFF_C
3451
  asection *tdata_sec = NULL;
3452
  asection *tbss_sec = NULL;
3453
#endif
3454
0
  struct internal_filehdr internal_f;
3455
0
  struct internal_aouthdr internal_a;
3456
#ifdef COFF_LONG_SECTION_NAMES
3457
0
  size_t string_size = STRING_SIZE_SIZE;
3458
#endif
3459
3460
0
  bfd_set_error (bfd_error_system_call);
3461
3462
  /* Make a pass through the symbol table to count line number entries and
3463
     put them into the correct asections.  */
3464
0
  lnno_size = coff_count_linenumbers (abfd) * bfd_coff_linesz (abfd);
3465
3466
0
  if (! abfd->output_has_begun)
3467
0
    {
3468
0
      if (! coff_compute_section_file_positions (abfd))
3469
0
  return false;
3470
0
    }
3471
3472
0
  reloc_base = obj_relocbase (abfd);
3473
3474
  /* Work out the size of the reloc and linno areas.  */
3475
3476
0
  for (current = abfd->sections; current != NULL; current =
3477
0
       current->next)
3478
0
    {
3479
#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
3480
      /* We store the actual reloc count in the first reloc's addr.  */
3481
0
      if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3482
0
  reloc_count ++;
3483
#endif
3484
0
      reloc_count += current->reloc_count;
3485
0
    }
3486
3487
0
  reloc_size = reloc_count * bfd_coff_relsz (abfd);
3488
3489
0
  lineno_base = reloc_base + reloc_size;
3490
0
  sym_base = lineno_base + lnno_size;
3491
3492
  /* Indicate in each section->line_filepos its actual file address.  */
3493
0
  for (current = abfd->sections; current != NULL; current =
3494
0
       current->next)
3495
0
    {
3496
0
      if (current->lineno_count)
3497
0
  {
3498
0
    current->line_filepos = lineno_base;
3499
0
    current->moving_line_filepos = lineno_base;
3500
0
    lineno_base += current->lineno_count * bfd_coff_linesz (abfd);
3501
0
  }
3502
0
      else
3503
0
  current->line_filepos = 0;
3504
3505
0
      if (current->reloc_count)
3506
0
  {
3507
0
    current->rel_filepos = reloc_base;
3508
0
    reloc_base += current->reloc_count * bfd_coff_relsz (abfd);
3509
#ifdef COFF_WITH_EXTENDED_RELOC_COUNTER
3510
    /* Extra reloc to hold real count.  */
3511
0
    if ((obj_pe (abfd) || obj_go32 (abfd)) && current->reloc_count >= 0xffff)
3512
0
      reloc_base += bfd_coff_relsz (abfd);
3513
#endif
3514
0
  }
3515
0
      else
3516
0
  current->rel_filepos = 0;
3517
0
    }
3518
3519
  /* Write section headers to the file.  */
3520
0
  internal_f.f_nscns = 0;
3521
3522
0
  if ((abfd->flags & EXEC_P) != 0)
3523
0
    scn_base = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
3524
0
  else
3525
0
    {
3526
0
      scn_base = bfd_coff_filhsz (abfd);
3527
#ifdef RS6000COFF_C
3528
#ifndef XCOFF64
3529
0
      if (xcoff_data (abfd)->full_aouthdr)
3530
0
  scn_base += bfd_coff_aoutsz (abfd);
3531
0
      else
3532
0
  scn_base += SMALL_AOUTSZ;
3533
#endif
3534
#endif
3535
0
    }
3536
3537
0
  if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
3538
0
    return false;
3539
3540
0
  long_section_names = false;
3541
0
  for (current = abfd->sections;
3542
0
       current != NULL;
3543
0
       current = current->next)
3544
0
    {
3545
0
      struct internal_scnhdr section;
3546
#ifdef COFF_IMAGE_WITH_PE
3547
      bool is_reloc_section = false;
3548
3549
0
      if (strcmp (current->name, DOT_RELOC) == 0)
3550
0
  {
3551
0
    is_reloc_section = true;
3552
0
    hasrelocs = true;
3553
0
    pe_data (abfd)->has_reloc_section = 1;
3554
0
  }
3555
#endif
3556
3557
0
      internal_f.f_nscns++;
3558
3559
0
      strncpy (section.s_name, current->name, SCNNMLEN);
3560
3561
#ifdef COFF_LONG_SECTION_NAMES
3562
      /* Handle long section names as in PE.  This must be compatible
3563
   with the code in coff_write_symbols and _bfd_coff_final_link.  */
3564
0
      if (bfd_coff_long_section_names (abfd))
3565
0
  {
3566
0
    size_t len;
3567
3568
    len = strlen (current->name);
3569
0
    if (len > SCNNMLEN)
3570
0
      {
3571
3572
        /* An inherent limitation of the /nnnnnnn notation used to indicate
3573
     the offset of the long name in the string table is that we
3574
     cannot address entries beyone the ten million byte boundary.  */
3575
0
        if (string_size < 10000000)
3576
0
    {
3577
      /* The s_name field is defined to be NUL-padded but need not
3578
         be NUL-terminated.  We use a temporary buffer so that we
3579
         can still sprintf all eight chars without splatting a
3580
         terminating NUL over the first byte of the following
3581
         member (s_paddr).  */
3582
      /* PR 21096: The +20 is to stop a bogus warning from gcc7
3583
         about a possible buffer overflow.  */
3584
      char s_name_buf[SCNNMLEN + 1 + 20];
3585
3586
      /* We do not need to use snprintf here as we have already
3587
         verified that string_size is not too big, plus we have
3588
         an overlarge buffer, just in case.  */
3589
0
      sprintf (s_name_buf, "/%lu", (unsigned long) string_size);
3590
      /* Then strncpy takes care of any padding for us.  */
3591
0
      strncpy (section.s_name, s_name_buf, SCNNMLEN);
3592
0
    }
3593
0
        else
3594
#ifdef COFF_WITH_PE
3595
0
    {
3596
      /* PE use a base 64 encoding for long section names whose
3597
         index is very large.  But contrary to RFC 4648, there is
3598
         no padding: 6 characters must be generated.  */
3599
0
      static const char base64[] =
3600
0
        "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
3601
0
        "abcdefghijklmnopqrstuvwxyz"
3602
0
        "0123456789+/";
3603
0
      unsigned long off = string_size;
3604
0
      unsigned i;
3605
3606
0
      section.s_name[0] = '/';
3607
0
      section.s_name[1] = '/';
3608
0
      for (i = SCNNMLEN - 1; i >= 2; i--)
3609
0
        {
3610
0
          section.s_name[i] = base64[off & 0x3f];
3611
0
          off >>= 6;
3612
0
        }
3613
0
    }
3614
#endif
3615
0
        if (string_size > 0xffffffffUL - (len + 1)
3616
#ifndef COFF_WITH_PE
3617
0
      || string_size >= 10000000
3618
#endif
3619
0
      )
3620
0
    {
3621
0
      bfd_set_error (bfd_error_file_too_big);
3622
0
      _bfd_error_handler
3623
        /* xgettext:c-format */
3624
0
        (_("%pB: section %pA: string table overflow at offset %ld"),
3625
0
        abfd, current, (unsigned long) string_size);
3626
0
      return false;
3627
0
    }
3628
3629
0
        string_size += len + 1;
3630
0
        long_section_names = true;
3631
0
      }
3632
0
  }
3633
0
#endif
3634
3635
#ifdef _LIB
3636
      /* Always set s_vaddr of .lib to 0.  This is right for SVR3.2
3637
   Ian Taylor <ian@cygnus.com>.  */
3638
0
      if (strcmp (current->name, _LIB) == 0)
3639
0
  section.s_vaddr = 0;
3640
0
      else
3641
0
#endif
3642
0
      section.s_vaddr = current->vma;
3643
0
      section.s_paddr = current->lma;
3644
0
      section.s_size =  current->size;
3645
#ifdef coff_get_section_load_page
3646
0
      section.s_page = coff_get_section_load_page (current);
3647
#else
3648
      section.s_page = 0;
3649
#endif
3650
3651
#ifdef COFF_WITH_PE
3652
      section.s_paddr = 0;
3653
#endif
3654
#ifdef COFF_IMAGE_WITH_PE
3655
      /* Reminder: s_paddr holds the virtual size of the section.  */
3656
0
      if (coff_section_data (abfd, current) != NULL
3657
0
    && pei_section_data (abfd, current) != NULL)
3658
0
  section.s_paddr = pei_section_data (abfd, current)->virt_size;
3659
0
      else
3660
0
  section.s_paddr = 0;
3661
#endif
3662
3663
      /* If this section has no size or is unloadable then the scnptr
3664
   will be 0 too.  */
3665
0
      if (current->size == 0
3666
0
    || (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
3667
0
  section.s_scnptr = 0;
3668
0
      else
3669
0
  section.s_scnptr = current->filepos;
3670
3671
0
      section.s_relptr = current->rel_filepos;
3672
0
      section.s_lnnoptr = current->line_filepos;
3673
0
      section.s_nreloc = current->reloc_count;
3674
0
      section.s_nlnno = current->lineno_count;
3675
#ifndef COFF_IMAGE_WITH_PE
3676
      /* In PEI, relocs come in the .reloc section.  */
3677
0
      if (current->reloc_count != 0)
3678
0
  hasrelocs = true;
3679
#endif
3680
0
      if (current->lineno_count != 0)
3681
0
  haslinno = true;
3682
#ifdef COFF_IMAGE_WITH_PE
3683
0
      if ((current->flags & SEC_DEBUGGING) != 0
3684
0
    && ! is_reloc_section)
3685
0
  hasdebug = true;
3686
#endif
3687
3688
#ifdef RS6000COFF_C
3689
#ifndef XCOFF64
3690
      /* Indicate the use of an XCOFF overflow section header.  */
3691
0
      if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3692
0
  {
3693
0
    section.s_nreloc = 0xffff;
3694
0
    section.s_nlnno = 0xffff;
3695
0
  }
3696
#endif
3697
#endif
3698
3699
0
      section.s_flags = sec_to_styp_flags (current->name, current->flags);
3700
3701
0
      if (!strcmp (current->name, _TEXT))
3702
0
  text_sec = current;
3703
0
      else if (!strcmp (current->name, _DATA))
3704
0
  data_sec = current;
3705
0
      else if (!strcmp (current->name, _BSS))
3706
0
  bss_sec = current;
3707
#ifdef RS6000COFF_C
3708
0
      else if (!strcmp (current->name, _TDATA))
3709
0
  tdata_sec = current;
3710
0
      else if (!strcmp (current->name, _TBSS))
3711
0
  tbss_sec = current;
3712
#endif
3713
3714
3715
#ifdef COFF_ENCODE_ALIGNMENT
3716
0
      if (COFF_ENCODE_ALIGNMENT (abfd, section, current->alignment_power)
3717
0
    && (COFF_DECODE_ALIGNMENT (section.s_flags)
3718
0
        != current->alignment_power))
3719
0
  {
3720
0
    bool warn = (coff_data (abfd)->link_info
3721
0
           && !bfd_link_relocatable (coff_data (abfd)->link_info));
3722
3723
0
    _bfd_error_handler
3724
      /* xgettext:c-format */
3725
0
      (_("%pB:%s section %s: alignment 2**%u not representable"),
3726
0
       abfd, warn ? " warning:" : "", current->name,
3727
0
       current->alignment_power);
3728
0
    if (!warn)
3729
0
      {
3730
0
        bfd_set_error (bfd_error_nonrepresentable_section);
3731
0
        return false;
3732
0
      }
3733
0
  }
3734
0
#endif
3735
3736
#ifdef COFF_IMAGE_WITH_PE
3737
      /* Suppress output of the sections if they are null.  ld
3738
   includes the bss and data sections even if there is no size
3739
   assigned to them.  NT loader doesn't like it if these section
3740
   headers are included if the sections themselves are not
3741
   needed.  See also coff_compute_section_file_positions.  */
3742
0
      if (section.s_size == 0)
3743
0
  internal_f.f_nscns--;
3744
0
      else
3745
0
#endif
3746
0
  {
3747
0
    SCNHDR buff;
3748
0
    bfd_size_type amt = bfd_coff_scnhsz (abfd);
3749
3750
0
    if (bfd_coff_swap_scnhdr_out (abfd, &section, &buff) == 0
3751
0
        || bfd_bwrite (& buff, amt, abfd) != amt)
3752
0
      return false;
3753
0
  }
3754
3755
#ifdef COFF_WITH_PE
3756
      /* PE stores COMDAT section information in the symbol table.  If
3757
   this section is supposed to have some COMDAT info, track down
3758
   the symbol in the symbol table and modify it.  */
3759
0
      if ((current->flags & SEC_LINK_ONCE) != 0)
3760
0
  {
3761
0
    unsigned int i, count;
3762
0
    asymbol **psym;
3763
0
    coff_symbol_type *csym = NULL;
3764
0
    asymbol **psymsec;
3765
3766
    psymsec = NULL;
3767
    count = bfd_get_symcount (abfd);
3768
0
    for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
3769
0
      {
3770
0
        if ((*psym)->section != current)
3771
0
    continue;
3772
3773
        /* Remember the location of the first symbol in this
3774
     section.  */
3775
0
        if (psymsec == NULL)
3776
0
    psymsec = psym;
3777
3778
        /* See if this is the section symbol.  */
3779
0
        if (strcmp ((*psym)->name, current->name) == 0)
3780
0
    {
3781
0
      csym = coff_symbol_from (*psym);
3782
0
      if (csym == NULL
3783
0
          || csym->native == NULL
3784
0
          || ! csym->native->is_sym
3785
0
          || csym->native->u.syment.n_numaux < 1
3786
0
          || csym->native->u.syment.n_sclass != C_STAT
3787
0
          || csym->native->u.syment.n_type != T_NULL)
3788
0
        continue;
3789
3790
      /* Here *PSYM is the section symbol for CURRENT.  */
3791
3792
0
      break;
3793
0
    }
3794
0
      }
3795
3796
    /* Did we find it?
3797
       Note that we might not if we're converting the file from
3798
       some other object file format.  */
3799
0
    if (i < count)
3800
0
      {
3801
0
        combined_entry_type *aux;
3802
3803
        /* We don't touch the x_checksum field.  The
3804
     x_associated field is not currently supported.  */
3805
3806
0
        aux = csym->native + 1;
3807
0
        BFD_ASSERT (! aux->is_sym);
3808
0
        switch (current->flags & SEC_LINK_DUPLICATES)
3809
0
    {
3810
0
    case SEC_LINK_DUPLICATES_DISCARD:
3811
0
      aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
3812
0
      break;
3813
3814
0
    case SEC_LINK_DUPLICATES_ONE_ONLY:
3815
0
      aux->u.auxent.x_scn.x_comdat =
3816
0
        IMAGE_COMDAT_SELECT_NODUPLICATES;
3817
0
      break;
3818
3819
0
    case SEC_LINK_DUPLICATES_SAME_SIZE:
3820
0
      aux->u.auxent.x_scn.x_comdat =
3821
0
        IMAGE_COMDAT_SELECT_SAME_SIZE;
3822
0
      break;
3823
3824
0
    case SEC_LINK_DUPLICATES_SAME_CONTENTS:
3825
0
      aux->u.auxent.x_scn.x_comdat =
3826
0
        IMAGE_COMDAT_SELECT_EXACT_MATCH;
3827
0
      break;
3828
0
    }
3829
3830
        /* The COMDAT symbol must be the first symbol from this
3831
     section in the symbol table.  In order to make this
3832
     work, we move the COMDAT symbol before the first
3833
     symbol we found in the search above.  It's OK to
3834
     rearrange the symbol table at this point, because
3835
     coff_renumber_symbols is going to rearrange it
3836
     further and fix up all the aux entries.  */
3837
0
        if (psym != psymsec)
3838
0
    {
3839
0
      asymbol *hold;
3840
0
      asymbol **pcopy;
3841
3842
0
      hold = *psym;
3843
0
      for (pcopy = psym; pcopy > psymsec; pcopy--)
3844
0
        pcopy[0] = pcopy[-1];
3845
0
      *psymsec = hold;
3846
0
    }
3847
0
      }
3848
0
  }
3849
#endif /* COFF_WITH_PE */
3850
0
    }
3851
3852
#ifdef RS6000COFF_C
3853
#ifndef XCOFF64
3854
  /* XCOFF handles overflows in the reloc and line number count fields
3855
     by creating a new section header to hold the correct values.  */
3856
0
  for (current = abfd->sections; current != NULL; current = current->next)
3857
0
    {
3858
0
      if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
3859
0
  {
3860
0
    struct internal_scnhdr scnhdr;
3861
0
    SCNHDR buff;
3862
0
    bfd_size_type amt;
3863
3864
0
    internal_f.f_nscns++;
3865
0
    memcpy (scnhdr.s_name, ".ovrflo", 8);
3866
0
    scnhdr.s_paddr = current->reloc_count;
3867
0
    scnhdr.s_vaddr = current->lineno_count;
3868
0
    scnhdr.s_size = 0;
3869
0
    scnhdr.s_scnptr = 0;
3870
0
    scnhdr.s_relptr = current->rel_filepos;
3871
0
    scnhdr.s_lnnoptr = current->line_filepos;
3872
0
    scnhdr.s_nreloc = current->target_index;
3873
0
    scnhdr.s_nlnno = current->target_index;
3874
0
    scnhdr.s_flags = STYP_OVRFLO;
3875
0
    amt = bfd_coff_scnhsz (abfd);
3876
0
    if (bfd_coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
3877
0
        || bfd_bwrite (& buff, amt, abfd) != amt)
3878
0
      return false;
3879
0
  }
3880
0
    }
3881
0
#endif
3882
#endif
3883
3884
#if defined (COFF_GO32_EXE) || defined (COFF_GO32)
3885
  /* Pad section headers.  */
3886
0
  if ((abfd->flags & EXEC_P) && abfd->sections != NULL)
3887
0
    {
3888
0
      file_ptr cur_ptr = scn_base
3889
0
       + abfd->section_count * bfd_coff_scnhsz (abfd);
3890
0
      long fill_size = (abfd->sections->filepos - cur_ptr);
3891
0
      bfd_byte *b = bfd_zmalloc (fill_size);
3892
0
      if (b)
3893
0
  {
3894
0
    bfd_bwrite (b, fill_size, abfd);
3895
0
    free (b);
3896
0
  }
3897
0
    }
3898
0
#endif
3899
3900
  /* OK, now set up the filehdr...  */
3901
3902
  /* Don't include the internal abs section in the section count */
3903
3904
  /* We will NOT put a fucking timestamp in the header here. Every time you
3905
     put it back, I will come in and take it out again.  I'm sorry.  This
3906
     field does not belong here.  We fill it with a 0 so it compares the
3907
     same but is not a reasonable time. -- gnu@cygnus.com  */
3908
0
  internal_f.f_timdat = 0;
3909
0
  internal_f.f_flags = 0;
3910
3911
0
  if (abfd->flags & EXEC_P)
3912
0
    internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
3913
0
  else
3914
0
    {
3915
0
      internal_f.f_opthdr = 0;
3916
#ifdef RS6000COFF_C
3917
#ifndef XCOFF64
3918
0
      if (xcoff_data (abfd)->full_aouthdr)
3919
0
  internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
3920
0
      else
3921
0
  internal_f.f_opthdr = SMALL_AOUTSZ;
3922
#endif
3923
#endif
3924
0
    }
3925
3926
0
  if (!hasrelocs)
3927
0
    internal_f.f_flags |= F_RELFLG;
3928
0
  if (!haslinno)
3929
0
    internal_f.f_flags |= F_LNNO;
3930
0
  if (abfd->flags & EXEC_P)
3931
0
    internal_f.f_flags |= F_EXEC;
3932
#ifdef COFF_IMAGE_WITH_PE
3933
0
  if (! hasdebug)
3934
0
    internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
3935
0
  if (pe_data (abfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE)
3936
0
    internal_f.f_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
3937
#endif
3938
3939
#if !defined(COFF_WITH_pex64) && !defined(COFF_WITH_peAArch64) && !defined(COFF_WITH_peLoongArch64)
3940
#ifdef COFF_WITH_PE
3941
0
  internal_f.f_flags |= IMAGE_FILE_32BIT_MACHINE;
3942
#else
3943
0
  if (bfd_little_endian (abfd))
3944
0
    internal_f.f_flags |= F_AR32WR;
3945
0
  else
3946
0
    internal_f.f_flags |= F_AR32W;
3947
#endif
3948
#endif
3949
3950
#ifdef TI_TARGET_ID
3951
  /* Target id is used in TI COFF v1 and later; COFF0 won't use this field,
3952
     but it doesn't hurt to set it internally.  */
3953
0
  internal_f.f_target_id = TI_TARGET_ID;
3954
#endif
3955
3956
  /* FIXME, should do something about the other byte orders and
3957
     architectures.  */
3958
3959
#ifdef RS6000COFF_C
3960
0
  if ((abfd->flags & DYNAMIC) != 0)
3961
0
    internal_f.f_flags |= F_SHROBJ;
3962
0
  if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
3963
0
    internal_f.f_flags |= F_DYNLOAD;
3964
#endif
3965
3966
0
  memset (&internal_a, 0, sizeof internal_a);
3967
3968
  /* Set up architecture-dependent stuff.  */
3969
0
  {
3970
0
    unsigned int magic = 0;
3971
0
    unsigned short flags = 0;
3972
3973
0
    coff_set_flags (abfd, &magic, &flags);
3974
0
    internal_f.f_magic = magic;
3975
0
    internal_f.f_flags |= flags;
3976
    /* ...and the "opt"hdr...  */
3977
3978
#ifdef TICOFF_AOUT_MAGIC
3979
0
    internal_a.magic = TICOFF_AOUT_MAGIC;
3980
#define __A_MAGIC_SET__
3981
#endif
3982
3983
#if defined(ARM)
3984
#define __A_MAGIC_SET__
3985
0
    internal_a.magic = ZMAGIC;
3986
#endif
3987
3988
#if defined(AARCH64)
3989
#define __A_MAGIC_SET__
3990
0
    internal_a.magic = ZMAGIC;
3991
#endif
3992
3993
#if defined(LOONGARCH64)
3994
#define __A_MAGIC_SET__
3995
0
    internal_a.magic = ZMAGIC;
3996
#endif
3997
3998
#if defined MCORE_PE
3999
#define __A_MAGIC_SET__
4000
0
    internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
4001
#endif
4002
4003
#if defined(I386)
4004
#define __A_MAGIC_SET__
4005
#if defined LYNXOS
4006
0
    internal_a.magic = LYNXCOFFMAGIC;
4007
#elif defined AMD64
4008
0
    internal_a.magic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;
4009
#else
4010
0
    internal_a.magic = ZMAGIC;
4011
#endif
4012
#endif /* I386 */
4013
4014
#if defined(IA64)
4015
#define __A_MAGIC_SET__
4016
0
    internal_a.magic = PE32PMAGIC;
4017
#endif /* IA64 */
4018
4019
#if defined(SPARC)
4020
#define __A_MAGIC_SET__
4021
#if defined(LYNXOS)
4022
    internal_a.magic = LYNXCOFFMAGIC;
4023
#endif /* LYNXOS */
4024
#endif /* SPARC */
4025
4026
#ifdef RS6000COFF_C
4027
#define __A_MAGIC_SET__
4028
0
    internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
4029
0
    (abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
4030
0
    RS6K_AOUTHDR_OMAGIC;
4031
#endif
4032
4033
#if defined(SH) && defined(COFF_WITH_PE)
4034
#define __A_MAGIC_SET__
4035
0
    internal_a.magic = SH_PE_MAGIC;
4036
#endif
4037
4038
#if defined(MIPS) && defined(COFF_WITH_PE)
4039
#define __A_MAGIC_SET__
4040
    internal_a.magic = MIPS_PE_MAGIC;
4041
#endif
4042
4043
#ifndef __A_MAGIC_SET__
4044
#include "Your aouthdr magic number is not being set!"
4045
#else
4046
0
#undef __A_MAGIC_SET__
4047
0
#endif
4048
0
  }
4049
4050
#ifdef RS6000COFF_C
4051
  /* XCOFF 32bit needs this to have new behaviour for n_type field.  */
4052
  internal_a.vstamp = 2;
4053
#else
4054
  /* FIXME: Does anybody ever set this to another value?  */
4055
  internal_a.vstamp = 0;
4056
#endif
4057
4058
  /* Now should write relocs, strings, syms.  */
4059
0
  obj_sym_filepos (abfd) = sym_base;
4060
4061
0
  if (bfd_get_symcount (abfd) != 0)
4062
0
    {
4063
0
      int firstundef;
4064
4065
0
      if (!coff_renumber_symbols (abfd, &firstundef))
4066
0
  return false;
4067
0
      coff_mangle_symbols (abfd);
4068
0
      if (! coff_write_symbols (abfd))
4069
0
  return false;
4070
0
      if (! coff_write_linenumbers (abfd))
4071
0
  return false;
4072
0
      if (! coff_write_relocs (abfd, firstundef))
4073
0
  return false;
4074
0
    }
4075
#ifdef COFF_LONG_SECTION_NAMES
4076
0
  else if (long_section_names && ! obj_coff_strings_written (abfd))
4077
0
    {
4078
      /* If we have long section names we have to write out the string
4079
   table even if there are no symbols.  */
4080
0
      if (! coff_write_symbols (abfd))
4081
0
  return false;
4082
0
    }
4083
0
#endif
4084
  /* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
4085
     backend linker, and obj_raw_syment_count is not valid until after
4086
     coff_write_symbols is called.  */
4087
0
  if (obj_raw_syment_count (abfd) != 0)
4088
0
    {
4089
0
      internal_f.f_symptr = sym_base;
4090
#ifdef RS6000COFF_C
4091
      /* AIX appears to require that F_RELFLG not be set if there are
4092
   local symbols but no relocations.  */
4093
0
      internal_f.f_flags &=~ F_RELFLG;
4094
#endif
4095
0
    }
4096
0
  else
4097
0
    {
4098
0
      if (long_section_names)
4099
0
  internal_f.f_symptr = sym_base;
4100
0
      else
4101
0
  internal_f.f_symptr = 0;
4102
0
      internal_f.f_flags |= F_LSYMS;
4103
0
    }
4104
4105
0
  if (text_sec)
4106
0
    {
4107
0
      internal_a.tsize = text_sec->size;
4108
0
      internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
4109
0
    }
4110
0
  if (data_sec)
4111
0
    {
4112
0
      internal_a.dsize = data_sec->size;
4113
0
      internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
4114
0
    }
4115
0
  if (bss_sec)
4116
0
    {
4117
0
      internal_a.bsize = bss_sec->size;
4118
0
      if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
4119
0
  internal_a.data_start = bss_sec->vma;
4120
0
    }
4121
4122
0
  internal_a.entry = bfd_get_start_address (abfd);
4123
0
  internal_f.f_nsyms = obj_raw_syment_count (abfd);
4124
4125
#ifdef RS6000COFF_C
4126
0
  if (xcoff_data (abfd)->full_aouthdr)
4127
0
    {
4128
0
      bfd_vma toc;
4129
0
      asection *loader_sec;
4130
4131
      internal_a.vstamp = 2;
4132
4133
0
      internal_a.o_snentry = xcoff_data (abfd)->snentry;
4134
0
      if (internal_a.o_snentry == 0)
4135
0
  internal_a.entry = (bfd_vma) -1;
4136
4137
0
      if (text_sec != NULL)
4138
0
  {
4139
0
    internal_a.o_sntext = text_sec->target_index;
4140
0
    internal_a.o_algntext = bfd_section_alignment (text_sec);
4141
0
  }
4142
0
      else
4143
0
  {
4144
0
    internal_a.o_sntext = 0;
4145
0
    internal_a.o_algntext = 0;
4146
0
  }
4147
0
      if (data_sec != NULL)
4148
0
  {
4149
0
    internal_a.o_sndata = data_sec->target_index;
4150
0
    internal_a.o_algndata = bfd_section_alignment (data_sec);
4151
0
  }
4152
0
      else
4153
0
  {
4154
0
    internal_a.o_sndata = 0;
4155
0
    internal_a.o_algndata = 0;
4156
0
  }
4157
      loader_sec = bfd_get_section_by_name (abfd, ".loader");
4158
0
      if (loader_sec != NULL)
4159
0
  internal_a.o_snloader = loader_sec->target_index;
4160
0
      else
4161
0
  internal_a.o_snloader = 0;
4162
0
      if (bss_sec != NULL)
4163
0
  internal_a.o_snbss = bss_sec->target_index;
4164
0
      else
4165
0
  internal_a.o_snbss = 0;
4166
4167
0
      if (tdata_sec != NULL)
4168
0
  {
4169
0
    internal_a.o_sntdata = tdata_sec->target_index;
4170
    /* TODO: o_flags should be set to RS6K_AOUTHDR_TLS_LE
4171
       if there is at least one R_TLS_LE relocations.  */
4172
0
    internal_a.o_flags = 0;
4173
#ifdef XCOFF64
4174
    internal_a.o_x64flags = 0;
4175
#endif
4176
0
  }
4177
0
      else
4178
0
  {
4179
0
    internal_a.o_sntdata = 0;
4180
0
    internal_a.o_flags = 0;
4181
#ifdef XCOFF64
4182
    internal_a.o_x64flags = 0;
4183
#endif
4184
0
  }
4185
0
      if (tbss_sec != NULL)
4186
0
    internal_a.o_sntbss = tbss_sec->target_index;
4187
0
      else
4188
0
    internal_a.o_sntbss = 0;
4189
4190
0
      toc = xcoff_data (abfd)->toc;
4191
      internal_a.o_toc = toc;
4192
0
      internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
4193
4194
0
      internal_a.o_modtype = xcoff_data (abfd)->modtype;
4195
0
      if (xcoff_data (abfd)->cputype != -1)
4196
0
  internal_a.o_cputype = xcoff_data (abfd)->cputype;
4197
0
      else
4198
0
  {
4199
0
    switch (bfd_get_arch (abfd))
4200
0
      {
4201
0
      case bfd_arch_rs6000:
4202
0
        internal_a.o_cputype = 4;
4203
0
        break;
4204
0
      case bfd_arch_powerpc:
4205
0
        if (bfd_get_mach (abfd) == bfd_mach_ppc)
4206
0
    internal_a.o_cputype = 3;
4207
0
        else if (bfd_get_mach (abfd) == bfd_mach_ppc_620)
4208
0
    internal_a.o_cputype = 2;
4209
0
        else
4210
0
    internal_a.o_cputype = 1;
4211
0
        break;
4212
0
      default:
4213
0
        abort ();
4214
0
      }
4215
0
  }
4216
0
      internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
4217
0
      internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
4218
0
    }
4219
0
#endif
4220
4221
#ifdef COFF_WITH_PE
4222
  {
4223
    /* After object contents are finalized so we can compute a reasonable hash,
4224
       but before header is written so we can update it to point to debug directory.  */
4225
0
    struct pe_tdata *pe = pe_data (abfd);
4226
4227
0
    if (pe->build_id.after_write_object_contents != NULL)
4228
0
      (*pe->build_id.after_write_object_contents) (abfd);
4229
  }
4230
#endif
4231
4232
  /* Now write header.  */
4233
0
  if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
4234
0
    return false;
4235
4236
0
  {
4237
0
    char * buff;
4238
0
    bfd_size_type amount = bfd_coff_filhsz (abfd);
4239
4240
0
    buff = (char *) bfd_malloc (amount);
4241
0
    if (buff == NULL)
4242
0
      return false;
4243
4244
0
    bfd_coff_swap_filehdr_out (abfd, & internal_f, buff);
4245
0
    amount = bfd_bwrite (buff, amount, abfd);
4246
4247
0
    free (buff);
4248
4249
0
    if (amount != bfd_coff_filhsz (abfd))
4250
0
      return false;
4251
0
  }
4252
4253
0
  if (abfd->flags & EXEC_P)
4254
0
    {
4255
      /* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
4256
   include/coff/pe.h sets AOUTSZ == sizeof (PEAOUTHDR)).  */
4257
0
      char * buff;
4258
0
      bfd_size_type amount = bfd_coff_aoutsz (abfd);
4259
4260
0
      buff = (char *) bfd_malloc (amount);
4261
0
      if (buff == NULL)
4262
0
  return false;
4263
4264
0
      coff_swap_aouthdr_out (abfd, & internal_a, buff);
4265
0
      amount = bfd_bwrite (buff, amount, abfd);
4266
4267
0
      free (buff);
4268
4269
0
      if (amount != bfd_coff_aoutsz (abfd))
4270
0
  return false;
4271
4272
#ifdef COFF_IMAGE_WITH_PE
4273
0
      if (! coff_apply_checksum (abfd))
4274
0
  return false;
4275
#endif
4276
0
    }
4277
#ifdef RS6000COFF_C
4278
#ifndef XCOFF64
4279
  else
4280
0
    {
4281
0
      AOUTHDR buff;
4282
0
      size_t size;
4283
4284
      /* XCOFF32 seems to always write at least a small a.out header.  */
4285
0
      coff_swap_aouthdr_out (abfd, & internal_a, & buff);
4286
0
      if (xcoff_data (abfd)->full_aouthdr)
4287
0
  size = bfd_coff_aoutsz (abfd);
4288
0
      else
4289
0
  size = SMALL_AOUTSZ;
4290
0
      if (bfd_bwrite (& buff, (bfd_size_type) size, abfd) != size)
4291
0
  return false;
4292
0
    }
4293
0
#endif
4294
#endif
4295
4296
0
  return true;
4297
0
}
Unexecuted instantiation: pei-i386.c:coff_write_object_contents
Unexecuted instantiation: pe-x86_64.c:coff_write_object_contents
Unexecuted instantiation: pei-x86_64.c:coff_write_object_contents
Unexecuted instantiation: coff-x86_64.c:coff_write_object_contents
Unexecuted instantiation: coff64-rs6000.c:coff_write_object_contents
Unexecuted instantiation: pei-aarch64.c:coff_write_object_contents
Unexecuted instantiation: pe-aarch64.c:coff_write_object_contents
Unexecuted instantiation: pei-ia64.c:coff_write_object_contents
Unexecuted instantiation: pei-loongarch64.c:coff_write_object_contents
Unexecuted instantiation: cf-i386lynx.c:coff_write_object_contents
Unexecuted instantiation: coff-go32.c:coff_write_object_contents
Unexecuted instantiation: coff-i386.c:coff_write_object_contents
Unexecuted instantiation: coff-rs6000.c:coff_write_object_contents
Unexecuted instantiation: coff-sh.c:coff_write_object_contents
Unexecuted instantiation: coff-stgo32.c:coff_write_object_contents
Unexecuted instantiation: coff-tic30.c:coff_write_object_contents
Unexecuted instantiation: coff-tic4x.c:coff_write_object_contents
Unexecuted instantiation: coff-tic54x.c:coff_write_object_contents
Unexecuted instantiation: coff-z80.c:coff_write_object_contents
Unexecuted instantiation: coff-z8k.c:coff_write_object_contents
Unexecuted instantiation: pe-arm-wince.c:coff_write_object_contents
Unexecuted instantiation: pe-arm.c:coff_write_object_contents
Unexecuted instantiation: pe-i386.c:coff_write_object_contents
Unexecuted instantiation: pe-mcore.c:coff_write_object_contents
Unexecuted instantiation: pe-sh.c:coff_write_object_contents
Unexecuted instantiation: pei-arm-wince.c:coff_write_object_contents
Unexecuted instantiation: pei-arm.c:coff_write_object_contents
Unexecuted instantiation: pei-mcore.c:coff_write_object_contents
Unexecuted instantiation: pei-sh.c:coff_write_object_contents
4298
4299
static bool
4300
coff_set_section_contents (bfd * abfd,
4301
         sec_ptr section,
4302
         const void * location,
4303
         file_ptr offset,
4304
         bfd_size_type count)
4305
0
{
4306
0
  if (! abfd->output_has_begun) /* Set by bfd.c handler.  */
4307
0
    {
4308
0
      if (! coff_compute_section_file_positions (abfd))
4309
0
  return false;
4310
0
    }
4311
4312
#if defined(_LIB) && !defined(TARG_AUX)
4313
   /* The physical address field of a .lib section is used to hold the
4314
      number of shared libraries in the section.  This code counts the
4315
      number of sections being written, and increments the lma field
4316
      with the number.
4317
4318
      I have found no documentation on the contents of this section.
4319
      Experimentation indicates that the section contains zero or more
4320
      records, each of which has the following structure:
4321
4322
      - a (four byte) word holding the length of this record, in words,
4323
      - a word that always seems to be set to "2",
4324
      - the path to a shared library, null-terminated and then padded
4325
  to a whole word boundary.
4326
4327
      bfd_assert calls have been added to alert if an attempt is made
4328
      to write a section which doesn't follow these assumptions.  The
4329
      code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
4330
      <robertl@arnet.com> (Thanks!).
4331
4332
      Gvran Uddeborg <gvran@uddeborg.pp.se>.  */
4333
0
    if (strcmp (section->name, _LIB) == 0)
4334
0
      {
4335
0
  bfd_byte *rec, *recend;
4336
4337
  rec = (bfd_byte *) location;
4338
  recend = rec + count;
4339
0
  while (recend - rec >= 4)
4340
0
    {
4341
0
      size_t len = bfd_get_32 (abfd, rec);
4342
0
      if (len == 0 || len > (size_t) (recend - rec) / 4)
4343
0
        break;
4344
0
      rec += len * 4;
4345
0
      ++section->lma;
4346
0
    }
4347
4348
0
  BFD_ASSERT (rec == recend);
4349
0
      }
4350
0
#endif
4351
4352
  /* Don't write out bss sections - one way to do this is to
4353
       see if the filepos has not been set.  */
4354
0
  if (section->filepos == 0)
4355
0
    return true;
4356
4357
0
  if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0)
4358
0
    return false;
4359
4360
0
  if (count == 0)
4361
0
    return true;
4362
4363
0
  return bfd_bwrite (location, count, abfd) == count;
4364
0
}
Unexecuted instantiation: pei-i386.c:coff_set_section_contents
Unexecuted instantiation: pe-x86_64.c:coff_set_section_contents
Unexecuted instantiation: pei-x86_64.c:coff_set_section_contents
Unexecuted instantiation: coff-x86_64.c:coff_set_section_contents
Unexecuted instantiation: coff64-rs6000.c:coff_set_section_contents
Unexecuted instantiation: pei-aarch64.c:coff_set_section_contents
Unexecuted instantiation: pe-aarch64.c:coff_set_section_contents
Unexecuted instantiation: pei-ia64.c:coff_set_section_contents
Unexecuted instantiation: pei-loongarch64.c:coff_set_section_contents
Unexecuted instantiation: cf-i386lynx.c:coff_set_section_contents
Unexecuted instantiation: coff-go32.c:coff_set_section_contents
Unexecuted instantiation: coff-i386.c:coff_set_section_contents
Unexecuted instantiation: coff-rs6000.c:coff_set_section_contents
Unexecuted instantiation: coff-sh.c:coff_set_section_contents
Unexecuted instantiation: coff-stgo32.c:coff_set_section_contents
Unexecuted instantiation: coff-tic30.c:coff_set_section_contents
Unexecuted instantiation: coff-tic4x.c:coff_set_section_contents
Unexecuted instantiation: coff-tic54x.c:coff_set_section_contents
Unexecuted instantiation: coff-z80.c:coff_set_section_contents
Unexecuted instantiation: coff-z8k.c:coff_set_section_contents
Unexecuted instantiation: pe-arm-wince.c:coff_set_section_contents
Unexecuted instantiation: pe-arm.c:coff_set_section_contents
Unexecuted instantiation: pe-i386.c:coff_set_section_contents
Unexecuted instantiation: pe-mcore.c:coff_set_section_contents
Unexecuted instantiation: pe-sh.c:coff_set_section_contents
Unexecuted instantiation: pei-arm-wince.c:coff_set_section_contents
Unexecuted instantiation: pei-arm.c:coff_set_section_contents
Unexecuted instantiation: pei-mcore.c:coff_set_section_contents
Unexecuted instantiation: pei-sh.c:coff_set_section_contents
4365
4366
static void *
4367
buy_and_read (bfd *abfd, file_ptr where,
4368
        bfd_size_type nmemb, bfd_size_type size)
4369
0
{
4370
0
  size_t amt;
4371
4372
0
  if (_bfd_mul_overflow (nmemb, size, &amt))
4373
0
    {
4374
0
      bfd_set_error (bfd_error_file_too_big);
4375
0
      return NULL;
4376
0
    }
4377
0
  if (bfd_seek (abfd, where, SEEK_SET) != 0)
4378
0
    return NULL;
4379
0
  return _bfd_malloc_and_read (abfd, amt, amt);
4380
0
}
Unexecuted instantiation: pei-i386.c:buy_and_read
Unexecuted instantiation: pe-x86_64.c:buy_and_read
Unexecuted instantiation: pei-x86_64.c:buy_and_read
Unexecuted instantiation: coff-x86_64.c:buy_and_read
Unexecuted instantiation: coff64-rs6000.c:buy_and_read
Unexecuted instantiation: pei-aarch64.c:buy_and_read
Unexecuted instantiation: pe-aarch64.c:buy_and_read
Unexecuted instantiation: pei-ia64.c:buy_and_read
Unexecuted instantiation: pei-loongarch64.c:buy_and_read
Unexecuted instantiation: cf-i386lynx.c:buy_and_read
Unexecuted instantiation: coff-go32.c:buy_and_read
Unexecuted instantiation: coff-i386.c:buy_and_read
Unexecuted instantiation: coff-rs6000.c:buy_and_read
Unexecuted instantiation: coff-sh.c:buy_and_read
Unexecuted instantiation: coff-stgo32.c:buy_and_read
Unexecuted instantiation: coff-tic30.c:buy_and_read
Unexecuted instantiation: coff-tic4x.c:buy_and_read
Unexecuted instantiation: coff-tic54x.c:buy_and_read
Unexecuted instantiation: coff-z80.c:buy_and_read
Unexecuted instantiation: coff-z8k.c:buy_and_read
Unexecuted instantiation: pe-arm-wince.c:buy_and_read
Unexecuted instantiation: pe-arm.c:buy_and_read
Unexecuted instantiation: pe-i386.c:buy_and_read
Unexecuted instantiation: pe-mcore.c:buy_and_read
Unexecuted instantiation: pe-sh.c:buy_and_read
Unexecuted instantiation: pei-arm-wince.c:buy_and_read
Unexecuted instantiation: pei-arm.c:buy_and_read
Unexecuted instantiation: pei-mcore.c:buy_and_read
Unexecuted instantiation: pei-sh.c:buy_and_read
4381
4382
/*
4383
SUBSUBSECTION
4384
  Reading linenumbers
4385
4386
  Creating the linenumber table is done by reading in the entire
4387
  coff linenumber table, and creating another table for internal use.
4388
4389
  A coff linenumber table is structured so that each function
4390
  is marked as having a line number of 0. Each line within the
4391
  function is an offset from the first line in the function. The
4392
  base of the line number information for the table is stored in
4393
  the symbol associated with the function.
4394
4395
  Note: The PE format uses line number 0 for a flag indicating a
4396
  new source file.
4397
4398
  The information is copied from the external to the internal
4399
  table, and each symbol which marks a function is marked by
4400
  pointing its...
4401
4402
  How does this work ?
4403
*/
4404
4405
static int
4406
coff_sort_func_alent (const void * arg1, const void * arg2)
4407
0
{
4408
0
  const alent *al1 = *(const alent **) arg1;
4409
0
  const alent *al2 = *(const alent **) arg2;
4410
0
  const coff_symbol_type *s1 = (const coff_symbol_type *) (al1->u.sym);
4411
0
  const coff_symbol_type *s2 = (const coff_symbol_type *) (al2->u.sym);
4412
4413
0
  if (s1 == NULL || s2 == NULL)
4414
0
    return 0;
4415
0
  if (s1->symbol.value < s2->symbol.value)
4416
0
    return -1;
4417
0
  else if (s1->symbol.value > s2->symbol.value)
4418
0
    return 1;
4419
4420
0
  return 0;
4421
0
}
Unexecuted instantiation: pei-i386.c:coff_sort_func_alent
Unexecuted instantiation: pe-x86_64.c:coff_sort_func_alent
Unexecuted instantiation: pei-x86_64.c:coff_sort_func_alent
Unexecuted instantiation: coff-x86_64.c:coff_sort_func_alent
Unexecuted instantiation: coff64-rs6000.c:coff_sort_func_alent
Unexecuted instantiation: pei-aarch64.c:coff_sort_func_alent
Unexecuted instantiation: pe-aarch64.c:coff_sort_func_alent
Unexecuted instantiation: pei-ia64.c:coff_sort_func_alent
Unexecuted instantiation: pei-loongarch64.c:coff_sort_func_alent
Unexecuted instantiation: cf-i386lynx.c:coff_sort_func_alent
Unexecuted instantiation: coff-go32.c:coff_sort_func_alent
Unexecuted instantiation: coff-i386.c:coff_sort_func_alent
Unexecuted instantiation: coff-rs6000.c:coff_sort_func_alent
Unexecuted instantiation: coff-sh.c:coff_sort_func_alent
Unexecuted instantiation: coff-stgo32.c:coff_sort_func_alent
Unexecuted instantiation: coff-tic30.c:coff_sort_func_alent
Unexecuted instantiation: coff-tic4x.c:coff_sort_func_alent
Unexecuted instantiation: coff-tic54x.c:coff_sort_func_alent
Unexecuted instantiation: coff-z80.c:coff_sort_func_alent
Unexecuted instantiation: coff-z8k.c:coff_sort_func_alent
Unexecuted instantiation: pe-arm-wince.c:coff_sort_func_alent
Unexecuted instantiation: pe-arm.c:coff_sort_func_alent
Unexecuted instantiation: pe-i386.c:coff_sort_func_alent
Unexecuted instantiation: pe-mcore.c:coff_sort_func_alent
Unexecuted instantiation: pe-sh.c:coff_sort_func_alent
Unexecuted instantiation: pei-arm-wince.c:coff_sort_func_alent
Unexecuted instantiation: pei-arm.c:coff_sort_func_alent
Unexecuted instantiation: pei-mcore.c:coff_sort_func_alent
Unexecuted instantiation: pei-sh.c:coff_sort_func_alent
4422
4423
static bool
4424
coff_slurp_line_table (bfd *abfd, asection *asect)
4425
0
{
4426
0
  LINENO *native_lineno;
4427
0
  alent *lineno_cache;
4428
0
  unsigned int counter;
4429
0
  alent *cache_ptr;
4430
0
  bfd_vma prev_offset = 0;
4431
0
  bool ordered = true;
4432
0
  unsigned int nbr_func;
4433
0
  LINENO *src;
4434
0
  bool have_func;
4435
0
  bool ret = true;
4436
0
  size_t amt;
4437
4438
0
  if (asect->lineno_count == 0)
4439
0
    return true;
4440
4441
0
  BFD_ASSERT (asect->lineno == NULL);
4442
4443
0
  native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos,
4444
0
             asect->lineno_count,
4445
0
             bfd_coff_linesz (abfd));
4446
0
  if (native_lineno == NULL)
4447
0
    {
4448
0
      _bfd_error_handler
4449
0
  (_("%pB: warning: line number table read failed"), abfd);
4450
0
      return false;
4451
0
    }
4452
4453
0
  if (_bfd_mul_overflow (asect->lineno_count + 1, sizeof (alent), &amt))
4454
0
    {
4455
0
      bfd_set_error (bfd_error_file_too_big);
4456
0
      free (native_lineno);
4457
0
      return false;
4458
0
    }
4459
0
  lineno_cache = (alent *) bfd_alloc (abfd, amt);
4460
0
  if (lineno_cache == NULL)
4461
0
    {
4462
0
      free (native_lineno);
4463
0
      return false;
4464
0
    }
4465
4466
0
  cache_ptr = lineno_cache;
4467
0
  asect->lineno = lineno_cache;
4468
0
  src = native_lineno;
4469
0
  nbr_func = 0;
4470
0
  have_func = false;
4471
4472
0
  for (counter = 0; counter < asect->lineno_count; counter++, src++)
4473
0
    {
4474
0
      struct internal_lineno dst;
4475
4476
0
      bfd_coff_swap_lineno_in (abfd, src, &dst);
4477
0
      cache_ptr->line_number = dst.l_lnno;
4478
      /* Appease memory checkers that get all excited about
4479
   uninitialised memory when copying alents if u.offset is
4480
   larger than u.sym.  (64-bit BFD on 32-bit host.)  */
4481
0
      memset (&cache_ptr->u, 0, sizeof (cache_ptr->u));
4482
4483
0
      if (cache_ptr->line_number == 0)
4484
0
  {
4485
0
    combined_entry_type * ent;
4486
0
    unsigned long symndx;
4487
0
    coff_symbol_type *sym;
4488
4489
0
    have_func = false;
4490
0
    symndx = dst.l_addr.l_symndx;
4491
0
    if (symndx >= obj_raw_syment_count (abfd))
4492
0
      {
4493
0
        _bfd_error_handler
4494
    /* xgettext:c-format */
4495
0
    (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
4496
0
     abfd, symndx, counter);
4497
0
        cache_ptr->line_number = -1;
4498
0
        ret = false;
4499
0
        continue;
4500
0
      }
4501
4502
0
    ent = obj_raw_syments (abfd) + symndx;
4503
    /* FIXME: We should not be casting between ints and
4504
       pointers like this.  */
4505
0
    if (! ent->is_sym)
4506
0
      {
4507
0
        _bfd_error_handler
4508
    /* xgettext:c-format */
4509
0
    (_("%pB: warning: illegal symbol index 0x%lx in line number entry %d"),
4510
0
     abfd, symndx, counter);
4511
0
        cache_ptr->line_number = -1;
4512
0
        ret = false;
4513
0
        continue;
4514
0
      }
4515
0
    sym = (coff_symbol_type *) (ent->u.syment._n._n_n._n_zeroes);
4516
4517
    /* PR 17512 file: 078-10659-0.004  */
4518
0
    if (sym < obj_symbols (abfd)
4519
0
        || sym >= obj_symbols (abfd) + bfd_get_symcount (abfd))
4520
0
      {
4521
0
        _bfd_error_handler
4522
    /* xgettext:c-format */
4523
0
    (_("%pB: warning: illegal symbol in line number entry %d"),
4524
0
     abfd, counter);
4525
0
        cache_ptr->line_number = -1;
4526
0
        ret = false;
4527
0
        continue;
4528
0
      }
4529
4530
0
    have_func = true;
4531
0
    nbr_func++;
4532
0
    cache_ptr->u.sym = (asymbol *) sym;
4533
0
    if (sym->lineno != NULL)
4534
0
      _bfd_error_handler
4535
        /* xgettext:c-format */
4536
0
        (_("%pB: warning: duplicate line number information for `%s'"),
4537
0
         abfd, bfd_asymbol_name (&sym->symbol));
4538
4539
0
    sym->lineno = cache_ptr;
4540
0
    if (sym->symbol.value < prev_offset)
4541
0
      ordered = false;
4542
0
    prev_offset = sym->symbol.value;
4543
0
  }
4544
0
      else if (!have_func)
4545
  /* Drop line information that has no associated function.
4546
     PR 17521: file: 078-10659-0.004.  */
4547
0
  continue;
4548
0
      else
4549
0
  cache_ptr->u.offset = dst.l_addr.l_paddr - bfd_section_vma (asect);
4550
0
      cache_ptr++;
4551
0
    }
4552
4553
0
  asect->lineno_count = cache_ptr - lineno_cache;
4554
0
  memset (cache_ptr, 0, sizeof (*cache_ptr));
4555
0
  free (native_lineno);
4556
4557
  /* On some systems (eg AIX5.3) the lineno table may not be sorted.  */
4558
0
  if (!ordered)
4559
0
    {
4560
      /* Sort the table.  */
4561
0
      alent **func_table;
4562
0
      alent *n_lineno_cache;
4563
4564
      /* Create a table of functions.  */
4565
0
      if (_bfd_mul_overflow (nbr_func, sizeof (alent *), &amt))
4566
0
  {
4567
0
    bfd_set_error (bfd_error_file_too_big);
4568
0
    ret = false;
4569
0
  }
4570
0
      else if ((func_table = (alent **) bfd_alloc (abfd, amt)) != NULL)
4571
0
  {
4572
0
    alent **p = func_table;
4573
0
    unsigned int i;
4574
4575
0
    for (i = 0; i < asect->lineno_count; i++)
4576
0
      if (lineno_cache[i].line_number == 0)
4577
0
        *p++ = &lineno_cache[i];
4578
4579
0
    BFD_ASSERT ((unsigned int) (p - func_table) == nbr_func);
4580
4581
    /* Sort by functions.  */
4582
0
    qsort (func_table, nbr_func, sizeof (alent *), coff_sort_func_alent);
4583
4584
    /* Create the new sorted table.  */
4585
0
    if (_bfd_mul_overflow (asect->lineno_count, sizeof (alent), &amt))
4586
0
      {
4587
0
        bfd_set_error (bfd_error_file_too_big);
4588
0
        ret = false;
4589
0
      }
4590
0
    else if ((n_lineno_cache = (alent *) bfd_alloc (abfd, amt)) != NULL)
4591
0
      {
4592
0
        alent *n_cache_ptr = n_lineno_cache;
4593
4594
0
        for (i = 0; i < nbr_func; i++)
4595
0
    {
4596
0
      coff_symbol_type *sym;
4597
0
      alent *old_ptr = func_table[i];
4598
4599
      /* Update the function entry.  */
4600
0
      sym = (coff_symbol_type *) old_ptr->u.sym;
4601
      /* PR binutils/17512: Point the lineno to where
4602
         this entry will be after the memcpy below.  */
4603
0
      sym->lineno = lineno_cache + (n_cache_ptr - n_lineno_cache);
4604
      /* Copy the function and line number entries.  */
4605
0
      do
4606
0
        *n_cache_ptr++ = *old_ptr++;
4607
0
      while (old_ptr->line_number != 0);
4608
0
    }
4609
4610
0
        memcpy (lineno_cache, n_lineno_cache,
4611
0
          asect->lineno_count * sizeof (alent));
4612
0
      }
4613
0
    else
4614
0
      ret = false;
4615
0
    bfd_release (abfd, func_table);
4616
0
  }
4617
0
      else
4618
0
  ret = false;
4619
0
    }
4620
4621
0
  return ret;
4622
0
}
Unexecuted instantiation: pei-i386.c:coff_slurp_line_table
Unexecuted instantiation: pe-x86_64.c:coff_slurp_line_table
Unexecuted instantiation: pei-x86_64.c:coff_slurp_line_table
Unexecuted instantiation: coff-x86_64.c:coff_slurp_line_table
Unexecuted instantiation: coff64-rs6000.c:coff_slurp_line_table
Unexecuted instantiation: pei-aarch64.c:coff_slurp_line_table
Unexecuted instantiation: pe-aarch64.c:coff_slurp_line_table
Unexecuted instantiation: pei-ia64.c:coff_slurp_line_table
Unexecuted instantiation: pei-loongarch64.c:coff_slurp_line_table
Unexecuted instantiation: cf-i386lynx.c:coff_slurp_line_table
Unexecuted instantiation: coff-go32.c:coff_slurp_line_table
Unexecuted instantiation: coff-i386.c:coff_slurp_line_table
Unexecuted instantiation: coff-rs6000.c:coff_slurp_line_table
Unexecuted instantiation: coff-sh.c:coff_slurp_line_table
Unexecuted instantiation: coff-stgo32.c:coff_slurp_line_table
Unexecuted instantiation: coff-tic30.c:coff_slurp_line_table
Unexecuted instantiation: coff-tic4x.c:coff_slurp_line_table
Unexecuted instantiation: coff-tic54x.c:coff_slurp_line_table
Unexecuted instantiation: coff-z80.c:coff_slurp_line_table
Unexecuted instantiation: coff-z8k.c:coff_slurp_line_table
Unexecuted instantiation: pe-arm-wince.c:coff_slurp_line_table
Unexecuted instantiation: pe-arm.c:coff_slurp_line_table
Unexecuted instantiation: pe-i386.c:coff_slurp_line_table
Unexecuted instantiation: pe-mcore.c:coff_slurp_line_table
Unexecuted instantiation: pe-sh.c:coff_slurp_line_table
Unexecuted instantiation: pei-arm-wince.c:coff_slurp_line_table
Unexecuted instantiation: pei-arm.c:coff_slurp_line_table
Unexecuted instantiation: pei-mcore.c:coff_slurp_line_table
Unexecuted instantiation: pei-sh.c:coff_slurp_line_table
4623
4624
/* Slurp in the symbol table, converting it to generic form.  Note
4625
   that if coff_relocate_section is defined, the linker will read
4626
   symbols via coff_link_add_symbols, rather than via this routine.  */
4627
4628
static bool
4629
coff_slurp_symbol_table (bfd * abfd)
4630
0
{
4631
0
  combined_entry_type *native_symbols;
4632
0
  coff_symbol_type *cached_area;
4633
0
  unsigned int *table_ptr;
4634
0
  unsigned int number_of_symbols = 0;
4635
0
  bool ret = true;
4636
0
  size_t amt;
4637
4638
0
  if (obj_symbols (abfd))
4639
0
    return true;
4640
4641
  /* Read in the symbol table.  */
4642
0
  if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
4643
0
    return false;
4644
4645
  /* Allocate enough room for all the symbols in cached form.  */
4646
0
  if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4647
0
       sizeof (*cached_area), &amt))
4648
0
    {
4649
0
      bfd_set_error (bfd_error_file_too_big);
4650
0
      return false;
4651
0
    }
4652
0
  cached_area = (coff_symbol_type *) bfd_alloc (abfd, amt);
4653
0
  if (cached_area == NULL)
4654
0
    return false;
4655
4656
0
  if (_bfd_mul_overflow (obj_raw_syment_count (abfd),
4657
0
       sizeof (*table_ptr), &amt))
4658
0
    {
4659
0
      bfd_set_error (bfd_error_file_too_big);
4660
0
      return false;
4661
0
    }
4662
0
  table_ptr = (unsigned int *) bfd_zalloc (abfd, amt);
4663
0
  if (table_ptr == NULL)
4664
0
    return false;
4665
0
  else
4666
0
    {
4667
0
      coff_symbol_type *dst = cached_area;
4668
0
      unsigned int last_native_index = obj_raw_syment_count (abfd);
4669
0
      unsigned int this_index = 0;
4670
4671
0
      while (this_index < last_native_index)
4672
0
  {
4673
0
    combined_entry_type *src = native_symbols + this_index;
4674
0
    table_ptr[this_index] = number_of_symbols;
4675
4676
0
    dst->symbol.the_bfd = abfd;
4677
0
    BFD_ASSERT (src->is_sym);
4678
0
    dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
4679
    /* We use the native name field to point to the cached field.  */
4680
0
    src->u.syment._n._n_n._n_zeroes = (uintptr_t) dst;
4681
0
    dst->symbol.section = coff_section_from_bfd_index (abfd,
4682
0
                 src->u.syment.n_scnum);
4683
0
    dst->symbol.flags = 0;
4684
    /* PR 17512: file: 079-7098-0.001:0.1.  */
4685
0
    dst->symbol.value = 0;
4686
0
    dst->done_lineno = false;
4687
4688
0
    switch (src->u.syment.n_sclass)
4689
0
      {
4690
0
      case C_EXT:
4691
0
      case C_WEAKEXT:
4692
#if defined ARM
4693
0
      case C_THUMBEXT:
4694
0
      case C_THUMBEXTFUNC:
4695
#endif
4696
#ifdef RS6000COFF_C
4697
0
      case C_HIDEXT:
4698
0
#if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
4699
0
      case C_AIX_WEAKEXT:
4700
#endif
4701
#endif
4702
0
#ifdef C_SYSTEM
4703
0
      case C_SYSTEM: /* System Wide variable.  */
4704
0
#endif
4705
#ifdef COFF_WITH_PE
4706
      /* In PE, 0x68 (104) denotes a section symbol.  */
4707
0
      case C_SECTION:
4708
      /* In PE, 0x69 (105) denotes a weak external symbol.  */
4709
0
      case C_NT_WEAK:
4710
#endif
4711
0
        switch (coff_classify_symbol (abfd, &src->u.syment))
4712
0
    {
4713
0
    case COFF_SYMBOL_GLOBAL:
4714
0
      dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
4715
#if defined COFF_WITH_PE
4716
      /* PE sets the symbol to a value relative to the
4717
         start of the section.  */
4718
      dst->symbol.value = src->u.syment.n_value;
4719
#else
4720
      dst->symbol.value = (src->u.syment.n_value
4721
               - dst->symbol.section->vma);
4722
#endif
4723
0
      if (ISFCN ((src->u.syment.n_type)))
4724
        /* A function ext does not go at the end of a
4725
           file.  */
4726
0
        dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4727
0
      break;
4728
4729
0
    case COFF_SYMBOL_COMMON:
4730
0
      dst->symbol.section = bfd_com_section_ptr;
4731
0
      dst->symbol.value = src->u.syment.n_value;
4732
0
      break;
4733
4734
0
    case COFF_SYMBOL_UNDEFINED:
4735
0
      dst->symbol.section = bfd_und_section_ptr;
4736
0
      dst->symbol.value = 0;
4737
0
      break;
4738
4739
0
    case COFF_SYMBOL_PE_SECTION:
4740
0
      dst->symbol.flags |= BSF_EXPORT | BSF_SECTION_SYM;
4741
0
      dst->symbol.value = 0;
4742
0
      break;
4743
4744
0
    case COFF_SYMBOL_LOCAL:
4745
0
      dst->symbol.flags = BSF_LOCAL;
4746
#if defined COFF_WITH_PE
4747
      /* PE sets the symbol to a value relative to the
4748
         start of the section.  */
4749
      dst->symbol.value = src->u.syment.n_value;
4750
#else
4751
      dst->symbol.value = (src->u.syment.n_value
4752
               - dst->symbol.section->vma);
4753
#endif
4754
0
      if (ISFCN ((src->u.syment.n_type)))
4755
0
        dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
4756
0
      break;
4757
0
    }
4758
4759
#ifdef RS6000COFF_C
4760
        /* A symbol with a csect entry should not go at the end.  */
4761
0
        if (src->u.syment.n_numaux > 0)
4762
0
    dst->symbol.flags |= BSF_NOT_AT_END;
4763
#endif
4764
4765
#ifdef COFF_WITH_PE
4766
0
        if (src->u.syment.n_sclass == C_NT_WEAK)
4767
0
    dst->symbol.flags |= BSF_WEAK;
4768
4769
0
        if (src->u.syment.n_sclass == C_SECTION
4770
0
      && src->u.syment.n_scnum > 0)
4771
0
    dst->symbol.flags = BSF_LOCAL;
4772
#endif
4773
0
        if (src->u.syment.n_sclass == C_WEAKEXT
4774
#ifdef RS6000COFF_C
4775
0
      || src->u.syment.n_sclass == C_AIX_WEAKEXT
4776
#endif
4777
0
      )
4778
0
    dst->symbol.flags |= BSF_WEAK;
4779
4780
0
        break;
4781
4782
0
      case C_STAT:  /* Static.  */
4783
#if defined ARM
4784
0
      case C_THUMBSTAT:    /* Thumb static.  */
4785
0
      case C_THUMBLABEL:   /* Thumb label.  */
4786
0
      case C_THUMBSTATFUNC:/* Thumb static function.  */
4787
#endif
4788
#ifdef RS6000COFF_C
4789
0
      case C_DWARF:  /* A label in a dwarf section.  */
4790
0
      case C_INFO:  /* A label in a comment section.  */
4791
#endif
4792
0
      case C_LABEL:  /* Label.  */
4793
0
        if (src->u.syment.n_scnum == N_DEBUG)
4794
0
    dst->symbol.flags = BSF_DEBUGGING;
4795
0
        else
4796
0
    dst->symbol.flags = BSF_LOCAL;
4797
4798
        /* Base the value as an index from the base of the
4799
     section, if there is one.  */
4800
0
        if (dst->symbol.section)
4801
0
    {
4802
#if defined COFF_WITH_PE
4803
      /* PE sets the symbol to a value relative to the
4804
         start of the section.  */
4805
      dst->symbol.value = src->u.syment.n_value;
4806
#else
4807
      dst->symbol.value = (src->u.syment.n_value
4808
               - dst->symbol.section->vma);
4809
#endif
4810
0
    }
4811
0
        else
4812
0
    dst->symbol.value = src->u.syment.n_value;
4813
0
        break;
4814
4815
0
      case C_FILE: /* File name.  */
4816
0
        dst->symbol.flags = BSF_FILE;
4817
        /* Fall through.  */
4818
0
      case C_MOS:   /* Member of structure.  */
4819
0
      case C_EOS:   /* End of structure.  */
4820
0
      case C_REGPARM: /* Register parameter.  */
4821
0
      case C_REG:   /* register variable.  */
4822
        /* C_AUTOARG conflicts with TI COFF C_UEXT.  */
4823
0
      case C_TPDEF: /* Type definition.  */
4824
0
      case C_ARG:
4825
0
      case C_AUTO: /* Automatic variable.  */
4826
0
      case C_FIELD: /* Bit field.  */
4827
0
      case C_ENTAG: /* Enumeration tag.  */
4828
0
      case C_MOE:   /* Member of enumeration.  */
4829
0
      case C_MOU:   /* Member of union.  */
4830
0
      case C_UNTAG: /* Union tag.  */
4831
0
      case C_STRTAG: /* Structure tag.  */
4832
#ifdef RS6000COFF_C
4833
0
      case C_GSYM:
4834
0
      case C_LSYM:
4835
0
      case C_PSYM:
4836
0
      case C_RSYM:
4837
0
      case C_RPSYM:
4838
0
      case C_STSYM:
4839
0
      case C_TCSYM:
4840
0
      case C_BCOMM:
4841
0
      case C_ECOML:
4842
0
      case C_ECOMM:
4843
0
      case C_DECL:
4844
0
      case C_ENTRY:
4845
0
      case C_FUN:
4846
0
      case C_ESTAT:
4847
#endif
4848
0
        dst->symbol.flags |= BSF_DEBUGGING;
4849
0
        dst->symbol.value = (src->u.syment.n_value);
4850
0
        break;
4851
4852
#ifdef RS6000COFF_C
4853
0
      case C_BINCL: /* Beginning of include file.  */
4854
0
      case C_EINCL: /* Ending of include file.  */
4855
        /* The value is actually a pointer into the line numbers
4856
     of the file.  We locate the line number entry, and
4857
     set the section to the section which contains it, and
4858
     the value to the index in that section.  */
4859
0
        {
4860
0
    asection *sec;
4861
4862
0
    dst->symbol.flags = BSF_DEBUGGING;
4863
0
    for (sec = abfd->sections; sec != NULL; sec = sec->next)
4864
0
      if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
4865
0
          && ((file_ptr) (sec->line_filepos
4866
0
              + sec->lineno_count * bfd_coff_linesz (abfd))
4867
0
        > (file_ptr) src->u.syment.n_value))
4868
0
        break;
4869
0
    if (sec == NULL)
4870
0
      dst->symbol.value = 0;
4871
0
    else
4872
0
      {
4873
0
        dst->symbol.section = sec;
4874
0
        dst->symbol.value = ((src->u.syment.n_value
4875
0
            - sec->line_filepos)
4876
0
           / bfd_coff_linesz (abfd));
4877
0
        src->fix_line = 1;
4878
0
      }
4879
0
        }
4880
0
        break;
4881
4882
0
      case C_BSTAT:
4883
0
        dst->symbol.flags = BSF_DEBUGGING;
4884
4885
0
        if (src->u.syment.n_value >= obj_raw_syment_count (abfd))
4886
0
    dst->symbol.value = 0;
4887
0
        else
4888
0
    {
4889
      /* The value is actually a symbol index.  Save a pointer
4890
         to the symbol instead of the index.  FIXME: This
4891
         should use a union.  */
4892
0
      src->u.syment.n_value
4893
0
        = (uintptr_t) (native_symbols + src->u.syment.n_value);
4894
0
      dst->symbol.value = src->u.syment.n_value;
4895
0
      src->fix_value = 1;
4896
0
    }
4897
0
        break;
4898
0
#endif
4899
4900
0
      case C_BLOCK: /* ".bb" or ".eb".  */
4901
0
      case C_FCN:   /* ".bf" or ".ef" (or PE ".lf").  */
4902
0
      case C_EFCN: /* Physical end of function.  */
4903
#if defined COFF_WITH_PE
4904
        /* PE sets the symbol to a value relative to the start
4905
     of the section.  */
4906
        dst->symbol.value = src->u.syment.n_value;
4907
0
        if (strcmp (dst->symbol.name, ".bf") != 0)
4908
0
    {
4909
      /* PE uses funny values for .ef and .lf; don't
4910
         relocate them.  */
4911
0
      dst->symbol.flags = BSF_DEBUGGING;
4912
0
    }
4913
0
        else
4914
0
    dst->symbol.flags = BSF_DEBUGGING | BSF_DEBUGGING_RELOC;
4915
#else
4916
        /* Base the value as an index from the base of the
4917
     section.  */
4918
0
        dst->symbol.flags = BSF_LOCAL;
4919
        dst->symbol.value = (src->u.syment.n_value
4920
           - dst->symbol.section->vma);
4921
#endif
4922
0
        break;
4923
4924
0
      case C_STATLAB: /* Static load time label.  */
4925
0
        dst->symbol.value = src->u.syment.n_value;
4926
0
        dst->symbol.flags = BSF_GLOBAL;
4927
0
        break;
4928
4929
0
      case C_NULL:
4930
        /* PE DLLs sometimes have zeroed out symbols for some
4931
     reason.  Just ignore them without a warning.  */
4932
0
        if (src->u.syment.n_type == 0
4933
0
      && src->u.syment.n_value == 0
4934
0
      && src->u.syment.n_scnum == 0)
4935
0
    break;
4936
#ifdef RS6000COFF_C
4937
        /* XCOFF specific: deleted entry.  */
4938
0
        if (src->u.syment.n_value == C_NULL_VALUE)
4939
0
    break;
4940
0
#endif
4941
        /* Fall through.  */
4942
0
      case C_EXTDEF: /* External definition.  */
4943
0
      case C_ULABEL: /* Undefined label.  */
4944
0
      case C_USTATIC: /* Undefined static.  */
4945
#ifndef COFF_WITH_PE
4946
      /* C_LINE in regular coff is 0x68.  NT has taken over this storage
4947
         class to represent a section symbol.  */
4948
0
      case C_LINE: /* line # reformatted as symbol table entry.  */
4949
        /* NT uses 0x67 for a weak symbol, not C_ALIAS.  */
4950
0
      case C_ALIAS: /* Duplicate tag.  */
4951
0
#endif
4952
        /* New storage classes for TI COFF.  */
4953
#ifdef TICOFF
4954
0
      case C_UEXT: /* Tentative external definition.  */
4955
#endif
4956
0
      case C_EXTLAB: /* External load time label.  */
4957
0
      default:
4958
0
        _bfd_error_handler
4959
    /* xgettext:c-format */
4960
0
    (_("%pB: unrecognized storage class %d for %s symbol `%s'"),
4961
0
     abfd, src->u.syment.n_sclass,
4962
0
     dst->symbol.section->name, dst->symbol.name);
4963
0
        ret = false;
4964
        /* Fall through.  */
4965
0
      case C_HIDDEN: /* Ext symbol in dmert public lib.  */
4966
        /* PR 20722: These symbols can also be generated by
4967
     building DLLs with --gc-sections enabled.  */
4968
0
        dst->symbol.flags = BSF_DEBUGGING;
4969
0
        dst->symbol.value = (src->u.syment.n_value);
4970
0
        break;
4971
0
      }
4972
4973
0
    dst->native = src;
4974
0
    dst->symbol.udata.i = 0;
4975
0
    dst->lineno = NULL;
4976
4977
0
    this_index += (src->u.syment.n_numaux) + 1;
4978
0
    dst++;
4979
0
    number_of_symbols++;
4980
0
  }
4981
0
    }
4982
4983
0
  obj_symbols (abfd) = cached_area;
4984
0
  obj_raw_syments (abfd) = native_symbols;
4985
4986
0
  abfd->symcount = number_of_symbols;
4987
0
  obj_convert (abfd) = table_ptr;
4988
  /* Slurp the line tables for each section too.  */
4989
0
  {
4990
0
    asection *p;
4991
4992
0
    p = abfd->sections;
4993
0
    while (p)
4994
0
      {
4995
0
  if (! coff_slurp_line_table (abfd, p))
4996
0
    return false;
4997
0
  p = p->next;
4998
0
      }
4999
0
  }
5000
5001
0
  return ret;
5002
0
}
Unexecuted instantiation: pei-i386.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-x86_64.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-x86_64.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-x86_64.c:coff_slurp_symbol_table
Unexecuted instantiation: coff64-rs6000.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-aarch64.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-aarch64.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-ia64.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-loongarch64.c:coff_slurp_symbol_table
Unexecuted instantiation: cf-i386lynx.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-go32.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-i386.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-rs6000.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-sh.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-stgo32.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-tic30.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-tic4x.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-tic54x.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-z80.c:coff_slurp_symbol_table
Unexecuted instantiation: coff-z8k.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-arm-wince.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-arm.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-i386.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-mcore.c:coff_slurp_symbol_table
Unexecuted instantiation: pe-sh.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-arm-wince.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-arm.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-mcore.c:coff_slurp_symbol_table
Unexecuted instantiation: pei-sh.c:coff_slurp_symbol_table
5003
5004
/* Classify a COFF symbol.  A couple of targets have globally visible
5005
   symbols which are not class C_EXT, and this handles those.  It also
5006
   recognizes some special PE cases.  */
5007
5008
static enum coff_symbol_classification
5009
coff_classify_symbol (bfd *abfd,
5010
          struct internal_syment *syment)
5011
0
{
5012
  /* FIXME: This partially duplicates the switch in
5013
     coff_slurp_symbol_table.  */
5014
0
  switch (syment->n_sclass)
5015
0
    {
5016
0
    case C_EXT:
5017
0
    case C_WEAKEXT:
5018
#ifdef ARM
5019
0
    case C_THUMBEXT:
5020
0
    case C_THUMBEXTFUNC:
5021
#endif
5022
#ifdef RS6000COFF_C
5023
0
    case C_HIDEXT:
5024
0
#if ! defined _AIX52 && ! defined AIX_WEAK_SUPPORT
5025
0
    case C_AIX_WEAKEXT:
5026
#endif
5027
#endif
5028
0
#ifdef C_SYSTEM
5029
0
    case C_SYSTEM:
5030
0
#endif
5031
#ifdef COFF_WITH_PE
5032
0
    case C_NT_WEAK:
5033
#endif
5034
0
      if (syment->n_scnum == 0)
5035
0
  {
5036
0
    if (syment->n_value == 0)
5037
0
      return COFF_SYMBOL_UNDEFINED;
5038
0
    else
5039
0
      return COFF_SYMBOL_COMMON;
5040
0
  }
5041
#ifdef RS6000COFF_C
5042
0
      if (syment->n_sclass == C_HIDEXT)
5043
0
  return COFF_SYMBOL_LOCAL;
5044
0
#endif
5045
0
      return COFF_SYMBOL_GLOBAL;
5046
5047
0
    default:
5048
0
      break;
5049
0
    }
5050
5051
#ifdef COFF_WITH_PE
5052
0
  if (syment->n_sclass == C_STAT)
5053
0
    {
5054
0
      if (syment->n_scnum == 0)
5055
  /* The Microsoft compiler sometimes generates these if a
5056
     small static function is inlined every time it is used.
5057
     The function is discarded, but the symbol table entry
5058
     remains.  */
5059
0
  return COFF_SYMBOL_LOCAL;
5060
5061
#ifdef STRICT_PE_FORMAT
5062
      /* This is correct for Microsoft generated objects, but it
5063
   breaks gas generated objects.  */
5064
      if (syment->n_value == 0)
5065
  {
5066
    const asection *sec;
5067
    const char *name;
5068
    char buf[SYMNMLEN + 1];
5069
5070
    name = _bfd_coff_internal_syment_name (abfd, syment, buf);
5071
    sec = coff_section_from_bfd_index (abfd, syment->n_scnum);
5072
    if (sec != NULL && name != NULL
5073
        && (strcmp (bfd_section_name (sec), name) == 0))
5074
      return COFF_SYMBOL_PE_SECTION;
5075
  }
5076
#endif
5077
5078
0
      return COFF_SYMBOL_LOCAL;
5079
0
    }
5080
5081
0
  if (syment->n_sclass == C_SECTION)
5082
0
    {
5083
      /* In some cases in a DLL generated by the Microsoft linker, the
5084
   n_value field will contain garbage.  FIXME: This should
5085
   probably be handled by the swapping function instead.  */
5086
0
      syment->n_value = 0;
5087
0
      if (syment->n_scnum == 0)
5088
0
  return COFF_SYMBOL_UNDEFINED;
5089
0
      return COFF_SYMBOL_PE_SECTION;
5090
0
    }
5091
0
#endif /* COFF_WITH_PE */
5092
5093
  /* If it is not a global symbol, we presume it is a local symbol.  */
5094
0
  if (syment->n_scnum == 0)
5095
0
    {
5096
0
      char buf[SYMNMLEN + 1];
5097
5098
0
      _bfd_error_handler
5099
  /* xgettext:c-format */
5100
0
  (_("warning: %pB: local symbol `%s' has no section"),
5101
0
   abfd, _bfd_coff_internal_syment_name (abfd, syment, buf));
5102
0
    }
5103
5104
0
  return COFF_SYMBOL_LOCAL;
5105
0
}
Unexecuted instantiation: pei-i386.c:coff_classify_symbol
Unexecuted instantiation: pe-x86_64.c:coff_classify_symbol
Unexecuted instantiation: pei-x86_64.c:coff_classify_symbol
Unexecuted instantiation: coff-x86_64.c:coff_classify_symbol
Unexecuted instantiation: coff64-rs6000.c:coff_classify_symbol
Unexecuted instantiation: pei-aarch64.c:coff_classify_symbol
Unexecuted instantiation: pe-aarch64.c:coff_classify_symbol
Unexecuted instantiation: pei-ia64.c:coff_classify_symbol
Unexecuted instantiation: pei-loongarch64.c:coff_classify_symbol
Unexecuted instantiation: cf-i386lynx.c:coff_classify_symbol
Unexecuted instantiation: coff-go32.c:coff_classify_symbol
Unexecuted instantiation: coff-i386.c:coff_classify_symbol
Unexecuted instantiation: coff-rs6000.c:coff_classify_symbol
Unexecuted instantiation: coff-sh.c:coff_classify_symbol
Unexecuted instantiation: coff-stgo32.c:coff_classify_symbol
Unexecuted instantiation: coff-tic30.c:coff_classify_symbol
Unexecuted instantiation: coff-tic4x.c:coff_classify_symbol
Unexecuted instantiation: coff-tic54x.c:coff_classify_symbol
Unexecuted instantiation: coff-z80.c:coff_classify_symbol
Unexecuted instantiation: coff-z8k.c:coff_classify_symbol
Unexecuted instantiation: pe-arm-wince.c:coff_classify_symbol
Unexecuted instantiation: pe-arm.c:coff_classify_symbol
Unexecuted instantiation: pe-i386.c:coff_classify_symbol
Unexecuted instantiation: pe-mcore.c:coff_classify_symbol
Unexecuted instantiation: pe-sh.c:coff_classify_symbol
Unexecuted instantiation: pei-arm-wince.c:coff_classify_symbol
Unexecuted instantiation: pei-arm.c:coff_classify_symbol
Unexecuted instantiation: pei-mcore.c:coff_classify_symbol
Unexecuted instantiation: pei-sh.c:coff_classify_symbol
5106
5107
/*
5108
SUBSUBSECTION
5109
  Reading relocations
5110
5111
  Coff relocations are easily transformed into the internal BFD form
5112
  (@code{arelent}).
5113
5114
  Reading a coff relocation table is done in the following stages:
5115
5116
  o Read the entire coff relocation table into memory.
5117
5118
  o Process each relocation in turn; first swap it from the
5119
  external to the internal form.
5120
5121
  o Turn the symbol referenced in the relocation's symbol index
5122
  into a pointer into the canonical symbol table.
5123
  This table is the same as the one returned by a call to
5124
  @code{bfd_canonicalize_symtab}. The back end will call that
5125
  routine and save the result if a canonicalization hasn't been done.
5126
5127
  o The reloc index is turned into a pointer to a howto
5128
  structure, in a back end specific way. For instance, the 386
5129
  uses the @code{r_type} to directly produce an index
5130
  into a howto table vector.
5131
5132
  o Note that @code{arelent.addend} for COFF is often not what
5133
  most people understand as a relocation addend, but rather an
5134
  adjustment to the relocation addend stored in section contents
5135
  of relocatable object files.  The value found in section
5136
  contents may also be confusing, depending on both symbol value
5137
  and addend somewhat similar to the field value for a
5138
  final-linked object.  See @code{CALC_ADDEND}.
5139
*/
5140
5141
#ifndef CALC_ADDEND
5142
#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr)    \
5143
0
  {               \
5144
0
    coff_symbol_type *coffsym = NULL;       \
5145
0
                \
5146
0
    if (ptr && bfd_asymbol_bfd (ptr) != abfd)     \
5147
0
      coffsym = (obj_symbols (abfd)       \
5148
0
     + (cache_ptr->sym_ptr_ptr - symbols));   \
5149
0
    else if (ptr)           \
5150
0
      coffsym = coff_symbol_from (ptr);       \
5151
0
    if (coffsym != NULL            \
5152
0
  && coffsym->native->is_sym        \
5153
0
  && coffsym->native->u.syment.n_scnum == 0)   \
5154
0
      cache_ptr->addend = 0;         \
5155
0
    else if (ptr && bfd_asymbol_bfd (ptr) == abfd    \
5156
0
       && ptr->section != NULL)       \
5157
0
      cache_ptr->addend = - (ptr->section->vma + ptr->value); \
5158
0
    else              \
5159
0
      cache_ptr->addend = 0;         \
5160
0
  }
5161
#endif
5162
5163
static bool
5164
coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
5165
0
{
5166
0
  bfd_byte *native_relocs;
5167
0
  arelent *reloc_cache;
5168
0
  arelent *cache_ptr;
5169
0
  unsigned int idx;
5170
0
  size_t amt;
5171
5172
0
  if (asect->relocation)
5173
0
    return true;
5174
0
  if (asect->reloc_count == 0)
5175
0
    return true;
5176
0
  if (asect->flags & SEC_CONSTRUCTOR)
5177
0
    return true;
5178
0
  if (!coff_slurp_symbol_table (abfd))
5179
0
    return false;
5180
5181
0
  native_relocs = (bfd_byte *) buy_and_read (abfd, asect->rel_filepos,
5182
0
               asect->reloc_count,
5183
0
               bfd_coff_relsz (abfd));
5184
0
  if (native_relocs == NULL)
5185
0
    return false;
5186
5187
0
  if (_bfd_mul_overflow (asect->reloc_count, sizeof (arelent), &amt))
5188
0
    {
5189
0
      bfd_set_error (bfd_error_file_too_big);
5190
0
      return false;
5191
0
    }
5192
0
  reloc_cache = (arelent *) bfd_alloc (abfd, amt);
5193
0
  if (reloc_cache == NULL)
5194
0
    {
5195
0
      free (native_relocs);
5196
0
      return false;
5197
0
    }
5198
5199
0
  for (idx = 0; idx < asect->reloc_count; idx++)
5200
0
    {
5201
0
      struct internal_reloc dst;
5202
0
      void *src;
5203
#ifndef RELOC_PROCESSING
5204
      asymbol *ptr;
5205
#endif
5206
5207
0
      cache_ptr = reloc_cache + idx;
5208
0
      src = native_relocs + idx * (size_t) bfd_coff_relsz (abfd);
5209
5210
0
      dst.r_offset = 0;
5211
0
      bfd_coff_swap_reloc_in (abfd, src, &dst);
5212
5213
#ifdef RELOC_PROCESSING
5214
0
      RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
5215
#else
5216
      cache_ptr->address = dst.r_vaddr;
5217
5218
0
      if (dst.r_symndx != -1 && symbols != NULL)
5219
0
  {
5220
0
    if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
5221
0
      {
5222
0
        _bfd_error_handler
5223
    /* xgettext:c-format */
5224
0
    (_("%pB: warning: illegal symbol index %ld in relocs"),
5225
0
     abfd, dst.r_symndx);
5226
0
        cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5227
0
        ptr = NULL;
5228
0
      }
5229
0
    else
5230
0
      {
5231
0
        cache_ptr->sym_ptr_ptr = (symbols
5232
0
          + obj_convert (abfd)[dst.r_symndx]);
5233
0
        ptr = *(cache_ptr->sym_ptr_ptr);
5234
0
      }
5235
0
  }
5236
0
      else
5237
0
  {
5238
0
    cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
5239
0
    ptr = NULL;
5240
0
  }
5241
5242
      /* The symbols definitions that we have read in have been
5243
   relocated as if their sections started at 0. But the offsets
5244
   refering to the symbols in the raw data have not been
5245
   modified, so we have to have a negative addend to compensate.
5246
5247
   Note that symbols which used to be common must be left alone.  */
5248
5249
      /* Calculate any reloc addend by looking at the symbol.  */
5250
0
      CALC_ADDEND (abfd, ptr, dst, cache_ptr);
5251
      (void) ptr;
5252
5253
      cache_ptr->address -= asect->vma;
5254
      /* !! cache_ptr->section = NULL;*/
5255
5256
      /* Fill in the cache_ptr->howto field from dst.r_type.  */
5257
0
      RTYPE2HOWTO (cache_ptr, &dst);
5258
#endif  /* RELOC_PROCESSING */
5259
5260
0
      if (cache_ptr->howto == NULL)
5261
0
  {
5262
0
    _bfd_error_handler
5263
      /* xgettext:c-format */
5264
0
      (_("%pB: illegal relocation type %d at address %#" PRIx64),
5265
0
       abfd, dst.r_type, (uint64_t) dst.r_vaddr);
5266
0
    bfd_set_error (bfd_error_bad_value);
5267
0
    free (native_relocs);
5268
0
    return false;
5269
0
  }
5270
0
    }
5271
5272
0
  free (native_relocs);
5273
0
  asect->relocation = reloc_cache;
5274
0
  return true;
5275
0
}
Unexecuted instantiation: pei-i386.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-x86_64.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-x86_64.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-x86_64.c:coff_slurp_reloc_table
Unexecuted instantiation: coff64-rs6000.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-aarch64.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-aarch64.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-ia64.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-loongarch64.c:coff_slurp_reloc_table
Unexecuted instantiation: cf-i386lynx.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-go32.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-i386.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-rs6000.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-sh.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-stgo32.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-tic30.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-tic4x.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-tic54x.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-z80.c:coff_slurp_reloc_table
Unexecuted instantiation: coff-z8k.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-arm-wince.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-arm.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-i386.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-mcore.c:coff_slurp_reloc_table
Unexecuted instantiation: pe-sh.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-arm-wince.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-arm.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-mcore.c:coff_slurp_reloc_table
Unexecuted instantiation: pei-sh.c:coff_slurp_reloc_table
5276
5277
#ifndef coff_rtype_to_howto
5278
#ifdef RTYPE2HOWTO
5279
5280
/* Get the howto structure for a reloc.  This is only used if the file
5281
   including this one defines coff_relocate_section to be
5282
   _bfd_coff_generic_relocate_section, so it is OK if it does not
5283
   always work.  It is the responsibility of the including file to
5284
   make sure it is reasonable if it is needed.  */
5285
5286
static reloc_howto_type *
5287
coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
5288
         asection *sec ATTRIBUTE_UNUSED,
5289
         struct internal_reloc *rel ATTRIBUTE_UNUSED,
5290
         struct coff_link_hash_entry *h ATTRIBUTE_UNUSED,
5291
         struct internal_syment *sym ATTRIBUTE_UNUSED,
5292
         bfd_vma *addendp ATTRIBUTE_UNUSED)
5293
0
{
5294
0
  arelent genrel;
5295
5296
0
  genrel.howto = NULL;
5297
0
  RTYPE2HOWTO (&genrel, rel);
5298
0
  return genrel.howto;
5299
0
}
Unexecuted instantiation: coff64-rs6000.c:coff_rtype_to_howto
Unexecuted instantiation: pei-ia64.c:coff_rtype_to_howto
Unexecuted instantiation: pei-loongarch64.c:coff_rtype_to_howto
Unexecuted instantiation: coff-rs6000.c:coff_rtype_to_howto
Unexecuted instantiation: coff-sh.c:coff_rtype_to_howto
Unexecuted instantiation: coff-tic30.c:coff_rtype_to_howto
Unexecuted instantiation: coff-z80.c:coff_rtype_to_howto
Unexecuted instantiation: coff-z8k.c:coff_rtype_to_howto
5300
5301
#else /* ! defined (RTYPE2HOWTO) */
5302
5303
#define coff_rtype_to_howto NULL
5304
5305
#endif /* ! defined (RTYPE2HOWTO) */
5306
#endif /* ! defined (coff_rtype_to_howto) */
5307
5308
/* This is stupid.  This function should be a boolean predicate.  */
5309
5310
static long
5311
coff_canonicalize_reloc (bfd * abfd,
5312
       sec_ptr section,
5313
       arelent ** relptr,
5314
       asymbol ** symbols)
5315
0
{
5316
0
  arelent *tblptr = section->relocation;
5317
0
  unsigned int count = 0;
5318
5319
0
  if (section->flags & SEC_CONSTRUCTOR)
5320
0
    {
5321
      /* This section has relocs made up by us, they are not in the
5322
   file, so take them out of their chain and place them into
5323
   the data area provided.  */
5324
0
      arelent_chain *chain = section->constructor_chain;
5325
5326
0
      for (count = 0; count < section->reloc_count; count++)
5327
0
  {
5328
0
    *relptr++ = &chain->relent;
5329
0
    chain = chain->next;
5330
0
  }
5331
0
    }
5332
0
  else
5333
0
    {
5334
0
      if (! coff_slurp_reloc_table (abfd, section, symbols))
5335
0
  return -1;
5336
5337
0
      tblptr = section->relocation;
5338
5339
0
      for (; count++ < section->reloc_count;)
5340
0
  *relptr++ = tblptr++;
5341
0
    }
5342
0
  *relptr = 0;
5343
0
  return section->reloc_count;
5344
0
}
Unexecuted instantiation: pei-i386.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-x86_64.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-x86_64.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-x86_64.c:coff_canonicalize_reloc
Unexecuted instantiation: coff64-rs6000.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-aarch64.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-aarch64.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-ia64.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-loongarch64.c:coff_canonicalize_reloc
Unexecuted instantiation: cf-i386lynx.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-go32.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-i386.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-rs6000.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-sh.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-stgo32.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-tic30.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-tic4x.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-tic54x.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-z80.c:coff_canonicalize_reloc
Unexecuted instantiation: coff-z8k.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-arm-wince.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-arm.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-i386.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-mcore.c:coff_canonicalize_reloc
Unexecuted instantiation: pe-sh.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-arm-wince.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-arm.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-mcore.c:coff_canonicalize_reloc
Unexecuted instantiation: pei-sh.c:coff_canonicalize_reloc
5345
5346
#ifndef coff_set_reloc
5347
#define coff_set_reloc _bfd_generic_set_reloc
5348
#endif
5349
5350
#ifndef coff_reloc16_estimate
5351
#define coff_reloc16_estimate dummy_reloc16_estimate
5352
5353
static int
5354
dummy_reloc16_estimate (bfd *abfd ATTRIBUTE_UNUSED,
5355
      asection *input_section ATTRIBUTE_UNUSED,
5356
      arelent *reloc ATTRIBUTE_UNUSED,
5357
      unsigned int shrink ATTRIBUTE_UNUSED,
5358
      struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
5359
0
{
5360
0
  abort ();
5361
0
  return 0;
5362
0
}
Unexecuted instantiation: pei-i386.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-x86_64.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-x86_64.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-x86_64.c:dummy_reloc16_estimate
Unexecuted instantiation: coff64-rs6000.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-aarch64.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-aarch64.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-ia64.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-loongarch64.c:dummy_reloc16_estimate
Unexecuted instantiation: cf-i386lynx.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-go32.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-i386.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-rs6000.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-sh.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-stgo32.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-tic30.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-tic4x.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-tic54x.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-z80.c:dummy_reloc16_estimate
Unexecuted instantiation: coff-z8k.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-arm-wince.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-arm.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-i386.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-mcore.c:dummy_reloc16_estimate
Unexecuted instantiation: pe-sh.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-arm-wince.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-arm.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-mcore.c:dummy_reloc16_estimate
Unexecuted instantiation: pei-sh.c:dummy_reloc16_estimate
5363
5364
#endif
5365
5366
#ifndef coff_reloc16_extra_cases
5367
5368
#define coff_reloc16_extra_cases dummy_reloc16_extra_cases
5369
5370
static bool
5371
dummy_reloc16_extra_cases (bfd *abfd ATTRIBUTE_UNUSED,
5372
         struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
5373
         struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
5374
         arelent *reloc ATTRIBUTE_UNUSED,
5375
         bfd_byte *data ATTRIBUTE_UNUSED,
5376
         size_t *src_ptr ATTRIBUTE_UNUSED,
5377
         size_t *dst_ptr ATTRIBUTE_UNUSED)
5378
0
{
5379
0
  return false;
5380
0
}
Unexecuted instantiation: pei-i386.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-x86_64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-x86_64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-x86_64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff64-rs6000.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-aarch64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-aarch64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-ia64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-loongarch64.c:dummy_reloc16_extra_cases
Unexecuted instantiation: cf-i386lynx.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-go32.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-i386.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-rs6000.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-sh.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-stgo32.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-tic30.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-tic4x.c:dummy_reloc16_extra_cases
Unexecuted instantiation: coff-tic54x.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-arm-wince.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-arm.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-i386.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-mcore.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pe-sh.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-arm-wince.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-arm.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-mcore.c:dummy_reloc16_extra_cases
Unexecuted instantiation: pei-sh.c:dummy_reloc16_extra_cases
5381
#endif
5382
5383
/* If coff_relocate_section is defined, we can use the optimized COFF
5384
   backend linker.  Otherwise we must continue to use the old linker.  */
5385
5386
#ifdef coff_relocate_section
5387
5388
#ifndef coff_bfd_link_hash_table_create
5389
#define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
5390
#endif
5391
#ifndef coff_bfd_link_add_symbols
5392
#define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
5393
#endif
5394
#ifndef coff_bfd_final_link
5395
#define coff_bfd_final_link _bfd_coff_final_link
5396
#endif
5397
5398
#else /* ! defined (coff_relocate_section) */
5399
5400
#define coff_relocate_section NULL
5401
#ifndef coff_bfd_link_hash_table_create
5402
#define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
5403
#endif
5404
#ifndef coff_bfd_link_add_symbols
5405
#define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
5406
#endif
5407
#define coff_bfd_final_link _bfd_generic_final_link
5408
5409
#endif /* ! defined (coff_relocate_section) */
5410
5411
#define coff_bfd_link_just_syms      _bfd_generic_link_just_syms
5412
#define coff_bfd_copy_link_hash_symbol_type \
5413
  _bfd_generic_copy_link_hash_symbol_type
5414
#define coff_bfd_link_split_section  _bfd_generic_link_split_section
5415
5416
#define coff_bfd_link_check_relocs   _bfd_generic_link_check_relocs
5417
5418
#ifndef coff_start_final_link
5419
#define coff_start_final_link NULL
5420
#endif
5421
5422
#ifndef coff_adjust_symndx
5423
#define coff_adjust_symndx NULL
5424
#endif
5425
5426
#ifndef coff_link_add_one_symbol
5427
#define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
5428
#endif
5429
5430
#ifndef coff_link_output_has_begun
5431
5432
static bool
5433
coff_link_output_has_begun (bfd * abfd,
5434
          struct coff_final_link_info * info ATTRIBUTE_UNUSED)
5435
0
{
5436
0
  return abfd->output_has_begun;
5437
0
}
Unexecuted instantiation: pei-i386.c:coff_link_output_has_begun
Unexecuted instantiation: pe-x86_64.c:coff_link_output_has_begun
Unexecuted instantiation: pei-x86_64.c:coff_link_output_has_begun
Unexecuted instantiation: coff-x86_64.c:coff_link_output_has_begun
Unexecuted instantiation: coff64-rs6000.c:coff_link_output_has_begun
Unexecuted instantiation: pei-aarch64.c:coff_link_output_has_begun
Unexecuted instantiation: pe-aarch64.c:coff_link_output_has_begun
Unexecuted instantiation: pei-ia64.c:coff_link_output_has_begun
Unexecuted instantiation: pei-loongarch64.c:coff_link_output_has_begun
Unexecuted instantiation: cf-i386lynx.c:coff_link_output_has_begun
Unexecuted instantiation: coff-go32.c:coff_link_output_has_begun
Unexecuted instantiation: coff-i386.c:coff_link_output_has_begun
Unexecuted instantiation: coff-rs6000.c:coff_link_output_has_begun
Unexecuted instantiation: coff-sh.c:coff_link_output_has_begun
Unexecuted instantiation: coff-stgo32.c:coff_link_output_has_begun
Unexecuted instantiation: coff-tic30.c:coff_link_output_has_begun
Unexecuted instantiation: coff-tic4x.c:coff_link_output_has_begun
Unexecuted instantiation: coff-tic54x.c:coff_link_output_has_begun
Unexecuted instantiation: coff-z80.c:coff_link_output_has_begun
Unexecuted instantiation: coff-z8k.c:coff_link_output_has_begun
Unexecuted instantiation: pe-i386.c:coff_link_output_has_begun
Unexecuted instantiation: pe-mcore.c:coff_link_output_has_begun
Unexecuted instantiation: pe-sh.c:coff_link_output_has_begun
Unexecuted instantiation: pei-mcore.c:coff_link_output_has_begun
Unexecuted instantiation: pei-sh.c:coff_link_output_has_begun
5438
#endif
5439
5440
#ifndef coff_final_link_postscript
5441
5442
static bool
5443
coff_final_link_postscript (bfd * abfd ATTRIBUTE_UNUSED,
5444
          struct coff_final_link_info * pfinfo ATTRIBUTE_UNUSED)
5445
0
{
5446
0
  return true;
5447
0
}
Unexecuted instantiation: coff-x86_64.c:coff_final_link_postscript
Unexecuted instantiation: coff64-rs6000.c:coff_final_link_postscript
Unexecuted instantiation: cf-i386lynx.c:coff_final_link_postscript
Unexecuted instantiation: coff-go32.c:coff_final_link_postscript
Unexecuted instantiation: coff-i386.c:coff_final_link_postscript
Unexecuted instantiation: coff-rs6000.c:coff_final_link_postscript
Unexecuted instantiation: coff-sh.c:coff_final_link_postscript
Unexecuted instantiation: coff-stgo32.c:coff_final_link_postscript
Unexecuted instantiation: coff-tic30.c:coff_final_link_postscript
Unexecuted instantiation: coff-tic4x.c:coff_final_link_postscript
Unexecuted instantiation: coff-tic54x.c:coff_final_link_postscript
Unexecuted instantiation: coff-z80.c:coff_final_link_postscript
Unexecuted instantiation: coff-z8k.c:coff_final_link_postscript
5448
#endif
5449
5450
#ifndef coff_SWAP_aux_in
5451
#define coff_SWAP_aux_in coff_swap_aux_in
5452
#endif
5453
#ifndef coff_SWAP_sym_in
5454
#define coff_SWAP_sym_in coff_swap_sym_in
5455
#endif
5456
#ifndef coff_SWAP_lineno_in
5457
#define coff_SWAP_lineno_in coff_swap_lineno_in
5458
#endif
5459
#ifndef coff_SWAP_aux_out
5460
#define coff_SWAP_aux_out coff_swap_aux_out
5461
#endif
5462
#ifndef coff_SWAP_sym_out
5463
#define coff_SWAP_sym_out coff_swap_sym_out
5464
#endif
5465
#ifndef coff_SWAP_lineno_out
5466
#define coff_SWAP_lineno_out coff_swap_lineno_out
5467
#endif
5468
#ifndef coff_SWAP_reloc_out
5469
#define coff_SWAP_reloc_out coff_swap_reloc_out
5470
#endif
5471
#ifndef coff_SWAP_filehdr_out
5472
#define coff_SWAP_filehdr_out coff_swap_filehdr_out
5473
#endif
5474
#ifndef coff_SWAP_aouthdr_out
5475
#define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
5476
#endif
5477
#ifndef coff_SWAP_scnhdr_out
5478
#define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
5479
#endif
5480
#ifndef coff_SWAP_reloc_in
5481
#define coff_SWAP_reloc_in coff_swap_reloc_in
5482
#endif
5483
#ifndef coff_SWAP_filehdr_in
5484
#define coff_SWAP_filehdr_in coff_swap_filehdr_in
5485
#endif
5486
#ifndef coff_SWAP_aouthdr_in
5487
#define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
5488
#endif
5489
#ifndef coff_SWAP_scnhdr_in
5490
#define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
5491
#endif
5492
5493
#define COFF_SWAP_TABLE (void *) &bfd_coff_std_swap_table
5494
5495
static const bfd_coff_backend_data bfd_coff_std_swap_table ATTRIBUTE_UNUSED =
5496
{
5497
  coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5498
  coff_SWAP_aux_out, coff_SWAP_sym_out,
5499
  coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5500
  coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5501
  coff_SWAP_scnhdr_out,
5502
  FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
5503
#ifdef COFF_LONG_FILENAMES
5504
  true,
5505
#else
5506
  false,
5507
#endif
5508
  COFF_DEFAULT_LONG_SECTION_NAMES,
5509
  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5510
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5511
  true,
5512
#else
5513
  false,
5514
#endif
5515
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5516
  4,
5517
#else
5518
  2,
5519
#endif
5520
  32768,
5521
  coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5522
  coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5523
  coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5524
  coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5525
  coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5526
  coff_classify_symbol, coff_compute_section_file_positions,
5527
  coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5528
  coff_adjust_symndx, coff_link_add_one_symbol,
5529
  coff_link_output_has_begun, coff_final_link_postscript,
5530
  bfd_pe_print_pdata
5531
};
5532
5533
#ifdef TICOFF
5534
/* COFF0 differs in file/section header size and relocation entry size.  */
5535
5536
static const bfd_coff_backend_data ticoff0_swap_table =
5537
{
5538
  coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5539
  coff_SWAP_aux_out, coff_SWAP_sym_out,
5540
  coff_SWAP_lineno_out, coff_swap_reloc_v0_out,
5541
  coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5542
  coff_SWAP_scnhdr_out,
5543
  FILHSZ_V0, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ_V0, LINESZ, FILNMLEN,
5544
#ifdef COFF_LONG_FILENAMES
5545
  true,
5546
#else
5547
  false,
5548
#endif
5549
  COFF_DEFAULT_LONG_SECTION_NAMES,
5550
  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5551
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5552
  true,
5553
#else
5554
  false,
5555
#endif
5556
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5557
  4,
5558
#else
5559
  2,
5560
#endif
5561
  32768,
5562
  coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5563
  coff_swap_reloc_v0_in, ticoff0_bad_format_hook, coff_set_arch_mach_hook,
5564
  coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5565
  coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5566
  coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5567
  coff_classify_symbol, coff_compute_section_file_positions,
5568
  coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5569
  coff_adjust_symndx, coff_link_add_one_symbol,
5570
  coff_link_output_has_begun, coff_final_link_postscript,
5571
  bfd_pe_print_pdata
5572
};
5573
#endif
5574
5575
#ifdef TICOFF
5576
/* COFF1 differs in section header size.  */
5577
5578
static const bfd_coff_backend_data ticoff1_swap_table =
5579
{
5580
  coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
5581
  coff_SWAP_aux_out, coff_SWAP_sym_out,
5582
  coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5583
  coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
5584
  coff_SWAP_scnhdr_out,
5585
  FILHSZ, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
5586
#ifdef COFF_LONG_FILENAMES
5587
  true,
5588
#else
5589
  false,
5590
#endif
5591
  COFF_DEFAULT_LONG_SECTION_NAMES,
5592
  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5593
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
5594
  true,
5595
#else
5596
  false,
5597
#endif
5598
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
5599
  4,
5600
#else
5601
  2,
5602
#endif
5603
  32768,
5604
  coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5605
  coff_SWAP_reloc_in, ticoff1_bad_format_hook, coff_set_arch_mach_hook,
5606
  coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5607
  coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5608
  coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5609
  coff_classify_symbol, coff_compute_section_file_positions,
5610
  coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5611
  coff_adjust_symndx, coff_link_add_one_symbol,
5612
  coff_link_output_has_begun, coff_final_link_postscript,
5613
  bfd_pe_print_pdata  /* huh */
5614
};
5615
#endif
5616
5617
#ifdef COFF_WITH_PE_BIGOBJ
5618
/* The UID for bigobj files.  */
5619
5620
static const char header_bigobj_classid[16] =
5621
{
5622
  0xC7, 0xA1, 0xBA, 0xD1,
5623
  0xEE, 0xBA,
5624
  0xa9, 0x4b,
5625
  0xAF, 0x20,
5626
  0xFA, 0xF6, 0x6A, 0xA4, 0xDC, 0xB8
5627
};
5628
5629
/* Swap routines.  */
5630
5631
static void
5632
coff_bigobj_swap_filehdr_in (bfd * abfd, void * src, void * dst)
5633
954k
{
5634
954k
  struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_src =
5635
954k
    (struct external_ANON_OBJECT_HEADER_BIGOBJ *) src;
5636
954k
  struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
5637
5638
954k
  filehdr_dst->f_magic  = H_GET_16 (abfd, filehdr_src->Machine);
5639
954k
  filehdr_dst->f_nscns  = H_GET_32 (abfd, filehdr_src->NumberOfSections);
5640
954k
  filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->TimeDateStamp);
5641
954k
  filehdr_dst->f_symptr =
5642
954k
    GET_FILEHDR_SYMPTR (abfd, filehdr_src->PointerToSymbolTable);
5643
954k
  filehdr_dst->f_nsyms  = H_GET_32 (abfd, filehdr_src->NumberOfSymbols);
5644
954k
  filehdr_dst->f_opthdr = 0;
5645
954k
  filehdr_dst->f_flags  = 0;
5646
5647
  /* Check other magic numbers.  */
5648
954k
  if (H_GET_16 (abfd, filehdr_src->Sig1) != IMAGE_FILE_MACHINE_UNKNOWN
5649
954k
      || H_GET_16 (abfd, filehdr_src->Sig2) != 0xffff
5650
954k
      || H_GET_16 (abfd, filehdr_src->Version) != 2
5651
954k
      || memcmp (filehdr_src->ClassID, header_bigobj_classid, 16) != 0)
5652
954k
    filehdr_dst->f_opthdr = 0xffff;
5653
5654
  /* Note that CLR metadata are ignored.  */
5655
954k
}
pe-x86_64.c:coff_bigobj_swap_filehdr_in
Line
Count
Source
5633
477k
{
5634
477k
  struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_src =
5635
477k
    (struct external_ANON_OBJECT_HEADER_BIGOBJ *) src;
5636
477k
  struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
5637
5638
477k
  filehdr_dst->f_magic  = H_GET_16 (abfd, filehdr_src->Machine);
5639
477k
  filehdr_dst->f_nscns  = H_GET_32 (abfd, filehdr_src->NumberOfSections);
5640
477k
  filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->TimeDateStamp);
5641
477k
  filehdr_dst->f_symptr =
5642
477k
    GET_FILEHDR_SYMPTR (abfd, filehdr_src->PointerToSymbolTable);
5643
477k
  filehdr_dst->f_nsyms  = H_GET_32 (abfd, filehdr_src->NumberOfSymbols);
5644
477k
  filehdr_dst->f_opthdr = 0;
5645
477k
  filehdr_dst->f_flags  = 0;
5646
5647
  /* Check other magic numbers.  */
5648
477k
  if (H_GET_16 (abfd, filehdr_src->Sig1) != IMAGE_FILE_MACHINE_UNKNOWN
5649
477k
      || H_GET_16 (abfd, filehdr_src->Sig2) != 0xffff
5650
477k
      || H_GET_16 (abfd, filehdr_src->Version) != 2
5651
477k
      || memcmp (filehdr_src->ClassID, header_bigobj_classid, 16) != 0)
5652
477k
    filehdr_dst->f_opthdr = 0xffff;
5653
5654
  /* Note that CLR metadata are ignored.  */
5655
477k
}
pe-i386.c:coff_bigobj_swap_filehdr_in
Line
Count
Source
5633
477k
{
5634
477k
  struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_src =
5635
477k
    (struct external_ANON_OBJECT_HEADER_BIGOBJ *) src;
5636
477k
  struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
5637
5638
477k
  filehdr_dst->f_magic  = H_GET_16 (abfd, filehdr_src->Machine);
5639
477k
  filehdr_dst->f_nscns  = H_GET_32 (abfd, filehdr_src->NumberOfSections);
5640
477k
  filehdr_dst->f_timdat = H_GET_32 (abfd, filehdr_src->TimeDateStamp);
5641
477k
  filehdr_dst->f_symptr =
5642
477k
    GET_FILEHDR_SYMPTR (abfd, filehdr_src->PointerToSymbolTable);
5643
477k
  filehdr_dst->f_nsyms  = H_GET_32 (abfd, filehdr_src->NumberOfSymbols);
5644
477k
  filehdr_dst->f_opthdr = 0;
5645
477k
  filehdr_dst->f_flags  = 0;
5646
5647
  /* Check other magic numbers.  */
5648
477k
  if (H_GET_16 (abfd, filehdr_src->Sig1) != IMAGE_FILE_MACHINE_UNKNOWN
5649
477k
      || H_GET_16 (abfd, filehdr_src->Sig2) != 0xffff
5650
477k
      || H_GET_16 (abfd, filehdr_src->Version) != 2
5651
477k
      || memcmp (filehdr_src->ClassID, header_bigobj_classid, 16) != 0)
5652
477k
    filehdr_dst->f_opthdr = 0xffff;
5653
5654
  /* Note that CLR metadata are ignored.  */
5655
477k
}
5656
5657
static unsigned int
5658
coff_bigobj_swap_filehdr_out (bfd *abfd, void * in, void * out)
5659
0
{
5660
0
  struct internal_filehdr *filehdr_in = (struct internal_filehdr *) in;
5661
0
  struct external_ANON_OBJECT_HEADER_BIGOBJ *filehdr_out =
5662
0
    (struct external_ANON_OBJECT_HEADER_BIGOBJ *) out;
5663
5664
0
  memset (filehdr_out, 0, sizeof (*filehdr_out));
5665
5666
0
  H_PUT_16 (abfd, IMAGE_FILE_MACHINE_UNKNOWN, filehdr_out->Sig1);
5667
0
  H_PUT_16 (abfd, 0xffff, filehdr_out->Sig2);
5668
0
  H_PUT_16 (abfd, 2, filehdr_out->Version);
5669
0
  memcpy (filehdr_out->ClassID, header_bigobj_classid, 16);
5670
0
  H_PUT_16 (abfd, filehdr_in->f_magic, filehdr_out->Machine);
5671
0
  H_PUT_32 (abfd, filehdr_in->f_nscns, filehdr_out->NumberOfSections);
5672
0
  H_PUT_32 (abfd, filehdr_in->f_timdat, filehdr_out->TimeDateStamp);
5673
0
  PUT_FILEHDR_SYMPTR (abfd, filehdr_in->f_symptr,
5674
0
          filehdr_out->PointerToSymbolTable);
5675
0
  H_PUT_32 (abfd, filehdr_in->f_nsyms, filehdr_out->NumberOfSymbols);
5676
5677
0
  return bfd_coff_filhsz (abfd);
5678
0
}
Unexecuted instantiation: pe-x86_64.c:coff_bigobj_swap_filehdr_out
Unexecuted instantiation: pe-i386.c:coff_bigobj_swap_filehdr_out
5679
5680
static void
5681
coff_bigobj_swap_sym_in (bfd * abfd, void * ext1, void * in1)
5682
0
{
5683
0
  SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) ext1;
5684
0
  struct internal_syment *in = (struct internal_syment *) in1;
5685
5686
0
  if (ext->e.e_name[0] == 0)
5687
0
    {
5688
0
      in->_n._n_n._n_zeroes = 0;
5689
0
      in->_n._n_n._n_offset = H_GET_32 (abfd, ext->e.e.e_offset);
5690
0
    }
5691
0
  else
5692
0
    {
5693
#if SYMNMLEN != E_SYMNMLEN
5694
#error we need to cope with truncating or extending SYMNMLEN
5695
#else
5696
0
      memcpy (in->_n._n_name, ext->e.e_name, SYMNMLEN);
5697
0
#endif
5698
0
    }
5699
5700
0
  in->n_value = H_GET_32 (abfd, ext->e_value);
5701
0
  BFD_ASSERT (sizeof (in->n_scnum) >= 4);
5702
0
  in->n_scnum = H_GET_32 (abfd, ext->e_scnum);
5703
0
  in->n_type = H_GET_16 (abfd, ext->e_type);
5704
0
  in->n_sclass = H_GET_8 (abfd, ext->e_sclass);
5705
0
  in->n_numaux = H_GET_8 (abfd, ext->e_numaux);
5706
0
}
Unexecuted instantiation: pe-x86_64.c:coff_bigobj_swap_sym_in
Unexecuted instantiation: pe-i386.c:coff_bigobj_swap_sym_in
5707
5708
static unsigned int
5709
coff_bigobj_swap_sym_out (bfd * abfd, void * inp, void * extp)
5710
0
{
5711
0
  struct internal_syment *in = (struct internal_syment *) inp;
5712
0
  SYMENT_BIGOBJ *ext = (SYMENT_BIGOBJ *) extp;
5713
5714
0
  if (in->_n._n_name[0] == 0)
5715
0
    {
5716
0
      H_PUT_32 (abfd, 0, ext->e.e.e_zeroes);
5717
0
      H_PUT_32 (abfd, in->_n._n_n._n_offset, ext->e.e.e_offset);
5718
0
    }
5719
0
  else
5720
0
    {
5721
#if SYMNMLEN != E_SYMNMLEN
5722
#error we need to cope with truncating or extending SYMNMLEN
5723
#else
5724
0
      memcpy (ext->e.e_name, in->_n._n_name, SYMNMLEN);
5725
0
#endif
5726
0
    }
5727
5728
0
  H_PUT_32 (abfd, in->n_value, ext->e_value);
5729
0
  H_PUT_32 (abfd, in->n_scnum, ext->e_scnum);
5730
5731
0
  H_PUT_16 (abfd, in->n_type, ext->e_type);
5732
0
  H_PUT_8 (abfd, in->n_sclass, ext->e_sclass);
5733
0
  H_PUT_8 (abfd, in->n_numaux, ext->e_numaux);
5734
5735
0
  return SYMESZ_BIGOBJ;
5736
0
}
Unexecuted instantiation: pe-x86_64.c:coff_bigobj_swap_sym_out
Unexecuted instantiation: pe-i386.c:coff_bigobj_swap_sym_out
5737
5738
static void
5739
coff_bigobj_swap_aux_in (bfd *abfd,
5740
       void * ext1,
5741
       int type,
5742
       int in_class,
5743
       int indx,
5744
       int numaux,
5745
       void * in1)
5746
0
{
5747
0
  AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) ext1;
5748
0
  union internal_auxent *in = (union internal_auxent *) in1;
5749
5750
  /* Make sure that all fields in the aux structure are
5751
     initialised.  */
5752
0
  memset (in, 0, sizeof * in);
5753
0
  switch (in_class)
5754
0
    {
5755
0
    case C_FILE:
5756
0
      if (numaux > 1)
5757
0
  {
5758
0
    if (indx == 0)
5759
0
      memcpy (in->x_file.x_n.x_fname, ext->File.Name,
5760
0
        numaux * sizeof (AUXENT_BIGOBJ));
5761
0
  }
5762
0
      else
5763
0
  memcpy (in->x_file.x_n.x_fname, ext->File.Name, sizeof (ext->File.Name));
5764
0
      break;
5765
5766
0
    case C_STAT:
5767
0
    case C_LEAFSTAT:
5768
0
    case C_HIDDEN:
5769
0
      if (type == T_NULL)
5770
0
  {
5771
0
    in->x_scn.x_scnlen = H_GET_32 (abfd, ext->Section.Length);
5772
0
    in->x_scn.x_nreloc =
5773
0
      H_GET_16 (abfd, ext->Section.NumberOfRelocations);
5774
0
    in->x_scn.x_nlinno =
5775
0
      H_GET_16 (abfd, ext->Section.NumberOfLinenumbers);
5776
0
    in->x_scn.x_checksum = H_GET_32 (abfd, ext->Section.Checksum);
5777
0
    in->x_scn.x_associated = H_GET_16 (abfd, ext->Section.Number)
5778
0
      | (H_GET_16 (abfd, ext->Section.HighNumber) << 16);
5779
0
    in->x_scn.x_comdat = H_GET_8 (abfd, ext->Section.Selection);
5780
0
    return;
5781
0
  }
5782
0
      break;
5783
5784
0
    default:
5785
0
      in->x_sym.x_tagndx.u32 = H_GET_32 (abfd, ext->Sym.WeakDefaultSymIndex);
5786
      /* Characteristics is ignored.  */
5787
0
      break;
5788
0
    }
5789
0
}
Unexecuted instantiation: pe-x86_64.c:coff_bigobj_swap_aux_in
Unexecuted instantiation: pe-i386.c:coff_bigobj_swap_aux_in
5790
5791
static unsigned int
5792
coff_bigobj_swap_aux_out (bfd * abfd,
5793
        void * inp,
5794
        int type,
5795
        int in_class,
5796
        int indx ATTRIBUTE_UNUSED,
5797
        int numaux ATTRIBUTE_UNUSED,
5798
        void * extp)
5799
0
{
5800
0
  union internal_auxent * in = (union internal_auxent *) inp;
5801
0
  AUXENT_BIGOBJ *ext = (AUXENT_BIGOBJ *) extp;
5802
5803
0
  memset (ext, 0, AUXESZ);
5804
5805
0
  switch (in_class)
5806
0
    {
5807
0
    case C_FILE:
5808
0
      memcpy (ext->File.Name, in->x_file.x_n.x_fname, sizeof (ext->File.Name));
5809
5810
0
      return AUXESZ;
5811
5812
0
    case C_STAT:
5813
0
    case C_LEAFSTAT:
5814
0
    case C_HIDDEN:
5815
0
      if (type == T_NULL)
5816
0
  {
5817
0
    H_PUT_32 (abfd, in->x_scn.x_scnlen, ext->Section.Length);
5818
0
    H_PUT_16 (abfd, in->x_scn.x_nreloc,
5819
0
        ext->Section.NumberOfRelocations);
5820
0
    H_PUT_16 (abfd, in->x_scn.x_nlinno,
5821
0
        ext->Section.NumberOfLinenumbers);
5822
0
    H_PUT_32 (abfd, in->x_scn.x_checksum, ext->Section.Checksum);
5823
0
    H_PUT_16 (abfd, in->x_scn.x_associated & 0xffff,
5824
0
        ext->Section.Number);
5825
0
    H_PUT_16 (abfd, (in->x_scn.x_associated >> 16),
5826
0
        ext->Section.HighNumber);
5827
0
    H_PUT_8 (abfd, in->x_scn.x_comdat, ext->Section.Selection);
5828
0
    return AUXESZ;
5829
0
  }
5830
0
      break;
5831
0
    }
5832
5833
0
  H_PUT_32 (abfd, in->x_sym.x_tagndx.u32, ext->Sym.WeakDefaultSymIndex);
5834
0
  H_PUT_32 (abfd, 1, ext->Sym.WeakSearchType);
5835
5836
0
  return AUXESZ;
5837
0
}
Unexecuted instantiation: pe-x86_64.c:coff_bigobj_swap_aux_out
Unexecuted instantiation: pe-i386.c:coff_bigobj_swap_aux_out
5838
5839
static const bfd_coff_backend_data bigobj_swap_table =
5840
{
5841
  coff_bigobj_swap_aux_in, coff_bigobj_swap_sym_in, coff_SWAP_lineno_in,
5842
  coff_bigobj_swap_aux_out, coff_bigobj_swap_sym_out,
5843
  coff_SWAP_lineno_out, coff_SWAP_reloc_out,
5844
  coff_bigobj_swap_filehdr_out, coff_SWAP_aouthdr_out,
5845
  coff_SWAP_scnhdr_out,
5846
  FILHSZ_BIGOBJ, AOUTSZ, SCNHSZ, SYMESZ_BIGOBJ, AUXESZ_BIGOBJ,
5847
   RELSZ, LINESZ, FILNMLEN_BIGOBJ,
5848
  true,
5849
  COFF_DEFAULT_LONG_SECTION_NAMES,
5850
  COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
5851
  false,
5852
  2,
5853
  1U << 31,
5854
  coff_bigobj_swap_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
5855
  coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
5856
  coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
5857
  coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
5858
  coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
5859
  coff_classify_symbol, coff_compute_section_file_positions,
5860
  coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
5861
  coff_adjust_symndx, coff_link_add_one_symbol,
5862
  coff_link_output_has_begun, coff_final_link_postscript,
5863
  bfd_pe_print_pdata  /* huh */
5864
};
5865
5866
#endif /* COFF_WITH_PE_BIGOBJ */
5867
5868
#ifndef coff_close_and_cleanup
5869
#define coff_close_and_cleanup        _bfd_generic_close_and_cleanup
5870
#endif
5871
5872
#ifndef coff_bfd_free_cached_info
5873
#define coff_bfd_free_cached_info     _bfd_coff_free_cached_info
5874
#endif
5875
5876
#ifndef coff_get_section_contents
5877
#define coff_get_section_contents     _bfd_generic_get_section_contents
5878
#endif
5879
5880
#ifndef coff_bfd_copy_private_symbol_data
5881
#define coff_bfd_copy_private_symbol_data   _bfd_generic_bfd_copy_private_symbol_data
5882
#endif
5883
5884
#ifndef coff_bfd_copy_private_header_data
5885
#define coff_bfd_copy_private_header_data   _bfd_generic_bfd_copy_private_header_data
5886
#endif
5887
5888
#ifndef coff_bfd_copy_private_section_data
5889
#define coff_bfd_copy_private_section_data  _bfd_generic_bfd_copy_private_section_data
5890
#endif
5891
5892
#ifndef coff_bfd_copy_private_bfd_data
5893
#define coff_bfd_copy_private_bfd_data      _bfd_generic_bfd_copy_private_bfd_data
5894
#endif
5895
5896
#ifndef coff_bfd_merge_private_bfd_data
5897
#define coff_bfd_merge_private_bfd_data     _bfd_generic_bfd_merge_private_bfd_data
5898
#endif
5899
5900
#ifndef coff_bfd_set_private_flags
5901
#define coff_bfd_set_private_flags      _bfd_generic_bfd_set_private_flags
5902
#endif
5903
5904
#ifndef coff_bfd_print_private_bfd_data
5905
#define coff_bfd_print_private_bfd_data     _bfd_generic_bfd_print_private_bfd_data
5906
#endif
5907
5908
#ifndef coff_bfd_is_local_label_name
5909
#define coff_bfd_is_local_label_name      _bfd_coff_is_local_label_name
5910
#endif
5911
5912
#ifndef coff_bfd_is_target_special_symbol
5913
#define coff_bfd_is_target_special_symbol   _bfd_bool_bfd_asymbol_false
5914
#endif
5915
5916
#ifndef coff_read_minisymbols
5917
#define coff_read_minisymbols       _bfd_generic_read_minisymbols
5918
#endif
5919
5920
#ifndef coff_minisymbol_to_symbol
5921
#define coff_minisymbol_to_symbol     _bfd_generic_minisymbol_to_symbol
5922
#endif
5923
5924
/* The reloc lookup routine must be supplied by each individual COFF
5925
   backend.  */
5926
#ifndef coff_bfd_reloc_type_lookup
5927
#define coff_bfd_reloc_type_lookup      _bfd_norelocs_bfd_reloc_type_lookup
5928
#endif
5929
#ifndef coff_bfd_reloc_name_lookup
5930
#define coff_bfd_reloc_name_lookup    _bfd_norelocs_bfd_reloc_name_lookup
5931
#endif
5932
5933
#ifndef coff_bfd_get_relocated_section_contents
5934
#define coff_bfd_get_relocated_section_contents \
5935
  bfd_generic_get_relocated_section_contents
5936
#endif
5937
5938
#ifndef coff_bfd_relax_section
5939
#define coff_bfd_relax_section        bfd_generic_relax_section
5940
#endif
5941
5942
#ifndef coff_bfd_gc_sections
5943
#define coff_bfd_gc_sections        bfd_coff_gc_sections
5944
#endif
5945
5946
#ifndef coff_bfd_lookup_section_flags
5947
#define coff_bfd_lookup_section_flags     bfd_generic_lookup_section_flags
5948
#endif
5949
5950
#ifndef coff_bfd_merge_sections
5951
#define coff_bfd_merge_sections       bfd_generic_merge_sections
5952
#endif
5953
5954
#ifndef coff_bfd_is_group_section
5955
#define coff_bfd_is_group_section     bfd_generic_is_group_section
5956
#endif
5957
5958
#ifndef coff_bfd_group_name
5959
#define coff_bfd_group_name       bfd_coff_group_name
5960
#endif
5961
5962
#ifndef coff_bfd_discard_group
5963
#define coff_bfd_discard_group        bfd_generic_discard_group
5964
#endif
5965
5966
#ifndef coff_section_already_linked
5967
#define coff_section_already_linked \
5968
  _bfd_coff_section_already_linked
5969
#endif
5970
5971
#ifndef coff_bfd_define_common_symbol
5972
#define coff_bfd_define_common_symbol     bfd_generic_define_common_symbol
5973
#endif
5974
5975
#ifndef coff_bfd_link_hide_symbol
5976
#define coff_bfd_link_hide_symbol     _bfd_generic_link_hide_symbol
5977
#endif
5978
5979
#ifndef coff_bfd_define_start_stop
5980
#define coff_bfd_define_start_stop      bfd_generic_define_start_stop
5981
#endif
5982
5983
#define CREATE_BIG_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
5984
const bfd_target VAR =              \
5985
{                 \
5986
  NAME ,                \
5987
  bfd_target_coff_flavour,            \
5988
  BFD_ENDIAN_BIG,   /* Data byte order is big.  */    \
5989
  BFD_ENDIAN_BIG,   /* Header byte order is big.  */  \
5990
  /* object flags */              \
5991
  (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG |      \
5992
   HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS),      \
5993
  /* section flags */             \
5994
  (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
5995
  UNDER,      /* Leading symbol underscore.  */ \
5996
  '/',        /* AR_pad_char.  */     \
5997
  15,       /* AR_max_namelen.  */      \
5998
  0,        /* match priority.  */      \
5999
  TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols.  */ \
6000
                  \
6001
  /* Data conversion functions.  */         \
6002
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,       \
6003
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,       \
6004
  bfd_getb16, bfd_getb_signed_16, bfd_putb16,       \
6005
                  \
6006
  /* Header conversion functions.  */         \
6007
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,       \
6008
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,       \
6009
  bfd_getb16, bfd_getb_signed_16, bfd_putb16,       \
6010
                  \
6011
  {       /* bfd_check_format.  */    \
6012
    _bfd_dummy_target,              \
6013
    coff_object_p,              \
6014
    bfd_generic_archive_p,            \
6015
    _bfd_dummy_target             \
6016
  },                  \
6017
  {       /* bfd_set_format.  */      \
6018
    _bfd_bool_bfd_false_error,            \
6019
    coff_mkobject,              \
6020
    _bfd_generic_mkarchive,           \
6021
    _bfd_bool_bfd_false_error           \
6022
  },                  \
6023
  {       /* bfd_write_contents.  */    \
6024
    _bfd_bool_bfd_false_error,            \
6025
    coff_write_object_contents,           \
6026
    _bfd_write_archive_contents,          \
6027
    _bfd_bool_bfd_false_error           \
6028
  },                  \
6029
                  \
6030
  BFD_JUMP_TABLE_GENERIC (coff),          \
6031
  BFD_JUMP_TABLE_COPY (coff),           \
6032
  BFD_JUMP_TABLE_CORE (_bfd_nocore),          \
6033
  BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),       \
6034
  BFD_JUMP_TABLE_SYMBOLS (coff),          \
6035
  BFD_JUMP_TABLE_RELOCS (coff),           \
6036
  BFD_JUMP_TABLE_WRITE (coff),            \
6037
  BFD_JUMP_TABLE_LINK (coff),           \
6038
  BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),        \
6039
                  \
6040
  ALTERNATIVE,                \
6041
                  \
6042
  SWAP_TABLE                \
6043
};
6044
6045
#define CREATE_BIGHDR_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE)  \
6046
const bfd_target VAR =              \
6047
{                 \
6048
  NAME ,                \
6049
  bfd_target_coff_flavour,            \
6050
  BFD_ENDIAN_LITTLE,    /* Data byte order is little.  */ \
6051
  BFD_ENDIAN_BIG,   /* Header byte order is big.  */  \
6052
  /* object flags */              \
6053
  (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG |      \
6054
   HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS),      \
6055
  /* section flags */             \
6056
  (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
6057
  UNDER,      /* Leading symbol underscore.  */ \
6058
  '/',        /* AR_pad_char.  */     \
6059
  15,       /* AR_max_namelen.  */      \
6060
  0,        /* match priority.  */      \
6061
  TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols.  */ \
6062
                  \
6063
  /* Data conversion functions.  */         \
6064
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,       \
6065
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,       \
6066
  bfd_getb16, bfd_getb_signed_16, bfd_putb16,       \
6067
                  \
6068
  /* Header conversion functions.  */         \
6069
  bfd_getb64, bfd_getb_signed_64, bfd_putb64,       \
6070
  bfd_getb32, bfd_getb_signed_32, bfd_putb32,       \
6071
  bfd_getb16, bfd_getb_signed_16, bfd_putb16,       \
6072
                  \
6073
  {       /* bfd_check_format.  */    \
6074
    _bfd_dummy_target,              \
6075
    coff_object_p,              \
6076
    bfd_generic_archive_p,            \
6077
    _bfd_dummy_target             \
6078
  },                  \
6079
  {       /* bfd_set_format.  */      \
6080
    _bfd_bool_bfd_false_error,            \
6081
    coff_mkobject,              \
6082
    _bfd_generic_mkarchive,           \
6083
    _bfd_bool_bfd_false_error           \
6084
  },                  \
6085
  {       /* bfd_write_contents.  */    \
6086
    _bfd_bool_bfd_false_error,            \
6087
    coff_write_object_contents,           \
6088
    _bfd_write_archive_contents,          \
6089
    _bfd_bool_bfd_false_error           \
6090
  },                  \
6091
                  \
6092
  BFD_JUMP_TABLE_GENERIC (coff),          \
6093
  BFD_JUMP_TABLE_COPY (coff),           \
6094
  BFD_JUMP_TABLE_CORE (_bfd_nocore),          \
6095
  BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),       \
6096
  BFD_JUMP_TABLE_SYMBOLS (coff),          \
6097
  BFD_JUMP_TABLE_RELOCS (coff),           \
6098
  BFD_JUMP_TABLE_WRITE (coff),            \
6099
  BFD_JUMP_TABLE_LINK (coff),           \
6100
  BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),        \
6101
                  \
6102
  ALTERNATIVE,                \
6103
                  \
6104
  SWAP_TABLE                \
6105
};
6106
6107
#define CREATE_LITTLE_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE)  \
6108
const bfd_target VAR =              \
6109
{                 \
6110
  NAME ,                \
6111
  bfd_target_coff_flavour,            \
6112
  BFD_ENDIAN_LITTLE,    /* Data byte order is little.  */ \
6113
  BFD_ENDIAN_LITTLE,    /* Header byte order is little.  */ \
6114
  /* object flags */            \
6115
  (HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG |      \
6116
   HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS),      \
6117
  /* section flags */           \
6118
  (SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
6119
  UNDER,      /* Leading symbol underscore.  */ \
6120
  '/',        /* AR_pad_char.  */     \
6121
  15,       /* AR_max_namelen.  */      \
6122
  0,        /* match priority.  */      \
6123
  TARGET_KEEP_UNUSED_SECTION_SYMBOLS, /* keep unused section symbols.  */ \
6124
                  \
6125
  /* Data conversion functions.  */         \
6126
  bfd_getl64, bfd_getl_signed_64, bfd_putl64,       \
6127
  bfd_getl32, bfd_getl_signed_32, bfd_putl32,       \
6128
  bfd_getl16, bfd_getl_signed_16, bfd_putl16,       \
6129
  /* Header conversion functions.  */         \
6130
  bfd_getl64, bfd_getl_signed_64, bfd_putl64,       \
6131
  bfd_getl32, bfd_getl_signed_32, bfd_putl32,       \
6132
  bfd_getl16, bfd_getl_signed_16, bfd_putl16,       \
6133
                  \
6134
  {       /* bfd_check_format.  */    \
6135
    _bfd_dummy_target,              \
6136
    coff_object_p,              \
6137
    bfd_generic_archive_p,            \
6138
    _bfd_dummy_target             \
6139
  },                  \
6140
  {       /* bfd_set_format.  */      \
6141
    _bfd_bool_bfd_false_error,            \
6142
    coff_mkobject,              \
6143
    _bfd_generic_mkarchive,           \
6144
    _bfd_bool_bfd_false_error           \
6145
  },                  \
6146
  {       /* bfd_write_contents.  */    \
6147
    _bfd_bool_bfd_false_error,            \
6148
    coff_write_object_contents,           \
6149
    _bfd_write_archive_contents,          \
6150
    _bfd_bool_bfd_false_error           \
6151
  },                  \
6152
                  \
6153
  BFD_JUMP_TABLE_GENERIC (coff),          \
6154
  BFD_JUMP_TABLE_COPY (coff),           \
6155
  BFD_JUMP_TABLE_CORE (_bfd_nocore),          \
6156
  BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff),       \
6157
  BFD_JUMP_TABLE_SYMBOLS (coff),          \
6158
  BFD_JUMP_TABLE_RELOCS (coff),           \
6159
  BFD_JUMP_TABLE_WRITE (coff),            \
6160
  BFD_JUMP_TABLE_LINK (coff),           \
6161
  BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic),        \
6162
                  \
6163
  ALTERNATIVE,                \
6164
                  \
6165
  SWAP_TABLE                \
6166
};