2006-05-24 07:36:12 +00:00
|
|
|
# This shell script emits a C file. -*- C -*-
|
2016-01-01 11:25:12 +00:00
|
|
|
# Copyright (C) 2006-2016 Free Software Foundation, Inc.
|
2006-05-24 07:36:12 +00:00
|
|
|
#
|
2007-07-06 14:09:45 +00:00
|
|
|
# This file is part of the GNU Binutils.
|
2006-05-24 07:36:12 +00:00
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
2007-07-06 14:09:45 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2006-05-24 07:36:12 +00:00
|
|
|
# (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
|
2007-07-06 14:09:45 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301, USA.
|
2006-05-24 07:36:12 +00:00
|
|
|
|
2007-07-06 14:09:45 +00:00
|
|
|
|
|
|
|
# This file is sourced from elf32.em, and defines extra avr-elf specific
|
|
|
|
# routines. It is used to generate the trampolines for the avr6 family
|
|
|
|
# of devices where one needs to address the issue that it is not possible
|
2006-05-24 07:36:12 +00:00
|
|
|
# to reach the whole program memory by using 16 bit pointers.
|
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
fragment <<EOF
|
2006-05-24 07:36:12 +00:00
|
|
|
|
|
|
|
#include "elf32-avr.h"
|
|
|
|
#include "ldctor.h"
|
AVR/ld: Propagate link-relax elf header flag correctly.
The AVR target has an elf header flag to indicate if an object was
assembler ready for linker relaxation. If a partial link is performed
then it is important that the link-relax flag in the output object is
set correctly, otherwise, during the final link, we might try to perform
linker relaxation on code that was not assembled suitably.
As the link-relax elf header covers the entire object file we must be
conservative when setting the flag in the output object, so, for a
partial link, any input object that does not have the link-relax flag
set will cause the output object to also not have the link-relax flag
set.
This conservative approach could be softened in future, we only need to
disable the link relax flag if an input file is not marked link-relax
ready, and the input file contains a relaxable section. However, I've
left this optimisation for a later day.
For the final link I've overloaded the use of the link-relax elf header
flag, in a final executable, the flag now indicates if the executable
was built with linker relaxation on or not.
ld/ChangeLog:
* emultempl/avrelf.em: Add include of elf/avr.h.
(avr_finish): New function.
(LDEMUL_FINISH): Added.
ld/testsuite/ChangeLog:
* ld-avr/relax-elf-flags-01.d: New file.
* ld-avr/relax-elf-flags-02.d: New file.
* ld-avr/relax-elf-flags-03.d: New file.
* ld-avr/relax-elf-flags-04.d: New file.
* ld-avr/relax-elf-flags-05.d: New file.
* ld-avr/relax-elf-flags-06.d: New file.
* ld-avr/relax-elf-flags-07.d: New file.
* ld-avr/relax-elf-flags-08.d: New file.
* ld-avr/relax-elf-flags-a.s: New file.
* ld-avr/relax-elf-flags-b.s: New file.
2014-11-22 23:25:17 +00:00
|
|
|
#include "elf/avr.h"
|
2006-05-24 07:36:12 +00:00
|
|
|
|
2007-07-19 19:56:10 +00:00
|
|
|
/* The fake file and it's corresponding section meant to hold
|
2006-05-24 07:36:12 +00:00
|
|
|
the linker stubs if needed. */
|
|
|
|
|
|
|
|
static lang_input_statement_type *stub_file;
|
|
|
|
static asection *avr_stub_section;
|
|
|
|
|
|
|
|
/* Variables set by the command-line parameters and transfered
|
|
|
|
to the bfd without use of global shared variables. */
|
|
|
|
|
|
|
|
static bfd_boolean avr_no_stubs = FALSE;
|
|
|
|
static bfd_boolean avr_debug_relax = FALSE;
|
|
|
|
static bfd_boolean avr_debug_stubs = FALSE;
|
|
|
|
static bfd_boolean avr_replace_call_ret_sequences = TRUE;
|
|
|
|
static bfd_vma avr_pc_wrap_around = 0x10000000;
|
|
|
|
|
|
|
|
/* Transfers information to the bfd frontend. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
avr_elf_set_global_bfd_parameters (void)
|
|
|
|
{
|
|
|
|
elf32_avr_setup_params (& link_info,
|
|
|
|
stub_file->the_bfd,
|
|
|
|
avr_stub_section,
|
|
|
|
avr_no_stubs,
|
|
|
|
avr_debug_stubs,
|
|
|
|
avr_debug_relax,
|
|
|
|
avr_pc_wrap_around,
|
|
|
|
avr_replace_call_ret_sequences);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Makes a conservative estimate of the trampoline section size that could
|
|
|
|
be corrected later on. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
avr_elf_${EMULATION_NAME}_before_allocation (void)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
gld${EMULATION_NAME}_before_allocation ();
|
|
|
|
|
2011-03-22 18:10:48 +00:00
|
|
|
/* We only need stubs for avr6, avrxmega6, and avrxmega7. */
|
2013-01-10 20:08:03 +00:00
|
|
|
if (strcmp ("${EMULATION_NAME}","avr6")
|
2011-03-22 18:10:48 +00:00
|
|
|
&& strcmp ("${EMULATION_NAME}","avrxmega6")
|
|
|
|
&& strcmp ("${EMULATION_NAME}","avrxmega7") )
|
2006-05-24 07:36:12 +00:00
|
|
|
avr_no_stubs = TRUE;
|
|
|
|
|
|
|
|
avr_elf_set_global_bfd_parameters ();
|
|
|
|
|
|
|
|
/* If generating a relocatable output file, then
|
|
|
|
we don't have to generate the trampolines. */
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 12:51:03 +00:00
|
|
|
if (bfd_link_relocatable (&link_info))
|
2006-05-24 07:36:12 +00:00
|
|
|
avr_no_stubs = TRUE;
|
|
|
|
|
|
|
|
if (avr_no_stubs)
|
|
|
|
return;
|
|
|
|
|
2008-02-15 03:35:53 +00:00
|
|
|
ret = elf32_avr_setup_section_lists (link_info.output_bfd, &link_info);
|
2006-05-24 07:36:12 +00:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
einfo ("%X%P: can not setup the input section list: %E\n");
|
|
|
|
|
|
|
|
if (ret <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Call into the BFD backend to do the real "stub"-work. */
|
2008-02-15 03:35:53 +00:00
|
|
|
if (! elf32_avr_size_stubs (link_info.output_bfd, &link_info, TRUE))
|
2006-05-24 07:36:12 +00:00
|
|
|
einfo ("%X%P: can not size stub section: %E\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This is called before the input files are opened. We create a new
|
|
|
|
fake input file to hold the stub section and generate the section itself. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
avr_elf_create_output_section_statements (void)
|
|
|
|
{
|
|
|
|
flagword flags;
|
|
|
|
|
|
|
|
stub_file = lang_add_input_file ("linker stubs",
|
|
|
|
lang_input_file_is_fake_enum,
|
|
|
|
NULL);
|
|
|
|
|
2008-02-15 03:35:53 +00:00
|
|
|
stub_file->the_bfd = bfd_create ("linker stubs", link_info.output_bfd);
|
2006-05-24 07:36:12 +00:00
|
|
|
if (stub_file->the_bfd == NULL
|
|
|
|
|| !bfd_set_arch_mach (stub_file->the_bfd,
|
2008-02-15 03:35:53 +00:00
|
|
|
bfd_get_arch (link_info.output_bfd),
|
|
|
|
bfd_get_mach (link_info.output_bfd)))
|
2006-05-24 07:36:12 +00:00
|
|
|
{
|
|
|
|
einfo ("%X%P: can not create stub BFD %E\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we add the stub section. */
|
|
|
|
|
|
|
|
flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
|
|
|
|
| SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY | SEC_KEEP);
|
2008-07-07 00:46:51 +00:00
|
|
|
avr_stub_section = bfd_make_section_anyway_with_flags (stub_file->the_bfd,
|
|
|
|
".trampolines",
|
|
|
|
flags);
|
|
|
|
if (avr_stub_section == NULL)
|
2006-05-24 07:36:12 +00:00
|
|
|
goto err_ret;
|
|
|
|
|
|
|
|
avr_stub_section->alignment_power = 1;
|
2007-07-19 19:56:10 +00:00
|
|
|
|
2006-05-24 07:36:12 +00:00
|
|
|
ldlang_add_file (stub_file);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
err_ret:
|
|
|
|
einfo ("%X%P: can not make stub section: %E\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Re-calculates the size of the stubs so that we won't waste space. */
|
|
|
|
|
|
|
|
static void
|
2009-08-10 07:50:56 +00:00
|
|
|
avr_elf_after_allocation (void)
|
2007-07-19 19:56:10 +00:00
|
|
|
{
|
2009-11-26 13:45:25 +00:00
|
|
|
if (!avr_no_stubs && ! RELAXATION_ENABLED)
|
2006-05-24 07:36:12 +00:00
|
|
|
{
|
2009-08-10 07:50:56 +00:00
|
|
|
/* If relaxing, elf32_avr_size_stubs will be called from
|
|
|
|
elf32_avr_relax_section. */
|
2012-07-24 22:23:21 +00:00
|
|
|
if (!elf32_avr_size_stubs (link_info.output_bfd, &link_info, TRUE))
|
2009-08-10 07:50:56 +00:00
|
|
|
einfo ("%X%P: can not size stub section: %E\n");
|
2006-05-24 07:36:12 +00:00
|
|
|
}
|
|
|
|
|
2009-08-10 07:50:56 +00:00
|
|
|
gld${EMULATION_NAME}_after_allocation ();
|
|
|
|
|
|
|
|
/* Now build the linker stubs. */
|
|
|
|
if (!avr_no_stubs)
|
|
|
|
{
|
|
|
|
if (!elf32_avr_build_stubs (&link_info))
|
|
|
|
einfo ("%X%P: can not build stubs: %E\n");
|
|
|
|
}
|
2006-05-24 07:36:12 +00:00
|
|
|
}
|
|
|
|
|
2013-02-05 22:38:34 +00:00
|
|
|
static void
|
|
|
|
avr_elf_before_parse (void)
|
|
|
|
{
|
|
|
|
/* Don't create a demand-paged executable, since this feature isn't
|
|
|
|
meaningful in AVR. */
|
|
|
|
config.magic_demand_paged = FALSE;
|
|
|
|
|
|
|
|
gld${EMULATION_NAME}_before_parse ();
|
|
|
|
}
|
2006-05-24 07:36:12 +00:00
|
|
|
|
AVR/ld: Propagate link-relax elf header flag correctly.
The AVR target has an elf header flag to indicate if an object was
assembler ready for linker relaxation. If a partial link is performed
then it is important that the link-relax flag in the output object is
set correctly, otherwise, during the final link, we might try to perform
linker relaxation on code that was not assembled suitably.
As the link-relax elf header covers the entire object file we must be
conservative when setting the flag in the output object, so, for a
partial link, any input object that does not have the link-relax flag
set will cause the output object to also not have the link-relax flag
set.
This conservative approach could be softened in future, we only need to
disable the link relax flag if an input file is not marked link-relax
ready, and the input file contains a relaxable section. However, I've
left this optimisation for a later day.
For the final link I've overloaded the use of the link-relax elf header
flag, in a final executable, the flag now indicates if the executable
was built with linker relaxation on or not.
ld/ChangeLog:
* emultempl/avrelf.em: Add include of elf/avr.h.
(avr_finish): New function.
(LDEMUL_FINISH): Added.
ld/testsuite/ChangeLog:
* ld-avr/relax-elf-flags-01.d: New file.
* ld-avr/relax-elf-flags-02.d: New file.
* ld-avr/relax-elf-flags-03.d: New file.
* ld-avr/relax-elf-flags-04.d: New file.
* ld-avr/relax-elf-flags-05.d: New file.
* ld-avr/relax-elf-flags-06.d: New file.
* ld-avr/relax-elf-flags-07.d: New file.
* ld-avr/relax-elf-flags-08.d: New file.
* ld-avr/relax-elf-flags-a.s: New file.
* ld-avr/relax-elf-flags-b.s: New file.
2014-11-22 23:25:17 +00:00
|
|
|
static void
|
|
|
|
avr_finish (void)
|
|
|
|
{
|
|
|
|
bfd *abfd;
|
|
|
|
bfd_boolean avr_link_relax;
|
|
|
|
|
Add output_type to bfd_link_info
The "shared" field in bfd_link_info is set for both DSO and and PIE.
There are separate fields for executable and relocatable outputs. This
patch adds an "output_type" field:
enum output_type
{
type_unknown = 0,
type_executable,
type_dll,
type_relocatable
};
and a "pic" field to bfd_link_info to replace shared, executable and
relocatable fields so that we can use the "output_type" field to check
for output type and the "pic" field check if output is PIC. Macros,
bfd_link_executable, bfd_link_dll, bfd_link_relocatable, bfd_link_pic
and bfd_link_pie, are provided to check for output features.
bfd/
* bfd/aoutx.h: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* bfd/bout.c: Likewise.
* bfd/coff-alpha.c: Likewise.
* bfd/coff-arm.c: Likewise.
* bfd/coff-i386.c: Likewise.
* bfd/coff-i960.c: Likewise.
* bfd/coff-m68k.c: Likewise.
* bfd/coff-mcore.c: Likewise.
* bfd/coff-mips.c: Likewise.
* bfd/coff-ppc.c: Likewise.
* bfd/coff-rs6000.c: Likewise.
* bfd/coff-sh.c: Likewise.
* bfd/coff-tic80.c: Likewise.
* bfd/coff-x86_64.c: Likewise.
* bfd/coff64-rs6000.c: Likewise.
* bfd/coffgen.c: Likewise.
* bfd/cofflink.c: Likewise.
* bfd/ecoff.c: Likewise.
* bfd/ecofflink.c: Likewise.
* bfd/elf-bfd.h: Likewise.
* bfd/elf-eh-frame.c: Likewise.
* bfd/elf-ifunc.c: Likewise.
* bfd/elf-m10200.c: Likewise.
* bfd/elf-m10300.c: Likewise.
* bfd/elf-s390-common.c: Likewise.
* bfd/elf-vxworks.c: Likewise.
* bfd/elf.c: Likewise.
* bfd/elf32-arm.c: Likewise.
* bfd/elf32-avr.c: Likewise.
* bfd/elf32-bfin.c: Likewise.
* bfd/elf32-cr16.c: Likewise.
* bfd/elf32-cr16c.c: Likewise.
* bfd/elf32-cris.c: Likewise.
* bfd/elf32-crx.c: Likewise.
* bfd/elf32-d10v.c: Likewise.
* bfd/elf32-dlx.c: Likewise.
* bfd/elf32-epiphany.c: Likewise.
* bfd/elf32-fr30.c: Likewise.
* bfd/elf32-frv.c: Likewise.
* bfd/elf32-ft32.c: Likewise.
* bfd/elf32-h8300.c: Likewise.
* bfd/elf32-hppa.c: Likewise.
* bfd/elf32-i370.c: Likewise.
* bfd/elf32-i386.c: Likewise.
* bfd/elf32-i860.c: Likewise.
* bfd/elf32-ip2k.c: Likewise.
* bfd/elf32-iq2000.c: Likewise.
* bfd/elf32-lm32.c: Likewise.
* bfd/elf32-m32c.c: Likewise.
* bfd/elf32-m32r.c: Likewise.
* bfd/elf32-m68hc11.c: Likewise.
* bfd/elf32-m68hc1x.c: Likewise.
* bfd/elf32-m68k.c: Likewise.
* bfd/elf32-mcore.c: Likewise.
* bfd/elf32-mep.c: Likewise.
* bfd/elf32-metag.c: Likewise.
* bfd/elf32-microblaze.c: Likewise.
* bfd/elf32-moxie.c: Likewise.
* bfd/elf32-msp430.c: Likewise.
* bfd/elf32-mt.c: Likewise.
* bfd/elf32-nds32.c: Likewise.
* bfd/elf32-nios2.c: Likewise.
* bfd/elf32-or1k.c: Likewise.
* bfd/elf32-ppc.c: Likewise.
* bfd/elf32-rl78.c: Likewise.
* bfd/elf32-rx.c: Likewise.
* bfd/elf32-s390.c: Likewise.
* bfd/elf32-score.c: Likewise.
* bfd/elf32-score7.c: Likewise.
* bfd/elf32-sh-symbian.c: Likewise.
* bfd/elf32-sh.c: Likewise.
* bfd/elf32-sh64.c: Likewise.
* bfd/elf32-spu.c: Likewise.
* bfd/elf32-tic6x.c: Likewise.
* bfd/elf32-tilepro.c: Likewise.
* bfd/elf32-v850.c: Likewise.
* bfd/elf32-vax.c: Likewise.
* bfd/elf32-visium.c: Likewise.
* bfd/elf32-xc16x.c: Likewise.
* bfd/elf32-xstormy16.c: Likewise.
* bfd/elf32-xtensa.c: Likewise.
* bfd/elf64-alpha.c: Likewise.
* bfd/elf64-hppa.c: Likewise.
* bfd/elf64-ia64-vms.c: Likewise.
* bfd/elf64-mmix.c: Likewise.
* bfd/elf64-ppc.c: Likewise.
* bfd/elf64-s390.c: Likewise.
* bfd/elf64-sh64.c: Likewise.
* bfd/elf64-x86-64.c: Likewise.
* bfd/elflink.c: Likewise.
* bfd/elfnn-aarch64.c: Likewise.
* bfd/elfnn-ia64.c: Likewise.
* bfd/elfxx-mips.c: Likewise.
* bfd/elfxx-sparc.c: Likewise.
* bfd/elfxx-tilegx.c: Likewise.
* bfd/i386linux.c: Likewise.
* bfd/linker.c: Likewise.
* bfd/m68klinux.c: Likewise.
* bfd/pdp11.c: Likewise.
* bfd/pe-mips.c: Likewise.
* bfd/peXXigen.c: Likewise.
* bfd/reloc.c: Likewise.
* bfd/reloc16.c: Likewise.
* bfd/sparclinux.c: Likewise.
* bfd/sunos.c: Likewise.
* bfd/vms-alpha.c: Likewise.
* bfd/xcofflink.c: Likewise.
include/
* include/bfdlink.h (output_type): New enum.
(bfd_link_executable): New macro.
(bfd_link_dll): Likewise.
(bfd_link_relocatable): Likewise.
(bfd_link_pic): Likewise.
(bfd_link_pie): Likewise.
(bfd_link_info): Remove shared, executable, pie and relocatable.
Add output_type and pic.
ld/
* ld/ldctor.c: Replace shared, executable, relocatable and pie
fields with bfd_link_executable, bfd_link_dll,
bfd_link_relocatable, bfd_link_pic and bfd_link_pie.
* ld/ldemul.c: Likewise.
* ld/ldfile.c: Likewise.
* ld/ldlang.c: Likewise.
* ld/ldmain.c: Likewise.
* ld/ldwrite.c: Likewise.
* ld/lexsup.c: Likewise.
* ld/pe-dll.c: Likewise.
* ld/plugin.c: Likewise.
* ld/emultempl/aarch64elf.em: Likewise.
* ld/emultempl/aix.em: Likewise.
* ld/emultempl/alphaelf.em: Likewise.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/armelf.em: Likewise.
* ld/emultempl/avrelf.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/cr16elf.em: Likewise.
* ld/emultempl/elf-generic.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/genelf.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/hppaelf.em: Likewise.
* ld/emultempl/irix.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68hc1xelf.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/m68kelf.em: Likewise.
* ld/emultempl/metagelf.em: Likewise.
* ld/emultempl/mipself.em: Likewise.
* ld/emultempl/mmo.em: Likewise.
* ld/emultempl/msp430.em: Likewise.
* ld/emultempl/nds32elf.em: Likewise.
* ld/emultempl/needrelax.em: Likewise.
* ld/emultempl/nios2elf.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/ppc32elf.em: Likewise.
* ld/emultempl/ppc64elf.em: Likewise.
* ld/emultempl/sh64elf.em: Likewise.
* ld/emultempl/solaris2.em: Likewise.
* ld/emultempl/spuelf.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/tic6xdsbt.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/v850elf.em: Likewise.
* ld/emultempl/vms.em: Likewise.
* ld/emultempl/vxworks.em: Likewise.
2015-08-18 12:51:03 +00:00
|
|
|
if (bfd_link_relocatable (&link_info))
|
AVR/ld: Propagate link-relax elf header flag correctly.
The AVR target has an elf header flag to indicate if an object was
assembler ready for linker relaxation. If a partial link is performed
then it is important that the link-relax flag in the output object is
set correctly, otherwise, during the final link, we might try to perform
linker relaxation on code that was not assembled suitably.
As the link-relax elf header covers the entire object file we must be
conservative when setting the flag in the output object, so, for a
partial link, any input object that does not have the link-relax flag
set will cause the output object to also not have the link-relax flag
set.
This conservative approach could be softened in future, we only need to
disable the link relax flag if an input file is not marked link-relax
ready, and the input file contains a relaxable section. However, I've
left this optimisation for a later day.
For the final link I've overloaded the use of the link-relax elf header
flag, in a final executable, the flag now indicates if the executable
was built with linker relaxation on or not.
ld/ChangeLog:
* emultempl/avrelf.em: Add include of elf/avr.h.
(avr_finish): New function.
(LDEMUL_FINISH): Added.
ld/testsuite/ChangeLog:
* ld-avr/relax-elf-flags-01.d: New file.
* ld-avr/relax-elf-flags-02.d: New file.
* ld-avr/relax-elf-flags-03.d: New file.
* ld-avr/relax-elf-flags-04.d: New file.
* ld-avr/relax-elf-flags-05.d: New file.
* ld-avr/relax-elf-flags-06.d: New file.
* ld-avr/relax-elf-flags-07.d: New file.
* ld-avr/relax-elf-flags-08.d: New file.
* ld-avr/relax-elf-flags-a.s: New file.
* ld-avr/relax-elf-flags-b.s: New file.
2014-11-22 23:25:17 +00:00
|
|
|
{
|
|
|
|
avr_link_relax = TRUE;
|
|
|
|
for (abfd = link_info.input_bfds; abfd != NULL; abfd = abfd->link.next)
|
|
|
|
{
|
|
|
|
/* Don't let the linker stubs prevent the final object being
|
|
|
|
marked as link-relax ready. */
|
|
|
|
if ((elf_elfheader (abfd)->e_flags
|
|
|
|
& EF_AVR_LINKRELAX_PREPARED) == 0
|
|
|
|
&& abfd != stub_file->the_bfd)
|
|
|
|
{
|
|
|
|
avr_link_relax = FALSE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
avr_link_relax = RELAXATION_ENABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
abfd = link_info.output_bfd;
|
|
|
|
if (avr_link_relax)
|
|
|
|
elf_elfheader (abfd)->e_flags |= EF_AVR_LINKRELAX_PREPARED;
|
|
|
|
else
|
|
|
|
elf_elfheader (abfd)->e_flags &= ~EF_AVR_LINKRELAX_PREPARED;
|
|
|
|
|
|
|
|
finish_default ();
|
|
|
|
}
|
2006-05-24 07:36:12 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
|
PARSE_AND_LIST_PROLOGUE='
|
|
|
|
|
|
|
|
#define OPTION_NO_CALL_RET_REPLACEMENT 301
|
|
|
|
#define OPTION_PMEM_WRAP_AROUND 302
|
|
|
|
#define OPTION_NO_STUBS 303
|
|
|
|
#define OPTION_DEBUG_STUBS 304
|
|
|
|
#define OPTION_DEBUG_RELAX 305
|
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_LONGOPTS='
|
2007-07-19 19:56:10 +00:00
|
|
|
{ "no-call-ret-replacement", no_argument,
|
2006-05-24 07:36:12 +00:00
|
|
|
NULL, OPTION_NO_CALL_RET_REPLACEMENT},
|
2007-07-19 19:56:10 +00:00
|
|
|
{ "pmem-wrap-around", required_argument,
|
2006-05-24 07:36:12 +00:00
|
|
|
NULL, OPTION_PMEM_WRAP_AROUND},
|
2007-07-19 19:56:10 +00:00
|
|
|
{ "no-stubs", no_argument,
|
2006-05-24 07:36:12 +00:00
|
|
|
NULL, OPTION_NO_STUBS},
|
2007-07-19 19:56:10 +00:00
|
|
|
{ "debug-stubs", no_argument,
|
2006-05-24 07:36:12 +00:00
|
|
|
NULL, OPTION_DEBUG_STUBS},
|
2007-07-19 19:56:10 +00:00
|
|
|
{ "debug-relax", no_argument,
|
2006-05-24 07:36:12 +00:00
|
|
|
NULL, OPTION_DEBUG_RELAX},
|
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_OPTIONS='
|
2007-08-17 13:50:48 +00:00
|
|
|
fprintf (file, _(" --pmem-wrap-around=<val> "
|
|
|
|
"Make the linker relaxation machine assume that a\n"
|
|
|
|
" "
|
|
|
|
" program counter wrap-around occures at address\n"
|
|
|
|
" "
|
|
|
|
" <val>. Supported values: 8k, 16k, 32k and 64k.\n"));
|
|
|
|
fprintf (file, _(" --no-call-ret-replacement "
|
|
|
|
"The relaxation machine normally will\n"
|
|
|
|
" "
|
|
|
|
" substitute two immediately following call/ret\n"
|
|
|
|
" "
|
|
|
|
" instructions by a single jump instruction.\n"
|
|
|
|
" "
|
|
|
|
" This option disables this optimization.\n"));
|
|
|
|
fprintf (file, _(" --no-stubs "
|
|
|
|
"If the linker detects to attempt to access\n"
|
|
|
|
" "
|
|
|
|
" an instruction beyond 128k by a reloc that\n"
|
|
|
|
" "
|
|
|
|
" is limited to 128k max, it inserts a jump\n"
|
|
|
|
" "
|
|
|
|
" stub. You can de-active this with this switch.\n"));
|
|
|
|
fprintf (file, _(" --debug-stubs "
|
|
|
|
"Used for debugging avr-ld.\n"));
|
|
|
|
fprintf (file, _(" --debug-relax "
|
|
|
|
"Used for debugging avr-ld.\n"));
|
2006-05-24 07:36:12 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_ARGS_CASES='
|
|
|
|
|
|
|
|
case OPTION_PMEM_WRAP_AROUND:
|
2007-07-19 19:56:10 +00:00
|
|
|
{
|
2006-05-24 07:36:12 +00:00
|
|
|
/* This variable is defined in the bfd library. */
|
|
|
|
if ((!strcmp (optarg,"32k")) || (!strcmp (optarg,"32K")))
|
|
|
|
avr_pc_wrap_around = 32768;
|
2007-05-05 06:51:24 +00:00
|
|
|
else if ((!strcmp (optarg,"8k")) || (!strcmp (optarg,"8K")))
|
|
|
|
avr_pc_wrap_around = 8192;
|
2006-05-24 07:36:12 +00:00
|
|
|
else if ((!strcmp (optarg,"16k")) || (!strcmp (optarg,"16K")))
|
|
|
|
avr_pc_wrap_around = 16384;
|
|
|
|
else if ((!strcmp (optarg,"64k")) || (!strcmp (optarg,"64K")))
|
|
|
|
avr_pc_wrap_around = 0x10000;
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_DEBUG_STUBS:
|
|
|
|
avr_debug_stubs = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_DEBUG_RELAX:
|
|
|
|
avr_debug_relax = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_NO_STUBS:
|
|
|
|
avr_no_stubs = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_NO_CALL_RET_REPLACEMENT:
|
|
|
|
{
|
|
|
|
/* This variable is defined in the bfd library. */
|
|
|
|
avr_replace_call_ret_sequences = FALSE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
'
|
|
|
|
|
|
|
|
#
|
|
|
|
# Put these extra avr-elf routines in ld_${EMULATION_NAME}_emulation
|
|
|
|
#
|
2013-02-05 22:38:34 +00:00
|
|
|
LDEMUL_BEFORE_PARSE=avr_elf_before_parse
|
2006-05-24 07:36:12 +00:00
|
|
|
LDEMUL_BEFORE_ALLOCATION=avr_elf_${EMULATION_NAME}_before_allocation
|
2009-08-10 07:50:56 +00:00
|
|
|
LDEMUL_AFTER_ALLOCATION=avr_elf_after_allocation
|
2006-05-24 07:36:12 +00:00
|
|
|
LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=avr_elf_create_output_section_statements
|
AVR/ld: Propagate link-relax elf header flag correctly.
The AVR target has an elf header flag to indicate if an object was
assembler ready for linker relaxation. If a partial link is performed
then it is important that the link-relax flag in the output object is
set correctly, otherwise, during the final link, we might try to perform
linker relaxation on code that was not assembled suitably.
As the link-relax elf header covers the entire object file we must be
conservative when setting the flag in the output object, so, for a
partial link, any input object that does not have the link-relax flag
set will cause the output object to also not have the link-relax flag
set.
This conservative approach could be softened in future, we only need to
disable the link relax flag if an input file is not marked link-relax
ready, and the input file contains a relaxable section. However, I've
left this optimisation for a later day.
For the final link I've overloaded the use of the link-relax elf header
flag, in a final executable, the flag now indicates if the executable
was built with linker relaxation on or not.
ld/ChangeLog:
* emultempl/avrelf.em: Add include of elf/avr.h.
(avr_finish): New function.
(LDEMUL_FINISH): Added.
ld/testsuite/ChangeLog:
* ld-avr/relax-elf-flags-01.d: New file.
* ld-avr/relax-elf-flags-02.d: New file.
* ld-avr/relax-elf-flags-03.d: New file.
* ld-avr/relax-elf-flags-04.d: New file.
* ld-avr/relax-elf-flags-05.d: New file.
* ld-avr/relax-elf-flags-06.d: New file.
* ld-avr/relax-elf-flags-07.d: New file.
* ld-avr/relax-elf-flags-08.d: New file.
* ld-avr/relax-elf-flags-a.s: New file.
* ld-avr/relax-elf-flags-b.s: New file.
2014-11-22 23:25:17 +00:00
|
|
|
LDEMUL_FINISH=avr_finish
|