1999-05-03 09:29:11 +02:00
|
|
|
|
/* Support for the generic parts of most COFF variants, for BFD.
|
2001-03-08 22:04:02 +01:00
|
|
|
|
Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
2010-01-18 08:21:46 +01:00
|
|
|
|
2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
Written by Cygnus Support.
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-03 16:26:43 +02:00
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-02-14 12:16:09 +01:00
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
2007-07-03 16:26:43 +02:00
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* Most of this hacked by Steve Chamberlain,
|
|
|
|
|
sac@cygnus.com. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/*
|
|
|
|
|
SECTION
|
|
|
|
|
coff backends
|
|
|
|
|
|
|
|
|
|
BFD supports a number of different flavours of coff format.
|
|
|
|
|
The major differences between formats are the sizes and
|
|
|
|
|
alignments of fields in structures on disk, and the occasional
|
|
|
|
|
extra field.
|
|
|
|
|
|
|
|
|
|
Coff in all its varieties is implemented with a few common
|
|
|
|
|
files and a number of implementation specific files. For
|
|
|
|
|
example, The 88k bcs coff format is implemented in the file
|
|
|
|
|
@file{coff-m88k.c}. This file @code{#include}s
|
|
|
|
|
@file{coff/m88k.h} which defines the external structure of the
|
|
|
|
|
coff format for the 88k, and @file{coff/internal.h} which
|
|
|
|
|
defines the internal structure. @file{coff-m88k.c} also
|
|
|
|
|
defines the relocations used by the 88k format
|
|
|
|
|
@xref{Relocations}.
|
|
|
|
|
|
|
|
|
|
The Intel i960 processor version of coff is implemented in
|
|
|
|
|
@file{coff-i960.c}. This file has the same structure as
|
|
|
|
|
@file{coff-m88k.c}, except that it includes @file{coff/i960.h}
|
|
|
|
|
rather than @file{coff-m88k.h}.
|
|
|
|
|
|
|
|
|
|
SUBSECTION
|
|
|
|
|
Porting to a new version of coff
|
|
|
|
|
|
|
|
|
|
The recommended method is to select from the existing
|
|
|
|
|
implementations the version of coff which is most like the one
|
|
|
|
|
you want to use. For example, we'll say that i386 coff is
|
|
|
|
|
the one you select, and that your coff flavour is called foo.
|
|
|
|
|
Copy @file{i386coff.c} to @file{foocoff.c}, copy
|
|
|
|
|
@file{../include/coff/i386.h} to @file{../include/coff/foo.h},
|
|
|
|
|
and add the lines to @file{targets.c} and @file{Makefile.in}
|
|
|
|
|
so that your new back end is used. Alter the shapes of the
|
|
|
|
|
structures in @file{../include/coff/foo.h} so that they match
|
|
|
|
|
what you need. You will probably also have to add
|
|
|
|
|
@code{#ifdef}s to the code in @file{coff/internal.h} and
|
|
|
|
|
@file{coffcode.h} if your version of coff is too wild.
|
|
|
|
|
|
|
|
|
|
You can verify that your new BFD backend works quite simply by
|
|
|
|
|
building @file{objdump} from the @file{binutils} directory,
|
|
|
|
|
and making sure that its version of what's going on and your
|
|
|
|
|
host system's idea (assuming it has the pretty standard coff
|
|
|
|
|
dump utility, usually called @code{att-dump} or just
|
|
|
|
|
@code{dump}) are the same. Then clean up your code, and send
|
|
|
|
|
what you've done to Cygnus. Then your stuff will be in the
|
|
|
|
|
next release, and you won't have to keep integrating it.
|
|
|
|
|
|
|
|
|
|
SUBSECTION
|
|
|
|
|
How the coff backend works
|
|
|
|
|
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
File layout
|
|
|
|
|
|
|
|
|
|
The Coff backend is split into generic routines that are
|
|
|
|
|
applicable to any Coff target and routines that are specific
|
|
|
|
|
to a particular target. The target-specific routines are
|
|
|
|
|
further split into ones which are basically the same for all
|
|
|
|
|
Coff targets except that they use the external symbol format
|
|
|
|
|
or use different values for certain constants.
|
|
|
|
|
|
|
|
|
|
The generic routines are in @file{coffgen.c}. These routines
|
|
|
|
|
work for any Coff target. They use some hooks into the target
|
|
|
|
|
specific code; the hooks are in a @code{bfd_coff_backend_data}
|
|
|
|
|
structure, one of which exists for each target.
|
|
|
|
|
|
|
|
|
|
The essentially similar target-specific routines are in
|
|
|
|
|
@file{coffcode.h}. This header file includes executable C code.
|
|
|
|
|
The various Coff targets first include the appropriate Coff
|
|
|
|
|
header file, make any special defines that are needed, and
|
|
|
|
|
then include @file{coffcode.h}.
|
|
|
|
|
|
|
|
|
|
Some of the Coff targets then also have additional routines in
|
|
|
|
|
the target source file itself.
|
|
|
|
|
|
|
|
|
|
For example, @file{coff-i960.c} includes
|
|
|
|
|
@file{coff/internal.h} and @file{coff/i960.h}. It then
|
|
|
|
|
defines a few constants, such as @code{I960}, and includes
|
|
|
|
|
@file{coffcode.h}. Since the i960 has complex relocation
|
|
|
|
|
types, @file{coff-i960.c} also includes some code to
|
|
|
|
|
manipulate the i960 relocs. This code is not in
|
|
|
|
|
@file{coffcode.h} because it would not be used by any other
|
|
|
|
|
target.
|
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Coff long section names
|
|
|
|
|
|
|
|
|
|
In the standard Coff object format, section names are limited to
|
|
|
|
|
the eight bytes available in the @code{s_name} field of the
|
|
|
|
|
@code{SCNHDR} section header structure. The format requires the
|
|
|
|
|
field to be NUL-padded, but not necessarily NUL-terminated, so
|
|
|
|
|
the longest section names permitted are a full eight characters.
|
|
|
|
|
|
|
|
|
|
The Microsoft PE variants of the Coff object file format add
|
|
|
|
|
an extension to support the use of long section names. This
|
|
|
|
|
extension is defined in section 4 of the Microsoft PE/COFF
|
|
|
|
|
specification (rev 8.1). If a section name is too long to fit
|
|
|
|
|
into the section header's @code{s_name} field, it is instead
|
|
|
|
|
placed into the string table, and the @code{s_name} field is
|
|
|
|
|
filled with a slash ("/") followed by the ASCII decimal
|
|
|
|
|
representation of the offset of the full name relative to the
|
|
|
|
|
string table base.
|
|
|
|
|
|
|
|
|
|
Note that this implies that the extension can only be used in object
|
|
|
|
|
files, as executables do not contain a string table. The standard
|
|
|
|
|
specifies that long section names from objects emitted into executable
|
|
|
|
|
images are to be truncated.
|
|
|
|
|
|
|
|
|
|
However, as a GNU extension, BFD can generate executable images
|
|
|
|
|
that contain a string table and long section names. This
|
|
|
|
|
would appear to be technically valid, as the standard only says
|
|
|
|
|
that Coff debugging information is deprecated, not forbidden,
|
|
|
|
|
and in practice it works, although some tools that parse PE files
|
|
|
|
|
expecting the MS standard format may become confused; @file{PEview} is
|
|
|
|
|
one known example.
|
|
|
|
|
|
|
|
|
|
The functionality is supported in BFD by code implemented under
|
|
|
|
|
the control of the macro @code{COFF_LONG_SECTION_NAMES}. If not
|
|
|
|
|
defined, the format does not support long section names in any way.
|
|
|
|
|
If defined, it is used to initialise a flag,
|
|
|
|
|
@code{_bfd_coff_long_section_names}, and a hook function pointer,
|
|
|
|
|
@code{_bfd_coff_set_long_section_names}, in the Coff backend data
|
|
|
|
|
structure. The flag controls the generation of long section names
|
|
|
|
|
in output BFDs at runtime; if it is false, as it will be by default
|
|
|
|
|
when generating an executable image, long section names are truncated;
|
|
|
|
|
if true, the long section names extension is employed. The hook
|
|
|
|
|
points to a function that allows the value of the flag to be altered
|
|
|
|
|
at runtime, on formats that support long section names at all; on
|
|
|
|
|
other formats it points to a stub that returns an error indication.
|
2009-04-14 11:47:44 +02:00
|
|
|
|
|
|
|
|
|
With input BFDs, the flag is set according to whether any long section
|
|
|
|
|
names are detected while reading the section headers. For a completely
|
|
|
|
|
new BFD, the flag is set to the default for the target format. This
|
|
|
|
|
information can be used by a client of the BFD library when deciding
|
|
|
|
|
what output format to generate, and means that a BFD that is opened
|
|
|
|
|
for read and subsequently converted to a writeable BFD and modified
|
|
|
|
|
in-place will retain whatever format it had on input.
|
2009-02-18 19:23:08 +01:00
|
|
|
|
|
|
|
|
|
If @code{COFF_LONG_SECTION_NAMES} is simply defined (blank), or is
|
|
|
|
|
defined to the value "1", then long section names are enabled by
|
|
|
|
|
default; if it is defined to the value zero, they are disabled by
|
|
|
|
|
default (but still accepted in input BFDs). The header @file{coffcode.h}
|
|
|
|
|
defines a macro, @code{COFF_DEFAULT_LONG_SECTION_NAMES}, which is
|
|
|
|
|
used in the backends to initialise the backend data structure fields
|
|
|
|
|
appropriately; see the comments for further detail.
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Bit twiddling
|
|
|
|
|
|
|
|
|
|
Each flavour of coff supported in BFD has its own header file
|
|
|
|
|
describing the external layout of the structures. There is also
|
|
|
|
|
an internal description of the coff layout, in
|
|
|
|
|
@file{coff/internal.h}. A major function of the
|
|
|
|
|
coff backend is swapping the bytes and twiddling the bits to
|
|
|
|
|
translate the external form of the structures into the normal
|
|
|
|
|
internal form. This is all performed in the
|
|
|
|
|
@code{bfd_swap}_@i{thing}_@i{direction} routines. Some
|
|
|
|
|
elements are different sizes between different versions of
|
|
|
|
|
coff; it is the duty of the coff version specific include file
|
|
|
|
|
to override the definitions of various packing routines in
|
|
|
|
|
@file{coffcode.h}. E.g., the size of line number entry in coff is
|
|
|
|
|
sometimes 16 bits, and sometimes 32 bits. @code{#define}ing
|
|
|
|
|
@code{PUT_LNSZ_LNNO} and @code{GET_LNSZ_LNNO} will select the
|
|
|
|
|
correct one. No doubt, some day someone will find a version of
|
|
|
|
|
coff which has a varying field size not catered to at the
|
|
|
|
|
moment. To port BFD, that person will have to add more @code{#defines}.
|
|
|
|
|
Three of the bit twiddling routines are exported to
|
|
|
|
|
@code{gdb}; @code{coff_swap_aux_in}, @code{coff_swap_sym_in}
|
1999-08-18 08:00:13 +02:00
|
|
|
|
and @code{coff_swap_lineno_in}. @code{GDB} reads the symbol
|
1999-05-03 09:29:11 +02:00
|
|
|
|
table on its own, but uses BFD to fix things up. More of the
|
|
|
|
|
bit twiddlers are exported for @code{gas};
|
|
|
|
|
@code{coff_swap_aux_out}, @code{coff_swap_sym_out},
|
|
|
|
|
@code{coff_swap_lineno_out}, @code{coff_swap_reloc_out},
|
|
|
|
|
@code{coff_swap_filehdr_out}, @code{coff_swap_aouthdr_out},
|
|
|
|
|
@code{coff_swap_scnhdr_out}. @code{Gas} currently keeps track
|
|
|
|
|
of all the symbol table and reloc drudgery itself, thereby
|
|
|
|
|
saving the internal BFD overhead, but uses BFD to swap things
|
|
|
|
|
on the way out, making cross ports much safer. Doing so also
|
|
|
|
|
allows BFD (and thus the linker) to use the same header files
|
|
|
|
|
as @code{gas}, which makes one avenue to disaster disappear.
|
|
|
|
|
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Symbol reading
|
|
|
|
|
|
|
|
|
|
The simple canonical form for symbols used by BFD is not rich
|
|
|
|
|
enough to keep all the information available in a coff symbol
|
|
|
|
|
table. The back end gets around this problem by keeping the original
|
|
|
|
|
symbol table around, "behind the scenes".
|
|
|
|
|
|
|
|
|
|
When a symbol table is requested (through a call to
|
|
|
|
|
@code{bfd_canonicalize_symtab}), a request gets through to
|
|
|
|
|
@code{coff_get_normalized_symtab}. This reads the symbol table from
|
|
|
|
|
the coff file and swaps all the structures inside into the
|
|
|
|
|
internal form. It also fixes up all the pointers in the table
|
|
|
|
|
(represented in the file by offsets from the first symbol in
|
|
|
|
|
the table) into physical pointers to elements in the new
|
|
|
|
|
internal table. This involves some work since the meanings of
|
|
|
|
|
fields change depending upon context: a field that is a
|
|
|
|
|
pointer to another structure in the symbol table at one moment
|
|
|
|
|
may be the size in bytes of a structure at the next. Another
|
|
|
|
|
pass is made over the table. All symbols which mark file names
|
|
|
|
|
(<<C_FILE>> symbols) are modified so that the internal
|
|
|
|
|
string points to the value in the auxent (the real filename)
|
|
|
|
|
rather than the normal text associated with the symbol
|
|
|
|
|
(@code{".file"}).
|
|
|
|
|
|
|
|
|
|
At this time the symbol names are moved around. Coff stores
|
|
|
|
|
all symbols less than nine characters long physically
|
|
|
|
|
within the symbol table; longer strings are kept at the end of
|
2008-08-05 05:03:46 +02:00
|
|
|
|
the file in the string table. This pass moves all strings
|
1999-05-03 09:29:11 +02:00
|
|
|
|
into memory and replaces them with pointers to the strings.
|
|
|
|
|
|
|
|
|
|
The symbol table is massaged once again, this time to create
|
|
|
|
|
the canonical table used by the BFD application. Each symbol
|
|
|
|
|
is inspected in turn, and a decision made (using the
|
|
|
|
|
@code{sclass} field) about the various flags to set in the
|
|
|
|
|
@code{asymbol}. @xref{Symbols}. The generated canonical table
|
|
|
|
|
shares strings with the hidden internal symbol table.
|
|
|
|
|
|
|
|
|
|
Any linenumbers are read from the coff file too, and attached
|
|
|
|
|
to the symbols which own the functions the linenumbers belong to.
|
|
|
|
|
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Symbol writing
|
|
|
|
|
|
|
|
|
|
Writing a symbol to a coff file which didn't come from a coff
|
|
|
|
|
file will lose any debugging information. The @code{asymbol}
|
|
|
|
|
structure remembers the BFD from which the symbol was taken, and on
|
|
|
|
|
output the back end makes sure that the same destination target as
|
|
|
|
|
source target is present.
|
|
|
|
|
|
|
|
|
|
When the symbols have come from a coff file then all the
|
|
|
|
|
debugging information is preserved.
|
|
|
|
|
|
|
|
|
|
Symbol tables are provided for writing to the back end in a
|
|
|
|
|
vector of pointers to pointers. This allows applications like
|
|
|
|
|
the linker to accumulate and output large symbol tables
|
|
|
|
|
without having to do too much byte copying.
|
|
|
|
|
|
|
|
|
|
This function runs through the provided symbol table and
|
|
|
|
|
patches each symbol marked as a file place holder
|
|
|
|
|
(@code{C_FILE}) to point to the next file place holder in the
|
|
|
|
|
list. It also marks each @code{offset} field in the list with
|
|
|
|
|
the offset from the first symbol of the current symbol.
|
|
|
|
|
|
|
|
|
|
Another function of this procedure is to turn the canonical
|
|
|
|
|
value form of BFD into the form used by coff. Internally, BFD
|
|
|
|
|
expects symbol values to be offsets from a section base; so a
|
|
|
|
|
symbol physically at 0x120, but in a section starting at
|
|
|
|
|
0x100, would have the value 0x20. Coff expects symbols to
|
|
|
|
|
contain their final value, so symbols have their values
|
|
|
|
|
changed at this point to reflect their sum with their owning
|
|
|
|
|
section. This transformation uses the
|
|
|
|
|
<<output_section>> field of the @code{asymbol}'s
|
|
|
|
|
@code{asection} @xref{Sections}.
|
|
|
|
|
|
|
|
|
|
o <<coff_mangle_symbols>>
|
|
|
|
|
|
|
|
|
|
This routine runs though the provided symbol table and uses
|
|
|
|
|
the offsets generated by the previous pass and the pointers
|
|
|
|
|
generated when the symbol table was read in to create the
|
2003-02-14 12:16:09 +01:00
|
|
|
|
structured hierarchy required by coff. It changes each pointer
|
1999-05-03 09:29:11 +02:00
|
|
|
|
to a symbol into the index into the symbol table of the asymbol.
|
|
|
|
|
|
|
|
|
|
o <<coff_write_symbols>>
|
|
|
|
|
|
|
|
|
|
This routine runs through the symbol table and patches up the
|
|
|
|
|
symbols from their internal form into the coff way, calls the
|
|
|
|
|
bit twiddlers, and writes out the table to the file.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
INTERNAL_DEFINITION
|
|
|
|
|
coff_symbol_type
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
The hidden information for an <<asymbol>> is described in a
|
|
|
|
|
<<combined_entry_type>>:
|
|
|
|
|
|
|
|
|
|
CODE_FRAGMENT
|
|
|
|
|
.
|
|
|
|
|
.typedef struct coff_ptr_struct
|
|
|
|
|
.{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Remembers the offset from the first symbol in the file for
|
|
|
|
|
. this symbol. Generated by coff_renumber_symbols. *}
|
|
|
|
|
. unsigned int offset;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Should the value of this symbol be renumbered. Used for
|
|
|
|
|
. XCOFF C_BSTAT symbols. Set by coff_slurp_symbol_table. *}
|
|
|
|
|
. unsigned int fix_value : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Should the tag field of this symbol be renumbered.
|
|
|
|
|
. Created by coff_pointerize_aux. *}
|
|
|
|
|
. unsigned int fix_tag : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Should the endidx field of this symbol be renumbered.
|
|
|
|
|
. Created by coff_pointerize_aux. *}
|
|
|
|
|
. unsigned int fix_end : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Should the x_csect.x_scnlen field be renumbered.
|
|
|
|
|
. Created by coff_pointerize_aux. *}
|
|
|
|
|
. unsigned int fix_scnlen : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Fix up an XCOFF C_BINCL/C_EINCL symbol. The value is the
|
|
|
|
|
. index into the line number entries. Set by coff_slurp_symbol_table. *}
|
|
|
|
|
. unsigned int fix_line : 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* The container for the symbol structure as read and translated
|
|
|
|
|
. from the file. *}
|
|
|
|
|
. union
|
|
|
|
|
. {
|
|
|
|
|
. union internal_auxent auxent;
|
|
|
|
|
. struct internal_syment syment;
|
|
|
|
|
. } u;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.} combined_entry_type;
|
|
|
|
|
.
|
|
|
|
|
.
|
|
|
|
|
.{* Each canonical asymbol really looks like this: *}
|
|
|
|
|
.
|
|
|
|
|
.typedef struct coff_symbol_struct
|
|
|
|
|
.{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* The actual symbol which the rest of BFD works with *}
|
|
|
|
|
. asymbol symbol;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* A pointer to the hidden information for this symbol *}
|
|
|
|
|
. combined_entry_type *native;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* A pointer to the linenumber information for this symbol *}
|
|
|
|
|
. struct lineno_cache_entry *lineno;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. {* Have the line numbers been relocated yet ? *}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean done_lineno;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.} coff_symbol_type;
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
2009-09-05 18:38:48 +02:00
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
#include "peicode.h"
|
|
|
|
|
#else
|
|
|
|
|
#include "coffswap.h"
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-11 18:55:48 +02:00
|
|
|
|
#define STRING_SIZE_SIZE 4
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2004-04-29 18:40:20 +02:00
|
|
|
|
#define DOT_DEBUG ".debug"
|
|
|
|
|
#define GNU_LINKONCE_WI ".gnu.linkonce.wi."
|
2009-06-25 15:39:27 +02:00
|
|
|
|
#define DOT_RELOC ".reloc"
|
2004-04-29 18:40:20 +02:00
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
#if defined (COFF_LONG_SECTION_NAMES)
|
|
|
|
|
/* Needed to expand the inputs to BLANKOR1TOODD. */
|
|
|
|
|
#define COFFLONGSECTIONCATHELPER(x,y) x ## y
|
|
|
|
|
/* If the input macro Y is blank or '1', return an odd number; if it is
|
|
|
|
|
'0', return an even number. Result undefined in all other cases. */
|
|
|
|
|
#define BLANKOR1TOODD(y) COFFLONGSECTIONCATHELPER(1,y)
|
|
|
|
|
/* Defined to numerical 0 or 1 according to whether generation of long
|
|
|
|
|
section names is disabled or enabled by default. */
|
|
|
|
|
#define COFF_ENABLE_LONG_SECTION_NAMES (BLANKOR1TOODD(COFF_LONG_SECTION_NAMES) & 1)
|
|
|
|
|
/* Where long section names are supported, we allow them to be enabled
|
|
|
|
|
and disabled at runtime, so select an appropriate hook function for
|
|
|
|
|
_bfd_coff_set_long_section_names. */
|
|
|
|
|
#define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_allowed
|
|
|
|
|
#else /* !defined (COFF_LONG_SECTION_NAMES) */
|
|
|
|
|
/* If long section names are not supported, this stub disallows any
|
|
|
|
|
attempt to enable them at run-time. */
|
|
|
|
|
#define COFF_LONG_SECTION_NAMES_SETTER bfd_coff_set_long_section_names_disallowed
|
|
|
|
|
#endif /* defined (COFF_LONG_SECTION_NAMES) */
|
|
|
|
|
|
|
|
|
|
/* Define a macro that can be used to initialise both the fields relating
|
|
|
|
|
to long section names in the backend data struct simultaneously. */
|
|
|
|
|
#if COFF_ENABLE_LONG_SECTION_NAMES
|
|
|
|
|
#define COFF_DEFAULT_LONG_SECTION_NAMES (TRUE), COFF_LONG_SECTION_NAMES_SETTER
|
|
|
|
|
#else /* !COFF_ENABLE_LONG_SECTION_NAMES */
|
|
|
|
|
#define COFF_DEFAULT_LONG_SECTION_NAMES (FALSE), COFF_LONG_SECTION_NAMES_SETTER
|
|
|
|
|
#endif /* COFF_ENABLE_LONG_SECTION_NAMES */
|
|
|
|
|
|
|
|
|
|
#if defined (COFF_LONG_SECTION_NAMES)
|
|
|
|
|
static bfd_boolean bfd_coff_set_long_section_names_allowed
|
|
|
|
|
(bfd *, int);
|
|
|
|
|
#else /* !defined (COFF_LONG_SECTION_NAMES) */
|
|
|
|
|
static bfd_boolean bfd_coff_set_long_section_names_disallowed
|
|
|
|
|
(bfd *, int);
|
|
|
|
|
#endif /* defined (COFF_LONG_SECTION_NAMES) */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static long sec_to_styp_flags
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(const char *, flagword);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean styp_to_sec_flags
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, void *, const char *, asection *, flagword *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_bad_format_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, void *);
|
1999-08-09 04:56:16 +02:00
|
|
|
|
static void coff_set_custom_section_alignment
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *, const struct coff_section_alignment_entry *,
|
|
|
|
|
const unsigned int);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_new_section_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_set_arch_mach_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, void *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_write_relocs
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, int);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_set_flags
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, unsigned int *, unsigned short *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_set_arch_mach
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, enum bfd_architecture, unsigned long) ATTRIBUTE_UNUSED;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_compute_section_file_positions
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_write_object_contents
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *) ATTRIBUTE_UNUSED;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_set_section_contents
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *, const void *, file_ptr, bfd_size_type);
|
|
|
|
|
static void * buy_and_read
|
|
|
|
|
(bfd *, file_ptr, bfd_size_type);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_slurp_line_table
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_slurp_symbol_table
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *);
|
1999-08-05 23:01:37 +02:00
|
|
|
|
static enum coff_symbol_classification coff_classify_symbol
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, struct internal_syment *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_slurp_reloc_table
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *, asymbol **);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static long coff_canonicalize_reloc
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, asection *, arelent **, asymbol **);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_mkobject_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static void * coff_mkobject_hook
|
|
|
|
|
(bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2001-02-27 02:38:06 +01:00
|
|
|
|
#ifdef COFF_WITH_PE
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static flagword handle_COMDAT
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, flagword, void *, const char *, asection *);
|
2001-02-27 02:38:06 +01:00
|
|
|
|
#endif
|
2002-04-09 18:43:26 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_read_word
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, unsigned int *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static unsigned int coff_compute_checksum
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean coff_apply_checksum
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *);
|
2002-04-09 18:43:26 +02:00
|
|
|
|
#endif
|
2003-06-04 13:38:30 +02:00
|
|
|
|
#ifdef TICOFF
|
|
|
|
|
static bfd_boolean ticoff0_bad_format_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, void * );
|
2003-06-04 13:38:30 +02:00
|
|
|
|
static bfd_boolean ticoff1_bad_format_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd *, void * );
|
2003-06-04 13:38:30 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* void warning(); */
|
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
#if defined (COFF_LONG_SECTION_NAMES)
|
|
|
|
|
static bfd_boolean
|
|
|
|
|
bfd_coff_set_long_section_names_allowed (bfd *abfd, int enable)
|
|
|
|
|
{
|
|
|
|
|
coff_backend_info (abfd)->_bfd_coff_long_section_names = enable;
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
#else /* !defined (COFF_LONG_SECTION_NAMES) */
|
|
|
|
|
static bfd_boolean
|
|
|
|
|
bfd_coff_set_long_section_names_disallowed (bfd *abfd, int enable)
|
|
|
|
|
{
|
|
|
|
|
(void) abfd;
|
|
|
|
|
(void) enable;
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
#endif /* defined (COFF_LONG_SECTION_NAMES) */
|
|
|
|
|
|
1999-09-07 04:11:54 +02:00
|
|
|
|
/* Return a word with STYP_* (scnhdr.s_flags) flags set to represent
|
|
|
|
|
the incoming SEC_* flags. The inverse of this function is
|
|
|
|
|
styp_to_sec_flags(). NOTE: If you add to/change this routine, you
|
|
|
|
|
should probably mirror the changes in styp_to_sec_flags(). */
|
|
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
|
|
2000-12-08 23:50:07 +01:00
|
|
|
|
/* Macros for setting debugging flags. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-12-08 23:50:07 +01:00
|
|
|
|
#ifdef STYP_DEBUG
|
|
|
|
|
#define STYP_XCOFF_DEBUG STYP_DEBUG
|
|
|
|
|
#else
|
|
|
|
|
#define STYP_XCOFF_DEBUG STYP_INFO
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_ALIGN_IN_S_FLAGS
|
|
|
|
|
#define STYP_DEBUG_INFO STYP_DSECT
|
|
|
|
|
#else
|
|
|
|
|
#define STYP_DEBUG_INFO STYP_INFO
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static long
|
2005-04-21 09:45:39 +02:00
|
|
|
|
sec_to_styp_flags (const char *sec_name, flagword sec_flags)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
long styp_flags = 0;
|
|
|
|
|
|
|
|
|
|
if (!strcmp (sec_name, _TEXT))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_TEXT;
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _DATA))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_DATA;
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _BSS))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_BSS;
|
|
|
|
|
#ifdef _COMMENT
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _COMMENT))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_INFO;
|
|
|
|
|
#endif /* _COMMENT */
|
|
|
|
|
#ifdef _LIB
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _LIB))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_LIB;
|
|
|
|
|
#endif /* _LIB */
|
|
|
|
|
#ifdef _LIT
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _LIT))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_LIT;
|
|
|
|
|
#endif /* _LIT */
|
|
|
|
|
}
|
2006-09-16 20:12:17 +02:00
|
|
|
|
else if (CONST_STRNEQ (sec_name, DOT_DEBUG))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-12-08 23:50:07 +01:00
|
|
|
|
/* Handle the XCOFF debug section and DWARF2 debug sections. */
|
|
|
|
|
if (!sec_name[6])
|
2008-08-05 05:03:46 +02:00
|
|
|
|
styp_flags = STYP_XCOFF_DEBUG;
|
2000-12-08 23:50:07 +01:00
|
|
|
|
else
|
2008-08-05 05:03:46 +02:00
|
|
|
|
styp_flags = STYP_DEBUG_INFO;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2006-09-16 20:12:17 +02:00
|
|
|
|
else if (CONST_STRNEQ (sec_name, ".stab"))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-12-08 23:50:07 +01:00
|
|
|
|
styp_flags = STYP_DEBUG_INFO;
|
|
|
|
|
}
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
2006-09-16 20:12:17 +02:00
|
|
|
|
else if (CONST_STRNEQ (sec_name, GNU_LINKONCE_WI))
|
2000-12-08 23:50:07 +01:00
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_DEBUG_INFO;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-12-08 23:50:07 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
else if (!strcmp (sec_name, _PAD))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_PAD;
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _LOADER))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_LOADER;
|
|
|
|
|
}
|
2001-12-18 01:32:32 +01:00
|
|
|
|
else if (!strcmp (sec_name, _EXCEPT))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_EXCEPT;
|
|
|
|
|
}
|
|
|
|
|
else if (!strcmp (sec_name, _TYPCHK))
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_TYPCHK;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
/* Try and figure out what it should be */
|
|
|
|
|
else if (sec_flags & SEC_CODE)
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_TEXT;
|
|
|
|
|
}
|
|
|
|
|
else if (sec_flags & SEC_DATA)
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_DATA;
|
|
|
|
|
}
|
|
|
|
|
else if (sec_flags & SEC_READONLY)
|
|
|
|
|
{
|
|
|
|
|
#ifdef STYP_LIT /* 29k readonly text/data section */
|
|
|
|
|
styp_flags = STYP_LIT;
|
|
|
|
|
#else
|
|
|
|
|
styp_flags = STYP_TEXT;
|
|
|
|
|
#endif /* STYP_LIT */
|
|
|
|
|
}
|
|
|
|
|
else if (sec_flags & SEC_LOAD)
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_TEXT;
|
|
|
|
|
}
|
|
|
|
|
else if (sec_flags & SEC_ALLOC)
|
|
|
|
|
{
|
|
|
|
|
styp_flags = STYP_BSS;
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-07 02:58:07 +02:00
|
|
|
|
#ifdef STYP_CLINK
|
2005-02-22 01:50:07 +01:00
|
|
|
|
if (sec_flags & SEC_TIC54X_CLINK)
|
2000-04-07 02:58:07 +02:00
|
|
|
|
styp_flags |= STYP_CLINK;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef STYP_BLOCK
|
2005-02-22 01:50:07 +01:00
|
|
|
|
if (sec_flags & SEC_TIC54X_BLOCK)
|
2000-04-07 02:58:07 +02:00
|
|
|
|
styp_flags |= STYP_BLOCK;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef STYP_NOLOAD
|
|
|
|
|
if ((sec_flags & (SEC_NEVER_LOAD | SEC_COFF_SHARED_LIBRARY)) != 0)
|
|
|
|
|
styp_flags |= STYP_NOLOAD;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-07 04:11:54 +02:00
|
|
|
|
return styp_flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* COFF_WITH_PE */
|
|
|
|
|
|
|
|
|
|
/* The PE version; see above for the general comments. The non-PE
|
|
|
|
|
case seems to be more guessing, and breaks PE format; specifically,
|
|
|
|
|
.rdata is readonly, but it sure ain't text. Really, all this
|
|
|
|
|
should be set up properly in gas (or whatever assembler is in use),
|
|
|
|
|
and honor whatever objcopy/strip, etc. sent us as input. */
|
|
|
|
|
|
|
|
|
|
static long
|
2005-04-21 09:45:39 +02:00
|
|
|
|
sec_to_styp_flags (const char *sec_name, flagword sec_flags)
|
1999-09-07 04:11:54 +02:00
|
|
|
|
{
|
|
|
|
|
long styp_flags = 0;
|
|
|
|
|
|
|
|
|
|
/* caution: there are at least three groups of symbols that have
|
|
|
|
|
very similar bits and meanings: IMAGE_SCN*, SEC_*, and STYP_*.
|
|
|
|
|
SEC_* are the BFD internal flags, used for generic BFD
|
|
|
|
|
information. STYP_* are the COFF section flags which appear in
|
|
|
|
|
COFF files. IMAGE_SCN_* are the PE section flags which appear in
|
|
|
|
|
PE files. The STYP_* flags and the IMAGE_SCN_* flags overlap,
|
|
|
|
|
but there are more IMAGE_SCN_* flags. */
|
|
|
|
|
|
2004-04-29 18:40:20 +02:00
|
|
|
|
/* FIXME: There is no gas syntax to specify the debug section flag. */
|
2006-09-16 20:12:17 +02:00
|
|
|
|
if (CONST_STRNEQ (sec_name, DOT_DEBUG)
|
|
|
|
|
|| CONST_STRNEQ (sec_name, GNU_LINKONCE_WI))
|
2009-07-03 18:07:38 +02:00
|
|
|
|
sec_flags = SEC_DEBUGGING | SEC_READONLY;
|
2004-04-29 18:40:20 +02:00
|
|
|
|
|
1999-09-07 04:11:54 +02:00
|
|
|
|
/* skip LOAD */
|
|
|
|
|
/* READONLY later */
|
|
|
|
|
/* skip RELOC */
|
|
|
|
|
if ((sec_flags & SEC_CODE) != 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_CNT_CODE;
|
|
|
|
|
if ((sec_flags & SEC_DATA) != 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_CNT_INITIALIZED_DATA;
|
|
|
|
|
if ((sec_flags & SEC_ALLOC) != 0 && (sec_flags & SEC_LOAD) == 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_CNT_UNINITIALIZED_DATA; /* ==STYP_BSS */
|
|
|
|
|
/* skip ROM */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
/* skip constRUCTOR */
|
1999-09-07 04:11:54 +02:00
|
|
|
|
/* skip CONTENTS */
|
|
|
|
|
if ((sec_flags & SEC_IS_COMMON) != 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
styp_flags |= IMAGE_SCN_LNK_COMDAT;
|
1999-09-07 04:11:54 +02:00
|
|
|
|
if ((sec_flags & SEC_DEBUGGING) != 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_MEM_DISCARDABLE;
|
|
|
|
|
if ((sec_flags & SEC_EXCLUDE) != 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_LNK_REMOVE;
|
|
|
|
|
if ((sec_flags & SEC_NEVER_LOAD) != 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_LNK_REMOVE;
|
|
|
|
|
/* skip IN_MEMORY */
|
|
|
|
|
/* skip SORT */
|
2000-11-28 22:42:16 +01:00
|
|
|
|
if (sec_flags & SEC_LINK_ONCE)
|
|
|
|
|
styp_flags |= IMAGE_SCN_LNK_COMDAT;
|
1999-09-07 04:11:54 +02:00
|
|
|
|
/* skip LINK_DUPLICATES */
|
|
|
|
|
/* skip LINKER_CREATED */
|
|
|
|
|
|
2009-03-19 12:02:09 +01:00
|
|
|
|
if ((sec_flags & SEC_COFF_NOREAD) == 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_MEM_READ; /* Invert NOREAD for read. */
|
|
|
|
|
if ((sec_flags & SEC_READONLY) == 0)
|
|
|
|
|
styp_flags |= IMAGE_SCN_MEM_WRITE; /* Invert READONLY for write. */
|
|
|
|
|
if (sec_flags & SEC_CODE)
|
|
|
|
|
styp_flags |= IMAGE_SCN_MEM_EXECUTE; /* CODE->EXECUTE. */
|
|
|
|
|
if (sec_flags & SEC_COFF_SHARED)
|
|
|
|
|
styp_flags |= IMAGE_SCN_MEM_SHARED; /* Shared remains meaningful. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
return styp_flags;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
1999-09-07 04:11:54 +02:00
|
|
|
|
|
|
|
|
|
#endif /* COFF_WITH_PE */
|
|
|
|
|
|
|
|
|
|
/* Return a word with SEC_* flags set to represent the incoming STYP_*
|
|
|
|
|
flags (from scnhdr.s_flags). The inverse of this function is
|
|
|
|
|
sec_to_styp_flags(). NOTE: If you add to/change this routine, you
|
|
|
|
|
should probably mirror the changes in sec_to_styp_flags(). */
|
|
|
|
|
|
|
|
|
|
#ifndef COFF_WITH_PE
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
styp_to_sec_flags (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
void * hdr,
|
|
|
|
|
const char *name,
|
|
|
|
|
asection *section ATTRIBUTE_UNUSED,
|
|
|
|
|
flagword *flags_ptr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
|
|
|
|
|
long styp_flags = internal_s->s_flags;
|
|
|
|
|
flagword sec_flags = 0;
|
|
|
|
|
|
2000-04-07 02:58:07 +02:00
|
|
|
|
#ifdef STYP_BLOCK
|
|
|
|
|
if (styp_flags & STYP_BLOCK)
|
2005-02-22 01:50:07 +01:00
|
|
|
|
sec_flags |= SEC_TIC54X_BLOCK;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#endif
|
2000-04-07 02:58:07 +02:00
|
|
|
|
|
|
|
|
|
#ifdef STYP_CLINK
|
|
|
|
|
if (styp_flags & STYP_CLINK)
|
2005-02-22 01:50:07 +01:00
|
|
|
|
sec_flags |= SEC_TIC54X_CLINK;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#endif
|
2000-04-07 02:58:07 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef STYP_NOLOAD
|
|
|
|
|
if (styp_flags & STYP_NOLOAD)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags |= SEC_NEVER_LOAD;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif /* STYP_NOLOAD */
|
|
|
|
|
|
|
|
|
|
/* For 386 COFF, at least, an unloadable text or data section is
|
|
|
|
|
actually a shared library section. */
|
|
|
|
|
if (styp_flags & STYP_TEXT)
|
|
|
|
|
{
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
|
|
|
|
|
}
|
|
|
|
|
else if (styp_flags & STYP_DATA)
|
|
|
|
|
{
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
|
|
|
|
|
}
|
|
|
|
|
else if (styp_flags & STYP_BSS)
|
|
|
|
|
{
|
|
|
|
|
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
sec_flags |= SEC_ALLOC;
|
|
|
|
|
}
|
|
|
|
|
else if (styp_flags & STYP_INFO)
|
|
|
|
|
{
|
|
|
|
|
/* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
|
|
|
|
|
defined. coff_compute_section_file_positions uses
|
|
|
|
|
COFF_PAGE_SIZE to ensure that the low order bits of the
|
|
|
|
|
section VMA and the file offset match. If we don't know
|
|
|
|
|
COFF_PAGE_SIZE, we can't ensure the correct correspondence,
|
|
|
|
|
and demand page loading of the file will fail. */
|
|
|
|
|
#if defined (COFF_PAGE_SIZE) && !defined (COFF_ALIGN_IN_S_FLAGS)
|
|
|
|
|
sec_flags |= SEC_DEBUGGING;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else if (styp_flags & STYP_PAD)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (strcmp (name, _TEXT) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_CODE | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
sec_flags |= SEC_CODE | SEC_LOAD | SEC_ALLOC;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (name, _DATA) == 0)
|
|
|
|
|
{
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_DATA | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
sec_flags |= SEC_DATA | SEC_LOAD | SEC_ALLOC;
|
|
|
|
|
}
|
|
|
|
|
else if (strcmp (name, _BSS) == 0)
|
|
|
|
|
{
|
|
|
|
|
#ifdef BSS_NOLOAD_IS_SHARED_LIBRARY
|
|
|
|
|
if (sec_flags & SEC_NEVER_LOAD)
|
|
|
|
|
sec_flags |= SEC_ALLOC | SEC_COFF_SHARED_LIBRARY;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
sec_flags |= SEC_ALLOC;
|
|
|
|
|
}
|
2006-09-16 20:12:17 +02:00
|
|
|
|
else if (CONST_STRNEQ (name, DOT_DEBUG)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef _COMMENT
|
|
|
|
|
|| strcmp (name, _COMMENT) == 0
|
2000-12-08 23:50:07 +01:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
2006-09-16 20:12:17 +02:00
|
|
|
|
|| CONST_STRNEQ (name, GNU_LINKONCE_WI)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2006-09-16 20:12:17 +02:00
|
|
|
|
|| CONST_STRNEQ (name, ".stab"))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef COFF_PAGE_SIZE
|
|
|
|
|
sec_flags |= SEC_DEBUGGING;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
#ifdef _LIB
|
|
|
|
|
else if (strcmp (name, _LIB) == 0)
|
|
|
|
|
;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef _LIT
|
|
|
|
|
else if (strcmp (name, _LIT) == 0)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags = SEC_LOAD | SEC_ALLOC | SEC_READONLY;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
else
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags |= SEC_ALLOC | SEC_LOAD;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
#ifdef STYP_LIT /* A29k readonly text/data section type. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((styp_flags & STYP_LIT) == STYP_LIT)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags = (SEC_LOAD | SEC_ALLOC | SEC_READONLY);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif /* STYP_LIT */
|
2001-06-15 11:03:14 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
#ifdef STYP_OTHER_LOAD /* Other loaded sections. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (styp_flags & STYP_OTHER_LOAD)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
sec_flags = (SEC_LOAD | SEC_ALLOC);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif /* STYP_SDATA */
|
|
|
|
|
|
1999-09-07 04:11:54 +02:00
|
|
|
|
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
|
|
|
|
|
/* As a GNU extension, if the name begins with .gnu.linkonce, we
|
|
|
|
|
only link a single copy of the section. This is used to support
|
|
|
|
|
g++. g++ will emit each template expansion in its own section.
|
|
|
|
|
The symbols will be defined as weak, so that multiple definitions
|
|
|
|
|
are permitted. The GNU linker extension is to actually discard
|
|
|
|
|
all but one of the sections. */
|
2006-09-16 20:12:17 +02:00
|
|
|
|
if (CONST_STRNEQ (name, ".gnu.linkonce"))
|
1999-09-07 04:11:54 +02:00
|
|
|
|
sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-06-15 11:03:14 +02:00
|
|
|
|
if (flags_ptr == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2001-06-15 11:03:14 +02:00
|
|
|
|
|
|
|
|
|
* flags_ptr = sec_flags;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-09-07 04:11:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* COFF_WITH_PE */
|
|
|
|
|
|
|
|
|
|
static flagword
|
2005-04-21 09:45:39 +02:00
|
|
|
|
handle_COMDAT (bfd * abfd,
|
|
|
|
|
flagword sec_flags,
|
|
|
|
|
void * hdr,
|
|
|
|
|
const char *name,
|
|
|
|
|
asection *section)
|
1999-09-07 04:11:54 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
bfd_byte *esymstart, *esym, *esymend;
|
|
|
|
|
int seen_state = 0;
|
|
|
|
|
char *target_name = NULL;
|
|
|
|
|
|
|
|
|
|
sec_flags |= SEC_LINK_ONCE;
|
|
|
|
|
|
|
|
|
|
/* Unfortunately, the PE format stores essential information in
|
|
|
|
|
the symbol table, of all places. We need to extract that
|
|
|
|
|
information now, so that objdump and the linker will know how
|
|
|
|
|
to handle the section without worrying about the symbols. We
|
|
|
|
|
can't call slurp_symtab, because the linker doesn't want the
|
|
|
|
|
swapped symbols. */
|
|
|
|
|
|
|
|
|
|
/* COMDAT sections are special. The first symbol is the section
|
|
|
|
|
symbol, which tells what kind of COMDAT section it is. The
|
|
|
|
|
second symbol is the "comdat symbol" - the one with the
|
|
|
|
|
unique name. GNU uses the section symbol for the unique
|
|
|
|
|
name; MS uses ".text" for every comdat section. Sigh. - DJ */
|
|
|
|
|
|
|
|
|
|
/* This is not mirrored in sec_to_styp_flags(), but there
|
|
|
|
|
doesn't seem to be a need to, either, and it would at best be
|
|
|
|
|
rather messy. */
|
|
|
|
|
|
|
|
|
|
if (! _bfd_coff_get_external_symbols (abfd))
|
|
|
|
|
return sec_flags;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
esymstart = esym = (bfd_byte *) obj_coff_external_syms (abfd);
|
|
|
|
|
esymend = esym + obj_raw_syment_count (abfd) * bfd_coff_symesz (abfd);
|
|
|
|
|
|
|
|
|
|
while (esym < esymend)
|
1999-09-07 04:11:54 +02:00
|
|
|
|
{
|
2001-02-27 02:38:06 +01:00
|
|
|
|
struct internal_syment isym;
|
|
|
|
|
char buf[SYMNMLEN + 1];
|
|
|
|
|
const char *symname;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
bfd_coff_swap_sym_in (abfd, esym, & isym);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
if (sizeof (internal_s->s_name) > SYMNMLEN)
|
|
|
|
|
{
|
|
|
|
|
/* This case implies that the matching
|
|
|
|
|
symbol name will be in the string table. */
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (isym.n_scnum == section->target_index)
|
|
|
|
|
{
|
|
|
|
|
/* According to the MSVC documentation, the first
|
|
|
|
|
TWO entries with the section # are both of
|
|
|
|
|
interest to us. The first one is the "section
|
|
|
|
|
symbol" (section name). The second is the comdat
|
|
|
|
|
symbol name. Here, we've found the first
|
|
|
|
|
qualifying entry; we distinguish it from the
|
|
|
|
|
second with a state flag.
|
|
|
|
|
|
|
|
|
|
In the case of gas-generated (at least until that
|
|
|
|
|
is fixed) .o files, it isn't necessarily the
|
|
|
|
|
second one. It may be some other later symbol.
|
|
|
|
|
|
|
|
|
|
Since gas also doesn't follow MS conventions and
|
|
|
|
|
emits the section similar to .text$<name>, where
|
|
|
|
|
<something> is the name we're looking for, we
|
|
|
|
|
distinguish the two as follows:
|
|
|
|
|
|
|
|
|
|
If the section name is simply a section name (no
|
|
|
|
|
$) we presume it's MS-generated, and look at
|
|
|
|
|
precisely the second symbol for the comdat name.
|
|
|
|
|
If the section name has a $, we assume it's
|
|
|
|
|
gas-generated, and look for <something> (whatever
|
|
|
|
|
follows the $) as the comdat symbol. */
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* All 3 branches use this. */
|
2001-02-27 02:38:06 +01:00
|
|
|
|
symname = _bfd_coff_internal_syment_name (abfd, &isym, buf);
|
|
|
|
|
|
|
|
|
|
if (symname == NULL)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
switch (seen_state)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case 0:
|
|
|
|
|
{
|
|
|
|
|
/* The first time we've seen the symbol. */
|
|
|
|
|
union internal_auxent aux;
|
|
|
|
|
|
|
|
|
|
/* If it isn't the stuff we're expecting, die;
|
|
|
|
|
The MS documentation is vague, but it
|
|
|
|
|
appears that the second entry serves BOTH
|
|
|
|
|
as the comdat symbol and the defining
|
|
|
|
|
symbol record (either C_STAT or C_EXT,
|
|
|
|
|
possibly with an aux entry with debug
|
|
|
|
|
information if it's a function.) It
|
|
|
|
|
appears the only way to find the second one
|
|
|
|
|
is to count. (On Intel, they appear to be
|
|
|
|
|
adjacent, but on Alpha, they have been
|
|
|
|
|
found separated.)
|
|
|
|
|
|
|
|
|
|
Here, we think we've found the first one,
|
|
|
|
|
but there's some checking we can do to be
|
|
|
|
|
sure. */
|
|
|
|
|
|
2009-04-16 17:39:48 +02:00
|
|
|
|
if (! ((isym.n_sclass == C_STAT
|
|
|
|
|
|| isym.n_sclass == C_EXT)
|
2001-02-27 02:38:06 +01:00
|
|
|
|
&& isym.n_type == T_NULL
|
|
|
|
|
&& isym.n_value == 0))
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* FIXME LATER: MSVC generates section names
|
|
|
|
|
like .text for comdats. Gas generates
|
|
|
|
|
names like .text$foo__Fv (in the case of a
|
|
|
|
|
function). See comment above for more. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2009-04-16 17:39:48 +02:00
|
|
|
|
if (isym.n_sclass == C_STAT && strcmp (name, symname) != 0)
|
2004-09-03 16:11:38 +02:00
|
|
|
|
_bfd_error_handler (_("%B: warning: COMDAT symbol '%s' does not match section name '%s'"),
|
|
|
|
|
abfd, symname, name);
|
|
|
|
|
|
|
|
|
|
seen_state = 1;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* This is the section symbol. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
bfd_coff_swap_aux_in (abfd, (esym + bfd_coff_symesz (abfd)),
|
2001-02-27 02:38:06 +01:00
|
|
|
|
isym.n_type, isym.n_sclass,
|
2005-04-21 09:45:39 +02:00
|
|
|
|
0, isym.n_numaux, & aux);
|
2001-02-27 02:38:06 +01:00
|
|
|
|
|
|
|
|
|
target_name = strchr (name, '$');
|
|
|
|
|
if (target_name != NULL)
|
|
|
|
|
{
|
|
|
|
|
/* Gas mode. */
|
|
|
|
|
seen_state = 2;
|
|
|
|
|
/* Skip the `$'. */
|
|
|
|
|
target_name += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIXME: Microsoft uses NODUPLICATES and
|
|
|
|
|
ASSOCIATIVE, but gnu uses ANY and
|
|
|
|
|
SAME_SIZE. Unfortunately, gnu doesn't do
|
|
|
|
|
the comdat symbols right. So, until we can
|
|
|
|
|
fix it to do the right thing, we are
|
|
|
|
|
temporarily disabling comdats for the MS
|
|
|
|
|
types (they're used in DLLs and C++, but we
|
|
|
|
|
don't support *their* C++ libraries anyway
|
|
|
|
|
- DJ. */
|
|
|
|
|
|
|
|
|
|
/* Cygwin does not follow the MS style, and
|
|
|
|
|
uses ANY and SAME_SIZE where NODUPLICATES
|
|
|
|
|
and ASSOCIATIVE should be used. For
|
|
|
|
|
Interix, we just do the right thing up
|
|
|
|
|
front. */
|
|
|
|
|
|
|
|
|
|
switch (aux.x_scn.x_comdat)
|
|
|
|
|
{
|
|
|
|
|
case IMAGE_COMDAT_SELECT_NODUPLICATES:
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#ifdef STRICT_PE_FORMAT
|
2001-02-27 02:38:06 +01:00
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_ONE_ONLY;
|
1999-05-11 23:05:44 +02:00
|
|
|
|
#else
|
2001-02-27 02:38:06 +01:00
|
|
|
|
sec_flags &= ~SEC_LINK_ONCE;
|
1999-05-11 23:05:44 +02:00
|
|
|
|
#endif
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case IMAGE_COMDAT_SELECT_ANY:
|
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case IMAGE_COMDAT_SELECT_SAME_SIZE:
|
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_SAME_SIZE;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case IMAGE_COMDAT_SELECT_EXACT_MATCH:
|
|
|
|
|
/* Not yet fully implemented ??? */
|
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_SAME_CONTENTS;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* debug$S gets this case; other
|
|
|
|
|
implications ??? */
|
1999-09-14 01:55:22 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* There may be no symbol... we'll search
|
|
|
|
|
the whole table... Is this the right
|
|
|
|
|
place to play this game? Or should we do
|
|
|
|
|
it when reading it in. */
|
|
|
|
|
case IMAGE_COMDAT_SELECT_ASSOCIATIVE:
|
1999-09-12 01:46:09 +02:00
|
|
|
|
#ifdef STRICT_PE_FORMAT
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* FIXME: This is not currently implemented. */
|
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
|
1999-05-11 23:05:44 +02:00
|
|
|
|
#else
|
2001-02-27 02:38:06 +01:00
|
|
|
|
sec_flags &= ~SEC_LINK_ONCE;
|
1999-05-11 23:05:44 +02:00
|
|
|
|
#endif
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
1999-09-14 01:55:22 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
default: /* 0 means "no symbol" */
|
|
|
|
|
/* debug$F gets this case; other
|
|
|
|
|
implications ??? */
|
|
|
|
|
sec_flags |= SEC_LINK_DUPLICATES_DISCARD;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
1999-09-07 04:11:54 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case 2:
|
|
|
|
|
/* Gas mode: the first matching on partial name. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-14 01:55:22 +02:00
|
|
|
|
#ifndef TARGET_UNDERSCORE
|
|
|
|
|
#define TARGET_UNDERSCORE 0
|
|
|
|
|
#endif
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Is this the name we're looking for ? */
|
2001-02-27 02:38:06 +01:00
|
|
|
|
if (strcmp (target_name,
|
|
|
|
|
symname + (TARGET_UNDERSCORE ? 1 : 0)) != 0)
|
|
|
|
|
{
|
|
|
|
|
/* Not the name we're looking for */
|
|
|
|
|
esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
|
|
|
|
|
continue;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* Fall through. */
|
|
|
|
|
case 1:
|
|
|
|
|
/* MSVC mode: the lexically second symbol (or
|
|
|
|
|
drop through from the above). */
|
|
|
|
|
{
|
|
|
|
|
char *newname;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
|
2001-10-10 14:08:29 +02:00
|
|
|
|
/* This must the second symbol with the
|
2001-02-27 02:38:06 +01:00
|
|
|
|
section #. It is the actual symbol name.
|
|
|
|
|
Intel puts the two adjacent, but Alpha (at
|
|
|
|
|
least) spreads them out. */
|
|
|
|
|
|
2004-07-21 17:42:58 +02:00
|
|
|
|
amt = sizeof (struct coff_comdat_info);
|
|
|
|
|
coff_section_data (abfd, section)->comdat
|
2009-09-09 23:38:59 +02:00
|
|
|
|
= (struct coff_comdat_info *) bfd_alloc (abfd, amt);
|
2004-07-21 17:42:58 +02:00
|
|
|
|
if (coff_section_data (abfd, section)->comdat == NULL)
|
2001-02-27 02:38:06 +01:00
|
|
|
|
abort ();
|
|
|
|
|
|
2004-07-21 17:42:58 +02:00
|
|
|
|
coff_section_data (abfd, section)->comdat->symbol =
|
2001-02-27 02:38:06 +01:00
|
|
|
|
(esym - esymstart) / bfd_coff_symesz (abfd);
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = strlen (symname) + 1;
|
2009-09-09 23:38:59 +02:00
|
|
|
|
newname = (char *) bfd_alloc (abfd, amt);
|
2001-02-27 02:38:06 +01:00
|
|
|
|
if (newname == NULL)
|
|
|
|
|
abort ();
|
|
|
|
|
|
|
|
|
|
strcpy (newname, symname);
|
2004-07-21 17:42:58 +02:00
|
|
|
|
coff_section_data (abfd, section)->comdat->name
|
|
|
|
|
= newname;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
goto breakloop;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-02-27 02:38:06 +01:00
|
|
|
|
|
|
|
|
|
esym += (isym.n_numaux + 1) * bfd_coff_symesz (abfd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
breakloop:
|
|
|
|
|
return sec_flags;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The PE version; see above for the general comments.
|
|
|
|
|
|
|
|
|
|
Since to set the SEC_LINK_ONCE and associated flags, we have to
|
|
|
|
|
look at the symbol table anyway, we return the symbol table index
|
|
|
|
|
of the symbol being used as the COMDAT symbol. This is admittedly
|
|
|
|
|
ugly, but there's really nowhere else that we have access to the
|
|
|
|
|
required information. FIXME: Is the COMDAT symbol index used for
|
|
|
|
|
any purpose other than objdump? */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
styp_to_sec_flags (bfd *abfd,
|
|
|
|
|
void * hdr,
|
|
|
|
|
const char *name,
|
|
|
|
|
asection *section,
|
|
|
|
|
flagword *flags_ptr)
|
2001-02-27 02:38:06 +01:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *internal_s = (struct internal_scnhdr *) hdr;
|
|
|
|
|
long styp_flags = internal_s->s_flags;
|
|
|
|
|
flagword sec_flags;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean result = TRUE;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
|
|
|
|
|
/* Assume read only unless IMAGE_SCN_MEM_WRITE is specified. */
|
|
|
|
|
sec_flags = SEC_READONLY;
|
|
|
|
|
|
2009-03-19 12:02:09 +01:00
|
|
|
|
/* If section disallows read, then set the NOREAD flag. */
|
|
|
|
|
if ((styp_flags & IMAGE_SCN_MEM_READ) == 0)
|
|
|
|
|
sec_flags |= SEC_COFF_NOREAD;
|
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
/* Process each flag bit in styp_flags in turn. */
|
|
|
|
|
while (styp_flags)
|
|
|
|
|
{
|
|
|
|
|
long flag = styp_flags & - styp_flags;
|
|
|
|
|
char * unhandled = NULL;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|
2001-02-27 02:38:06 +01:00
|
|
|
|
styp_flags &= ~ flag;
|
|
|
|
|
|
|
|
|
|
/* We infer from the distinct read/write/execute bits the settings
|
|
|
|
|
of some of the bfd flags; the actual values, should we need them,
|
|
|
|
|
are also in pei_section_data (abfd, section)->pe_flags. */
|
|
|
|
|
|
|
|
|
|
switch (flag)
|
|
|
|
|
{
|
|
|
|
|
case STYP_DSECT:
|
|
|
|
|
unhandled = "STYP_DSECT";
|
|
|
|
|
break;
|
|
|
|
|
case STYP_GROUP:
|
|
|
|
|
unhandled = "STYP_GROUP";
|
|
|
|
|
break;
|
|
|
|
|
case STYP_COPY:
|
|
|
|
|
unhandled = "STYP_COPY";
|
|
|
|
|
break;
|
|
|
|
|
case STYP_OVER:
|
|
|
|
|
unhandled = "STYP_OVER";
|
|
|
|
|
break;
|
|
|
|
|
#ifdef SEC_NEVER_LOAD
|
|
|
|
|
case STYP_NOLOAD:
|
|
|
|
|
sec_flags |= SEC_NEVER_LOAD;
|
|
|
|
|
break;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#endif
|
2001-02-27 02:38:06 +01:00
|
|
|
|
case IMAGE_SCN_MEM_READ:
|
2009-03-19 12:02:09 +01:00
|
|
|
|
sec_flags &= ~SEC_COFF_NOREAD;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_TYPE_NO_PAD:
|
|
|
|
|
/* Skip. */
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_LNK_OTHER:
|
|
|
|
|
unhandled = "IMAGE_SCN_LNK_OTHER";
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_NOT_CACHED:
|
|
|
|
|
unhandled = "IMAGE_SCN_MEM_NOT_CACHED";
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_NOT_PAGED:
|
2004-06-21 16:40:41 +02:00
|
|
|
|
/* Generate a warning message rather using the 'unhandled'
|
|
|
|
|
variable as this will allow some .sys files generate by
|
|
|
|
|
other toolchains to be processed. See bugzilla issue 196. */
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
_bfd_error_handler (_("%B: Warning: Ignoring section flag IMAGE_SCN_MEM_NOT_PAGED in section %s"),
|
|
|
|
|
abfd, name);
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_EXECUTE:
|
|
|
|
|
sec_flags |= SEC_CODE;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_WRITE:
|
|
|
|
|
sec_flags &= ~ SEC_READONLY;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_DISCARDABLE:
|
2009-01-16 16:09:20 +01:00
|
|
|
|
/* The MS PE spec says that debug sections are DISCARDABLE,
|
|
|
|
|
but the presence of a DISCARDABLE flag does not necessarily
|
|
|
|
|
mean that a given section contains debug information. Thus
|
|
|
|
|
we only set the SEC_DEBUGGING flag on sections that we
|
|
|
|
|
recognise as containing debug information. */
|
|
|
|
|
if (CONST_STRNEQ (name, DOT_DEBUG)
|
|
|
|
|
#ifdef _COMMENT
|
|
|
|
|
|| strcmp (name, _COMMENT) == 0
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
|
|
|
|
|| CONST_STRNEQ (name, GNU_LINKONCE_WI)
|
|
|
|
|
#endif
|
|
|
|
|
|| CONST_STRNEQ (name, ".stab"))
|
2003-12-19 11:01:59 +01:00
|
|
|
|
sec_flags |= SEC_DEBUGGING;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_MEM_SHARED:
|
2005-02-22 01:50:07 +01:00
|
|
|
|
sec_flags |= SEC_COFF_SHARED;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_LNK_REMOVE:
|
|
|
|
|
sec_flags |= SEC_EXCLUDE;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_CNT_CODE:
|
|
|
|
|
sec_flags |= SEC_CODE | SEC_ALLOC | SEC_LOAD;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_CNT_INITIALIZED_DATA:
|
|
|
|
|
sec_flags |= SEC_DATA | SEC_ALLOC | SEC_LOAD;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_CNT_UNINITIALIZED_DATA:
|
|
|
|
|
sec_flags |= SEC_ALLOC;
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_LNK_INFO:
|
|
|
|
|
/* We mark these as SEC_DEBUGGING, but only if COFF_PAGE_SIZE is
|
|
|
|
|
defined. coff_compute_section_file_positions uses
|
|
|
|
|
COFF_PAGE_SIZE to ensure that the low order bits of the
|
|
|
|
|
section VMA and the file offset match. If we don't know
|
|
|
|
|
COFF_PAGE_SIZE, we can't ensure the correct correspondence,
|
|
|
|
|
and demand page loading of the file will fail. */
|
|
|
|
|
#ifdef COFF_PAGE_SIZE
|
|
|
|
|
sec_flags |= SEC_DEBUGGING;
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
case IMAGE_SCN_LNK_COMDAT:
|
|
|
|
|
/* COMDAT gets very special treatment. */
|
|
|
|
|
sec_flags = handle_COMDAT (abfd, sec_flags, hdr, name, section);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* Silently ignore for now. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
break;
|
2001-02-27 02:38:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2001-06-15 11:03:14 +02:00
|
|
|
|
/* If the section flag was not handled, report it here. */
|
2001-02-27 02:38:06 +01:00
|
|
|
|
if (unhandled != NULL)
|
2001-06-15 11:03:14 +02:00
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B (%s): Section flag %s (0x%x) ignored"),
|
|
|
|
|
abfd, name, unhandled, flag);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
result = FALSE;
|
2001-06-15 11:03:14 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-07-22 03:39:23 +02:00
|
|
|
|
#if defined (COFF_LONG_SECTION_NAMES) && defined (COFF_SUPPORT_GNU_LINKONCE)
|
|
|
|
|
/* As a GNU extension, if the name begins with .gnu.linkonce, we
|
|
|
|
|
only link a single copy of the section. This is used to support
|
|
|
|
|
g++. g++ will emit each template expansion in its own section.
|
|
|
|
|
The symbols will be defined as weak, so that multiple definitions
|
|
|
|
|
are permitted. The GNU linker extension is to actually discard
|
|
|
|
|
all but one of the sections. */
|
2006-09-16 20:12:17 +02:00
|
|
|
|
if (CONST_STRNEQ (name, ".gnu.linkonce"))
|
1999-07-22 03:39:23 +02:00
|
|
|
|
sec_flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_DISCARD;
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-06-15 11:03:14 +02:00
|
|
|
|
if (flags_ptr)
|
|
|
|
|
* flags_ptr = sec_flags;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|
2001-06-15 11:03:14 +02:00
|
|
|
|
return result;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-07 04:11:54 +02:00
|
|
|
|
#endif /* COFF_WITH_PE */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define get_index(symbol) ((symbol)->udata.i)
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
INTERNAL_DEFINITION
|
|
|
|
|
bfd_coff_backend_data
|
|
|
|
|
|
|
|
|
|
CODE_FRAGMENT
|
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
.{* COFF symbol classifications. *}
|
|
|
|
|
.
|
|
|
|
|
.enum coff_symbol_classification
|
|
|
|
|
.{
|
|
|
|
|
. {* Global symbol. *}
|
|
|
|
|
. COFF_SYMBOL_GLOBAL,
|
|
|
|
|
. {* Common symbol. *}
|
|
|
|
|
. COFF_SYMBOL_COMMON,
|
|
|
|
|
. {* Undefined symbol. *}
|
|
|
|
|
. COFF_SYMBOL_UNDEFINED,
|
|
|
|
|
. {* Local symbol. *}
|
|
|
|
|
. COFF_SYMBOL_LOCAL,
|
|
|
|
|
. {* PE section symbol. *}
|
|
|
|
|
. COFF_SYMBOL_PE_SECTION
|
|
|
|
|
.};
|
|
|
|
|
.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
Special entry points for gdb to swap in coff symbol table parts:
|
|
|
|
|
.typedef struct
|
|
|
|
|
.{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. void (*_bfd_coff_swap_aux_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, int, int, int, int, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. void (*_bfd_coff_swap_sym_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. void (*_bfd_coff_swap_lineno_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_aux_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, int, int, int, int, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_sym_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_lineno_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_reloc_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_filehdr_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_aouthdr_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int (*_bfd_coff_swap_scnhdr_out)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int _bfd_filhsz;
|
|
|
|
|
. unsigned int _bfd_aoutsz;
|
|
|
|
|
. unsigned int _bfd_scnhsz;
|
|
|
|
|
. unsigned int _bfd_symesz;
|
|
|
|
|
. unsigned int _bfd_auxesz;
|
|
|
|
|
. unsigned int _bfd_relsz;
|
|
|
|
|
. unsigned int _bfd_linesz;
|
|
|
|
|
. unsigned int _bfd_filnmlen;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean _bfd_coff_long_filenames;
|
2009-02-18 19:23:08 +01:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean _bfd_coff_long_section_names;
|
2009-02-18 19:23:08 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_set_long_section_names)
|
|
|
|
|
. (bfd *, int);
|
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int _bfd_coff_default_section_alignment_power;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean _bfd_coff_force_symnames_in_strings;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. unsigned int _bfd_coff_debug_string_prefix_length;
|
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_coff_swap_filehdr_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_coff_swap_aouthdr_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_coff_swap_scnhdr_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_coff_swap_reloc_in)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *abfd, void *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_bad_format_hook)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_set_arch_mach_hook)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. void * (*_bfd_coff_mkobject_hook)
|
|
|
|
|
. (bfd *, void *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_styp_to_sec_flags_hook)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, void *, const char *, asection *, flagword *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_set_alignment_hook)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, asection *, void *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_slurp_symbol_table)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_symname_in_debug)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct internal_syment *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_pointerize_aux_hook)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, combined_entry_type *, combined_entry_type *,
|
|
|
|
|
. unsigned int, combined_entry_type *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_print_aux)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, FILE *, combined_entry_type *, combined_entry_type *,
|
|
|
|
|
. combined_entry_type *, unsigned int);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. void (*_bfd_coff_reloc16_extra_cases)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct bfd_link_info *, struct bfd_link_order *, arelent *,
|
|
|
|
|
. bfd_byte *, unsigned int *, unsigned int *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. int (*_bfd_coff_reloc16_estimate)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, asection *, arelent *, unsigned int,
|
|
|
|
|
. struct bfd_link_info *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. enum coff_symbol_classification (*_bfd_coff_classify_symbol)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct internal_syment *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_compute_section_file_positions)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_start_final_link)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct bfd_link_info *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_relocate_section)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
|
|
|
|
|
. struct internal_reloc *, struct internal_syment *, asection **);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
|
|
|
|
. reloc_howto_type *(*_bfd_coff_rtype_to_howto)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, asection *, struct internal_reloc *,
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. struct coff_link_hash_entry *, struct internal_syment *,
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. bfd_vma *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_adjust_symndx)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct bfd_link_info *, bfd *, asection *,
|
|
|
|
|
. struct internal_reloc *, bfd_boolean *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_link_add_one_symbol)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (struct bfd_link_info *, bfd *, const char *, flagword,
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. asection *, bfd_vma, const char *, bfd_boolean, bfd_boolean,
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. struct bfd_link_hash_entry **);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_link_output_has_begun)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct coff_final_link_info *);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.
|
2002-11-30 09:39:46 +01:00
|
|
|
|
. bfd_boolean (*_bfd_coff_final_link_postscript)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. (bfd *, struct coff_final_link_info *);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2008-07-18 13:30:22 +02:00
|
|
|
|
. bfd_boolean (*_bfd_coff_print_pdata)
|
|
|
|
|
. (bfd *, void *);
|
|
|
|
|
.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.} bfd_coff_backend_data;
|
|
|
|
|
.
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.#define coff_backend_info(abfd) \
|
|
|
|
|
. ((bfd_coff_backend_data *) (abfd)->xvec->backend_data)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_aux_in(a,e,t,c,ind,num,i) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_swap_aux_in) (a,e,t,c,ind,num,i))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_sym_in(a,e,i) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_swap_sym_in) (a,e,i))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_lineno_in(a,e,i) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info ( a)->_bfd_coff_swap_lineno_in) (a,e,i))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_reloc_out(abfd, i, o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_lineno_out(abfd, i, o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_lineno_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_aux_out(a,i,t,c,ind,num,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_swap_aux_out) (a,i,t,c,ind,num,o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_sym_out(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_sym_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_scnhdr_out(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_filehdr_out(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_aouthdr_out(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_out) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_filhsz(abfd) (coff_backend_info (abfd)->_bfd_filhsz)
|
|
|
|
|
.#define bfd_coff_aoutsz(abfd) (coff_backend_info (abfd)->_bfd_aoutsz)
|
|
|
|
|
.#define bfd_coff_scnhsz(abfd) (coff_backend_info (abfd)->_bfd_scnhsz)
|
|
|
|
|
.#define bfd_coff_symesz(abfd) (coff_backend_info (abfd)->_bfd_symesz)
|
|
|
|
|
.#define bfd_coff_auxesz(abfd) (coff_backend_info (abfd)->_bfd_auxesz)
|
|
|
|
|
.#define bfd_coff_relsz(abfd) (coff_backend_info (abfd)->_bfd_relsz)
|
|
|
|
|
.#define bfd_coff_linesz(abfd) (coff_backend_info (abfd)->_bfd_linesz)
|
1999-09-07 06:28:27 +02:00
|
|
|
|
.#define bfd_coff_filnmlen(abfd) (coff_backend_info (abfd)->_bfd_filnmlen)
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
.#define bfd_coff_long_filenames(abfd) \
|
|
|
|
|
. (coff_backend_info (abfd)->_bfd_coff_long_filenames)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_long_section_names(abfd) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. (coff_backend_info (abfd)->_bfd_coff_long_section_names)
|
2009-02-18 19:23:08 +01:00
|
|
|
|
.#define bfd_coff_set_long_section_names(abfd, enable) \
|
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_set_long_section_names) (abfd, enable))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_default_section_alignment_power(abfd) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. (coff_backend_info (abfd)->_bfd_coff_default_section_alignment_power)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_swap_filehdr_in(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_filehdr_in) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_aouthdr_in(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_aouthdr_in) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_scnhdr_in(abfd, i,o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_scnhdr_in) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_swap_reloc_in(abfd, i, o) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_swap_reloc_in) (abfd, i, o))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_bad_format_hook(abfd, filehdr) \
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_bad_format_hook) (abfd, filehdr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_set_arch_mach_hook(abfd, filehdr)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_set_arch_mach_hook) (abfd, filehdr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_mkobject_hook(abfd, filehdr, aouthdr)\
|
2003-02-14 12:16:09 +01:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_mkobject_hook)\
|
|
|
|
|
. (abfd, filehdr, aouthdr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2001-06-15 11:03:14 +02:00
|
|
|
|
.#define bfd_coff_styp_to_sec_flags_hook(abfd, scnhdr, name, section, flags_ptr)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_styp_to_sec_flags_hook)\
|
|
|
|
|
. (abfd, scnhdr, name, section, flags_ptr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_set_alignment_hook(abfd, sec, scnhdr)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_set_alignment_hook) (abfd, sec, scnhdr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_slurp_symbol_table(abfd)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_slurp_symbol_table) (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_symname_in_debug(abfd, sym)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_symname_in_debug) (abfd, sym))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2000-04-29 04:41:36 +02:00
|
|
|
|
.#define bfd_coff_force_symnames_in_strings(abfd)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. (coff_backend_info (abfd)->_bfd_coff_force_symnames_in_strings)
|
2000-04-29 04:41:36 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_debug_string_prefix_length(abfd)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. (coff_backend_info (abfd)->_bfd_coff_debug_string_prefix_length)
|
2000-04-29 04:41:36 +02:00
|
|
|
|
.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_print_aux(abfd, file, base, symbol, aux, indaux)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_print_aux)\
|
|
|
|
|
. (abfd, file, base, symbol, aux, indaux))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2003-02-14 12:16:09 +01:00
|
|
|
|
.#define bfd_coff_reloc16_extra_cases(abfd, link_info, link_order,\
|
|
|
|
|
. reloc, data, src_ptr, dst_ptr)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_reloc16_extra_cases)\
|
|
|
|
|
. (abfd, link_info, link_order, reloc, data, src_ptr, dst_ptr))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_reloc16_estimate(abfd, section, reloc, shrink, link_info)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_reloc16_estimate)\
|
|
|
|
|
. (abfd, section, reloc, shrink, link_info))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
1999-08-05 23:01:37 +02:00
|
|
|
|
.#define bfd_coff_classify_symbol(abfd, sym)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_classify_symbol)\
|
|
|
|
|
. (abfd, sym))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_compute_section_file_positions(abfd)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_compute_section_file_positions)\
|
|
|
|
|
. (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_start_final_link(obfd, info)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (obfd)->_bfd_coff_start_final_link)\
|
|
|
|
|
. (obfd, info))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_relocate_section(obfd,info,ibfd,o,con,rel,isyms,secs)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (ibfd)->_bfd_coff_relocate_section)\
|
|
|
|
|
. (obfd, info, ibfd, o, con, rel, isyms, secs))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_rtype_to_howto(abfd, sec, rel, h, sym, addendp)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_rtype_to_howto)\
|
|
|
|
|
. (abfd, sec, rel, h, sym, addendp))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_adjust_symndx(obfd, info, ibfd, sec, rel, adjustedp)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_adjust_symndx)\
|
|
|
|
|
. (obfd, info, ibfd, sec, rel, adjustedp))
|
2003-02-14 12:16:09 +01:00
|
|
|
|
.#define bfd_coff_link_add_one_symbol(info, abfd, name, flags, section,\
|
|
|
|
|
. value, string, cp, coll, hashp)\
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
. ((coff_backend_info (abfd)->_bfd_coff_link_add_one_symbol)\
|
|
|
|
|
. (info, abfd, name, flags, section, value, string, cp, coll, hashp))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
|
|
|
|
.#define bfd_coff_link_output_has_begun(a,p) \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_link_output_has_begun) (a, p))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.#define bfd_coff_final_link_postscript(a,p) \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_final_link_postscript) (a, p))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
.
|
2008-07-18 13:30:22 +02:00
|
|
|
|
.#define bfd_coff_have_print_pdata(a) \
|
|
|
|
|
. (coff_backend_info (a)->_bfd_coff_print_pdata)
|
|
|
|
|
.#define bfd_coff_print_pdata(a,p) \
|
|
|
|
|
. ((coff_backend_info (a)->_bfd_coff_print_pdata) (a, p))
|
|
|
|
|
.
|
bfd/
2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/10074
* coffcode.h (bfd_pei_p): New.
* config.bfd: Remove bfd_efi_bsdrv_ia32_vec,
bfd_efi_rtdrv_ia32_vec, bfd_efi_bsdrv_x86_64_vec,
bfd_efi_rtdrv_x86_64_vec, bfd_efi_bsdrv_ia64_vec and
bfd_efi_rtdrv_ia64_vec. Replace bfd_efi_app_ia32_vec,
bfd_efi_app_x86_64_vec and bfd_efi_app_ia64_vec with
i386pei_vec, x86_64pei_vec and bfd_pei_ia64_vec, respectively.
* configure.in: Remove bfd_efi_bsdrv_ia32_vec,
bfd_efi_rtdrv_ia32_vec, bfd_efi_bsdrv_x86_64_vec,
bfd_efi_rtdrv_x86_64_vec,
bfd_efi_bsdrv_ia64_vec and bfd_efi_rtdrv_ia64_vec. Replace
bfd_efi_ia64_vec with bfd_pei_ia64_vec.
* targets.c: Likewise.
* configure: Regenerated.
* libcoff.h: Likewise.
* Makefile.in: Likewise.
* efi-app-ia32.c: Removed.
* efi-app-x86_64.c: Likewise.
* efi-bsdrv-ia32.c: Likewise.
* efi-bsdrv-ia64.c: Likewise.
* efi-bsdrv-x86_64.c: Likewise.
* efi-rtdrv-ia32.c: Likewise.
* efi-rtdrv-ia64.c: Likewise.
* efi-rtdrv-x86_64.c: Likewise.
* efi-rtdrv-ia32.c: Likewise.
* efi-app-ia64.c: Moved to ...
* pei-ia64.c: This.
(TARGET_SYM): Set to bfd_pei_ia64_vec.
(TARGET_NAME): Set to pei-ia64.
* libpei.h (bfd_target_pei_p): Removed.
(bfd_target_pei_arch): Likewise.
(bfd_target_efi_app_p): Likewise.
(bfd_target_efi_app_arch): Likewise.
(bfd_target_efi_bsdrv_p): Likewise.
(bfd_target_efi_bsdrv_arch): Likewise.
(bfd_target_efi_rtdrv_p): Likewise.
(bfd_target_efi_rtdrv_arch): Likewise.
(bfd_pe_executable_p): Likewise.
* Makefile.am (BFD32_BACKENDS): Remove efi-app-ia32.lo,
efi-bsdrv-ia32.lo and efi-rtdrv-ia32.lo.
(BFD32_BACKENDS_CFILES): Remove efi-app-ia32.c, efi-bsdrv-ia32.c
and efi-rtdrv-ia32.c.
(BFD64_BACKENDS): Remove efi-app-ia64.lo, efi-bsdrv-ia64.lo,
efi-rtdrv-ia64.lo, efi-app-x86_64.lo, efi-bsdrv-x86_64.lo and
efi-rtdrv-x86_64.lo. Add pei-ia64.lo.
(BFD64_BACKENDS_CFILES): Remove efi-app-ia64.c, efi-bsdrv-ia64.c,
efi-rtdrv-ia64.c, efi-app-x86_64.c, efi-bsdrv-x86_64.c and
efi-rtdrv-x86_64.c. Add pei-ia64.c.
(efi-app-ia64.lo): Removed.
(efi-bsdrv-ia32.lo): Likewise.
(efi-rtdrv-ia32.lo): Likewise.
(efi-app-ia64.lo): Likewise.
(efi-bsdrv-ia64.lo): Likewise.
(efi-rtdrv-ia64.lo): Likewise.
(efi-app-x86_64.lo): Likewise.
(efi-bsdrv-x86_64.lo): Likewise.
(efi-rtdrv-x86_64.lo): Likewise.
(pei-ia64.lo): New.
* peicode.h (coff_swap_scnhdr_in): Replace bfd_pe_executable_p
with bfd_pei_p.
(arch_type): Removed.
(pe_arch): Likewise.
(pe_bfd_object_p): Just return coff_object_p.
* peXXigen.c (_bfd_XXi_swap_scnhdr_out): Replace
bfd_pe_executable_p with bfd_pei_p.
binutils/
2009-04-17 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/10074
* objcopy.c: Include coff/i386.h and coff/pe.h.
(pe_file_alignment): New.
(pe_heap_commit): Likewise.
(pe_heap_reserve): Likewise.
(pe_image_base): Likewise.
(pe_section_alignment): Likewise.
(pe_stack_commit): Likewise.
(pe_stack_reserve): Likewise.
(pe_subsystem): Likewise.
(pe_major_subsystem_version): Likewise.
(pe_minor_subsystem_version): Likewise.
(set_pe_subsystem): Likewise.
(convert_efi_target): Likewise.
(command_line_switch): Add OPTION_FILE_ALIGNMENT,
OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
OPTION_STACK and OPTION_SUBSYSTEM.
(copy_options): Likewise.
(copy_usage): Add --file-alignment, --heap, --image-base,
--section-alignment, --stack and --subsystem.
(copy_object): Set up PE parameters.
(copy_main): Process Add OPTION_FILE_ALIGNMENT,
OPTION_HEAP, OPTION_IMAGE_BASE, OPTION_SECTION_ALIGNMENT,
OPTION_STACK and OPTION_SUBSYSTEM. Convert EFI target to
PEI target.
* NEWS: Mention --file-alignment, --heap, --image-base,
--section-alignment, --stack and --subsystem command line
options for objcopy.
* doc/binutils.texi: Document --file-alignment, --heap,
--image-base, --section-alignment, --stack and --subsystem
command line options for objcopy.
2009-04-17 15:46:18 +02:00
|
|
|
|
.{* Macro: Returns true if the bfd is a PE executable as opposed to a
|
|
|
|
|
. PE object file. *}
|
|
|
|
|
.#define bfd_pei_p(abfd) \
|
|
|
|
|
. (CONST_STRNEQ ((abfd)->xvec->name, "pei-"))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* See whether the magic number matches. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_bad_format_hook (bfd * abfd ATTRIBUTE_UNUSED, void * filehdr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
|
|
|
|
|
if (BADMAG (*internal_f))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* If the optional header is NULL or not the correct size then
|
1999-05-03 09:29:11 +02:00
|
|
|
|
quit; the only difference I can see between m88k dgux headers (MC88DMAGIC)
|
|
|
|
|
and Intel 960 readwrite headers (I960WRMAGIC) is that the
|
|
|
|
|
optional header is of a different size.
|
|
|
|
|
|
|
|
|
|
But the mips keeps extra stuff in it's opthdr, so dont check
|
2003-02-14 12:16:09 +01:00
|
|
|
|
when doing that. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#if defined(M88) || defined(I960)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
if (internal_f->f_opthdr != 0 && bfd_coff_aoutsz (abfd) != internal_f->f_opthdr)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2003-06-04 13:38:30 +02:00
|
|
|
|
#ifdef TICOFF
|
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
ticoff0_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
|
2003-06-04 13:38:30 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
|
|
|
|
|
if (COFF0_BADMAG (*internal_f))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TICOFF
|
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
ticoff1_bad_format_hook (bfd *abfd ATTRIBUTE_UNUSED, void * filehdr)
|
2003-06-04 13:38:30 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
|
|
|
|
|
if (COFF1_BADMAG (*internal_f))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-08-09 04:56:16 +02:00
|
|
|
|
/* Check whether this section uses an alignment other than the
|
|
|
|
|
default. */
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_custom_section_alignment (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
asection *section,
|
|
|
|
|
const struct coff_section_alignment_entry *alignment_table,
|
|
|
|
|
const unsigned int table_size)
|
1999-08-09 04:56:16 +02:00
|
|
|
|
{
|
|
|
|
|
const unsigned int default_alignment = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < table_size; ++i)
|
|
|
|
|
{
|
|
|
|
|
const char *secname = bfd_get_section_name (abfd, section);
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-08-09 04:56:16 +02:00
|
|
|
|
if (alignment_table[i].comparison_length == (unsigned int) -1
|
|
|
|
|
? strcmp (alignment_table[i].name, secname) == 0
|
|
|
|
|
: strncmp (alignment_table[i].name, secname,
|
|
|
|
|
alignment_table[i].comparison_length) == 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (i >= table_size)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (alignment_table[i].default_alignment_min != COFF_ALIGNMENT_FIELD_EMPTY
|
|
|
|
|
&& default_alignment < alignment_table[i].default_alignment_min)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (alignment_table[i].default_alignment_max != COFF_ALIGNMENT_FIELD_EMPTY
|
2001-09-21 16:25:09 +02:00
|
|
|
|
#if COFF_DEFAULT_SECTION_ALIGNMENT_POWER != 0
|
|
|
|
|
&& default_alignment > alignment_table[i].default_alignment_max
|
|
|
|
|
#endif
|
|
|
|
|
)
|
1999-08-09 04:56:16 +02:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
section->alignment_power = alignment_table[i].alignment_power;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Custom section alignment records. */
|
|
|
|
|
|
|
|
|
|
static const struct coff_section_alignment_entry
|
|
|
|
|
coff_section_alignment_table[] =
|
|
|
|
|
{
|
|
|
|
|
#ifdef COFF_SECTION_ALIGNMENT_ENTRIES
|
|
|
|
|
COFF_SECTION_ALIGNMENT_ENTRIES,
|
|
|
|
|
#endif
|
|
|
|
|
/* There must not be any gaps between .stabstr sections. */
|
|
|
|
|
{ COFF_SECTION_NAME_PARTIAL_MATCH (".stabstr"),
|
|
|
|
|
1, COFF_ALIGNMENT_FIELD_EMPTY, 0 },
|
|
|
|
|
/* The .stab section must be aligned to 2**2 at most, to avoid gaps. */
|
|
|
|
|
{ COFF_SECTION_NAME_PARTIAL_MATCH (".stab"),
|
|
|
|
|
3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
|
|
|
|
|
/* Similarly for the .ctors and .dtors sections. */
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".ctors"),
|
|
|
|
|
3, COFF_ALIGNMENT_FIELD_EMPTY, 2 },
|
|
|
|
|
{ COFF_SECTION_NAME_EXACT_MATCH (".dtors"),
|
|
|
|
|
3, COFF_ALIGNMENT_FIELD_EMPTY, 2 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static const unsigned int coff_section_alignment_table_size =
|
|
|
|
|
sizeof coff_section_alignment_table / sizeof coff_section_alignment_table[0];
|
|
|
|
|
|
|
|
|
|
/* Initialize a section structure with information peculiar to this
|
|
|
|
|
particular implementation of COFF. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_new_section_hook (bfd * abfd, asection * section)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
combined_entry_type *native;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
section->alignment_power = COFF_DEFAULT_SECTION_ALIGNMENT_POWER;
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
2002-03-18 13:46:27 +01:00
|
|
|
|
if (bfd_xcoff_text_align_power (abfd) != 0
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& strcmp (bfd_get_section_name (abfd, section), ".text") == 0)
|
2002-03-18 13:46:27 +01:00
|
|
|
|
section->alignment_power = bfd_xcoff_text_align_power (abfd);
|
|
|
|
|
if (bfd_xcoff_data_align_power (abfd) != 0
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& strcmp (bfd_get_section_name (abfd, section), ".data") == 0)
|
2002-03-18 13:46:27 +01:00
|
|
|
|
section->alignment_power = bfd_xcoff_data_align_power (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2006-05-03 16:26:41 +02:00
|
|
|
|
/* Set up the section symbol. */
|
|
|
|
|
if (!_bfd_generic_new_section_hook (abfd, section))
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Allocate aux records for section symbols, to store size and
|
|
|
|
|
related info.
|
|
|
|
|
|
|
|
|
|
@@ The 10 is a guess at a plausible maximum number of aux entries
|
|
|
|
|
(but shouldn't be a constant). */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = sizeof (combined_entry_type) * 10;
|
2009-09-09 23:38:59 +02:00
|
|
|
|
native = (combined_entry_type *) bfd_zalloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (native == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* We don't need to set up n_name, n_value, or n_scnum in the native
|
2003-11-24 19:06:40 +01:00
|
|
|
|
symbol information, since they'll be overridden by the BFD symbol
|
1999-05-03 09:29:11 +02:00
|
|
|
|
anyhow. However, we do need to set the type and storage class,
|
|
|
|
|
in case this symbol winds up getting written out. The value 0
|
|
|
|
|
for n_numaux is already correct. */
|
|
|
|
|
|
|
|
|
|
native->u.syment.n_type = T_NULL;
|
|
|
|
|
native->u.syment.n_sclass = C_STAT;
|
|
|
|
|
|
|
|
|
|
coffsymbol (section->symbol)->native = native;
|
|
|
|
|
|
1999-08-09 04:56:16 +02:00
|
|
|
|
coff_set_custom_section_alignment (abfd, section,
|
|
|
|
|
coff_section_alignment_table,
|
|
|
|
|
coff_section_alignment_table_size);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_ALIGN_IN_SECTION_HEADER
|
|
|
|
|
|
|
|
|
|
/* Set the alignment of a BFD section. */
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
asection * section,
|
|
|
|
|
void * scnhdr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
#ifdef I960
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Extract ALIGN from 2**ALIGN stored in section header. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
|
if ((1 << i) >= hdr->s_align)
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef TIC80COFF
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* TI tools puts the alignment power in bits 8-11. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
i = (hdr->s_flags >> 8) & 0xF ;
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_DECODE_ALIGNMENT
|
|
|
|
|
i = COFF_DECODE_ALIGNMENT(hdr->s_flags);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
section->alignment_power = i;
|
2000-04-18 04:21:27 +02:00
|
|
|
|
|
|
|
|
|
#ifdef coff_set_section_load_page
|
|
|
|
|
coff_set_section_load_page (section, hdr->s_page);
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* ! COFF_ALIGN_IN_SECTION_HEADER */
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_alignment_hook (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
asection * section,
|
|
|
|
|
void * scnhdr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
2007-08-02 18:02:01 +02:00
|
|
|
|
unsigned int alignment_power_const
|
|
|
|
|
= hdr->s_flags & IMAGE_SCN_ALIGN_POWER_BIT_MASK;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2007-08-02 18:02:01 +02:00
|
|
|
|
switch (alignment_power_const)
|
|
|
|
|
{
|
|
|
|
|
case IMAGE_SCN_ALIGN_8192BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_4096BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_2048BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_1024BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_512BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_256BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_128BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_64BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_32BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_16BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_8BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_4BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_2BYTES:
|
|
|
|
|
case IMAGE_SCN_ALIGN_1BYTES:
|
|
|
|
|
section->alignment_power
|
|
|
|
|
= IMAGE_SCN_ALIGN_POWER_NUM (alignment_power_const);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* In a PE image file, the s_paddr field holds the virtual size of a
|
1999-09-07 05:40:32 +02:00
|
|
|
|
section, while the s_size field holds the raw size. We also keep
|
|
|
|
|
the original section flag value, since not every bit can be
|
|
|
|
|
mapped onto a generic BFD section bit. */
|
|
|
|
|
if (coff_section_data (abfd, section) == NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = sizeof (struct coff_section_tdata);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
section->used_by_bfd = bfd_zalloc (abfd, amt);
|
1999-09-07 05:40:32 +02:00
|
|
|
|
if (section->used_by_bfd == NULL)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* FIXME: Return error. */
|
|
|
|
|
abort ();
|
1999-09-07 05:40:32 +02:00
|
|
|
|
}
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-09-07 05:40:32 +02:00
|
|
|
|
if (pei_section_data (abfd, section) == NULL)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = sizeof (struct pei_section_tdata);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_section_data (abfd, section)->tdata = bfd_zalloc (abfd, amt);
|
1999-09-07 05:40:32 +02:00
|
|
|
|
if (coff_section_data (abfd, section)->tdata == NULL)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* FIXME: Return error. */
|
|
|
|
|
abort ();
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
1999-09-07 05:40:32 +02:00
|
|
|
|
pei_section_data (abfd, section)->virt_size = hdr->s_paddr;
|
|
|
|
|
pei_section_data (abfd, section)->pe_flags = hdr->s_flags;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-06-02 17:36:48 +02:00
|
|
|
|
section->lma = hdr->s_vaddr;
|
2000-10-06 21:47:51 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Check for extended relocs. */
|
2000-10-06 21:47:51 +02:00
|
|
|
|
if (hdr->s_flags & IMAGE_SCN_LNK_NRELOC_OVFL)
|
|
|
|
|
{
|
|
|
|
|
struct external_reloc dst;
|
|
|
|
|
struct internal_reloc n;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
file_ptr oldpos = bfd_tell (abfd);
|
2003-10-07 10:49:11 +02:00
|
|
|
|
bfd_size_type relsz = bfd_coff_relsz (abfd);
|
2008-08-05 05:03:46 +02:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_seek (abfd, (file_ptr) hdr->s_relptr, 0);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (bfd_bread (& dst, relsz, abfd) != relsz)
|
2000-10-06 21:47:51 +02:00
|
|
|
|
return;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-10-06 21:47:51 +02:00
|
|
|
|
coff_swap_reloc_in (abfd, &dst, &n);
|
|
|
|
|
bfd_seek (abfd, oldpos, 0);
|
2003-10-07 10:49:11 +02:00
|
|
|
|
section->reloc_count = hdr->s_nreloc = n.r_vaddr - 1;
|
|
|
|
|
section->rel_filepos += relsz;
|
2000-10-06 21:47:51 +02:00
|
|
|
|
}
|
2003-10-07 10:49:11 +02:00
|
|
|
|
else if (hdr->s_nreloc == 0xffff)
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
("%s: warning: claims to have 0xffff relocs, without overflow",
|
|
|
|
|
bfd_get_filename (abfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#undef ALIGN_SET
|
|
|
|
|
#undef ELIFALIGN_SET
|
|
|
|
|
|
|
|
|
|
#else /* ! COFF_WITH_PE */
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
|
|
|
|
|
/* We grossly abuse this function to handle XCOFF overflow headers.
|
|
|
|
|
When we see one, we correct the reloc and line number counts in the
|
|
|
|
|
real header, and remove the section we just created. */
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_alignment_hook (bfd *abfd, asection *section, void * scnhdr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr *hdr = (struct internal_scnhdr *) scnhdr;
|
|
|
|
|
asection *real_sec;
|
|
|
|
|
|
|
|
|
|
if ((hdr->s_flags & STYP_OVRFLO) == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
real_sec = coff_section_from_bfd_index (abfd, (int) hdr->s_nreloc);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (real_sec == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
real_sec->reloc_count = hdr->s_paddr;
|
|
|
|
|
real_sec->lineno_count = hdr->s_vaddr;
|
|
|
|
|
|
2005-05-03 03:05:03 +02:00
|
|
|
|
if (!bfd_section_removed_from_list (abfd, section))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-05-03 03:05:03 +02:00
|
|
|
|
bfd_section_list_remove (abfd, section);
|
|
|
|
|
--abfd->section_count;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* ! RS6000COFF_C */
|
|
|
|
|
|
|
|
|
|
#define coff_set_alignment_hook \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
((void (*) (bfd *, asection *, void *)) bfd_void)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#endif /* ! RS6000COFF_C */
|
|
|
|
|
#endif /* ! COFF_WITH_PE */
|
|
|
|
|
#endif /* ! COFF_ALIGN_IN_SECTION_HEADER */
|
|
|
|
|
|
|
|
|
|
#ifndef coff_mkobject
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_mkobject (bfd * abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
coff_data_type *coff;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = sizeof (coff_data_type);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
abfd->tdata.coff_obj_data = bfd_zalloc (abfd, amt);
|
|
|
|
|
if (abfd->tdata.coff_obj_data == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff = coff_data (abfd);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff->symbols = NULL;
|
|
|
|
|
coff->conversion_table = NULL;
|
|
|
|
|
coff->raw_syments = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff->relocbase = 0;
|
|
|
|
|
coff->local_toc_sym_map = 0;
|
|
|
|
|
|
|
|
|
|
/* make_abs_section(abfd);*/
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Create the COFF backend specific information. */
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_mkobject_hook
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static void *
|
|
|
|
|
coff_mkobject_hook (bfd * abfd,
|
|
|
|
|
void * filehdr,
|
|
|
|
|
void * aouthdr ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
coff_data_type *coff;
|
|
|
|
|
|
2002-06-25 08:21:54 +02:00
|
|
|
|
if (! coff_mkobject (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
coff = coff_data (abfd);
|
|
|
|
|
|
|
|
|
|
coff->sym_filepos = internal_f->f_symptr;
|
|
|
|
|
|
|
|
|
|
/* These members communicate important constants about the symbol
|
|
|
|
|
table to GDB's symbol-reading code. These `constants'
|
|
|
|
|
unfortunately vary among coff implementations... */
|
|
|
|
|
coff->local_n_btmask = N_BTMASK;
|
|
|
|
|
coff->local_n_btshft = N_BTSHFT;
|
|
|
|
|
coff->local_n_tmask = N_TMASK;
|
|
|
|
|
coff->local_n_tshift = N_TSHIFT;
|
2000-01-14 00:55:21 +01:00
|
|
|
|
coff->local_symesz = bfd_coff_symesz (abfd);
|
|
|
|
|
coff->local_auxesz = bfd_coff_auxesz (abfd);
|
|
|
|
|
coff->local_linesz = bfd_coff_linesz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-12 00:46:37 +02:00
|
|
|
|
coff->timestamp = internal_f->f_timdat;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
obj_raw_syment_count (abfd) =
|
|
|
|
|
obj_conv_table_size (abfd) =
|
|
|
|
|
internal_f->f_nsyms;
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
if ((internal_f->f_flags & F_SHROBJ) != 0)
|
|
|
|
|
abfd->flags |= DYNAMIC;
|
2000-01-14 00:55:21 +01:00
|
|
|
|
if (aouthdr != NULL && internal_f->f_opthdr >= bfd_coff_aoutsz (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
struct internal_aouthdr *internal_a =
|
|
|
|
|
(struct internal_aouthdr *) aouthdr;
|
|
|
|
|
struct xcoff_tdata *xcoff;
|
|
|
|
|
|
|
|
|
|
xcoff = xcoff_data (abfd);
|
2000-06-16 22:40:50 +02:00
|
|
|
|
# ifdef U803XTOCMAGIC
|
|
|
|
|
xcoff->xcoff64 = internal_f->f_magic == U803XTOCMAGIC;
|
|
|
|
|
# else
|
|
|
|
|
xcoff->xcoff64 = 0;
|
|
|
|
|
# endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
xcoff->full_aouthdr = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
xcoff->toc = internal_a->o_toc;
|
|
|
|
|
xcoff->sntoc = internal_a->o_sntoc;
|
|
|
|
|
xcoff->snentry = internal_a->o_snentry;
|
2002-06-12 18:04:39 +02:00
|
|
|
|
bfd_xcoff_text_align_power (abfd) = internal_a->o_algntext;
|
|
|
|
|
bfd_xcoff_data_align_power (abfd) = internal_a->o_algndata;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
xcoff->modtype = internal_a->o_modtype;
|
|
|
|
|
xcoff->cputype = internal_a->o_cputype;
|
|
|
|
|
xcoff->maxdata = internal_a->o_maxdata;
|
|
|
|
|
xcoff->maxstack = internal_a->o_maxstack;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#ifdef ARM
|
2002-02-06 17:29:28 +01:00
|
|
|
|
/* Set the flags field from the COFF header read in. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
|
|
|
|
|
coff->flags = 0;
|
|
|
|
|
#endif
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
1999-09-12 00:33:45 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
/* FIXME: I'm not sure this is ever executed, since peicode.h
|
|
|
|
|
defines coff_mkobject_hook. */
|
|
|
|
|
if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
|
|
|
|
|
abfd->flags |= HAS_DEBUG;
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-08-10 23:56:42 +02:00
|
|
|
|
if ((internal_f->f_flags & F_GO32STUB) != 0)
|
|
|
|
|
coff->go32stub = (char *) bfd_alloc (abfd, (bfd_size_type) GO32_STUBSIZE);
|
|
|
|
|
if (coff->go32stub != NULL)
|
|
|
|
|
memcpy (coff->go32stub, internal_f->go32stub, GO32_STUBSIZE);
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
return coff;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Determine the machine architecture and type. FIXME: This is target
|
|
|
|
|
dependent because the magic numbers are defined in the target
|
|
|
|
|
dependent header files. But there is no particular need for this.
|
|
|
|
|
If the magic numbers were moved to a separate file, this function
|
|
|
|
|
would be target independent and would also be much more successful
|
|
|
|
|
at linking together COFF files for different architectures. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_arch_mach_hook (bfd *abfd, void * filehdr)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
unsigned long machine;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
enum bfd_architecture arch;
|
|
|
|
|
struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
|
|
|
|
|
|
2002-09-02 13:47:42 +02:00
|
|
|
|
/* Zero selects the default machine for an arch. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
machine = 0;
|
|
|
|
|
switch (internal_f->f_magic)
|
|
|
|
|
{
|
2002-01-31 18:33:08 +01:00
|
|
|
|
#ifdef OR32_MAGIC_BIG
|
|
|
|
|
case OR32_MAGIC_BIG:
|
|
|
|
|
case OR32_MAGIC_LITTLE:
|
|
|
|
|
arch = bfd_arch_or32;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef PPCMAGIC
|
|
|
|
|
case PPCMAGIC:
|
|
|
|
|
arch = bfd_arch_powerpc;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef I386MAGIC
|
|
|
|
|
case I386MAGIC:
|
|
|
|
|
case I386PTXMAGIC:
|
2006-09-20 13:35:11 +02:00
|
|
|
|
case I386AIXMAGIC: /* Danbury PS/2 AIX C Compiler. */
|
|
|
|
|
case LYNXCOFFMAGIC: /* Shadows the m68k Lynx number below, sigh. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arch = bfd_arch_i386;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#ifdef AMD64MAGIC
|
|
|
|
|
case AMD64MAGIC:
|
|
|
|
|
arch = bfd_arch_i386;
|
|
|
|
|
machine = bfd_mach_x86_64;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2000-04-18 06:03:16 +02:00
|
|
|
|
#ifdef IA64MAGIC
|
|
|
|
|
case IA64MAGIC:
|
|
|
|
|
arch = bfd_arch_ia64;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef ARMMAGIC
|
|
|
|
|
case ARMMAGIC:
|
2000-02-28 19:56:11 +01:00
|
|
|
|
case ARMPEMAGIC:
|
|
|
|
|
case THUMBPEMAGIC:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arch = bfd_arch_arm;
|
2003-04-01 15:08:06 +02:00
|
|
|
|
machine = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
|
|
|
|
|
if (machine == bfd_mach_arm_unknown)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-04-01 15:08:06 +02:00
|
|
|
|
switch (internal_f->f_flags & F_ARM_ARCHITECTURE_MASK)
|
|
|
|
|
{
|
|
|
|
|
case F_ARM_2: machine = bfd_mach_arm_2; break;
|
|
|
|
|
case F_ARM_2a: machine = bfd_mach_arm_2a; break;
|
|
|
|
|
case F_ARM_3: machine = bfd_mach_arm_3; break;
|
|
|
|
|
default:
|
|
|
|
|
case F_ARM_3M: machine = bfd_mach_arm_3M; break;
|
|
|
|
|
case F_ARM_4: machine = bfd_mach_arm_4; break;
|
|
|
|
|
case F_ARM_4T: machine = bfd_mach_arm_4T; break;
|
|
|
|
|
/* The COFF header does not have enough bits available
|
|
|
|
|
to cover all the different ARM architectures. So
|
|
|
|
|
we interpret F_ARM_5, the highest flag value to mean
|
|
|
|
|
"the highest ARM architecture known to BFD" which is
|
|
|
|
|
currently the XScale. */
|
|
|
|
|
case F_ARM_5: machine = bfd_mach_arm_XScale; break;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef MC68MAGIC
|
|
|
|
|
case MC68MAGIC:
|
|
|
|
|
case M68MAGIC:
|
|
|
|
|
#ifdef MC68KBCSMAGIC
|
|
|
|
|
case MC68KBCSMAGIC:
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef APOLLOM68KMAGIC
|
|
|
|
|
case APOLLOM68KMAGIC:
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef LYNXCOFFMAGIC
|
|
|
|
|
case LYNXCOFFMAGIC:
|
|
|
|
|
#endif
|
|
|
|
|
arch = bfd_arch_m68k;
|
|
|
|
|
machine = bfd_mach_m68020;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2004-11-08 14:17:43 +01:00
|
|
|
|
#ifdef MAXQ20MAGIC
|
|
|
|
|
case MAXQ20MAGIC:
|
|
|
|
|
arch = bfd_arch_maxq;
|
2005-01-10 17:33:51 +01:00
|
|
|
|
switch (internal_f->f_flags & F_MACHMASK)
|
2008-08-05 05:03:46 +02:00
|
|
|
|
{
|
|
|
|
|
case F_MAXQ10:
|
|
|
|
|
machine = bfd_mach_maxq10;
|
|
|
|
|
break;
|
|
|
|
|
case F_MAXQ20:
|
|
|
|
|
machine = bfd_mach_maxq20;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
2005-01-10 17:33:51 +01:00
|
|
|
|
}
|
2004-11-08 14:17:43 +01:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef MC88MAGIC
|
|
|
|
|
case MC88MAGIC:
|
|
|
|
|
case MC88DMAGIC:
|
|
|
|
|
case MC88OMAGIC:
|
|
|
|
|
arch = bfd_arch_m88k;
|
|
|
|
|
machine = 88100;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2005-10-25 19:40:19 +02:00
|
|
|
|
#ifdef Z80MAGIC
|
|
|
|
|
case Z80MAGIC:
|
|
|
|
|
arch = bfd_arch_z80;
|
|
|
|
|
switch (internal_f->f_flags & F_MACHMASK)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
case bfd_mach_z80strict << 12:
|
|
|
|
|
case bfd_mach_z80 << 12:
|
|
|
|
|
case bfd_mach_z80full << 12:
|
|
|
|
|
case bfd_mach_r800 << 12:
|
|
|
|
|
machine = ((unsigned)internal_f->f_flags & F_MACHMASK) >> 12;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef Z8KMAGIC
|
|
|
|
|
case Z8KMAGIC:
|
|
|
|
|
arch = bfd_arch_z8k;
|
|
|
|
|
switch (internal_f->f_flags & F_MACHMASK)
|
|
|
|
|
{
|
|
|
|
|
case F_Z8001:
|
|
|
|
|
machine = bfd_mach_z8001;
|
|
|
|
|
break;
|
|
|
|
|
case F_Z8002:
|
|
|
|
|
machine = bfd_mach_z8002;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef I860
|
|
|
|
|
case I860MAGIC:
|
|
|
|
|
arch = bfd_arch_i860;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef I960
|
|
|
|
|
#ifdef I960ROMAGIC
|
|
|
|
|
case I960ROMAGIC:
|
|
|
|
|
case I960RWMAGIC:
|
|
|
|
|
arch = bfd_arch_i960;
|
|
|
|
|
switch (F_I960TYPE & internal_f->f_flags)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
case F_I960CORE:
|
|
|
|
|
machine = bfd_mach_i960_core;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960KB:
|
|
|
|
|
machine = bfd_mach_i960_kb_sb;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960MC:
|
|
|
|
|
machine = bfd_mach_i960_mc;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960XA:
|
|
|
|
|
machine = bfd_mach_i960_xa;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960CA:
|
|
|
|
|
machine = bfd_mach_i960_ca;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960KA:
|
|
|
|
|
machine = bfd_mach_i960_ka_sa;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960JX:
|
|
|
|
|
machine = bfd_mach_i960_jx;
|
|
|
|
|
break;
|
|
|
|
|
case F_I960HX:
|
|
|
|
|
machine = bfd_mach_i960_hx;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#ifdef XCOFF64
|
2002-03-18 13:46:27 +01:00
|
|
|
|
case U64_TOCMAGIC:
|
2000-05-06 03:41:50 +02:00
|
|
|
|
case U803XTOCMAGIC:
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case U802ROMAGIC:
|
|
|
|
|
case U802WRMAGIC:
|
|
|
|
|
case U802TOCMAGIC:
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
int cputype;
|
|
|
|
|
|
|
|
|
|
if (xcoff_data (abfd)->cputype != -1)
|
|
|
|
|
cputype = xcoff_data (abfd)->cputype & 0xff;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We did not get a value from the a.out header. If the
|
|
|
|
|
file has not been stripped, we may be able to get the
|
|
|
|
|
architecture information from the first symbol, if it
|
|
|
|
|
is a .file symbol. */
|
|
|
|
|
if (obj_raw_syment_count (abfd) == 0)
|
|
|
|
|
cputype = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
2000-02-19 01:59:26 +01:00
|
|
|
|
bfd_byte *buf;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
struct internal_syment sym;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = bfd_coff_symesz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
buf = bfd_malloc (amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (bfd_seek (abfd, obj_sym_filepos (abfd), SEEK_SET) != 0
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|| bfd_bread (buf, amt, abfd) != amt)
|
2000-02-19 01:59:26 +01:00
|
|
|
|
{
|
2000-02-19 02:11:19 +01:00
|
|
|
|
free (buf);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-02-19 01:59:26 +01:00
|
|
|
|
}
|
2005-04-21 09:45:39 +02:00
|
|
|
|
bfd_coff_swap_sym_in (abfd, buf, & sym);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (sym.n_sclass == C_FILE)
|
|
|
|
|
cputype = sym.n_type & 0xff;
|
|
|
|
|
else
|
|
|
|
|
cputype = 0;
|
2000-02-19 02:11:19 +01:00
|
|
|
|
free (buf);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIXME: We don't handle all cases here. */
|
|
|
|
|
switch (cputype)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
case 0:
|
2001-05-24 22:50:50 +02:00
|
|
|
|
arch = bfd_xcoff_architecture (abfd);
|
|
|
|
|
machine = bfd_xcoff_machine (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
|
arch = bfd_arch_powerpc;
|
2000-06-16 22:45:33 +02:00
|
|
|
|
machine = bfd_mach_ppc_601;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case 2: /* 64 bit PowerPC */
|
|
|
|
|
arch = bfd_arch_powerpc;
|
2000-06-16 22:45:33 +02:00
|
|
|
|
machine = bfd_mach_ppc_620;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
arch = bfd_arch_powerpc;
|
2000-06-16 22:45:33 +02:00
|
|
|
|
machine = bfd_mach_ppc;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
arch = bfd_arch_rs6000;
|
2000-06-16 22:45:33 +02:00
|
|
|
|
machine = bfd_mach_rs6k;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef WE32KMAGIC
|
|
|
|
|
case WE32KMAGIC:
|
|
|
|
|
arch = bfd_arch_we32k;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8300MAGIC
|
|
|
|
|
case H8300MAGIC:
|
|
|
|
|
arch = bfd_arch_h8300;
|
|
|
|
|
machine = bfd_mach_h8300;
|
2003-04-24 14:36:08 +02:00
|
|
|
|
/* !! FIXME this probably isn't the right place for this. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abfd->flags |= BFD_IS_RELAXABLE;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8300HMAGIC
|
|
|
|
|
case H8300HMAGIC:
|
|
|
|
|
arch = bfd_arch_h8300;
|
|
|
|
|
machine = bfd_mach_h8300h;
|
2003-04-24 14:36:08 +02:00
|
|
|
|
/* !! FIXME this probably isn't the right place for this. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abfd->flags |= BFD_IS_RELAXABLE;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8300SMAGIC
|
|
|
|
|
case H8300SMAGIC:
|
|
|
|
|
arch = bfd_arch_h8300;
|
|
|
|
|
machine = bfd_mach_h8300s;
|
2003-04-24 14:36:08 +02:00
|
|
|
|
/* !! FIXME this probably isn't the right place for this. */
|
|
|
|
|
abfd->flags |= BFD_IS_RELAXABLE;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8300HNMAGIC
|
|
|
|
|
case H8300HNMAGIC:
|
|
|
|
|
arch = bfd_arch_h8300;
|
|
|
|
|
machine = bfd_mach_h8300hn;
|
|
|
|
|
/* !! FIXME this probably isn't the right place for this. */
|
|
|
|
|
abfd->flags |= BFD_IS_RELAXABLE;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8300SNMAGIC
|
|
|
|
|
case H8300SNMAGIC:
|
|
|
|
|
arch = bfd_arch_h8300;
|
|
|
|
|
machine = bfd_mach_h8300sn;
|
|
|
|
|
/* !! FIXME this probably isn't the right place for this. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
abfd->flags |= BFD_IS_RELAXABLE;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef SH_ARCH_MAGIC_BIG
|
|
|
|
|
case SH_ARCH_MAGIC_BIG:
|
|
|
|
|
case SH_ARCH_MAGIC_LITTLE:
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
case SH_ARCH_MAGIC_WINCE:
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arch = bfd_arch_sh;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef MIPS_ARCH_MAGIC_WINCE
|
|
|
|
|
case MIPS_ARCH_MAGIC_WINCE:
|
|
|
|
|
arch = bfd_arch_mips;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef H8500MAGIC
|
|
|
|
|
case H8500MAGIC:
|
|
|
|
|
arch = bfd_arch_h8500;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef SPARCMAGIC
|
|
|
|
|
case SPARCMAGIC:
|
|
|
|
|
#ifdef LYNXCOFFMAGIC
|
|
|
|
|
case LYNXCOFFMAGIC:
|
|
|
|
|
#endif
|
|
|
|
|
arch = bfd_arch_sparc;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TIC30MAGIC
|
|
|
|
|
case TIC30MAGIC:
|
|
|
|
|
arch = bfd_arch_tic30;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#ifdef TICOFF0MAGIC
|
|
|
|
|
#ifdef TICOFF_TARGET_ARCH
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* This TI COFF section should be used by all new TI COFF v0 targets. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
case TICOFF0MAGIC:
|
|
|
|
|
arch = TICOFF_TARGET_ARCH;
|
2003-01-20 23:34:39 +01:00
|
|
|
|
machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
|
2000-04-07 19:06:58 +02:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TICOFF1MAGIC
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* This TI COFF section should be used by all new TI COFF v1/2 targets. */
|
|
|
|
|
/* TI COFF1 and COFF2 use the target_id field to specify which arch. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
case TICOFF1MAGIC:
|
|
|
|
|
case TICOFF2MAGIC:
|
|
|
|
|
switch (internal_f->f_target_id)
|
2008-08-05 05:03:46 +02:00
|
|
|
|
{
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#ifdef TI_TARGET_ID
|
2008-08-05 05:03:46 +02:00
|
|
|
|
case TI_TARGET_ID:
|
|
|
|
|
arch = TICOFF_TARGET_ARCH;
|
2003-01-20 23:34:39 +01:00
|
|
|
|
machine = TICOFF_TARGET_MACHINE_GET (internal_f->f_flags);
|
2008-08-05 05:03:46 +02:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
default:
|
|
|
|
|
arch = bfd_arch_obscure;
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("Unrecognized TI COFF target id '0x%x'"),
|
|
|
|
|
internal_f->f_target_id);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-04-07 19:06:58 +02:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef TIC80_ARCH_MAGIC
|
|
|
|
|
case TIC80_ARCH_MAGIC:
|
|
|
|
|
arch = bfd_arch_tic80;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef MCOREMAGIC
|
|
|
|
|
case MCOREMAGIC:
|
|
|
|
|
arch = bfd_arch_mcore;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
2002-08-26 11:01:41 +02:00
|
|
|
|
|
|
|
|
|
#ifdef W65MAGIC
|
|
|
|
|
case W65MAGIC:
|
|
|
|
|
arch = bfd_arch_w65;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
default: /* Unreadable input file type. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arch = bfd_arch_obscure;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bfd_default_set_arch_mach (abfd, arch, machine);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef SYMNAME_IN_DEBUG
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
symname_in_debug_hook (bfd * abfd ATTRIBUTE_UNUSED, struct internal_syment *sym)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-06-25 08:21:54 +02:00
|
|
|
|
return SYMNAME_IN_DEBUG (sym) != 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define symname_in_debug_hook \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
(bfd_boolean (*) (bfd *, struct internal_syment *)) bfd_false
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#ifdef XCOFF64
|
|
|
|
|
#define FORCE_SYMNAMES_IN_STRINGS
|
|
|
|
|
#endif
|
2000-07-31 20:49:56 +02:00
|
|
|
|
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 10:34:27 +01:00
|
|
|
|
/* Handle the csect auxent of a C_EXT, C_AIX_WEAKEXT or C_HIDEXT symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_pointerize_aux_hook (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *table_base,
|
|
|
|
|
combined_entry_type *symbol,
|
|
|
|
|
unsigned int indaux,
|
|
|
|
|
combined_entry_type *aux)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
* bfd/coff-arm.c (coff_arm_relocate_section)
(record_thumb_to_arm_glue, bfd_arm_process_before_allocation):
Change member name class to symbol_class.
* bfd/coff-i960.c (coff_i960_relocate_section) Rename variable
class to class_val. Change member name class to symbol_class.
* bfd/coff-rs6000.c (_bfd_xcoff_swap_aux_in)
(_bfd_xcoff_swap_aux_out): Rename arguments class to in_class.
* bfd/coff-stgo32.c (adjust_aux_in_post)
(adjust_aux_out_pre, adjust_aux_out_post): Rename arguments class
to in_class.
* bfd/coff64-rs6000.c (_bfd_xcoff64_swap_aux_in)
(_bfd_xcoff64_swap_aux_out): Rename arguments class to in_class.
* bfd/coffcode.h (coff_pointerize_aux_hook): Rename variable class
to n_sclass.
* bfd/coffgen.c (coff_write_symbol, coff_pointerize_aux): Rename
variables named class to n_sclass. (coff_write_symbols): Rename
variable class to sym_class. (bfd_coff_set_symbol_class): Rename
argument class to symbol_class.
* bfd/cofflink.c (_bfd_coff_link_hash_newfunc)
(coff_link_add_symbols, _bfd_coff_link_input_bfd)
(_bfd_coff_write_global_sym, _bfd_coff_generic_relocate_section):
Update code to use renamed members.
* bfd/coffswap.h (coff_swap_aux_in, coff_swap_aux_out): Rename
argument class to in_class.
* bfd/libcoff-in.h (struct coff_link_hash_entry, struct
coff_debug_merge_type) Renamed members class to symbol_class and
type_class.
* bfd/libcoff.h Regenerated.
* bfd/peXXigen.c: (_bfd_XXi_swap_aux_in, _bfd_XXi_swap_aux_out):
Rename argument class to in_class.
* bfd/pef.c (bfd_pef_parse_imported_symbol): Update code to use
renamed members.
* bfd/pef.h (struct bfd_pef_imported_symbol): Changed name of
member class to symbol_class.
* binutils/ieee.c (ieee_read_cxx_misc, ieee_read_cxx_class)
(ieee_read_reference): Rename variables named class to cxxclass.
* gas/config/tc-arc.c (struct syntax_classes): Rename member class
to s_class. (arc_extinst): Rename variable class to
s_class. Update code to use renamed members.
* gas/config/tc-mips.c (insn_uses_reg): Rename argument class to
regclass.
* gas/config/tc-ppc.c (ppc_csect, ppc_change_csect, ppc_function)
(ppc_tc, ppc_is_toc_sym, ppc_symbol_new_hook, ppc_frob_label)
(ppc_fix_adjustable, md_apply_fix): Update code to use renamed
members.
* gas/config/tc-ppc.h (struct ppc_tc_sy): Change name of member
from class to symbol_class. (OBJ_COPY_SYMBOL_ATTRIBUTES): Update
code to use renamed members.
* gas/config/tc-score.c (s3_adjust_paritybit): Rename argument
class to i_class.
* gas/config/tc-score7.c (s7_adjust_paritybit): Rename argument
class to i_class.
* gprof/corefile.c (core_create_function_syms): Rename variable
class to cxxclass.
* include/coff/ti.h (GET_LNSZ_SIZE, PUT_LNSZ_SIZE): Updated name
of class variable to in_class to match changes in function that
use this macro.
* include/opcode/ia64.h (struct ia64_operand): Renamed member
class to op_class
* ld/emultempl/elf32.em (gld${EMULATION_NAME}_load_symbols)
(gld${EMULATION_NAME}_try_needed): Rename variable class to
link_class
* opcodes/ia64-dis.c (print_insn_ia64): Update code to use renamed
member.
* opcodes/m88k-dis.c (m88kdis): Rename variable class to in_class.
* opcodes/tic80-opc.c (tic80_symbol_to_value)
(tic80_value_to_symbol): Rename argument class to symbol_class.
2009-09-05 09:56:26 +02:00
|
|
|
|
int n_sclass = symbol->u.syment.n_sclass;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
* bfd/coff-arm.c (coff_arm_relocate_section)
(record_thumb_to_arm_glue, bfd_arm_process_before_allocation):
Change member name class to symbol_class.
* bfd/coff-i960.c (coff_i960_relocate_section) Rename variable
class to class_val. Change member name class to symbol_class.
* bfd/coff-rs6000.c (_bfd_xcoff_swap_aux_in)
(_bfd_xcoff_swap_aux_out): Rename arguments class to in_class.
* bfd/coff-stgo32.c (adjust_aux_in_post)
(adjust_aux_out_pre, adjust_aux_out_post): Rename arguments class
to in_class.
* bfd/coff64-rs6000.c (_bfd_xcoff64_swap_aux_in)
(_bfd_xcoff64_swap_aux_out): Rename arguments class to in_class.
* bfd/coffcode.h (coff_pointerize_aux_hook): Rename variable class
to n_sclass.
* bfd/coffgen.c (coff_write_symbol, coff_pointerize_aux): Rename
variables named class to n_sclass. (coff_write_symbols): Rename
variable class to sym_class. (bfd_coff_set_symbol_class): Rename
argument class to symbol_class.
* bfd/cofflink.c (_bfd_coff_link_hash_newfunc)
(coff_link_add_symbols, _bfd_coff_link_input_bfd)
(_bfd_coff_write_global_sym, _bfd_coff_generic_relocate_section):
Update code to use renamed members.
* bfd/coffswap.h (coff_swap_aux_in, coff_swap_aux_out): Rename
argument class to in_class.
* bfd/libcoff-in.h (struct coff_link_hash_entry, struct
coff_debug_merge_type) Renamed members class to symbol_class and
type_class.
* bfd/libcoff.h Regenerated.
* bfd/peXXigen.c: (_bfd_XXi_swap_aux_in, _bfd_XXi_swap_aux_out):
Rename argument class to in_class.
* bfd/pef.c (bfd_pef_parse_imported_symbol): Update code to use
renamed members.
* bfd/pef.h (struct bfd_pef_imported_symbol): Changed name of
member class to symbol_class.
* binutils/ieee.c (ieee_read_cxx_misc, ieee_read_cxx_class)
(ieee_read_reference): Rename variables named class to cxxclass.
* gas/config/tc-arc.c (struct syntax_classes): Rename member class
to s_class. (arc_extinst): Rename variable class to
s_class. Update code to use renamed members.
* gas/config/tc-mips.c (insn_uses_reg): Rename argument class to
regclass.
* gas/config/tc-ppc.c (ppc_csect, ppc_change_csect, ppc_function)
(ppc_tc, ppc_is_toc_sym, ppc_symbol_new_hook, ppc_frob_label)
(ppc_fix_adjustable, md_apply_fix): Update code to use renamed
members.
* gas/config/tc-ppc.h (struct ppc_tc_sy): Change name of member
from class to symbol_class. (OBJ_COPY_SYMBOL_ATTRIBUTES): Update
code to use renamed members.
* gas/config/tc-score.c (s3_adjust_paritybit): Rename argument
class to i_class.
* gas/config/tc-score7.c (s7_adjust_paritybit): Rename argument
class to i_class.
* gprof/corefile.c (core_create_function_syms): Rename variable
class to cxxclass.
* include/coff/ti.h (GET_LNSZ_SIZE, PUT_LNSZ_SIZE): Updated name
of class variable to in_class to match changes in function that
use this macro.
* include/opcode/ia64.h (struct ia64_operand): Renamed member
class to op_class
* ld/emultempl/elf32.em (gld${EMULATION_NAME}_load_symbols)
(gld${EMULATION_NAME}_try_needed): Rename variable class to
link_class
* opcodes/ia64-dis.c (print_insn_ia64): Update code to use renamed
member.
* opcodes/m88k-dis.c (m88kdis): Rename variable class to in_class.
* opcodes/tic80-opc.c (tic80_symbol_to_value)
(tic80_value_to_symbol): Rename argument class to symbol_class.
2009-09-05 09:56:26 +02:00
|
|
|
|
if (CSECT_SYM_P (n_sclass)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& indaux + 1 == symbol->u.syment.n_numaux)
|
|
|
|
|
{
|
|
|
|
|
if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) == XTY_LD)
|
|
|
|
|
{
|
|
|
|
|
aux->u.auxent.x_csect.x_scnlen.p =
|
|
|
|
|
table_base + aux->u.auxent.x_csect.x_scnlen.l;
|
|
|
|
|
aux->fix_scnlen = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return TRUE to indicate that the caller should not do any
|
2008-08-05 05:03:46 +02:00
|
|
|
|
further work on this auxent. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return FALSE to indicate that this auxent should be handled by
|
1999-05-03 09:29:11 +02:00
|
|
|
|
the caller. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
#ifdef I960
|
|
|
|
|
|
|
|
|
|
/* We don't want to pointerize bal entries. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_pointerize_aux_hook (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *table_base ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *symbol,
|
|
|
|
|
unsigned int indaux,
|
|
|
|
|
combined_entry_type *aux ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return TRUE if we don't want to pointerize this aux entry, which
|
1999-05-03 09:29:11 +02:00
|
|
|
|
is the case for the lastfirst aux entry for a C_LEAFPROC symbol. */
|
|
|
|
|
return (indaux == 1
|
|
|
|
|
&& (symbol->u.syment.n_sclass == C_LEAFPROC
|
|
|
|
|
|| symbol->u.syment.n_sclass == C_LEAFSTAT
|
|
|
|
|
|| symbol->u.syment.n_sclass == C_LEAFEXT));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* ! I960 */
|
|
|
|
|
|
|
|
|
|
#define coff_pointerize_aux_hook 0
|
|
|
|
|
|
|
|
|
|
#endif /* ! I960 */
|
|
|
|
|
#endif /* ! RS6000COFF_C */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Print an aux entry. This returns TRUE if it has printed it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_print_aux (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
FILE *file ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *table_base ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *symbol ATTRIBUTE_UNUSED,
|
|
|
|
|
combined_entry_type *aux ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned int indaux ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef RS6000COFF_C
|
include/coff/
* internal.h (C_AIX_WEAKEXT): New macro.
(C_WEAKEXT): Use the GNU definition in the generic part of the file,
and conditionally reset it to C_AIX_WEAKEXT in the XCOFF part of
the file.
(CSECT_SYM_P): New macro.
* xcoff.h (L_WEAK): Define.
(EXTERN_SYM_P): New macro.
bfd/
* coffcode.h (coff_pointerize_aux_hook): Update CSECT_SYM_P to
check whether a symbol has csect information.
(coff_print_aux): Likewise.
* coff-rs6000.c (_bfd_xcoff_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff_swap_aux_out): Likewise.
(xcoff_reloc_type_br): Handle defweak symbols too.
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_in): Handle auxillary csect
information for C_AIX_WEAKEXT too.
(_bfd_xcoff64_swap_aux_out): Likewise.
(xcoff64_reloc_type_br): Handle defweak symbols too.
* coffgen.c (coff_print_symbol): Handle auxillary function
information for C_AIX_WEAKEXT too.
* xcofflink.c (_bfd_xcoff_canonicalize_dynamic_symtab): Set BSF_WEAK
instead of BSF_GLOBAL if the L_WEAK flag is set.
(xcoff_dynamic_definition_p): New function.
(xcoff_link_add_dynamic_symbols): Use it to decide whether ldsym
defines h. Don't change h if ldsym isn't the definition. Otherwise,
always take the symbol class from the ldsym. Use weak bfd symbol
types for weak ldsyms.
(xcoff_link_add_symbols): Use CSECT_SYM_P and EXTERN_SYM_P.
Fix the check for whether a definition is from a shared object.
Allow redefinitions of weak symbols.
(xcoff_link_check_ar_symbols): Use EXTERN_SYM_P.
(xcoff_keep_symbol_p): Likewise.
(bfd_xcoff_size_dynamic_sections): Use CSECT_SYM_P.
(xcoff_link_input_bfd): Use CSECT_SYM_P and EXTERN_SYM_P.
Add .loader entries for C_AIX_WEAKEXT as well as C_EXT symbols,
but mark them as L_WEAK.
(xcoff_write_global_symbol): Treat weak symbols as C_AIX_WEAKEXT
instead of C_EXT if C_AIX_WEAKEXT == C_WEAKEXT.
gas/
* config/tc-ppc.c (ppc_frob_symbol): Add csect information for
C_AIX_WEAKEXT too.
ld/testsuite/
* ld-powerpc/aix-glink-2a.s, ld-powerpc/aix-glink-2a.ex,
ld-powerpc/aix-glink-2b.s, ld-powerpc/aix-glink-2c.s,
ld-powerpc/aix-glink-2c.ex, ld-powerpc/aix-glink-2d.s,
ld-powerpc/aix-glink-2-32.dd, ld-powerpc/aix-glink-2-64.dd,
ld-powerpc/aix-weak-1a.s, ld-powerpc/aix-weak-1b.s,
ld-powerpc/aix-weak-1-rel.hd, ld-powerpc/aix-weak-1-rel.nd,
ld-powerpc/aix-weak-1-dso.hd, ld-powerpc/aix-weak-1-dso.nd,
ld-powerpc/aix-weak-1-dso.dnd, ld-powerpc/aix-weak-1.ex,
ld-powerpc/aix-weak-2a.s, ld-powerpc/aix-weak-2a.ex,
ld-powerpc/aix-weak-2a.nd, ld-powerpc/aix-weak-2b.s,
ld-powerpc/aix-weak-2b.nd, ld-powerpc/aix-weak-2c.s,
ld-powerpc/aix-weak-2c.ex, ld-powerpc/aix-weak-2c.nd,
ld-powerpc/aix-weak-2c.od, ld-powerpc/aix-weak-3a.s,
ld-powerpc/aix-weak-3a.ex, ld-powerpc/aix-weak-3b.s,
ld-powerpc/aix-weak-3b.ex, ld-powerpc/aix-weak-3-32.d,
ld-powerpc/aix-weak-3-32.dd, ld-powerpc/aix-weak-3-64.d,
ld-powerpc/aix-weak-3-64.dd: New tests.
* ld-powerpc/aix52.exp: Run them. Replace tmp/aix-* with
tmp/aix64-* in 64-bit ld options.
2009-03-14 10:34:27 +01:00
|
|
|
|
if (CSECT_SYM_P (symbol->u.syment.n_sclass)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
&& indaux + 1 == symbol->u.syment.n_numaux)
|
|
|
|
|
{
|
|
|
|
|
/* This is a csect entry. */
|
|
|
|
|
fprintf (file, "AUX ");
|
|
|
|
|
if (SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp) != XTY_LD)
|
|
|
|
|
{
|
|
|
|
|
BFD_ASSERT (! aux->fix_scnlen);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#ifdef XCOFF64
|
2005-02-24 14:34:38 +01:00
|
|
|
|
fprintf (file, "val %5lld",
|
|
|
|
|
(long long) aux->u.auxent.x_csect.x_scnlen.l);
|
2001-05-24 22:50:50 +02:00
|
|
|
|
#else
|
|
|
|
|
fprintf (file, "val %5ld", (long) aux->u.auxent.x_csect.x_scnlen.l);
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
fprintf (file, "indx ");
|
|
|
|
|
if (! aux->fix_scnlen)
|
2001-05-24 22:50:50 +02:00
|
|
|
|
#ifdef XCOFF64
|
2005-02-24 14:34:38 +01:00
|
|
|
|
fprintf (file, "%4lld",
|
|
|
|
|
(long long) aux->u.auxent.x_csect.x_scnlen.l);
|
2001-05-24 22:50:50 +02:00
|
|
|
|
#else
|
|
|
|
|
fprintf (file, "%4ld", (long) aux->u.auxent.x_csect.x_scnlen.l);
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
fprintf (file, "%4ld",
|
|
|
|
|
(long) (aux->u.auxent.x_csect.x_scnlen.p - table_base));
|
|
|
|
|
}
|
|
|
|
|
fprintf (file,
|
|
|
|
|
" prmhsh %ld snhsh %u typ %d algn %d clss %u stb %ld snstb %u",
|
|
|
|
|
aux->u.auxent.x_csect.x_parmhash,
|
|
|
|
|
(unsigned int) aux->u.auxent.x_csect.x_snhash,
|
|
|
|
|
SMTYP_SMTYP (aux->u.auxent.x_csect.x_smtyp),
|
|
|
|
|
SMTYP_ALIGN (aux->u.auxent.x_csect.x_smtyp),
|
|
|
|
|
(unsigned int) aux->u.auxent.x_csect.x_smclas,
|
|
|
|
|
aux->u.auxent.x_csect.x_stab,
|
|
|
|
|
(unsigned int) aux->u.auxent.x_csect.x_snstab);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Return FALSE to indicate that no special action was taken. */
|
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Writing relocations
|
|
|
|
|
|
|
|
|
|
To write relocations, the back end steps though the
|
|
|
|
|
canonical relocation table and create an
|
|
|
|
|
@code{internal_reloc}. The symbol index to use is removed from
|
|
|
|
|
the @code{offset} field in the symbol table supplied. The
|
|
|
|
|
address comes directly from the sum of the section base
|
|
|
|
|
address and the relocation offset; the type is dug directly
|
|
|
|
|
from the howto field. Then the @code{internal_reloc} is
|
|
|
|
|
swapped into the shape of an @code{external_reloc} and written
|
|
|
|
|
out to disk.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifdef TARG_AUX
|
|
|
|
|
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* AUX's ld wants relocations to be sorted. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static int
|
2005-04-21 09:45:39 +02:00
|
|
|
|
compare_arelent_ptr (const void * x, const void * y)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
const arelent **a = (const arelent **) x;
|
|
|
|
|
const arelent **b = (const arelent **) y;
|
|
|
|
|
bfd_size_type aadr = (*a)->address;
|
|
|
|
|
bfd_size_type badr = (*b)->address;
|
|
|
|
|
|
|
|
|
|
return (aadr < badr ? -1 : badr < aadr ? 1 : 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* TARG_AUX */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_write_relocs (bfd * abfd, int first_undef)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *s;
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
for (s = abfd->sections; s != NULL; s = s->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int i;
|
|
|
|
|
struct external_reloc dst;
|
|
|
|
|
arelent **p;
|
|
|
|
|
|
|
|
|
|
#ifndef TARG_AUX
|
|
|
|
|
p = s->orelocation;
|
|
|
|
|
#else
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
{
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Sort relocations before we write them out. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
|
|
|
|
|
|
|
|
|
amt = s->reloc_count;
|
|
|
|
|
amt *= sizeof (arelent *);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
p = bfd_malloc (amt);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (p == NULL && s->reloc_count > 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
memcpy (p, s->orelocation, (size_t) amt);
|
|
|
|
|
qsort (p, s->reloc_count, sizeof (arelent *), compare_arelent_ptr);
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, s->rel_filepos, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-10-06 21:47:51 +02:00
|
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
2002-07-08 07:34:08 +02:00
|
|
|
|
if (obj_pe (abfd) && s->reloc_count >= 0xffff)
|
2000-10-06 21:47:51 +02:00
|
|
|
|
{
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Encode real count here as first reloc. */
|
2000-10-06 21:47:51 +02:00
|
|
|
|
struct internal_reloc n;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
memset (& n, 0, sizeof (n));
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Add one to count *this* reloc (grr). */
|
2000-10-06 21:47:51 +02:00
|
|
|
|
n.r_vaddr = s->reloc_count + 1;
|
|
|
|
|
coff_swap_reloc_out (abfd, &n, &dst);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
|
|
|
|
|
abfd) != bfd_coff_relsz (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-10-06 21:47:51 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (i = 0; i < s->reloc_count; i++)
|
|
|
|
|
{
|
|
|
|
|
struct internal_reloc n;
|
|
|
|
|
arelent *q = p[i];
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
memset (& n, 0, sizeof (n));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Now we've renumbered the symbols we know where the
|
|
|
|
|
undefined symbols live in the table. Check the reloc
|
|
|
|
|
entries for symbols who's output bfd isn't the right one.
|
|
|
|
|
This is because the symbol was undefined (which means
|
|
|
|
|
that all the pointers are never made to point to the same
|
|
|
|
|
place). This is a bad thing,'cause the symbols attached
|
|
|
|
|
to the output bfd are indexed, so that the relocation
|
|
|
|
|
entries know which symbol index they point to. So we
|
2000-11-28 22:42:16 +01:00
|
|
|
|
have to look up the output symbol here. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (q->sym_ptr_ptr[0]->the_bfd != abfd)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
int j;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
const char *sname = q->sym_ptr_ptr[0]->name;
|
|
|
|
|
asymbol **outsyms = abfd->outsymbols;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
for (j = first_undef; outsyms[j]; j++)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
const char *intable = outsyms[j]->name;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (strcmp (intable, sname) == 0)
|
|
|
|
|
{
|
|
|
|
|
/* Got a hit, so repoint the reloc. */
|
|
|
|
|
q->sym_ptr_ptr = outsyms + j;
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
n.r_vaddr = q->address + s->vma;
|
|
|
|
|
|
|
|
|
|
#ifdef R_IHCONST
|
|
|
|
|
/* The 29k const/consth reloc pair is a real kludge. The consth
|
|
|
|
|
part doesn't have a symbol; it has an offset. So rebuilt
|
|
|
|
|
that here. */
|
|
|
|
|
if (q->howto->type == R_IHCONST)
|
|
|
|
|
n.r_symndx = q->addend;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
if (q->sym_ptr_ptr)
|
|
|
|
|
{
|
2000-02-10 22:21:55 +01:00
|
|
|
|
#ifdef SECTION_RELATIVE_ABSOLUTE_SYMBOL_P
|
2008-08-05 05:03:46 +02:00
|
|
|
|
if (SECTION_RELATIVE_ABSOLUTE_SYMBOL_P (q, s))
|
2000-02-10 22:21:55 +01:00
|
|
|
|
#else
|
2002-09-02 13:47:42 +02:00
|
|
|
|
if ((*q->sym_ptr_ptr)->section == bfd_abs_section_ptr
|
|
|
|
|
&& ((*q->sym_ptr_ptr)->flags & BSF_SECTION_SYM) != 0)
|
2000-02-10 22:21:55 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* This is a relocation relative to the absolute symbol. */
|
|
|
|
|
n.r_symndx = -1;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
n.r_symndx = get_index ((*(q->sym_ptr_ptr)));
|
2006-05-09 13:47:48 +02:00
|
|
|
|
/* Check to see if the symbol reloc points to a symbol
|
|
|
|
|
we don't have in our symbol table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (n.r_symndx > obj_conv_table_size (abfd))
|
2006-05-09 13:47:48 +02:00
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
|
|
|
|
_bfd_error_handler (_("%B: reloc against a non-existant symbol index: %ld"),
|
|
|
|
|
abfd, n.r_symndx);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef SWAP_OUT_RELOC_OFFSET
|
|
|
|
|
n.r_offset = q->addend;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef SELECT_RELOC
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Work out reloc type from what is required. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
SELECT_RELOC (n, q->howto);
|
|
|
|
|
#else
|
|
|
|
|
n.r_type = q->howto->type;
|
|
|
|
|
#endif
|
|
|
|
|
coff_swap_reloc_out (abfd, &n, &dst);
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (bfd_bwrite (& dst, (bfd_size_type) bfd_coff_relsz (abfd),
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
abfd) != bfd_coff_relsz (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef TARG_AUX
|
|
|
|
|
if (p != NULL)
|
|
|
|
|
free (p);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set flags and magic number of a coff file from architecture and machine
|
2002-11-30 09:39:46 +01:00
|
|
|
|
type. Result is TRUE if we can represent the arch&type, FALSE if not. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_flags (bfd * abfd,
|
|
|
|
|
unsigned int *magicp ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned short *flagsp ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
switch (bfd_get_arch (abfd))
|
|
|
|
|
{
|
2005-10-25 19:40:19 +02:00
|
|
|
|
#ifdef Z80MAGIC
|
|
|
|
|
case bfd_arch_z80:
|
|
|
|
|
*magicp = Z80MAGIC;
|
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
case bfd_mach_z80strict:
|
|
|
|
|
case bfd_mach_z80:
|
|
|
|
|
case bfd_mach_z80full:
|
|
|
|
|
case bfd_mach_r800:
|
|
|
|
|
*flagsp = bfd_get_mach (abfd) << 12;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
return TRUE;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef Z8KMAGIC
|
|
|
|
|
case bfd_arch_z8k:
|
|
|
|
|
*magicp = Z8KMAGIC;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
case bfd_mach_z8001: *flagsp = F_Z8001; break;
|
|
|
|
|
case bfd_mach_z8002: *flagsp = F_Z8002; break;
|
|
|
|
|
default: return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
#ifdef I960ROMAGIC
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case bfd_arch_i960:
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
unsigned flags;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*magicp = I960ROMAGIC;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
case bfd_mach_i960_core: flags = F_I960CORE; break;
|
|
|
|
|
case bfd_mach_i960_kb_sb: flags = F_I960KB; break;
|
|
|
|
|
case bfd_mach_i960_mc: flags = F_I960MC; break;
|
|
|
|
|
case bfd_mach_i960_xa: flags = F_I960XA; break;
|
|
|
|
|
case bfd_mach_i960_ca: flags = F_I960CA; break;
|
|
|
|
|
case bfd_mach_i960_ka_sa: flags = F_I960KA; break;
|
|
|
|
|
case bfd_mach_i960_jx: flags = F_I960JX; break;
|
|
|
|
|
case bfd_mach_i960_hx: flags = F_I960HX; break;
|
2008-08-05 05:03:46 +02:00
|
|
|
|
default: return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
*flagsp = flags;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TIC30MAGIC
|
|
|
|
|
case bfd_arch_tic30:
|
|
|
|
|
*magicp = TIC30MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2000-04-07 19:06:58 +02:00
|
|
|
|
|
|
|
|
|
#ifdef TICOFF_DEFAULT_MAGIC
|
|
|
|
|
case TICOFF_TARGET_ARCH:
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* If there's no indication of which version we want, use the default. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
if (!abfd->xvec )
|
2008-08-05 05:03:46 +02:00
|
|
|
|
*magicp = TICOFF_DEFAULT_MAGIC;
|
2000-04-07 19:06:58 +02:00
|
|
|
|
else
|
2008-08-05 05:03:46 +02:00
|
|
|
|
{
|
|
|
|
|
/* We may want to output in a different COFF version. */
|
|
|
|
|
switch (abfd->xvec->name[4])
|
|
|
|
|
{
|
|
|
|
|
case '0':
|
|
|
|
|
*magicp = TICOFF0MAGIC;
|
|
|
|
|
break;
|
|
|
|
|
case '1':
|
|
|
|
|
*magicp = TICOFF1MAGIC;
|
|
|
|
|
break;
|
|
|
|
|
case '2':
|
|
|
|
|
*magicp = TICOFF2MAGIC;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-01-20 23:34:39 +01:00
|
|
|
|
TICOFF_TARGET_MACHINE_SET (flagsp, bfd_get_mach (abfd));
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef TIC80_ARCH_MAGIC
|
|
|
|
|
case bfd_arch_tic80:
|
|
|
|
|
*magicp = TIC80_ARCH_MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef ARMMAGIC
|
|
|
|
|
case bfd_arch_arm:
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef ARM_WINCE
|
|
|
|
|
* magicp = ARMPEMAGIC;
|
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
* magicp = ARMMAGIC;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
* flagsp = 0;
|
|
|
|
|
if (APCS_SET (abfd))
|
|
|
|
|
{
|
|
|
|
|
if (APCS_26_FLAG (abfd))
|
|
|
|
|
* flagsp |= F_APCS26;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (APCS_FLOAT_FLAG (abfd))
|
|
|
|
|
* flagsp |= F_APCS_FLOAT;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (PIC_FLAG (abfd))
|
1999-05-19 09:27:14 +02:00
|
|
|
|
* flagsp |= F_PIC;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
if (INTERWORK_SET (abfd) && INTERWORK_FLAG (abfd))
|
|
|
|
|
* flagsp |= F_INTERWORK;
|
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
|
|
|
|
case bfd_mach_arm_2: * flagsp |= F_ARM_2; break;
|
|
|
|
|
case bfd_mach_arm_2a: * flagsp |= F_ARM_2a; break;
|
|
|
|
|
case bfd_mach_arm_3: * flagsp |= F_ARM_3; break;
|
|
|
|
|
case bfd_mach_arm_3M: * flagsp |= F_ARM_3M; break;
|
|
|
|
|
case bfd_mach_arm_4: * flagsp |= F_ARM_4; break;
|
|
|
|
|
case bfd_mach_arm_4T: * flagsp |= F_ARM_4T; break;
|
1999-07-05 09:28:24 +02:00
|
|
|
|
case bfd_mach_arm_5: * flagsp |= F_ARM_5; break;
|
2002-02-06 17:29:28 +01:00
|
|
|
|
/* FIXME: we do not have F_ARM vaues greater than F_ARM_5.
|
|
|
|
|
See also the comment in coff_set_arch_mach_hook(). */
|
2000-11-25 01:21:40 +01:00
|
|
|
|
case bfd_mach_arm_5T: * flagsp |= F_ARM_5; break;
|
|
|
|
|
case bfd_mach_arm_5TE: * flagsp |= F_ARM_5; break;
|
|
|
|
|
case bfd_mach_arm_XScale: * flagsp |= F_ARM_5; break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef PPCMAGIC
|
|
|
|
|
case bfd_arch_powerpc:
|
|
|
|
|
*magicp = PPCMAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#if defined(I386MAGIC) || defined(AMD64MAGIC)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case bfd_arch_i386:
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#if defined(I386MAGIC)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*magicp = I386MAGIC;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#if defined LYNXOS
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* Just overwrite the usual value if we're doing Lynx. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*magicp = LYNXCOFFMAGIC;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#if defined AMD64MAGIC
|
|
|
|
|
*magicp = AMD64MAGIC;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef I860MAGIC
|
|
|
|
|
case bfd_arch_i860:
|
|
|
|
|
*magicp = I860MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2000-04-18 06:03:16 +02:00
|
|
|
|
#ifdef IA64MAGIC
|
|
|
|
|
case bfd_arch_ia64:
|
|
|
|
|
*magicp = IA64MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-04-18 06:03:16 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef MC68MAGIC
|
|
|
|
|
case bfd_arch_m68k:
|
|
|
|
|
#ifdef APOLLOM68KMAGIC
|
|
|
|
|
*magicp = APOLLO_COFF_VERSION_NUMBER;
|
|
|
|
|
#else
|
|
|
|
|
/* NAMES_HAVE_UNDERSCORE may be defined by coff-u68k.c. */
|
|
|
|
|
#ifdef NAMES_HAVE_UNDERSCORE
|
|
|
|
|
*magicp = MC68KBCSMAGIC;
|
|
|
|
|
#else
|
|
|
|
|
*magicp = MC68MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef LYNXOS
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* Just overwrite the usual value if we're doing Lynx. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*magicp = LYNXCOFFMAGIC;
|
|
|
|
|
#endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef MC88MAGIC
|
|
|
|
|
case bfd_arch_m88k:
|
|
|
|
|
*magicp = MC88OMAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef H8300MAGIC
|
|
|
|
|
case bfd_arch_h8300:
|
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
case bfd_mach_h8300: *magicp = H8300MAGIC; return TRUE;
|
|
|
|
|
case bfd_mach_h8300h: *magicp = H8300HMAGIC; return TRUE;
|
|
|
|
|
case bfd_mach_h8300s: *magicp = H8300SMAGIC; return TRUE;
|
|
|
|
|
case bfd_mach_h8300hn: *magicp = H8300HNMAGIC; return TRUE;
|
|
|
|
|
case bfd_mach_h8300sn: *magicp = H8300SNMAGIC; return TRUE;
|
|
|
|
|
default: break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef SH_ARCH_MAGIC_BIG
|
|
|
|
|
case bfd_arch_sh:
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
*magicp = SH_ARCH_MAGIC_WINCE;
|
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (bfd_big_endian (abfd))
|
|
|
|
|
*magicp = SH_ARCH_MAGIC_BIG;
|
|
|
|
|
else
|
|
|
|
|
*magicp = SH_ARCH_MAGIC_LITTLE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef MIPS_ARCH_MAGIC_WINCE
|
|
|
|
|
case bfd_arch_mips:
|
|
|
|
|
*magicp = MIPS_ARCH_MAGIC_WINCE;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef SPARCMAGIC
|
|
|
|
|
case bfd_arch_sparc:
|
|
|
|
|
*magicp = SPARCMAGIC;
|
|
|
|
|
#ifdef LYNXOS
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* Just overwrite the usual value if we're doing Lynx. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
*magicp = LYNXCOFFMAGIC;
|
|
|
|
|
#endif
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef H8500MAGIC
|
|
|
|
|
case bfd_arch_h8500:
|
|
|
|
|
*magicp = H8500MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef WE32KMAGIC
|
|
|
|
|
case bfd_arch_we32k:
|
|
|
|
|
*magicp = WE32KMAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case bfd_arch_rs6000:
|
|
|
|
|
#ifndef PPCMAGIC
|
|
|
|
|
case bfd_arch_powerpc:
|
|
|
|
|
#endif
|
2002-03-18 13:46:27 +01:00
|
|
|
|
BFD_ASSERT (bfd_get_flavour (abfd) == bfd_target_xcoff_flavour);
|
|
|
|
|
*magicp = bfd_xcoff_magic_number (abfd);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef MCOREMAGIC
|
|
|
|
|
case bfd_arch_mcore:
|
|
|
|
|
* magicp = MCOREMAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-08-22 22:11:36 +02:00
|
|
|
|
#ifdef W65MAGIC
|
|
|
|
|
case bfd_arch_w65:
|
|
|
|
|
*magicp = W65MAGIC;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2000-08-22 22:11:36 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2002-01-31 18:33:08 +01:00
|
|
|
|
#ifdef OR32_MAGIC_BIG
|
|
|
|
|
case bfd_arch_or32:
|
|
|
|
|
if (bfd_big_endian (abfd))
|
2008-08-05 05:03:46 +02:00
|
|
|
|
* magicp = OR32_MAGIC_BIG;
|
2002-01-31 18:33:08 +01:00
|
|
|
|
else
|
2008-08-05 05:03:46 +02:00
|
|
|
|
* magicp = OR32_MAGIC_LITTLE;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2002-01-31 18:33:08 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2004-11-08 14:17:43 +01:00
|
|
|
|
#ifdef MAXQ20MAGIC
|
|
|
|
|
case bfd_arch_maxq:
|
2005-01-10 17:33:51 +01:00
|
|
|
|
* magicp = MAXQ20MAGIC;
|
|
|
|
|
switch (bfd_get_mach (abfd))
|
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
case bfd_mach_maxq10: * flagsp = F_MAXQ10; return TRUE;
|
|
|
|
|
case bfd_mach_maxq20: * flagsp = F_MAXQ20; return TRUE;
|
|
|
|
|
default: return FALSE;
|
2005-01-10 17:33:51 +01:00
|
|
|
|
}
|
2004-11-08 14:17:43 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-08-22 22:11:36 +02:00
|
|
|
|
default: /* Unknown architecture. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
/* Fall through to "return FALSE" below, to avoid
|
2000-08-22 22:11:36 +02:00
|
|
|
|
"statement never reached" errors on the one below. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_arch_mach (bfd * abfd,
|
|
|
|
|
enum bfd_architecture arch,
|
|
|
|
|
unsigned long machine)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned dummy1;
|
|
|
|
|
unsigned short dummy2;
|
|
|
|
|
|
|
|
|
|
if (! bfd_default_set_arch_mach (abfd, arch, machine))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-06-25 08:21:54 +02:00
|
|
|
|
if (arch != bfd_arch_unknown
|
|
|
|
|
&& ! coff_set_flags (abfd, &dummy1, &dummy2))
|
2005-04-21 09:45:39 +02:00
|
|
|
|
return FALSE; /* We can't represent this type. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
return TRUE; /* We're easy... */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-09-07 06:06:50 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
|
|
|
|
|
/* This is used to sort sections by VMA, as required by PE image
|
|
|
|
|
files. */
|
|
|
|
|
|
|
|
|
|
static int
|
2005-04-21 09:45:39 +02:00
|
|
|
|
sort_by_secaddr (const void * arg1, const void * arg2)
|
1999-09-07 06:06:50 +02:00
|
|
|
|
{
|
|
|
|
|
const asection *a = *(const asection **) arg1;
|
|
|
|
|
const asection *b = *(const asection **) arg2;
|
|
|
|
|
|
|
|
|
|
if (a->vma < b->vma)
|
|
|
|
|
return -1;
|
|
|
|
|
else if (a->vma > b->vma)
|
|
|
|
|
return 1;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
|
|
|
|
return 0;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* COFF_IMAGE_WITH_PE */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* Calculate the file position for each section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifndef I960
|
|
|
|
|
#define ALIGN_SECTIONS_IN_FILE
|
|
|
|
|
#endif
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#if defined(TIC80COFF) || defined(TICOFF)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#undef ALIGN_SECTIONS_IN_FILE
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_compute_section_file_positions (bfd * abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *current;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
asection *previous = NULL;
|
2000-01-14 00:55:21 +01:00
|
|
|
|
file_ptr sofar = bfd_coff_filhsz (abfd);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean align_adjust;
|
2010-01-18 08:21:46 +01:00
|
|
|
|
int target_index;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef ALIGN_SECTIONS_IN_FILE
|
|
|
|
|
file_ptr old_sofar;
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-01-18 08:21:46 +01:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
int page_size;
|
|
|
|
|
|
|
|
|
|
if (coff_data (abfd)->link_info)
|
|
|
|
|
{
|
|
|
|
|
page_size = pe_data (abfd)->pe_opthdr.FileAlignment;
|
|
|
|
|
|
|
|
|
|
/* If no file alignment has been set, default to one.
|
|
|
|
|
This repairs 'ld -r' for arm-wince-pe target. */
|
|
|
|
|
if (page_size == 0)
|
|
|
|
|
page_size = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
page_size = PE_DEF_FILE_ALIGNMENT;
|
|
|
|
|
#else
|
|
|
|
|
#ifdef COFF_PAGE_SIZE
|
|
|
|
|
int page_size = COFF_PAGE_SIZE;
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
/* On XCOFF, if we have symbols, set up the .debug section. */
|
|
|
|
|
if (bfd_get_symcount (abfd) > 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type sz;
|
|
|
|
|
bfd_size_type i, symcount;
|
|
|
|
|
asymbol **symp;
|
|
|
|
|
|
|
|
|
|
sz = 0;
|
|
|
|
|
symcount = bfd_get_symcount (abfd);
|
|
|
|
|
for (symp = abfd->outsymbols, i = 0; i < symcount; symp++, i++)
|
|
|
|
|
{
|
|
|
|
|
coff_symbol_type *cf;
|
|
|
|
|
|
|
|
|
|
cf = coff_symbol_from (abfd, *symp);
|
|
|
|
|
if (cf != NULL
|
|
|
|
|
&& cf->native != NULL
|
|
|
|
|
&& SYMNAME_IN_DEBUG (&cf->native->u.syment))
|
|
|
|
|
{
|
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
|
|
len = strlen (bfd_asymbol_name (*symp));
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
if (len > SYMNMLEN || bfd_coff_force_symnames_in_strings (abfd))
|
|
|
|
|
sz += len + 1 + bfd_coff_debug_string_prefix_length (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (sz > 0)
|
|
|
|
|
{
|
|
|
|
|
asection *dsec;
|
|
|
|
|
|
2004-04-29 18:40:20 +02:00
|
|
|
|
dsec = bfd_make_section_old_way (abfd, DOT_DEBUG);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (dsec == NULL)
|
|
|
|
|
abort ();
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
dsec->size = sz;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dsec->flags |= SEC_HAS_CONTENTS;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (bfd_get_start_address (abfd))
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* A start address may have been added to the original file. In this
|
|
|
|
|
case it will need an optional header to record it. */
|
|
|
|
|
abfd->flags |= EXEC_P;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (abfd->flags & EXEC_P)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
sofar += bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
else if (xcoff_data (abfd)->full_aouthdr)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
sofar += bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
sofar += SMALL_AOUTSZ;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-01-14 00:55:21 +01:00
|
|
|
|
sofar += abfd->section_count * bfd_coff_scnhsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
/* XCOFF handles overflows in the reloc and line number count fields
|
|
|
|
|
by allocating a new section header to hold the correct counts. */
|
|
|
|
|
for (current = abfd->sections; current != NULL; current = current->next)
|
|
|
|
|
if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
sofar += bfd_coff_scnhsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-07 06:06:50 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
{
|
|
|
|
|
/* PE requires the sections to be in memory order when listed in
|
|
|
|
|
the section headers. It also does not like empty loadable
|
|
|
|
|
sections. The sections apparently do not have to be in the
|
|
|
|
|
right order in the image file itself, but we do need to get the
|
|
|
|
|
target_index values right. */
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
unsigned int count;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
asection **section_list;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
unsigned int i;
|
|
|
|
|
bfd_size_type amt;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
|
2009-04-21 19:08:20 +02:00
|
|
|
|
#ifdef COFF_PAGE_SIZE
|
|
|
|
|
/* Clear D_PAGED if section alignment is smaller than
|
|
|
|
|
COFF_PAGE_SIZE. */
|
|
|
|
|
if (pe_data (abfd)->pe_opthdr.SectionAlignment < COFF_PAGE_SIZE)
|
|
|
|
|
abfd->flags &= ~D_PAGED;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-07 06:06:50 +02:00
|
|
|
|
count = 0;
|
|
|
|
|
for (current = abfd->sections; current != NULL; current = current->next)
|
|
|
|
|
++count;
|
|
|
|
|
|
|
|
|
|
/* We allocate an extra cell to simplify the final loop. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = sizeof (struct asection *) * (count + 1);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
section_list = (asection **) bfd_malloc (amt);
|
1999-09-07 06:06:50 +02:00
|
|
|
|
if (section_list == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
|
|
|
|
|
i = 0;
|
|
|
|
|
for (current = abfd->sections; current != NULL; current = current->next)
|
|
|
|
|
{
|
|
|
|
|
section_list[i] = current;
|
|
|
|
|
++i;
|
|
|
|
|
}
|
|
|
|
|
section_list[i] = NULL;
|
|
|
|
|
|
|
|
|
|
qsort (section_list, count, sizeof (asection *), sort_by_secaddr);
|
|
|
|
|
|
|
|
|
|
/* Rethread the linked list into sorted order; at the same time,
|
|
|
|
|
assign target_index values. */
|
|
|
|
|
target_index = 1;
|
2005-05-03 03:05:03 +02:00
|
|
|
|
abfd->sections = NULL;
|
|
|
|
|
abfd->section_last = NULL;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
|
{
|
|
|
|
|
current = section_list[i];
|
2005-05-03 03:05:03 +02:00
|
|
|
|
bfd_section_list_append (abfd, current);
|
1999-09-07 06:06:50 +02:00
|
|
|
|
|
|
|
|
|
/* Later, if the section has zero size, we'll be throwing it
|
|
|
|
|
away, so we don't want to number it now. Note that having
|
|
|
|
|
a zero size and having real contents are different
|
|
|
|
|
concepts: .bss has no contents, but (usually) non-zero
|
|
|
|
|
size. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
if (current->size == 0)
|
1999-09-07 06:06:50 +02:00
|
|
|
|
{
|
|
|
|
|
/* Discard. However, it still might have (valid) symbols
|
|
|
|
|
in it, so arbitrarily set it to section 1 (indexing is
|
|
|
|
|
1-based here; usually .text). __end__ and other
|
|
|
|
|
contents of .endsection really have this happen.
|
|
|
|
|
FIXME: This seems somewhat dubious. */
|
|
|
|
|
current->target_index = 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
current->target_index = target_index++;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-19 02:11:19 +01:00
|
|
|
|
free (section_list);
|
1999-09-07 06:06:50 +02:00
|
|
|
|
}
|
|
|
|
|
#else /* ! COFF_IMAGE_WITH_PE */
|
|
|
|
|
{
|
|
|
|
|
/* Set the target_index field. */
|
|
|
|
|
target_index = 1;
|
|
|
|
|
for (current = abfd->sections; current != NULL; current = current->next)
|
|
|
|
|
current->target_index = target_index++;
|
|
|
|
|
}
|
|
|
|
|
#endif /* ! COFF_IMAGE_WITH_PE */
|
|
|
|
|
|
2010-01-18 08:21:46 +01:00
|
|
|
|
if (target_index >= 32768)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_too_big);
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%B: too many sections (%d)"), abfd, target_index);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
align_adjust = FALSE;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
for (current = abfd->sections;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
current != NULL;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
current = current->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
1999-09-07 06:06:50 +02:00
|
|
|
|
/* With PE we have to pad each section to be a multiple of its
|
|
|
|
|
page size too, and remember both sizes. */
|
|
|
|
|
if (coff_section_data (abfd, current) == NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = sizeof (struct coff_section_tdata);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
|
|
|
|
current->used_by_bfd = bfd_zalloc (abfd, amt);
|
1999-09-07 06:06:50 +02:00
|
|
|
|
if (current->used_by_bfd == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
1999-09-07 06:06:50 +02:00
|
|
|
|
if (pei_section_data (abfd, current) == NULL)
|
|
|
|
|
{
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = sizeof (struct pei_section_tdata);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
|
|
|
|
coff_section_data (abfd, current)->tdata = bfd_zalloc (abfd, amt);
|
1999-09-07 06:06:50 +02:00
|
|
|
|
if (coff_section_data (abfd, current)->tdata == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-09-07 06:06:50 +02:00
|
|
|
|
}
|
|
|
|
|
if (pei_section_data (abfd, current)->virt_size == 0)
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
pei_section_data (abfd, current)->virt_size = current->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
1999-09-07 06:06:50 +02:00
|
|
|
|
/* Only deal with sections which have contents. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!(current->flags & SEC_HAS_CONTENTS))
|
|
|
|
|
continue;
|
|
|
|
|
|
1999-09-07 06:06:50 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
/* Make sure we skip empty sections in a PE image. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
if (current->size == 0)
|
1999-09-07 06:06:50 +02:00
|
|
|
|
continue;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Align the sections in the file to the same boundary on
|
|
|
|
|
which they are aligned in virtual memory. I960 doesn't
|
|
|
|
|
do this (FIXME) so we can stay in sync with Intel. 960
|
2000-11-28 22:42:16 +01:00
|
|
|
|
doesn't yet page from files... */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef ALIGN_SECTIONS_IN_FILE
|
|
|
|
|
if ((abfd->flags & EXEC_P) != 0)
|
|
|
|
|
{
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Make sure this section is aligned on the right boundary - by
|
|
|
|
|
padding the previous section up if necessary. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
old_sofar = sofar;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2001-12-20 22:29:21 +01:00
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
/* AIX loader checks the text section alignment of (vma - filepos)
|
|
|
|
|
So even though the filepos may be aligned wrt the o_algntext, for
|
2002-12-20 23:41:13 +01:00
|
|
|
|
AIX executables, this check fails. This shows up when a native
|
2001-12-20 22:29:21 +01:00
|
|
|
|
AIX executable is stripped with gnu strip because the default vma
|
|
|
|
|
of native is 0x10000150 but default for gnu is 0x10000140. Gnu
|
2002-11-30 09:39:46 +01:00
|
|
|
|
stripped gnu excutable passes this check because the filepos is
|
2002-06-12 18:04:39 +02:00
|
|
|
|
0x0140. This problem also show up with 64 bit shared objects. The
|
|
|
|
|
data section must also be aligned. */
|
2002-11-30 09:39:46 +01:00
|
|
|
|
if (!strcmp (current->name, _TEXT)
|
|
|
|
|
|| !strcmp (current->name, _DATA))
|
2001-12-20 22:29:21 +01:00
|
|
|
|
{
|
|
|
|
|
bfd_vma pad;
|
|
|
|
|
bfd_vma align;
|
|
|
|
|
|
|
|
|
|
sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
|
|
|
|
|
|
|
|
|
|
align = 1 << current->alignment_power;
|
|
|
|
|
pad = abs (current->vma - sofar) % align;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
|
|
|
|
if (pad)
|
2001-12-20 22:29:21 +01:00
|
|
|
|
{
|
|
|
|
|
pad = align - pad;
|
|
|
|
|
sofar += pad;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
#else
|
|
|
|
|
{
|
|
|
|
|
sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (previous != NULL)
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
previous->size += sofar - old_sofar;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* In demand paged files the low order bits of the file offset
|
|
|
|
|
must match the low order bits of the virtual address. */
|
|
|
|
|
#ifdef COFF_PAGE_SIZE
|
|
|
|
|
if ((abfd->flags & D_PAGED) != 0
|
|
|
|
|
&& (current->flags & SEC_ALLOC) != 0)
|
2004-10-13 20:14:40 +02:00
|
|
|
|
sofar += (current->vma - (bfd_vma) sofar) % page_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
current->filepos = sofar;
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
1999-09-07 06:06:50 +02:00
|
|
|
|
/* Set the padded size. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
current->size = (current->size + page_size -1) & -page_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
sofar += current->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef ALIGN_SECTIONS_IN_FILE
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Make sure that this section is of the right size too. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((abfd->flags & EXEC_P) == 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_size_type old_size;
|
|
|
|
|
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
old_size = current->size;
|
|
|
|
|
current->size = BFD_ALIGN (current->size,
|
|
|
|
|
1 << current->alignment_power);
|
|
|
|
|
align_adjust = current->size != old_size;
|
|
|
|
|
sofar += current->size - old_size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
old_sofar = sofar;
|
|
|
|
|
sofar = BFD_ALIGN (sofar, 1 << current->alignment_power);
|
|
|
|
|
align_adjust = sofar != old_sofar;
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
current->size += sofar - old_sofar;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
/* For PE we need to make sure we pad out to the aligned
|
2008-08-05 05:03:46 +02:00
|
|
|
|
size, in case the caller only writes out data to the
|
|
|
|
|
unaligned size. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
if (pei_section_data (abfd, current)->virt_size < current->size)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
align_adjust = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef _LIB
|
|
|
|
|
/* Force .lib sections to start at zero. The vma is then
|
|
|
|
|
incremented in coff_set_section_contents. This is right for
|
|
|
|
|
SVR3.2. */
|
|
|
|
|
if (strcmp (current->name, _LIB) == 0)
|
|
|
|
|
bfd_set_section_vma (abfd, current, 0);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
previous = current;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* It is now safe to write to the output file. If we needed an
|
|
|
|
|
alignment adjustment for the last section, then make sure that
|
|
|
|
|
there is a byte at offset sofar. If there are no symbols and no
|
|
|
|
|
relocs, then nothing follows the last section. If we don't force
|
|
|
|
|
the last byte out, then the file may appear to be truncated. */
|
|
|
|
|
if (align_adjust)
|
|
|
|
|
{
|
|
|
|
|
bfd_byte b;
|
|
|
|
|
|
|
|
|
|
b = 0;
|
|
|
|
|
if (bfd_seek (abfd, sofar - 1, SEEK_SET) != 0
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|| bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make sure the relocations are aligned. We don't need to make
|
|
|
|
|
sure that this byte exists, because it will only matter if there
|
|
|
|
|
really are relocs. */
|
|
|
|
|
sofar = BFD_ALIGN (sofar, 1 << COFF_DEFAULT_SECTION_ALIGNMENT_POWER);
|
|
|
|
|
|
|
|
|
|
obj_relocbase (abfd) = sofar;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
abfd->output_has_begun = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-04-09 18:43:26 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
|
|
|
|
|
static unsigned int pelength;
|
|
|
|
|
static unsigned int peheader;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_read_word (bfd *abfd, unsigned int *value)
|
2002-04-09 18:43:26 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned char b[2];
|
|
|
|
|
int status;
|
|
|
|
|
|
|
|
|
|
status = bfd_bread (b, (bfd_size_type) 2, abfd);
|
|
|
|
|
if (status < 1)
|
|
|
|
|
{
|
|
|
|
|
*value = 0;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (status == 1)
|
|
|
|
|
*value = (unsigned int) b[0];
|
|
|
|
|
else
|
|
|
|
|
*value = (unsigned int) (b[0] + (b[1] << 8));
|
|
|
|
|
|
|
|
|
|
pelength += (unsigned int) status;
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static unsigned int
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_compute_checksum (bfd *abfd)
|
2002-04-09 18:43:26 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean more_data;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
file_ptr filepos;
|
|
|
|
|
unsigned int value;
|
|
|
|
|
unsigned int total;
|
|
|
|
|
|
|
|
|
|
total = 0;
|
|
|
|
|
pelength = 0;
|
|
|
|
|
filepos = (file_ptr) 0;
|
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
|
|
|
|
if (bfd_seek (abfd, filepos, SEEK_SET) != 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
more_data = coff_read_word (abfd, &value);
|
|
|
|
|
total += value;
|
|
|
|
|
total = 0xffff & (total + (total >> 0x10));
|
|
|
|
|
filepos += 2;
|
|
|
|
|
}
|
|
|
|
|
while (more_data);
|
|
|
|
|
|
|
|
|
|
return (0xffff & (total + (total >> 0x10)));
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_apply_checksum (bfd *abfd)
|
2002-04-09 18:43:26 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int computed;
|
|
|
|
|
unsigned int checksum = 0;
|
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, 0x3c, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
if (!coff_read_word (abfd, &peheader))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
checksum = 0;
|
|
|
|
|
bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
|
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, peheader, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
computed = coff_compute_checksum (abfd);
|
|
|
|
|
|
|
|
|
|
checksum = computed + pelength;
|
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, peheader + 0x58, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
bfd_bwrite (&checksum, (bfd_size_type) 4, abfd);
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif /* COFF_IMAGE_WITH_PE */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_write_object_contents (bfd * abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *current;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean hasrelocs = FALSE;
|
|
|
|
|
bfd_boolean haslinno = FALSE;
|
|
|
|
|
bfd_boolean hasdebug = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
file_ptr scn_base;
|
|
|
|
|
file_ptr reloc_base;
|
|
|
|
|
file_ptr lineno_base;
|
|
|
|
|
file_ptr sym_base;
|
2000-10-06 21:47:51 +02:00
|
|
|
|
unsigned long reloc_size = 0, reloc_count = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
unsigned long lnno_size = 0;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean long_section_names;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
asection *text_sec = NULL;
|
|
|
|
|
asection *data_sec = NULL;
|
|
|
|
|
asection *bss_sec = NULL;
|
|
|
|
|
struct internal_filehdr internal_f;
|
|
|
|
|
struct internal_aouthdr internal_a;
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
|
|
|
|
size_t string_size = STRING_SIZE_SIZE;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
bfd_set_error (bfd_error_system_call);
|
|
|
|
|
|
|
|
|
|
/* Make a pass through the symbol table to count line number entries and
|
2003-02-14 12:16:09 +01:00
|
|
|
|
put them into the correct asections. */
|
2000-01-14 00:55:21 +01:00
|
|
|
|
lnno_size = coff_count_linenumbers (abfd) * bfd_coff_linesz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-06-25 08:21:54 +02:00
|
|
|
|
if (! abfd->output_has_begun)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (! coff_compute_section_file_positions (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reloc_base = obj_relocbase (abfd);
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Work out the size of the reloc and linno areas. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (current = abfd->sections; current != NULL; current =
|
|
|
|
|
current->next)
|
2000-10-06 21:47:51 +02:00
|
|
|
|
{
|
|
|
|
|
#ifdef COFF_WITH_PE
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* We store the actual reloc count in the first reloc's addr. */
|
2002-07-08 07:34:08 +02:00
|
|
|
|
if (obj_pe (abfd) && current->reloc_count >= 0xffff)
|
2000-10-06 21:47:51 +02:00
|
|
|
|
reloc_count ++;
|
|
|
|
|
#endif
|
|
|
|
|
reloc_count += current->reloc_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reloc_size = reloc_count * bfd_coff_relsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
lineno_base = reloc_base + reloc_size;
|
|
|
|
|
sym_base = lineno_base + lnno_size;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Indicate in each section->line_filepos its actual file address. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (current = abfd->sections; current != NULL; current =
|
|
|
|
|
current->next)
|
|
|
|
|
{
|
|
|
|
|
if (current->lineno_count)
|
|
|
|
|
{
|
|
|
|
|
current->line_filepos = lineno_base;
|
|
|
|
|
current->moving_line_filepos = lineno_base;
|
2000-01-14 00:55:21 +01:00
|
|
|
|
lineno_base += current->lineno_count * bfd_coff_linesz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-04-21 09:45:39 +02:00
|
|
|
|
current->line_filepos = 0;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (current->reloc_count)
|
|
|
|
|
{
|
|
|
|
|
current->rel_filepos = reloc_base;
|
2000-01-14 00:55:21 +01:00
|
|
|
|
reloc_base += current->reloc_count * bfd_coff_relsz (abfd);
|
2000-10-06 21:47:51 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Extra reloc to hold real count. */
|
2002-07-08 07:34:08 +02:00
|
|
|
|
if (obj_pe (abfd) && current->reloc_count >= 0xffff)
|
2000-10-06 21:47:51 +02:00
|
|
|
|
reloc_base += bfd_coff_relsz (abfd);
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
else
|
2005-04-21 09:45:39 +02:00
|
|
|
|
current->rel_filepos = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Write section headers to the file. */
|
|
|
|
|
internal_f.f_nscns = 0;
|
|
|
|
|
|
|
|
|
|
if ((abfd->flags & EXEC_P) != 0)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
scn_base = bfd_coff_filhsz (abfd) + bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
2000-01-14 00:55:21 +01:00
|
|
|
|
scn_base = bfd_coff_filhsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#ifndef XCOFF64
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (xcoff_data (abfd)->full_aouthdr)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
scn_base += bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
scn_base += SMALL_AOUTSZ;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (bfd_seek (abfd, scn_base, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
long_section_names = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (current = abfd->sections;
|
|
|
|
|
current != NULL;
|
|
|
|
|
current = current->next)
|
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr section;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
bfd_boolean is_reloc_section = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
2009-06-25 15:39:27 +02:00
|
|
|
|
if (strcmp (current->name, DOT_RELOC) == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
is_reloc_section = TRUE;
|
|
|
|
|
hasrelocs = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
pe_data (abfd)->has_reloc_section = 1;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
internal_f.f_nscns++;
|
|
|
|
|
|
|
|
|
|
strncpy (section.s_name, current->name, SCNNMLEN);
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
|
|
|
|
/* Handle long section names as in PE. This must be compatible
|
2008-08-05 05:03:46 +02:00
|
|
|
|
with the code in coff_write_symbols and _bfd_coff_final_link. */
|
2009-02-18 19:23:08 +01:00
|
|
|
|
if (bfd_coff_long_section_names (abfd))
|
|
|
|
|
{
|
|
|
|
|
size_t len;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
len = strlen (current->name);
|
|
|
|
|
if (len > SCNNMLEN)
|
|
|
|
|
{
|
2009-02-18 19:38:06 +01:00
|
|
|
|
/* The s_name field is defined to be NUL-padded but need not be
|
|
|
|
|
NUL-terminated. We use a temporary buffer so that we can still
|
|
|
|
|
sprintf all eight chars without splatting a terminating NUL
|
|
|
|
|
over the first byte of the following member (s_paddr). */
|
|
|
|
|
char s_name_buf[SCNNMLEN + 1];
|
|
|
|
|
|
|
|
|
|
/* An inherent limitation of the /nnnnnnn notation used to indicate
|
|
|
|
|
the offset of the long name in the string table is that we
|
|
|
|
|
cannot address entries beyone the ten million byte boundary. */
|
|
|
|
|
if (string_size >= 10000000)
|
|
|
|
|
{
|
|
|
|
|
bfd_set_error (bfd_error_file_too_big);
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%B: section %s: string table overflow at offset %ld"),
|
|
|
|
|
abfd, current->name, string_size);
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* snprintf not strictly necessary now we've verified the value
|
|
|
|
|
has less than eight ASCII digits, but never mind. */
|
|
|
|
|
snprintf (s_name_buf, SCNNMLEN + 1, "/%lu", (unsigned long) string_size);
|
|
|
|
|
/* Then strncpy takes care of any padding for us. */
|
|
|
|
|
strncpy (section.s_name, s_name_buf, SCNNMLEN);
|
2009-02-18 19:23:08 +01:00
|
|
|
|
string_size += len + 1;
|
|
|
|
|
long_section_names = TRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef _LIB
|
|
|
|
|
/* Always set s_vaddr of .lib to 0. This is right for SVR3.2
|
|
|
|
|
Ian Taylor <ian@cygnus.com>. */
|
|
|
|
|
if (strcmp (current->name, _LIB) == 0)
|
|
|
|
|
section.s_vaddr = 0;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
section.s_vaddr = current->vma;
|
|
|
|
|
section.s_paddr = current->lma;
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
section.s_size = current->size;
|
2000-04-18 04:21:27 +02:00
|
|
|
|
#ifdef coff_get_section_load_page
|
2000-11-28 22:42:16 +01:00
|
|
|
|
section.s_page = coff_get_section_load_page (current);
|
2008-12-23 11:59:56 +01:00
|
|
|
|
#else
|
|
|
|
|
section.s_page = 0;
|
2000-04-18 04:21:27 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
section.s_paddr = 0;
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
/* Reminder: s_paddr holds the virtual size of the section. */
|
|
|
|
|
if (coff_section_data (abfd, current) != NULL
|
|
|
|
|
&& pei_section_data (abfd, current) != NULL)
|
|
|
|
|
section.s_paddr = pei_section_data (abfd, current)->virt_size;
|
|
|
|
|
else
|
|
|
|
|
section.s_paddr = 0;
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* If this section has no size or is unloadable then the scnptr
|
|
|
|
|
will be 0 too. */
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
if (current->size == 0
|
|
|
|
|
|| (current->flags & (SEC_LOAD | SEC_HAS_CONTENTS)) == 0)
|
2003-02-14 12:16:09 +01:00
|
|
|
|
section.s_scnptr = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
2003-02-14 12:16:09 +01:00
|
|
|
|
section.s_scnptr = current->filepos;
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
section.s_relptr = current->rel_filepos;
|
|
|
|
|
section.s_lnnoptr = current->line_filepos;
|
|
|
|
|
section.s_nreloc = current->reloc_count;
|
|
|
|
|
section.s_nlnno = current->lineno_count;
|
1999-09-14 01:42:43 +02:00
|
|
|
|
#ifndef COFF_IMAGE_WITH_PE
|
|
|
|
|
/* In PEI, relocs come in the .reloc section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (current->reloc_count != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
hasrelocs = TRUE;
|
1999-09-14 01:42:43 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (current->lineno_count != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
haslinno = TRUE;
|
1999-09-12 00:33:45 +02:00
|
|
|
|
if ((current->flags & SEC_DEBUGGING) != 0
|
|
|
|
|
&& ! is_reloc_section)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
hasdebug = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-06-19 03:22:44 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#ifndef XCOFF64
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* Indicate the use of an XCOFF overflow section header. */
|
|
|
|
|
if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
|
|
|
|
|
{
|
|
|
|
|
section.s_nreloc = 0xffff;
|
|
|
|
|
section.s_nlnno = 0xffff;
|
|
|
|
|
}
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
section.s_flags = sec_to_styp_flags (current->name, current->flags);
|
|
|
|
|
|
|
|
|
|
if (!strcmp (current->name, _TEXT))
|
2003-02-14 12:16:09 +01:00
|
|
|
|
text_sec = current;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (!strcmp (current->name, _DATA))
|
2003-02-14 12:16:09 +01:00
|
|
|
|
data_sec = current;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else if (!strcmp (current->name, _BSS))
|
2003-02-14 12:16:09 +01:00
|
|
|
|
bss_sec = current;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef I960
|
|
|
|
|
section.s_align = (current->alignment_power
|
|
|
|
|
? 1 << current->alignment_power
|
|
|
|
|
: 0);
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#endif
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#ifdef TIC80COFF
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* TI COFF puts the alignment power in bits 8-11 of the flags. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
section.s_flags |= (current->alignment_power & 0xF) << 8;
|
|
|
|
|
#endif
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#ifdef COFF_ENCODE_ALIGNMENT
|
|
|
|
|
COFF_ENCODE_ALIGNMENT(section, current->alignment_power);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
1999-08-18 08:00:13 +02:00
|
|
|
|
/* Suppress output of the sections if they are null. ld
|
|
|
|
|
includes the bss and data sections even if there is no size
|
|
|
|
|
assigned to them. NT loader doesn't like it if these section
|
|
|
|
|
headers are included if the sections themselves are not
|
|
|
|
|
needed. See also coff_compute_section_file_positions. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (section.s_size == 0)
|
|
|
|
|
internal_f.f_nscns--;
|
|
|
|
|
else
|
|
|
|
|
#endif
|
|
|
|
|
{
|
|
|
|
|
SCNHDR buff;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt = bfd_coff_scnhsz (abfd);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (coff_swap_scnhdr_out (abfd, §ion, &buff) == 0
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|| bfd_bwrite (& buff, amt, abfd) != amt)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
/* PE stores COMDAT section information in the symbol table. If
|
2008-08-05 05:03:46 +02:00
|
|
|
|
this section is supposed to have some COMDAT info, track down
|
|
|
|
|
the symbol in the symbol table and modify it. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((current->flags & SEC_LINK_ONCE) != 0)
|
|
|
|
|
{
|
|
|
|
|
unsigned int i, count;
|
|
|
|
|
asymbol **psym;
|
|
|
|
|
coff_symbol_type *csym = NULL;
|
|
|
|
|
asymbol **psymsec;
|
|
|
|
|
|
|
|
|
|
psymsec = NULL;
|
|
|
|
|
count = bfd_get_symcount (abfd);
|
|
|
|
|
for (i = 0, psym = abfd->outsymbols; i < count; i++, psym++)
|
|
|
|
|
{
|
|
|
|
|
if ((*psym)->section != current)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Remember the location of the first symbol in this
|
2008-08-05 05:03:46 +02:00
|
|
|
|
section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (psymsec == NULL)
|
|
|
|
|
psymsec = psym;
|
|
|
|
|
|
|
|
|
|
/* See if this is the section symbol. */
|
|
|
|
|
if (strcmp ((*psym)->name, current->name) == 0)
|
|
|
|
|
{
|
|
|
|
|
csym = coff_symbol_from (abfd, *psym);
|
|
|
|
|
if (csym == NULL
|
|
|
|
|
|| csym->native == NULL
|
|
|
|
|
|| csym->native->u.syment.n_numaux < 1
|
|
|
|
|
|| csym->native->u.syment.n_sclass != C_STAT
|
|
|
|
|
|| csym->native->u.syment.n_type != T_NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
/* Here *PSYM is the section symbol for CURRENT. */
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Did we find it?
|
|
|
|
|
Note that we might not if we're converting the file from
|
|
|
|
|
some other object file format. */
|
|
|
|
|
if (i < count)
|
|
|
|
|
{
|
|
|
|
|
combined_entry_type *aux;
|
|
|
|
|
|
|
|
|
|
/* We don't touch the x_checksum field. The
|
|
|
|
|
x_associated field is not currently supported. */
|
|
|
|
|
|
|
|
|
|
aux = csym->native + 1;
|
|
|
|
|
switch (current->flags & SEC_LINK_DUPLICATES)
|
|
|
|
|
{
|
|
|
|
|
case SEC_LINK_DUPLICATES_DISCARD:
|
|
|
|
|
aux->u.auxent.x_scn.x_comdat = IMAGE_COMDAT_SELECT_ANY;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_ONE_ONLY:
|
|
|
|
|
aux->u.auxent.x_scn.x_comdat =
|
|
|
|
|
IMAGE_COMDAT_SELECT_NODUPLICATES;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_SAME_SIZE:
|
|
|
|
|
aux->u.auxent.x_scn.x_comdat =
|
|
|
|
|
IMAGE_COMDAT_SELECT_SAME_SIZE;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case SEC_LINK_DUPLICATES_SAME_CONTENTS:
|
|
|
|
|
aux->u.auxent.x_scn.x_comdat =
|
|
|
|
|
IMAGE_COMDAT_SELECT_EXACT_MATCH;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The COMDAT symbol must be the first symbol from this
|
2008-08-05 05:03:46 +02:00
|
|
|
|
section in the symbol table. In order to make this
|
|
|
|
|
work, we move the COMDAT symbol before the first
|
|
|
|
|
symbol we found in the search above. It's OK to
|
|
|
|
|
rearrange the symbol table at this point, because
|
|
|
|
|
coff_renumber_symbols is going to rearrange it
|
|
|
|
|
further and fix up all the aux entries. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (psym != psymsec)
|
|
|
|
|
{
|
|
|
|
|
asymbol *hold;
|
|
|
|
|
asymbol **pcopy;
|
|
|
|
|
|
|
|
|
|
hold = *psym;
|
|
|
|
|
for (pcopy = psym; pcopy > psymsec; pcopy--)
|
|
|
|
|
pcopy[0] = pcopy[-1];
|
|
|
|
|
*psymsec = hold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif /* COFF_WITH_PE */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#ifndef XCOFF64
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* XCOFF handles overflows in the reloc and line number count fields
|
|
|
|
|
by creating a new section header to hold the correct values. */
|
|
|
|
|
for (current = abfd->sections; current != NULL; current = current->next)
|
|
|
|
|
{
|
|
|
|
|
if (current->reloc_count >= 0xffff || current->lineno_count >= 0xffff)
|
|
|
|
|
{
|
|
|
|
|
struct internal_scnhdr scnhdr;
|
|
|
|
|
SCNHDR buff;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
internal_f.f_nscns++;
|
|
|
|
|
strncpy (&(scnhdr.s_name[0]), current->name, 8);
|
|
|
|
|
scnhdr.s_paddr = current->reloc_count;
|
|
|
|
|
scnhdr.s_vaddr = current->lineno_count;
|
|
|
|
|
scnhdr.s_size = 0;
|
|
|
|
|
scnhdr.s_scnptr = 0;
|
|
|
|
|
scnhdr.s_relptr = current->rel_filepos;
|
|
|
|
|
scnhdr.s_lnnoptr = current->line_filepos;
|
|
|
|
|
scnhdr.s_nreloc = current->target_index;
|
|
|
|
|
scnhdr.s_nlnno = current->target_index;
|
|
|
|
|
scnhdr.s_flags = STYP_OVRFLO;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = bfd_coff_scnhsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (coff_swap_scnhdr_out (abfd, &scnhdr, &buff) == 0
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|| bfd_bwrite (& buff, amt, abfd) != amt)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-05-24 22:50:50 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* OK, now set up the filehdr... */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/* Don't include the internal abs section in the section count */
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* We will NOT put a fucking timestamp in the header here. Every time you
|
1999-05-03 09:29:11 +02:00
|
|
|
|
put it back, I will come in and take it out again. I'm sorry. This
|
|
|
|
|
field does not belong here. We fill it with a 0 so it compares the
|
2003-02-14 12:16:09 +01:00
|
|
|
|
same but is not a reasonable time. -- gnu@cygnus.com */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_f.f_timdat = 0;
|
|
|
|
|
internal_f.f_flags = 0;
|
|
|
|
|
|
|
|
|
|
if (abfd->flags & EXEC_P)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
internal_f.f_opthdr = 0;
|
|
|
|
|
#ifdef RS6000COFF_C
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#ifndef XCOFF64
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (xcoff_data (abfd)->full_aouthdr)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
internal_f.f_opthdr = bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
internal_f.f_opthdr = SMALL_AOUTSZ;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!hasrelocs)
|
|
|
|
|
internal_f.f_flags |= F_RELFLG;
|
|
|
|
|
if (!haslinno)
|
|
|
|
|
internal_f.f_flags |= F_LNNO;
|
|
|
|
|
if (abfd->flags & EXEC_P)
|
|
|
|
|
internal_f.f_flags |= F_EXEC;
|
1999-09-12 00:33:45 +02:00
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
if (! hasdebug)
|
|
|
|
|
internal_f.f_flags |= IMAGE_FILE_DEBUG_STRIPPED;
|
2004-05-07 17:08:49 +02:00
|
|
|
|
if (pe_data (abfd)->real_flags & IMAGE_FILE_LARGE_ADDRESS_AWARE)
|
|
|
|
|
internal_f.f_flags |= IMAGE_FILE_LARGE_ADDRESS_AWARE;
|
1999-09-12 00:33:45 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#ifndef COFF_WITH_pex64
|
2003-07-12 12:55:05 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
internal_f.f_flags |= IMAGE_FILE_32BIT_MACHINE;
|
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (bfd_little_endian (abfd))
|
|
|
|
|
internal_f.f_flags |= F_AR32WR;
|
|
|
|
|
else
|
|
|
|
|
internal_f.f_flags |= F_AR32W;
|
1999-09-07 05:00:32 +02:00
|
|
|
|
#endif
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#ifdef TI_TARGET_ID
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Target id is used in TI COFF v1 and later; COFF0 won't use this field,
|
|
|
|
|
but it doesn't hurt to set it internally. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
internal_f.f_target_id = TI_TARGET_ID;
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef TIC80_TARGET_ID
|
|
|
|
|
internal_f.f_target_id = TIC80_TARGET_ID;
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* FIXME, should do something about the other byte orders and
|
|
|
|
|
architectures. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
if ((abfd->flags & DYNAMIC) != 0)
|
|
|
|
|
internal_f.f_flags |= F_SHROBJ;
|
|
|
|
|
if (bfd_get_section_by_name (abfd, _LOADER) != NULL)
|
|
|
|
|
internal_f.f_flags |= F_DYNLOAD;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
memset (&internal_a, 0, sizeof internal_a);
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Set up architecture-dependent stuff. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
unsigned int magic = 0;
|
|
|
|
|
unsigned short flags = 0;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_set_flags (abfd, &magic, &flags);
|
|
|
|
|
internal_f.f_magic = magic;
|
|
|
|
|
internal_f.f_flags |= flags;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* ...and the "opt"hdr... */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#ifdef TICOFF_AOUT_MAGIC
|
|
|
|
|
internal_a.magic = TICOFF_AOUT_MAGIC;
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef TIC80COFF
|
|
|
|
|
internal_a.magic = TIC80_ARCH_MAGIC;
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#endif /* TIC80 */
|
|
|
|
|
#ifdef I860
|
|
|
|
|
/* FIXME: What are the a.out magic numbers for the i860? */
|
|
|
|
|
internal_a.magic = 0;
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#endif /* I860 */
|
|
|
|
|
#ifdef I960
|
|
|
|
|
internal_a.magic = (magic == I960ROMAGIC ? NMAGIC : OMAGIC);
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#endif /* I960 */
|
|
|
|
|
#if M88
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = PAGEMAGICBCS;
|
|
|
|
|
#endif /* M88 */
|
|
|
|
|
|
|
|
|
|
#if APOLLO_M68
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = APOLLO_COFF_VERSION_NUMBER;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(M68) || defined(WE32K) || defined(M68K)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#if defined(LYNXOS)
|
|
|
|
|
internal_a.magic = LYNXCOFFMAGIC;
|
|
|
|
|
#else
|
|
|
|
|
#if defined(TARG_AUX)
|
|
|
|
|
internal_a.magic = (abfd->flags & D_PAGED ? PAGEMAGICPEXECPAGED :
|
|
|
|
|
abfd->flags & WP_TEXT ? PAGEMAGICPEXECSWAPPED :
|
|
|
|
|
PAGEMAGICEXECSWAPPED);
|
|
|
|
|
#else
|
|
|
|
|
#if defined (PAGEMAGICPEXECPAGED)
|
|
|
|
|
internal_a.magic = PAGEMAGICPEXECPAGED;
|
|
|
|
|
#endif
|
|
|
|
|
#endif /* TARG_AUX */
|
|
|
|
|
#endif /* LYNXOS */
|
|
|
|
|
#endif /* M68 || WE32K || M68K */
|
|
|
|
|
|
|
|
|
|
#if defined(ARM)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = ZMAGIC;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#if defined(PPC_PE)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined MCORE_PE
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = IMAGE_NT_OPTIONAL_HDR_MAGIC;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#if defined(I386)
|
|
|
|
|
#define __A_MAGIC_SET__
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#if defined LYNXOS
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_a.magic = LYNXCOFFMAGIC;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#elif defined AMD64
|
|
|
|
|
internal_a.magic = IMAGE_NT_OPTIONAL_HDR64_MAGIC;
|
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_a.magic = ZMAGIC;
|
2006-09-20 13:35:11 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif /* I386 */
|
|
|
|
|
|
2000-04-18 06:03:16 +02:00
|
|
|
|
#if defined(IA64)
|
|
|
|
|
#define __A_MAGIC_SET__
|
2006-09-05 20:56:50 +02:00
|
|
|
|
internal_a.magic = PE32PMAGIC;
|
2000-04-18 06:03:16 +02:00
|
|
|
|
#endif /* IA64 */
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#if defined(SPARC)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
#if defined(LYNXOS)
|
|
|
|
|
internal_a.magic = LYNXCOFFMAGIC;
|
|
|
|
|
#endif /* LYNXOS */
|
|
|
|
|
#endif /* SPARC */
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = (abfd->flags & D_PAGED) ? RS6K_AOUTHDR_ZMAGIC :
|
|
|
|
|
(abfd->flags & WP_TEXT) ? RS6K_AOUTHDR_NMAGIC :
|
|
|
|
|
RS6K_AOUTHDR_OMAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-02-28 19:56:11 +01:00
|
|
|
|
#if defined(SH) && defined(COFF_WITH_PE)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = SH_PE_MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if defined(MIPS) && defined(COFF_WITH_PE)
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = MIPS_PE_MAGIC;
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-01-31 18:33:08 +01:00
|
|
|
|
#ifdef OR32
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = NMAGIC; /* Assume separate i/d. */
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-11-08 14:17:43 +01:00
|
|
|
|
#ifdef MAXQ20MAGIC
|
|
|
|
|
#define __A_MAGIC_SET__
|
|
|
|
|
internal_a.magic = MAXQ20MAGIC;
|
|
|
|
|
#endif
|
2008-08-05 05:03:46 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef __A_MAGIC_SET__
|
|
|
|
|
#include "Your aouthdr magic number is not being set!"
|
|
|
|
|
#else
|
|
|
|
|
#undef __A_MAGIC_SET__
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIXME: Does anybody ever set this to another value? */
|
|
|
|
|
internal_a.vstamp = 0;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Now should write relocs, strings, syms. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
obj_sym_filepos (abfd) = sym_base;
|
|
|
|
|
|
|
|
|
|
if (bfd_get_symcount (abfd) != 0)
|
|
|
|
|
{
|
|
|
|
|
int firstundef;
|
* aout-arm.c, aout-target.h, aoutx.h, archive.c, armnetbsd.c,
bfd-in.h, bfdio.c, coff-alpha.c, coff-arm.c, coff-h8300.c,
coff-i860.c, coff-mcore.c, coff-or32.c, coff-ppc.c, coff-sh.c,
coff-sparc.c, coffcode.h, coffgen.c, cofflink.c, cpu-cris.c,
cpu-h8500.c, cpu-ns32k.c, ecoff.c, ecofflink.c, elf.c,
elf32-dlx.c, elf32-fr30.c, elf32-frv.c, elf32-hppa.c,
elf32-i860.c, elf32-ip2k.c, elf32-m32r.c, elf32-sh.c,
elf32-v850.c, elf64-mips.c, elf64-sparc.c, elflink.c,
i386aout.c, i386msdos.c, i386os9k.c, ieee.c, mach-o.c,
nlm32-sparc.c, oasys.c, opncls.c, pdp11.c, pe-mips.c, peXXigen.c,
pef.c, peicode.h, reloc.c, riscix.c, section.c, simple.c, som.c,
sparclynx.c, targets.c, vms-misc.c, vms-tir.c, xsym.c, doc/chew.c,
hosts/delta68.h, hosts/vaxbsd.h: Remove #if 0'd code
throughout. Similarly, collapse #if 1'd code.
2005-02-01 00:13:34 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!coff_renumber_symbols (abfd, &firstundef))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_mangle_symbols (abfd);
|
|
|
|
|
if (! coff_write_symbols (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! coff_write_linenumbers (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! coff_write_relocs (abfd, firstundef))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#ifdef COFF_LONG_SECTION_NAMES
|
2000-11-27 13:45:17 +01:00
|
|
|
|
else if (long_section_names && ! obj_coff_strings_written (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
/* If we have long section names we have to write out the string
|
2008-08-05 05:03:46 +02:00
|
|
|
|
table even if there are no symbols. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (! coff_write_symbols (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
#ifdef PPC_PE
|
|
|
|
|
else if ((abfd->flags & EXEC_P) != 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_byte b;
|
|
|
|
|
|
|
|
|
|
/* PowerPC PE appears to require that all executable files be
|
2008-08-05 05:03:46 +02:00
|
|
|
|
rounded up to the page size. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
b = 0;
|
|
|
|
|
if (bfd_seek (abfd,
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
(file_ptr) BFD_ALIGN (sym_base, COFF_PAGE_SIZE) - 1,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
SEEK_SET) != 0
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|| bfd_bwrite (&b, (bfd_size_type) 1, abfd) != 1)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* If bfd_get_symcount (abfd) != 0, then we are not using the COFF
|
|
|
|
|
backend linker, and obj_raw_syment_count is not valid until after
|
|
|
|
|
coff_write_symbols is called. */
|
|
|
|
|
if (obj_raw_syment_count (abfd) != 0)
|
|
|
|
|
{
|
|
|
|
|
internal_f.f_symptr = sym_base;
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
/* AIX appears to require that F_RELFLG not be set if there are
|
2008-08-05 05:03:46 +02:00
|
|
|
|
local symbols but no relocations. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_f.f_flags &=~ F_RELFLG;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (long_section_names)
|
|
|
|
|
internal_f.f_symptr = sym_base;
|
|
|
|
|
else
|
|
|
|
|
internal_f.f_symptr = 0;
|
|
|
|
|
internal_f.f_flags |= F_LSYMS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (text_sec)
|
|
|
|
|
{
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
internal_a.tsize = text_sec->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_a.text_start = internal_a.tsize ? text_sec->vma : 0;
|
|
|
|
|
}
|
|
|
|
|
if (data_sec)
|
|
|
|
|
{
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
internal_a.dsize = data_sec->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_a.data_start = internal_a.dsize ? data_sec->vma : 0;
|
|
|
|
|
}
|
|
|
|
|
if (bss_sec)
|
|
|
|
|
{
|
bfd/
* section.c (struct sec): Rename "_cooked_size" to "size".
Rename "_raw_size" to "rawsize".
(STD_SECTION): Adjust comments.
(bfd_set_section_size, bfd_get_section_contents): Use size.
(bfd_malloc_and_get_section): New function.
* bfd-in.h (bfd_section_size, bfd_get_section_size): Use size.
* coff-sh.c (sh_relax_section): Alloc coff_section_data struct early.
Correctly free reloc and contents memory.
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame): Delete FIXME
and fake CIE now that we can shink section size to zero.
(_bfd_elf_write_section_eh_frame): Likewise..
* elf32-ppc.c (ppc_elf_relax_section): Delay reading section contents.
* elf-m10300.c (mn10300_elf_final_link_relocate): Don't use
_bfd_stab_section_offset. Use _bfd_elf_section_offset.
* stabs.c (_bfd_stab_section_offset_): Remove unused args and
unneeded indirection.
* elf.c (_bfd_elf_section_offset): .. and update call.
* libbfd-in.h (_bfd_stab_section_offset): Update prototype.
* libbfd.h: Regenerate.
* bfd-in2.h: Regenerate.
Replace occurrences of "_raw_size" and "_cooked_size" in most places
with "size". Set new "rawsize" for stabs, eh_frame, and SEC_MERGE
sections. Use "rawsize", if non-zero, for bfd_get_section_contents
calls if the section might be a stabs, eh_frame, or SEC_MERGE section.
Similarly use "rawsize", if non-zero, in reloc functions to validate
reloc addresses. Use new bfd_malloc_and_get_section in most places
where bfd_get_section_contents was called. Expand all occurrences of
bfd_section_size and bfd_get_section_size. Rename "raw_size" var in
grok_prstatus and similar functions to "size".
* aix386-core.c (aix386_core_file_p): ..
* aix5ppc-core.c (xcoff64_core_p): ..
* aout-adobe.c (aout_adobe_callback, aout_adobe_write_object_contents,
aout_adobe_set_section_contents): ..
* aout-target.h (callback): ..
* aout-tic30.c (tic30_aout_callback, tic30_aout_final_link_relocate,
MY_bfd_final_link): ..
* aoutf1.h (sunos4_core_file_p): ..
* aoutx.h (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, translate_from_native_sym_flags,
final_link, aout_link_input_section): ..
* binary.c (binary_object_p, binary_canonicalize_symtab,
binary_set_section_contents): ..
* bout.c (b_out_callback, b_out_write_object_contents,
b_out_set_section_contents, b_out_bfd_relax_section,
b_out_bfd_get_relocated_section_contents): ..
* cisco-core.c (cisco_core_file_validate): ..
* coff-alpha.c (alpha_ecoff_object_p,
alpha_ecoff_get_relocated_section_conten, alpha_relocate_section): ..
* coff-arm.c (coff_arm_relocate_section,
bfd_arm_allocate_interworking_sections): ..
* coff-h8300.c (h8300_reloc16_extra_cases,
h8300_bfd_link_add_symbols): ..
* coff-mips.c (mips_refhi_reloc, mips_gprel_reloc): ..
* coff-ppc.c (coff_ppc_relocate_section, ppc_allocate_toc_section,
ppc_bfd_coff_final_link): ..
* coff-rs6000.c (xcoff_reloc_type_br, xcoff_ppc_relocate_section): ..
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_align_loads, sh_coff_get_relocated_section_contents): ..
* coff64-rs6000.c (xcoff64_write_object_contents,
xcoff64_reloc_type_br, xcoff64_ppc_relocate_section): ..
* coffcode.h (coff_compute_section_file_positions,
coff_write_object_contents): ..
* coffgen.c (make_a_section_from_file, coff_write_symbols,
coff_section_symbol, build_debug_section): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_final_link,
process_embedded_commands, _bfd_coff_link_input_bfd,
_bfd_coff_write_global_sym): ..
* cpu-arm.c (bfd_arm_update_notes, bfd_arm_get_mach_from_notes): ..
* cpu-ns32k.c (do_ns32k_reloc, _bfd_ns32k_final_link_relocate): ..
* dwarf1.c (parse_line_table, _bfd_dwarf1_find_nearest_line): ..
* dwarf2.c (read_indirect_string, read_abbrevs, decode_line_info,
_bfd_dwarf2_find_nearest_line): ..
* ecoff.c (bfd_debug_section, ecoff_set_symbol_info,
ecoff_compute_section_file_positions,
_bfd_ecoff_write_object_contents, ecoff_indirect_link_order): ..
* elf-eh-frame.c (_bfd_elf_discard_section_eh_frame,
_bfd_elf_discard_section_eh_frame_hdr,
_bfd_elf_maybe_strip_eh_frame_hdr, _bfd_elf_eh_frame_section_offset,
_bfd_elf_write_section_eh_frame,
_bfd_elf_write_section_eh_frame_hdr): ..
* elf-hppa.h (elf_hppa_sort_unwind): ..
* elf-m10200.c (mn10200_elf_relax_section,
mn10200_elf_relax_delete_bytes,
mn10200_elf_get_relocated_section_contents): ..
* elf-m10300.c (_bfd_mn10300_elf_create_got_section,
mn10300_elf_check_relocs, mn10300_elf_relax_section,
mn10300_elf_relax_delete_bytes,
mn10300_elf_get_relocated_section_contents,
_bfd_mn10300_elf_adjust_dynamic_symbol,
_bfd_mn10300_elf_discard_copies,
_bfd_mn10300_elf_size_dynamic_sections,
_bfd_mn10300_elf_finish_dynamic_sections): ..
* elf.c (_bfd_elf_print_private_bfd_data, bfd_elf_get_bfd_needed_list,
_bfd_elf_make_section_from_phdr, elf_fake_sections,
bfd_elf_set_group_contents, map_sections_to_segments,
elf_sort_sections, assign_file_positions_for_segments,
SECTION_SIZE, copy_private_bfd_data,
_bfd_elf_get_dynamic_reloc_upper_bound,
_bfd_elf_canonicalize_dynamic_reloc, elfcore_maybe_make_sect,
_bfd_elfcore_make_pseudosection, elfcore_grok_prstatus,
elfcore_grok_lwpstatus, elfcore_grok_win32pstatus,
elfcore_grok_note, elfcore_grok_nto_status, elfcore_grok_nto_gregs,
_bfd_elf_rel_local_sym, _bfd_elf_get_synthetic_symtab): ..
* elf32-arm.h (bfd_elf32_arm_allocate_interworking_sect,
bfd_elf32_arm_process_before_allocation,
elf32_arm_adjust_dynamic_symbol, allocate_dynrelocs,
elf32_arm_size_dynamic_sections, elf32_arm_finish_dynamic_sections,
elf32_arm_write_section): ..
* elf32-cris.c (cris_elf_grok_prstatus,
elf_cris_finish_dynamic_sections, cris_elf_gc_sweep_hook,
elf_cris_adjust_gotplt_to_got, elf_cris_adjust_dynamic_symbol,
cris_elf_check_relocs, elf_cris_size_dynamic_sections,
elf_cris_discard_excess_dso_dynamics,
elf_cris_discard_excess_program_dynamics): ..
* elf32-d30v.c (bfd_elf_d30v_reloc, bfd_elf_d30v_reloc_21): ..
* elf32-dlx.c (_bfd_dlx_elf_hi16_reloc): ..
* elf32-frv.c (_frvfdpic_add_dyn_reloc, _frvfdpic_add_rofixup,
_frv_create_got_section, _frvfdpic_assign_plt_entries,
elf32_frvfdpic_size_dynamic_sections,
elf32_frvfdpic_modify_segment_map,
elf32_frvfdpic_finish_dynamic_sections): ..
* elf32-h8300.c (elf32_h8_relax_section, elf32_h8_relax_delete_bytes,
elf32_h8_get_relocated_section_contents): ..
* elf32-hppa.c (hppa_build_one_stub, hppa_size_one_stub,
elf32_hppa_adjust_dynamic_symbol, allocate_plt_static,
allocate_dynrelocs, elf32_hppa_size_dynamic_sections, group_sections,
elf32_hppa_size_stubs, elf32_hppa_set_gp, elf32_hppa_build_stubs,
elf32_hppa_finish_dynamic_sections): ..
* elf32-i370.c (i370_elf_adjust_dynamic_symbol,
i370_elf_size_dynamic_sections, i370_elf_check_relocs,
i370_elf_finish_dynamic_sections): ..
* elf32-i386.c (elf_i386_grok_prstatus, elf_i386_adjust_dynamic_symbol,
allocate_dynrelocs, elf_i386_size_dynamic_sections,
elf_i386_relocate_section, elf_i386_finish_dynamic_sections): ..
* elf32-i860.c (i860_howto_pc26_reloc, i860_howto_pc16_reloc,
i860_howto_highadj_reloc, i860_howto_splitn_reloc): ..
* elf32-ip2k.c (ip2k_is_switch_table_128,
ip2k_relax_switch_table_128, ip2k_is_switch_table_256,
ip2k_relax_switch_table_256, ip2k_elf_relax_section,
adjust_all_relocations, ip2k_elf_relax_delete_bytes): ..
* elf32-m32r.c (m32r_elf_do_10_pcrel_reloc, m32r_elf_hi16_reloc,
m32r_elf_generic_reloc, m32r_elf_adjust_dynamic_symbol,
allocate_dynrelocs, m32r_elf_size_dynamic_sections,
m32r_elf_relocate_section, m32r_elf_finish_dynamic_sections,
m32r_elf_relax_section, m32r_elf_relax_delete_bytes,
m32r_elf_get_relocated_section_contents): ..
* elf32-m68hc11.c (m68hc11_elf_build_one_stub,
m68hc11_elf_size_one_stub, m68hc11_elf_relax_section,
m68hc11_elf_relax_delete_bytes): ..
* elf32-m68hc12.c (m68hc12_elf_build_one_stub,
m68hc12_elf_size_one_stub): ..
* elf32-m68hc1x.c (elf32_m68hc11_size_stubs,
elf32_m68hc11_build_stubs, m68hc11_elf_special_reloc): ..
* elf32-m68k.c (elf_m68k_check_relocs, elf_m68k_gc_sweep_hook,
elf_m68k_adjust_dynamic_symbol, elf_m68k_size_dynamic_sections,
elf_m68k_discard_copies, elf_m68k_finish_dynamic_sections): ..
* elf32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elf32-or32.c (or32_elf_consth_reloc): ..
* elf32-ppc.c (ppc_elf_relax_section, ppc_elf_addr16_ha_reloc,
elf_create_pointer_linker_section, ppc_elf_create_linker_section,
ppc_elf_additional_program_headers, ppc_elf_adjust_dynamic_symbol,
allocate_dynrelocs, ppc_elf_size_dynamic_sections,
ppc_elf_finish_dynamic_sections, ppc_elf_grok_prstatus,
ppc_elf_final_write_processing): ..
* elf32-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections, elf_s390_grok_prstatus): ..
* elf32-sh.c (sh_elf_reloc_loop, sh_elf_relax_section,
sh_elf_relax_delete_bytes, sh_elf_align_loads,
sh_elf_adjust_dynamic_symbol, allocate_dynrelocs,
sh_elf_size_dynamic_sections, sh_elf_get_relocated_section_contents,
sh_elf_finish_dynamic_sections, elf32_shlin_grok_prstatus): ..
* elf32-sh64-com.c (sh64_address_in_cranges,
sh64_get_contents_type): ..
* elf32-sh64.c (sh64_find_section_for_address,
sh64_elf_final_write_processing): ..
* elf32-sparc.c (sparc_elf_wdisp16_reloc, sparc_elf_hix22_reloc,
sparc_elf_lox10_reloc, elf32_sparc_adjust_dynamic_symbol,
allocate_dynrelocs, elf32_sparc_size_dynamic_sections,
elf32_sparc_relocate_section, elf32_sparc_finish_dynamic_sections): ..
* elf32-v850.c (v850_elf_reloc, v850_elf_relax_section): ..
* elf32-vax.c (elf_vax_check_relocs, elf_vax_adjust_dynamic_symbol,
elf_vax_size_dynamic_sections, elf_vax_discard_copies,
elf_vax_instantiate_got_entries, elf_vax_relocate_section,
elf_vax_finish_dynamic_sections): ..
* elf32-xstormy16.c (xstormy16_elf_24_reloc,
xstormy16_elf_check_relocs, xstormy16_relax_plt_check,
xstormy16_elf_relax_section, xstormy16_elf_always_size_sections,
xstormy16_elf_finish_dynamic_sections): ..
* elf32-xtensa.c (xtensa_read_table_entries,
elf_xtensa_allocate_got_size, elf_xtensa_allocate_local_got_size,
elf_xtensa_size_dynamic_sections, elf_xtensa_do_reloc,
bfd_elf_xtensa_reloc, elf_xtensa_relocate_section,
elf_xtensa_combine_prop_entries, elf_xtensa_finish_dynamic_sections,
elf_xtensa_discard_info_for_section, elf_xtensa_grok_prstatus,
get_relocation_opcode, retrieve_contents, find_relaxable_sections,
collect_source_relocs, is_resolvable_asm_expansion, remove_literals,
relax_section, shrink_dynamic_reloc_sections, relax_property_section,
xtensa_callback_required_dependence): ..
* elf64-alpha.c (elf64_alpha_reloc_gpdisp, elf64_alpha_relax_section,
elf64_alpha_check_relocs, elf64_alpha_adjust_dynamic_symbol,
elf64_alpha_calc_got_offsets_for_symbol, elf64_alpha_calc_got_offsets,
elf64_alpha_size_plt_section, elf64_alpha_size_plt_section_1,
elf64_alpha_always_size_sections, elf64_alpha_calc_dynrel_sizes,
elf64_alpha_size_rela_got_section, elf64_alpha_size_rela_got_1,
elf64_alpha_size_dynamic_sections, elf64_alpha_emit_dynrel,
elf64_alpha_finish_dynamic_sections, elf64_alpha_final_link): ..
* elf64-hppa.c (allocate_dynrel_entries,
elf64_hppa_size_dynamic_sections,
elf64_hppa_finish_dynamic_sections): ..
* elf64-mips.c (mips_elf64_gprel32_reloc, mips16_gprel_reloc,
mips_elf64_canonicalize_dynamic_reloc, mips_elf64_slurp_reloc_table,
elf64_mips_grok_prstatus): ..
* elf64-mmix.c (mmix_elf_perform_relocation, mmix_elf_reloc,
mmix_elf_relocate_section, mmix_elf_final_link,
mmix_set_relaxable_size, _bfd_mmix_after_linker_allocation,
mmix_elf_relax_section, mmix_elf_get_section_contents): ..
* elf64-ppc.c (ppc64_elf_object_p, ppc64_elf_grok_prstatus,
ppc64_elf_check_relocs, ppc64_elf_func_desc_adjust,
ppc64_elf_adjust_dynamic_symbol, ppc64_elf_edit_opd,
allocate_dynrelocs, ppc64_elf_size_dynamic_sections,
ppc_build_one_stub, ppc_size_one_stub, ppc64_elf_next_toc_section,
toc_adjusting_stub_needed, group_sections, ppc64_elf_size_stubs,
ppc64_elf_build_stubs, ppc64_elf_relocate_section,
ppc64_elf_finish_dynamic_sections): ..
* elf64-s390.c (s390_elf_ldisp_reloc, elf_s390_adjust_dynamic_symbol,
allocate_dynrelocs, elf_s390_size_dynamic_sections,
elf_s390_finish_dynamic_sections): ..
* elf64-sh64.c (sh_elf64_get_relocated_section_contents,
sh_elf64_check_relocs, sh64_elf64_adjust_dynamic_symbol,
sh64_elf64_discard_copies, sh64_elf64_size_dynamic_sections,
sh64_elf64_finish_dynamic_sections): ..
* elf64-sparc.c (sparc64_elf_slurp_reloc_table, init_insn_reloc,
sparc64_elf_check_relocs, sparc64_elf_adjust_dynamic_symbol,
sparc64_elf_size_dynamic_sections, sparc64_elf_relocate_section,
sparc64_elf_finish_dynamic_symbol,
sparc64_elf_finish_dynamic_sections): ..
* elf64-x86-64.c (elf64_x86_64_grok_prstatus,
elf64_x86_64_adjust_dynamic_symbol, allocate_dynrelocs,
elf64_x86_64_size_dynamic_sections, elf64_x86_64_relocate_section,
elf64_x86_64_finish_dynamic_sections): ..
* elfarm-nabi.c (elf32_arm_nabi_grok_prstatus): ..
* elfcode.h (elf_slurp_reloc_table): ..
* elflink.c (_bfd_elf_create_got_section, elf_add_dt_needed_tag,
elf_finalize_dynstr, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_sort_relocs,
elf_link_input_bfd, bfd_elf_final_link, bfd_elf_discard_info): ..
* elfn32-mips.c (gprel32_with_gp, mips16_gprel_reloc,
elf32_mips_grok_prstatus): ..
* elfxx-ia64.c (elfNN_ia64_relax_section, allocate_dynrel_entries,
elfNN_ia64_size_dynamic_sections, elfNN_ia64_install_dyn_reloc,
elfNN_ia64_choose_gp, elfNN_ia64_final_link,
elfNN_ia64_finish_dynamic_sections): ..
* elfxx-mips.c (mips_elf_create_procedure_table,
mips_elf_check_mips16_stubs, _bfd_mips_elf_gprel16_with_gp,
_bfd_mips_elf_hi16_reloc, _bfd_mips_elf_generic_reloc,
mips_elf_global_got_index, mips_elf_multi_got,
mips_elf_create_compact_rel_section, mips_elf_calculate_relocation,
mips_elf_allocate_dynamic_relocations,
mips_elf_create_dynamic_relocation, _bfd_mips_elf_fake_sections,
_bfd_mips_relax_section, _bfd_mips_elf_adjust_dynamic_symbol,
_bfd_mips_elf_always_size_sections,
_bfd_mips_elf_size_dynamic_sections,
_bfd_mips_elf_finish_dynamic_symbol,
_bfd_mips_elf_finish_dynamic_sections,
_bfd_mips_elf_modify_segment_map, _bfd_mips_elf_discard_info,
_bfd_mips_elf_write_section, _bfd_mips_elf_set_section_contents,
_bfd_elf_mips_get_relocated_section_contents,
_bfd_mips_elf_final_link, _bfd_mips_elf_merge_private_bfd_data): ..
* hp300hpux.c (callback): ..
* hppabsd-core.c (make_bfd_asection): ..
* hpux-core.c (make_bfd_asection): ..
* i386linux.c (linux_link_create_dynamic_sections,
bfd_i386linux_size_dynamic_sections, linux_finish_dynamic_link): ..
* i386msdos.c (msdos_write_object_contents): ..
* i386os9k.c (os9k_callback, os9k_write_object_contents,
os9k_set_section_contents): ..
* ieee.c (parse_expression, ieee_slurp_external_symbols,
ieee_slurp_sections, ieee_slurp_debug, ieee_slurp_section_data,
ieee_write_section_part, do_with_relocs, do_as_repeat,
do_without_relocs, ieee_write_debug_part, init_for_output,
ieee_set_section_contents): ..
* ihex.c (ihex_scan, ihex_read_section, ihex_get_section_contents): ..
* irix-core.c (do_sections, make_bfd_asection): ..
* libaout.h (aout_section_merge_with_text_p): ..
* libbfd.c (_bfd_generic_get_section_contents,
_bfd_generic_get_section_contents_in_window): ..
* linker.c (default_indirect_link_order): ..
* lynx-core.c (make_bfd_asection): ..
* m68klinux.c (linux_link_create_dynamic_sections,
bfd_m68klinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* mach-o.c (bfd_mach_o_make_bfd_section,
bfd_mach_o_scan_read_dylinker, bfd_mach_o_scan_read_dylib,
bfd_mach_o_scan_read_thread, bfd_mach_o_scan_read_symtab,
bfd_mach_o_scan_read_segment): ..
* merge.c (_bfd_add_merge_section, record_section, merge_strings,
_bfd_merge_sections): ..
* mmo.c (mmo_find_sec_w_addr, mmo_get_spec_section, mmo_get_loc,
mmo_map_set_sizes, mmo_canonicalize_symtab,
mmo_internal_write_section, mmo_write_object_contents): ..
* netbsd-core.c (netbsd_core_file_p): ..
* nlm32-alpha.c (nlm_alpha_read_reloc, nlm_alpha_write_import,
nlm_alpha_set_public_section): ..
* nlm32-ppc.c (nlm_powerpc_read_reloc, nlm_powerpc_write_reloc): ..
* nlm32-sparc.c (nlm_sparc_write_import): ..
* nlmcode.h (add_bfd_section, nlm_swap_auxiliary_headers_in,
nlm_compute_section_file_positions): ..
* oasys.c (oasys_object_p, oasys_slurp_section_data,
oasys_write_sections, oasys_write_data, oasys_set_section_contents): ..
* opncls.c (get_debug_link_info): ..
* osf-core.c (make_bfd_asection): ..
* pdp11.c (some_aout_object_p, adjust_o_magic, adjust_z_magic,
adjust_n_magic, adjust_sizes_and_vmas, squirt_out_relocs,
final_link, aout_link_input_section): ..
* peXXigen.c (_bfd_XXi_swap_sym_in, _bfd_XXi_swap_aouthdr_out,
pe_print_idata, pe_print_edata, pe_print_pdata, pe_print_reloc): ..
* pef.c (bfd_pef_make_bfd_section, bfd_pef_print_loader_section,
bfd_pef_scan_start_address, bfd_pef_parse_symbols): ..
* ppcboot.c (ppcboot_object_p, ppcboot_canonicalize_symtab): ..
* ptrace-core.c (ptrace_unix_core_file_p): ..
* reloc.c (bfd_perform_relocation, bfd_install_relocation,
_bfd_final_link_relocate, bfd_generic_relax_section,
bfd_generic_get_relocated_section_contents): ..
* reloc16.c (bfd_coff_reloc16_relax_section,
bfd_coff_reloc16_get_relocated_section_c): ..
* riscix.c (riscix_some_aout_object_p): ..
* rs6000-core.c (read_hdr, make_bfd_asection): ..
* sco5-core.c (make_bfd_asection): ..
* simple.c (bfd_simple_get_relocated_section_contents): ..
* som.c (som_object_setup, setup_sections, som_prep_headers,
som_write_fixups, som_begin_writing, bfd_section_from_som_symbol,
som_set_reloc_info, som_get_section_contents,
som_bfd_link_split_section): ..
* sparclinux.c (linux_link_create_dynamic_sections,
bfd_sparclinux_size_dynamic_sections, linux_finish_dynamic_link): ..
* srec.c (srec_scan, srec_read_section, srec_get_section_contents): ..
* stabs.c (_bfd_link_section_stabs, _bfd_discard_section_stabs,
_bfd_write_stab_strings, _bfd_stab_section_offset): ..
* sunos.c (sunos_read_dynamic_info, sunos_create_dynamic_sections,
bfd_sunos_size_dynamic_sections, sunos_scan_std_relocs,
sunos_scan_ext_relocs, sunos_scan_dynamic_symbol,
sunos_write_dynamic_symbol, sunos_check_dynamic_reloc,
sunos_finish_dynamic_link): ..
* syms.c (_bfd_stab_section_find_nearest_line): ..
* tekhex.c (first_phase, tekhex_set_section_contents,
tekhex_write_object_contents): ..
* trad-core.c (trad_unix_core_file_p): ..
* versados.c (process_esd, process_otr, process_otr): ..
* vms-gsd.c (_bfd_vms_slurp_gsd, _bfd_vms_write_gsd): ..
* vms-misc.c (add_new_contents): ..
* vms-tir.c (check_section, new_section, _bfd_vms_write_tir): ..
* vms.c (vms_set_section_contents): ..
* xcofflink.c (xcoff_get_section_contents, xcoff_link_add_symbols,
xcoff_sweep, bfd_xcoff_size_dynamic_sections, xcoff_build_ldsyms,
_bfd_xcoff_bfd_final_link, xcoff_link_input_bfd): ..
* xsym.c (bfd_sym_scan): .. See above.
binutils/
* objcopy.c (copy_section): Don't set _cooked_size.
include/
* bfdlink.h (struct bfd_link_order): Update comment.
ld/
* ldlang.c (print_output_section_statement): Don't print size before
relaxation.
(IGNORE_SECTION): Remove bfd arg. Update all callers.
* ldexp.c (fold_name): .. See below.
* ldlang.c (section_already_linked, print_output_section_statement,
print_input_section, insert_pad, size_input_section,
lang_check_section_addresses, lang_size_sections_1,
lang_size_sections, lang_do_assignments_1, lang_set_startof,
lang_one_common, lang_reset_memory_regions, lang_process,
lang_abs_symbol_at_end_of, lang_do_version_exports_section): ..
* ldwrite.c (build_link_order, clone_section, ds, split_sections): ..
* pe-dll.c (process_def_file, generate_reloc): ..
* emultempl/elf32.em (gld${EMULATION_NAME}_find_statement_assignment,
gld${EMULATION_NAME}_before_allocation): ..
* emultempl/mmix-elfnmmo.em (mmix_after_allocation): ..
* emultempl/sh64elf.em (sh64_elf_${EMULATION_NAME}_before_allocation,
sh64_elf_${EMULATION_NAME}_after_allocation): ..
* emultempl/sunos.em (gld${EMULATION_NAME}_before_allocation): ..
* emultempl/xtensaelf.em (ld_assign_relative_paged_dot,
ld_local_file_relocations_fit, ld_xtensa_insert_page_offsets): Use
"size" instead of "_raw_size" and "_cooked_size". Expand
bfd_section_size macro invocations.
2004-06-24 06:46:28 +02:00
|
|
|
|
internal_a.bsize = bss_sec->size;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (internal_a.bsize && bss_sec->vma < internal_a.data_start)
|
|
|
|
|
internal_a.data_start = bss_sec->vma;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal_a.entry = bfd_get_start_address (abfd);
|
|
|
|
|
internal_f.f_nsyms = obj_raw_syment_count (abfd);
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
if (xcoff_data (abfd)->full_aouthdr)
|
|
|
|
|
{
|
|
|
|
|
bfd_vma toc;
|
|
|
|
|
asection *loader_sec;
|
|
|
|
|
|
|
|
|
|
internal_a.vstamp = 1;
|
|
|
|
|
|
|
|
|
|
internal_a.o_snentry = xcoff_data (abfd)->snentry;
|
|
|
|
|
if (internal_a.o_snentry == 0)
|
|
|
|
|
internal_a.entry = (bfd_vma) -1;
|
|
|
|
|
|
|
|
|
|
if (text_sec != NULL)
|
|
|
|
|
{
|
|
|
|
|
internal_a.o_sntext = text_sec->target_index;
|
|
|
|
|
internal_a.o_algntext = bfd_get_section_alignment (abfd, text_sec);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
internal_a.o_sntext = 0;
|
|
|
|
|
internal_a.o_algntext = 0;
|
|
|
|
|
}
|
|
|
|
|
if (data_sec != NULL)
|
|
|
|
|
{
|
|
|
|
|
internal_a.o_sndata = data_sec->target_index;
|
|
|
|
|
internal_a.o_algndata = bfd_get_section_alignment (abfd, data_sec);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
internal_a.o_sndata = 0;
|
|
|
|
|
internal_a.o_algndata = 0;
|
|
|
|
|
}
|
|
|
|
|
loader_sec = bfd_get_section_by_name (abfd, ".loader");
|
|
|
|
|
if (loader_sec != NULL)
|
|
|
|
|
internal_a.o_snloader = loader_sec->target_index;
|
|
|
|
|
else
|
|
|
|
|
internal_a.o_snloader = 0;
|
|
|
|
|
if (bss_sec != NULL)
|
|
|
|
|
internal_a.o_snbss = bss_sec->target_index;
|
|
|
|
|
else
|
|
|
|
|
internal_a.o_snbss = 0;
|
|
|
|
|
|
|
|
|
|
toc = xcoff_data (abfd)->toc;
|
|
|
|
|
internal_a.o_toc = toc;
|
|
|
|
|
internal_a.o_sntoc = xcoff_data (abfd)->sntoc;
|
|
|
|
|
|
|
|
|
|
internal_a.o_modtype = xcoff_data (abfd)->modtype;
|
|
|
|
|
if (xcoff_data (abfd)->cputype != -1)
|
|
|
|
|
internal_a.o_cputype = xcoff_data (abfd)->cputype;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
switch (bfd_get_arch (abfd))
|
|
|
|
|
{
|
|
|
|
|
case bfd_arch_rs6000:
|
|
|
|
|
internal_a.o_cputype = 4;
|
|
|
|
|
break;
|
|
|
|
|
case bfd_arch_powerpc:
|
2002-09-02 13:47:42 +02:00
|
|
|
|
if (bfd_get_mach (abfd) == bfd_mach_ppc)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
internal_a.o_cputype = 3;
|
|
|
|
|
else
|
|
|
|
|
internal_a.o_cputype = 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
internal_a.o_maxstack = xcoff_data (abfd)->maxstack;
|
|
|
|
|
internal_a.o_maxdata = xcoff_data (abfd)->maxdata;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* Now write them. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (bfd_seek (abfd, (file_ptr) 0, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2000-01-24 20:38:04 +01:00
|
|
|
|
char * buff;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amount = bfd_coff_filhsz (abfd);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2009-09-09 23:38:59 +02:00
|
|
|
|
buff = (char *) bfd_malloc (amount);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
if (buff == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
bfd_coff_swap_filehdr_out (abfd, & internal_f, buff);
|
|
|
|
|
amount = bfd_bwrite (buff, amount, abfd);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-02-19 02:11:19 +01:00
|
|
|
|
free (buff);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-01-24 20:38:04 +01:00
|
|
|
|
if (amount != bfd_coff_filhsz (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (abfd->flags & EXEC_P)
|
|
|
|
|
{
|
2000-11-28 22:42:16 +01:00
|
|
|
|
/* Note that peicode.h fills in a PEAOUTHDR, not an AOUTHDR.
|
2003-02-14 12:16:09 +01:00
|
|
|
|
include/coff/pe.h sets AOUTSZ == sizeof (PEAOUTHDR)). */
|
2000-01-24 20:38:04 +01:00
|
|
|
|
char * buff;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amount = bfd_coff_aoutsz (abfd);
|
2000-01-24 20:38:04 +01:00
|
|
|
|
|
2009-09-09 23:38:59 +02:00
|
|
|
|
buff = (char *) bfd_malloc (amount);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
if (buff == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_aouthdr_out (abfd, & internal_a, buff);
|
|
|
|
|
amount = bfd_bwrite (buff, amount, abfd);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-02-19 02:11:19 +01:00
|
|
|
|
free (buff);
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2000-01-24 20:38:04 +01:00
|
|
|
|
if (amount != bfd_coff_aoutsz (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
|
|
|
|
|
#ifdef COFF_IMAGE_WITH_PE
|
|
|
|
|
if (! coff_apply_checksum (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2002-04-09 18:43:26 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
AOUTHDR buff;
|
|
|
|
|
size_t size;
|
|
|
|
|
|
|
|
|
|
/* XCOFF seems to always write at least a small a.out header. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_swap_aouthdr_out (abfd, & internal_a, & buff);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (xcoff_data (abfd)->full_aouthdr)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
size = bfd_coff_aoutsz (abfd);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
size = SMALL_AOUTSZ;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
if (bfd_bwrite (& buff, (bfd_size_type) size, abfd) != size)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_set_section_contents (bfd * abfd,
|
|
|
|
|
sec_ptr section,
|
|
|
|
|
const void * location,
|
|
|
|
|
file_ptr offset,
|
|
|
|
|
bfd_size_type count)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2003-02-14 12:16:09 +01:00
|
|
|
|
if (! abfd->output_has_begun) /* Set by bfd.c handler. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
if (! coff_compute_section_file_positions (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if defined(_LIB) && !defined(TARG_AUX)
|
|
|
|
|
/* The physical address field of a .lib section is used to hold the
|
|
|
|
|
number of shared libraries in the section. This code counts the
|
|
|
|
|
number of sections being written, and increments the lma field
|
|
|
|
|
with the number.
|
|
|
|
|
|
|
|
|
|
I have found no documentation on the contents of this section.
|
|
|
|
|
Experimentation indicates that the section contains zero or more
|
|
|
|
|
records, each of which has the following structure:
|
|
|
|
|
|
|
|
|
|
- a (four byte) word holding the length of this record, in words,
|
|
|
|
|
- a word that always seems to be set to "2",
|
|
|
|
|
- the path to a shared library, null-terminated and then padded
|
|
|
|
|
to a whole word boundary.
|
|
|
|
|
|
|
|
|
|
bfd_assert calls have been added to alert if an attempt is made
|
|
|
|
|
to write a section which doesn't follow these assumptions. The
|
|
|
|
|
code has been tested on ISC 4.1 by me, and on SCO by Robert Lipe
|
|
|
|
|
<robertl@arnet.com> (Thanks!).
|
2000-11-28 22:42:16 +01:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
Gvran Uddeborg <gvran@uddeborg.pp.se>. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (strcmp (section->name, _LIB) == 0)
|
|
|
|
|
{
|
|
|
|
|
bfd_byte *rec, *recend;
|
|
|
|
|
|
|
|
|
|
rec = (bfd_byte *) location;
|
|
|
|
|
recend = rec + count;
|
|
|
|
|
while (rec < recend)
|
|
|
|
|
{
|
|
|
|
|
++section->lma;
|
|
|
|
|
rec += bfd_get_32 (abfd, rec) * 4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BFD_ASSERT (rec == recend);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Don't write out bss sections - one way to do this is to
|
2000-11-28 22:42:16 +01:00
|
|
|
|
see if the filepos has not been set. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (section->filepos == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (bfd_seek (abfd, section->filepos + offset, SEEK_SET) != 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (count == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|
|
|
|
|
return bfd_bwrite (location, count, abfd) == count;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
static void *
|
|
|
|
|
buy_and_read (bfd *abfd, file_ptr where, bfd_size_type size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2005-04-21 09:45:39 +02:00
|
|
|
|
void * area = bfd_alloc (abfd, size);
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!area)
|
|
|
|
|
return (NULL);
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
if (bfd_seek (abfd, where, SEEK_SET) != 0
|
|
|
|
|
|| bfd_bread (area, size, abfd) != size)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
return (NULL);
|
|
|
|
|
return (area);
|
2005-04-21 09:45:39 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Reading linenumbers
|
|
|
|
|
|
|
|
|
|
Creating the linenumber table is done by reading in the entire
|
|
|
|
|
coff linenumber table, and creating another table for internal use.
|
|
|
|
|
|
|
|
|
|
A coff linenumber table is structured so that each function
|
|
|
|
|
is marked as having a line number of 0. Each line within the
|
|
|
|
|
function is an offset from the first line in the function. The
|
|
|
|
|
base of the line number information for the table is stored in
|
|
|
|
|
the symbol associated with the function.
|
|
|
|
|
|
1999-08-18 08:00:13 +02:00
|
|
|
|
Note: The PE format uses line number 0 for a flag indicating a
|
|
|
|
|
new source file.
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
The information is copied from the external to the internal
|
|
|
|
|
table, and each symbol which marks a function is marked by
|
|
|
|
|
pointing its...
|
|
|
|
|
|
|
|
|
|
How does this work ?
|
|
|
|
|
*/
|
|
|
|
|
|
2007-08-01 18:55:54 +02:00
|
|
|
|
static int
|
|
|
|
|
coff_sort_func_alent (const void * arg1, const void * arg2)
|
|
|
|
|
{
|
|
|
|
|
const alent *al1 = *(const alent **) arg1;
|
|
|
|
|
const alent *al2 = *(const alent **) arg2;
|
|
|
|
|
const coff_symbol_type *s1 = (const coff_symbol_type *) (al1->u.sym);
|
|
|
|
|
const coff_symbol_type *s2 = (const coff_symbol_type *) (al2->u.sym);
|
|
|
|
|
|
|
|
|
|
if (s1->symbol.value < s2->symbol.value)
|
|
|
|
|
return -1;
|
|
|
|
|
else if (s1->symbol.value > s2->symbol.value)
|
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_slurp_line_table (bfd *abfd, asection *asect)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
LINENO *native_lineno;
|
|
|
|
|
alent *lineno_cache;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
2007-08-01 18:55:54 +02:00
|
|
|
|
unsigned int counter;
|
|
|
|
|
alent *cache_ptr;
|
|
|
|
|
bfd_vma prev_offset = 0;
|
|
|
|
|
int ordered = 1;
|
|
|
|
|
unsigned int nbr_func;
|
|
|
|
|
LINENO *src;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
BFD_ASSERT (asect->lineno == NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2008-08-05 05:03:46 +02:00
|
|
|
|
amt = ((bfd_size_type) asect->lineno_count + 1) * sizeof (alent);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
lineno_cache = (alent *) bfd_alloc (abfd, amt);
|
2008-08-05 05:03:46 +02:00
|
|
|
|
if (lineno_cache == NULL)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = (bfd_size_type) bfd_coff_linesz (abfd) * asect->lineno_count;
|
|
|
|
|
native_lineno = (LINENO *) buy_and_read (abfd, asect->line_filepos, amt);
|
2003-08-05 10:25:17 +02:00
|
|
|
|
if (native_lineno == NULL)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
2008-08-05 05:03:46 +02:00
|
|
|
|
(_("%B: warning: line number table read failed"), abfd);
|
|
|
|
|
bfd_release (abfd, lineno_cache);
|
2003-08-05 10:25:17 +02:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
2007-08-01 18:55:54 +02:00
|
|
|
|
|
|
|
|
|
cache_ptr = lineno_cache;
|
2008-08-05 05:03:46 +02:00
|
|
|
|
asect->lineno = lineno_cache;
|
2007-08-01 18:55:54 +02:00
|
|
|
|
src = native_lineno;
|
|
|
|
|
nbr_func = 0;
|
|
|
|
|
|
|
|
|
|
for (counter = 0; counter < asect->lineno_count; counter++)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2007-08-01 18:55:54 +02:00
|
|
|
|
struct internal_lineno dst;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2007-08-01 18:55:54 +02:00
|
|
|
|
bfd_coff_swap_lineno_in (abfd, src, &dst);
|
|
|
|
|
cache_ptr->line_number = dst.l_lnno;
|
|
|
|
|
|
|
|
|
|
if (cache_ptr->line_number == 0)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2007-08-01 18:55:54 +02:00
|
|
|
|
bfd_boolean warned;
|
|
|
|
|
bfd_signed_vma symndx;
|
|
|
|
|
coff_symbol_type *sym;
|
|
|
|
|
|
|
|
|
|
nbr_func++;
|
|
|
|
|
warned = FALSE;
|
|
|
|
|
symndx = dst.l_addr.l_symndx;
|
|
|
|
|
if (symndx < 0
|
|
|
|
|
|| (bfd_vma) symndx >= obj_raw_syment_count (abfd))
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%B: warning: illegal symbol index %ld in line numbers"),
|
|
|
|
|
abfd, dst.l_addr.l_symndx);
|
|
|
|
|
symndx = 0;
|
|
|
|
|
warned = TRUE;
|
|
|
|
|
}
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2007-08-01 18:55:54 +02:00
|
|
|
|
/* FIXME: We should not be casting between ints and
|
|
|
|
|
pointers like this. */
|
|
|
|
|
sym = ((coff_symbol_type *)
|
|
|
|
|
((symndx + obj_raw_syments (abfd))
|
|
|
|
|
->u.syment._n._n_n._n_zeroes));
|
|
|
|
|
cache_ptr->u.sym = (asymbol *) sym;
|
|
|
|
|
if (sym->lineno != NULL && ! warned)
|
|
|
|
|
(*_bfd_error_handler)
|
|
|
|
|
(_("%B: warning: duplicate line number information for `%s'"),
|
|
|
|
|
abfd, bfd_asymbol_name (&sym->symbol));
|
|
|
|
|
|
|
|
|
|
sym->lineno = cache_ptr;
|
|
|
|
|
if (sym->symbol.value < prev_offset)
|
|
|
|
|
ordered = 0;
|
|
|
|
|
prev_offset = sym->symbol.value;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
cache_ptr->u.offset = dst.l_addr.l_paddr
|
|
|
|
|
- bfd_section_vma (abfd, asect);
|
|
|
|
|
|
|
|
|
|
cache_ptr++;
|
|
|
|
|
src++;
|
|
|
|
|
}
|
|
|
|
|
cache_ptr->line_number = 0;
|
2008-08-05 05:03:46 +02:00
|
|
|
|
bfd_release (abfd, native_lineno);
|
2007-08-01 18:55:54 +02:00
|
|
|
|
|
|
|
|
|
/* On some systems (eg AIX5.3) the lineno table may not be sorted. */
|
|
|
|
|
if (!ordered)
|
|
|
|
|
{
|
|
|
|
|
/* Sort the table. */
|
|
|
|
|
alent **func_table;
|
|
|
|
|
alent *n_lineno_cache;
|
|
|
|
|
|
|
|
|
|
/* Create a table of functions. */
|
2009-09-09 23:38:59 +02:00
|
|
|
|
func_table = (alent **) bfd_alloc (abfd, nbr_func * sizeof (alent *));
|
2007-08-01 18:55:54 +02:00
|
|
|
|
if (func_table != NULL)
|
|
|
|
|
{
|
|
|
|
|
alent **p = func_table;
|
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < counter; i++)
|
|
|
|
|
if (lineno_cache[i].line_number == 0)
|
|
|
|
|
*p++ = &lineno_cache[i];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2007-08-01 18:55:54 +02:00
|
|
|
|
/* Sort by functions. */
|
|
|
|
|
qsort (func_table, nbr_func, sizeof (alent *), coff_sort_func_alent);
|
|
|
|
|
|
|
|
|
|
/* Create the new sorted table. */
|
2008-08-05 05:03:46 +02:00
|
|
|
|
amt = ((bfd_size_type) asect->lineno_count + 1) * sizeof (alent);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
n_lineno_cache = (alent *) bfd_alloc (abfd, amt);
|
2007-08-01 18:55:54 +02:00
|
|
|
|
if (n_lineno_cache != NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2007-08-01 18:55:54 +02:00
|
|
|
|
alent *n_cache_ptr = n_lineno_cache;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < nbr_func; i++)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2007-08-01 18:55:54 +02:00
|
|
|
|
coff_symbol_type *sym;
|
|
|
|
|
alent *old_ptr = func_table[i];
|
|
|
|
|
|
|
|
|
|
/* Copy the function entry and update it. */
|
|
|
|
|
*n_cache_ptr = *old_ptr;
|
|
|
|
|
sym = (coff_symbol_type *)n_cache_ptr->u.sym;
|
|
|
|
|
sym->lineno = n_cache_ptr;
|
|
|
|
|
n_cache_ptr++;
|
|
|
|
|
old_ptr++;
|
|
|
|
|
|
|
|
|
|
/* Copy the line number entries. */
|
|
|
|
|
while (old_ptr->line_number != 0)
|
|
|
|
|
*n_cache_ptr++ = *old_ptr++;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2007-08-01 18:55:54 +02:00
|
|
|
|
n_cache_ptr->line_number = 0;
|
2008-08-05 05:03:46 +02:00
|
|
|
|
memcpy (lineno_cache, n_lineno_cache, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
2008-08-05 05:03:46 +02:00
|
|
|
|
bfd_release (abfd, func_table);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-08-01 18:55:54 +02:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
1999-08-18 08:00:13 +02:00
|
|
|
|
/* Slurp in the symbol table, converting it to generic form. Note
|
|
|
|
|
that if coff_relocate_section is defined, the linker will read
|
|
|
|
|
symbols via coff_link_add_symbols, rather than via this routine. */
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_slurp_symbol_table (bfd * abfd)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
combined_entry_type *native_symbols;
|
|
|
|
|
coff_symbol_type *cached_area;
|
|
|
|
|
unsigned int *table_ptr;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
unsigned int number_of_symbols = 0;
|
|
|
|
|
|
|
|
|
|
if (obj_symbols (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Read in the symbol table. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if ((native_symbols = coff_get_normalized_symtab (abfd)) == NULL)
|
2003-02-14 12:16:09 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Allocate enough room for all the symbols in cached form. */
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = obj_raw_syment_count (abfd);
|
|
|
|
|
amt *= sizeof (coff_symbol_type);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
cached_area = (coff_symbol_type *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (cached_area == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
|
|
|
|
|
amt = obj_raw_syment_count (abfd);
|
|
|
|
|
amt *= sizeof (unsigned int);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
table_ptr = (unsigned int *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (table_ptr == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
coff_symbol_type *dst = cached_area;
|
|
|
|
|
unsigned int last_native_index = obj_raw_syment_count (abfd);
|
|
|
|
|
unsigned int this_index = 0;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
while (this_index < last_native_index)
|
|
|
|
|
{
|
|
|
|
|
combined_entry_type *src = native_symbols + this_index;
|
|
|
|
|
table_ptr[this_index] = number_of_symbols;
|
|
|
|
|
dst->symbol.the_bfd = abfd;
|
|
|
|
|
|
|
|
|
|
dst->symbol.name = (char *) (src->u.syment._n._n_n._n_offset);
|
|
|
|
|
/* We use the native name field to point to the cached field. */
|
2007-07-12 09:16:41 +02:00
|
|
|
|
src->u.syment._n._n_n._n_zeroes = (bfd_hostptr_t) dst;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.section = coff_section_from_bfd_index (abfd,
|
|
|
|
|
src->u.syment.n_scnum);
|
|
|
|
|
dst->symbol.flags = 0;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
dst->done_lineno = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
switch (src->u.syment.n_sclass)
|
|
|
|
|
{
|
|
|
|
|
#ifdef I960
|
|
|
|
|
case C_LEAFEXT:
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Fall through to next case. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
case C_EXT:
|
|
|
|
|
case C_WEAKEXT:
|
|
|
|
|
#if defined ARM
|
2008-08-05 05:03:46 +02:00
|
|
|
|
case C_THUMBEXT:
|
|
|
|
|
case C_THUMBEXTFUNC:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
case C_HIDEXT:
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef C_SYSTEM
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_SYSTEM: /* System Wide variable. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_WITH_PE
|
2008-08-05 05:03:46 +02:00
|
|
|
|
/* In PE, 0x68 (104) denotes a section symbol. */
|
|
|
|
|
case C_SECTION:
|
1999-08-05 23:01:37 +02:00
|
|
|
|
/* In PE, 0x69 (105) denotes a weak external symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case C_NT_WEAK:
|
|
|
|
|
#endif
|
1999-08-05 23:01:37 +02:00
|
|
|
|
switch (coff_classify_symbol (abfd, &src->u.syment))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
1999-08-05 23:01:37 +02:00
|
|
|
|
case COFF_SYMBOL_GLOBAL:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.flags = BSF_EXPORT | BSF_GLOBAL;
|
|
|
|
|
#if defined COFF_WITH_PE
|
|
|
|
|
/* PE sets the symbol to a value relative to the
|
2008-08-05 05:03:46 +02:00
|
|
|
|
start of the section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
#else
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value
|
|
|
|
|
- dst->symbol.section->vma);
|
|
|
|
|
#endif
|
|
|
|
|
if (ISFCN ((src->u.syment.n_type)))
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* A function ext does not go at the end of a
|
|
|
|
|
file. */
|
|
|
|
|
dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
|
1999-08-05 23:01:37 +02:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case COFF_SYMBOL_COMMON:
|
|
|
|
|
dst->symbol.section = bfd_com_section_ptr;
|
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case COFF_SYMBOL_UNDEFINED:
|
|
|
|
|
dst->symbol.section = bfd_und_section_ptr;
|
|
|
|
|
dst->symbol.value = 0;
|
2000-11-28 22:42:16 +01:00
|
|
|
|
break;
|
1999-08-05 23:01:37 +02:00
|
|
|
|
|
|
|
|
|
case COFF_SYMBOL_PE_SECTION:
|
|
|
|
|
dst->symbol.flags |= BSF_EXPORT | BSF_SECTION_SYM;
|
|
|
|
|
dst->symbol.value = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case COFF_SYMBOL_LOCAL:
|
|
|
|
|
dst->symbol.flags = BSF_LOCAL;
|
|
|
|
|
#if defined COFF_WITH_PE
|
|
|
|
|
/* PE sets the symbol to a value relative to the
|
2008-08-05 05:03:46 +02:00
|
|
|
|
start of the section. */
|
1999-08-05 23:01:37 +02:00
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
#else
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value
|
|
|
|
|
- dst->symbol.section->vma);
|
|
|
|
|
#endif
|
|
|
|
|
if (ISFCN ((src->u.syment.n_type)))
|
|
|
|
|
dst->symbol.flags |= BSF_NOT_AT_END | BSF_FUNCTION;
|
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
/* A symbol with a csect entry should not go at the end. */
|
|
|
|
|
if (src->u.syment.n_numaux > 0)
|
|
|
|
|
dst->symbol.flags |= BSF_NOT_AT_END;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
if (src->u.syment.n_sclass == C_NT_WEAK)
|
2002-03-14 19:30:40 +01:00
|
|
|
|
dst->symbol.flags |= BSF_WEAK;
|
|
|
|
|
|
1999-05-11 23:05:44 +02:00
|
|
|
|
if (src->u.syment.n_sclass == C_SECTION
|
|
|
|
|
&& src->u.syment.n_scnum > 0)
|
2002-03-18 13:46:27 +01:00
|
|
|
|
dst->symbol.flags = BSF_LOCAL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
if (src->u.syment.n_sclass == C_WEAKEXT)
|
2002-03-14 19:30:40 +01:00
|
|
|
|
dst->symbol.flags |= BSF_WEAK;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_STAT: /* Static. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef I960
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_LEAFSTAT: /* Static leaf procedure. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#if defined ARM
|
2008-08-05 05:03:46 +02:00
|
|
|
|
case C_THUMBSTAT: /* Thumb static. */
|
|
|
|
|
case C_THUMBLABEL: /* Thumb label. */
|
|
|
|
|
case C_THUMBSTATFUNC:/* Thumb static function. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_LABEL: /* Label. */
|
1999-08-18 08:00:13 +02:00
|
|
|
|
if (src->u.syment.n_scnum == N_DEBUG)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
else
|
|
|
|
|
dst->symbol.flags = BSF_LOCAL;
|
|
|
|
|
|
|
|
|
|
/* Base the value as an index from the base of the
|
|
|
|
|
section, if there is one. */
|
|
|
|
|
if (dst->symbol.section)
|
|
|
|
|
{
|
|
|
|
|
#if defined COFF_WITH_PE
|
|
|
|
|
/* PE sets the symbol to a value relative to the
|
2008-08-05 05:03:46 +02:00
|
|
|
|
start of the section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
#else
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value
|
|
|
|
|
- dst->symbol.section->vma);
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
break;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_MOS: /* Member of structure. */
|
|
|
|
|
case C_EOS: /* End of structure. */
|
|
|
|
|
case C_REGPARM: /* Register parameter. */
|
|
|
|
|
case C_REG: /* register variable. */
|
2008-08-05 05:03:46 +02:00
|
|
|
|
/* C_AUTOARG conflicts with TI COFF C_UEXT. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#if !defined (TIC80COFF) && !defined (TICOFF)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef C_AUTOARG
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_AUTOARG: /* 960-specific storage class. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
#endif
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_TPDEF: /* Type definition. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case C_ARG:
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_AUTO: /* Automatic variable. */
|
|
|
|
|
case C_FIELD: /* Bit field. */
|
|
|
|
|
case C_ENTAG: /* Enumeration tag. */
|
|
|
|
|
case C_MOE: /* Member of enumeration. */
|
|
|
|
|
case C_MOU: /* Member of union. */
|
|
|
|
|
case C_UNTAG: /* Union tag. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value);
|
|
|
|
|
break;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_FILE: /* File name. */
|
|
|
|
|
case C_STRTAG: /* Structure tag. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef RS6000COFF_C
|
|
|
|
|
case C_GSYM:
|
|
|
|
|
case C_LSYM:
|
|
|
|
|
case C_PSYM:
|
|
|
|
|
case C_RSYM:
|
|
|
|
|
case C_RPSYM:
|
|
|
|
|
case C_STSYM:
|
2003-07-22 11:06:49 +02:00
|
|
|
|
case C_TCSYM:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case C_BCOMM:
|
2003-07-22 11:06:49 +02:00
|
|
|
|
case C_ECOML:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case C_ECOMM:
|
|
|
|
|
case C_DECL:
|
|
|
|
|
case C_ENTRY:
|
|
|
|
|
case C_FUN:
|
|
|
|
|
case C_ESTAT:
|
|
|
|
|
#endif
|
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
#ifdef RS6000COFF_C
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_BINCL: /* Beginning of include file. */
|
|
|
|
|
case C_EINCL: /* Ending of include file. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* The value is actually a pointer into the line numbers
|
2008-08-05 05:03:46 +02:00
|
|
|
|
of the file. We locate the line number entry, and
|
|
|
|
|
set the section to the section which contains it, and
|
|
|
|
|
the value to the index in that section. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
|
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
for (sec = abfd->sections; sec != NULL; sec = sec->next)
|
|
|
|
|
if (sec->line_filepos <= (file_ptr) src->u.syment.n_value
|
|
|
|
|
&& ((file_ptr) (sec->line_filepos
|
2000-01-14 00:55:21 +01:00
|
|
|
|
+ sec->lineno_count * bfd_coff_linesz (abfd))
|
1999-05-03 09:29:11 +02:00
|
|
|
|
> (file_ptr) src->u.syment.n_value))
|
|
|
|
|
break;
|
|
|
|
|
if (sec == NULL)
|
|
|
|
|
dst->symbol.value = 0;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
dst->symbol.section = sec;
|
|
|
|
|
dst->symbol.value = ((src->u.syment.n_value
|
|
|
|
|
- sec->line_filepos)
|
2000-01-14 00:55:21 +01:00
|
|
|
|
/ bfd_coff_linesz (abfd));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
src->fix_line = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case C_BSTAT:
|
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
|
|
|
|
|
/* The value is actually a symbol index. Save a pointer
|
|
|
|
|
to the symbol instead of the index. FIXME: This
|
|
|
|
|
should use a union. */
|
|
|
|
|
src->u.syment.n_value =
|
|
|
|
|
(long) (native_symbols + src->u.syment.n_value);
|
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
src->fix_value = 1;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_BLOCK: /* ".bb" or ".eb". */
|
|
|
|
|
case C_FCN: /* ".bf" or ".ef" (or PE ".lf"). */
|
|
|
|
|
case C_EFCN: /* Physical end of function. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#if defined COFF_WITH_PE
|
|
|
|
|
/* PE sets the symbol to a value relative to the start
|
|
|
|
|
of the section. */
|
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
1999-09-11 23:04:09 +02:00
|
|
|
|
if (strcmp (dst->symbol.name, ".bf") != 0)
|
|
|
|
|
{
|
|
|
|
|
/* PE uses funny values for .ef and .lf; don't
|
2008-08-05 05:03:46 +02:00
|
|
|
|
relocate them. */
|
1999-09-11 23:04:09 +02:00
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING | BSF_DEBUGGING_RELOC;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
|
|
|
|
/* Base the value as an index from the base of the
|
|
|
|
|
section. */
|
1999-09-11 23:04:09 +02:00
|
|
|
|
dst->symbol.flags = BSF_LOCAL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.value = (src->u.syment.n_value
|
|
|
|
|
- dst->symbol.section->vma);
|
|
|
|
|
#endif
|
|
|
|
|
break;
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_STATLAB: /* Static load time label. */
|
2008-08-05 05:03:46 +02:00
|
|
|
|
dst->symbol.value = src->u.syment.n_value;
|
|
|
|
|
dst->symbol.flags = BSF_GLOBAL;
|
|
|
|
|
break;
|
2000-04-07 02:58:07 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
case C_NULL:
|
1999-08-18 08:00:13 +02:00
|
|
|
|
/* PE DLLs sometimes have zeroed out symbols for some
|
2008-08-05 05:03:46 +02:00
|
|
|
|
reason. Just ignore them without a warning. */
|
1999-08-18 08:00:13 +02:00
|
|
|
|
if (src->u.syment.n_type == 0
|
|
|
|
|
&& src->u.syment.n_value == 0
|
|
|
|
|
&& src->u.syment.n_scnum == 0)
|
|
|
|
|
break;
|
|
|
|
|
/* Fall through. */
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_EXTDEF: /* External definition. */
|
|
|
|
|
case C_ULABEL: /* Undefined label. */
|
|
|
|
|
case C_USTATIC: /* Undefined static. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef COFF_WITH_PE
|
2008-08-05 05:03:46 +02:00
|
|
|
|
/* C_LINE in regular coff is 0x68. NT has taken over this storage
|
|
|
|
|
class to represent a section symbol. */
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_LINE: /* line # reformatted as symbol table entry. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* NT uses 0x67 for a weak symbol, not C_ALIAS. */
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_ALIAS: /* Duplicate tag. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* New storage classes for TI COFF. */
|
2000-04-07 19:06:58 +02:00
|
|
|
|
#if defined(TIC80COFF) || defined(TICOFF)
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_UEXT: /* Tentative external definition. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2003-02-14 12:16:09 +01:00
|
|
|
|
case C_EXTLAB: /* External load time label. */
|
|
|
|
|
case C_HIDDEN: /* Ext symbol in dmert public lib. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
default:
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: Unrecognized storage class %d for %s symbol `%s'"),
|
|
|
|
|
abfd, src->u.syment.n_sclass,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
dst->symbol.section->name, dst->symbol.name);
|
|
|
|
|
dst->symbol.flags = BSF_DEBUGGING;
|
|
|
|
|
dst->symbol.value = (src->u.syment.n_value);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dst->native = src;
|
|
|
|
|
|
|
|
|
|
dst->symbol.udata.i = 0;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
dst->lineno = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
this_index += (src->u.syment.n_numaux) + 1;
|
|
|
|
|
dst++;
|
|
|
|
|
number_of_symbols++;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
obj_symbols (abfd) = cached_area;
|
|
|
|
|
obj_raw_syments (abfd) = native_symbols;
|
|
|
|
|
|
|
|
|
|
bfd_get_symcount (abfd) = number_of_symbols;
|
|
|
|
|
obj_convert (abfd) = table_ptr;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Slurp the line tables for each section too. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
asection *p;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
p = abfd->sections;
|
|
|
|
|
while (p)
|
|
|
|
|
{
|
|
|
|
|
coff_slurp_line_table (abfd, p);
|
|
|
|
|
p = p->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
/* Classify a COFF symbol. A couple of targets have globally visible
|
|
|
|
|
symbols which are not class C_EXT, and this handles those. It also
|
|
|
|
|
recognizes some special PE cases. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
static enum coff_symbol_classification
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_classify_symbol (bfd *abfd,
|
|
|
|
|
struct internal_syment *syment)
|
1999-08-05 23:01:37 +02:00
|
|
|
|
{
|
|
|
|
|
/* FIXME: This partially duplicates the switch in
|
|
|
|
|
coff_slurp_symbol_table. */
|
|
|
|
|
switch (syment->n_sclass)
|
|
|
|
|
{
|
|
|
|
|
case C_EXT:
|
|
|
|
|
case C_WEAKEXT:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef I960
|
1999-08-05 23:01:37 +02:00
|
|
|
|
case C_LEAFEXT:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
1999-08-05 23:01:37 +02:00
|
|
|
|
#ifdef ARM
|
|
|
|
|
case C_THUMBEXT:
|
|
|
|
|
case C_THUMBEXTFUNC:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
1999-08-05 23:01:37 +02:00
|
|
|
|
#ifdef C_SYSTEM
|
|
|
|
|
case C_SYSTEM:
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
1999-08-05 23:01:37 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
case C_NT_WEAK:
|
|
|
|
|
#endif
|
|
|
|
|
if (syment->n_scnum == 0)
|
|
|
|
|
{
|
|
|
|
|
if (syment->n_value == 0)
|
|
|
|
|
return COFF_SYMBOL_UNDEFINED;
|
|
|
|
|
else
|
|
|
|
|
return COFF_SYMBOL_COMMON;
|
|
|
|
|
}
|
|
|
|
|
return COFF_SYMBOL_GLOBAL;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
#ifdef COFF_WITH_PE
|
|
|
|
|
if (syment->n_sclass == C_STAT)
|
|
|
|
|
{
|
|
|
|
|
if (syment->n_scnum == 0)
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* The Microsoft compiler sometimes generates these if a
|
|
|
|
|
small static function is inlined every time it is used.
|
|
|
|
|
The function is discarded, but the symbol table entry
|
|
|
|
|
remains. */
|
|
|
|
|
return COFF_SYMBOL_LOCAL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-09-12 01:46:09 +02:00
|
|
|
|
#ifdef STRICT_PE_FORMAT
|
1999-08-08 18:50:27 +02:00
|
|
|
|
/* This is correct for Microsoft generated objects, but it
|
2008-08-05 05:03:46 +02:00
|
|
|
|
breaks gas generated objects. */
|
1999-08-05 23:01:37 +02:00
|
|
|
|
if (syment->n_value == 0)
|
|
|
|
|
{
|
|
|
|
|
asection *sec;
|
|
|
|
|
char buf[SYMNMLEN + 1];
|
|
|
|
|
|
|
|
|
|
sec = coff_section_from_bfd_index (abfd, syment->n_scnum);
|
|
|
|
|
if (sec != NULL
|
|
|
|
|
&& (strcmp (bfd_get_section_name (abfd, sec),
|
|
|
|
|
_bfd_coff_internal_syment_name (abfd, syment, buf))
|
|
|
|
|
== 0))
|
|
|
|
|
return COFF_SYMBOL_PE_SECTION;
|
|
|
|
|
}
|
1999-08-08 18:50:27 +02:00
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
return COFF_SYMBOL_LOCAL;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
if (syment->n_sclass == C_SECTION)
|
|
|
|
|
{
|
|
|
|
|
/* In some cases in a DLL generated by the Microsoft linker, the
|
2008-08-05 05:03:46 +02:00
|
|
|
|
n_value field will contain garbage. FIXME: This should
|
|
|
|
|
probably be handled by the swapping function instead. */
|
1999-08-05 23:01:37 +02:00
|
|
|
|
syment->n_value = 0;
|
|
|
|
|
if (syment->n_scnum == 0)
|
|
|
|
|
return COFF_SYMBOL_UNDEFINED;
|
|
|
|
|
return COFF_SYMBOL_PE_SECTION;
|
|
|
|
|
}
|
|
|
|
|
#endif /* COFF_WITH_PE */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
/* If it is not a global symbol, we presume it is a local symbol. */
|
|
|
|
|
if (syment->n_scnum == 0)
|
|
|
|
|
{
|
|
|
|
|
char buf[SYMNMLEN + 1];
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("warning: %B: local symbol `%s' has no section"),
|
|
|
|
|
abfd, _bfd_coff_internal_syment_name (abfd, syment, buf));
|
1999-08-05 23:01:37 +02:00
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
1999-08-05 23:01:37 +02:00
|
|
|
|
return COFF_SYMBOL_LOCAL;
|
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
SUBSUBSECTION
|
|
|
|
|
Reading relocations
|
|
|
|
|
|
|
|
|
|
Coff relocations are easily transformed into the internal BFD form
|
|
|
|
|
(@code{arelent}).
|
|
|
|
|
|
|
|
|
|
Reading a coff relocation table is done in the following stages:
|
|
|
|
|
|
|
|
|
|
o Read the entire coff relocation table into memory.
|
|
|
|
|
|
|
|
|
|
o Process each relocation in turn; first swap it from the
|
|
|
|
|
external to the internal form.
|
|
|
|
|
|
|
|
|
|
o Turn the symbol referenced in the relocation's symbol index
|
|
|
|
|
into a pointer into the canonical symbol table.
|
|
|
|
|
This table is the same as the one returned by a call to
|
|
|
|
|
@code{bfd_canonicalize_symtab}. The back end will call that
|
|
|
|
|
routine and save the result if a canonicalization hasn't been done.
|
|
|
|
|
|
|
|
|
|
o The reloc index is turned into a pointer to a howto
|
|
|
|
|
structure, in a back end specific way. For instance, the 386
|
|
|
|
|
and 960 use the @code{r_type} to directly produce an index
|
|
|
|
|
into a howto table vector; the 88k subtracts a number from the
|
|
|
|
|
@code{r_type} field and creates an addend field.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef CALC_ADDEND
|
2008-08-05 05:03:46 +02:00
|
|
|
|
#define CALC_ADDEND(abfd, ptr, reloc, cache_ptr) \
|
|
|
|
|
{ \
|
|
|
|
|
coff_symbol_type *coffsym = NULL; \
|
|
|
|
|
\
|
|
|
|
|
if (ptr && bfd_asymbol_bfd (ptr) != abfd) \
|
|
|
|
|
coffsym = (obj_symbols (abfd) \
|
|
|
|
|
+ (cache_ptr->sym_ptr_ptr - symbols)); \
|
|
|
|
|
else if (ptr) \
|
|
|
|
|
coffsym = coff_symbol_from (abfd, ptr); \
|
|
|
|
|
if (coffsym != NULL \
|
|
|
|
|
&& coffsym->native->u.syment.n_scnum == 0) \
|
|
|
|
|
cache_ptr->addend = 0; \
|
|
|
|
|
else if (ptr && bfd_asymbol_bfd (ptr) == abfd \
|
|
|
|
|
&& ptr->section != NULL) \
|
|
|
|
|
cache_ptr->addend = - (ptr->section->vma + ptr->value); \
|
|
|
|
|
else \
|
|
|
|
|
cache_ptr->addend = 0; \
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_slurp_reloc_table (bfd * abfd, sec_ptr asect, asymbol ** symbols)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
RELOC *native_relocs;
|
|
|
|
|
arelent *reloc_cache;
|
|
|
|
|
arelent *cache_ptr;
|
|
|
|
|
unsigned int idx;
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
bfd_size_type amt;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
if (asect->relocation)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (asect->reloc_count == 0)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (asect->flags & SEC_CONSTRUCTOR)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
if (!coff_slurp_symbol_table (abfd))
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
Touches most files in bfd/, so likely will be blamed for everything..
o bfd_read and bfd_write lose an unnecessary param and become
bfd_bread and bfd_bwrite.
o bfd_*alloc now all take a bfd_size_type arg, and will error if
size_t is too small. eg. 32 bit host, 64 bit bfd, verrry big files
or bugs in linker scripts etc.
o file_ptr becomes a bfd_signed_vma. Besides matching sizes with
various other types involved in handling sections, this should make
it easier for bfd to support a 64 bit off_t on 32 bit hosts that
provide it.
o I've made the H_GET_* and H_PUT_* macros (which invoke bfd_h_{get,put}_*)
generally available. They now cast their args to bfd_vma and
bfd_byte * as appropriate, which removes a swag of casts from the
source.
o Bug fixes to bfd_get8, aix386_core_vec, elf32_h8_relax_section, and
aout-encap.c.
o Zillions of formatting and -Wconversion fixes.
2001-09-18 11:57:26 +02:00
|
|
|
|
amt = (bfd_size_type) bfd_coff_relsz (abfd) * asect->reloc_count;
|
|
|
|
|
native_relocs = (RELOC *) buy_and_read (abfd, asect->rel_filepos, amt);
|
|
|
|
|
amt = (bfd_size_type) asect->reloc_count * sizeof (arelent);
|
2009-09-09 23:38:59 +02:00
|
|
|
|
reloc_cache = (arelent *) bfd_alloc (abfd, amt);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2005-06-17 15:39:56 +02:00
|
|
|
|
if (reloc_cache == NULL || native_relocs == NULL)
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
for (idx = 0; idx < asect->reloc_count; idx++)
|
|
|
|
|
{
|
|
|
|
|
struct internal_reloc dst;
|
|
|
|
|
struct external_reloc *src;
|
|
|
|
|
#ifndef RELOC_PROCESSING
|
|
|
|
|
asymbol *ptr;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
cache_ptr = reloc_cache + idx;
|
|
|
|
|
src = native_relocs + idx;
|
|
|
|
|
|
2007-04-24 15:05:46 +02:00
|
|
|
|
dst.r_offset = 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_swap_reloc_in (abfd, src, &dst);
|
|
|
|
|
|
|
|
|
|
#ifdef RELOC_PROCESSING
|
|
|
|
|
RELOC_PROCESSING (cache_ptr, &dst, symbols, abfd, asect);
|
|
|
|
|
#else
|
|
|
|
|
cache_ptr->address = dst.r_vaddr;
|
|
|
|
|
|
|
|
|
|
if (dst.r_symndx != -1)
|
|
|
|
|
{
|
|
|
|
|
if (dst.r_symndx < 0 || dst.r_symndx >= obj_conv_table_size (abfd))
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: warning: illegal symbol index %ld in relocs"),
|
|
|
|
|
abfd, dst.r_symndx);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
|
|
|
|
ptr = NULL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cache_ptr->sym_ptr_ptr = (symbols
|
|
|
|
|
+ obj_convert (abfd)[dst.r_symndx]);
|
|
|
|
|
ptr = *(cache_ptr->sym_ptr_ptr);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
cache_ptr->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr;
|
|
|
|
|
ptr = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* The symbols definitions that we have read in have been
|
|
|
|
|
relocated as if their sections started at 0. But the offsets
|
|
|
|
|
refering to the symbols in the raw data have not been
|
|
|
|
|
modified, so we have to have a negative addend to compensate.
|
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
Note that symbols which used to be common must be left alone. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Calculate any reloc addend by looking at the symbol. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
CALC_ADDEND (abfd, ptr, dst, cache_ptr);
|
|
|
|
|
|
|
|
|
|
cache_ptr->address -= asect->vma;
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* !! cache_ptr->section = NULL;*/
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* Fill in the cache_ptr->howto field from dst.r_type. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
RTYPE2HOWTO (cache_ptr, &dst);
|
|
|
|
|
#endif /* RELOC_PROCESSING */
|
|
|
|
|
|
|
|
|
|
if (cache_ptr->howto == NULL)
|
|
|
|
|
{
|
|
|
|
|
(*_bfd_error_handler)
|
bfd/
* bfd.c (_bfd_default_error_handler): Handle %A and %B.
(bfd_archive_filename, bfd_get_section_ident): Delete.
* ecofflink.c (bfd_ecoff_debug_accumulate_other): Don't call
bfd_archive_filename.
* elflink.c (elf_link_input_bfd): Don't use callbacks->error_handler
to warn about symbols in discarded sections. Use _bfd_error_handler.
* aout-adobe.c (aout_adobe_callback): See below.
* aout-cris.c (swap_ext_reloc_in): ..
* coff-arm.c (find_thumb_glue, find_arm_glue,
coff_arm_relocate_section, bfd_arm_process_before_allocation,
coff_arm_merge_private_bfd_data, _bfd_coff_arm_set_private_flags,
coff_arm_copy_private_bfd_data): ..
* coff-i860.c (i860_reloc_processing): ..
* coff-mcore.c (mcore_coff_unsupported_reloc,
coff_mcore_relocate_section): ..
* coff-ppc.c (coff_ppc_relocate_section): ..
* coff-rs6000.c (xcoff_create_csect_from_smclas
* coff-sh.c (sh_relax_section, sh_relax_delete_bytes,
sh_swap_insns, sh_relocate_section): ..
* coff-tic54x.c (tic54x_reloc_processing): ..
* coff-tic80.c (coff_tic80_relocate_section): ..
* coff64-rs6000.c (xcoff64_create_csect_from_smclas): ..
* coffcode.h (styp_to_sec_flags, coff_slurp_line_table,
coff_slurp_symbol_table, coff_classify_symbol,
coff_slurp_reloc_table): ..
* coffgen.c (_bfd_coff_read_string_table): ..
* cofflink.c (coff_link_add_symbols, _bfd_coff_link_input_bfd,
_bfd_coff_generic_relocate_section): ..
* cpu-arm.c (bfd_arm_merge_machines): ..
* cpu-sh.c (sh_merge_bfd_arch): ..
* elf-hppa.h (elf_hppa_relocate_section): ..
* elf.c (bfd_elf_string_from_elf_section, setup_group,
_bfd_elf_setup_group_pointers, bfd_section_from_shdr,
assign_section_numbers, _bfd_elf_symbol_from_bfd_symbol,
copy_private_bfd_data, _bfd_elf_validate_reloc): ..
* elf32-arm.h (find_thumb_glue, find_arm_glue,
bfd_elf32_arm_process_before_allocation, elf32_thumb_to_arm_stub,
elf32_arm_to_thumb_stub, elf32_arm_final_link_relocate,
elf32_arm_relocate_section, elf32_arm_set_private_flags,
elf32_arm_copy_private_bfd_data, elf32_arm_merge_private_bfd_data): ..
* elf32-cris.c (cris_elf_relocate_section, cris_elf_check_relocs,
cris_elf_merge_private_bfd_data
* elf32-frv.c (elf32_frv_relocate_section, elf32_frv_check_relocs): ..
* elf32-gen.c (elf32_generic_link_add_symbols): ..
* elf32-hppa.c (hppa_add_stub, hppa_build_one_stub,
elf32_hppa_check_relocs, get_local_syms, final_link_relocate,
elf32_hppa_relocate_section): ..
* elf32-i370.c (i370_elf_merge_private_bfd_data,
i370_elf_check_relocs, i370_elf_relocate_section): ..
* elf32-i386.c (elf_i386_info_to_howto_rel, elf_i386_check_relocs,
elf_i386_relocate_section): ..
* elf32-m32r.c (m32r_elf_relocate_section,
m32r_elf_merge_private_bfd_data): ..
* elf32-m68hc1x.c (m68hc12_add_stub,
_bfd_m68hc11_elf_merge_private_bfd_data): ..
* elf32-m68k.c (elf_m68k_relocate_section): ..
* elf32-mcore.c (mcore_elf_unsupported_reloc,
mcore_elf_relocate_section): ..
* elf32-ppc.c (ppc_elf_merge_private_bfd_data, bad_shared_reloc,
ppc_elf_check_relocs, ppc_elf_relocate_section,
ppc_elf_begin_write_processing): ..
* elf32-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf32-sh-symbian.c (sh_symbian_import_as,
sh_symbian_process_embedded_commands,
sh_symbian_relocate_section): ..
* elf32-sh.c (sh_elf_relax_section, sh_elf_relax_delete_bytes,
sh_elf_swap_insns, sh_elf_relocate_section, sh_elf_check_relocs,
sh_elf_merge_private_data): ..
* elf32-sparc.c (elf32_sparc_check_relocs,
elf32_sparc_relocate_section,
elf32_sparc_merge_private_bfd_data): ..
* elf32-v850.c (v850_elf_check_relocs,
v850_elf_merge_private_bfd_data): ..
* elf32-xtensa.c (elf_xtensa_check_relocs,
elf_xtensa_relocate_section, elf_xtensa_merge_private_bfd_data): ..
* elf64-alpha.c (elf64_alpha_relax_with_lituse,
elf64_alpha_relax_got_load, elf64_alpha_size_got_sections,
elf64_alpha_relocate_section_r, elf64_alpha_relocate_section): ..
* elf64-gen.c (elf64_generic_link_add_symbols): ..
* elf64-ppc.c (ppc64_elf_merge_private_bfd_data, ppc_add_stub,
ppc64_elf_check_relocs, ppc64_elf_edit_opd,
ppc64_elf_relocate_section): ..
* elf64-s390.c (elf_s390_check_relocs, invalid_tls_insn,
elf_s390_relocate_section): ..
* elf64-sh64.c (sh_elf64_relocate_section): ..
* elf64-sparc.c (sparc64_elf_check_relocs,
sparc64_elf_add_symbol_hook, sparc64_elf_relocate_section,
sparc64_elf_merge_private_bfd_data): ..
* elf64-x86-64.c (elf64_x86_64_check_relocs,
elf64_x86_64_relocate_section): ..
* elflink.c (_bfd_elf_add_default_symbol,
_bfd_elf_link_assign_sym_version, elf_link_read_relocs_from_section,
_bfd_elf_link_output_relocs, elf_link_add_object_symbols,
bfd_elf_size_dynamic_sections, elf_link_output_extsym,
elf_get_linked_section_vma, elf_fixup_link_order,
bfd_elf_final_link, bfd_elf_gc_record_vtinherit,
bfd_elf_gc_record_vtinherit, _bfd_elf_section_already_linked): ..
* elfxx-ia64.c (elfNN_ia64_relax_section,
elfNN_ia64_relocate_section, elfNN_ia64_merge_private_bfd_data): ..
* elfxx-mips.c (mips_elf_perform_relocation,
_bfd_mips_elf_check_relocs,
_bfd_mips_elf_merge_private_bfd_data): ..
* ieee.c (ieee_slurp_external_symbols): ..
* ihex.c (ihex_bad_byte, ihex_scan, ihex_read_section): ..
* libbfd.c (_bfd_generic_verify_endian_match): ..
* linker.c (_bfd_generic_link_add_one_symbol,
_bfd_generic_section_already_linked): ..
* pdp11.c (translate_to_native_sym_flags): ..
* pe-mips.c (coff_pe_mips_relocate_section): ..
* peicode.h (pe_ILF_build_a_bfd): ..
* srec.c (srec_bad_byte): ..
* stabs.c (_bfd_link_section_stabs): ..
* xcofflink.c (xcoff_link_add_symbols, xcoff_link_input_bfd): ..
Replace all uses of bfd_archive_filename and bfd_get_section_ident
with corresponding %B and %A in _bfd_error_handler format string.
Replace occurrences of "fprintf (stderr," with _bfd_error_handler
calls to use %A and %B. Fix "against symbol .. from section" and
similar error messages. Combine multiple _bfd_error_handler calls
where they were separated due to bfd_archive_filename deficiencies.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h (struct bfd_link_callbacks): Remove "error_handler".
(LD_DEFINITION_IN_DISCARDED_SECTION): Delete.
ld/
* ldmain.c (link_callbacks): Remove "error_handler".
* ldmisc.c: Include elf-bfd.h.
(vfinfo): Sort comment. Handle %A. Use %A instead of
bfd_get_section_indent.
(error_handler): Delete.
* ldmisc.h (error_handler): Delete declaration.
2004-08-13 05:16:01 +02:00
|
|
|
|
(_("%B: illegal relocation type %d at address 0x%lx"),
|
|
|
|
|
abfd, dst.r_type, (long) dst.r_vaddr);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
bfd_set_error (bfd_error_bad_value);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
asect->relocation = reloc_cache;
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef coff_rtype_to_howto
|
|
|
|
|
#ifdef RTYPE2HOWTO
|
|
|
|
|
|
|
|
|
|
/* Get the howto structure for a reloc. This is only used if the file
|
|
|
|
|
including this one defines coff_relocate_section to be
|
|
|
|
|
_bfd_coff_generic_relocate_section, so it is OK if it does not
|
|
|
|
|
always work. It is the responsibility of the including file to
|
|
|
|
|
make sure it is reasonable if it is needed. */
|
|
|
|
|
|
|
|
|
|
static reloc_howto_type *
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_rtype_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
asection *sec ATTRIBUTE_UNUSED,
|
|
|
|
|
struct internal_reloc *rel,
|
|
|
|
|
struct coff_link_hash_entry *h ATTRIBUTE_UNUSED,
|
|
|
|
|
struct internal_syment *sym ATTRIBUTE_UNUSED,
|
|
|
|
|
bfd_vma *addendp ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
arelent genrel;
|
|
|
|
|
|
2007-04-19 15:36:41 +02:00
|
|
|
|
genrel.howto = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
RTYPE2HOWTO (&genrel, rel);
|
|
|
|
|
return genrel.howto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#else /* ! defined (RTYPE2HOWTO) */
|
|
|
|
|
|
|
|
|
|
#define coff_rtype_to_howto NULL
|
|
|
|
|
|
|
|
|
|
#endif /* ! defined (RTYPE2HOWTO) */
|
|
|
|
|
#endif /* ! defined (coff_rtype_to_howto) */
|
|
|
|
|
|
|
|
|
|
/* This is stupid. This function should be a boolean predicate. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
static long
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_canonicalize_reloc (bfd * abfd,
|
|
|
|
|
sec_ptr section,
|
|
|
|
|
arelent ** relptr,
|
|
|
|
|
asymbol ** symbols)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
arelent *tblptr = section->relocation;
|
|
|
|
|
unsigned int count = 0;
|
|
|
|
|
|
|
|
|
|
if (section->flags & SEC_CONSTRUCTOR)
|
|
|
|
|
{
|
2003-02-14 12:16:09 +01:00
|
|
|
|
/* This section has relocs made up by us, they are not in the
|
|
|
|
|
file, so take them out of their chain and place them into
|
|
|
|
|
the data area provided. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
arelent_chain *chain = section->constructor_chain;
|
2003-02-14 12:16:09 +01:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
for (count = 0; count < section->reloc_count; count++)
|
|
|
|
|
{
|
|
|
|
|
*relptr++ = &chain->relent;
|
|
|
|
|
chain = chain->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (! coff_slurp_reloc_table (abfd, section, symbols))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
tblptr = section->relocation;
|
|
|
|
|
|
|
|
|
|
for (; count++ < section->reloc_count;)
|
|
|
|
|
*relptr++ = tblptr++;
|
|
|
|
|
}
|
|
|
|
|
*relptr = 0;
|
|
|
|
|
return section->reloc_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifndef coff_reloc16_estimate
|
|
|
|
|
#define coff_reloc16_estimate dummy_reloc16_estimate
|
|
|
|
|
|
|
|
|
|
static int
|
2005-04-21 09:45:39 +02:00
|
|
|
|
dummy_reloc16_estimate (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
asection *input_section ATTRIBUTE_UNUSED,
|
|
|
|
|
arelent *reloc ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned int shrink ATTRIBUTE_UNUSED,
|
|
|
|
|
struct bfd_link_info *link_info ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
abort ();
|
1999-08-18 08:00:13 +02:00
|
|
|
|
return 0;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_reloc16_extra_cases
|
|
|
|
|
|
|
|
|
|
#define coff_reloc16_extra_cases dummy_reloc16_extra_cases
|
|
|
|
|
|
|
|
|
|
/* This works even if abort is not declared in any header file. */
|
|
|
|
|
|
|
|
|
|
static void
|
2005-04-21 09:45:39 +02:00
|
|
|
|
dummy_reloc16_extra_cases (bfd *abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
struct bfd_link_info *link_info ATTRIBUTE_UNUSED,
|
|
|
|
|
struct bfd_link_order *link_order ATTRIBUTE_UNUSED,
|
|
|
|
|
arelent *reloc ATTRIBUTE_UNUSED,
|
|
|
|
|
bfd_byte *data ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned int *src_ptr ATTRIBUTE_UNUSED,
|
|
|
|
|
unsigned int *dst_ptr ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
abort ();
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-04-04 21:53:38 +02:00
|
|
|
|
#ifndef coff_bfd_link_hash_table_free
|
|
|
|
|
#define coff_bfd_link_hash_table_free _bfd_generic_link_hash_table_free
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
/* If coff_relocate_section is defined, we can use the optimized COFF
|
|
|
|
|
backend linker. Otherwise we must continue to use the old linker. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef coff_relocate_section
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_bfd_link_hash_table_create
|
|
|
|
|
#define coff_bfd_link_hash_table_create _bfd_coff_link_hash_table_create
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_bfd_link_add_symbols
|
|
|
|
|
#define coff_bfd_link_add_symbols _bfd_coff_link_add_symbols
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_bfd_final_link
|
|
|
|
|
#define coff_bfd_final_link _bfd_coff_final_link
|
|
|
|
|
#endif
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else /* ! defined (coff_relocate_section) */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define coff_relocate_section NULL
|
|
|
|
|
#ifndef coff_bfd_link_hash_table_create
|
|
|
|
|
#define coff_bfd_link_hash_table_create _bfd_generic_link_hash_table_create
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_bfd_link_add_symbols
|
|
|
|
|
#define coff_bfd_link_add_symbols _bfd_generic_link_add_symbols
|
|
|
|
|
#endif
|
|
|
|
|
#define coff_bfd_final_link _bfd_generic_final_link
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif /* ! defined (coff_relocate_section) */
|
|
|
|
|
|
2005-04-21 09:45:39 +02:00
|
|
|
|
#define coff_bfd_link_just_syms _bfd_generic_link_just_syms
|
2009-11-23 15:41:33 +01:00
|
|
|
|
#define coff_bfd_copy_link_hash_symbol_type \
|
|
|
|
|
_bfd_generic_copy_link_hash_symbol_type
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define coff_bfd_link_split_section _bfd_generic_link_split_section
|
|
|
|
|
|
|
|
|
|
#ifndef coff_start_final_link
|
|
|
|
|
#define coff_start_final_link NULL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_adjust_symndx
|
|
|
|
|
#define coff_adjust_symndx NULL
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_link_add_one_symbol
|
|
|
|
|
#define coff_link_add_one_symbol _bfd_generic_link_add_one_symbol
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_link_output_has_begun
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_link_output_has_begun (bfd * abfd,
|
|
|
|
|
struct coff_final_link_info * info ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
return abfd->output_has_begun;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_final_link_postscript
|
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
|
static bfd_boolean
|
2005-04-21 09:45:39 +02:00
|
|
|
|
coff_final_link_postscript (bfd * abfd ATTRIBUTE_UNUSED,
|
|
|
|
|
struct coff_final_link_info * pfinfo ATTRIBUTE_UNUSED)
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
2002-11-30 09:39:46 +01:00
|
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_SWAP_aux_in
|
|
|
|
|
#define coff_SWAP_aux_in coff_swap_aux_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_sym_in
|
|
|
|
|
#define coff_SWAP_sym_in coff_swap_sym_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_lineno_in
|
|
|
|
|
#define coff_SWAP_lineno_in coff_swap_lineno_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_aux_out
|
|
|
|
|
#define coff_SWAP_aux_out coff_swap_aux_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_sym_out
|
|
|
|
|
#define coff_SWAP_sym_out coff_swap_sym_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_lineno_out
|
|
|
|
|
#define coff_SWAP_lineno_out coff_swap_lineno_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_reloc_out
|
|
|
|
|
#define coff_SWAP_reloc_out coff_swap_reloc_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_filehdr_out
|
|
|
|
|
#define coff_SWAP_filehdr_out coff_swap_filehdr_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_aouthdr_out
|
|
|
|
|
#define coff_SWAP_aouthdr_out coff_swap_aouthdr_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_scnhdr_out
|
|
|
|
|
#define coff_SWAP_scnhdr_out coff_swap_scnhdr_out
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_reloc_in
|
|
|
|
|
#define coff_SWAP_reloc_in coff_swap_reloc_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_filehdr_in
|
|
|
|
|
#define coff_SWAP_filehdr_in coff_swap_filehdr_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_aouthdr_in
|
|
|
|
|
#define coff_SWAP_aouthdr_in coff_swap_aouthdr_in
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef coff_SWAP_scnhdr_in
|
|
|
|
|
#define coff_SWAP_scnhdr_in coff_swap_scnhdr_in
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
static bfd_coff_backend_data bfd_coff_std_swap_table ATTRIBUTE_UNUSED =
|
1999-05-03 09:29:11 +02:00
|
|
|
|
{
|
|
|
|
|
coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
|
|
|
|
|
coff_SWAP_aux_out, coff_SWAP_sym_out,
|
|
|
|
|
coff_SWAP_lineno_out, coff_SWAP_reloc_out,
|
|
|
|
|
coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
|
|
|
|
|
coff_SWAP_scnhdr_out,
|
1999-09-07 06:28:27 +02:00
|
|
|
|
FILHSZ, AOUTSZ, SCNHSZ, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifdef COFF_LONG_FILENAMES
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
2009-02-18 19:23:08 +01:00
|
|
|
|
COFF_DEFAULT_LONG_SECTION_NAMES,
|
2000-07-31 20:49:56 +02:00
|
|
|
|
COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
|
2002-11-30 09:39:46 +01:00
|
|
|
|
TRUE,
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#else
|
2002-11-30 09:39:46 +01:00
|
|
|
|
FALSE,
|
Add XCOFF64 support.
bfd:
* Makefile.am (coff64-rs6000.lo): New rule.
* Makefile.in: Regenerate.
* coff-rs6000.c (xcoff_mkobject, xcoff_copy_private_bfd_data,
xcoff_is_local_label_name, xcoff_rtype2howto,
xcoff_reloc_type_lookup, xcoff_slurp_armap, xcoff_archive_p,
xcoff_read_ar_hdr, xcoff_openr_next_archived_file, xcoff_write_armap,
xcoff_write_archive_contents): No longer static, and prefix with _bfd_.
(NO_COFF_SYMBOLS): Define.
(xcoff64_swap_sym_in, xcoff64_swap_sym_out, xcoff64_swap_aux_in,
xcoff64_swap_aux_out): New functions; handle xcoff symbol tables
internally.
(MINUS_ONE): New macro.
(xcoff_howto_tabl, xcoff_reloc_type_lookup): Add 64 bit POS
relocation.
(coff_SWAP_sym_in, coff_SWAP_sym_out, coff_SWAP_aux_in,
coff_SWAP_aux_out): Map to the new functions.
* coff64-rs6000.c: New file.
* libcoff.h (bfd_coff_backend_data): Add new fields
_bfd_coff_force_symnames_in_strings and
_bfd_coff_debug_string_prefix_length.
(bfd_coff_force_symnames_in_strings,
bfd_coff_debug_string_prefix_length): New macros for above fields.
* coffcode.h (coff_set_arch_mach_hook): Handle XCOFF64 magic.
Set machine to 620 for XCOFF64. Use bfd_coff_swap_sym_in instead
of using coff_swap_sym_in directly.
(FORCE_SYMNAMES_IN_STRINGS): New macro, defined for XCOFF64.
(coff_set_flags) Set magic for XCOFF64.
(coff_compute_section_file_positions): Add symbol name length to
string section length if bfd_coff_debug_string_prefix_length is
true.
(coff_write_object_contents): Don't do reloc overflow for XCOFF64.
(coff_slurp_line_table): Use bfd_coff_swap_lineno_in instead of
using coff_swap_lineno_in directly.
(bfd_coff_backend_data): Add _bfd_coff_force_symnames_in_strings
and _bfd_coff_debug_string_prefix_length fields.
* coffgen.c (coff_fix_symbol_name, coff_write_symbols): Force
symbol names into strings table when
bfd_coff_force_symnames_in_strings is true.
* coffswap.h (MAX_SCNHDR_NRELOC, MAX_SCNHDR_NLNNO, GET_RELOC_VADDR,
SET_RELOC_VADDR): New macros.
(coff_swap_reloc_in, coff_swap_reloc_out): Use above macros.
(coff_swap_aux_in, coff_swap_aux_out): Remove RS6000COFF_C
code.
(coff_swap_aouthdr_in, coff_swap_aouthdr_out): Handle XCOFF64
changes within RS6000COFF_C specific code.
(coff_swap_scnhdr_out): Use PUT_SCNHDR_NLNNO, PUT_SCNHDR_NRELOC,
MAX_SCNHDR_NRELOC, and MAX_SCNHDR_NLNNO.
* reloc.c (bfd_perform_relocation, bfd_install_relocation):
Extend existing hack on target name.
* xcofflink.c (XCOFF_XVECP): Extend existing hack on
target name.
* coff-tic54x.c (ticof): Keep up to date with new fields
in bfd_coff_backend_data.
* config.bfd: Add bfd_powerpc_64_arch to targ_arch and define
targ_selvecs to include rs6000coff64_vec for rs6000.
* configure.in: Add rs6000coff64_vec case.
* cpu-powerpc.c: New bfd_arch_info_type.
gas:
* as.c (parse_args): Allow md_parse_option to override -a listing
option.
* config/obj-coff.c (add_lineno): Change type of offset parameter
from "int" to "bfd_vma."
* config/tc-ppc.c (md_pseudo_table): Add "llong" and "machine."
(ppc_mach, ppc_subseg_align, ppc_target_format): New.
(ppc_change_csect): Align correctly for XCOFF64.
(ppc_machine): New function, which discards "ppc_machine" line.
(ppc_tc): Cons for 8 when code is 64 bit.
(md_apply_fix3): Don't check operand->insert. Handle 64 bit
relocations.
(md_parse_option): Handle -a64 and -a32.
(ppc_xcoff64): New.
* config/tc-ppc.h (TARGET_MACH): Define.
(TARGET_FORMAT): Move to function.
(SUB_SEGMENT_ALIGN): Use ppc_subseg_align.
include:
* include/coff/rs6k64.h: New file.
opcodes:
* configure.in: Add bfd_powerpc_64_arch.
* disassemble.c (disassembler): Use print_insn_big_powerpc for
64 bit code.
2000-04-26 17:09:44 +02:00
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
|
|
|
|
|
4,
|
|
|
|
|
#else
|
|
|
|
|
2,
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
|
|
|
|
|
coff_SWAP_reloc_in, coff_bad_format_hook, coff_set_arch_mach_hook,
|
|
|
|
|
coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
|
|
|
|
|
coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
|
|
|
|
|
coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
|
1999-08-05 23:01:37 +02:00
|
|
|
|
coff_classify_symbol, coff_compute_section_file_positions,
|
1999-05-03 09:29:11 +02:00
|
|
|
|
coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
|
|
|
|
|
coff_adjust_symndx, coff_link_add_one_symbol,
|
2008-07-18 13:30:22 +02:00
|
|
|
|
coff_link_output_has_begun, coff_final_link_postscript,
|
|
|
|
|
bfd_pe_print_pdata
|
1999-05-03 09:29:11 +02:00
|
|
|
|
};
|
|
|
|
|
|
2003-06-04 13:38:30 +02:00
|
|
|
|
#ifdef TICOFF
|
|
|
|
|
/* COFF0 differs in file/section header size and relocation entry size. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
static bfd_coff_backend_data ticoff0_swap_table =
|
2003-06-04 13:38:30 +02:00
|
|
|
|
{
|
|
|
|
|
coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
|
|
|
|
|
coff_SWAP_aux_out, coff_SWAP_sym_out,
|
|
|
|
|
coff_SWAP_lineno_out, coff_SWAP_reloc_out,
|
|
|
|
|
coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
|
|
|
|
|
coff_SWAP_scnhdr_out,
|
|
|
|
|
FILHSZ_V0, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ_V0, LINESZ, FILNMLEN,
|
|
|
|
|
#ifdef COFF_LONG_FILENAMES
|
|
|
|
|
TRUE,
|
|
|
|
|
#else
|
|
|
|
|
FALSE,
|
|
|
|
|
#endif
|
2009-02-18 19:23:08 +01:00
|
|
|
|
COFF_DEFAULT_LONG_SECTION_NAMES,
|
2003-06-04 13:38:30 +02:00
|
|
|
|
COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
|
|
|
|
|
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
|
|
|
|
|
TRUE,
|
|
|
|
|
#else
|
|
|
|
|
FALSE,
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
|
|
|
|
|
4,
|
|
|
|
|
#else
|
|
|
|
|
2,
|
|
|
|
|
#endif
|
|
|
|
|
coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
|
|
|
|
|
coff_SWAP_reloc_in, ticoff0_bad_format_hook, coff_set_arch_mach_hook,
|
|
|
|
|
coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
|
|
|
|
|
coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
|
|
|
|
|
coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
|
|
|
|
|
coff_classify_symbol, coff_compute_section_file_positions,
|
|
|
|
|
coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
|
|
|
|
|
coff_adjust_symndx, coff_link_add_one_symbol,
|
2008-07-18 13:30:22 +02:00
|
|
|
|
coff_link_output_has_begun, coff_final_link_postscript,
|
|
|
|
|
bfd_pe_print_pdata
|
2003-06-04 13:38:30 +02:00
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef TICOFF
|
|
|
|
|
/* COFF1 differs in section header size. */
|
2005-04-21 09:45:39 +02:00
|
|
|
|
|
2009-02-18 19:23:08 +01:00
|
|
|
|
static bfd_coff_backend_data ticoff1_swap_table =
|
2003-06-04 13:38:30 +02:00
|
|
|
|
{
|
|
|
|
|
coff_SWAP_aux_in, coff_SWAP_sym_in, coff_SWAP_lineno_in,
|
|
|
|
|
coff_SWAP_aux_out, coff_SWAP_sym_out,
|
|
|
|
|
coff_SWAP_lineno_out, coff_SWAP_reloc_out,
|
|
|
|
|
coff_SWAP_filehdr_out, coff_SWAP_aouthdr_out,
|
|
|
|
|
coff_SWAP_scnhdr_out,
|
|
|
|
|
FILHSZ, AOUTSZ, SCNHSZ_V01, SYMESZ, AUXESZ, RELSZ, LINESZ, FILNMLEN,
|
|
|
|
|
#ifdef COFF_LONG_FILENAMES
|
|
|
|
|
TRUE,
|
|
|
|
|
#else
|
|
|
|
|
FALSE,
|
|
|
|
|
#endif
|
2009-02-18 19:23:08 +01:00
|
|
|
|
COFF_DEFAULT_LONG_SECTION_NAMES,
|
2003-06-04 13:38:30 +02:00
|
|
|
|
COFF_DEFAULT_SECTION_ALIGNMENT_POWER,
|
|
|
|
|
#ifdef COFF_FORCE_SYMBOLS_IN_STRINGS
|
|
|
|
|
TRUE,
|
|
|
|
|
#else
|
|
|
|
|
FALSE,
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef COFF_DEBUG_STRING_WIDE_PREFIX
|
|
|
|
|
4,
|
|
|
|
|
#else
|
|
|
|
|
2,
|
|
|
|
|
#endif
|
|
|
|
|
coff_SWAP_filehdr_in, coff_SWAP_aouthdr_in, coff_SWAP_scnhdr_in,
|
|
|
|
|
coff_SWAP_reloc_in, ticoff1_bad_format_hook, coff_set_arch_mach_hook,
|
|
|
|
|
coff_mkobject_hook, styp_to_sec_flags, coff_set_alignment_hook,
|
|
|
|
|
coff_slurp_symbol_table, symname_in_debug_hook, coff_pointerize_aux_hook,
|
|
|
|
|
coff_print_aux, coff_reloc16_extra_cases, coff_reloc16_estimate,
|
|
|
|
|
coff_classify_symbol, coff_compute_section_file_positions,
|
|
|
|
|
coff_start_final_link, coff_relocate_section, coff_rtype_to_howto,
|
|
|
|
|
coff_adjust_symndx, coff_link_add_one_symbol,
|
2008-07-18 13:30:22 +02:00
|
|
|
|
coff_link_output_has_begun, coff_final_link_postscript,
|
|
|
|
|
bfd_pe_print_pdata /* huh */
|
2003-06-04 13:38:30 +02:00
|
|
|
|
};
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_close_and_cleanup
|
2008-08-05 05:03:46 +02:00
|
|
|
|
#define coff_close_and_cleanup _bfd_generic_close_and_cleanup
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_free_cached_info
|
2008-08-05 05:03:46 +02:00
|
|
|
|
#define coff_bfd_free_cached_info _bfd_generic_bfd_free_cached_info
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_get_section_contents
|
2008-08-05 05:03:46 +02:00
|
|
|
|
#define coff_get_section_contents _bfd_generic_get_section_contents
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_copy_private_symbol_data
|
|
|
|
|
#define coff_bfd_copy_private_symbol_data _bfd_generic_bfd_copy_private_symbol_data
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-05-17 18:40:01 +02:00
|
|
|
|
#ifndef coff_bfd_copy_private_header_data
|
|
|
|
|
#define coff_bfd_copy_private_header_data _bfd_generic_bfd_copy_private_header_data
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_bfd_copy_private_section_data
|
|
|
|
|
#define coff_bfd_copy_private_section_data _bfd_generic_bfd_copy_private_section_data
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#ifndef coff_bfd_copy_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define coff_bfd_copy_private_bfd_data _bfd_generic_bfd_copy_private_bfd_data
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_merge_private_bfd_data
|
|
|
|
|
#define coff_bfd_merge_private_bfd_data _bfd_generic_bfd_merge_private_bfd_data
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_set_private_flags
|
2008-08-05 05:03:46 +02:00
|
|
|
|
#define coff_bfd_set_private_flags _bfd_generic_bfd_set_private_flags
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-11-28 22:42:16 +01:00
|
|
|
|
#ifndef coff_bfd_print_private_bfd_data
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#define coff_bfd_print_private_bfd_data _bfd_generic_bfd_print_private_bfd_data
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_is_local_label_name
|
|
|
|
|
#define coff_bfd_is_local_label_name _bfd_coff_is_local_label_name
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-10-08 16:54:04 +02:00
|
|
|
|
#ifndef coff_bfd_is_target_special_symbol
|
|
|
|
|
#define coff_bfd_is_target_special_symbol ((bfd_boolean (*) (bfd *, asymbol *)) bfd_false)
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
|
#ifndef coff_read_minisymbols
|
|
|
|
|
#define coff_read_minisymbols _bfd_generic_read_minisymbols
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_minisymbol_to_symbol
|
|
|
|
|
#define coff_minisymbol_to_symbol _bfd_generic_minisymbol_to_symbol
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* The reloc lookup routine must be supplied by each individual COFF
|
|
|
|
|
backend. */
|
|
|
|
|
#ifndef coff_bfd_reloc_type_lookup
|
|
|
|
|
#define coff_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
|
|
|
|
|
#endif
|
2007-03-26 14:23:03 +02:00
|
|
|
|
#ifndef coff_bfd_reloc_name_lookup
|
|
|
|
|
#define coff_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
|
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_get_relocated_section_contents
|
|
|
|
|
#define coff_bfd_get_relocated_section_contents \
|
|
|
|
|
bfd_generic_get_relocated_section_contents
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_relax_section
|
|
|
|
|
#define coff_bfd_relax_section bfd_generic_relax_section
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef coff_bfd_gc_sections
|
|
|
|
|
#define coff_bfd_gc_sections bfd_generic_gc_sections
|
|
|
|
|
#endif
|
1999-07-19 16:55:16 +02:00
|
|
|
|
|
* merge.c (struct sec_merge_hash_entry): Add u.entsize and u.suffix
fields, change sec into secinfo.
(struct sec_merge_info): Add chain, remove last fields.
(struct sec_merge_sec_info): Add next, sec, psecinfo fields.
(sec_merge_hash_lookup): If lookup could not use a string only
because it has bad alignment, mark the old string for deletion.
(sec_merge_add): Add secinfo argument. Don't compute entry's
position, instead record the section.
(sec_merge_emit): Update for the sec into secinfo change in
struct sec_merge_hash_entry.
(_bfd_merge_section): Only record the section for merging, defer
putting strings into the hash table.
(cmplengthentry, last4_eq, last_eq, record_section, merge_strings,
_bfd_merge_sections): New functions.
(_bfd_merged_section_offset): Update for the sec_merge_hash_entry
changes.
* libbfd-in.h (_bfd_merge_sections): Add prototype.
(_bfd_nolink_bfd_merge_sections): Define.
* libbfd.h: Likewise.
(bfd_generic_merge_sections): Add prototype.
* targets.c (BFD_JUMP_TABLE_LINK): Add _bfd_merge_sections.
(struct bfd_target): Likewise.
* bfd.c (bfd_merge_sections): Define.
* bfd-in2.h: Rebuilt.
* elf.c (_bfd_elf_merge_sections): New function.
* elf-bfd.h (_bfd_elf_merge_sections): Add prototype.
* elfxx-target.h (bfd_elfNN_bfd_merge_sections): Define.
* reloc.c (bfd_generic_merge_sections): New function.
* vms.c (vms_bfd_merge_sections): New function.
* aout-adobe.c (aout_32_bfd_merge_sections): Define.
* aout-target.h (MY_bfd_merge_sections): Define.
* aout-tic30.c (MY_bfd_merge_sections): Define.
* binary.c (binary_bfd_merge_sections): Define.
* bout.c (b_out_bfd_merge_sections): Define.
* coff-alpha.c (_bfd_ecoff_bfd_merge_sections): Define.
* coffcode.c (coff_bfd_merge_sections): Define.
* coff-mips.c (_bfd_ecoff_bfd_merge_sections): Define.
* i386msdos.c (msdos_bfd_merge_sections): Define.
* i386os9k.c (os9k_bfd_merge_sections): Define.
* ieee.c (ieee_bfd_merge_sections): Define.
* ihex.c (ihex_bfd_merge_sections): Define.
* nlm-target.h (nlm_bfd_merge_sections): Define.
* oasys.c (oasys_bfd_merge_sections): Define.
* ppcboot.c (ppcboot_bfd_merge_sections): Define.
* som.c (som_bfd_merge_sections): Define.
* srec.c (srec_bfd_merge_sections): Define.
* tekhex.c (tekhex_bfd_merge_sections): Define.
* versados.c (versados_bfd_merge_sections): Define.
* xcoff-target.h (_bfd_xcoff_bfd_merge_sections): Define.
* ldlang.c (lang_process): Call bfd_merge_sections.
2001-05-11 14:23:48 +02:00
|
|
|
|
#ifndef coff_bfd_merge_sections
|
|
|
|
|
#define coff_bfd_merge_sections bfd_generic_merge_sections
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-04-30 16:23:40 +02:00
|
|
|
|
#ifndef coff_bfd_is_group_section
|
|
|
|
|
#define coff_bfd_is_group_section bfd_generic_is_group_section
|
|
|
|
|
#endif
|
|
|
|
|
|
2002-06-05 05:43:11 +02:00
|
|
|
|
#ifndef coff_bfd_discard_group
|
|
|
|
|
#define coff_bfd_discard_group bfd_generic_discard_group
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-21 17:42:58 +02:00
|
|
|
|
#ifndef coff_section_already_linked
|
|
|
|
|
#define coff_section_already_linked \
|
|
|
|
|
_bfd_generic_section_already_linked
|
|
|
|
|
#endif
|
|
|
|
|
|
2009-04-17 01:07:00 +02:00
|
|
|
|
#ifndef coff_bfd_define_common_symbol
|
|
|
|
|
#define coff_bfd_define_common_symbol bfd_generic_define_common_symbol
|
|
|
|
|
#endif
|
|
|
|
|
|
2003-06-04 12:47:33 +02:00
|
|
|
|
#define CREATE_BIG_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
const bfd_target VAR = \
|
|
|
|
|
{ \
|
|
|
|
|
NAME , \
|
|
|
|
|
bfd_target_coff_flavour, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
BFD_ENDIAN_BIG, /* Data byte order is big. */ \
|
|
|
|
|
BFD_ENDIAN_BIG, /* Header byte order is big. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
/* object flags */ \
|
|
|
|
|
(HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
|
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
|
|
|
|
|
/* section flags */ \
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
|
2005-04-21 09:45:39 +02:00
|
|
|
|
UNDER, /* Leading symbol underscore. */ \
|
|
|
|
|
'/', /* AR_pad_char. */ \
|
|
|
|
|
15, /* AR_max_namelen. */ \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
1999-09-07 06:14:35 +02:00
|
|
|
|
/* Data conversion functions. */ \
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
1999-09-07 06:14:35 +02:00
|
|
|
|
/* Header conversion functions. */ \
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
|
|
|
|
|
\
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_check_format. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ _bfd_dummy_target, coff_object_p, bfd_generic_archive_p, \
|
|
|
|
|
_bfd_dummy_target }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_set_format. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_write_contents. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ bfd_false, coff_write_object_contents, _bfd_write_archive_contents, \
|
|
|
|
|
bfd_false }, \
|
|
|
|
|
\
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_COPY (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore), \
|
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
|
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_LINK (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
1999-09-07 06:14:35 +02:00
|
|
|
|
ALTERNATIVE, \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
SWAP_TABLE \
|
1999-07-19 16:55:16 +02:00
|
|
|
|
};
|
|
|
|
|
|
2003-06-04 12:47:33 +02:00
|
|
|
|
#define CREATE_BIGHDR_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
|
|
|
|
|
const bfd_target VAR = \
|
|
|
|
|
{ \
|
|
|
|
|
NAME , \
|
|
|
|
|
bfd_target_coff_flavour, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
|
|
|
|
|
BFD_ENDIAN_BIG, /* Header byte order is big. */ \
|
2003-06-04 12:47:33 +02:00
|
|
|
|
/* object flags */ \
|
|
|
|
|
(HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
|
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
|
|
|
|
|
/* section flags */ \
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
|
2005-04-21 09:45:39 +02:00
|
|
|
|
UNDER, /* Leading symbol underscore. */ \
|
|
|
|
|
'/', /* AR_pad_char. */ \
|
|
|
|
|
15, /* AR_max_namelen. */ \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
/* Data conversion functions. */ \
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
/* Header conversion functions. */ \
|
|
|
|
|
bfd_getb64, bfd_getb_signed_64, bfd_putb64, \
|
|
|
|
|
bfd_getb32, bfd_getb_signed_32, bfd_putb32, \
|
|
|
|
|
bfd_getb16, bfd_getb_signed_16, bfd_putb16, \
|
|
|
|
|
\
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_check_format. */ \
|
2003-06-04 12:47:33 +02:00
|
|
|
|
{ _bfd_dummy_target, coff_object_p, bfd_generic_archive_p, \
|
|
|
|
|
_bfd_dummy_target }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_set_format. */ \
|
2003-06-04 12:47:33 +02:00
|
|
|
|
{ bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_write_contents. */ \
|
2003-06-04 12:47:33 +02:00
|
|
|
|
{ bfd_false, coff_write_object_contents, _bfd_write_archive_contents, \
|
|
|
|
|
bfd_false }, \
|
|
|
|
|
\
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_COPY (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore), \
|
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
|
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_LINK (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
ALTERNATIVE, \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
SWAP_TABLE \
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define CREATE_LITTLE_COFF_TARGET_VEC(VAR, NAME, EXTRA_O_FLAGS, EXTRA_S_FLAGS, UNDER, ALTERNATIVE, SWAP_TABLE) \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
const bfd_target VAR = \
|
|
|
|
|
{ \
|
|
|
|
|
NAME , \
|
|
|
|
|
bfd_target_coff_flavour, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
BFD_ENDIAN_LITTLE, /* Data byte order is little. */ \
|
|
|
|
|
BFD_ENDIAN_LITTLE, /* Header byte order is little. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
/* object flags */ \
|
|
|
|
|
(HAS_RELOC | EXEC_P | HAS_LINENO | HAS_DEBUG | \
|
|
|
|
|
HAS_SYMS | HAS_LOCALS | WP_TEXT | EXTRA_O_FLAGS), \
|
|
|
|
|
/* section flags */ \
|
|
|
|
|
(SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_RELOC | EXTRA_S_FLAGS),\
|
2005-04-21 09:45:39 +02:00
|
|
|
|
UNDER, /* Leading symbol underscore. */ \
|
|
|
|
|
'/', /* AR_pad_char. */ \
|
|
|
|
|
15, /* AR_max_namelen. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
\
|
|
|
|
|
/* Data conversion functions. */ \
|
|
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
|
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
|
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
|
|
|
|
|
/* Header conversion functions. */ \
|
|
|
|
|
bfd_getl64, bfd_getl_signed_64, bfd_putl64, \
|
|
|
|
|
bfd_getl32, bfd_getl_signed_32, bfd_putl32, \
|
|
|
|
|
bfd_getl16, bfd_getl_signed_16, bfd_putl16, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_check_format. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ _bfd_dummy_target, coff_object_p, bfd_generic_archive_p, \
|
|
|
|
|
_bfd_dummy_target }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_set_format. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ bfd_false, coff_mkobject, _bfd_generic_mkarchive, bfd_false }, \
|
2005-04-21 09:45:39 +02:00
|
|
|
|
/* bfd_write_contents. */ \
|
1999-09-07 06:14:35 +02:00
|
|
|
|
{ bfd_false, coff_write_object_contents, _bfd_write_archive_contents, \
|
|
|
|
|
bfd_false }, \
|
|
|
|
|
\
|
|
|
|
|
BFD_JUMP_TABLE_GENERIC (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_COPY (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_CORE (_bfd_nocore), \
|
|
|
|
|
BFD_JUMP_TABLE_ARCHIVE (_bfd_archive_coff), \
|
|
|
|
|
BFD_JUMP_TABLE_SYMBOLS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_RELOCS (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_WRITE (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_LINK (coff), \
|
|
|
|
|
BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), \
|
|
|
|
|
\
|
|
|
|
|
ALTERNATIVE, \
|
2008-08-05 05:03:46 +02:00
|
|
|
|
\
|
2003-06-04 12:47:33 +02:00
|
|
|
|
SWAP_TABLE \
|
1999-07-19 16:55:16 +02:00
|
|
|
|
};
|