1999-05-03 07:29:11 +00:00
|
|
|
# This shell script emits a C file. -*- C -*-
|
|
|
|
# It does some substitutions.
|
|
|
|
# This file is now misnamed, because it supports both 32 bit and 64 bit
|
|
|
|
# ELF emulations.
|
|
|
|
test -z "${ELFSIZE}" && ELFSIZE=32
|
2001-05-25 05:39:22 +00:00
|
|
|
if [ -z "$MACHINE" ]; then
|
|
|
|
OUTPUT_ARCH=${ARCH}
|
|
|
|
else
|
|
|
|
OUTPUT_ARCH=${ARCH}:${MACHINE}
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
/* This file is is generated by a shell script. DO NOT EDIT! */
|
|
|
|
|
|
|
|
/* ${ELFSIZE} bit ELF emulation code for ${EMULATION_NAME}
|
2015-01-01 14:15:26 +00:00
|
|
|
Copyright (C) 1991-2015 Free Software Foundation, Inc.
|
1999-05-03 07:29:11 +00:00
|
|
|
Written by Steve Chamberlain <sac@cygnus.com>
|
|
|
|
ELF support by Ian Lance Taylor <ian@cygnus.com>
|
|
|
|
|
2007-07-06 14:09:45 +00:00
|
|
|
This file is part of the GNU Binutils.
|
|
|
|
|
|
|
|
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
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
#define TARGET_IS_${EMULATION_NAME}
|
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 14:47:00 +00:00
|
|
|
#include "bfd.h"
|
2001-05-03 06:26:26 +00:00
|
|
|
#include "libiberty.h"
|
2014-04-16 17:47:13 +00:00
|
|
|
#include "safe-ctype.h"
|
2011-02-28 18:34:52 +00:00
|
|
|
#include "filenames.h"
|
2003-02-28 22:55:11 +00:00
|
|
|
#include "getopt.h"
|
2007-07-13 10:44:26 +00:00
|
|
|
#include <fcntl.h>
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
#include "bfdlink.h"
|
|
|
|
|
|
|
|
#include "ld.h"
|
|
|
|
#include "ldmain.h"
|
|
|
|
#include "ldmisc.h"
|
|
|
|
#include "ldexp.h"
|
|
|
|
#include "ldlang.h"
|
2000-07-11 03:42:41 +00:00
|
|
|
#include "ldfile.h"
|
|
|
|
#include "ldemul.h"
|
Add support for generating and inserting build IDs into COFF binaries.
* peXXigen.c (pe_print_debugdata): New function: Displays the
contents of the debug directory and decodes codeview entries.
(_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_slurp_codeview_record, _bfd_XXi_write_codeview_record):
Add functions for reading and writing debugdir and codeview
records.
* libpei.h (_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_write_codeview_record): Add prototypes and macros.
* libcoff-in.h (pe_tdata): Add build-id data.
* libcoff.h: Regenerate.
* coffcode.h (coff_write_object_contents): Run build_id
after_write_object_contents hook.
* pe.h (external_IMAGE_DEBUG_DIRECTORY, _CV_INFO_PDB70)
(_CV_INFO_PDB20): Add structures and constants for debug directory
and codeview records.
* internal.h (internal_IMAGE_DEBUG_DIRECTORY, CODEVIEW_INFO):
Add structures and constants for internal representation of debug
directory and codeview records.
* emultempl/elf32.em (id_note_section_size, read_hex, write_build_id):
Move code for parsing build-id option and calculating the build-id to...
* ldbuildid.c: New file.
* ldbuildid.h: New file.
* Makefile.am (CFILES, HFILES, OFILES, ld_new_SOURCES): Add new
files.
* Makefile.in: Regenerate.
* ld.texinfo: Update --build-id description to mention COFF
support.
* NEWS: Mention support for COFF build ids.
* emultempl/pe.em (gld${EMULATION_NAME}_handle_option):
(pecoff_checksum_contents, write_build_id, setup_build_id)
(gld_${EMULATION_NAME}_after_open): Handle and implement
build-id option.
* emultempl/pep.em: Likewise.
2014-04-08 09:59:43 +00:00
|
|
|
#include "ldbuildid.h"
|
2002-10-30 03:57:39 +00:00
|
|
|
#include <ldgram.h>
|
2000-07-20 03:25:10 +00:00
|
|
|
#include "elf/common.h"
|
2005-10-15 14:57:55 +00:00
|
|
|
#include "elf-bfd.h"
|
2009-10-23 01:21:12 +00:00
|
|
|
#include "filenames.h"
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2003-06-27 00:38:25 +00:00
|
|
|
/* Declare functions used by various EXTRA_EM_FILEs. */
|
|
|
|
static void gld${EMULATION_NAME}_before_parse (void);
|
|
|
|
static void gld${EMULATION_NAME}_after_open (void);
|
|
|
|
static void gld${EMULATION_NAME}_before_allocation (void);
|
2009-08-10 07:50:56 +00:00
|
|
|
static void gld${EMULATION_NAME}_after_allocation (void);
|
2008-10-20 12:14:29 +00:00
|
|
|
static lang_output_section_statement_type *gld${EMULATION_NAME}_place_orphan
|
2008-10-04 06:08:59 +00:00
|
|
|
(asection *, const char *, int);
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
|
|
|
case ${target} in
|
2012-05-16 10:43:41 +00:00
|
|
|
*-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2005-02-16 07:49:26 +00:00
|
|
|
#ifdef HAVE_GLOB
|
2004-10-11 14:12:11 +00:00
|
|
|
#include <glob.h>
|
2005-02-16 07:49:26 +00:00
|
|
|
#endif
|
2004-10-11 14:12:11 +00:00
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
# Import any needed special functions and/or overrides.
|
|
|
|
#
|
2007-07-19 19:56:10 +00:00
|
|
|
source_em ${srcdir}/emultempl/elf-generic.em
|
2000-07-28 01:33:14 +00:00
|
|
|
if test -n "$EXTRA_EM_FILE" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
source_em ${srcdir}/emultempl/${EXTRA_EM_FILE}.em
|
2000-07-28 01:33:14 +00:00
|
|
|
fi
|
|
|
|
|
2001-01-24 06:14:09 +00:00
|
|
|
# Functions in this file can be overridden by setting the LDEMUL_* shell
|
2000-07-28 01:33:14 +00:00
|
|
|
# variables. If the name of the overriding function is the same as is
|
|
|
|
# defined in this file, then don't output this file's version.
|
|
|
|
# If a different overriding name is given then output the standard function
|
|
|
|
# as presumably it is called from the overriding function.
|
|
|
|
#
|
|
|
|
if test x"$LDEMUL_BEFORE_PARSE" != xgld"$EMULATION_NAME"_before_parse; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:33:14 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_before_parse (void)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2004-01-03 11:09:07 +00:00
|
|
|
ldfile_set_output_arch ("${OUTPUT_ARCH}", bfd_arch_`echo ${ARCH} | sed -e 's/:.*//'`);
|
2012-03-05 22:43:40 +00:00
|
|
|
input_flags.dynamic = ${DYNAMIC_LINK-TRUE};
|
2002-11-30 08:39:46 +00:00
|
|
|
config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo TRUE ; else echo FALSE ; fi`;
|
2012-11-21 19:56:38 +00:00
|
|
|
config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo TRUE ; else echo FALSE ; fi`;
|
2013-02-05 01:36:05 +00:00
|
|
|
}
|
|
|
|
|
2013-01-21 08:21:46 +00:00
|
|
|
EOF
|
2013-02-05 01:36:05 +00:00
|
|
|
fi
|
2013-01-21 08:21:46 +00:00
|
|
|
|
2004-03-18 12:50:20 +00:00
|
|
|
if test x"$LDEMUL_RECOGNIZED_FILE" != xgld"${EMULATION_NAME}"_load_symbols; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2009-11-05 15:35:50 +00:00
|
|
|
/* Handle the generation of DT_NEEDED tags. */
|
2004-03-18 12:50:20 +00:00
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
gld${EMULATION_NAME}_load_symbols (lang_input_statement_type *entry)
|
|
|
|
{
|
* 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 07:56:26 +00:00
|
|
|
int link_class = 0;
|
2004-03-18 12:50:20 +00:00
|
|
|
|
|
|
|
/* Tell the ELF linker that we don't want the output file to have a
|
|
|
|
DT_NEEDED entry for this file, unless it is used to resolve
|
|
|
|
references in a regular object. */
|
2012-03-05 22:43:40 +00:00
|
|
|
if (entry->flags.add_DT_NEEDED_for_regular)
|
* 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 07:56:26 +00:00
|
|
|
link_class = DYN_AS_NEEDED;
|
2004-07-19 16:40:52 +00:00
|
|
|
|
|
|
|
/* Tell the ELF linker that we don't want the output file to have a
|
|
|
|
DT_NEEDED entry for any dynamic library in DT_NEEDED tags from
|
|
|
|
this file at all. */
|
2012-03-05 22:43:40 +00:00
|
|
|
if (!entry->flags.add_DT_NEEDED_for_dynamic)
|
* 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 07:56:26 +00:00
|
|
|
link_class |= DYN_NO_ADD_NEEDED;
|
2004-07-19 16:40:52 +00:00
|
|
|
|
2012-03-05 22:43:40 +00:00
|
|
|
if (entry->flags.just_syms
|
2005-09-07 05:01:53 +00:00
|
|
|
&& (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) != 0)
|
|
|
|
einfo (_("%P%F: --just-symbols may not be used on DSO: %B\n"),
|
|
|
|
entry->the_bfd);
|
|
|
|
|
2009-11-05 15:35:50 +00:00
|
|
|
if (link_class == 0
|
2004-07-19 16:40:52 +00:00
|
|
|
|| (bfd_get_file_flags (entry->the_bfd) & DYNAMIC) == 0)
|
|
|
|
return FALSE;
|
|
|
|
|
2009-09-11 15:27:38 +00:00
|
|
|
bfd_elf_set_dyn_lib_class (entry->the_bfd,
|
2012-11-21 19:56:38 +00:00
|
|
|
(enum dynamic_lib_link_class) link_class);
|
2004-03-18 12:50:20 +00:00
|
|
|
|
|
|
|
/* Continue on with normal load_symbols processing. */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/* These variables are required to pass information back and forth
|
|
|
|
between after_open and check_needed and stat_needed and vercheck. */
|
|
|
|
|
|
|
|
static struct bfd_link_needed_list *global_needed;
|
|
|
|
static struct stat global_stat;
|
2006-06-03 02:45:26 +00:00
|
|
|
static lang_input_statement_type *global_found;
|
1999-05-03 07:29:11 +00:00
|
|
|
static struct bfd_link_needed_list *global_vercheck_needed;
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean global_vercheck_failed;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2009-09-23 13:54:29 +00:00
|
|
|
/* These variables are used to implement target options */
|
|
|
|
|
|
|
|
static char *audit; /* colon (typically) separated list of libs */
|
|
|
|
static char *depaudit; /* colon (typically) separated list of libs */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2013-02-18 23:50:32 +00:00
|
|
|
/* Style of .note.gnu.build-id section. */
|
|
|
|
static const char *emit_note_gnu_build_id;
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* On Linux, it's possible to have different versions of the same
|
|
|
|
shared library linked against different versions of libc. The
|
|
|
|
dynamic linker somehow tags which libc version to use in
|
|
|
|
/etc/ld.so.cache, and, based on the libc that it sees in the
|
|
|
|
executable, chooses which version of the shared library to use.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
We try to do a similar check here by checking whether this shared
|
|
|
|
library needs any other shared libraries which may conflict with
|
|
|
|
libraries we have already included in the link. If it does, we
|
|
|
|
skip it, and try to find another shared library farther on down the
|
|
|
|
link path.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
This is called via lang_for_each_input_file.
|
|
|
|
GLOBAL_VERCHECK_NEEDED is the list of objects needed by the object
|
2001-01-24 06:14:09 +00:00
|
|
|
which we are checking. This sets GLOBAL_VERCHECK_FAILED if we find
|
2000-07-28 01:07:09 +00:00
|
|
|
a conflicting version. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_vercheck (lang_input_statement_type *s)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2001-05-03 06:26:26 +00:00
|
|
|
const char *soname;
|
2000-07-28 01:07:09 +00:00
|
|
|
struct bfd_link_needed_list *l;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (global_vercheck_failed)
|
|
|
|
return;
|
|
|
|
if (s->the_bfd == NULL
|
|
|
|
|| (bfd_get_file_flags (s->the_bfd) & DYNAMIC) == 0)
|
|
|
|
return;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
soname = bfd_elf_get_dt_soname (s->the_bfd);
|
|
|
|
if (soname == NULL)
|
2002-03-19 21:03:43 +00:00
|
|
|
soname = lbasename (bfd_get_filename (s->the_bfd));
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
for (l = global_vercheck_needed; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
const char *suffix;
|
|
|
|
|
2011-02-28 18:34:52 +00:00
|
|
|
if (filename_cmp (soname, l->name) == 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
|
|
|
/* Probably can't happen, but it's an easy check. */
|
|
|
|
continue;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (strchr (l->name, '/') != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
continue;
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
suffix = strstr (l->name, ".so.");
|
|
|
|
if (suffix == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
suffix += sizeof ".so." - 1;
|
|
|
|
|
2011-02-28 18:34:52 +00:00
|
|
|
if (filename_ncmp (soname, l->name, suffix - l->name) == 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
|
|
|
/* Here we know that S is a dynamic object FOO.SO.VER1, and
|
2003-06-27 00:38:25 +00:00
|
|
|
the object we are considering needs a dynamic object
|
|
|
|
FOO.SO.VER2, and VER1 and VER2 are different. This
|
|
|
|
appears to be a version mismatch, so we tell the caller
|
|
|
|
to try a different version of this library. */
|
2002-11-30 08:39:46 +00:00
|
|
|
global_vercheck_failed = TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
return;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* See if an input file matches a DT_NEEDED entry by running stat on
|
|
|
|
the file. */
|
|
|
|
|
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_stat_needed (lang_input_statement_type *s)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
struct stat st;
|
|
|
|
const char *suffix;
|
|
|
|
const char *soname;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2006-06-03 02:45:26 +00:00
|
|
|
if (global_found != NULL)
|
2000-07-28 01:07:09 +00:00
|
|
|
return;
|
|
|
|
if (s->the_bfd == NULL)
|
|
|
|
return;
|
2006-06-03 02:45:26 +00:00
|
|
|
|
|
|
|
/* If this input file was an as-needed entry, and wasn't found to be
|
|
|
|
needed at the stage it was linked, then don't say we have loaded it. */
|
|
|
|
if ((bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
|
2005-04-11 14:26:46 +00:00
|
|
|
return;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
if (bfd_stat (s->the_bfd, &st) != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
einfo ("%P:%B: bfd_stat failed: %E\n", s->the_bfd);
|
|
|
|
return;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-02-11 23:52:03 +00:00
|
|
|
/* Some operating systems, e.g. Windows, do not provide a meaningful
|
|
|
|
st_ino; they always set it to zero. (Windows does provide a
|
|
|
|
meaningful st_dev.) Do not indicate a duplicate library in that
|
|
|
|
case. While there is no guarantee that a system that provides
|
|
|
|
meaningful inode numbers will never set st_ino to zero, this is
|
|
|
|
merely an optimization, so we do not need to worry about false
|
|
|
|
negatives. */
|
2000-07-28 01:07:09 +00:00
|
|
|
if (st.st_dev == global_stat.st_dev
|
2005-02-11 23:52:03 +00:00
|
|
|
&& st.st_ino == global_stat.st_ino
|
|
|
|
&& st.st_ino != 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = s;
|
2000-07-28 01:07:09 +00:00
|
|
|
return;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* We issue a warning if it looks like we are including two
|
|
|
|
different versions of the same shared library. For example,
|
|
|
|
there may be a problem if -lc picks up libc.so.6 but some other
|
|
|
|
shared library has a DT_NEEDED entry of libc.so.5. This is a
|
2001-01-24 06:14:09 +00:00
|
|
|
heuristic test, and it will only work if the name looks like
|
2000-07-28 01:07:09 +00:00
|
|
|
NAME.so.VERSION. FIXME: Depending on file names is error-prone.
|
|
|
|
If we really want to issue warnings about mixing version numbers
|
|
|
|
of shared libraries, we need to find a better way. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (strchr (global_needed->name, '/') != NULL)
|
|
|
|
return;
|
|
|
|
suffix = strstr (global_needed->name, ".so.");
|
|
|
|
if (suffix == NULL)
|
|
|
|
return;
|
|
|
|
suffix += sizeof ".so." - 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
soname = bfd_elf_get_dt_soname (s->the_bfd);
|
|
|
|
if (soname == NULL)
|
2002-03-19 21:03:43 +00:00
|
|
|
soname = lbasename (s->filename);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2011-02-28 18:34:52 +00:00
|
|
|
if (filename_ncmp (soname, global_needed->name, suffix - global_needed->name) == 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
einfo ("%P: warning: %s, needed by %B, may conflict with %s\n",
|
2001-05-03 06:26:26 +00:00
|
|
|
global_needed->name, global_needed->by, soname);
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2004-07-19 16:40:52 +00:00
|
|
|
struct dt_needed
|
|
|
|
{
|
|
|
|
bfd *by;
|
|
|
|
const char *name;
|
|
|
|
};
|
2000-07-28 01:07:09 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
/* This function is called for each possible name for a dynamic object
|
|
|
|
named by a DT_NEEDED entry. The FORCE parameter indicates whether
|
|
|
|
to skip the check for a conflicting version. */
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2004-07-19 16:40:52 +00:00
|
|
|
gld${EMULATION_NAME}_try_needed (struct dt_needed *needed,
|
|
|
|
int force)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
bfd *abfd;
|
2004-07-19 16:40:52 +00:00
|
|
|
const char *name = needed->name;
|
2000-08-22 19:34:37 +00:00
|
|
|
const char *soname;
|
* 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 07:56:26 +00:00
|
|
|
int link_class;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2008-02-15 03:35:53 +00:00
|
|
|
abfd = bfd_openr (name, bfd_get_target (link_info.output_bfd));
|
1999-05-03 07:29:11 +00:00
|
|
|
if (abfd == NULL)
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
2010-10-29 12:10:39 +00:00
|
|
|
|
|
|
|
/* Linker needs to decompress sections. */
|
|
|
|
abfd->flags |= BFD_DECOMPRESS;
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
if (! bfd_check_format (abfd, bfd_object))
|
|
|
|
{
|
2001-08-14 04:40:38 +00:00
|
|
|
bfd_close (abfd);
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
if ((bfd_get_file_flags (abfd) & DYNAMIC) == 0)
|
|
|
|
{
|
2001-08-14 04:40:38 +00:00
|
|
|
bfd_close (abfd);
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2002-06-13 02:43:23 +00:00
|
|
|
/* For DT_NEEDED, they have to match. */
|
2008-02-15 03:35:53 +00:00
|
|
|
if (abfd->xvec != link_info.output_bfd->xvec)
|
2002-06-13 02:43:23 +00:00
|
|
|
{
|
|
|
|
bfd_close (abfd);
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
2002-06-13 02:43:23 +00:00
|
|
|
}
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
/* Check whether this object would include any conflicting library
|
|
|
|
versions. If FORCE is set, then we skip this check; we use this
|
|
|
|
the second time around, if we couldn't find any compatible
|
|
|
|
instance of the shared library. */
|
|
|
|
|
|
|
|
if (! force)
|
|
|
|
{
|
2009-12-11 13:42:17 +00:00
|
|
|
struct bfd_link_needed_list *needs;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2009-12-11 13:42:17 +00:00
|
|
|
if (! bfd_elf_get_bfd_needed_list (abfd, &needs))
|
1999-05-03 07:29:11 +00:00
|
|
|
einfo ("%F%P:%B: bfd_elf_get_bfd_needed_list failed: %E\n", abfd);
|
|
|
|
|
2009-12-11 13:42:17 +00:00
|
|
|
if (needs != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2009-12-11 13:42:17 +00:00
|
|
|
global_vercheck_needed = needs;
|
2002-11-30 08:39:46 +00:00
|
|
|
global_vercheck_failed = FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
lang_for_each_input_file (gld${EMULATION_NAME}_vercheck);
|
|
|
|
if (global_vercheck_failed)
|
|
|
|
{
|
2001-08-14 04:40:38 +00:00
|
|
|
bfd_close (abfd);
|
2002-11-30 08:39:46 +00:00
|
|
|
/* Return FALSE to force the caller to move on to try
|
2003-06-27 00:38:25 +00:00
|
|
|
another file on the search path. */
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* But wait! It gets much worse. On Linux, if a shared
|
2003-06-27 00:38:25 +00:00
|
|
|
library does not use libc at all, we are supposed to skip
|
|
|
|
it the first time around in case we encounter a shared
|
|
|
|
library later on with the same name which does use the
|
|
|
|
version of libc that we want. This is much too horrible
|
|
|
|
to use on any system other than Linux. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
case ${target} in
|
2012-05-16 10:43:41 +00:00
|
|
|
*-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
struct bfd_link_needed_list *l;
|
|
|
|
|
2009-12-11 13:42:17 +00:00
|
|
|
for (l = needs; l != NULL; l = l->next)
|
2006-09-16 18:12:17 +00:00
|
|
|
if (CONST_STRNEQ (l->name, "libc.so"))
|
1999-05-03 07:29:11 +00:00
|
|
|
break;
|
|
|
|
if (l == NULL)
|
|
|
|
{
|
2001-08-14 04:40:38 +00:00
|
|
|
bfd_close (abfd);
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EOF
|
|
|
|
;;
|
|
|
|
esac
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We've found a dynamic object matching the DT_NEEDED entry. */
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* We have already checked that there is no other input file of the
|
|
|
|
same name. We must now check again that we are not including the
|
|
|
|
same file twice. We need to do this because on many systems
|
|
|
|
libc.so is a symlink to, e.g., libc.so.1. The SONAME entry will
|
|
|
|
reference libc.so.1. If we have already included libc.so, we
|
|
|
|
don't want to include libc.so.1 if they are the same file, and we
|
|
|
|
can only check that using stat. */
|
|
|
|
|
|
|
|
if (bfd_stat (abfd, &global_stat) != 0)
|
|
|
|
einfo ("%F%P:%B: bfd_stat failed: %E\n", abfd);
|
2000-08-22 19:34:37 +00:00
|
|
|
|
|
|
|
/* First strip off everything before the last '/'. */
|
2002-03-19 21:03:43 +00:00
|
|
|
soname = lbasename (abfd->filename);
|
2000-08-22 19:34:37 +00:00
|
|
|
|
2012-07-13 13:20:27 +00:00
|
|
|
if (verbose)
|
2000-08-22 19:34:37 +00:00
|
|
|
info_msg (_("found %s at %s\n"), soname, name);
|
|
|
|
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = NULL;
|
2000-07-28 01:07:09 +00:00
|
|
|
lang_for_each_input_file (gld${EMULATION_NAME}_stat_needed);
|
2006-06-03 02:45:26 +00:00
|
|
|
if (global_found != NULL)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2002-11-30 08:39:46 +00:00
|
|
|
/* Return TRUE to indicate that we found the file, even though
|
2003-06-27 00:38:25 +00:00
|
|
|
we aren't going to do anything with it. */
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
2004-03-18 12:50:20 +00:00
|
|
|
/* Specify the soname to use. */
|
|
|
|
bfd_elf_set_dt_needed_name (abfd, soname);
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2004-03-18 12:50:20 +00:00
|
|
|
/* Tell the ELF linker that we don't want the output file to have a
|
|
|
|
DT_NEEDED entry for this file, unless it is used to resolve
|
|
|
|
references in a regular object. */
|
* 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 07:56:26 +00:00
|
|
|
link_class = DYN_DT_NEEDED;
|
2004-07-19 16:40:52 +00:00
|
|
|
|
|
|
|
/* Tell the ELF linker that we don't want the output file to have a
|
|
|
|
DT_NEEDED entry for this file at all if the entry is from a file
|
|
|
|
with DYN_NO_ADD_NEEDED. */
|
2005-01-25 01:40:04 +00:00
|
|
|
if (needed->by != NULL
|
|
|
|
&& (bfd_elf_get_dyn_lib_class (needed->by) & DYN_NO_ADD_NEEDED) != 0)
|
* 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 07:56:26 +00:00
|
|
|
link_class |= DYN_NO_NEEDED | DYN_NO_ADD_NEEDED;
|
2004-07-19 16:40:52 +00:00
|
|
|
|
2009-09-11 15:27:38 +00:00
|
|
|
bfd_elf_set_dyn_lib_class (abfd, (enum dynamic_lib_link_class) link_class);
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
/* Add this file into the symbol table. */
|
|
|
|
if (! bfd_link_add_symbols (abfd, &link_info))
|
2013-04-04 14:38:47 +00:00
|
|
|
einfo ("%F%B: error adding symbols: %E\n", abfd);
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Search for a needed file in a path. */
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2004-07-19 16:40:52 +00:00
|
|
|
gld${EMULATION_NAME}_search_needed (const char *path,
|
|
|
|
struct dt_needed *n, int force)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
|
|
|
const char *s;
|
2004-07-19 16:40:52 +00:00
|
|
|
const char *name = n->name;
|
2000-07-28 01:07:09 +00:00
|
|
|
size_t len;
|
2004-07-19 16:40:52 +00:00
|
|
|
struct dt_needed needed;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2001-03-20 18:39:21 +00:00
|
|
|
if (name[0] == '/')
|
2004-07-19 16:40:52 +00:00
|
|
|
return gld${EMULATION_NAME}_try_needed (n, force);
|
2001-03-20 18:39:21 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (path == NULL || *path == '\0')
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
2004-07-19 16:40:52 +00:00
|
|
|
|
|
|
|
needed.by = n->by;
|
|
|
|
needed.name = n->name;
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
len = strlen (name);
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
char *filename, *sset;
|
|
|
|
|
2007-03-28 14:42:28 +00:00
|
|
|
s = strchr (path, config.rpath_separator);
|
2000-07-28 01:07:09 +00:00
|
|
|
if (s == NULL)
|
|
|
|
s = path + strlen (path);
|
|
|
|
|
2009-10-23 01:21:12 +00:00
|
|
|
#if HAVE_DOS_BASED_FILE_SYSTEM
|
|
|
|
/* Assume a match on the second char is part of drive specifier. */
|
|
|
|
else if (config.rpath_separator == ':'
|
|
|
|
&& s == path + 1
|
|
|
|
&& ISALPHA (*path))
|
|
|
|
{
|
|
|
|
s = strchr (s + 1, config.rpath_separator);
|
|
|
|
if (s == NULL)
|
|
|
|
s = path + strlen (path);
|
|
|
|
}
|
|
|
|
#endif
|
2000-07-28 01:07:09 +00:00
|
|
|
filename = (char *) xmalloc (s - path + len + 2);
|
|
|
|
if (s == path)
|
|
|
|
sset = filename;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
memcpy (filename, path, s - path);
|
|
|
|
filename[s - path] = '/';
|
|
|
|
sset = filename + (s - path) + 1;
|
|
|
|
}
|
|
|
|
strcpy (sset, name);
|
|
|
|
|
2004-07-19 16:40:52 +00:00
|
|
|
needed.name = filename;
|
|
|
|
if (gld${EMULATION_NAME}_try_needed (&needed, force))
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
free (filename);
|
|
|
|
|
|
|
|
if (*s == '\0')
|
|
|
|
break;
|
|
|
|
path = s + 1;
|
|
|
|
}
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EOF
|
2003-01-06 16:14:01 +00:00
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2003-01-06 16:14:01 +00:00
|
|
|
|
2007-03-28 14:42:28 +00:00
|
|
|
/* Add the sysroot to every entry in a path separated by
|
|
|
|
config.rpath_separator. */
|
2003-01-06 16:14:01 +00:00
|
|
|
|
|
|
|
static char *
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_add_sysroot (const char *path)
|
2003-01-06 16:14:01 +00:00
|
|
|
{
|
|
|
|
int len, colons, i;
|
|
|
|
char *ret, *p;
|
|
|
|
|
|
|
|
len = strlen (path);
|
|
|
|
colons = 0;
|
|
|
|
i = 0;
|
|
|
|
while (path[i])
|
2007-03-28 14:42:28 +00:00
|
|
|
if (path[i++] == config.rpath_separator)
|
2003-01-06 16:14:01 +00:00
|
|
|
colons++;
|
|
|
|
|
|
|
|
if (path[i])
|
|
|
|
colons++;
|
|
|
|
|
2003-02-26 00:56:14 +00:00
|
|
|
len = len + (colons + 1) * strlen (ld_sysroot);
|
2003-01-06 16:14:01 +00:00
|
|
|
ret = xmalloc (len + 1);
|
|
|
|
strcpy (ret, ld_sysroot);
|
|
|
|
p = ret + strlen (ret);
|
|
|
|
i = 0;
|
|
|
|
while (path[i])
|
2007-03-28 14:42:28 +00:00
|
|
|
if (path[i] == config.rpath_separator)
|
2003-01-06 16:14:01 +00:00
|
|
|
{
|
2003-06-27 00:38:25 +00:00
|
|
|
*p++ = path[i++];
|
2003-01-06 16:14:01 +00:00
|
|
|
strcpy (p, ld_sysroot);
|
|
|
|
p = p + strlen (p);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*p++ = path[i++];
|
|
|
|
|
|
|
|
*p = 0;
|
|
|
|
return ret;
|
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2003-02-03 17:47:23 +00:00
|
|
|
EOF
|
|
|
|
case ${target} in
|
2006-04-11 10:36:26 +00:00
|
|
|
*-*-freebsd* | *-*-dragonfly*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2006-04-11 10:36:26 +00:00
|
|
|
/* Read the system search path the FreeBSD way rather than the Linux way. */
|
|
|
|
#ifdef HAVE_ELF_HINTS_H
|
|
|
|
#include <elf-hints.h>
|
|
|
|
#else
|
|
|
|
#include "elf-hints-local.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static bfd_boolean
|
2013-01-08 06:10:39 +00:00
|
|
|
gld${EMULATION_NAME}_check_ld_elf_hints (const struct bfd_link_needed_list *l,
|
|
|
|
int force)
|
2006-04-11 10:36:26 +00:00
|
|
|
{
|
|
|
|
static bfd_boolean initialized;
|
|
|
|
static char *ld_elf_hints;
|
|
|
|
struct dt_needed needed;
|
|
|
|
|
|
|
|
if (!initialized)
|
|
|
|
{
|
|
|
|
FILE *f;
|
|
|
|
char *tmppath;
|
|
|
|
|
2008-02-07 08:41:10 +00:00
|
|
|
tmppath = concat (ld_sysroot, _PATH_ELF_HINTS, (const char *) NULL);
|
2006-04-11 10:36:26 +00:00
|
|
|
f = fopen (tmppath, FOPEN_RB);
|
|
|
|
free (tmppath);
|
|
|
|
if (f != NULL)
|
|
|
|
{
|
|
|
|
struct elfhints_hdr hdr;
|
|
|
|
|
|
|
|
if (fread (&hdr, 1, sizeof (hdr), f) == sizeof (hdr)
|
|
|
|
&& hdr.magic == ELFHINTS_MAGIC
|
|
|
|
&& hdr.version == 1)
|
|
|
|
{
|
|
|
|
if (fseek (f, hdr.strtab + hdr.dirlist, SEEK_SET) != -1)
|
|
|
|
{
|
|
|
|
char *b;
|
|
|
|
|
|
|
|
b = xmalloc (hdr.dirlistlen + 1);
|
|
|
|
if (fread (b, 1, hdr.dirlistlen + 1, f) ==
|
|
|
|
hdr.dirlistlen + 1)
|
|
|
|
ld_elf_hints = gld${EMULATION_NAME}_add_sysroot (b);
|
2006-06-03 02:45:26 +00:00
|
|
|
|
2006-04-11 10:36:26 +00:00
|
|
|
free (b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose (f);
|
|
|
|
}
|
|
|
|
|
|
|
|
initialized = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ld_elf_hints == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-01-08 06:10:39 +00:00
|
|
|
needed.by = l->by;
|
|
|
|
needed.name = l->name;
|
|
|
|
return gld${EMULATION_NAME}_search_needed (ld_elf_hints, &needed, force);
|
2006-04-11 10:36:26 +00:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
# FreeBSD
|
|
|
|
;;
|
|
|
|
|
2012-05-16 10:43:41 +00:00
|
|
|
*-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
/* For a native linker, check the file /etc/ld.so.conf for directories
|
|
|
|
in which we may find shared libraries. /etc/ld.so.conf is really
|
2001-01-08 05:25:58 +00:00
|
|
|
only meaningful on Linux. */
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
struct gld${EMULATION_NAME}_ld_so_conf
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2004-10-11 14:12:11 +00:00
|
|
|
char *path;
|
|
|
|
size_t len, alloc;
|
|
|
|
};
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2006-04-05 15:40:40 +00:00
|
|
|
static bfd_boolean
|
2004-10-11 14:12:11 +00:00
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf
|
|
|
|
(struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf_include
|
|
|
|
(struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename,
|
|
|
|
const char *pattern)
|
|
|
|
{
|
|
|
|
char *newp = NULL;
|
2005-02-16 07:49:26 +00:00
|
|
|
#ifdef HAVE_GLOB
|
2004-10-11 14:12:11 +00:00
|
|
|
glob_t gl;
|
2005-02-16 07:49:26 +00:00
|
|
|
#endif
|
2004-10-11 14:12:11 +00:00
|
|
|
|
|
|
|
if (pattern[0] != '/')
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2004-10-11 14:12:11 +00:00
|
|
|
char *p = strrchr (filename, '/');
|
|
|
|
size_t patlen = strlen (pattern) + 1;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
newp = xmalloc (p - filename + 1 + patlen);
|
|
|
|
memcpy (newp, filename, p - filename + 1);
|
|
|
|
memcpy (newp + (p - filename + 1), pattern, patlen);
|
|
|
|
pattern = newp;
|
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2005-02-16 07:49:26 +00:00
|
|
|
#ifdef HAVE_GLOB
|
2004-10-11 14:12:11 +00:00
|
|
|
if (glob (pattern, 0, NULL, &gl) == 0)
|
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
for (i = 0; i < gl.gl_pathc; ++i)
|
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf (info, gl.gl_pathv[i]);
|
|
|
|
globfree (&gl);
|
|
|
|
}
|
2005-02-16 07:49:26 +00:00
|
|
|
#else
|
|
|
|
/* If we do not have glob, treat the pattern as a literal filename. */
|
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf (info, pattern);
|
|
|
|
#endif
|
2004-10-11 14:12:11 +00:00
|
|
|
|
|
|
|
if (newp)
|
|
|
|
free (newp);
|
|
|
|
}
|
|
|
|
|
2006-04-05 15:40:40 +00:00
|
|
|
static bfd_boolean
|
2004-10-11 14:12:11 +00:00
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf
|
|
|
|
(struct gld${EMULATION_NAME}_ld_so_conf *info, const char *filename)
|
|
|
|
{
|
|
|
|
FILE *f = fopen (filename, FOPEN_RT);
|
2004-10-11 14:42:30 +00:00
|
|
|
char *line;
|
|
|
|
size_t linelen;
|
2004-10-11 14:12:11 +00:00
|
|
|
|
|
|
|
if (f == NULL)
|
2006-04-05 15:40:40 +00:00
|
|
|
return FALSE;
|
2004-10-11 14:12:11 +00:00
|
|
|
|
2004-10-11 14:42:30 +00:00
|
|
|
linelen = 256;
|
|
|
|
line = xmalloc (linelen);
|
|
|
|
do
|
2004-10-11 14:12:11 +00:00
|
|
|
{
|
2004-10-11 14:42:30 +00:00
|
|
|
char *p = line, *q;
|
|
|
|
|
|
|
|
/* Normally this would use getline(3), but we need to be portable. */
|
|
|
|
while ((q = fgets (p, linelen - (p - line), f)) != NULL
|
|
|
|
&& strlen (q) == linelen - (p - line) - 1
|
|
|
|
&& line[linelen - 2] != '\n')
|
|
|
|
{
|
|
|
|
line = xrealloc (line, 2 * linelen);
|
|
|
|
p = line + linelen - 1;
|
|
|
|
linelen += linelen;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (q == NULL && p == line)
|
|
|
|
break;
|
2004-10-11 14:12:11 +00:00
|
|
|
|
|
|
|
p = strchr (line, '\n');
|
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
/* Because the file format does not know any form of quoting we
|
|
|
|
can search forward for the next '#' character and if found
|
|
|
|
make it terminating the line. */
|
|
|
|
p = strchr (line, '#');
|
|
|
|
if (p)
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
/* Remove leading whitespace. NUL is no whitespace character. */
|
|
|
|
p = line;
|
|
|
|
while (*p == ' ' || *p == '\f' || *p == '\r' || *p == '\t' || *p == '\v')
|
|
|
|
++p;
|
|
|
|
|
|
|
|
/* If the line is blank it is ignored. */
|
|
|
|
if (p[0] == '\0')
|
|
|
|
continue;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2006-09-16 18:12:17 +00:00
|
|
|
if (CONST_STRNEQ (p, "include") && (p[7] == ' ' || p[7] == '\t'))
|
2004-10-11 14:12:11 +00:00
|
|
|
{
|
|
|
|
char *dir, c;
|
|
|
|
p += 8;
|
|
|
|
do
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2004-10-11 14:12:11 +00:00
|
|
|
while (*p == ' ' || *p == '\t')
|
|
|
|
++p;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
if (*p == '\0')
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
dir = p;
|
|
|
|
|
|
|
|
while (*p != ' ' && *p != '\t' && *p)
|
|
|
|
++p;
|
|
|
|
|
|
|
|
c = *p;
|
|
|
|
*p++ = '\0';
|
|
|
|
if (dir[0] != '\0')
|
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf_include (info, filename,
|
|
|
|
dir);
|
|
|
|
}
|
|
|
|
while (c != '\0');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
char *dir = p;
|
|
|
|
while (*p && *p != '=' && *p != ' ' && *p != '\t' && *p != '\f'
|
|
|
|
&& *p != '\r' && *p != '\v')
|
|
|
|
++p;
|
|
|
|
|
|
|
|
while (p != dir && p[-1] == '/')
|
|
|
|
--p;
|
|
|
|
if (info->path == NULL)
|
|
|
|
{
|
|
|
|
info->alloc = p - dir + 1 + 256;
|
|
|
|
info->path = xmalloc (info->alloc);
|
|
|
|
info->len = 0;
|
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
else
|
|
|
|
{
|
2004-10-11 14:12:11 +00:00
|
|
|
if (info->len + 1 + (p - dir) >= info->alloc)
|
|
|
|
{
|
|
|
|
info->alloc += p - dir + 256;
|
|
|
|
info->path = xrealloc (info->path, info->alloc);
|
|
|
|
}
|
2007-03-28 14:42:28 +00:00
|
|
|
info->path[info->len++] = config.rpath_separator;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
2004-10-11 14:12:11 +00:00
|
|
|
memcpy (info->path + info->len, dir, p - dir);
|
|
|
|
info->len += p - dir;
|
|
|
|
info->path[info->len] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2004-10-11 14:42:30 +00:00
|
|
|
while (! feof (f));
|
2004-10-11 14:12:11 +00:00
|
|
|
free (line);
|
|
|
|
fclose (f);
|
2006-04-05 15:40:40 +00:00
|
|
|
return TRUE;
|
2004-10-11 14:12:11 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
static bfd_boolean
|
2013-01-08 06:10:39 +00:00
|
|
|
gld${EMULATION_NAME}_check_ld_so_conf (const struct bfd_link_needed_list *l,
|
|
|
|
int force)
|
2004-10-11 14:12:11 +00:00
|
|
|
{
|
|
|
|
static bfd_boolean initialized;
|
|
|
|
static char *ld_so_conf;
|
|
|
|
struct dt_needed needed;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
if (! initialized)
|
|
|
|
{
|
|
|
|
char *tmppath;
|
|
|
|
struct gld${EMULATION_NAME}_ld_so_conf info;
|
2003-01-06 16:14:01 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
info.path = NULL;
|
|
|
|
info.len = info.alloc = 0;
|
2008-02-07 08:41:10 +00:00
|
|
|
tmppath = concat (ld_sysroot, "${prefix}/etc/ld.so.conf",
|
|
|
|
(const char *) NULL);
|
2006-04-05 15:40:40 +00:00
|
|
|
if (!gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath))
|
|
|
|
{
|
|
|
|
free (tmppath);
|
2008-02-07 08:41:10 +00:00
|
|
|
tmppath = concat (ld_sysroot, "/etc/ld.so.conf",
|
|
|
|
(const char *) NULL);
|
2006-04-05 15:40:40 +00:00
|
|
|
gld${EMULATION_NAME}_parse_ld_so_conf (&info, tmppath);
|
|
|
|
}
|
2004-10-11 14:12:11 +00:00
|
|
|
free (tmppath);
|
2006-04-05 15:40:40 +00:00
|
|
|
|
2004-10-11 14:12:11 +00:00
|
|
|
if (info.path)
|
|
|
|
{
|
|
|
|
char *d = gld${EMULATION_NAME}_add_sysroot (info.path);
|
|
|
|
free (info.path);
|
|
|
|
ld_so_conf = d;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
2002-11-30 08:39:46 +00:00
|
|
|
initialized = TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
2000-07-20 03:17:32 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (ld_so_conf == NULL)
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2004-07-19 16:40:52 +00:00
|
|
|
|
2013-01-08 06:10:39 +00:00
|
|
|
needed.by = l->by;
|
|
|
|
needed.name = l->name;
|
2004-07-19 16:40:52 +00:00
|
|
|
return gld${EMULATION_NAME}_search_needed (ld_so_conf, &needed, force);
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
EOF
|
2003-01-06 16:14:01 +00:00
|
|
|
# Linux
|
|
|
|
;;
|
2000-07-28 01:07:09 +00:00
|
|
|
esac
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
/* See if an input file matches a DT_NEEDED entry by name. */
|
|
|
|
|
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_check_needed (lang_input_statement_type *s)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2006-06-03 02:45:26 +00:00
|
|
|
const char *soname;
|
|
|
|
|
|
|
|
/* Stop looking if we've found a loaded lib. */
|
|
|
|
if (global_found != NULL
|
|
|
|
&& (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
|
|
|
|
& DYN_AS_NEEDED) == 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
return;
|
|
|
|
|
2006-06-03 02:45:26 +00:00
|
|
|
if (s->filename == NULL || s->the_bfd == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Don't look for a second non-loaded as-needed lib. */
|
|
|
|
if (global_found != NULL
|
|
|
|
&& (bfd_elf_get_dyn_lib_class (s->the_bfd) & DYN_AS_NEEDED) != 0)
|
2005-04-11 14:26:46 +00:00
|
|
|
return;
|
|
|
|
|
2011-02-28 18:34:52 +00:00
|
|
|
if (filename_cmp (s->filename, global_needed->name) == 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = s;
|
|
|
|
return;
|
|
|
|
}
|
2001-01-14 04:36:35 +00:00
|
|
|
|
2012-03-05 22:43:40 +00:00
|
|
|
if (s->flags.search_dirs)
|
2006-06-03 02:45:26 +00:00
|
|
|
{
|
|
|
|
const char *f = strrchr (s->filename, '/');
|
|
|
|
if (f != NULL
|
2011-02-28 18:34:52 +00:00
|
|
|
&& filename_cmp (f + 1, global_needed->name) == 0)
|
2001-01-14 04:36:35 +00:00
|
|
|
{
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = s;
|
2001-01-14 04:36:35 +00:00
|
|
|
return;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2006-06-03 02:45:26 +00:00
|
|
|
soname = bfd_elf_get_dt_soname (s->the_bfd);
|
|
|
|
if (soname != NULL
|
2011-02-28 18:34:52 +00:00
|
|
|
&& filename_cmp (soname, global_needed->name) == 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = s;
|
|
|
|
return;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test x"$LDEMUL_AFTER_OPEN" != xgld"$EMULATION_NAME"_after_open; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2007-07-13 10:44:26 +00:00
|
|
|
static bfd_size_type
|
2013-10-09 18:16:18 +00:00
|
|
|
id_note_section_size (bfd *abfd ATTRIBUTE_UNUSED)
|
2007-07-13 10:44:26 +00:00
|
|
|
{
|
2013-02-18 23:50:32 +00:00
|
|
|
const char *style = emit_note_gnu_build_id;
|
2007-07-13 10:44:26 +00:00
|
|
|
bfd_size_type size;
|
Add support for generating and inserting build IDs into COFF binaries.
* peXXigen.c (pe_print_debugdata): New function: Displays the
contents of the debug directory and decodes codeview entries.
(_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_slurp_codeview_record, _bfd_XXi_write_codeview_record):
Add functions for reading and writing debugdir and codeview
records.
* libpei.h (_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_write_codeview_record): Add prototypes and macros.
* libcoff-in.h (pe_tdata): Add build-id data.
* libcoff.h: Regenerate.
* coffcode.h (coff_write_object_contents): Run build_id
after_write_object_contents hook.
* pe.h (external_IMAGE_DEBUG_DIRECTORY, _CV_INFO_PDB70)
(_CV_INFO_PDB20): Add structures and constants for debug directory
and codeview records.
* internal.h (internal_IMAGE_DEBUG_DIRECTORY, CODEVIEW_INFO):
Add structures and constants for internal representation of debug
directory and codeview records.
* emultempl/elf32.em (id_note_section_size, read_hex, write_build_id):
Move code for parsing build-id option and calculating the build-id to...
* ldbuildid.c: New file.
* ldbuildid.h: New file.
* Makefile.am (CFILES, HFILES, OFILES, ld_new_SOURCES): Add new
files.
* Makefile.in: Regenerate.
* ld.texinfo: Update --build-id description to mention COFF
support.
* NEWS: Mention support for COFF build ids.
* emultempl/pe.em (gld${EMULATION_NAME}_handle_option):
(pecoff_checksum_contents, write_build_id, setup_build_id)
(gld_${EMULATION_NAME}_after_open): Handle and implement
build-id option.
* emultempl/pep.em: Likewise.
2014-04-08 09:59:43 +00:00
|
|
|
bfd_size_type build_id_size;
|
2007-07-13 10:44:26 +00:00
|
|
|
|
|
|
|
size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
|
|
|
|
size = (size + 3) & -(bfd_size_type) 4;
|
|
|
|
|
Add support for generating and inserting build IDs into COFF binaries.
* peXXigen.c (pe_print_debugdata): New function: Displays the
contents of the debug directory and decodes codeview entries.
(_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_slurp_codeview_record, _bfd_XXi_write_codeview_record):
Add functions for reading and writing debugdir and codeview
records.
* libpei.h (_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_write_codeview_record): Add prototypes and macros.
* libcoff-in.h (pe_tdata): Add build-id data.
* libcoff.h: Regenerate.
* coffcode.h (coff_write_object_contents): Run build_id
after_write_object_contents hook.
* pe.h (external_IMAGE_DEBUG_DIRECTORY, _CV_INFO_PDB70)
(_CV_INFO_PDB20): Add structures and constants for debug directory
and codeview records.
* internal.h (internal_IMAGE_DEBUG_DIRECTORY, CODEVIEW_INFO):
Add structures and constants for internal representation of debug
directory and codeview records.
* emultempl/elf32.em (id_note_section_size, read_hex, write_build_id):
Move code for parsing build-id option and calculating the build-id to...
* ldbuildid.c: New file.
* ldbuildid.h: New file.
* Makefile.am (CFILES, HFILES, OFILES, ld_new_SOURCES): Add new
files.
* Makefile.in: Regenerate.
* ld.texinfo: Update --build-id description to mention COFF
support.
* NEWS: Mention support for COFF build ids.
* emultempl/pe.em (gld${EMULATION_NAME}_handle_option):
(pecoff_checksum_contents, write_build_id, setup_build_id)
(gld_${EMULATION_NAME}_after_open): Handle and implement
build-id option.
* emultempl/pep.em: Likewise.
2014-04-08 09:59:43 +00:00
|
|
|
build_id_size = compute_build_id_size (style);
|
|
|
|
if (build_id_size)
|
|
|
|
size += build_id_size;
|
2007-07-13 10:44:26 +00:00
|
|
|
else
|
|
|
|
size = 0;
|
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bfd_boolean
|
2013-02-18 23:50:32 +00:00
|
|
|
write_build_id (bfd *abfd)
|
2007-07-13 10:44:26 +00:00
|
|
|
{
|
|
|
|
const struct elf_backend_data *bed = get_elf_backend_data (abfd);
|
2013-02-18 23:50:32 +00:00
|
|
|
struct elf_obj_tdata *t = elf_tdata (abfd);
|
|
|
|
const char *style;
|
2007-07-13 10:44:26 +00:00
|
|
|
asection *asec;
|
|
|
|
Elf_Internal_Shdr *i_shdr;
|
|
|
|
unsigned char *contents, *id_bits;
|
|
|
|
bfd_size_type size;
|
2013-02-18 23:50:32 +00:00
|
|
|
file_ptr position;
|
2007-07-13 10:44:26 +00:00
|
|
|
Elf_External_Note *e_note;
|
|
|
|
|
bfd/
* elf-bfd.h (struct elf_build_id): Extracted from..
(struct elf_build_id_info): ..here. Delete.
(struct output_elf_obj_tdata): New, extracted from..
(struct elf_obj_tdata): ..here. Reorganize for better packing.
Add "o" field.
(elf_program_header_size): Reference tdata->o.
(elf_seg_map, elf_next_file_pos, elf_eh_frame_hdr, elf_linker,
elf_stack_flags, elf_shstrtab, elf_strtab_sec, elf_shstrtab_sec,
elf_section_syms, elf_num_section_syms, elf_flags_init): Likewise.
* elf.c (bfd_elf_allocate_object): Allocate output_elf_obj_tdata
when opening bfd in any mode that might write.
(_bfd_elf_write_object_contents): Use build_id field in
output_elf_obj_tdata.
(_bfd_elf_close_and_cleanup): Tweak elf_shstrtab test.
(elfobj_grok_gnu_build_id): Adjust for elf_tdata changes.
gdb/
* elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
ld/
* emultempl/elf32.em (write_build_id, setup_build_id): Adjust
for elf_tdata changes.
2013-02-21 04:35:22 +00:00
|
|
|
style = t->o->build_id.style;
|
|
|
|
asec = t->o->build_id.sec;
|
2007-09-15 06:21:06 +00:00
|
|
|
if (bfd_is_abs_section (asec->output_section))
|
2007-07-13 10:44:26 +00:00
|
|
|
{
|
2007-09-15 06:21:06 +00:00
|
|
|
einfo (_("%P: warning: .note.gnu.build-id section discarded,"
|
|
|
|
" --build-id ignored.\n"));
|
|
|
|
return TRUE;
|
2007-07-13 10:44:26 +00:00
|
|
|
}
|
|
|
|
i_shdr = &elf_section_data (asec->output_section)->this_hdr;
|
|
|
|
|
|
|
|
if (i_shdr->contents == NULL)
|
|
|
|
{
|
2007-07-18 09:46:05 +00:00
|
|
|
if (asec->contents == NULL)
|
2009-09-11 15:27:38 +00:00
|
|
|
asec->contents = (unsigned char *) xmalloc (asec->size);
|
2007-07-18 09:46:05 +00:00
|
|
|
contents = asec->contents;
|
2007-07-13 10:44:26 +00:00
|
|
|
}
|
2007-07-18 09:46:05 +00:00
|
|
|
else
|
|
|
|
contents = i_shdr->contents + asec->output_offset;
|
2007-07-13 10:44:26 +00:00
|
|
|
|
2009-09-11 15:27:38 +00:00
|
|
|
e_note = (Elf_External_Note *) contents;
|
2007-07-13 10:44:26 +00:00
|
|
|
size = offsetof (Elf_External_Note, name[sizeof "GNU"]);
|
|
|
|
size = (size + 3) & -(bfd_size_type) 4;
|
|
|
|
id_bits = contents + size;
|
|
|
|
size = asec->size - size;
|
|
|
|
|
|
|
|
bfd_h_put_32 (abfd, sizeof "GNU", &e_note->namesz);
|
|
|
|
bfd_h_put_32 (abfd, size, &e_note->descsz);
|
|
|
|
bfd_h_put_32 (abfd, NT_GNU_BUILD_ID, &e_note->type);
|
|
|
|
memcpy (e_note->name, "GNU", sizeof "GNU");
|
|
|
|
|
Add support for generating and inserting build IDs into COFF binaries.
* peXXigen.c (pe_print_debugdata): New function: Displays the
contents of the debug directory and decodes codeview entries.
(_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_slurp_codeview_record, _bfd_XXi_write_codeview_record):
Add functions for reading and writing debugdir and codeview
records.
* libpei.h (_bfd_XXi_swap_debugdir_in, _bfd_XXi_swap_debugdir_out)
(_bfd_XXi_write_codeview_record): Add prototypes and macros.
* libcoff-in.h (pe_tdata): Add build-id data.
* libcoff.h: Regenerate.
* coffcode.h (coff_write_object_contents): Run build_id
after_write_object_contents hook.
* pe.h (external_IMAGE_DEBUG_DIRECTORY, _CV_INFO_PDB70)
(_CV_INFO_PDB20): Add structures and constants for debug directory
and codeview records.
* internal.h (internal_IMAGE_DEBUG_DIRECTORY, CODEVIEW_INFO):
Add structures and constants for internal representation of debug
directory and codeview records.
* emultempl/elf32.em (id_note_section_size, read_hex, write_build_id):
Move code for parsing build-id option and calculating the build-id to...
* ldbuildid.c: New file.
* ldbuildid.h: New file.
* Makefile.am (CFILES, HFILES, OFILES, ld_new_SOURCES): Add new
files.
* Makefile.in: Regenerate.
* ld.texinfo: Update --build-id description to mention COFF
support.
* NEWS: Mention support for COFF build ids.
* emultempl/pe.em (gld${EMULATION_NAME}_handle_option):
(pecoff_checksum_contents, write_build_id, setup_build_id)
(gld_${EMULATION_NAME}_after_open): Handle and implement
build-id option.
* emultempl/pep.em: Likewise.
2014-04-08 09:59:43 +00:00
|
|
|
generate_build_id (abfd, style, bed->s->checksum_contents, id_bits, size);
|
2007-07-13 10:44:26 +00:00
|
|
|
|
2013-02-18 23:50:32 +00:00
|
|
|
position = i_shdr->sh_offset + asec->output_offset;
|
2007-07-18 09:46:05 +00:00
|
|
|
size = asec->size;
|
2013-02-18 23:50:32 +00:00
|
|
|
return (bfd_seek (abfd, position, SEEK_SET) == 0
|
2007-07-18 09:46:05 +00:00
|
|
|
&& bfd_bwrite (contents, size, abfd) == size);
|
2007-07-13 10:44:26 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 23:50:32 +00:00
|
|
|
/* Make .note.gnu.build-id section, and set up elf_tdata->build_id. */
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
setup_build_id (bfd *ibfd)
|
|
|
|
{
|
|
|
|
asection *s;
|
|
|
|
bfd_size_type size;
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
size = id_note_section_size (ibfd);
|
|
|
|
if (size == 0)
|
|
|
|
{
|
|
|
|
einfo ("%P: warning: unrecognized --build-id style ignored.\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = (SEC_ALLOC | SEC_LOAD | SEC_IN_MEMORY
|
|
|
|
| SEC_LINKER_CREATED | SEC_READONLY | SEC_DATA);
|
|
|
|
s = bfd_make_section_with_flags (ibfd, ".note.gnu.build-id", flags);
|
|
|
|
if (s != NULL && bfd_set_section_alignment (ibfd, s, 2))
|
|
|
|
{
|
|
|
|
struct elf_obj_tdata *t = elf_tdata (link_info.output_bfd);
|
bfd/
* elf-bfd.h (struct elf_build_id): Extracted from..
(struct elf_build_id_info): ..here. Delete.
(struct output_elf_obj_tdata): New, extracted from..
(struct elf_obj_tdata): ..here. Reorganize for better packing.
Add "o" field.
(elf_program_header_size): Reference tdata->o.
(elf_seg_map, elf_next_file_pos, elf_eh_frame_hdr, elf_linker,
elf_stack_flags, elf_shstrtab, elf_strtab_sec, elf_shstrtab_sec,
elf_section_syms, elf_num_section_syms, elf_flags_init): Likewise.
* elf.c (bfd_elf_allocate_object): Allocate output_elf_obj_tdata
when opening bfd in any mode that might write.
(_bfd_elf_write_object_contents): Use build_id field in
output_elf_obj_tdata.
(_bfd_elf_close_and_cleanup): Tweak elf_shstrtab test.
(elfobj_grok_gnu_build_id): Adjust for elf_tdata changes.
gdb/
* elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
ld/
* emultempl/elf32.em (write_build_id, setup_build_id): Adjust
for elf_tdata changes.
2013-02-21 04:35:22 +00:00
|
|
|
t->o->build_id.after_write_object_contents = &write_build_id;
|
|
|
|
t->o->build_id.style = emit_note_gnu_build_id;
|
|
|
|
t->o->build_id.sec = s;
|
|
|
|
elf_section_type (s) = SHT_NOTE;
|
|
|
|
s->size = size;
|
|
|
|
return TRUE;
|
2013-02-18 23:50:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
einfo ("%P: warning: Cannot create .note.gnu.build-id section,"
|
|
|
|
" --build-id ignored.\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2007-07-13 10:44:26 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* This is called after all the input files have been opened. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_after_open (void)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
struct bfd_link_needed_list *needed, *l;
|
2007-08-15 06:03:11 +00:00
|
|
|
struct elf_link_hash_table *htab;
|
|
|
|
|
* ld.texinfo (Expression Section): Describe treatment of numbers
and absolute symbols.
* ldemul.c (after_open_default): Look up __ld_compatibility.
* ldexp.c (fold_name): Convert absolute symbols to numbers when
inside output section definitions, or when __ld_compatibility >= 221.
(exp_fold_tree_1): Convert numbers to absolute when not in output
section definition and __ld_compatibility < 221. Don't always
convert values outside an output section definition to absolute.
* ldexp.h (uses_defined): Comment.
* ldlang.c (ld_compatibility): New variable.
* ldlang.h (ld_compatibility): Declare.
* emultempl/aix.em, * emultempl/armcoff.em, * emultempl/beos.em,
* emultempl/elf32.em, * emultempl/genelf.em, * emultempl/lnk960.em,
* emultempl/m68kcoff.em, * emultempl/mmo.em, * emultempl/pe.em,
* emultempl/pep.em, * emultempl/sunos.em, * emultempl/z80.em: Call
after_open_default from after_open function.
2010-12-20 13:00:14 +00:00
|
|
|
after_open_default ();
|
|
|
|
|
2007-08-15 06:03:11 +00:00
|
|
|
htab = elf_hash_table (&link_info);
|
|
|
|
if (!is_elf_hash_table (htab))
|
|
|
|
return;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2013-02-18 23:50:32 +00:00
|
|
|
if (emit_note_gnu_build_id != NULL)
|
2007-07-09 21:25:34 +00:00
|
|
|
{
|
|
|
|
bfd *abfd;
|
|
|
|
|
2010-08-22 19:11:58 +00:00
|
|
|
/* Find an ELF input. */
|
|
|
|
for (abfd = link_info.input_bfds;
|
Make bfd.link_next field a union
This field of struct bfd is currently only used to chain together
linker input files. This patch prepares to use the field to stash
the linker hash table, which is always created on the linker output
file.
bfd/
* bfd.c (struct bfd): Replace link_next with a union.
* aoutx.h, * bfd.c, * coff-ppc.c, * coff-rs6000.c, * cofflink.c,
* ecoff.c, * elf-m10300.c, * elf32-arm.c, * elf32-avr.c,
* elf32-hppa.c, * elf32-i386.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-metag.c,
* elf32-microblaze.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-ppc.c, * elf32-rl78.c, * elf32-s390.c,
* elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
* elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * linker.c, * pdp11.c, * peXXigen.c, * simple.c,
* sunos.c, * vms-alpha.c, * xcofflink.c: Update for above.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h: Update for bfd.link_next change.
ld/
* emultempl/cr16elf.em, * emultempl/elf32.em, * emultempl/genelf.em,
* emultempl/m68kcoff.em, * emultempl/m68kelf.em,
* emultempl/nds32elf.em, * emultempl/pe.em, * emultempl/pep.em,
* ldlang.c, * ldmain.c, * pe-dll.c: Update for bfd.link_next change.
2014-06-13 09:40:57 +00:00
|
|
|
abfd != (bfd *) NULL; abfd = abfd->link.next)
|
2014-12-24 11:37:42 +00:00
|
|
|
if (bfd_get_flavour (abfd) == bfd_target_elf_flavour
|
|
|
|
&& bfd_count_sections (abfd) != 0)
|
2010-08-22 19:11:58 +00:00
|
|
|
break;
|
2007-07-09 21:25:34 +00:00
|
|
|
|
2013-02-18 23:50:32 +00:00
|
|
|
/* PR 10555: If there are no ELF input files do not try to
|
|
|
|
create a .note.gnu-build-id section. */
|
|
|
|
if (abfd == NULL
|
|
|
|
|| !setup_build_id (abfd))
|
2007-07-09 21:25:34 +00:00
|
|
|
{
|
2013-02-18 23:50:32 +00:00
|
|
|
free ((char *) emit_note_gnu_build_id);
|
|
|
|
emit_note_gnu_build_id = NULL;
|
2007-07-09 21:25:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-15 06:03:11 +00:00
|
|
|
if (link_info.relocatable)
|
2014-03-31 12:14:44 +00:00
|
|
|
{
|
|
|
|
if (link_info.execstack == ! link_info.noexecstack)
|
|
|
|
/* PR ld/16744: If "-z [no]execstack" has been specified on the
|
|
|
|
command line and we are perfoming a relocatable link then no
|
|
|
|
PT_GNU_STACK segment will be created and so the
|
|
|
|
linkinfo.[no]execstack values set in _handle_option() will have no
|
|
|
|
effect. Instead we create a .note.GNU-stack section in much the
|
|
|
|
same way as the assembler does with its --[no]execstack option. */
|
|
|
|
(void) bfd_make_section_with_flags (link_info.input_bfds,
|
|
|
|
".note.GNU-stack",
|
|
|
|
SEC_READONLY | (link_info.execstack ? SEC_CODE : 0));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2007-08-15 06:03:11 +00:00
|
|
|
|
2006-12-04 08:57:09 +00:00
|
|
|
if (link_info.eh_frame_hdr
|
2007-08-15 06:03:11 +00:00
|
|
|
&& !link_info.traditional_format)
|
2006-12-04 08:57:09 +00:00
|
|
|
{
|
2010-08-22 19:11:58 +00:00
|
|
|
bfd *abfd, *elfbfd = NULL;
|
|
|
|
bfd_boolean warn_eh_frame = FALSE;
|
2007-08-15 06:03:11 +00:00
|
|
|
asection *s;
|
2006-12-04 08:57:09 +00:00
|
|
|
|
Make bfd.link_next field a union
This field of struct bfd is currently only used to chain together
linker input files. This patch prepares to use the field to stash
the linker hash table, which is always created on the linker output
file.
bfd/
* bfd.c (struct bfd): Replace link_next with a union.
* aoutx.h, * bfd.c, * coff-ppc.c, * coff-rs6000.c, * cofflink.c,
* ecoff.c, * elf-m10300.c, * elf32-arm.c, * elf32-avr.c,
* elf32-hppa.c, * elf32-i386.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-metag.c,
* elf32-microblaze.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-ppc.c, * elf32-rl78.c, * elf32-s390.c,
* elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
* elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * linker.c, * pdp11.c, * peXXigen.c, * simple.c,
* sunos.c, * vms-alpha.c, * xcofflink.c: Update for above.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h: Update for bfd.link_next change.
ld/
* emultempl/cr16elf.em, * emultempl/elf32.em, * emultempl/genelf.em,
* emultempl/m68kcoff.em, * emultempl/m68kelf.em,
* emultempl/nds32elf.em, * emultempl/pe.em, * emultempl/pep.em,
* ldlang.c, * ldmain.c, * pe-dll.c: Update for bfd.link_next change.
2014-06-13 09:40:57 +00:00
|
|
|
for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
|
2006-12-04 08:57:09 +00:00
|
|
|
{
|
2014-12-24 11:37:42 +00:00
|
|
|
if (bfd_count_sections (abfd) == 0)
|
|
|
|
continue;
|
2010-08-22 19:11:58 +00:00
|
|
|
if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
|
|
|
elfbfd = abfd;
|
2010-08-22 20:21:21 +00:00
|
|
|
if (!warn_eh_frame)
|
|
|
|
{
|
|
|
|
s = bfd_get_section_by_name (abfd, ".eh_frame");
|
2012-05-25 01:13:59 +00:00
|
|
|
while (s != NULL
|
|
|
|
&& (s->size <= 8
|
|
|
|
|| bfd_is_abs_section (s->output_section)))
|
|
|
|
s = bfd_get_next_section_by_name (s);
|
|
|
|
warn_eh_frame = s != NULL;
|
2010-08-22 20:21:21 +00:00
|
|
|
}
|
|
|
|
if (elfbfd && warn_eh_frame)
|
|
|
|
break;
|
2007-08-15 06:03:11 +00:00
|
|
|
}
|
2010-08-22 19:11:58 +00:00
|
|
|
if (elfbfd)
|
2007-08-15 06:03:11 +00:00
|
|
|
{
|
|
|
|
const struct elf_backend_data *bed;
|
|
|
|
|
2010-08-22 19:11:58 +00:00
|
|
|
bed = get_elf_backend_data (elfbfd);
|
|
|
|
s = bfd_make_section_with_flags (elfbfd, ".eh_frame_hdr",
|
|
|
|
bed->dynamic_sec_flags
|
|
|
|
| SEC_READONLY);
|
2007-08-15 06:03:11 +00:00
|
|
|
if (s != NULL
|
2010-08-22 19:11:58 +00:00
|
|
|
&& bfd_set_section_alignment (elfbfd, s, 2))
|
|
|
|
{
|
|
|
|
htab->eh_info.hdr_sec = s;
|
|
|
|
warn_eh_frame = FALSE;
|
|
|
|
}
|
2006-12-04 08:57:09 +00:00
|
|
|
}
|
2010-08-22 19:11:58 +00:00
|
|
|
if (warn_eh_frame)
|
|
|
|
einfo ("%P: warning: Cannot create .eh_frame_hdr section,"
|
|
|
|
" --eh-frame-hdr ignored.\n");
|
2006-12-04 08:57:09 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* Get the list of files which appear in DT_NEEDED entries in
|
|
|
|
dynamic objects included in the link (often there will be none).
|
|
|
|
For each such file, we want to track down the corresponding
|
|
|
|
library, and include the symbol table in the link. This is what
|
|
|
|
the runtime dynamic linker will do. Tracking the files down here
|
|
|
|
permits one dynamic object to include another without requiring
|
|
|
|
special action by the person doing the link. Note that the
|
|
|
|
needed list can actually grow while we are stepping through this
|
|
|
|
loop. */
|
2008-02-15 03:35:53 +00:00
|
|
|
needed = bfd_elf_get_needed_list (link_info.output_bfd, &link_info);
|
2000-07-28 01:07:09 +00:00
|
|
|
for (l = needed; l != NULL; l = l->next)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
struct bfd_link_needed_list *ll;
|
2004-07-19 16:40:52 +00:00
|
|
|
struct dt_needed n, nn;
|
2000-07-28 01:07:09 +00:00
|
|
|
int force;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-01-25 01:40:04 +00:00
|
|
|
/* If the lib that needs this one was --as-needed and wasn't
|
2013-04-26 01:26:45 +00:00
|
|
|
found to be needed, then this lib isn't needed either. */
|
2005-01-25 01:40:04 +00:00
|
|
|
if (l->by != NULL
|
2013-04-26 01:26:45 +00:00
|
|
|
&& (bfd_elf_get_dyn_lib_class (l->by) & DYN_AS_NEEDED) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Skip the lib if --no-copy-dt-needed-entries and
|
|
|
|
--allow-shlib-undefined is in effect. */
|
|
|
|
if (l->by != NULL
|
|
|
|
&& link_info.unresolved_syms_in_shared_libs == RM_IGNORE
|
|
|
|
&& (bfd_elf_get_dyn_lib_class (l->by) & DYN_NO_ADD_NEEDED) != 0)
|
2005-01-25 01:40:04 +00:00
|
|
|
continue;
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* If we've already seen this file, skip it. */
|
|
|
|
for (ll = needed; ll != l; ll = ll->next)
|
2005-01-25 01:40:04 +00:00
|
|
|
if ((ll->by == NULL
|
|
|
|
|| (bfd_elf_get_dyn_lib_class (ll->by) & DYN_AS_NEEDED) == 0)
|
|
|
|
&& strcmp (ll->name, l->name) == 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
break;
|
|
|
|
if (ll != l)
|
|
|
|
continue;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* See if this file was included in the link explicitly. */
|
|
|
|
global_needed = l;
|
2006-06-03 02:45:26 +00:00
|
|
|
global_found = NULL;
|
2000-07-28 01:07:09 +00:00
|
|
|
lang_for_each_input_file (gld${EMULATION_NAME}_check_needed);
|
2006-06-03 02:45:26 +00:00
|
|
|
if (global_found != NULL
|
|
|
|
&& (bfd_elf_get_dyn_lib_class (global_found->the_bfd)
|
|
|
|
& DYN_AS_NEEDED) == 0)
|
2000-07-28 01:07:09 +00:00
|
|
|
continue;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2004-07-19 16:40:52 +00:00
|
|
|
n.by = l->by;
|
|
|
|
n.name = l->name;
|
|
|
|
nn.by = l->by;
|
2012-07-13 13:20:27 +00:00
|
|
|
if (verbose)
|
2000-08-22 19:34:37 +00:00
|
|
|
info_msg (_("%s needed by %B\n"), l->name, l->by);
|
|
|
|
|
2006-06-03 02:45:26 +00:00
|
|
|
/* As-needed libs specified on the command line (or linker script)
|
|
|
|
take priority over libs found in search dirs. */
|
|
|
|
if (global_found != NULL)
|
|
|
|
{
|
|
|
|
nn.name = global_found->filename;
|
|
|
|
if (gld${EMULATION_NAME}_try_needed (&nn, TRUE))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* We need to find this file and include the symbol table. We
|
|
|
|
want to search for the file in the same way that the dynamic
|
|
|
|
linker will search. That means that we want to use
|
|
|
|
rpath_link, rpath, then the environment variable
|
2000-08-22 19:34:37 +00:00
|
|
|
LD_LIBRARY_PATH (native only), then the DT_RPATH/DT_RUNPATH
|
|
|
|
entries (native only), then the linker script LIB_SEARCH_DIRS.
|
|
|
|
We do not search using the -L arguments.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
We search twice. The first time, we skip objects which may
|
|
|
|
introduce version mismatches. The second time, we force
|
|
|
|
their use. See gld${EMULATION_NAME}_vercheck comment. */
|
|
|
|
for (force = 0; force < 2; force++)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
search_dirs_type *search;
|
2000-08-23 23:03:00 +00:00
|
|
|
EOF
|
2005-02-16 05:10:02 +00:00
|
|
|
if [ "x${NATIVE}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-08-25 20:24:11 +00:00
|
|
|
const char *lib_path;
|
2005-02-16 05:10:02 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-08-23 23:03:00 +00:00
|
|
|
struct bfd_link_needed_list *rp;
|
|
|
|
int found;
|
|
|
|
EOF
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (gld${EMULATION_NAME}_search_needed (command_line.rpath_link,
|
2004-07-19 16:40:52 +00:00
|
|
|
&n, force))
|
2000-07-28 01:07:09 +00:00
|
|
|
break;
|
2000-08-25 20:24:11 +00:00
|
|
|
EOF
|
2003-01-06 16:14:01 +00:00
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
if (gld${EMULATION_NAME}_search_needed (command_line.rpath,
|
2004-07-19 16:40:52 +00:00
|
|
|
&n, force))
|
2000-07-28 01:07:09 +00:00
|
|
|
break;
|
2003-01-06 16:14:01 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if [ "x${NATIVE}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
if (command_line.rpath_link == NULL
|
|
|
|
&& command_line.rpath == NULL)
|
|
|
|
{
|
|
|
|
lib_path = (const char *) getenv ("LD_RUN_PATH");
|
2004-07-19 16:40:52 +00:00
|
|
|
if (gld${EMULATION_NAME}_search_needed (lib_path, &n,
|
2000-07-28 01:07:09 +00:00
|
|
|
force))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
lib_path = (const char *) getenv ("LD_LIBRARY_PATH");
|
2004-07-19 16:40:52 +00:00
|
|
|
if (gld${EMULATION_NAME}_search_needed (lib_path, &n, force))
|
2000-07-28 01:07:09 +00:00
|
|
|
break;
|
2003-01-06 16:14:01 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-08-22 19:34:37 +00:00
|
|
|
found = 0;
|
2008-02-15 03:35:53 +00:00
|
|
|
rp = bfd_elf_get_runpath_list (link_info.output_bfd, &link_info);
|
2000-08-23 23:03:00 +00:00
|
|
|
for (; !found && rp != NULL; rp = rp->next)
|
2000-08-22 19:34:37 +00:00
|
|
|
{
|
2003-01-06 16:14:01 +00:00
|
|
|
char *tmpname = gld${EMULATION_NAME}_add_sysroot (rp->name);
|
2000-08-22 19:34:37 +00:00
|
|
|
found = (rp->by == l->by
|
2003-01-06 16:14:01 +00:00
|
|
|
&& gld${EMULATION_NAME}_search_needed (tmpname,
|
2004-07-19 16:40:52 +00:00
|
|
|
&n,
|
2000-08-22 19:34:37 +00:00
|
|
|
force));
|
2003-01-06 16:14:01 +00:00
|
|
|
free (tmpname);
|
2000-08-22 19:34:37 +00:00
|
|
|
}
|
|
|
|
if (found)
|
|
|
|
break;
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
EOF
|
|
|
|
fi
|
2006-02-09 01:05:10 +00:00
|
|
|
if [ "x${USE_LIBPATH}" = xyes ] ; then
|
|
|
|
case ${target} in
|
2006-04-11 10:36:26 +00:00
|
|
|
*-*-freebsd* | *-*-dragonfly*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2013-01-08 06:10:39 +00:00
|
|
|
if (gld${EMULATION_NAME}_check_ld_elf_hints (l, force))
|
2006-04-11 10:36:26 +00:00
|
|
|
break;
|
|
|
|
EOF
|
|
|
|
# FreeBSD
|
|
|
|
;;
|
|
|
|
|
2012-05-16 10:43:41 +00:00
|
|
|
*-*-linux-* | *-*-k*bsd*-* | *-*-gnu*)
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2013-01-08 06:10:39 +00:00
|
|
|
if (gld${EMULATION_NAME}_check_ld_so_conf (l, force))
|
2006-02-09 01:05:10 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
EOF
|
2013-02-05 21:47:32 +00:00
|
|
|
# Linux
|
2006-02-09 01:05:10 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
len = strlen (l->name);
|
|
|
|
for (search = search_head; search != NULL; search = search->next)
|
|
|
|
{
|
|
|
|
char *filename;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (search->cmdline)
|
|
|
|
continue;
|
|
|
|
filename = (char *) xmalloc (strlen (search->name) + len + 2);
|
|
|
|
sprintf (filename, "%s/%s", search->name, l->name);
|
2004-07-19 16:40:52 +00:00
|
|
|
nn.name = filename;
|
|
|
|
if (gld${EMULATION_NAME}_try_needed (&nn, force))
|
2000-07-28 01:07:09 +00:00
|
|
|
break;
|
|
|
|
free (filename);
|
|
|
|
}
|
|
|
|
if (search != NULL)
|
|
|
|
break;
|
|
|
|
EOF
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
if (force < 2)
|
|
|
|
continue;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-08-09 00:51:42 +00:00
|
|
|
einfo ("%P: warning: %s, needed by %B, not found (try using -rpath or -rpath-link)\n",
|
2000-07-28 01:07:09 +00:00
|
|
|
l->name, l->by);
|
|
|
|
}
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* Look through an expression for an assignment statement. */
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (etree_type *exp)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2005-02-03 14:12:54 +00:00
|
|
|
bfd_boolean provide = FALSE;
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
switch (exp->type.node_class)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
case etree_provide:
|
2010-06-25 04:46:05 +00:00
|
|
|
case etree_provided:
|
2005-02-03 14:12:54 +00:00
|
|
|
provide = TRUE;
|
|
|
|
/* Fall thru */
|
|
|
|
case etree_assign:
|
2000-07-28 01:07:09 +00:00
|
|
|
/* We call record_link_assignment even if the symbol is defined.
|
|
|
|
This is because if it is defined by a dynamic object, we
|
|
|
|
actually want to use the value defined by the linker script,
|
|
|
|
not the value from the dynamic object (because we are setting
|
|
|
|
symbols like etext). If the symbol is defined by a regular
|
|
|
|
object, then, as it happens, calling record_link_assignment
|
|
|
|
will do no harm. */
|
|
|
|
if (strcmp (exp->assign.dst, ".") != 0)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2008-02-15 03:35:53 +00:00
|
|
|
if (!bfd_elf_record_link_assignment (link_info.output_bfd,
|
|
|
|
&link_info,
|
2005-12-07 14:43:54 +00:00
|
|
|
exp->assign.dst, provide,
|
|
|
|
exp->assign.hidden))
|
2000-07-28 01:07:09 +00:00
|
|
|
einfo ("%P%F: failed to record assignment to %s: %E\n",
|
|
|
|
exp->assign.dst);
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->assign.src);
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
case etree_binary:
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->binary.lhs);
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->binary.rhs);
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
case etree_trinary:
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.cond);
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.lhs);
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->trinary.rhs);
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
case etree_unary:
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (exp->unary.child);
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
default:
|
|
|
|
break;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
/* This is called by the before_allocation routine via
|
|
|
|
lang_for_each_statement. It locates any assignment statements, and
|
|
|
|
tells the ELF backend about them, in case they are assignments to
|
|
|
|
symbols which are referred to by dynamic objects. */
|
|
|
|
|
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_find_statement_assignment (lang_statement_union_type *s)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
|
|
|
if (s->header.type == lang_assignment_statement_enum)
|
|
|
|
gld${EMULATION_NAME}_find_exp_assignment (s->assignment_statement.exp);
|
|
|
|
}
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test x"$LDEMUL_BEFORE_ALLOCATION" != xgld"$EMULATION_NAME"_before_allocation; then
|
2001-05-24 02:44:06 +00:00
|
|
|
if test x"${ELF_INTERPRETER_NAME+set}" = xset; then
|
|
|
|
ELF_INTERPRETER_SET_DEFAULT="
|
|
|
|
if (sinterp != NULL)
|
|
|
|
{
|
2005-02-22 13:00:26 +00:00
|
|
|
sinterp->contents = (unsigned char *) ${ELF_INTERPRETER_NAME};
|
|
|
|
sinterp->size = strlen ((char *) sinterp->contents) + 1;
|
2001-05-24 02:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
"
|
|
|
|
else
|
|
|
|
ELF_INTERPRETER_SET_DEFAULT=
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2009-09-23 13:54:29 +00:00
|
|
|
/* used by before_allocation and handle_option. */
|
2012-11-21 19:56:38 +00:00
|
|
|
static void
|
2009-12-11 13:42:17 +00:00
|
|
|
gld${EMULATION_NAME}_append_to_separated_string (char **to, char *op_arg)
|
2009-09-23 13:54:29 +00:00
|
|
|
{
|
|
|
|
if (*to == NULL)
|
2009-12-11 13:42:17 +00:00
|
|
|
*to = xstrdup (op_arg);
|
2009-09-23 13:54:29 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t to_len = strlen (*to);
|
2009-12-11 13:42:17 +00:00
|
|
|
size_t op_arg_len = strlen (op_arg);
|
2009-09-23 13:54:29 +00:00
|
|
|
char *buf;
|
|
|
|
char *cp = *to;
|
|
|
|
|
|
|
|
/* First see whether OPTARG is already in the path. */
|
|
|
|
do
|
|
|
|
{
|
2009-12-11 13:42:17 +00:00
|
|
|
if (strncmp (op_arg, cp, op_arg_len) == 0
|
|
|
|
&& (cp[op_arg_len] == 0
|
|
|
|
|| cp[op_arg_len] == config.rpath_separator))
|
2009-09-23 13:54:29 +00:00
|
|
|
/* We found it. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Not yet found. */
|
|
|
|
cp = strchr (cp, config.rpath_separator);
|
|
|
|
if (cp != NULL)
|
|
|
|
++cp;
|
|
|
|
}
|
|
|
|
while (cp != NULL);
|
|
|
|
|
|
|
|
if (cp == NULL)
|
|
|
|
{
|
2009-12-11 13:42:17 +00:00
|
|
|
buf = xmalloc (to_len + op_arg_len + 2);
|
2009-09-23 13:54:29 +00:00
|
|
|
sprintf (buf, "%s%c%s", *to,
|
2009-12-11 13:42:17 +00:00
|
|
|
config.rpath_separator, op_arg);
|
2009-09-23 13:54:29 +00:00
|
|
|
free (*to);
|
|
|
|
*to = buf;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
/* This is called after the sections have been attached to output
|
|
|
|
sections, but before any sizes or addresses have been set. */
|
|
|
|
|
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_before_allocation (void)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
|
|
|
const char *rpath;
|
|
|
|
asection *sinterp;
|
2009-09-23 13:54:29 +00:00
|
|
|
bfd *abfd;
|
2014-01-15 11:20:55 +00:00
|
|
|
struct elf_link_hash_entry *ehdr_start = NULL;
|
2014-01-15 15:43:19 +00:00
|
|
|
struct bfd_link_hash_entry ehdr_start_save = ehdr_start_save;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2013-05-01 17:18:43 +00:00
|
|
|
if (is_elf_hash_table (link_info.hash))
|
2013-05-03 15:01:19 +00:00
|
|
|
{
|
|
|
|
_bfd_elf_tls_setup (link_info.output_bfd, &link_info);
|
2003-11-04 06:16:39 +00:00
|
|
|
|
2013-05-03 15:19:27 +00:00
|
|
|
/* Make __ehdr_start hidden if it has been referenced, to
|
|
|
|
prevent the symbol from being dynamic. */
|
2013-11-19 18:54:00 +00:00
|
|
|
if (!link_info.relocatable)
|
|
|
|
{
|
|
|
|
struct elf_link_hash_entry *h
|
|
|
|
= elf_link_hash_lookup (elf_hash_table (&link_info), "__ehdr_start",
|
|
|
|
FALSE, FALSE, TRUE);
|
|
|
|
|
|
|
|
/* Only adjust the export class if the symbol was referenced
|
|
|
|
and not defined, otherwise leave it alone. */
|
|
|
|
if (h != NULL
|
|
|
|
&& (h->root.type == bfd_link_hash_new
|
|
|
|
|| h->root.type == bfd_link_hash_undefined
|
|
|
|
|| h->root.type == bfd_link_hash_undefweak
|
|
|
|
|| h->root.type == bfd_link_hash_common))
|
|
|
|
{
|
|
|
|
_bfd_elf_link_hash_hide_symbol (&link_info, h, TRUE);
|
|
|
|
if (ELF_ST_VISIBILITY (h->other) != STV_INTERNAL)
|
|
|
|
h->other = (h->other & ~ELF_ST_VISIBILITY (-1)) | STV_HIDDEN;
|
2014-01-15 11:20:55 +00:00
|
|
|
/* Don't leave the symbol undefined. Undefined hidden
|
|
|
|
symbols typically won't have dynamic relocations, but
|
|
|
|
we most likely will need dynamic relocations for
|
|
|
|
__ehdr_start if we are building a PIE or shared
|
|
|
|
library. */
|
|
|
|
ehdr_start = h;
|
|
|
|
ehdr_start_save = h->root;
|
|
|
|
h->root.type = bfd_link_hash_defined;
|
|
|
|
h->root.u.def.section = bfd_abs_section_ptr;
|
|
|
|
h->root.u.def.value = 0;
|
2013-11-19 18:54:00 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-03 15:19:27 +00:00
|
|
|
|
2013-05-03 15:01:19 +00:00
|
|
|
/* If we are going to make any variable assignments, we need to
|
|
|
|
let the ELF backend know about them in case the variables are
|
|
|
|
referred to by dynamic objects. */
|
|
|
|
lang_for_each_statement (gld${EMULATION_NAME}_find_statement_assignment);
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/* Let the ELF backend work out the sizes of any sections required
|
|
|
|
by dynamic linking. */
|
|
|
|
rpath = command_line.rpath;
|
|
|
|
if (rpath == NULL)
|
|
|
|
rpath = (const char *) getenv ("LD_RUN_PATH");
|
2009-09-23 13:54:29 +00:00
|
|
|
|
Make bfd.link_next field a union
This field of struct bfd is currently only used to chain together
linker input files. This patch prepares to use the field to stash
the linker hash table, which is always created on the linker output
file.
bfd/
* bfd.c (struct bfd): Replace link_next with a union.
* aoutx.h, * bfd.c, * coff-ppc.c, * coff-rs6000.c, * cofflink.c,
* ecoff.c, * elf-m10300.c, * elf32-arm.c, * elf32-avr.c,
* elf32-hppa.c, * elf32-i386.c, * elf32-lm32.c, * elf32-m32c.c,
* elf32-m32r.c, * elf32-m68hc1x.c, * elf32-metag.c,
* elf32-microblaze.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-or1k.c, * elf32-ppc.c, * elf32-rl78.c, * elf32-s390.c,
* elf32-score.c, * elf32-score7.c, * elf32-sh.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-xstormy16.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
* elf64-mmix.c, * elf64-ppc.c, * elf64-s390.c, * elf64-x86-64.c,
* elflink.c, * elfnn-aarch64.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * linker.c, * pdp11.c, * peXXigen.c, * simple.c,
* sunos.c, * vms-alpha.c, * xcofflink.c: Update for above.
* bfd-in2.h: Regenerate.
include/
* bfdlink.h: Update for bfd.link_next change.
ld/
* emultempl/cr16elf.em, * emultempl/elf32.em, * emultempl/genelf.em,
* emultempl/m68kcoff.em, * emultempl/m68kelf.em,
* emultempl/nds32elf.em, * emultempl/pe.em, * emultempl/pep.em,
* ldlang.c, * ldmain.c, * pe-dll.c: Update for bfd.link_next change.
2014-06-13 09:40:57 +00:00
|
|
|
for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next)
|
2010-08-25 16:57:32 +00:00
|
|
|
if (bfd_get_flavour (abfd) == bfd_target_elf_flavour)
|
|
|
|
{
|
|
|
|
const char *audit_libs = elf_dt_audit (abfd);
|
2009-09-23 13:54:29 +00:00
|
|
|
|
2012-11-21 19:56:38 +00:00
|
|
|
/* If the input bfd contains an audit entry, we need to add it as
|
2010-08-25 16:57:32 +00:00
|
|
|
a dep audit entry. */
|
|
|
|
if (audit_libs && *audit_libs != '\0')
|
|
|
|
{
|
|
|
|
char *cp = xstrdup (audit_libs);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
int more = 0;
|
|
|
|
char *cp2 = strchr (cp, config.rpath_separator);
|
2009-09-23 13:54:29 +00:00
|
|
|
|
2010-08-25 16:57:32 +00:00
|
|
|
if (cp2)
|
|
|
|
{
|
|
|
|
*cp2 = '\0';
|
|
|
|
more = 1;
|
|
|
|
}
|
2009-09-23 13:54:29 +00:00
|
|
|
|
2010-08-25 16:57:32 +00:00
|
|
|
if (cp != NULL && *cp != '\0')
|
|
|
|
gld${EMULATION_NAME}_append_to_separated_string (&depaudit, cp);
|
|
|
|
|
|
|
|
cp = more ? ++cp2 : NULL;
|
|
|
|
}
|
|
|
|
while (cp != NULL);
|
|
|
|
}
|
|
|
|
}
|
2009-09-23 13:54:29 +00:00
|
|
|
|
2004-03-25 12:48:45 +00:00
|
|
|
if (! (bfd_elf_size_dynamic_sections
|
2008-02-15 03:35:53 +00:00
|
|
|
(link_info.output_bfd, command_line.soname, rpath,
|
2009-09-23 13:54:29 +00:00
|
|
|
command_line.filter_shlib, audit, depaudit,
|
1999-05-03 07:29:11 +00:00
|
|
|
(const char * const *) command_line.auxiliary_filters,
|
2011-09-16 01:15:20 +00:00
|
|
|
&link_info, &sinterp)))
|
1999-05-03 07:29:11 +00:00
|
|
|
einfo ("%P%F: failed to set dynamic section sizes: %E\n");
|
2005-05-04 11:00:28 +00:00
|
|
|
|
2001-05-24 02:44:06 +00:00
|
|
|
${ELF_INTERPRETER_SET_DEFAULT}
|
1999-05-03 07:29:11 +00:00
|
|
|
/* Let the user override the dynamic linker we are using. */
|
|
|
|
if (command_line.interpreter != NULL
|
|
|
|
&& sinterp != NULL)
|
|
|
|
{
|
|
|
|
sinterp->contents = (bfd_byte *) command_line.interpreter;
|
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 04:46:28 +00:00
|
|
|
sinterp->size = strlen (command_line.interpreter) + 1;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Look for any sections named .gnu.warning. As a GNU extensions,
|
|
|
|
we treat such sections as containing warning messages. We print
|
|
|
|
out the warning message, and then zero out the section size so
|
|
|
|
that it does not get copied into the output file. */
|
|
|
|
|
|
|
|
{
|
|
|
|
LANG_FOR_EACH_INPUT_STATEMENT (is)
|
|
|
|
{
|
|
|
|
asection *s;
|
|
|
|
bfd_size_type sz;
|
|
|
|
char *msg;
|
2002-11-30 08:39:46 +00:00
|
|
|
bfd_boolean ret;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2012-03-05 22:43:40 +00:00
|
|
|
if (is->flags.just_syms)
|
1999-05-03 07:29:11 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
s = bfd_get_section_by_name (is->the_bfd, ".gnu.warning");
|
|
|
|
if (s == NULL)
|
|
|
|
continue;
|
|
|
|
|
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 04:46:28 +00:00
|
|
|
sz = s->size;
|
2009-09-11 15:27:38 +00:00
|
|
|
msg = (char *) xmalloc ((size_t) (sz + 1));
|
2006-11-06 10:39:17 +00:00
|
|
|
if (! bfd_get_section_contents (is->the_bfd, s, msg,
|
2003-08-04 11:32:52 +00:00
|
|
|
(file_ptr) 0, sz))
|
1999-05-03 07:29:11 +00:00
|
|
|
einfo ("%F%B: Can't read contents of section .gnu.warning: %E\n",
|
|
|
|
is->the_bfd);
|
2006-11-06 10:39:17 +00:00
|
|
|
msg[sz] = '\0';
|
1999-05-03 07:29:11 +00:00
|
|
|
ret = link_info.callbacks->warning (&link_info, msg,
|
|
|
|
(const char *) NULL,
|
|
|
|
is->the_bfd, (asection *) NULL,
|
|
|
|
(bfd_vma) 0);
|
|
|
|
ASSERT (ret);
|
|
|
|
free (msg);
|
|
|
|
|
2006-11-08 11:29:16 +00:00
|
|
|
/* Clobber the section size, so that we don't waste space
|
|
|
|
copying the warning into the output file. If we've already
|
|
|
|
sized the output section, adjust its size. The adjustment
|
|
|
|
is on rawsize because targets that size sections early will
|
|
|
|
have called lang_reset_memory_regions after sizing. */
|
|
|
|
if (s->output_section != NULL
|
|
|
|
&& s->output_section->rawsize >= s->size)
|
|
|
|
s->output_section->rawsize -= s->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 04:46:28 +00:00
|
|
|
s->size = 0;
|
2005-03-22 14:49:16 +00:00
|
|
|
|
2006-11-08 11:29:16 +00:00
|
|
|
/* Also set SEC_EXCLUDE, so that local symbols defined in the
|
|
|
|
warning section don't get copied to the output. */
|
2006-10-27 03:22:09 +00:00
|
|
|
s->flags |= SEC_EXCLUDE | SEC_KEEP;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
}
|
2005-05-04 11:00:28 +00:00
|
|
|
|
2005-08-04 01:19:10 +00:00
|
|
|
before_allocation_default ();
|
2005-05-04 11:00:28 +00:00
|
|
|
|
2008-02-15 03:35:53 +00:00
|
|
|
if (!bfd_elf_size_dynsym_hash_dynstr (link_info.output_bfd, &link_info))
|
2005-05-04 11:00:28 +00:00
|
|
|
einfo ("%P%F: failed to set dynamic section sizes: %E\n");
|
2014-01-15 11:20:55 +00:00
|
|
|
|
|
|
|
if (ehdr_start != NULL)
|
|
|
|
{
|
|
|
|
/* If we twiddled __ehdr_start to defined earlier, put it back
|
|
|
|
as it was. */
|
|
|
|
ehdr_start->root.type = ehdr_start_save.type;
|
|
|
|
ehdr_start->root.u = ehdr_start_save.u;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$LDEMUL_OPEN_DYNAMIC_ARCHIVE" != xgld"$EMULATION_NAME"_open_dynamic_archive; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* Try to open a dynamic archive. This is where we know that ELF
|
|
|
|
dynamic libraries have an extension of .so (or .sl on oddball systems
|
|
|
|
like hpux). */
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
static bfd_boolean
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_open_dynamic_archive
|
|
|
|
(const char *arch, search_dirs_type *search, lang_input_statement_type *entry)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
const char *filename;
|
|
|
|
char *string;
|
2014-03-14 00:55:59 +00:00
|
|
|
size_t len;
|
|
|
|
bfd_boolean opened = FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2012-03-05 22:43:40 +00:00
|
|
|
if (! entry->flags.maybe_archive)
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
filename = entry->filename;
|
2014-03-14 00:55:59 +00:00
|
|
|
len = strlen (search->name) + strlen (filename);
|
|
|
|
if (entry->flags.full_name_provided)
|
|
|
|
{
|
|
|
|
len += sizeof "/";
|
|
|
|
string = (char *) xmalloc (len);
|
|
|
|
sprintf (string, "%s/%s", search->name, filename);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t xlen = 0;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2014-03-14 00:55:59 +00:00
|
|
|
len += strlen (arch) + sizeof "/lib.so";
|
2000-07-28 01:07:09 +00:00
|
|
|
#ifdef EXTRA_SHLIB_EXTENSION
|
2014-03-14 00:55:59 +00:00
|
|
|
xlen = (strlen (EXTRA_SHLIB_EXTENSION) > 3
|
|
|
|
? strlen (EXTRA_SHLIB_EXTENSION) - 3
|
|
|
|
: 0);
|
2000-07-28 01:07:09 +00:00
|
|
|
#endif
|
2014-03-14 00:55:59 +00:00
|
|
|
string = (char *) xmalloc (len + xlen);
|
|
|
|
sprintf (string, "%s/lib%s%s.so", search->name, filename, arch);
|
2000-07-28 01:07:09 +00:00
|
|
|
#ifdef EXTRA_SHLIB_EXTENSION
|
2014-03-14 00:55:59 +00:00
|
|
|
/* Try the .so extension first. If that fails build a new filename
|
|
|
|
using EXTRA_SHLIB_EXTENSION. */
|
|
|
|
opened = ldfile_try_open_bfd (string, entry);
|
|
|
|
if (!opened)
|
|
|
|
strcpy (string + len - 4, EXTRA_SHLIB_EXTENSION);
|
2000-07-28 01:07:09 +00:00
|
|
|
#endif
|
2014-03-14 00:55:59 +00:00
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2014-03-14 00:55:59 +00:00
|
|
|
if (!opened && !ldfile_try_open_bfd (string, entry))
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:07:09 +00:00
|
|
|
free (string);
|
2002-11-30 08:39:46 +00:00
|
|
|
return FALSE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
entry->filename = string;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* We have found a dynamic object to include in the link. The ELF
|
|
|
|
backend linker will create a DT_NEEDED entry in the .dynamic
|
|
|
|
section naming this file. If this file includes a DT_SONAME
|
|
|
|
entry, it will be used. Otherwise, the ELF linker will just use
|
|
|
|
the name of the file. For an archive found by searching, like
|
|
|
|
this one, the DT_NEEDED entry should consist of just the name of
|
|
|
|
the file, without the path information used to find it. Note
|
|
|
|
that we only need to do this if we have a dynamic object; an
|
|
|
|
archive will never be referenced by a DT_NEEDED entry.
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
FIXME: This approach--using bfd_elf_set_dt_needed_name--is not
|
|
|
|
very pretty. I haven't been able to think of anything that is
|
|
|
|
pretty, though. */
|
|
|
|
if (bfd_check_format (entry->the_bfd, bfd_object)
|
|
|
|
&& (entry->the_bfd->flags & DYNAMIC) != 0)
|
|
|
|
{
|
2012-03-05 22:43:40 +00:00
|
|
|
ASSERT (entry->flags.maybe_archive && entry->flags.search_dirs);
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-07-28 01:07:09 +00:00
|
|
|
/* Rather than duplicating the logic above. Just use the
|
2001-05-03 06:26:26 +00:00
|
|
|
filename we recorded earlier. */
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2014-03-14 00:55:59 +00:00
|
|
|
if (!entry->flags.full_name_provided)
|
|
|
|
filename = lbasename (entry->filename);
|
2001-05-03 06:26:26 +00:00
|
|
|
bfd_elf_set_dt_needed_name (entry->the_bfd, filename);
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
2002-11-30 08:39:46 +00:00
|
|
|
return TRUE;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
fi
|
2001-08-14 04:40:38 +00:00
|
|
|
|
|
|
|
if test x"$LDEMUL_PLACE_ORPHAN" != xgld"$EMULATION_NAME"_place_orphan; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:33:14 +00:00
|
|
|
|
2004-10-14 12:54:47 +00:00
|
|
|
/* A variant of lang_output_section_find used by place_orphan. */
|
2000-07-28 01:07:09 +00:00
|
|
|
|
|
|
|
static lang_output_section_statement_type *
|
2003-08-04 04:01:39 +00:00
|
|
|
output_rel_find (asection *sec, int isdyn)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
|
|
|
lang_output_section_statement_type *lookup;
|
2002-09-30 03:34:46 +00:00
|
|
|
lang_output_section_statement_type *last = NULL;
|
2003-08-04 04:01:39 +00:00
|
|
|
lang_output_section_statement_type *last_alloc = NULL;
|
2007-07-29 12:33:38 +00:00
|
|
|
lang_output_section_statement_type *last_ro_alloc = NULL;
|
2002-09-30 03:34:46 +00:00
|
|
|
lang_output_section_statement_type *last_rel = NULL;
|
|
|
|
lang_output_section_statement_type *last_rel_alloc = NULL;
|
2002-10-10 02:52:27 +00:00
|
|
|
int rela = sec->name[4] == 'a';
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2004-10-14 12:54:47 +00:00
|
|
|
for (lookup = &lang_output_section_statement.head->output_section_statement;
|
|
|
|
lookup != NULL;
|
|
|
|
lookup = lookup->next)
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2008-09-07 04:02:31 +00:00
|
|
|
if (lookup->constraint >= 0
|
2006-09-16 18:12:17 +00:00
|
|
|
&& CONST_STRNEQ (lookup->name, ".rel"))
|
2000-07-28 01:07:09 +00:00
|
|
|
{
|
2002-10-10 02:52:27 +00:00
|
|
|
int lookrela = lookup->name[4] == 'a';
|
2002-09-30 03:34:46 +00:00
|
|
|
|
2003-08-04 04:01:39 +00:00
|
|
|
/* .rel.dyn must come before all other reloc sections, to suit
|
|
|
|
GNU ld.so. */
|
|
|
|
if (isdyn)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Don't place after .rel.plt as doing so results in wrong
|
|
|
|
dynamic tags. */
|
|
|
|
if (strcmp (".plt", lookup->name + 4 + lookrela) == 0)
|
2002-09-30 03:34:46 +00:00
|
|
|
break;
|
2003-08-04 04:01:39 +00:00
|
|
|
|
|
|
|
if (rela == lookrela || last_rel == NULL)
|
2002-10-10 02:52:27 +00:00
|
|
|
last_rel = lookup;
|
2003-08-04 04:01:39 +00:00
|
|
|
if ((rela == lookrela || last_rel_alloc == NULL)
|
|
|
|
&& lookup->bfd_section != NULL
|
2002-09-30 03:34:46 +00:00
|
|
|
&& (lookup->bfd_section->flags & SEC_ALLOC) != 0)
|
|
|
|
last_rel_alloc = lookup;
|
2000-07-28 01:07:09 +00:00
|
|
|
}
|
2003-08-04 04:01:39 +00:00
|
|
|
|
|
|
|
last = lookup;
|
|
|
|
if (lookup->bfd_section != NULL
|
|
|
|
&& (lookup->bfd_section->flags & SEC_ALLOC) != 0)
|
2007-07-29 12:33:38 +00:00
|
|
|
{
|
|
|
|
last_alloc = lookup;
|
|
|
|
if ((lookup->bfd_section->flags & SEC_READONLY) != 0)
|
|
|
|
last_ro_alloc = lookup;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
2002-09-30 03:34:46 +00:00
|
|
|
|
|
|
|
if (last_rel_alloc)
|
|
|
|
return last_rel_alloc;
|
|
|
|
|
|
|
|
if (last_rel)
|
|
|
|
return last_rel;
|
|
|
|
|
2007-07-29 12:33:38 +00:00
|
|
|
if (last_ro_alloc)
|
|
|
|
return last_ro_alloc;
|
|
|
|
|
2003-08-04 04:01:39 +00:00
|
|
|
if (last_alloc)
|
|
|
|
return last_alloc;
|
|
|
|
|
2002-09-30 03:34:46 +00:00
|
|
|
return last;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Place an orphan section. We use this to put random SHF_ALLOC
|
|
|
|
sections in the right segment. */
|
|
|
|
|
2008-10-20 12:14:29 +00:00
|
|
|
static lang_output_section_statement_type *
|
2008-10-04 06:08:59 +00:00
|
|
|
gld${EMULATION_NAME}_place_orphan (asection *s,
|
|
|
|
const char *secname,
|
|
|
|
int constraint)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2004-10-14 12:54:47 +00:00
|
|
|
static struct orphan_save hold[] =
|
|
|
|
{
|
|
|
|
{ ".text",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE,
|
|
|
|
0, 0, 0, 0 },
|
|
|
|
{ ".rodata",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
|
|
|
|
0, 0, 0, 0 },
|
2014-01-22 19:24:12 +00:00
|
|
|
{ ".tdata",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_THREAD_LOCAL,
|
|
|
|
0, 0, 0, 0 },
|
2004-10-14 12:54:47 +00:00
|
|
|
{ ".data",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA,
|
|
|
|
0, 0, 0, 0 },
|
|
|
|
{ ".bss",
|
|
|
|
SEC_ALLOC,
|
|
|
|
0, 0, 0, 0 },
|
|
|
|
{ 0,
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
|
|
|
|
0, 0, 0, 0 },
|
|
|
|
{ ".interp",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_DATA,
|
|
|
|
0, 0, 0, 0 },
|
|
|
|
{ ".sdata",
|
|
|
|
SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_DATA | SEC_SMALL_DATA,
|
2008-10-21 22:55:04 +00:00
|
|
|
0, 0, 0, 0 },
|
2011-01-14 02:27:41 +00:00
|
|
|
{ ".comment",
|
2008-10-21 22:55:04 +00:00
|
|
|
SEC_HAS_CONTENTS,
|
|
|
|
0, 0, 0, 0 },
|
2004-10-14 12:54:47 +00:00
|
|
|
};
|
|
|
|
enum orphan_save_index
|
|
|
|
{
|
|
|
|
orphan_text = 0,
|
|
|
|
orphan_rodata,
|
2014-01-22 19:24:12 +00:00
|
|
|
orphan_tdata,
|
2004-10-14 12:54:47 +00:00
|
|
|
orphan_data,
|
|
|
|
orphan_bss,
|
|
|
|
orphan_rel,
|
|
|
|
orphan_interp,
|
2008-10-21 22:55:04 +00:00
|
|
|
orphan_sdata,
|
|
|
|
orphan_nonalloc
|
2004-10-14 12:54:47 +00:00
|
|
|
};
|
|
|
|
static int orphan_init_done = 0;
|
2000-04-12 02:43:37 +00:00
|
|
|
struct orphan_save *place;
|
2004-10-14 12:54:47 +00:00
|
|
|
lang_output_section_statement_type *after;
|
1999-05-03 07:29:11 +00:00
|
|
|
lang_output_section_statement_type *os;
|
2010-01-14 04:56:12 +00:00
|
|
|
lang_output_section_statement_type *match_by_name = NULL;
|
2002-10-10 02:52:27 +00:00
|
|
|
int isdyn = 0;
|
2005-10-15 14:57:55 +00:00
|
|
|
int iself = s->owner->xvec->flavour == bfd_target_elf_flavour;
|
|
|
|
unsigned int sh_type = iself ? elf_section_type (s) : SHT_NULL;
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2003-06-25 06:40:27 +00:00
|
|
|
if (! link_info.relocatable
|
2002-10-10 02:52:27 +00:00
|
|
|
&& link_info.combreloc
|
2005-10-15 14:57:55 +00:00
|
|
|
&& (s->flags & SEC_ALLOC))
|
2002-10-10 02:52:27 +00:00
|
|
|
{
|
2005-10-15 14:57:55 +00:00
|
|
|
if (iself)
|
|
|
|
switch (sh_type)
|
|
|
|
{
|
|
|
|
case SHT_RELA:
|
|
|
|
secname = ".rela.dyn";
|
|
|
|
isdyn = 1;
|
|
|
|
break;
|
|
|
|
case SHT_REL:
|
|
|
|
secname = ".rel.dyn";
|
|
|
|
isdyn = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2006-09-16 18:12:17 +00:00
|
|
|
else if (CONST_STRNEQ (secname, ".rel"))
|
2005-10-15 14:57:55 +00:00
|
|
|
{
|
|
|
|
secname = secname[4] == 'a' ? ".rela.dyn" : ".rel.dyn";
|
|
|
|
isdyn = 1;
|
|
|
|
}
|
2002-10-10 02:52:27 +00:00
|
|
|
}
|
2000-04-25 05:14:16 +00:00
|
|
|
|
2008-10-03 09:40:49 +00:00
|
|
|
/* Look through the script to see where to place this section. */
|
ld/
* ldlang.c (lang_output_section_statement_lookup): Add function
comment. Make "name" non-const. Ensure duplicate entries use
the same string, allowing simple comparison in hash bucket loop.
Tweak constraint check.
(next_matching_output_section_statement): New function.
* ldlang.h (lang_output_section_statement_lookup): Update.
(next_matching_output_section_statement): Declare.
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
combine orphan sections when input sections flags differ in
alloc or load.
* emultempl/pe.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
* emultempl/pep.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
ld/testsuite/
* ld-elf/orphan3.d, * ld-elf/orphan3a.s, * ld-elf/orphan3b.s,
* ld-elf/orphan3c.s, * ld-elf/orphan3d.s, * ld-elf/orphan3e.s,
* ld-elf/orphan3f.s: New test.
* ld-pe/orphan.d, * ld-pe/orphana.s, * ld-pe/orphanb.s,
* ld-pe/orphand.s, * ld-pe/orphane.s: New test.
* ld-pe/direct.exp: Use is_pecoff_format.
* ld-pe/longsecn.exp: Delete.
* ld-pe/pe.exp: Run new test and longsecn tests.
2009-05-15 14:22:36 +00:00
|
|
|
if (constraint == 0)
|
|
|
|
for (os = lang_output_section_find (secname);
|
|
|
|
os != NULL;
|
|
|
|
os = next_matching_output_section_statement (os, 0))
|
|
|
|
{
|
|
|
|
/* If we don't match an existing output section, tell
|
|
|
|
lang_insert_orphan to create a new output section. */
|
|
|
|
constraint = SPECIAL;
|
|
|
|
|
|
|
|
if (os->bfd_section != NULL
|
|
|
|
&& (os->bfd_section->flags == 0
|
|
|
|
|| (_bfd_elf_match_sections_by_type (link_info.output_bfd,
|
|
|
|
os->bfd_section,
|
|
|
|
s->owner, s)
|
|
|
|
&& ((s->flags ^ os->bfd_section->flags)
|
|
|
|
& (SEC_LOAD | SEC_ALLOC)) == 0)))
|
|
|
|
{
|
|
|
|
/* We already have an output section statement with this
|
|
|
|
name, and its bfd section has compatible flags.
|
|
|
|
If the section already exists but does not have any flags
|
|
|
|
set, then it has been created by the linker, probably as a
|
|
|
|
result of a --section-start command line switch. */
|
Add support for PowerPC VLE.
2012-05-14 Catherine Moore <clm@codesourcery.com>
* NEWS: Mention PowerPC VLE port.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
Catherine Moore <clm@codesourcery.com>
bfd/
* bfd.c (bfd_lookup_section_flags): Add section parm.
* ecoff.c (bfd_debug_section): Remove flag_info initializer.
* elf-bfd.h (bfd_elf_section_data): Move in section_flag_info.
(bfd_elf_lookup_section_flags): Add section parm.
* elf32-ppc.c (is_ppc_vle): New function.
(ppc_elf_modify_segment_map): New function.
(elf_backend_modify_segment_map): Define.
(has_vle_insns): New define.
* elf32-ppc.h (ppc_elf_modify_segment_map): Declare.
* elflink.c (bfd_elf_lookup_section_flags): Add return value & parm.
Move in logic to omit / include a section.
* libbfd-in.h (bfd_link_info): Add section parm.
(bfd_generic_lookup_section_flags): Likewise.
* reloc.c (bfd_generic_lookup_section_flags): Likewise.
* section.c (bfd_section): Move out section_flag_info.
(BFD_FAKE_SECTION): Remove flag_info initializer.
* targets.c (_bfd_lookup_section_flags): Add section parm.
2012-05-14 Catherine Moore <clm@codesourcery.com>
bfd/
* archures.c (bfd_mach_ppc_vle): New.
* bfd-in2.h: Regenerated.
* cpu-powerpc.c (bfd_powerpc_archs): New entry for vle.
* elf32-ppc.c (split16_format_type): New enumeration.
(ppc_elf_vle_split16): New function.
(HOWTO): Add entries for R_PPC_VLE relocations.
(ppc_elf_reloc_type_lookup): Handle PPC_VLE relocations.
(ppc_elf_section_flags): New function.
(ppc_elf_lookup_section_flags): New function.
(ppc_elf_section_processing): New function.
(ppc_elf_check_relocs): Handle PPC_VLE relocations.
(ppc_elf_relocation_section): Likewise.
(elf_backend_lookup_section_flags_hook): Define.
(elf_backend_section_flags): Define.
(elf_backend_section_processing): Define.
* elf32-ppc.h (ppc_elf_section_processing): Declare.
* libbfd.h: Regenerated.
* reloc.c (BFD_RELOC_PPC_VLE_REL8, BFD_RELOC_PPC_VLE_REL15,
BFD_RELOC_PPC_VLE_REL24, BFD_RELOC_PPC_VLE_LO16A,
BFD_RELOC_PPC_VLE_LO16D, BFD_RELOC_PPC_VLE_HI16A,
BFD_RELOC_PPC_VLE_HI16D, BFD_RELOC_PPC_VLE_HA16A,
BFD_RELOC_PPC_VLE_HA16D, BFD_RELOC_PPC_VLE_SDA21,
BFD_RELOC_PPC_VLE_SDA21_LO, BFD_RELOC_PPC_VLE_SDAREL_LO16A,
BFD_RELOC_PPC_VLE_SDAREL_LO16D, BFD_RELOC_PPC_VLE_SDAREL_HI16A,
BFD_RELOC_PPC_VLE_SDAREL_HI16D, BFD_RELOC_PPC_VLE_SDAREL_HA16A,
BFD_RELOC_PPC_VLE_SDAREL_HA16D): New bfd relocations.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (insn_validate): New func of existing code to call..
(ppc_setup_opcodes): ..from 2 places here.
Revise for second (VLE) opcode table.
Add #ifdef'd code to print opcode tables.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (ppc_setup_opcodes): Allow out-of-order
for the VLE conditional branches.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/
* config/tc-ppc.c (PPC_VLE_SPLIT16A): New macro.
(PPC_VLE_SPLIT16D): New macro.
(PPC_VLE_LO16A): New macro.
(PPC_VLE_LO16D): New macro.
(PPC_VLE_HI16A): New macro.
(PPC_VLE_HI16D): New macro.
(PPC_VLE_HA16A): New macro.
(PPC_VLE_HA16D): New macro.
(PPC_APUINFO_VLE): New definition.
(md_chars_to_number): New function.
(md_parse_option): Check for combinations of little
endian and -mvle.
(md_show_usage): Document -mvle.
(ppc_arch): Recognize VLE.
(ppc_mach): Recognize bfd_mach_ppc_vle.
(ppc_setup_opcodes): Print the opcode table if
* config/tc-ppc.h (ppc_frag_check): Declare.
* doc/c-ppc.texi: Document -mvle.
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
gas/
* config/tc-ppc.h (ppc_dw2_line_min_insn_length): Declare.
(DWARF2_LINE_MIN_INSN_LENGTH): Redefine.
* config/tc-ppc.c (ppc_dw2_line_min_insn_length): New.
* dwarf2dbg.c (scale_addr_delta): Handle values of 1
for DWARF2_LINE_MIN_INSN_LENGTH.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/testsuite/
* gas/ppc/ppc.exp: Run new tests.
* gas/ppc/vle-reloc.d: New test.
* gas/ppc/vle-reloc.s: New test.
* gas/ppc/vle-simple-1.d: New test.
* gas/ppc/vle-simple-1.s: New test.
* gas/ppc/vle-simple-2.d: New test.
* gas/ppc/vle-simple-2.s: New test.
* gas/ppc/vle-simple-3.d: New test.
* gas/ppc/vle-simple-3.s: New test.
* gas/ppc/vle-simple-4.d: New test.
* gas/ppc/vle-simple-4.s: New test.
* gas/ppc/vle-simple-5.d: New test.
* gas/ppc/vle-simple-5.s: New test.
* gas/ppc/vle-simple-6.d: New test.
* gas/ppc/vle-simple-6.s: New test.
* gas/ppc/vle.d: New test.
* gas/ppc/vle.s: New test.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (SEC_PPC_VLE): Remove.
2012-05-14 Catherine Moore <clm@codesourcery.com>
James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (R_PPC_VLE_REL8): New reloction.
(R_PPC_VLE_REL15): Likewise.
(R_PPC_VLE_REL24): Likewise.
(R_PPC_VLE_LO16A): Likewise.
(R_PPC_VLE_LO16D): Likewise.
(R_PPC_VLE_HI16A): Likewise.
(R_PPC_VLE_HI16D): Likewise.
(R_PPC_VLE_HA16A): Likewise.
(R_PPC_VLE_HA16D): Likewise.
(R_PPC_VLE_SDA21): Likewise.
(R_PPC_VLE_SDA21_LO): Likewise.
(R_PPC_VLE_SDAREL_LO16A): Likewise.
(R_PPC_VLE_SDAREL_LO16D): Likewise.
(R_PPC_VLE_SDAREL_HI16A): Likewise.
(R_PPC_VLE_SDAREL_HI16D): Likewise.
(R_PPC_VLE_SDAREL_HA16A): Likewise.
(R_PPC_VLE_SDAREL_HA16D): Likewise.
(SEC_PPC_VLE): Remove.
(PF_PPC_VLE): New program header flag.
(SHF_PPC_VLE): New section header flag.
(vle_opcodes, vle_num_opcodes): New.
(VLE_OP): New macro.
(VLE_OP_TO_SEG): New macro.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
include/opcode/
* ppc.h (PPC_OPCODE_VLE): New definition.
(PPC_OP_SA): New macro.
(PPC_OP_SE_VLE): New macro.
(PPC_OP): Use a variable shift amount.
(powerpc_operand): Update comments.
(PPC_OPSHIFT_INV): New macro.
(PPC_OPERAND_CR): Replace with...
(PPC_OPERAND_CR_BIT): ...this and
(PPC_OPERAND_CR_REG): ...this.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/
* ldlang.c (walk_wild_consider_section): Don't copy section_flag_list.
Pass it to callback.
(walk_wild_section_general): Pass section_flag_list to callback.
(lang_add_section): Add sflag_list parm.
Move out logic to keep / omit a section & call bfd_lookup_section_flags.
(output_section_callback_fast): Add sflag_list parm.
Add new parm to lang_add_section calls.
(output_section_callback): Likewise.
(check_section_callback): Add sflag_list parm.
(lang_place_orphans): Add new parm to lang_add_section calls.
(gc_section_callback): Add sflag_list parm.
(find_relro_section_callback): Likewise.
* ldlang.h (callback_t): Add flag_info parm.
(lang_add_section): Add sflag_list parm.
* emultempl/armelf.em (elf32_arm_add_stub_section):
Add lang_add_section parm.
* emultempl/beos.em (gld*_place_orphan): Likewise.
* emultempl/elf32.em (gld*_place_orphan): Likewise.
* emultempl/hppaelf.em (hppaelf_add_stub_section): Likewise.
* emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Likewise.
* emultempl/mipself.em (mips_add_stub_section): Likewise.
* emultempl/mmo.em (mmo_place_orphan): Likewise.
* emultempl/pe.em (gld_*_place_orphan): Likewise.
* emultempl/pep.em (gld_*_place_orphan): Likewise.
* emultempl/ppc64elf.em (ppc_add_stub_section): Likewise.
* emultempl/spuelf.em (spu_place_special_section): Likewise.
* emultempl/vms.em (vms_place_orphan): Likewise.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/testsuite/
* ld-powerpc/powerpc.exp: Create ppceabitests.
* ld-powerpc/vle-multiseg.s: New.
* ld-powerpc/vle-multiseg-1.d: New.
* ld-powerpc/vle-multiseg-1.ld: New.
* ld-powerpc/vle-multiseg-2.d: New.
* ld-powerpc/vle-multiseg-2.ld: New.
* ld-powerpc/vle-multiseg-3.d: New.
* ld-powerpc/vle-multiseg-3.ld: New.
* ld-powerpc/vle-multiseg-4.d: New.
* ld-powerpc/vle-multiseg-4.ld: New.
* ld-powerpc/vle-multiseg-5.d: New.
* ld-powerpc/vle-multiseg-5.ld: New.
* ld-powerpc/vle-multiseg-6.d: New.
* ld-powerpc/vle-multiseg-6.ld: New.
* ld-powerpc/vle-multiseg-6a.s: New.
* ld-powerpc/vle-multiseg-6b.s: New.
* ld-powerpc/vle-multiseg-6c.s: New.
* ld-powerpc/vle-multiseg-6d.s: New.
* ld-powerpc/powerpc.exp: Run new tests.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/testsuite/
* ld-powerpc/apuinfo.rd: Update for VLE.
* ld-powerpc/vle-reloc-1.d: New.
* ld-powerpc/vle-reloc-1.s: New.
* ld-powerpc/vle-reloc-2.d: New.
* ld-powerpc/vle-reloc-2.s: New.
* ld-powerpc/vle-reloc-3.d: New.
* ld-powerpc/vle-reloc-3.s: New.
* ld-powerpc/vle-reloc-def-1.s: New.
* ld-powerpc/vle-reloc-def-2.s: New.
* ld-powerpc/vle-reloc-def-3.s: New.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
opcodes/
* ppc-dis.c (get_powerpc_dialect): Use is_ppc_vle.
(PPC_OPCD_SEGS, VLE_OPCD_SEGS): New defines.
(vle_opcd_indices): New array.
(lookup_vle): New function.
(disassemble_init_powerpc): Revise for second (VLE) opcode table.
(print_insn_powerpc): Likewise.
* ppc-opc.c: Likewise.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
Nathan Froyd <froydnj@codesourcery.com>
opcodes/
* ppc-opc.c (insert_arx, extract_arx): New functions.
(insert_ary, extract_ary): New functions.
(insert_li20, extract_li20): New functions.
(insert_rx, extract_rx): New functions.
(insert_ry, extract_ry): New functions.
(insert_sci8, extract_sci8): New functions.
(insert_sci8n, extract_sci8n): New functions.
(insert_sd4h, extract_sd4h): New functions.
(insert_sd4w, extract_sd4w): New functions.
(insert_vlesi, extract_vlesi): New functions.
(insert_vlensi, extract_vlensi): New functions.
(insert_vleui, extract_vleui): New functions.
(insert_vleil, extract_vleil): New functions.
(BI_MASK, BB_MASK, BT): Use PPC_OPERAND_CR_BIT.
(BI16, BI32, BO32, B8): New.
(B15, B24, CRD32, CRS): New.
(CRD, OBF, BFA, CR, CRFS): Use PPC_OPERAND_CR_REG.
(DB, IMM20, RD, Rx, ARX, RY, RZ): New.
(ARY, SCLSCI8, SCLSCI8N, SE_SD, SE_SDH): New.
(SH6_MASK): Use PPC_OPSHIFT_INV.
(SI8, UI5, OIMM5, UI7, BO16): New.
(VLESIMM, VLENSIMM, VLEUIMM, VLEUIMML): New.
(XT6, XA6, XB6, XB6S, XC6): Use PPC_OPSHIFT_INV.
(ALLOW8_SPRG): New.
(insert_sprg, extract_sprg): Check ALLOW8_SPRG.
(OPVUP, OPVUP_MASK OPVUP): New
(BD8, BD8_MASK, BD8IO, BD8IO_MASK): New.
(EBD8IO, EBD8IO1_MASK, EBD8IO2_MASK, EBD8IO3_MASK): New.
(BD15, BD15_MASK, EBD15, EBD15_MASK, EBD15BI, EBD15BI_MASK): New.
(BD24,BD24_MASK, C_LK, C_LK_MASK, C, C_MASK): New.
(IA16, IA16_MASK, I16A, I16A_MASK, I16L, I16L_MASK): New.
(IM7, IM7_MASK, LI20, LI20_MASK, SCI8, SCI8_MASK): New.
(SCI8BF, SCI8BF_MASK, SD4, SD4_MASK): New.
(SE_IM5, SE_IM5_MASK): New.
(SE_R, SE_R_MASK, SE_RR, SE_RR_MASK): New.
(EX, EX_MASK, BO16F, BO16T, BO32F, BO32T): New.
(BO32DNZ, BO32DZ): New.
(NO371, PPCSPE, PPCISEL, PPCEFS, MULHW): Include PPC_OPCODE_VLE.
(PPCVLE): New.
(powerpc_opcodes): Add new VLE instructions. Update existing
instruction to include PPCVLE if supported.
* ppc-dis.c (ppc_opts): Add vle entry.
(get_powerpc_dialect): New function.
(powerpc_init_dialect): VLE support.
(print_insn_big_powerpc): Call get_powerpc_dialect.
(print_insn_little_powerpc): Likewise.
(operand_value_powerpc): Handle negative shift counts.
(print_insn_powerpc): Handle 2-byte instruction lengths.
2012-05-14 19:45:30 +00:00
|
|
|
lang_add_section (&os->children, s, NULL, os);
|
ld/
* ldlang.c (lang_output_section_statement_lookup): Add function
comment. Make "name" non-const. Ensure duplicate entries use
the same string, allowing simple comparison in hash bucket loop.
Tweak constraint check.
(next_matching_output_section_statement): New function.
* ldlang.h (lang_output_section_statement_lookup): Update.
(next_matching_output_section_statement): Declare.
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
combine orphan sections when input sections flags differ in
alloc or load.
* emultempl/pe.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
* emultempl/pep.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
ld/testsuite/
* ld-elf/orphan3.d, * ld-elf/orphan3a.s, * ld-elf/orphan3b.s,
* ld-elf/orphan3c.s, * ld-elf/orphan3d.s, * ld-elf/orphan3e.s,
* ld-elf/orphan3f.s: New test.
* ld-pe/orphan.d, * ld-pe/orphana.s, * ld-pe/orphanb.s,
* ld-pe/orphand.s, * ld-pe/orphane.s: New test.
* ld-pe/direct.exp: Use is_pecoff_format.
* ld-pe/longsecn.exp: Delete.
* ld-pe/pe.exp: Run new test and longsecn tests.
2009-05-15 14:22:36 +00:00
|
|
|
return os;
|
|
|
|
}
|
2010-01-14 04:56:12 +00:00
|
|
|
|
|
|
|
/* Save unused output sections in case we can match them
|
|
|
|
against orphans later. */
|
|
|
|
if (os->bfd_section == NULL)
|
|
|
|
match_by_name = os;
|
ld/
* ldlang.c (lang_output_section_statement_lookup): Add function
comment. Make "name" non-const. Ensure duplicate entries use
the same string, allowing simple comparison in hash bucket loop.
Tweak constraint check.
(next_matching_output_section_statement): New function.
* ldlang.h (lang_output_section_statement_lookup): Update.
(next_matching_output_section_statement): Declare.
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Don't
combine orphan sections when input sections flags differ in
alloc or load.
* emultempl/pe.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
* emultempl/pep.em: Formatting throughout.
(gld${EMULATION_NAME}_place_orphan): As for elf32.em.
ld/testsuite/
* ld-elf/orphan3.d, * ld-elf/orphan3a.s, * ld-elf/orphan3b.s,
* ld-elf/orphan3c.s, * ld-elf/orphan3d.s, * ld-elf/orphan3e.s,
* ld-elf/orphan3f.s: New test.
* ld-pe/orphan.d, * ld-pe/orphana.s, * ld-pe/orphanb.s,
* ld-pe/orphand.s, * ld-pe/orphane.s: New test.
* ld-pe/direct.exp: Use is_pecoff_format.
* ld-pe/longsecn.exp: Delete.
* ld-pe/pe.exp: Run new test and longsecn tests.
2009-05-15 14:22:36 +00:00
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2010-01-14 04:56:12 +00:00
|
|
|
/* If we didn't match an active output section, see if we matched an
|
|
|
|
unused one and use that. */
|
|
|
|
if (match_by_name)
|
|
|
|
{
|
Add support for PowerPC VLE.
2012-05-14 Catherine Moore <clm@codesourcery.com>
* NEWS: Mention PowerPC VLE port.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
Catherine Moore <clm@codesourcery.com>
bfd/
* bfd.c (bfd_lookup_section_flags): Add section parm.
* ecoff.c (bfd_debug_section): Remove flag_info initializer.
* elf-bfd.h (bfd_elf_section_data): Move in section_flag_info.
(bfd_elf_lookup_section_flags): Add section parm.
* elf32-ppc.c (is_ppc_vle): New function.
(ppc_elf_modify_segment_map): New function.
(elf_backend_modify_segment_map): Define.
(has_vle_insns): New define.
* elf32-ppc.h (ppc_elf_modify_segment_map): Declare.
* elflink.c (bfd_elf_lookup_section_flags): Add return value & parm.
Move in logic to omit / include a section.
* libbfd-in.h (bfd_link_info): Add section parm.
(bfd_generic_lookup_section_flags): Likewise.
* reloc.c (bfd_generic_lookup_section_flags): Likewise.
* section.c (bfd_section): Move out section_flag_info.
(BFD_FAKE_SECTION): Remove flag_info initializer.
* targets.c (_bfd_lookup_section_flags): Add section parm.
2012-05-14 Catherine Moore <clm@codesourcery.com>
bfd/
* archures.c (bfd_mach_ppc_vle): New.
* bfd-in2.h: Regenerated.
* cpu-powerpc.c (bfd_powerpc_archs): New entry for vle.
* elf32-ppc.c (split16_format_type): New enumeration.
(ppc_elf_vle_split16): New function.
(HOWTO): Add entries for R_PPC_VLE relocations.
(ppc_elf_reloc_type_lookup): Handle PPC_VLE relocations.
(ppc_elf_section_flags): New function.
(ppc_elf_lookup_section_flags): New function.
(ppc_elf_section_processing): New function.
(ppc_elf_check_relocs): Handle PPC_VLE relocations.
(ppc_elf_relocation_section): Likewise.
(elf_backend_lookup_section_flags_hook): Define.
(elf_backend_section_flags): Define.
(elf_backend_section_processing): Define.
* elf32-ppc.h (ppc_elf_section_processing): Declare.
* libbfd.h: Regenerated.
* reloc.c (BFD_RELOC_PPC_VLE_REL8, BFD_RELOC_PPC_VLE_REL15,
BFD_RELOC_PPC_VLE_REL24, BFD_RELOC_PPC_VLE_LO16A,
BFD_RELOC_PPC_VLE_LO16D, BFD_RELOC_PPC_VLE_HI16A,
BFD_RELOC_PPC_VLE_HI16D, BFD_RELOC_PPC_VLE_HA16A,
BFD_RELOC_PPC_VLE_HA16D, BFD_RELOC_PPC_VLE_SDA21,
BFD_RELOC_PPC_VLE_SDA21_LO, BFD_RELOC_PPC_VLE_SDAREL_LO16A,
BFD_RELOC_PPC_VLE_SDAREL_LO16D, BFD_RELOC_PPC_VLE_SDAREL_HI16A,
BFD_RELOC_PPC_VLE_SDAREL_HI16D, BFD_RELOC_PPC_VLE_SDAREL_HA16A,
BFD_RELOC_PPC_VLE_SDAREL_HA16D): New bfd relocations.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (insn_validate): New func of existing code to call..
(ppc_setup_opcodes): ..from 2 places here.
Revise for second (VLE) opcode table.
Add #ifdef'd code to print opcode tables.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (ppc_setup_opcodes): Allow out-of-order
for the VLE conditional branches.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/
* config/tc-ppc.c (PPC_VLE_SPLIT16A): New macro.
(PPC_VLE_SPLIT16D): New macro.
(PPC_VLE_LO16A): New macro.
(PPC_VLE_LO16D): New macro.
(PPC_VLE_HI16A): New macro.
(PPC_VLE_HI16D): New macro.
(PPC_VLE_HA16A): New macro.
(PPC_VLE_HA16D): New macro.
(PPC_APUINFO_VLE): New definition.
(md_chars_to_number): New function.
(md_parse_option): Check for combinations of little
endian and -mvle.
(md_show_usage): Document -mvle.
(ppc_arch): Recognize VLE.
(ppc_mach): Recognize bfd_mach_ppc_vle.
(ppc_setup_opcodes): Print the opcode table if
* config/tc-ppc.h (ppc_frag_check): Declare.
* doc/c-ppc.texi: Document -mvle.
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
gas/
* config/tc-ppc.h (ppc_dw2_line_min_insn_length): Declare.
(DWARF2_LINE_MIN_INSN_LENGTH): Redefine.
* config/tc-ppc.c (ppc_dw2_line_min_insn_length): New.
* dwarf2dbg.c (scale_addr_delta): Handle values of 1
for DWARF2_LINE_MIN_INSN_LENGTH.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/testsuite/
* gas/ppc/ppc.exp: Run new tests.
* gas/ppc/vle-reloc.d: New test.
* gas/ppc/vle-reloc.s: New test.
* gas/ppc/vle-simple-1.d: New test.
* gas/ppc/vle-simple-1.s: New test.
* gas/ppc/vle-simple-2.d: New test.
* gas/ppc/vle-simple-2.s: New test.
* gas/ppc/vle-simple-3.d: New test.
* gas/ppc/vle-simple-3.s: New test.
* gas/ppc/vle-simple-4.d: New test.
* gas/ppc/vle-simple-4.s: New test.
* gas/ppc/vle-simple-5.d: New test.
* gas/ppc/vle-simple-5.s: New test.
* gas/ppc/vle-simple-6.d: New test.
* gas/ppc/vle-simple-6.s: New test.
* gas/ppc/vle.d: New test.
* gas/ppc/vle.s: New test.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (SEC_PPC_VLE): Remove.
2012-05-14 Catherine Moore <clm@codesourcery.com>
James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (R_PPC_VLE_REL8): New reloction.
(R_PPC_VLE_REL15): Likewise.
(R_PPC_VLE_REL24): Likewise.
(R_PPC_VLE_LO16A): Likewise.
(R_PPC_VLE_LO16D): Likewise.
(R_PPC_VLE_HI16A): Likewise.
(R_PPC_VLE_HI16D): Likewise.
(R_PPC_VLE_HA16A): Likewise.
(R_PPC_VLE_HA16D): Likewise.
(R_PPC_VLE_SDA21): Likewise.
(R_PPC_VLE_SDA21_LO): Likewise.
(R_PPC_VLE_SDAREL_LO16A): Likewise.
(R_PPC_VLE_SDAREL_LO16D): Likewise.
(R_PPC_VLE_SDAREL_HI16A): Likewise.
(R_PPC_VLE_SDAREL_HI16D): Likewise.
(R_PPC_VLE_SDAREL_HA16A): Likewise.
(R_PPC_VLE_SDAREL_HA16D): Likewise.
(SEC_PPC_VLE): Remove.
(PF_PPC_VLE): New program header flag.
(SHF_PPC_VLE): New section header flag.
(vle_opcodes, vle_num_opcodes): New.
(VLE_OP): New macro.
(VLE_OP_TO_SEG): New macro.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
include/opcode/
* ppc.h (PPC_OPCODE_VLE): New definition.
(PPC_OP_SA): New macro.
(PPC_OP_SE_VLE): New macro.
(PPC_OP): Use a variable shift amount.
(powerpc_operand): Update comments.
(PPC_OPSHIFT_INV): New macro.
(PPC_OPERAND_CR): Replace with...
(PPC_OPERAND_CR_BIT): ...this and
(PPC_OPERAND_CR_REG): ...this.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/
* ldlang.c (walk_wild_consider_section): Don't copy section_flag_list.
Pass it to callback.
(walk_wild_section_general): Pass section_flag_list to callback.
(lang_add_section): Add sflag_list parm.
Move out logic to keep / omit a section & call bfd_lookup_section_flags.
(output_section_callback_fast): Add sflag_list parm.
Add new parm to lang_add_section calls.
(output_section_callback): Likewise.
(check_section_callback): Add sflag_list parm.
(lang_place_orphans): Add new parm to lang_add_section calls.
(gc_section_callback): Add sflag_list parm.
(find_relro_section_callback): Likewise.
* ldlang.h (callback_t): Add flag_info parm.
(lang_add_section): Add sflag_list parm.
* emultempl/armelf.em (elf32_arm_add_stub_section):
Add lang_add_section parm.
* emultempl/beos.em (gld*_place_orphan): Likewise.
* emultempl/elf32.em (gld*_place_orphan): Likewise.
* emultempl/hppaelf.em (hppaelf_add_stub_section): Likewise.
* emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Likewise.
* emultempl/mipself.em (mips_add_stub_section): Likewise.
* emultempl/mmo.em (mmo_place_orphan): Likewise.
* emultempl/pe.em (gld_*_place_orphan): Likewise.
* emultempl/pep.em (gld_*_place_orphan): Likewise.
* emultempl/ppc64elf.em (ppc_add_stub_section): Likewise.
* emultempl/spuelf.em (spu_place_special_section): Likewise.
* emultempl/vms.em (vms_place_orphan): Likewise.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/testsuite/
* ld-powerpc/powerpc.exp: Create ppceabitests.
* ld-powerpc/vle-multiseg.s: New.
* ld-powerpc/vle-multiseg-1.d: New.
* ld-powerpc/vle-multiseg-1.ld: New.
* ld-powerpc/vle-multiseg-2.d: New.
* ld-powerpc/vle-multiseg-2.ld: New.
* ld-powerpc/vle-multiseg-3.d: New.
* ld-powerpc/vle-multiseg-3.ld: New.
* ld-powerpc/vle-multiseg-4.d: New.
* ld-powerpc/vle-multiseg-4.ld: New.
* ld-powerpc/vle-multiseg-5.d: New.
* ld-powerpc/vle-multiseg-5.ld: New.
* ld-powerpc/vle-multiseg-6.d: New.
* ld-powerpc/vle-multiseg-6.ld: New.
* ld-powerpc/vle-multiseg-6a.s: New.
* ld-powerpc/vle-multiseg-6b.s: New.
* ld-powerpc/vle-multiseg-6c.s: New.
* ld-powerpc/vle-multiseg-6d.s: New.
* ld-powerpc/powerpc.exp: Run new tests.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/testsuite/
* ld-powerpc/apuinfo.rd: Update for VLE.
* ld-powerpc/vle-reloc-1.d: New.
* ld-powerpc/vle-reloc-1.s: New.
* ld-powerpc/vle-reloc-2.d: New.
* ld-powerpc/vle-reloc-2.s: New.
* ld-powerpc/vle-reloc-3.d: New.
* ld-powerpc/vle-reloc-3.s: New.
* ld-powerpc/vle-reloc-def-1.s: New.
* ld-powerpc/vle-reloc-def-2.s: New.
* ld-powerpc/vle-reloc-def-3.s: New.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
opcodes/
* ppc-dis.c (get_powerpc_dialect): Use is_ppc_vle.
(PPC_OPCD_SEGS, VLE_OPCD_SEGS): New defines.
(vle_opcd_indices): New array.
(lookup_vle): New function.
(disassemble_init_powerpc): Revise for second (VLE) opcode table.
(print_insn_powerpc): Likewise.
* ppc-opc.c: Likewise.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
Nathan Froyd <froydnj@codesourcery.com>
opcodes/
* ppc-opc.c (insert_arx, extract_arx): New functions.
(insert_ary, extract_ary): New functions.
(insert_li20, extract_li20): New functions.
(insert_rx, extract_rx): New functions.
(insert_ry, extract_ry): New functions.
(insert_sci8, extract_sci8): New functions.
(insert_sci8n, extract_sci8n): New functions.
(insert_sd4h, extract_sd4h): New functions.
(insert_sd4w, extract_sd4w): New functions.
(insert_vlesi, extract_vlesi): New functions.
(insert_vlensi, extract_vlensi): New functions.
(insert_vleui, extract_vleui): New functions.
(insert_vleil, extract_vleil): New functions.
(BI_MASK, BB_MASK, BT): Use PPC_OPERAND_CR_BIT.
(BI16, BI32, BO32, B8): New.
(B15, B24, CRD32, CRS): New.
(CRD, OBF, BFA, CR, CRFS): Use PPC_OPERAND_CR_REG.
(DB, IMM20, RD, Rx, ARX, RY, RZ): New.
(ARY, SCLSCI8, SCLSCI8N, SE_SD, SE_SDH): New.
(SH6_MASK): Use PPC_OPSHIFT_INV.
(SI8, UI5, OIMM5, UI7, BO16): New.
(VLESIMM, VLENSIMM, VLEUIMM, VLEUIMML): New.
(XT6, XA6, XB6, XB6S, XC6): Use PPC_OPSHIFT_INV.
(ALLOW8_SPRG): New.
(insert_sprg, extract_sprg): Check ALLOW8_SPRG.
(OPVUP, OPVUP_MASK OPVUP): New
(BD8, BD8_MASK, BD8IO, BD8IO_MASK): New.
(EBD8IO, EBD8IO1_MASK, EBD8IO2_MASK, EBD8IO3_MASK): New.
(BD15, BD15_MASK, EBD15, EBD15_MASK, EBD15BI, EBD15BI_MASK): New.
(BD24,BD24_MASK, C_LK, C_LK_MASK, C, C_MASK): New.
(IA16, IA16_MASK, I16A, I16A_MASK, I16L, I16L_MASK): New.
(IM7, IM7_MASK, LI20, LI20_MASK, SCI8, SCI8_MASK): New.
(SCI8BF, SCI8BF_MASK, SD4, SD4_MASK): New.
(SE_IM5, SE_IM5_MASK): New.
(SE_R, SE_R_MASK, SE_RR, SE_RR_MASK): New.
(EX, EX_MASK, BO16F, BO16T, BO32F, BO32T): New.
(BO32DNZ, BO32DZ): New.
(NO371, PPCSPE, PPCISEL, PPCEFS, MULHW): Include PPC_OPCODE_VLE.
(PPCVLE): New.
(powerpc_opcodes): Add new VLE instructions. Update existing
instruction to include PPCVLE if supported.
* ppc-dis.c (ppc_opts): Add vle entry.
(get_powerpc_dialect): New function.
(powerpc_init_dialect): VLE support.
(print_insn_big_powerpc): Call get_powerpc_dialect.
(print_insn_little_powerpc): Likewise.
(operand_value_powerpc): Handle negative shift counts.
(print_insn_powerpc): Handle 2-byte instruction lengths.
2012-05-14 19:45:30 +00:00
|
|
|
lang_add_section (&match_by_name->children, s, NULL, match_by_name);
|
2010-01-14 04:56:12 +00:00
|
|
|
return match_by_name;
|
|
|
|
}
|
|
|
|
|
2004-10-14 12:54:47 +00:00
|
|
|
if (!orphan_init_done)
|
|
|
|
{
|
|
|
|
struct orphan_save *ho;
|
2008-10-21 22:55:04 +00:00
|
|
|
|
2004-10-14 12:54:47 +00:00
|
|
|
for (ho = hold; ho < hold + sizeof (hold) / sizeof (hold[0]); ++ho)
|
|
|
|
if (ho->name != NULL)
|
|
|
|
{
|
|
|
|
ho->os = lang_output_section_find (ho->name);
|
|
|
|
if (ho->os != NULL && ho->os->flags == 0)
|
|
|
|
ho->os->flags = ho->flags;
|
|
|
|
}
|
|
|
|
orphan_init_done = 1;
|
|
|
|
}
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
/* If this is a final link, then always put .gnu.warning.SYMBOL
|
|
|
|
sections into the .text section to get them out of the way. */
|
2003-05-30 15:50:12 +00:00
|
|
|
if (link_info.executable
|
2003-06-25 06:40:27 +00:00
|
|
|
&& ! link_info.relocatable
|
2008-10-03 09:40:49 +00:00
|
|
|
&& CONST_STRNEQ (s->name, ".gnu.warning.")
|
2004-10-14 12:54:47 +00:00
|
|
|
&& hold[orphan_text].os != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2008-10-20 12:14:29 +00:00
|
|
|
os = hold[orphan_text].os;
|
Add support for PowerPC VLE.
2012-05-14 Catherine Moore <clm@codesourcery.com>
* NEWS: Mention PowerPC VLE port.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
Catherine Moore <clm@codesourcery.com>
bfd/
* bfd.c (bfd_lookup_section_flags): Add section parm.
* ecoff.c (bfd_debug_section): Remove flag_info initializer.
* elf-bfd.h (bfd_elf_section_data): Move in section_flag_info.
(bfd_elf_lookup_section_flags): Add section parm.
* elf32-ppc.c (is_ppc_vle): New function.
(ppc_elf_modify_segment_map): New function.
(elf_backend_modify_segment_map): Define.
(has_vle_insns): New define.
* elf32-ppc.h (ppc_elf_modify_segment_map): Declare.
* elflink.c (bfd_elf_lookup_section_flags): Add return value & parm.
Move in logic to omit / include a section.
* libbfd-in.h (bfd_link_info): Add section parm.
(bfd_generic_lookup_section_flags): Likewise.
* reloc.c (bfd_generic_lookup_section_flags): Likewise.
* section.c (bfd_section): Move out section_flag_info.
(BFD_FAKE_SECTION): Remove flag_info initializer.
* targets.c (_bfd_lookup_section_flags): Add section parm.
2012-05-14 Catherine Moore <clm@codesourcery.com>
bfd/
* archures.c (bfd_mach_ppc_vle): New.
* bfd-in2.h: Regenerated.
* cpu-powerpc.c (bfd_powerpc_archs): New entry for vle.
* elf32-ppc.c (split16_format_type): New enumeration.
(ppc_elf_vle_split16): New function.
(HOWTO): Add entries for R_PPC_VLE relocations.
(ppc_elf_reloc_type_lookup): Handle PPC_VLE relocations.
(ppc_elf_section_flags): New function.
(ppc_elf_lookup_section_flags): New function.
(ppc_elf_section_processing): New function.
(ppc_elf_check_relocs): Handle PPC_VLE relocations.
(ppc_elf_relocation_section): Likewise.
(elf_backend_lookup_section_flags_hook): Define.
(elf_backend_section_flags): Define.
(elf_backend_section_processing): Define.
* elf32-ppc.h (ppc_elf_section_processing): Declare.
* libbfd.h: Regenerated.
* reloc.c (BFD_RELOC_PPC_VLE_REL8, BFD_RELOC_PPC_VLE_REL15,
BFD_RELOC_PPC_VLE_REL24, BFD_RELOC_PPC_VLE_LO16A,
BFD_RELOC_PPC_VLE_LO16D, BFD_RELOC_PPC_VLE_HI16A,
BFD_RELOC_PPC_VLE_HI16D, BFD_RELOC_PPC_VLE_HA16A,
BFD_RELOC_PPC_VLE_HA16D, BFD_RELOC_PPC_VLE_SDA21,
BFD_RELOC_PPC_VLE_SDA21_LO, BFD_RELOC_PPC_VLE_SDAREL_LO16A,
BFD_RELOC_PPC_VLE_SDAREL_LO16D, BFD_RELOC_PPC_VLE_SDAREL_HI16A,
BFD_RELOC_PPC_VLE_SDAREL_HI16D, BFD_RELOC_PPC_VLE_SDAREL_HA16A,
BFD_RELOC_PPC_VLE_SDAREL_HA16D): New bfd relocations.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (insn_validate): New func of existing code to call..
(ppc_setup_opcodes): ..from 2 places here.
Revise for second (VLE) opcode table.
Add #ifdef'd code to print opcode tables.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
gas/
* config/tc-ppc.c (ppc_setup_opcodes): Allow out-of-order
for the VLE conditional branches.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/
* config/tc-ppc.c (PPC_VLE_SPLIT16A): New macro.
(PPC_VLE_SPLIT16D): New macro.
(PPC_VLE_LO16A): New macro.
(PPC_VLE_LO16D): New macro.
(PPC_VLE_HI16A): New macro.
(PPC_VLE_HI16D): New macro.
(PPC_VLE_HA16A): New macro.
(PPC_VLE_HA16D): New macro.
(PPC_APUINFO_VLE): New definition.
(md_chars_to_number): New function.
(md_parse_option): Check for combinations of little
endian and -mvle.
(md_show_usage): Document -mvle.
(ppc_arch): Recognize VLE.
(ppc_mach): Recognize bfd_mach_ppc_vle.
(ppc_setup_opcodes): Print the opcode table if
* config/tc-ppc.h (ppc_frag_check): Declare.
* doc/c-ppc.texi: Document -mvle.
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
gas/
* config/tc-ppc.h (ppc_dw2_line_min_insn_length): Declare.
(DWARF2_LINE_MIN_INSN_LENGTH): Redefine.
* config/tc-ppc.c (ppc_dw2_line_min_insn_length): New.
* dwarf2dbg.c (scale_addr_delta): Handle values of 1
for DWARF2_LINE_MIN_INSN_LENGTH.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
gas/testsuite/
* gas/ppc/ppc.exp: Run new tests.
* gas/ppc/vle-reloc.d: New test.
* gas/ppc/vle-reloc.s: New test.
* gas/ppc/vle-simple-1.d: New test.
* gas/ppc/vle-simple-1.s: New test.
* gas/ppc/vle-simple-2.d: New test.
* gas/ppc/vle-simple-2.s: New test.
* gas/ppc/vle-simple-3.d: New test.
* gas/ppc/vle-simple-3.s: New test.
* gas/ppc/vle-simple-4.d: New test.
* gas/ppc/vle-simple-4.s: New test.
* gas/ppc/vle-simple-5.d: New test.
* gas/ppc/vle-simple-5.s: New test.
* gas/ppc/vle-simple-6.d: New test.
* gas/ppc/vle-simple-6.s: New test.
* gas/ppc/vle.d: New test.
* gas/ppc/vle.s: New test.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (SEC_PPC_VLE): Remove.
2012-05-14 Catherine Moore <clm@codesourcery.com>
James Lemke <jwlemke@codesourcery.com>
include/elf/
* ppc.h (R_PPC_VLE_REL8): New reloction.
(R_PPC_VLE_REL15): Likewise.
(R_PPC_VLE_REL24): Likewise.
(R_PPC_VLE_LO16A): Likewise.
(R_PPC_VLE_LO16D): Likewise.
(R_PPC_VLE_HI16A): Likewise.
(R_PPC_VLE_HI16D): Likewise.
(R_PPC_VLE_HA16A): Likewise.
(R_PPC_VLE_HA16D): Likewise.
(R_PPC_VLE_SDA21): Likewise.
(R_PPC_VLE_SDA21_LO): Likewise.
(R_PPC_VLE_SDAREL_LO16A): Likewise.
(R_PPC_VLE_SDAREL_LO16D): Likewise.
(R_PPC_VLE_SDAREL_HI16A): Likewise.
(R_PPC_VLE_SDAREL_HI16D): Likewise.
(R_PPC_VLE_SDAREL_HA16A): Likewise.
(R_PPC_VLE_SDAREL_HA16D): Likewise.
(SEC_PPC_VLE): Remove.
(PF_PPC_VLE): New program header flag.
(SHF_PPC_VLE): New section header flag.
(vle_opcodes, vle_num_opcodes): New.
(VLE_OP): New macro.
(VLE_OP_TO_SEG): New macro.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
include/opcode/
* ppc.h (PPC_OPCODE_VLE): New definition.
(PPC_OP_SA): New macro.
(PPC_OP_SE_VLE): New macro.
(PPC_OP): Use a variable shift amount.
(powerpc_operand): Update comments.
(PPC_OPSHIFT_INV): New macro.
(PPC_OPERAND_CR): Replace with...
(PPC_OPERAND_CR_BIT): ...this and
(PPC_OPERAND_CR_REG): ...this.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/
* ldlang.c (walk_wild_consider_section): Don't copy section_flag_list.
Pass it to callback.
(walk_wild_section_general): Pass section_flag_list to callback.
(lang_add_section): Add sflag_list parm.
Move out logic to keep / omit a section & call bfd_lookup_section_flags.
(output_section_callback_fast): Add sflag_list parm.
Add new parm to lang_add_section calls.
(output_section_callback): Likewise.
(check_section_callback): Add sflag_list parm.
(lang_place_orphans): Add new parm to lang_add_section calls.
(gc_section_callback): Add sflag_list parm.
(find_relro_section_callback): Likewise.
* ldlang.h (callback_t): Add flag_info parm.
(lang_add_section): Add sflag_list parm.
* emultempl/armelf.em (elf32_arm_add_stub_section):
Add lang_add_section parm.
* emultempl/beos.em (gld*_place_orphan): Likewise.
* emultempl/elf32.em (gld*_place_orphan): Likewise.
* emultempl/hppaelf.em (hppaelf_add_stub_section): Likewise.
* emultempl/m68hc1xelf.em (m68hc11elf_add_stub_section): Likewise.
* emultempl/mipself.em (mips_add_stub_section): Likewise.
* emultempl/mmo.em (mmo_place_orphan): Likewise.
* emultempl/pe.em (gld_*_place_orphan): Likewise.
* emultempl/pep.em (gld_*_place_orphan): Likewise.
* emultempl/ppc64elf.em (ppc_add_stub_section): Likewise.
* emultempl/spuelf.em (spu_place_special_section): Likewise.
* emultempl/vms.em (vms_place_orphan): Likewise.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
ld/testsuite/
* ld-powerpc/powerpc.exp: Create ppceabitests.
* ld-powerpc/vle-multiseg.s: New.
* ld-powerpc/vle-multiseg-1.d: New.
* ld-powerpc/vle-multiseg-1.ld: New.
* ld-powerpc/vle-multiseg-2.d: New.
* ld-powerpc/vle-multiseg-2.ld: New.
* ld-powerpc/vle-multiseg-3.d: New.
* ld-powerpc/vle-multiseg-3.ld: New.
* ld-powerpc/vle-multiseg-4.d: New.
* ld-powerpc/vle-multiseg-4.ld: New.
* ld-powerpc/vle-multiseg-5.d: New.
* ld-powerpc/vle-multiseg-5.ld: New.
* ld-powerpc/vle-multiseg-6.d: New.
* ld-powerpc/vle-multiseg-6.ld: New.
* ld-powerpc/vle-multiseg-6a.s: New.
* ld-powerpc/vle-multiseg-6b.s: New.
* ld-powerpc/vle-multiseg-6c.s: New.
* ld-powerpc/vle-multiseg-6d.s: New.
* ld-powerpc/powerpc.exp: Run new tests.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/
* NEWS: Mention PowerPC VLE port.
2012-05-14 Catherine Moore <clm@codesourcery.com>
ld/testsuite/
* ld-powerpc/apuinfo.rd: Update for VLE.
* ld-powerpc/vle-reloc-1.d: New.
* ld-powerpc/vle-reloc-1.s: New.
* ld-powerpc/vle-reloc-2.d: New.
* ld-powerpc/vle-reloc-2.s: New.
* ld-powerpc/vle-reloc-3.d: New.
* ld-powerpc/vle-reloc-3.s: New.
* ld-powerpc/vle-reloc-def-1.s: New.
* ld-powerpc/vle-reloc-def-2.s: New.
* ld-powerpc/vle-reloc-def-3.s: New.
2012-05-14 James Lemke <jwlemke@codesourcery.com>
opcodes/
* ppc-dis.c (get_powerpc_dialect): Use is_ppc_vle.
(PPC_OPCD_SEGS, VLE_OPCD_SEGS): New defines.
(vle_opcd_indices): New array.
(lookup_vle): New function.
(disassemble_init_powerpc): Revise for second (VLE) opcode table.
(print_insn_powerpc): Likewise.
* ppc-opc.c: Likewise.
2012-05-14 Catherine Moore <clm@codesourcery.com>
Maciej W. Rozycki <macro@codesourcery.com>
Rhonda Wittels <rhonda@codesourcery.com>
Nathan Froyd <froydnj@codesourcery.com>
opcodes/
* ppc-opc.c (insert_arx, extract_arx): New functions.
(insert_ary, extract_ary): New functions.
(insert_li20, extract_li20): New functions.
(insert_rx, extract_rx): New functions.
(insert_ry, extract_ry): New functions.
(insert_sci8, extract_sci8): New functions.
(insert_sci8n, extract_sci8n): New functions.
(insert_sd4h, extract_sd4h): New functions.
(insert_sd4w, extract_sd4w): New functions.
(insert_vlesi, extract_vlesi): New functions.
(insert_vlensi, extract_vlensi): New functions.
(insert_vleui, extract_vleui): New functions.
(insert_vleil, extract_vleil): New functions.
(BI_MASK, BB_MASK, BT): Use PPC_OPERAND_CR_BIT.
(BI16, BI32, BO32, B8): New.
(B15, B24, CRD32, CRS): New.
(CRD, OBF, BFA, CR, CRFS): Use PPC_OPERAND_CR_REG.
(DB, IMM20, RD, Rx, ARX, RY, RZ): New.
(ARY, SCLSCI8, SCLSCI8N, SE_SD, SE_SDH): New.
(SH6_MASK): Use PPC_OPSHIFT_INV.
(SI8, UI5, OIMM5, UI7, BO16): New.
(VLESIMM, VLENSIMM, VLEUIMM, VLEUIMML): New.
(XT6, XA6, XB6, XB6S, XC6): Use PPC_OPSHIFT_INV.
(ALLOW8_SPRG): New.
(insert_sprg, extract_sprg): Check ALLOW8_SPRG.
(OPVUP, OPVUP_MASK OPVUP): New
(BD8, BD8_MASK, BD8IO, BD8IO_MASK): New.
(EBD8IO, EBD8IO1_MASK, EBD8IO2_MASK, EBD8IO3_MASK): New.
(BD15, BD15_MASK, EBD15, EBD15_MASK, EBD15BI, EBD15BI_MASK): New.
(BD24,BD24_MASK, C_LK, C_LK_MASK, C, C_MASK): New.
(IA16, IA16_MASK, I16A, I16A_MASK, I16L, I16L_MASK): New.
(IM7, IM7_MASK, LI20, LI20_MASK, SCI8, SCI8_MASK): New.
(SCI8BF, SCI8BF_MASK, SD4, SD4_MASK): New.
(SE_IM5, SE_IM5_MASK): New.
(SE_R, SE_R_MASK, SE_RR, SE_RR_MASK): New.
(EX, EX_MASK, BO16F, BO16T, BO32F, BO32T): New.
(BO32DNZ, BO32DZ): New.
(NO371, PPCSPE, PPCISEL, PPCEFS, MULHW): Include PPC_OPCODE_VLE.
(PPCVLE): New.
(powerpc_opcodes): Add new VLE instructions. Update existing
instruction to include PPCVLE if supported.
* ppc-dis.c (ppc_opts): Add vle entry.
(get_powerpc_dialect): New function.
(powerpc_init_dialect): VLE support.
(print_insn_big_powerpc): Call get_powerpc_dialect.
(print_insn_little_powerpc): Likewise.
(operand_value_powerpc): Handle negative shift counts.
(print_insn_powerpc): Handle 2-byte instruction lengths.
2012-05-14 19:45:30 +00:00
|
|
|
lang_add_section (&os->children, s, NULL, os);
|
2008-10-20 12:14:29 +00:00
|
|
|
return os;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Decide which segment the section should go in based on the
|
|
|
|
section name and section flags. We put loadable .note sections
|
|
|
|
right after the .interp section, so that the PT_NOTE segment is
|
|
|
|
stored right after the program headers where the OS can read it
|
|
|
|
in the first page. */
|
2000-04-25 05:14:16 +00:00
|
|
|
|
2000-09-07 07:08:58 +00:00
|
|
|
place = NULL;
|
2008-10-21 22:55:04 +00:00
|
|
|
if ((s->flags & (SEC_ALLOC | SEC_DEBUGGING)) == 0)
|
|
|
|
place = &hold[orphan_nonalloc];
|
|
|
|
else if ((s->flags & SEC_ALLOC) == 0)
|
2000-09-07 07:08:58 +00:00
|
|
|
;
|
1999-05-03 07:29:11 +00:00
|
|
|
else if ((s->flags & SEC_LOAD) != 0
|
2005-10-15 14:57:55 +00:00
|
|
|
&& ((iself && sh_type == SHT_NOTE)
|
2006-09-16 18:12:17 +00:00
|
|
|
|| (!iself && CONST_STRNEQ (secname, ".note"))))
|
2004-10-14 12:54:47 +00:00
|
|
|
place = &hold[orphan_interp];
|
2011-05-27 12:47:12 +00:00
|
|
|
else if ((s->flags & (SEC_LOAD | SEC_HAS_CONTENTS | SEC_THREAD_LOCAL)) == 0)
|
2004-10-14 12:54:47 +00:00
|
|
|
place = &hold[orphan_bss];
|
|
|
|
else if ((s->flags & SEC_SMALL_DATA) != 0)
|
|
|
|
place = &hold[orphan_sdata];
|
2014-01-22 19:24:12 +00:00
|
|
|
else if ((s->flags & SEC_THREAD_LOCAL) != 0)
|
|
|
|
place = &hold[orphan_tdata];
|
2004-10-14 12:54:47 +00:00
|
|
|
else if ((s->flags & SEC_READONLY) == 0)
|
|
|
|
place = &hold[orphan_data];
|
2005-10-15 14:57:55 +00:00
|
|
|
else if (((iself && (sh_type == SHT_RELA || sh_type == SHT_REL))
|
2006-09-16 18:12:17 +00:00
|
|
|
|| (!iself && CONST_STRNEQ (secname, ".rel")))
|
2004-10-14 12:54:47 +00:00
|
|
|
&& (s->flags & SEC_LOAD) != 0)
|
|
|
|
place = &hold[orphan_rel];
|
|
|
|
else if ((s->flags & SEC_CODE) == 0)
|
|
|
|
place = &hold[orphan_rodata];
|
|
|
|
else
|
|
|
|
place = &hold[orphan_text];
|
2000-09-07 07:08:58 +00:00
|
|
|
|
2004-10-14 12:54:47 +00:00
|
|
|
after = NULL;
|
2000-04-18 05:53:41 +00:00
|
|
|
if (place != NULL)
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2004-10-14 12:54:47 +00:00
|
|
|
if (place->os == NULL)
|
2000-04-18 05:53:41 +00:00
|
|
|
{
|
2004-10-14 12:54:47 +00:00
|
|
|
if (place->name != NULL)
|
|
|
|
place->os = lang_output_section_find (place->name);
|
|
|
|
else
|
|
|
|
place->os = output_rel_find (s, isdyn);
|
2000-04-18 05:53:41 +00:00
|
|
|
}
|
2004-10-14 12:54:47 +00:00
|
|
|
after = place->os;
|
|
|
|
if (after == NULL)
|
2005-11-24 06:02:08 +00:00
|
|
|
after = lang_output_section_find_by_flags
|
|
|
|
(s, &place->os, _bfd_elf_match_sections_by_type);
|
2004-10-14 12:54:47 +00:00
|
|
|
if (after == NULL)
|
|
|
|
/* *ABS* is always the first output section statement. */
|
|
|
|
after = &lang_output_section_statement.head->output_section_statement;
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
|
|
|
|
2008-10-20 12:14:29 +00:00
|
|
|
return lang_insert_orphan (s, secname, constraint, after, place, NULL, NULL);
|
1999-05-03 07:29:11 +00:00
|
|
|
}
|
2001-11-15 12:44:03 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2009-08-10 07:50:56 +00:00
|
|
|
if test x"$LDEMUL_AFTER_ALLOCATION" != xgld"$EMULATION_NAME"_after_allocation; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-03-29 11:07:38 +00:00
|
|
|
static void
|
2009-08-10 07:50:56 +00:00
|
|
|
gld${EMULATION_NAME}_after_allocation (void)
|
2005-03-29 11:07:38 +00:00
|
|
|
{
|
2014-08-18 00:03:35 +00:00
|
|
|
int need_layout = bfd_elf_discard_info (link_info.output_bfd, &link_info);
|
|
|
|
|
|
|
|
if (need_layout < 0)
|
|
|
|
einfo ("%X%P: .eh_frame/.stab edit: %E\n");
|
|
|
|
else
|
|
|
|
gld${EMULATION_NAME}_map_segments (need_layout);
|
2001-11-15 01:34:12 +00:00
|
|
|
}
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$LDEMUL_GET_SCRIPT" != xgld"$EMULATION_NAME"_get_script; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
static char *
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_get_script (int *isfile)
|
1999-05-03 07:29:11 +00:00
|
|
|
EOF
|
|
|
|
|
2014-01-17 00:09:50 +00:00
|
|
|
if test x"$COMPILE_IN" = xyes
|
1999-05-03 07:29:11 +00:00
|
|
|
then
|
|
|
|
# Scripts compiled in.
|
|
|
|
|
|
|
|
# sed commands to quote an ld script as a C string.
|
1999-08-06 22:46:03 +00:00
|
|
|
sc="-f stringify.sed"
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-06-19 01:22:44 +00:00
|
|
|
{
|
1999-05-03 07:29:11 +00:00
|
|
|
*isfile = 0;
|
|
|
|
|
2003-06-25 06:40:27 +00:00
|
|
|
if (link_info.relocatable && config.build_constructors)
|
1999-08-06 22:46:03 +00:00
|
|
|
return
|
1999-05-03 07:29:11 +00:00
|
|
|
EOF
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xu >> e${EMULATION_NAME}.c
|
|
|
|
echo ' ; else if (link_info.relocatable) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xr >> e${EMULATION_NAME}.c
|
|
|
|
echo ' ; else if (!config.text_read_only) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xbn >> e${EMULATION_NAME}.c
|
2001-10-10 23:05:55 +00:00
|
|
|
if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then : ; else
|
2004-10-14 12:54:47 +00:00
|
|
|
echo ' ; else if (!config.magic_demand_paged) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xn >> e${EMULATION_NAME}.c
|
2001-08-23 15:14:18 +00:00
|
|
|
fi
|
2003-05-30 15:50:12 +00:00
|
|
|
if test -n "$GENERATE_PIE_SCRIPT" ; then
|
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2004-05-11 17:08:38 +00:00
|
|
|
echo ' ; else if (link_info.pie && link_info.combreloc' >> e${EMULATION_NAME}.c
|
|
|
|
echo ' && link_info.relro' >> e${EMULATION_NAME}.c
|
2007-09-16 18:55:23 +00:00
|
|
|
echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xdw >> e${EMULATION_NAME}.c
|
2003-05-30 15:50:12 +00:00
|
|
|
echo ' ; else if (link_info.pie && link_info.combreloc) return' >> e${EMULATION_NAME}.c
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xdc >> e${EMULATION_NAME}.c
|
2003-05-30 15:50:12 +00:00
|
|
|
fi
|
2004-10-14 12:54:47 +00:00
|
|
|
echo ' ; else if (link_info.pie) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xd >> e${EMULATION_NAME}.c
|
2003-05-30 15:50:12 +00:00
|
|
|
fi
|
1999-05-03 07:29:11 +00:00
|
|
|
if test -n "$GENERATE_SHLIB_SCRIPT" ; then
|
2002-06-17 14:08:40 +00:00
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2004-05-11 17:08:38 +00:00
|
|
|
echo ' ; else if (link_info.shared && link_info.combreloc' >> e${EMULATION_NAME}.c
|
|
|
|
echo ' && link_info.relro' >> e${EMULATION_NAME}.c
|
2007-09-16 18:55:23 +00:00
|
|
|
echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xsw >> e${EMULATION_NAME}.c
|
2001-08-23 15:14:18 +00:00
|
|
|
echo ' ; else if (link_info.shared && link_info.combreloc) return' >> e${EMULATION_NAME}.c
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xsc >> e${EMULATION_NAME}.c
|
2002-06-17 14:08:40 +00:00
|
|
|
fi
|
2004-10-14 12:54:47 +00:00
|
|
|
echo ' ; else if (link_info.shared) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xs >> e${EMULATION_NAME}.c
|
1999-05-03 07:29:11 +00:00
|
|
|
fi
|
2002-06-17 14:08:40 +00:00
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2004-05-11 17:08:38 +00:00
|
|
|
echo ' ; else if (link_info.combreloc && link_info.relro' >> e${EMULATION_NAME}.c
|
2007-09-16 18:55:23 +00:00
|
|
|
echo ' && (link_info.flags & DF_BIND_NOW)) return' >> e${EMULATION_NAME}.c
|
2004-10-14 12:54:47 +00:00
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xw >> e${EMULATION_NAME}.c
|
|
|
|
echo ' ; else if (link_info.combreloc) return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.xc >> e${EMULATION_NAME}.c
|
2002-06-17 14:08:40 +00:00
|
|
|
fi
|
2004-10-14 12:54:47 +00:00
|
|
|
echo ' ; else return' >> e${EMULATION_NAME}.c
|
|
|
|
sed $sc ldscripts/${EMULATION_NAME}.x >> e${EMULATION_NAME}.c
|
|
|
|
echo '; }' >> e${EMULATION_NAME}.c
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
# Scripts read from the filesystem.
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-06-19 01:22:44 +00:00
|
|
|
{
|
1999-05-03 07:29:11 +00:00
|
|
|
*isfile = 1;
|
|
|
|
|
2003-06-25 06:40:27 +00:00
|
|
|
if (link_info.relocatable && config.build_constructors)
|
1999-05-03 07:29:11 +00:00
|
|
|
return "ldscripts/${EMULATION_NAME}.xu";
|
2003-06-25 06:40:27 +00:00
|
|
|
else if (link_info.relocatable)
|
1999-05-03 07:29:11 +00:00
|
|
|
return "ldscripts/${EMULATION_NAME}.xr";
|
|
|
|
else if (!config.text_read_only)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xbn";
|
2003-02-28 04:46:04 +00:00
|
|
|
EOF
|
|
|
|
if cmp -s ldscripts/${EMULATION_NAME}.x ldscripts/${EMULATION_NAME}.xn; then :
|
|
|
|
else
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
else if (!config.magic_demand_paged)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xn";
|
2003-02-28 04:46:04 +00:00
|
|
|
EOF
|
|
|
|
fi
|
2003-05-30 15:50:12 +00:00
|
|
|
if test -n "$GENERATE_PIE_SCRIPT" ; then
|
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2004-05-11 17:08:38 +00:00
|
|
|
else if (link_info.pie && link_info.combreloc
|
2007-09-16 18:55:23 +00:00
|
|
|
&& link_info.relro && (link_info.flags & DF_BIND_NOW))
|
2004-05-11 17:08:38 +00:00
|
|
|
return "ldscripts/${EMULATION_NAME}.xdw";
|
2003-05-30 15:50:12 +00:00
|
|
|
else if (link_info.pie && link_info.combreloc)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xdc";
|
|
|
|
EOF
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2003-05-30 15:50:12 +00:00
|
|
|
else if (link_info.pie)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xd";
|
|
|
|
EOF
|
|
|
|
fi
|
2003-02-28 04:46:04 +00:00
|
|
|
if test -n "$GENERATE_SHLIB_SCRIPT" ; then
|
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2004-05-11 17:08:38 +00:00
|
|
|
else if (link_info.shared && link_info.combreloc
|
2007-09-16 18:55:23 +00:00
|
|
|
&& link_info.relro && (link_info.flags & DF_BIND_NOW))
|
2004-05-11 17:08:38 +00:00
|
|
|
return "ldscripts/${EMULATION_NAME}.xsw";
|
2003-02-28 04:46:04 +00:00
|
|
|
else if (link_info.shared && link_info.combreloc)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xsc";
|
|
|
|
EOF
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
else if (link_info.shared)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xs";
|
2003-02-28 04:46:04 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test -n "$GENERATE_COMBRELOC_SCRIPT" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2004-05-11 17:08:38 +00:00
|
|
|
else if (link_info.combreloc && link_info.relro
|
2007-09-16 18:55:23 +00:00
|
|
|
&& (link_info.flags & DF_BIND_NOW))
|
2004-05-11 17:08:38 +00:00
|
|
|
return "ldscripts/${EMULATION_NAME}.xw";
|
2003-02-28 04:46:04 +00:00
|
|
|
else if (link_info.combreloc)
|
|
|
|
return "ldscripts/${EMULATION_NAME}.xc";
|
|
|
|
EOF
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
else
|
|
|
|
return "ldscripts/${EMULATION_NAME}.x";
|
|
|
|
}
|
|
|
|
|
1999-08-23 09:07:45 +00:00
|
|
|
EOF
|
2000-07-28 01:33:14 +00:00
|
|
|
fi
|
|
|
|
fi
|
1999-08-23 09:07:45 +00:00
|
|
|
|
2000-07-20 03:25:10 +00:00
|
|
|
if test -n "$PARSE_AND_LIST_PROLOGUE" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
$PARSE_AND_LIST_PROLOGUE
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
|
2000-07-20 21:18:23 +00:00
|
|
|
#define OPTION_DISABLE_NEW_DTAGS (400)
|
|
|
|
#define OPTION_ENABLE_NEW_DTAGS (OPTION_DISABLE_NEW_DTAGS + 1)
|
2001-03-17 21:24:26 +00:00
|
|
|
#define OPTION_GROUP (OPTION_ENABLE_NEW_DTAGS + 1)
|
2001-12-13 11:09:34 +00:00
|
|
|
#define OPTION_EH_FRAME_HDR (OPTION_GROUP + 1)
|
2004-10-16 18:13:54 +00:00
|
|
|
#define OPTION_EXCLUDE_LIBS (OPTION_EH_FRAME_HDR + 1)
|
include/
* bfdlink.h (struct bfd_link_info): Add emit_hash and
emit_gnu_hash bitfields.
include/elf/
* common.h (SHT_GNU_HASH, DT_GNU_HASH): Define.
ld/
* scripttempl/elf.sc: Add .gnu.hash section.
* emultempl/elf32.em (OPTION_HASH_STYLE): Define.
(gld${EMULATION_NAME}_add_options): Register --hash-style option.
(gld${EMULATION_NAME}_handle_option): Handle it.
(gld${EMULATION_NAME}_list_options): Document it.
* ldmain.c (main): Initialize emit_hash and emit_gnu_hash.
* ld.texinfo: Document --hash-style option.
bfd/
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_GNU_HASH.
(bfd_section_from_shdr, elf_fake_sections, assign_section_numbers):
Handle SHT_GNU_HASH.
(special_sections_g): Include .gnu.hash section.
(bfd_elf_gnu_hash): New function.
* elf-bfd.h (bfd_elf_gnu_hash, _bfd_elf_hash_symbol): New prototypes.
(struct elf_backend_data): Add elf_hash_symbol method.
* elflink.c (_bfd_elf_link_create_dynamic_sections): Create .hash
only if info->emit_hash, create .gnu.hash section if
info->emit_gnu_hash.
(struct collect_gnu_hash_codes): New type.
(elf_collect_gnu_hash_codes, elf_renumber_gnu_hash_syms,
_bfd_elf_hash_symbol): New functions.
(compute_bucket_count): Don't compute HASHCODES array, instead add
that and NSYMS as arguments. Use bed->s->sizeof_hash_entry
instead of bed->s->arch_size / 8. Fix .hash size estimation.
When not optimizing, use the number of hashed symbols rather than
dynsymcount.
(bfd_elf_size_dynamic_sections): Only add DT_HASH if info->emit_hash,
and ADD DT_GNU_HASH if info->emit_gnu_hash.
(bfd_elf_size_dynsym_hash_dynstr): Size .hash only if info->emit_hash,
adjust compute_bucket_count caller. Create and populate .gnu.hash
section if info->emit_gnu_hash.
(elf_link_output_extsym): Only populate .hash section if
finfo->hash_sec != NULL.
(bfd_elf_final_link): Adjust assertion. Handle DT_GNU_HASH.
* elfxx-target.h (elf_backend_hash_symbol): Define if not yet defined.
(elfNN_bed): Add elf_backend_hash_symbol.
* elf64-x86-64.c (elf64_x86_64_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
* elf32-i386.c (elf_i386_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
binutils/
* readelf.c (get_dynamic_type): Handle DT_GNU_HASH.
(get_section_type_name): Handle SHT_GNU_HASH.
(dynamic_info_DT_GNU_HASH): New variable.
(process_dynamic_section): Handle DT_GNU_HASH.
(process_symbol_table): Print also DT_GNU_HASH histogram.
ld/testsuite/
* ld-powerpc/tlsso32.r: Adjust.
* ld-powerpc/tlsso32.d: Adjust.
* ld-powerpc/tlsso32.g: Adjust.
* ld-powerpc/tlsso.r: Adjust.
* ld-powerpc/tlsso.g: Adjust.
* ld-powerpc/tlstocso.g: Adjust.
2006-07-10 21:40:25 +00:00
|
|
|
#define OPTION_HASH_STYLE (OPTION_EXCLUDE_LIBS + 1)
|
2007-07-09 21:25:34 +00:00
|
|
|
#define OPTION_BUILD_ID (OPTION_HASH_STYLE + 1)
|
2009-09-23 13:54:29 +00:00
|
|
|
#define OPTION_AUDIT (OPTION_BUILD_ID + 1)
|
2006-06-03 02:45:26 +00:00
|
|
|
|
2003-02-28 01:32:31 +00:00
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_add_options
|
|
|
|
(int ns, char **shortopts, int nl, struct option **longopts,
|
|
|
|
int nrl ATTRIBUTE_UNUSED, struct option **really_longopts ATTRIBUTE_UNUSED)
|
2000-07-20 03:25:10 +00:00
|
|
|
{
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2009-09-23 13:54:29 +00:00
|
|
|
static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:P:";
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
else
|
|
|
|
fragment <<EOF
|
|
|
|
static const char xtra_short[] = "${PARSE_AND_LIST_SHORTOPTS}z:";
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fragment <<EOF
|
2003-02-28 01:32:31 +00:00
|
|
|
static const struct option xtra_long[] = {
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2009-09-23 13:54:29 +00:00
|
|
|
{"audit", required_argument, NULL, OPTION_AUDIT},
|
2011-07-14 02:38:43 +00:00
|
|
|
{"Bgroup", no_argument, NULL, OPTION_GROUP},
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fragment <<EOF
|
|
|
|
{"build-id", optional_argument, NULL, OPTION_BUILD_ID},
|
2000-07-20 03:25:10 +00:00
|
|
|
EOF
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2011-07-14 02:38:43 +00:00
|
|
|
{"depaudit", required_argument, NULL, 'P'},
|
2003-02-28 01:32:31 +00:00
|
|
|
{"disable-new-dtags", no_argument, NULL, OPTION_DISABLE_NEW_DTAGS},
|
|
|
|
{"enable-new-dtags", no_argument, NULL, OPTION_ENABLE_NEW_DTAGS},
|
|
|
|
{"eh-frame-hdr", no_argument, NULL, OPTION_EH_FRAME_HDR},
|
2004-10-16 18:13:54 +00:00
|
|
|
{"exclude-libs", required_argument, NULL, OPTION_EXCLUDE_LIBS},
|
include/
* bfdlink.h (struct bfd_link_info): Add emit_hash and
emit_gnu_hash bitfields.
include/elf/
* common.h (SHT_GNU_HASH, DT_GNU_HASH): Define.
ld/
* scripttempl/elf.sc: Add .gnu.hash section.
* emultempl/elf32.em (OPTION_HASH_STYLE): Define.
(gld${EMULATION_NAME}_add_options): Register --hash-style option.
(gld${EMULATION_NAME}_handle_option): Handle it.
(gld${EMULATION_NAME}_list_options): Document it.
* ldmain.c (main): Initialize emit_hash and emit_gnu_hash.
* ld.texinfo: Document --hash-style option.
bfd/
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_GNU_HASH.
(bfd_section_from_shdr, elf_fake_sections, assign_section_numbers):
Handle SHT_GNU_HASH.
(special_sections_g): Include .gnu.hash section.
(bfd_elf_gnu_hash): New function.
* elf-bfd.h (bfd_elf_gnu_hash, _bfd_elf_hash_symbol): New prototypes.
(struct elf_backend_data): Add elf_hash_symbol method.
* elflink.c (_bfd_elf_link_create_dynamic_sections): Create .hash
only if info->emit_hash, create .gnu.hash section if
info->emit_gnu_hash.
(struct collect_gnu_hash_codes): New type.
(elf_collect_gnu_hash_codes, elf_renumber_gnu_hash_syms,
_bfd_elf_hash_symbol): New functions.
(compute_bucket_count): Don't compute HASHCODES array, instead add
that and NSYMS as arguments. Use bed->s->sizeof_hash_entry
instead of bed->s->arch_size / 8. Fix .hash size estimation.
When not optimizing, use the number of hashed symbols rather than
dynsymcount.
(bfd_elf_size_dynamic_sections): Only add DT_HASH if info->emit_hash,
and ADD DT_GNU_HASH if info->emit_gnu_hash.
(bfd_elf_size_dynsym_hash_dynstr): Size .hash only if info->emit_hash,
adjust compute_bucket_count caller. Create and populate .gnu.hash
section if info->emit_gnu_hash.
(elf_link_output_extsym): Only populate .hash section if
finfo->hash_sec != NULL.
(bfd_elf_final_link): Adjust assertion. Handle DT_GNU_HASH.
* elfxx-target.h (elf_backend_hash_symbol): Define if not yet defined.
(elfNN_bed): Add elf_backend_hash_symbol.
* elf64-x86-64.c (elf64_x86_64_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
* elf32-i386.c (elf_i386_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
binutils/
* readelf.c (get_dynamic_type): Handle DT_GNU_HASH.
(get_section_type_name): Handle SHT_GNU_HASH.
(dynamic_info_DT_GNU_HASH): New variable.
(process_dynamic_section): Handle DT_GNU_HASH.
(process_symbol_table): Print also DT_GNU_HASH histogram.
ld/testsuite/
* ld-powerpc/tlsso32.r: Adjust.
* ld-powerpc/tlsso32.d: Adjust.
* ld-powerpc/tlsso32.g: Adjust.
* ld-powerpc/tlsso.r: Adjust.
* ld-powerpc/tlsso.g: Adjust.
* ld-powerpc/tlstocso.g: Adjust.
2006-07-10 21:40:25 +00:00
|
|
|
{"hash-style", required_argument, NULL, OPTION_HASH_STYLE},
|
2000-07-20 03:25:10 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
if test -n "$PARSE_AND_LIST_LONGOPTS" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2003-02-28 01:32:31 +00:00
|
|
|
$PARSE_AND_LIST_LONGOPTS
|
2000-07-20 03:25:10 +00:00
|
|
|
EOF
|
|
|
|
fi
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2003-02-28 01:32:31 +00:00
|
|
|
{NULL, no_argument, NULL, 0}
|
|
|
|
};
|
|
|
|
|
|
|
|
*shortopts = (char *) xrealloc (*shortopts, ns + sizeof (xtra_short));
|
|
|
|
memcpy (*shortopts + ns, &xtra_short, sizeof (xtra_short));
|
|
|
|
*longopts = (struct option *)
|
|
|
|
xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
|
|
|
|
memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
|
|
|
|
}
|
2000-07-28 01:07:09 +00:00
|
|
|
|
2007-07-13 10:44:26 +00:00
|
|
|
#define DEFAULT_BUILD_ID_STYLE "sha1"
|
2007-07-09 21:25:34 +00:00
|
|
|
|
2003-02-28 01:32:31 +00:00
|
|
|
static bfd_boolean
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_handle_option (int optc)
|
2000-07-20 03:25:10 +00:00
|
|
|
{
|
|
|
|
switch (optc)
|
|
|
|
{
|
|
|
|
default:
|
2003-02-28 01:32:31 +00:00
|
|
|
return FALSE;
|
2000-07-20 21:18:23 +00:00
|
|
|
|
2007-07-09 21:25:34 +00:00
|
|
|
case OPTION_BUILD_ID:
|
2013-02-18 23:50:32 +00:00
|
|
|
if (emit_note_gnu_build_id != NULL)
|
2007-07-09 21:25:34 +00:00
|
|
|
{
|
2013-02-18 23:50:32 +00:00
|
|
|
free ((char *) emit_note_gnu_build_id);
|
|
|
|
emit_note_gnu_build_id = NULL;
|
2007-07-09 21:25:34 +00:00
|
|
|
}
|
|
|
|
if (optarg == NULL)
|
|
|
|
optarg = DEFAULT_BUILD_ID_STYLE;
|
|
|
|
if (strcmp (optarg, "none"))
|
2013-02-18 23:50:32 +00:00
|
|
|
emit_note_gnu_build_id = xstrdup (optarg);
|
2007-07-09 21:25:34 +00:00
|
|
|
break;
|
2011-07-14 02:38:43 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2009-09-23 13:54:29 +00:00
|
|
|
case OPTION_AUDIT:
|
2012-11-21 19:56:38 +00:00
|
|
|
gld${EMULATION_NAME}_append_to_separated_string (&audit, optarg);
|
2009-09-23 13:54:29 +00:00
|
|
|
break;
|
2011-07-14 02:38:43 +00:00
|
|
|
|
2009-09-23 13:54:29 +00:00
|
|
|
case 'P':
|
|
|
|
gld${EMULATION_NAME}_append_to_separated_string (&depaudit, optarg);
|
|
|
|
break;
|
2007-07-09 21:25:34 +00:00
|
|
|
|
2000-07-20 21:18:23 +00:00
|
|
|
case OPTION_DISABLE_NEW_DTAGS:
|
2002-11-30 08:39:46 +00:00
|
|
|
link_info.new_dtags = FALSE;
|
2000-07-20 21:18:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_ENABLE_NEW_DTAGS:
|
2002-11-30 08:39:46 +00:00
|
|
|
link_info.new_dtags = TRUE;
|
2000-07-20 21:18:23 +00:00
|
|
|
break;
|
|
|
|
|
2001-12-13 11:09:34 +00:00
|
|
|
case OPTION_EH_FRAME_HDR:
|
2002-11-30 08:39:46 +00:00
|
|
|
link_info.eh_frame_hdr = TRUE;
|
2001-12-13 11:09:34 +00:00
|
|
|
break;
|
|
|
|
|
2001-03-17 21:24:26 +00:00
|
|
|
case OPTION_GROUP:
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_GROUP;
|
|
|
|
/* Groups must be self-contained. */
|
2003-08-20 08:37:19 +00:00
|
|
|
link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
|
|
|
|
link_info.unresolved_syms_in_shared_libs = RM_GENERATE_ERROR;
|
2001-03-17 21:24:26 +00:00
|
|
|
break;
|
|
|
|
|
2004-10-16 18:13:54 +00:00
|
|
|
case OPTION_EXCLUDE_LIBS:
|
|
|
|
add_excluded_libs (optarg);
|
|
|
|
break;
|
|
|
|
|
include/
* bfdlink.h (struct bfd_link_info): Add emit_hash and
emit_gnu_hash bitfields.
include/elf/
* common.h (SHT_GNU_HASH, DT_GNU_HASH): Define.
ld/
* scripttempl/elf.sc: Add .gnu.hash section.
* emultempl/elf32.em (OPTION_HASH_STYLE): Define.
(gld${EMULATION_NAME}_add_options): Register --hash-style option.
(gld${EMULATION_NAME}_handle_option): Handle it.
(gld${EMULATION_NAME}_list_options): Document it.
* ldmain.c (main): Initialize emit_hash and emit_gnu_hash.
* ld.texinfo: Document --hash-style option.
bfd/
* elf.c (_bfd_elf_print_private_bfd_data): Handle DT_GNU_HASH.
(bfd_section_from_shdr, elf_fake_sections, assign_section_numbers):
Handle SHT_GNU_HASH.
(special_sections_g): Include .gnu.hash section.
(bfd_elf_gnu_hash): New function.
* elf-bfd.h (bfd_elf_gnu_hash, _bfd_elf_hash_symbol): New prototypes.
(struct elf_backend_data): Add elf_hash_symbol method.
* elflink.c (_bfd_elf_link_create_dynamic_sections): Create .hash
only if info->emit_hash, create .gnu.hash section if
info->emit_gnu_hash.
(struct collect_gnu_hash_codes): New type.
(elf_collect_gnu_hash_codes, elf_renumber_gnu_hash_syms,
_bfd_elf_hash_symbol): New functions.
(compute_bucket_count): Don't compute HASHCODES array, instead add
that and NSYMS as arguments. Use bed->s->sizeof_hash_entry
instead of bed->s->arch_size / 8. Fix .hash size estimation.
When not optimizing, use the number of hashed symbols rather than
dynsymcount.
(bfd_elf_size_dynamic_sections): Only add DT_HASH if info->emit_hash,
and ADD DT_GNU_HASH if info->emit_gnu_hash.
(bfd_elf_size_dynsym_hash_dynstr): Size .hash only if info->emit_hash,
adjust compute_bucket_count caller. Create and populate .gnu.hash
section if info->emit_gnu_hash.
(elf_link_output_extsym): Only populate .hash section if
finfo->hash_sec != NULL.
(bfd_elf_final_link): Adjust assertion. Handle DT_GNU_HASH.
* elfxx-target.h (elf_backend_hash_symbol): Define if not yet defined.
(elfNN_bed): Add elf_backend_hash_symbol.
* elf64-x86-64.c (elf64_x86_64_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
* elf32-i386.c (elf_i386_hash_symbol): New function.
(elf_backend_hash_symbol): Define.
binutils/
* readelf.c (get_dynamic_type): Handle DT_GNU_HASH.
(get_section_type_name): Handle SHT_GNU_HASH.
(dynamic_info_DT_GNU_HASH): New variable.
(process_dynamic_section): Handle DT_GNU_HASH.
(process_symbol_table): Print also DT_GNU_HASH histogram.
ld/testsuite/
* ld-powerpc/tlsso32.r: Adjust.
* ld-powerpc/tlsso32.d: Adjust.
* ld-powerpc/tlsso32.g: Adjust.
* ld-powerpc/tlsso.r: Adjust.
* ld-powerpc/tlsso.g: Adjust.
* ld-powerpc/tlstocso.g: Adjust.
2006-07-10 21:40:25 +00:00
|
|
|
case OPTION_HASH_STYLE:
|
|
|
|
link_info.emit_hash = FALSE;
|
|
|
|
link_info.emit_gnu_hash = FALSE;
|
|
|
|
if (strcmp (optarg, "sysv") == 0)
|
|
|
|
link_info.emit_hash = TRUE;
|
|
|
|
else if (strcmp (optarg, "gnu") == 0)
|
|
|
|
link_info.emit_gnu_hash = TRUE;
|
|
|
|
else if (strcmp (optarg, "both") == 0)
|
|
|
|
{
|
|
|
|
link_info.emit_hash = TRUE;
|
|
|
|
link_info.emit_gnu_hash = TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
einfo (_("%P%F: invalid hash style \`%s'\n"), optarg);
|
|
|
|
break;
|
|
|
|
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
case 'z':
|
2011-07-14 02:38:43 +00:00
|
|
|
if (strcmp (optarg, "defs") == 0)
|
|
|
|
link_info.unresolved_syms_in_objects = RM_GENERATE_ERROR;
|
|
|
|
else if (strcmp (optarg, "muldefs") == 0)
|
|
|
|
link_info.allow_multiple_definition = TRUE;
|
|
|
|
else if (CONST_STRNEQ (optarg, "max-page-size="))
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
|
|
|
|
config.maxpagesize = strtoul (optarg + 14, &end, 0);
|
|
|
|
if (*end || (config.maxpagesize & (config.maxpagesize - 1)) != 0)
|
|
|
|
einfo (_("%P%F: invalid maxium page size \`%s'\n"),
|
|
|
|
optarg + 14);
|
|
|
|
}
|
|
|
|
else if (CONST_STRNEQ (optarg, "common-page-size="))
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
config.commonpagesize = strtoul (optarg + 17, &end, 0);
|
|
|
|
if (*end
|
|
|
|
|| (config.commonpagesize & (config.commonpagesize - 1)) != 0)
|
|
|
|
einfo (_("%P%F: invalid common page size \`%s'\n"),
|
|
|
|
optarg + 17);
|
|
|
|
}
|
2012-10-23 09:33:56 +00:00
|
|
|
else if (CONST_STRNEQ (optarg, "stack-size="))
|
|
|
|
{
|
|
|
|
char *end;
|
|
|
|
link_info.stacksize = strtoul (optarg + 11, &end, 0);
|
|
|
|
if (*end || link_info.stacksize < 0)
|
|
|
|
einfo (_("%P%F: invalid stack size \`%s'\n"), optarg + 11);
|
|
|
|
if (!link_info.stacksize)
|
|
|
|
/* Use -1 for explicit no-stack, because zero means
|
|
|
|
'default'. */
|
|
|
|
link_info.stacksize = -1;
|
|
|
|
}
|
2011-07-14 02:38:43 +00:00
|
|
|
else if (strcmp (optarg, "execstack") == 0)
|
|
|
|
{
|
|
|
|
link_info.execstack = TRUE;
|
|
|
|
link_info.noexecstack = FALSE;
|
|
|
|
}
|
|
|
|
else if (strcmp (optarg, "noexecstack") == 0)
|
|
|
|
{
|
|
|
|
link_info.noexecstack = TRUE;
|
|
|
|
link_info.execstack = FALSE;
|
|
|
|
}
|
|
|
|
EOF
|
2014-11-18 07:52:36 +00:00
|
|
|
|
|
|
|
if test x"$BNDPLT" = xyes; then
|
|
|
|
fragment <<EOF
|
|
|
|
else if (strcmp (optarg, "bndplt") == 0)
|
|
|
|
link_info.bndplt = TRUE;
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2011-07-14 02:38:43 +00:00
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2012-11-20 22:16:05 +00:00
|
|
|
else if (strcmp (optarg, "global") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_GLOBAL;
|
2011-07-14 02:38:43 +00:00
|
|
|
else if (strcmp (optarg, "initfirst") == 0)
|
2000-07-20 03:25:10 +00:00
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_INITFIRST;
|
|
|
|
else if (strcmp (optarg, "interpose") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_INTERPOSE;
|
|
|
|
else if (strcmp (optarg, "loadfltr") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_LOADFLTR;
|
|
|
|
else if (strcmp (optarg, "nodefaultlib") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_NODEFLIB;
|
|
|
|
else if (strcmp (optarg, "nodelete") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_NODELETE;
|
|
|
|
else if (strcmp (optarg, "nodlopen") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_NOOPEN;
|
|
|
|
else if (strcmp (optarg, "nodump") == 0)
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_NODUMP;
|
|
|
|
else if (strcmp (optarg, "now") == 0)
|
|
|
|
{
|
|
|
|
link_info.flags |= (bfd_vma) DF_BIND_NOW;
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_NOW;
|
|
|
|
}
|
2006-06-14 02:43:58 +00:00
|
|
|
else if (strcmp (optarg, "lazy") == 0)
|
|
|
|
{
|
|
|
|
link_info.flags &= ~(bfd_vma) DF_BIND_NOW;
|
|
|
|
link_info.flags_1 &= ~(bfd_vma) DF_1_NOW;
|
|
|
|
}
|
2000-07-20 03:25:10 +00:00
|
|
|
else if (strcmp (optarg, "origin") == 0)
|
|
|
|
{
|
|
|
|
link_info.flags |= (bfd_vma) DF_ORIGIN;
|
|
|
|
link_info.flags_1 |= (bfd_vma) DF_1_ORIGIN;
|
|
|
|
}
|
2001-08-23 15:14:18 +00:00
|
|
|
else if (strcmp (optarg, "combreloc") == 0)
|
2002-11-30 08:39:46 +00:00
|
|
|
link_info.combreloc = TRUE;
|
2001-08-23 15:14:18 +00:00
|
|
|
else if (strcmp (optarg, "nocombreloc") == 0)
|
2002-11-30 08:39:46 +00:00
|
|
|
link_info.combreloc = FALSE;
|
2001-10-03 15:11:48 +00:00
|
|
|
else if (strcmp (optarg, "nocopyreloc") == 0)
|
2003-06-27 00:38:25 +00:00
|
|
|
link_info.nocopyreloc = TRUE;
|
2004-05-11 17:08:38 +00:00
|
|
|
else if (strcmp (optarg, "relro") == 0)
|
|
|
|
link_info.relro = TRUE;
|
|
|
|
else if (strcmp (optarg, "norelro") == 0)
|
|
|
|
link_info.relro = FALSE;
|
2011-10-19 04:13:28 +00:00
|
|
|
else if (strcmp (optarg, "text") == 0)
|
|
|
|
link_info.error_textrel = TRUE;
|
|
|
|
else if (strcmp (optarg, "notext") == 0)
|
|
|
|
link_info.error_textrel = FALSE;
|
|
|
|
else if (strcmp (optarg, "textoff") == 0)
|
|
|
|
link_info.error_textrel = FALSE;
|
2006-09-05 16:26:29 +00:00
|
|
|
EOF
|
2011-07-14 02:38:43 +00:00
|
|
|
fi
|
2006-09-05 16:26:29 +00:00
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2011-07-14 02:38:43 +00:00
|
|
|
else
|
|
|
|
einfo (_("%P: warning: -z %s ignored.\n"), optarg);
|
2000-07-20 21:18:23 +00:00
|
|
|
break;
|
2000-07-20 03:25:10 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test -n "$PARSE_AND_LIST_ARGS_CASES" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
$PARSE_AND_LIST_ARGS_CASES
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
}
|
|
|
|
|
2003-02-28 01:32:31 +00:00
|
|
|
return TRUE;
|
2000-07-20 03:25:10 +00:00
|
|
|
}
|
|
|
|
|
2000-07-28 01:33:14 +00:00
|
|
|
EOF
|
|
|
|
|
2000-08-04 04:41:33 +00:00
|
|
|
if test x"$LDEMUL_LIST_OPTIONS" != xgld"$EMULATION_NAME"_list_options; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-28 01:33:14 +00:00
|
|
|
|
2000-07-20 03:25:10 +00:00
|
|
|
static void
|
2003-06-27 00:38:25 +00:00
|
|
|
gld${EMULATION_NAME}_list_options (FILE * file)
|
2000-07-20 03:25:10 +00:00
|
|
|
{
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2009-09-23 13:54:29 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
--audit=AUDITLIB Specify a library to use for auditing\n"));
|
|
|
|
fprintf (file, _("\
|
2011-07-14 02:38:43 +00:00
|
|
|
-Bgroup Selects group name lookup rules for DSO\n"));
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fragment <<EOF
|
|
|
|
fprintf (file, _("\
|
|
|
|
--build-id[=STYLE] Generate build ID note\n"));
|
2000-07-20 03:25:10 +00:00
|
|
|
EOF
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
2011-07-14 02:38:43 +00:00
|
|
|
-P AUDITLIB, --depaudit=AUDITLIB\n" "\
|
2012-11-21 19:56:38 +00:00
|
|
|
Specify a library to use for auditing dependencies\n"));
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
--disable-new-dtags Disable new dynamic tags\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
--enable-new-dtags Enable new dynamic tags\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
--eh-frame-hdr Create .eh_frame_hdr section\n"));
|
|
|
|
fprintf (file, _("\
|
2011-07-14 02:38:43 +00:00
|
|
|
--exclude-libs=LIBS Make all symbols in LIBS hidden\n"));
|
|
|
|
fprintf (file, _("\
|
2007-08-17 13:50:48 +00:00
|
|
|
--hash-style=STYLE Set hash style to sysv, gnu or both\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z combreloc Merge dynamic relocs into one section and sort\n"));
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
|
|
|
fragment <<EOF
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z common-page-size=SIZE Set common page size to SIZE\n"));
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z defs Report unresolved symbols in object files.\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z execstack Mark executable as requiring executable stack\n"));
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
2012-11-20 22:16:05 +00:00
|
|
|
-z global Make symbols in DSO available for subsequently\n\
|
2012-11-21 19:56:38 +00:00
|
|
|
loaded objects\n"));
|
2012-11-20 22:16:05 +00:00
|
|
|
fprintf (file, _("\
|
2007-08-17 13:50:48 +00:00
|
|
|
-z initfirst Mark DSO to be initialized first at runtime\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z interpose Mark object to interpose all DSOs but executable\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z lazy Mark object lazy runtime binding (default)\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z loadfltr Mark object requiring immediate process\n"));
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
|
|
|
fragment <<EOF
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z max-page-size=SIZE Set maximum page size to SIZE\n"));
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z muldefs Allow multiple definitions\n"));
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
|
|
|
fragment <<EOF
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z nocombreloc Don't merge dynamic relocs into one section\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z nocopyreloc Don't create copy relocs\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z nodefaultlib Mark object not to use default search paths\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z nodelete Mark DSO non-deletable at runtime\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z nodlopen Mark DSO not available to dlopen\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z nodump Mark DSO not available to dldump\n"));
|
2011-07-14 02:38:43 +00:00
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
fragment <<EOF
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z noexecstack Mark executable as not requiring executable stack\n"));
|
2006-09-05 16:26:29 +00:00
|
|
|
EOF
|
2011-07-14 02:38:43 +00:00
|
|
|
if test x"$GENERATE_SHLIB_SCRIPT" = xyes; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2015-02-06 18:01:35 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z text Treat DT_TEXTREL in shared object as error\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z notext Don't treat DT_TEXTREL in shared object as error\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z textoff Don't treat DT_TEXTREL in shared object as error\n"));
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z norelro Don't create RELRO program header\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z now Mark object non-lazy runtime binding\n"));
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z origin Mark object requiring immediate \$ORIGIN\n\
|
2012-11-21 19:56:38 +00:00
|
|
|
processing at runtime\n"));
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z relro Create RELRO program header\n"));
|
2012-11-01 14:26:47 +00:00
|
|
|
fprintf (file, _("\
|
|
|
|
-z stacksize=SIZE Set size of stack segment\n"));
|
2006-09-05 16:26:29 +00:00
|
|
|
EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
fi
|
|
|
|
|
2014-11-18 07:52:36 +00:00
|
|
|
if test x"$BNDPLT" = xyes; then
|
|
|
|
fragment <<EOF
|
|
|
|
fprintf (file, _("\
|
|
|
|
-z bndplt Always generate BND prefix in PLT entries\n"));
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2000-07-20 03:25:10 +00:00
|
|
|
if test -n "$PARSE_AND_LIST_OPTIONS" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
$PARSE_AND_LIST_OPTIONS
|
|
|
|
EOF
|
|
|
|
fi
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
if test -n "$PARSE_AND_LIST_EPILOGUE" ; then
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2000-07-20 03:25:10 +00:00
|
|
|
$PARSE_AND_LIST_EPILOGUE
|
|
|
|
EOF
|
|
|
|
fi
|
2000-07-28 01:33:14 +00:00
|
|
|
fi
|
2000-07-20 03:25:10 +00:00
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-06-19 01:22:44 +00:00
|
|
|
struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
|
1999-05-03 07:29:11 +00:00
|
|
|
{
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse},
|
|
|
|
${LDEMUL_SYSLIB-syslib_default},
|
|
|
|
${LDEMUL_HLL-hll_default},
|
2013-02-05 21:47:32 +00:00
|
|
|
${LDEMUL_AFTER_PARSE-after_parse_default},
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_AFTER_OPEN-gld${EMULATION_NAME}_after_open},
|
2009-08-10 07:50:56 +00:00
|
|
|
${LDEMUL_AFTER_ALLOCATION-gld${EMULATION_NAME}_after_allocation},
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_SET_OUTPUT_ARCH-set_output_arch_default},
|
|
|
|
${LDEMUL_CHOOSE_TARGET-ldemul_default_target},
|
|
|
|
${LDEMUL_BEFORE_ALLOCATION-gld${EMULATION_NAME}_before_allocation},
|
|
|
|
${LDEMUL_GET_SCRIPT-gld${EMULATION_NAME}_get_script},
|
1999-05-03 07:29:11 +00:00
|
|
|
"${EMULATION_NAME}",
|
|
|
|
"${OUTPUT_FORMAT}",
|
2009-08-10 07:50:56 +00:00
|
|
|
${LDEMUL_FINISH-finish_default},
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS-NULL},
|
|
|
|
${LDEMUL_OPEN_DYNAMIC_ARCHIVE-gld${EMULATION_NAME}_open_dynamic_archive},
|
|
|
|
${LDEMUL_PLACE_ORPHAN-gld${EMULATION_NAME}_place_orphan},
|
|
|
|
${LDEMUL_SET_SYMBOLS-NULL},
|
2003-02-28 01:32:31 +00:00
|
|
|
${LDEMUL_PARSE_ARGS-NULL},
|
|
|
|
gld${EMULATION_NAME}_add_options,
|
|
|
|
gld${EMULATION_NAME}_handle_option,
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_UNRECOGNIZED_FILE-NULL},
|
2000-08-04 04:41:33 +00:00
|
|
|
${LDEMUL_LIST_OPTIONS-gld${EMULATION_NAME}_list_options},
|
2004-03-18 12:50:20 +00:00
|
|
|
${LDEMUL_RECOGNIZED_FILE-gld${EMULATION_NAME}_load_symbols},
|
2000-07-28 01:33:14 +00:00
|
|
|
${LDEMUL_FIND_POTENTIAL_LIBRARIES-NULL},
|
2014-05-27 21:14:49 +00:00
|
|
|
${LDEMUL_NEW_VERS_PATTERN-NULL},
|
|
|
|
${LDEMUL_EXTRA_MAP_FILE_TEXT-NULL}
|
1999-05-03 07:29:11 +00:00
|
|
|
};
|
|
|
|
EOF
|