X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=ld%2Femultempl%2Favrelf.em;h=4710b6e0e82fdfaddeddba8b89604226e4891f8f;hb=077fcd6a3b5729044acce83f77ebedd3adbadab0;hp=3c242a937fd14e552d15c4397f297c0741c64523;hpb=442996eee847bcffea6e25c4519b30c36bfe09ef;p=deliverable%2Fbinutils-gdb.git diff --git a/ld/emultempl/avrelf.em b/ld/emultempl/avrelf.em index 3c242a937f..4710b6e0e8 100644 --- a/ld/emultempl/avrelf.em +++ b/ld/emultempl/avrelf.em @@ -1,6 +1,5 @@ # This shell script emits a C file. -*- C -*- -# Copyright 2006, 2007 -# Free Software Foundation, Inc. +# Copyright (C) 2006-2016 Free Software Foundation, Inc. # # This file is part of the GNU Binutils. # @@ -29,6 +28,7 @@ fragment <the_bfd = bfd_create ("linker stubs", output_bfd); + stub_file->the_bfd = bfd_create ("linker stubs", link_info.output_bfd); if (stub_file->the_bfd == NULL || !bfd_set_arch_mach (stub_file->the_bfd, - bfd_get_arch (output_bfd), - bfd_get_mach (output_bfd))) + bfd_get_arch (link_info.output_bfd), + bfd_get_mach (link_info.output_bfd))) { einfo ("%X%P: can not create stub BFD %E\n"); return; @@ -122,14 +124,12 @@ avr_elf_create_output_section_statements (void) /* Now we add the stub section. */ - avr_stub_section = bfd_make_section_anyway (stub_file->the_bfd, - ".trampolines"); - if (avr_stub_section == NULL) - goto err_ret; - flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE | SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY | SEC_KEEP); - if (!bfd_set_section_flags (stub_file->the_bfd, avr_stub_section, flags)) + avr_stub_section = bfd_make_section_anyway_with_flags (stub_file->the_bfd, + ".trampolines", + flags); + if (avr_stub_section == NULL) goto err_ret; avr_stub_section->alignment_power = 1; @@ -146,32 +146,71 @@ avr_elf_create_output_section_statements (void) /* Re-calculates the size of the stubs so that we won't waste space. */ static void -avr_elf_finish (void) +avr_elf_after_allocation (void) { + if (!avr_no_stubs && ! RELAXATION_ENABLED) + { + /* If relaxing, elf32_avr_size_stubs will be called from + elf32_avr_relax_section. */ + if (!elf32_avr_size_stubs (link_info.output_bfd, &link_info, TRUE)) + einfo ("%X%P: can not size stub section: %E\n"); + } + + gld${EMULATION_NAME}_after_allocation (); + + /* Now build the linker stubs. */ if (!avr_no_stubs) { - /* Now build the linker stubs. */ - if (stub_file->the_bfd->sections != NULL) - { - /* Call again the trampoline analyzer to initialize the trampoline - stubs with the correct symbol addresses. Since there could have - been relaxation, the symbol addresses that were found during - first call may no longer be correct. */ - if (!elf32_avr_size_stubs (output_bfd, &link_info, FALSE)) - { - einfo ("%X%P: can not size stub section: %E\n"); - return; - } - - if (!elf32_avr_build_stubs (&link_info)) - einfo ("%X%P: can not build stubs: %E\n"); - } + if (!elf32_avr_build_stubs (&link_info)) + einfo ("%X%P: can not build stubs: %E\n"); } +} - gld${EMULATION_NAME}_finish (); +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 (); } +static void +avr_finish (void) +{ + bfd *abfd; + bfd_boolean avr_link_relax; + + if (bfd_link_relocatable (&link_info)) + { + 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 (); +} EOF @@ -267,6 +306,8 @@ PARSE_AND_LIST_ARGS_CASES=' # # Put these extra avr-elf routines in ld_${EMULATION_NAME}_emulation # +LDEMUL_BEFORE_PARSE=avr_elf_before_parse LDEMUL_BEFORE_ALLOCATION=avr_elf_${EMULATION_NAME}_before_allocation -LDEMUL_FINISH=avr_elf_finish +LDEMUL_AFTER_ALLOCATION=avr_elf_after_allocation LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=avr_elf_create_output_section_statements +LDEMUL_FINISH=avr_finish