MIPS/BFD: Fix the size of `.reginfo' and `.MIPS.abiflags' sections
Use the SEC_FIXED_SIZE flag to actually fix the size of `.reginfo' and
`.MIPS.abiflags' sections in `_bfd_mips_elf_always_size_sections', as
originally intended, removing link failures such as:
ld: final link failed: Section has no contents
or:
ld: final link failed: Bad value
or:
ld: foo: .reginfo section size should be 24 bytes, actual size is 32
and assertion failures like:
ld: BFD (GNU Binutils) 2.30.51.20180131 assertion fail .../bfd/elfxx-mips.c:14322
in link scenarios involving a linker script that either creates an
output `.reginfo' or `.MIPS.abiflags' section from scratch or produces
either section from different sections. If such an output section's
size turns out to be incorrect according to the psABI, then the section
is either truncated or padded out to the correct size, as relevant.
This allows people to handle these sections in a link in an unusual way,
while still addressing the issue covered by commit 58807c48a5a3
("_bfd_mips_elf_final_link: Notify user about wrong .reginfo size").
The original arrangement, coming from an unindentified change made to
what was called `mips_elf_always_size_sections' back then, between
commit 02650bd0a97e ("This adds ABI flags to MIPS/ELF object files.")
and commit 252b5132c753 ("19990502 sourceware import"), also missing
from BFD ChangeLog files, assumed that the output section size is not
going to change after return from `bfd_elf_size_dynamic_sections', the
caller of that function, called in turn from `ldemul_before_allocation'
via `gld${EMULATION_NAME}_before_allocation' in ld/emultempl/elf32.em,
and ultimately from `lang_process'. This is because later on in
`lang_process' processing `lang_size_sections' is called , happily
recalculating the section size, and it has actually already been the
case at the time of commit 252b5132c753 ("19990502 sourceware import"),
so the assumption was clearly incorrect right from the beginning.
bfd/
* elfxx-mips.c (_bfd_mips_elf_always_size_sections): Set
SEC_FIXED_SIZE and SEC_HAS_CONTENTS flags for `.reginfo' and
`.MIPS.abiflags' sections.
(_bfd_mips_elf_final_link): Avoid reading beyond `.reginfo'
section's end.
ld/
* testsuite/ld-mips-elf/reginfo-0.d: New test.
* testsuite/ld-mips-elf/reginfo-0r.d: New test.
* testsuite/ld-mips-elf/reginfo-1.d: New test.
* testsuite/ld-mips-elf/reginfo-1r.d: New test.
* testsuite/ld-mips-elf/reginfo-2.d: New test.
* testsuite/ld-mips-elf/reginfo-2r.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-0.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-0r.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-1.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-1r.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-2.d: New test.
* testsuite/ld-mips-elf/mips-abiflags-2r.d: New test.
* testsuite/ld-mips-elf/reginfo-0.ld: New test linker script.
* testsuite/ld-mips-elf/reginfo-1.ld: New test linker script.
* testsuite/ld-mips-elf/mips-abiflags-0.ld: New test linker
script.
* testsuite/ld-mips-elf/mips-abiflags-1.ld: New test linker
script.
* testsuite/ld-mips-elf/reginfo-1.s: New test source.
* testsuite/ld-mips-elf/reginfo-2.s: New test source.
* testsuite/ld-mips-elf/mips-elf.exp: Run the new tests.
2018-02-19 18:38:41 +00:00
|
|
|
|
2018-02-19 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_always_size_sections): Set
|
|
|
|
|
SEC_FIXED_SIZE and SEC_HAS_CONTENTS flags for `.reginfo' and
|
|
|
|
|
`.MIPS.abiflags' sections.
|
|
|
|
|
(_bfd_mips_elf_final_link): Avoid reading beyond `.reginfo'
|
|
|
|
|
section's end.
|
|
|
|
|
|
2018-02-19 18:38:41 +00:00
|
|
|
|
2018-02-19 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* section.c (SEC_FIXED_SIZE): New macro.
|
|
|
|
|
* bfd-in2.h: Regenerate.
|
|
|
|
|
|
2018-02-19 18:38:41 +00:00
|
|
|
|
2018-02-19 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* section.c (SEC_HAS_GOT_REF): Remove macro.
|
|
|
|
|
* bfd-in2.h: Regenerate.
|
|
|
|
|
|
2018-02-19 23:36:55 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf-attrs.c (_bfd_elf_parse_attributes): Correct _bfd_error_handler
|
|
|
|
|
arguments.
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_final_link): Likewise.
|
|
|
|
|
* elfnn-riscv.c (_bfd_riscv_relax_align): Likewise.
|
|
|
|
|
(_bfd_riscv_relax_pc): Likewise and fix typos.
|
|
|
|
|
* libbfd-in.h (_bfd_error_handler): Add attribute printf.
|
|
|
|
|
* libbfd.h: Regenerate.
|
|
|
|
|
|
2018-02-19 18:48:15 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* dwarf2.c (read_section): Don't use 'll' format modifier.
|
|
|
|
|
(find_abstract_instance): Likewise.
|
|
|
|
|
* elfcore.h (elf_core_file_p): Likewise.
|
|
|
|
|
|
%L conversions
* bfd-in.h: Include inttypes.h or if not available define
PRId64, PRIu64 and PRIx64.
* bfd.c (_bfd_doprnt, _bfd_doprnt_scan): Remove support for L
modifier to print bfd_vma.
* coff-arm.c, * coff-mcore.c, * coff-ppc.c, * coff-rs6000.c,
* coff-sh.c, * coff-tic80.c, * coffcode.h, * coffgen.c, * cofflink.c,
* compress.c, * dwarf2.c, * elf-m10300.c, * elf.c, * elf32-arc.c,
* elf32-arm.c, * elf32-bfin.c, * elf32-cris.c, * elf32-hppa.c,
* elf32-i386.c, * elf32-ip2k.c, * elf32-lm32.c, * elf32-m32r.c,
* elf32-m68k.c, * elf32-metag.c, * elf32-nds32.c, * elf32-nios2.c,
* elf32-ppc.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
* elf32-score7.c, * elf32-sh.c, * elf32-sh64.c, * elf32-spu.c,
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c,
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
* elf64-mmix.c, * elf64-s390.c, * elf64-sh64.c, * elf64-x86-64.c,
* elfcode.h, * elfcore.h, * elflink.c, * elfnn-aarch64.c,
* elfnn-ia64.c, * elfnn-riscv.c, * elfxx-mips.c, * elfxx-sparc.c,
* elfxx-tilegx.c, * ieee.c, * ihex.c, * mach-o.c, * merge.c, * mmo.c,
* peXXigen.c, * xcofflink.c: Replace use of Lx modifier with PRIx64,
and cast input to uint64_t, and similarly for Ld and Lu.
* bfd-in2.h: Regenerate.
2018-02-19 18:34:15 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* bfd-in.h: Include inttypes.h or if not available define
|
|
|
|
|
PRId64, PRIu64 and PRIx64.
|
|
|
|
|
* bfd.c (_bfd_doprnt, _bfd_doprnt_scan): Remove support for L
|
|
|
|
|
modifier to print bfd_vma.
|
|
|
|
|
* coff-arm.c, * coff-mcore.c, * coff-ppc.c, * coff-rs6000.c,
|
|
|
|
|
* coff-sh.c, * coff-tic80.c, * coffcode.h, * coffgen.c, * cofflink.c,
|
|
|
|
|
* compress.c, * dwarf2.c, * elf-m10300.c, * elf.c, * elf32-arc.c,
|
|
|
|
|
* elf32-arm.c, * elf32-bfin.c, * elf32-cris.c, * elf32-hppa.c,
|
|
|
|
|
* elf32-i386.c, * elf32-ip2k.c, * elf32-lm32.c, * elf32-m32r.c,
|
|
|
|
|
* elf32-m68k.c, * elf32-metag.c, * elf32-nds32.c, * elf32-nios2.c,
|
|
|
|
|
* elf32-ppc.c, * elf32-rx.c, * elf32-s390.c, * elf32-score.c,
|
|
|
|
|
* elf32-score7.c, * elf32-sh.c, * elf32-sh64.c, * elf32-spu.c,
|
|
|
|
|
* elf32-tic6x.c, * elf32-tilepro.c, * elf32-v850.c, * elf32-vax.c,
|
|
|
|
|
* elf32-xtensa.c, * elf64-alpha.c, * elf64-hppa.c, * elf64-ia64-vms.c,
|
|
|
|
|
* elf64-mmix.c, * elf64-s390.c, * elf64-sh64.c, * elf64-x86-64.c,
|
|
|
|
|
* elfcode.h, * elfcore.h, * elflink.c, * elfnn-aarch64.c,
|
|
|
|
|
* elfnn-ia64.c, * elfnn-riscv.c, * elfxx-mips.c, * elfxx-sparc.c,
|
|
|
|
|
* elfxx-tilegx.c, * ieee.c, * ihex.c, * mach-o.c, * merge.c, * mmo.c,
|
|
|
|
|
* peXXigen.c, * xcofflink.c: Replace use of Lx modifier with PRIx64,
|
|
|
|
|
and cast input to uint64_t, and similarly for Ld and Lu.
|
|
|
|
|
* bfd-in2.h: Regenerate.
|
|
|
|
|
|
Use %pI, %pR, %pS, %pT in place of %I, %R, %S and %T.
bfd/
* elf32-arm.c, * elf32-hppa.c, * elf32-lm32.c, * elf32-m32r.c,
* elf32-metag.c, * elf32-nds32.c, * elf32-or1k.c, * elf32-ppc.c,
* elf32-s390.c, * elf32-sh.c, * elf32-tic6x.c, * elf32-tilepro.c,
* elf64-ppc.c, * elf64-s390.c, * elflink.c, * elfnn-aarch64.c,
* elfnn-riscv.c, * elfxx-sparc.c, * elfxx-tilegx.c, * elfxx-x86.c,
* reloc.c: Replace use of %R and %T in format strings passed to
einfo and friends by %pR and %pT.
ld/
* ldmisc.c (vfinfo) Handle %pI, %pR, %pS and %pT in place of
%I, %R, %S and %T.
* ldcref.c, * ldctor.c, * ldemul.c, * ldexp.c, * ldgram.y,
* ldlang.c, * ldlex.l, * ldmain.c, * ldmisc.c, * pe-dll.c,
* emultempl/sh64elf.em: Replace use of of %I, %R, %S and %T in
format strings passed to einfo and friends by %pI, %pR, %pS and %pT.
2018-02-19 18:30:41 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf32-arm.c, * elf32-hppa.c, * elf32-lm32.c, * elf32-m32r.c,
|
|
|
|
|
* elf32-metag.c, * elf32-nds32.c, * elf32-or1k.c, * elf32-ppc.c,
|
|
|
|
|
* elf32-s390.c, * elf32-sh.c, * elf32-tic6x.c, * elf32-tilepro.c,
|
|
|
|
|
* elf64-ppc.c, * elf64-s390.c, * elflink.c, * elfnn-aarch64.c,
|
|
|
|
|
* elfnn-riscv.c, * elfxx-sparc.c, * elfxx-tilegx.c, * elfxx-x86.c,
|
|
|
|
|
* reloc.c: Replace use of %R and %T in format strings passed to
|
|
|
|
|
einfo and friends by %pR and %pT.
|
|
|
|
|
|
2018-02-19 15:21:40 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* bfd.c (_bfd_doprnt, _bfd_doprnt_scan): Handle %pA and %pB in place
|
|
|
|
|
of %A and %B.
|
|
|
|
|
* aout-adobe.c: Update all messages using %A and %B.
|
|
|
|
|
* aout-cris.c: Likewise.
|
|
|
|
|
* aoutx.h: Likewise.
|
|
|
|
|
* archive.c: Likewise.
|
|
|
|
|
* binary.c: Likewise.
|
|
|
|
|
* cache.c: Likewise.
|
|
|
|
|
* coff-alpha.c: Likewise.
|
|
|
|
|
* coff-arm.c: Likewise.
|
|
|
|
|
* coff-i860.c: Likewise.
|
|
|
|
|
* coff-mcore.c: Likewise.
|
|
|
|
|
* coff-ppc.c: Likewise.
|
|
|
|
|
* coff-rs6000.c: Likewise.
|
|
|
|
|
* coff-sh.c: Likewise.
|
|
|
|
|
* coff-tic4x.c: Likewise.
|
|
|
|
|
* coff-tic54x.c: Likewise.
|
|
|
|
|
* coff-tic80.c: Likewise.
|
|
|
|
|
* coff64-rs6000.c: Likewise.
|
|
|
|
|
* coffcode.h: Likewise.
|
|
|
|
|
* coffgen.c: Likewise.
|
|
|
|
|
* cofflink.c: Likewise.
|
|
|
|
|
* coffswap.h: Likewise.
|
|
|
|
|
* compress.c: Likewise.
|
|
|
|
|
* cpu-arm.c: Likewise.
|
|
|
|
|
* ecoff.c: Likewise.
|
|
|
|
|
* elf-attrs.c: Likewise.
|
|
|
|
|
* elf-eh-frame.c: Likewise.
|
|
|
|
|
* elf-ifunc.c: Likewise.
|
|
|
|
|
* elf-m10300.c: Likewise.
|
|
|
|
|
* elf-properties.c: Likewise.
|
|
|
|
|
* elf-s390-common.c: Likewise.
|
|
|
|
|
* elf.c: Likewise.
|
|
|
|
|
* elf32-arc.c: Likewise.
|
|
|
|
|
* elf32-arm.c: Likewise.
|
|
|
|
|
* elf32-avr.c: Likewise.
|
|
|
|
|
* elf32-bfin.c: Likewise.
|
|
|
|
|
* elf32-cr16.c: Likewise.
|
|
|
|
|
* elf32-cr16c.c: Likewise.
|
|
|
|
|
* elf32-cris.c: Likewise.
|
|
|
|
|
* elf32-crx.c: Likewise.
|
|
|
|
|
* elf32-d10v.c: Likewise.
|
|
|
|
|
* elf32-d30v.c: Likewise.
|
|
|
|
|
* elf32-epiphany.c: Likewise.
|
|
|
|
|
* elf32-fr30.c: Likewise.
|
|
|
|
|
* elf32-frv.c: Likewise.
|
|
|
|
|
* elf32-gen.c: Likewise.
|
|
|
|
|
* elf32-hppa.c: Likewise.
|
|
|
|
|
* elf32-i370.c: Likewise.
|
|
|
|
|
* elf32-i386.c: Likewise.
|
|
|
|
|
* elf32-i960.c: Likewise.
|
|
|
|
|
* elf32-ip2k.c: Likewise.
|
|
|
|
|
* elf32-iq2000.c: Likewise.
|
|
|
|
|
* elf32-lm32.c: Likewise.
|
|
|
|
|
* elf32-m32c.c: Likewise.
|
|
|
|
|
* elf32-m32r.c: Likewise.
|
|
|
|
|
* elf32-m68hc11.c: Likewise.
|
|
|
|
|
* elf32-m68hc12.c: Likewise.
|
|
|
|
|
* elf32-m68hc1x.c: Likewise.
|
|
|
|
|
* elf32-m68k.c: Likewise.
|
|
|
|
|
* elf32-mcore.c: Likewise.
|
|
|
|
|
* elf32-mep.c: Likewise.
|
|
|
|
|
* elf32-metag.c: Likewise.
|
|
|
|
|
* elf32-microblaze.c: Likewise.
|
|
|
|
|
* elf32-moxie.c: Likewise.
|
|
|
|
|
* elf32-msp430.c: Likewise.
|
|
|
|
|
* elf32-mt.c: Likewise.
|
|
|
|
|
* elf32-nds32.c: Likewise.
|
|
|
|
|
* elf32-nios2.c: Likewise.
|
|
|
|
|
* elf32-or1k.c: Likewise.
|
|
|
|
|
* elf32-pj.c: Likewise.
|
|
|
|
|
* elf32-ppc.c: Likewise.
|
|
|
|
|
* elf32-rl78.c: Likewise.
|
|
|
|
|
* elf32-rx.c: Likewise.
|
|
|
|
|
* elf32-s390.c: Likewise.
|
|
|
|
|
* elf32-score.c: Likewise.
|
|
|
|
|
* elf32-score7.c: Likewise.
|
|
|
|
|
* elf32-sh-symbian.c: Likewise.
|
|
|
|
|
* elf32-sh.c: Likewise.
|
|
|
|
|
* elf32-sh64.c: Likewise.
|
|
|
|
|
* elf32-sparc.c: Likewise.
|
|
|
|
|
* elf32-spu.c: Likewise.
|
|
|
|
|
* elf32-tic6x.c: Likewise.
|
|
|
|
|
* elf32-tilepro.c: Likewise.
|
|
|
|
|
* elf32-v850.c: Likewise.
|
|
|
|
|
* elf32-vax.c: Likewise.
|
|
|
|
|
* elf32-visium.c: Likewise.
|
|
|
|
|
* elf32-wasm32.c: Likewise.
|
|
|
|
|
* elf32-xgate.c: Likewise.
|
|
|
|
|
* elf32-xtensa.c: Likewise.
|
|
|
|
|
* elf64-alpha.c: Likewise.
|
|
|
|
|
* elf64-gen.c: Likewise.
|
|
|
|
|
* elf64-hppa.c: Likewise.
|
|
|
|
|
* elf64-ia64-vms.c: Likewise.
|
|
|
|
|
* elf64-mmix.c: Likewise.
|
|
|
|
|
* elf64-ppc.c: Likewise.
|
|
|
|
|
* elf64-s390.c: Likewise.
|
|
|
|
|
* elf64-sh64.c: Likewise.
|
|
|
|
|
* elf64-sparc.c: Likewise.
|
|
|
|
|
* elf64-x86-64.c: Likewise.
|
|
|
|
|
* elfcode.h: Likewise.
|
|
|
|
|
* elfcore.h: Likewise.
|
|
|
|
|
* elflink.c: Likewise.
|
|
|
|
|
* elfnn-aarch64.c: Likewise.
|
|
|
|
|
* elfnn-ia64.c: Likewise.
|
|
|
|
|
* elfnn-riscv.c: Likewise.
|
|
|
|
|
* elfxx-mips.c: Likewise.
|
|
|
|
|
* elfxx-sparc.c: Likewise.
|
|
|
|
|
* elfxx-tilegx.c: Likewise.
|
|
|
|
|
* elfxx-x86.c: Likewise.
|
|
|
|
|
* hpux-core.c: Likewise.
|
|
|
|
|
* ieee.c: Likewise.
|
|
|
|
|
* ihex.c: Likewise.
|
|
|
|
|
* libbfd.c: Likewise.
|
|
|
|
|
* linker.c: Likewise.
|
|
|
|
|
* mach-o.c: Likewise.
|
|
|
|
|
* merge.c: Likewise.
|
|
|
|
|
* mmo.c: Likewise.
|
|
|
|
|
* oasys.c: Likewise.
|
|
|
|
|
* pdp11.c: Likewise.
|
|
|
|
|
* pe-mips.c: Likewise.
|
|
|
|
|
* peXXigen.c: Likewise.
|
|
|
|
|
* peicode.h: Likewise.
|
|
|
|
|
* reloc.c: Likewise.
|
|
|
|
|
* rs6000-core.c: Likewise.
|
|
|
|
|
* srec.c: Likewise.
|
|
|
|
|
* stabs.c: Likewise.
|
|
|
|
|
* vms-alpha.c: Likewise.
|
|
|
|
|
* xcofflink.c: Likewise.
|
|
|
|
|
|
2018-02-19 09:52:53 +10:30
|
|
|
|
2018-02-19 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22845
|
|
|
|
|
* elf.c (IS_TBSS): Define.
|
|
|
|
|
(_bfd_elf_map_sections_to_segments): Use IS_TBSS.
|
|
|
|
|
(assign_file_positions_for_non_load_sections): Revert last change.
|
|
|
|
|
Properly calculate load segment limits to compare against relro limits.
|
|
|
|
|
|
2018-02-17 09:21:17 +10:30
|
|
|
|
2018-02-17 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22845
|
|
|
|
|
* elf.c (assign_file_positions_for_non_load_sections): Ignore
|
|
|
|
|
degenerate zero size PT_LOAD segments when finding one overlapping
|
|
|
|
|
the PT_GNU_RELRO segment.
|
|
|
|
|
|
Remove bfd stub function casts.
This patch defines a bunch of new functions to use in the BFD target
structs rather than casting bfd_false or bfd_true and similar stub
functions. I've also renamed the stub functions to reflect their
parameters and put "error" in the name if they set bfd_error. The
latter change is important since there were quite a few uses of
bfd_false where setting bfd_error was inappropriate, for example in
elf_backend_allow_non_load_phdr and is_target_special_symbol.
* libbfd.c (_bfd_bool_bfd_false_error): Rename from bfd_false.
(_bfd_bool_bfd_true): Rename from bfd_true.
(_bfd_ptr_bfd_null_error): Rename from bfd_nullvoidptr.
(_bfd_int_bfd_0): Rename from bfd_0.
(_bfd_uint_bfd_0): Rename from bfd_0u.
(_bfd_long_bfd_0): Rename from bfd_0l.
(_bfd_long_bfd_n1_error): Rename from _bfd_n1.
(_bfd_void_bfd): Rename from bfd_void.
(_bfd_bool_bfd_false, _bfd_bool_bfd_asymbol_false),
(_bfd_bool_bfd_link_false_error),
(_bfd_bool_bfd_link_true, _bfd_bool_bfd_bfd_true),
(_bfd_bool_bfd_uint_true, _bfd_bool_bfd_ptr_true),
(_bfd_bool_bfd_asection_bfd_asection_true),
(_bfd_bool_bfd_asymbol_bfd_asymbol_true),
(_bfd_void_bfd_link, _bfd_void_bfd_asection): New functions.
* archive.c (_bfd_noarchive_get_elt_at_index),
(_bfd_noarchive_openr_next_archived_file),
(_bfd_noarchive_construct_extended_name_table),
(_bfd_noarchive_write_ar_hdr, _bfd_noarchive_truncate_arname),
(_bfd_noarchive_write_armap): New functions.
* archures.c (_bfd_nowrite_set_arch_mach): New function.
* coff-alpha.c (alpha_ecoff_swap_coff_aux_in),
(alpha_ecoff_swap_coff_sym_in, alpha_ecoff_swap_coff_lineno_in),
(alpha_ecoff_swap_coff_aux_out, alpha_ecoff_swap_coff_sym_out),
(alpha_ecoff_swap_coff_lineno_out),
(alpha_ecoff_swap_coff_reloc_out): New functions.
* coff-mips.c (mips_ecoff_swap_coff_aux_in),
(mips_ecoff_swap_coff_sym_in, mips_ecoff_swap_coff_lineno_in),
(mips_ecoff_swap_coff_aux_out, mips_ecoff_swap_coff_sym_out),
(mips_ecoff_swap_coff_lineno_out),
(mips_ecoff_swap_coff_reloc_out): New functions.
* coffcode.h (coff_set_alignment_hook): Replace define with
new function.
(symname_in_debug_hook): Likewise.
* ecoff.c (_bfd_ecoff_set_alignment_hook): New function.
* elfxx-target.h (elf_backend_allow_non_load_phdr): Default to 0.
* elf.c (assign_file_positions_except_relocs): Test
elf_backend_allow_non_load_phdr for NULL.
* elflink.c (_bfd_elf_omit_section_dynsym_default): Rename from
_bfd_elf_link_omit_section_dynsym. Update uses.
(_bfd_elf_omit_section_dynsym_all): New function.
* elf-bfd.h (_bfd_elf_link_omit_section_dynsym): Delete.
(_bfd_elf_omit_section_dynsym_default): Declare.
(_bfd_elf_omit_section_dynsym_all): Declare.
* linker.c (_bfd_nolink_sizeof_headers, _bfd_nolink_bfd_relax_section),
(_bfd_nolink_bfd_get_relocated_section_contents),
(_bfd_nolink_bfd_lookup_section_flags),
(_bfd_nolink_bfd_is_group_section, _bfd_nolink_bfd_discard_group),
(_bfd_nolink_bfd_link_hash_table_create),
(_bfd_nolink_bfd_link_just_syms),
(_bfd_nolink_bfd_copy_link_hash_symbol_type),
(_bfd_nolink_bfd_link_split_section),
(_bfd_nolink_section_already_linked),
(_bfd_nolink_bfd_define_common_symbol),
(_bfd_nolink_bfd_define_start_stop): New functions.
* reloc.c (_bfd_norelocs_bfd_reloc_type_lookup),
(_bfd_norelocs_bfd_reloc_name_lookup),
(_bfd_nodynamic_canonicalize_dynamic_reloc): New functions.
* section.c (_bfd_nowrite_set_section_contents): New function.
* syms.c (_bfd_nosymbols_canonicalize_symtab),
(_bfd_nosymbols_print_symbol, _bfd_nosymbols_get_symbol_info),
(_bfd_nosymbols_get_symbol_version_string),
(_bfd_nosymbols_bfd_is_local_label_name),
(_bfd_nosymbols_get_lineno, _bfd_nosymbols_find_nearest_line),
(_bfd_nosymbols_find_line, _bfd_nosymbols_find_inliner_info),
(_bfd_nosymbols_bfd_make_debug_symbol),
( _bfd_nosymbols_read_minisymbols),
( _bfd_nosymbols_minisymbol_to_symbol),
(_bfd_nodynamic_get_synthetic_symtab): New functions.
* libbfd-in.h: Declare new functions. Update existing defines,
removing casts.
* aix386-core.c: Update to use new hooks. Formatting.
* aout-adobe.c: Likewise.
* aout-arm.c: Likewise.
* aout-target.h: Likewise.
* aout-tic30.c: Likewise.
* aoutf1.h: Likewise.
* binary.c: Likewise.
* bout.c: Likewise.
* cisco-core.c: Likewise.
* coff-alpha.c: Likewise.
* coff-i386.c: Likewise.
* coff-i860.c: Likewise.
* coff-i960.c: Likewise.
* coff-ia64.c: Likewise.
* coff-mips.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-sh.c: Likewise.
* coff-tic30.c: Likewise.
* coff-tic54x.c: Likewise.
* coff-x86_64.c: Likewise.
* coff64-rs6000.c: Likewise.
* coffcode.h: Likewise.
* elf-m10300.c: Likewise.
* elf32-cr16.c: Likewise.
* elf32-lm32.c: Likewise.
* elf32-m32r.c: Likewise.
* elf32-metag.c: Likewise.
* elf32-score.c: Likewise.
* elf32-score7.c: Likewise.
* elf32-tilepro.c: Likewise.
* elf32-xstormy16.c: Likewise.
* elf32-xtensa.c: Likewise.
* elf64-alpha.c: Likewise.
* elf64-hppa.c: Likewise.
* elf64-ia64-vms.c: Likewise.
* elf64-mmix.c: Likewise.
* elf64-sh64.c: Likewise.
* elfnn-ia64.c: Likewise.
* elfxx-sparc.c: Likewise.
* elfxx-target.h: Likewise.
* elfxx-tilegx.c: Likewise.
* elfxx-x86.h: Likewise.
* hp300hpux.c: Likewise.
* hppabsd-core.c: Likewise.
* hpux-core.c: Likewise.
* i386msdos.c: Likewise.
* i386os9k.c: Likewise.
* ieee.c: Likewise.
* ihex.c: Likewise.
* irix-core.c: Likewise.
* libaout.h: Likewise.
* libecoff.h: Likewise.
* mach-o-target.c: Likewise.
* mach-o.c: Likewise.
* mipsbsd.c: Likewise.
* mmo.c: Likewise.
* netbsd-core.c: Likewise.
* nlm-target.h: Likewise.
* oasys.c: Likewise.
* osf-core.c: Likewise.
* pdp11.c: Likewise.
* pe-mips.c: Likewise.
* pe-x86_64.c: Likewise.
* pef.c: Likewise.
* plugin.c: Likewise.
* ppcboot.c: Likewise.
* ptrace-core.c: Likewise.
* sco5-core.c: Likewise.
* som.c: Likewise.
* sparclynx.c: Likewise.
* srec.c: Likewise.
* tekhex.c: Likewise.
* trad-core.c: Likewise.
* verilog.c: Likewise.
* versados.c: Likewise.
* vms-alpha.c: Likewise.
* vms-lib.c: Likewise.
* wasm-module.c: Likewise.
* xsym.c: Likewise.
* libbfd.h: Regenerate.
2018-02-15 10:58:06 +10:30
|
|
|
|
2018-02-16 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* libbfd.c (_bfd_bool_bfd_false_error): Rename from bfd_false.
|
|
|
|
|
(_bfd_bool_bfd_true): Rename from bfd_true.
|
|
|
|
|
(_bfd_ptr_bfd_null_error): Rename from bfd_nullvoidptr.
|
|
|
|
|
(_bfd_int_bfd_0): Rename from bfd_0.
|
|
|
|
|
(_bfd_uint_bfd_0): Rename from bfd_0u.
|
|
|
|
|
(_bfd_long_bfd_0): Rename from bfd_0l.
|
|
|
|
|
(_bfd_long_bfd_n1_error): Rename from _bfd_n1.
|
|
|
|
|
(_bfd_void_bfd): Rename from bfd_void.
|
|
|
|
|
(_bfd_bool_bfd_false, _bfd_bool_bfd_asymbol_false),
|
|
|
|
|
(_bfd_bool_bfd_link_false_error),
|
|
|
|
|
(_bfd_bool_bfd_link_true, _bfd_bool_bfd_bfd_true),
|
|
|
|
|
(_bfd_bool_bfd_uint_true, _bfd_bool_bfd_ptr_true),
|
|
|
|
|
(_bfd_bool_bfd_asection_bfd_asection_true),
|
|
|
|
|
(_bfd_bool_bfd_asymbol_bfd_asymbol_true),
|
|
|
|
|
(_bfd_void_bfd_link, _bfd_void_bfd_asection): New functions.
|
|
|
|
|
* archive.c (_bfd_noarchive_get_elt_at_index),
|
|
|
|
|
(_bfd_noarchive_openr_next_archived_file),
|
|
|
|
|
(_bfd_noarchive_construct_extended_name_table),
|
|
|
|
|
(_bfd_noarchive_write_ar_hdr, _bfd_noarchive_truncate_arname),
|
|
|
|
|
(_bfd_noarchive_write_armap): New functions.
|
|
|
|
|
* archures.c (_bfd_nowrite_set_arch_mach): New function.
|
|
|
|
|
* coff-alpha.c (alpha_ecoff_swap_coff_aux_in),
|
|
|
|
|
(alpha_ecoff_swap_coff_sym_in, alpha_ecoff_swap_coff_lineno_in),
|
|
|
|
|
(alpha_ecoff_swap_coff_aux_out, alpha_ecoff_swap_coff_sym_out),
|
|
|
|
|
(alpha_ecoff_swap_coff_lineno_out),
|
|
|
|
|
(alpha_ecoff_swap_coff_reloc_out): New functions.
|
|
|
|
|
* coff-mips.c (mips_ecoff_swap_coff_aux_in),
|
|
|
|
|
(mips_ecoff_swap_coff_sym_in, mips_ecoff_swap_coff_lineno_in),
|
|
|
|
|
(mips_ecoff_swap_coff_aux_out, mips_ecoff_swap_coff_sym_out),
|
|
|
|
|
(mips_ecoff_swap_coff_lineno_out),
|
|
|
|
|
(mips_ecoff_swap_coff_reloc_out): New functions.
|
|
|
|
|
* coffcode.h (coff_set_alignment_hook): Replace define with
|
|
|
|
|
new function.
|
|
|
|
|
(symname_in_debug_hook): Likewise.
|
|
|
|
|
* ecoff.c (_bfd_ecoff_set_alignment_hook): New function.
|
|
|
|
|
* elfxx-target.h (elf_backend_allow_non_load_phdr): Default to 0.
|
|
|
|
|
* elf.c (assign_file_positions_except_relocs): Test
|
|
|
|
|
elf_backend_allow_non_load_phdr for NULL.
|
|
|
|
|
* elflink.c (_bfd_elf_omit_section_dynsym_default): Rename from
|
|
|
|
|
_bfd_elf_link_omit_section_dynsym. Update uses.
|
|
|
|
|
(_bfd_elf_omit_section_dynsym_all): New function.
|
|
|
|
|
* elf-bfd.h (_bfd_elf_link_omit_section_dynsym): Delete.
|
|
|
|
|
(_bfd_elf_omit_section_dynsym_default): Declare.
|
|
|
|
|
(_bfd_elf_omit_section_dynsym_all): Declare.
|
|
|
|
|
* linker.c (_bfd_nolink_sizeof_headers, _bfd_nolink_bfd_relax_section),
|
|
|
|
|
(_bfd_nolink_bfd_get_relocated_section_contents),
|
|
|
|
|
(_bfd_nolink_bfd_lookup_section_flags),
|
|
|
|
|
(_bfd_nolink_bfd_is_group_section, _bfd_nolink_bfd_discard_group),
|
|
|
|
|
(_bfd_nolink_bfd_link_hash_table_create),
|
|
|
|
|
(_bfd_nolink_bfd_link_just_syms),
|
|
|
|
|
(_bfd_nolink_bfd_copy_link_hash_symbol_type),
|
|
|
|
|
(_bfd_nolink_bfd_link_split_section),
|
|
|
|
|
(_bfd_nolink_section_already_linked),
|
|
|
|
|
(_bfd_nolink_bfd_define_common_symbol),
|
|
|
|
|
(_bfd_nolink_bfd_define_start_stop): New functions.
|
|
|
|
|
* reloc.c (_bfd_norelocs_bfd_reloc_type_lookup),
|
|
|
|
|
(_bfd_norelocs_bfd_reloc_name_lookup),
|
|
|
|
|
(_bfd_nodynamic_canonicalize_dynamic_reloc): New functions.
|
|
|
|
|
* section.c (_bfd_nowrite_set_section_contents): New function.
|
|
|
|
|
* syms.c (_bfd_nosymbols_canonicalize_symtab),
|
|
|
|
|
(_bfd_nosymbols_print_symbol, _bfd_nosymbols_get_symbol_info),
|
|
|
|
|
(_bfd_nosymbols_get_symbol_version_string),
|
|
|
|
|
(_bfd_nosymbols_bfd_is_local_label_name),
|
|
|
|
|
(_bfd_nosymbols_get_lineno, _bfd_nosymbols_find_nearest_line),
|
|
|
|
|
(_bfd_nosymbols_find_line, _bfd_nosymbols_find_inliner_info),
|
|
|
|
|
(_bfd_nosymbols_bfd_make_debug_symbol),
|
|
|
|
|
( _bfd_nosymbols_read_minisymbols),
|
|
|
|
|
( _bfd_nosymbols_minisymbol_to_symbol),
|
|
|
|
|
(_bfd_nodynamic_get_synthetic_symtab): New functions.
|
|
|
|
|
* libbfd-in.h: Declare new functions. Update existing defines,
|
|
|
|
|
removing casts.
|
|
|
|
|
* aix386-core.c: Update to use new hooks. Formatting.
|
|
|
|
|
* aout-adobe.c: Likewise.
|
|
|
|
|
* aout-arm.c: Likewise.
|
|
|
|
|
* aout-target.h: Likewise.
|
|
|
|
|
* aout-tic30.c: Likewise.
|
|
|
|
|
* aoutf1.h: Likewise.
|
|
|
|
|
* binary.c: Likewise.
|
|
|
|
|
* bout.c: Likewise.
|
|
|
|
|
* cisco-core.c: Likewise.
|
|
|
|
|
* coff-alpha.c: Likewise.
|
|
|
|
|
* coff-i386.c: Likewise.
|
|
|
|
|
* coff-i860.c: Likewise.
|
|
|
|
|
* coff-i960.c: Likewise.
|
|
|
|
|
* coff-ia64.c: Likewise.
|
|
|
|
|
* coff-mips.c: Likewise.
|
|
|
|
|
* coff-ppc.c: Likewise.
|
|
|
|
|
* coff-rs6000.c: Likewise.
|
|
|
|
|
* coff-sh.c: Likewise.
|
|
|
|
|
* coff-tic30.c: Likewise.
|
|
|
|
|
* coff-tic54x.c: Likewise.
|
|
|
|
|
* coff-x86_64.c: Likewise.
|
|
|
|
|
* coff64-rs6000.c: Likewise.
|
|
|
|
|
* coffcode.h: Likewise.
|
|
|
|
|
* elf-m10300.c: Likewise.
|
|
|
|
|
* elf32-cr16.c: Likewise.
|
|
|
|
|
* elf32-lm32.c: Likewise.
|
|
|
|
|
* elf32-m32r.c: Likewise.
|
|
|
|
|
* elf32-metag.c: Likewise.
|
|
|
|
|
* elf32-score.c: Likewise.
|
|
|
|
|
* elf32-score7.c: Likewise.
|
|
|
|
|
* elf32-tilepro.c: Likewise.
|
|
|
|
|
* elf32-xstormy16.c: Likewise.
|
|
|
|
|
* elf32-xtensa.c: Likewise.
|
|
|
|
|
* elf64-alpha.c: Likewise.
|
|
|
|
|
* elf64-hppa.c: Likewise.
|
|
|
|
|
* elf64-ia64-vms.c: Likewise.
|
|
|
|
|
* elf64-mmix.c: Likewise.
|
|
|
|
|
* elf64-sh64.c: Likewise.
|
|
|
|
|
* elfnn-ia64.c: Likewise.
|
|
|
|
|
* elfxx-sparc.c: Likewise.
|
|
|
|
|
* elfxx-target.h: Likewise.
|
|
|
|
|
* elfxx-tilegx.c: Likewise.
|
|
|
|
|
* elfxx-x86.h: Likewise.
|
|
|
|
|
* hp300hpux.c: Likewise.
|
|
|
|
|
* hppabsd-core.c: Likewise.
|
|
|
|
|
* hpux-core.c: Likewise.
|
|
|
|
|
* i386msdos.c: Likewise.
|
|
|
|
|
* i386os9k.c: Likewise.
|
|
|
|
|
* ieee.c: Likewise.
|
|
|
|
|
* ihex.c: Likewise.
|
|
|
|
|
* irix-core.c: Likewise.
|
|
|
|
|
* libaout.h: Likewise.
|
|
|
|
|
* libecoff.h: Likewise.
|
|
|
|
|
* mach-o-target.c: Likewise.
|
|
|
|
|
* mach-o.c: Likewise.
|
|
|
|
|
* mipsbsd.c: Likewise.
|
|
|
|
|
* mmo.c: Likewise.
|
|
|
|
|
* netbsd-core.c: Likewise.
|
|
|
|
|
* nlm-target.h: Likewise.
|
|
|
|
|
* oasys.c: Likewise.
|
|
|
|
|
* osf-core.c: Likewise.
|
|
|
|
|
* pdp11.c: Likewise.
|
|
|
|
|
* pe-mips.c: Likewise.
|
|
|
|
|
* pe-x86_64.c: Likewise.
|
|
|
|
|
* pef.c: Likewise.
|
|
|
|
|
* plugin.c: Likewise.
|
|
|
|
|
* ppcboot.c: Likewise.
|
|
|
|
|
* ptrace-core.c: Likewise.
|
|
|
|
|
* sco5-core.c: Likewise.
|
|
|
|
|
* som.c: Likewise.
|
|
|
|
|
* sparclynx.c: Likewise.
|
|
|
|
|
* srec.c: Likewise.
|
|
|
|
|
* tekhex.c: Likewise.
|
|
|
|
|
* trad-core.c: Likewise.
|
|
|
|
|
* verilog.c: Likewise.
|
|
|
|
|
* versados.c: Likewise.
|
|
|
|
|
* vms-alpha.c: Likewise.
|
|
|
|
|
* vms-lib.c: Likewise.
|
|
|
|
|
* wasm-module.c: Likewise.
|
|
|
|
|
* xsym.c: Likewise.
|
|
|
|
|
* libbfd.h: Regenerate.
|
|
|
|
|
|
2018-02-15 10:53:46 -08:00
|
|
|
|
2018-02-15 Jim Wilson <jimw@sifive.com>
|
|
|
|
|
|
2018-02-15 13:48:38 -08:00
|
|
|
|
* elfnn-riscv.c (_bfd_riscv_relax_section): Ifdef out check to ignore
|
|
|
|
|
symbols whose section address is zero.
|
|
|
|
|
|
2018-02-15 10:53:46 -08:00
|
|
|
|
* elfnn-riscv.c (riscv_elf_relocate_section): Use bfd_reloc_dangerous
|
|
|
|
|
when pcrel_lo reloc has an addend. Use reloc_dangerous callback for
|
|
|
|
|
bfd_reloc_dangerous. Use einfo instead of warning callback for errors.
|
|
|
|
|
Add %X%P to error messages.
|
|
|
|
|
|
2018-02-15 15:55:11 +01:00
|
|
|
|
2018-02-15 Eric Botcazou <ebotcazou@adacore.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22832
|
|
|
|
|
* elfxx-sparc.c (_bfd_sparc_elf_check_relocs) <R_SPARC_TLS_GD_CALL>:
|
|
|
|
|
Pass FALSE instead of TRUE as 'create' argument to bfd_link_hash_lookup
|
|
|
|
|
and assert that the result of the call is not NULL.
|
|
|
|
|
|
2018-02-14 14:56:21 +00:00
|
|
|
|
2018-02-14 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR 22823
|
|
|
|
|
Revert previous delta. Add extra casts to avoid compile time
|
|
|
|
|
warnings instead.
|
|
|
|
|
* libbfd-in.h (_bfd_generic_bfd_copy_private_bfd_data): Add extra
|
|
|
|
|
cast to avoid warning from gcc v8 compiler.
|
|
|
|
|
(_bfd_generic_bfd_merge_private_bfd_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_set_private_flags): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_section_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_symbol_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_header_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_print_private_bfd_data): Likewise.
|
|
|
|
|
(_bfd_noarchive_construct_extended_name_table): Likewise.
|
|
|
|
|
(_bfd_noarchive_truncate_arname): Likewise.
|
|
|
|
|
(_bfd_noarchive_write_ar_hdr): Likewise.
|
|
|
|
|
(_bfd_noarchive_get_elt_at_index): Likewise.
|
|
|
|
|
(_bfd_nosymbols_canonicalize_symtab): Likewise.
|
|
|
|
|
(_bfd_nosymbols_print_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_symbol_info): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_symbol_version_string): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_is_local_label_name): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_lineno): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_nearest_line): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_line): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_inliner_info): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_make_debug_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_read_minisymbols): Likewise.
|
|
|
|
|
(_bfd_nosymbols_minisymbol_to_symbol): Likewise.
|
|
|
|
|
(_bfd_norelocs_bfd_reloc_type_lookup): Likewise.
|
|
|
|
|
(_bfd_norelocs_bfd_reloc_name_lookup): Likewise.
|
|
|
|
|
(_bfd_nowrite_set_arch_mach): Likewise.
|
|
|
|
|
(_bfd_nowrite_set_section_contents): Likewise.
|
|
|
|
|
(_bfd_nolink_sizeof_headers): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_get_relocated_section_contents): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_relax_section): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_gc_sections): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_lookup_section_flags): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_merge_sections): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_is_group_section): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_discard_group): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_hash_table_create): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_add_symbols): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_just_syms): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_copy_link_hash_symbol_type): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_final_link): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_split_section): Likewise.
|
|
|
|
|
(_bfd_nolink_section_already_linked): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_define_common_symbol): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_define_start_stop): Likewise.
|
|
|
|
|
(_bfd_nodynamic_canonicalize_dynamic_symtab): Likewise.
|
|
|
|
|
(_bfd_nodynamic_get_synthetic_symtab): Likewise.
|
|
|
|
|
(_bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_): Likewise.
|
|
|
|
|
(_bfd_nodynamic_canonicalize_dynamic_reloc): Likewise.
|
|
|
|
|
* libbfd.c (bfd_false_any): Delete.
|
|
|
|
|
(bfd_true_any, bfd_nullvoidptr_any, bfd_0_any): Delete.
|
|
|
|
|
(bfd_0u_any, bfd_0l_any, _bfd_n1_any, bfd_void_any): Delete.
|
|
|
|
|
* libbfd.h (extern): Regenerate
|
|
|
|
|
* aout-target.h (MY_bfd_is_target_special_symbol): Add extra
|
|
|
|
|
cast to avoid warning from gcc v8 compiler.
|
|
|
|
|
* aout-tic30.c (tic30_aout_set_arch_mach): Likewise.
|
|
|
|
|
* binary.c (binary_get_symbol_info): Likewise.
|
|
|
|
|
* coff-alpha.c (alpha_ecoff_backend_data): Likewise.
|
|
|
|
|
* coff-mips.c (mips_ecoff_backend_data): Likewise.
|
|
|
|
|
* coffcode.h (coff_set_alignment_hook): Likewise.
|
|
|
|
|
(symname_in_debug_hook): Likewise.
|
|
|
|
|
(bfd_coff_backend_data bigobj_swap_table): Likewise.
|
|
|
|
|
* elf-m10300.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-cr16.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-lm32.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-m32r.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-metag.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-score.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-score7.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-xstormy16.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-xtensa.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-alpha.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-hppa.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-ia64-vms.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-mmix.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-sh64.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elfnn-ia64.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elfxx-target.h (bfd_elfNN_bfd_debug_info_accumulate): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_make_debug_symbol): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_merge_private_bfd_data): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_set_private_flags): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(elf_backend_init_index_section): Likewise.
|
|
|
|
|
(elf_backend_allow_non_load_phdr): Likewise.
|
|
|
|
|
* elfxx-x86.h (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* i386msdos.c (msdos_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ieee.c (ieee_construct_extended_name_table): Likewise.
|
|
|
|
|
(ieee_write_armap): Likewise.
|
|
|
|
|
(ieee_write_ar_hdr): Likewise.
|
|
|
|
|
(ieee_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ihex.c (ihex_canonicalize_symtab): Likewise.
|
|
|
|
|
(ihex_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* libaout.h (aout_32_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* libecoff.h (_bfd_ecoff_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(_bfd_ecoff_set_alignment_hook): Likewise.
|
|
|
|
|
* mach-o-target.c (bfd_mach_o_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* mmo.c (mmo_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* nlm-target.h (nlm_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* oasys.c (oasys_construct_extended_name_table): Likewise.
|
|
|
|
|
(oasys_write_armap): Likewise.
|
|
|
|
|
(oasys_write_ar_hdr): Likewise.
|
|
|
|
|
(oasys_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* pef.c (bfd_pef_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* plugin.c (bfd_plugin_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ppcboot.c (ppcboot_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* som.c (som_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* srec.c (srec_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* tekhex.c (tekhex_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* verilog.c (verilog_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* versados.c (versados_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(versados_bfd_reloc_name_lookup): Likewise.
|
|
|
|
|
* vms-alpha.c (vms_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(vms_bfd_define_start_stop): Likewise.
|
|
|
|
|
(alpha_vms_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* wasm-module.c (wasm_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* xsym.c (bfd_sym_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
|
2018-02-14 03:50:40 -08:00
|
|
|
|
2018-02-14 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22842
|
|
|
|
|
* elf32-i386.c (elf_i386_check_relocs): Pass FALSE for non
|
|
|
|
|
PC-relative PLT to NEED_DYNAMIC_RELOCATION_P.
|
|
|
|
|
* elf64-x86-64.c (elf_x86_64_check_relocs): Create PLT for
|
|
|
|
|
R_X86_64_PC32 reloc against dynamic function in data section.
|
|
|
|
|
Pass TRUE for PC-relative PLT to NEED_DYNAMIC_RELOCATION_P.
|
|
|
|
|
(elf_x86_64_relocate_section): Use PLT for R_X86_64_PC32 reloc
|
|
|
|
|
against dynamic function in data section.
|
|
|
|
|
* elfxx-x86.c (elf_x86_allocate_dynrelocs): Use PLT in PIE as
|
|
|
|
|
function address only if pcrel_plt is true.
|
|
|
|
|
(_bfd_x86_elf_link_hash_table_create): Set pcrel_plt.
|
|
|
|
|
* elfxx-x86.h (NEED_DYNAMIC_RELOCATION_P): Add PCREL_PLT for
|
|
|
|
|
PC-relative PLT. If PLT is PC-relative, don't generate dynamic
|
|
|
|
|
PC-relative relocation against a function definition in data
|
|
|
|
|
secton in PIE. Remove the obsolete comments.
|
|
|
|
|
(elf_x86_link_hash_table): Add pcrel_plt.
|
|
|
|
|
|
2018-02-13 14:31:53 -08:00
|
|
|
|
2018-02-13 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* elfxx-x86.c (elf_x86_allocate_dynrelocs): Check bfd_link_dll,
|
|
|
|
|
instead of bfd_link_pic, for building shared library.
|
|
|
|
|
|
x86-64: Generate branch with PLT32 relocation
Since there is no need to prepare for PLT branch on x86-64, generate
R_X86_64_PLT32, instead of R_X86_64_PC32, if possible, which can be
used as a marker for 32-bit PC-relative branches.
To compile Linux kernel, this patch:
From: "H.J. Lu" <hjl.tools@gmail.com>
Subject: [PATCH] x86: Treat R_X86_64_PLT32 as R_X86_64_PC32
On i386, there are 2 types of PLTs, PIC and non-PIC. PIE and shared
objects must use PIC PLT. To use PIC PLT, you need to load
_GLOBAL_OFFSET_TABLE_ into EBX first. There is no need for that on
x86-64 since x86-64 uses PC-relative PLT.
On x86-64, for 32-bit PC-relative branches, we can generate PLT32
relocation, instead of PC32 relocation, which can also be used as
a marker for 32-bit PC-relative branches. Linker can always reduce
PLT32 relocation to PC32 if function is defined locally. Local
functions should use PC32 relocation. As far as Linux kernel is
concerned, R_X86_64_PLT32 can be treated the same as R_X86_64_PC32
since Linux kernel doesn't use PLT.
is needed. It is available on hjl/plt32/master branch at
https://github.com/hjl-tools/linux
bfd/
PR gas/22791
* elf64-x86-64.c (is_32bit_relative_branch): Removed.
(elf_x86_64_relocate_section): Check PIC relocations in PIE.
Remove is_32bit_relative_branch usage. Disallow PC32 reloc
against protected function in shared object.
gas/
PR gas/22791
* config/tc-i386.c (need_plt32_p): New function.
(output_jump): Generate BFD_RELOC_X86_64_PLT32 if possible.
(md_estimate_size_before_relax): Likewise.
* testsuite/gas/i386/reloc64.d: Updated.
* testsuite/gas/i386/x86-64-jump.d: Likewise.
* testsuite/gas/i386/x86-64-mpx-branch-1.d: Likewise.
* testsuite/gas/i386/x86-64-mpx-branch-2.d: Likewise.
* testsuite/gas/i386/x86-64-relax-2.d: Likewise.
* testsuite/gas/i386/x86-64-relax-3.d: Likewise.
* testsuite/gas/i386/ilp32/reloc64.d: Likewise.
* testsuite/gas/i386/ilp32/x86-64-branch.d: Likewise.
ld/
PR gas/22791
* testsuite/ld-x86-64/mpx1c.rd: Updated.
* testsuite/ld-x86-64/pr22791-1.err: New file.
* testsuite/ld-x86-64/pr22791-1a.c: Likewise.
* testsuite/ld-x86-64/pr22791-1b.s: Likewise.
* testsuite/ld-x86-64/pr22791-2.rd: Likewise.
* testsuite/ld-x86-64/pr22791-2a.s: Likewise.
* testsuite/ld-x86-64/pr22791-2b.c: Likewise.
* testsuite/ld-x86-64/pr22791-2c.s: Likewise.
* testsuite/ld-x86-64/x86-64.exp: Run PR ld/22791 tests.
2018-02-13 07:34:22 -08:00
|
|
|
|
2018-02-13 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR gas/22791
|
|
|
|
|
* elf64-x86-64.c (is_32bit_relative_branch): Removed.
|
|
|
|
|
(elf_x86_64_relocate_section): Check PIC relocations in PIE.
|
|
|
|
|
Remove is_32bit_relative_branch usage. Disallow PC32 reloc
|
|
|
|
|
against protected function in shared object.
|
|
|
|
|
|
2018-02-13 15:13:58 +00:00
|
|
|
|
2018-02-13 Sergei Trofimovich <slyfox@inbox.ru>
|
|
|
|
|
|
|
|
|
|
PR 22828
|
|
|
|
|
* po/ru.po: Fix typo in Russian translation.
|
|
|
|
|
|
2018-02-13 12:56:29 +00:00
|
|
|
|
2018-02-13 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* wasm-module.c (wasm_scan_name_function_section): Rename
|
|
|
|
|
`index' local variable to `idx'.
|
|
|
|
|
|
2018-02-13 13:14:47 +00:00
|
|
|
|
2018-02-13 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR 22823
|
|
|
|
|
Fix compile time warnings generated by gcc version 8.
|
|
|
|
|
* libbfd-in.h: Remove extraneous text from prototypes.
|
|
|
|
|
Add prototypes for bfd_false_any, bfd_true_any,
|
|
|
|
|
bfd_nullvoidptr_any, bfd_0_any, bfd_0u_any, bfd_0l_any,
|
|
|
|
|
bfd_n1_any, bfd_void_any.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_bfd_data): Use vararg based dummy
|
|
|
|
|
function.
|
|
|
|
|
(_bfd_generic_bfd_merge_private_bfd_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_set_private_flags): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_section_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_symbol_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_copy_private_header_data): Likewise.
|
|
|
|
|
(_bfd_generic_bfd_print_private_bfd_data): Likewise.
|
|
|
|
|
(_bfd_noarchive_construct_extended_name_table): Likewise.
|
|
|
|
|
(_bfd_noarchive_truncate_arname): Likewise.
|
|
|
|
|
(_bfd_noarchive_write_ar_hdr): Likewise.
|
|
|
|
|
(_bfd_noarchive_get_elt_at_index): Likewise.
|
|
|
|
|
(_bfd_nosymbols_canonicalize_symtab): Likewise.
|
|
|
|
|
(_bfd_nosymbols_print_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_symbol_info): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_symbol_version_string): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_is_local_label_name): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_get_lineno): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_nearest_line): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_line): Likewise.
|
|
|
|
|
(_bfd_nosymbols_find_inliner_info): Likewise.
|
|
|
|
|
(_bfd_nosymbols_bfd_make_debug_symbol): Likewise.
|
|
|
|
|
(_bfd_nosymbols_read_minisymbols): Likewise.
|
|
|
|
|
(_bfd_nosymbols_minisymbol_to_symbol): Likewise.
|
|
|
|
|
(_bfd_norelocs_bfd_reloc_type_lookup): Likewise.
|
|
|
|
|
(_bfd_norelocs_bfd_reloc_name_lookup): Likewise.
|
|
|
|
|
(_bfd_nowrite_set_arch_mach): Likewise.
|
|
|
|
|
(_bfd_nowrite_set_section_contents): Likewise.
|
|
|
|
|
(_bfd_nolink_sizeof_headers): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_get_relocated_section_contents): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_relax_section): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_gc_sections): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_lookup_section_flags): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_merge_sections): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_is_group_section): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_discard_group): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_hash_table_create): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_add_symbols): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_just_syms): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_copy_link_hash_symbol_type): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_final_link): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_link_split_section): Likewise.
|
|
|
|
|
(_bfd_nolink_section_already_linked): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_define_common_symbol): Likewise.
|
|
|
|
|
(_bfd_nolink_bfd_define_start_stop): Likewise.
|
|
|
|
|
(_bfd_nodynamic_canonicalize_dynamic_symtab): Likewise.
|
|
|
|
|
(_bfd_nodynamic_get_synthetic_symtab): Likewise.
|
|
|
|
|
(_bfd_nodynamic_get_dynamic_reloc_upper_bound _bfd_): Likewise.
|
|
|
|
|
(_bfd_nodynamic_canonicalize_dynamic_reloc): Likewise.
|
|
|
|
|
* libbfd.c (bfd_false_any): New function. Like bfd_false but
|
|
|
|
|
accepts one or more arguments.
|
|
|
|
|
(bfd_true_any): Likewise.
|
|
|
|
|
(bfd_nullvoidptr_any): Likewise.
|
|
|
|
|
(bfd_0_any): Likewise.
|
|
|
|
|
(bfd_0u_any): Likewise.
|
|
|
|
|
(bfd_0l_any): Likewise.
|
|
|
|
|
(_bfd_n1_any): Likewise.
|
|
|
|
|
(bfd_void_any): Likewise.
|
|
|
|
|
* libbfd.h (extern): Regenerate
|
|
|
|
|
* aout-target.h (MY_bfd_is_target_special_symbol): Use vararg
|
|
|
|
|
based dummy function.
|
|
|
|
|
* aout-tic30.c (tic30_aout_set_arch_mach): Likewise.
|
|
|
|
|
* binary.c (binary_get_symbol_info): Likewise.
|
|
|
|
|
* coff-alpha.c (alpha_ecoff_backend_data): Likewise.
|
|
|
|
|
* coff-mips.c (mips_ecoff_backend_data): Likewise.
|
|
|
|
|
* coffcode.h (coff_set_alignment_hook): Likewise.
|
|
|
|
|
(symname_in_debug_hook): Likewise.
|
|
|
|
|
(bfd_coff_backend_data bigobj_swap_table): Likewise.
|
|
|
|
|
* elf-m10300.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-cr16.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-lm32.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-m32r.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-metag.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-score.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-score7.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-xstormy16.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf32-xtensa.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-alpha.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-hppa.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-ia64-vms.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-mmix.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elf64-sh64.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elfnn-ia64.c (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* elfxx-target.h (bfd_elfNN_bfd_debug_info_accumulate): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_make_debug_symbol): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_merge_private_bfd_data): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_set_private_flags): Likewise.
|
|
|
|
|
(bfd_elfNN_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(elf_backend_init_index_section): Likewise.
|
|
|
|
|
(elf_backend_allow_non_load_phdr): Likewise.
|
|
|
|
|
* elfxx-x86.h (elf_backend_omit_section_dynsym): Likewise.
|
|
|
|
|
* i386msdos.c (msdos_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ieee.c (ieee_construct_extended_name_table): Likewise.
|
|
|
|
|
(ieee_write_armap): Likewise.
|
|
|
|
|
(ieee_write_ar_hdr): Likewise.
|
|
|
|
|
(ieee_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ihex.c (ihex_canonicalize_symtab): Likewise.
|
|
|
|
|
(ihex_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* libaout.h (aout_32_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* libecoff.h (_bfd_ecoff_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(_bfd_ecoff_set_alignment_hook): Likewise.
|
|
|
|
|
* mach-o-target.c (bfd_mach_o_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* mmo.c (mmo_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* nlm-target.h (nlm_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* oasys.c (oasys_construct_extended_name_table): Likewise.
|
|
|
|
|
(oasys_write_armap): Likewise.
|
|
|
|
|
(oasys_write_ar_hdr): Likewise.
|
|
|
|
|
(oasys_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* pef.c (bfd_pef_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* plugin.c (bfd_plugin_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* ppcboot.c (ppcboot_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* som.c (som_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* srec.c (srec_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* tekhex.c (tekhex_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* verilog.c (verilog_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* versados.c (versados_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(versados_bfd_reloc_name_lookup): Likewise.
|
|
|
|
|
* vms-alpha.c (vms_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
(vms_bfd_define_start_stop): Likewise.
|
|
|
|
|
(alpha_vms_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* wasm-module.c (wasm_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* xsym.c (bfd_sym_bfd_is_target_special_symbol): Likewise.
|
|
|
|
|
* elf32-arc.c (get_replace_function): Assign replacement function
|
|
|
|
|
to func pointer.
|
|
|
|
|
* elf32-i370.c (i370_noop): Update prototype.
|
|
|
|
|
|
2018-02-13 14:09:48 +10:30
|
|
|
|
2018-02-13 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22836
|
|
|
|
|
* elf.c (_bfd_elf_fixup_group_sections): Account for removed
|
|
|
|
|
relocation sections. If size reduces to just the flag word,
|
|
|
|
|
remove that too and mark with SEC_EXCLUDE.
|
|
|
|
|
* elflink.c (bfd_elf_final_link): Strip empty group sections.
|
|
|
|
|
|
2018-02-12 13:06:07 +10:30
|
|
|
|
2018-02-13 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22829
|
|
|
|
|
* elf.c (assign_file_positions_for_non_load_sections): Rewrite
|
|
|
|
|
PT_GNU_RELRO setup.
|
|
|
|
|
|
2018-02-12 13:12:45 +00:00
|
|
|
|
2018-02-12 Zebediah Figura <z.figura12@gmail.com>
|
|
|
|
|
|
|
|
|
|
* i386msdos.c (msdos_mkobject); New function.
|
|
|
|
|
(msdos_object_p): New function.
|
|
|
|
|
(i386_msdos_vec): Use msdos_object_p as the check_format
|
|
|
|
|
function.
|
|
|
|
|
* peicode.h: Rename external_PEI_DOS_hdr, DOSMAGIC, and
|
|
|
|
|
NT_SIGNATURE to external_DOS_hdr, IMAGE_DOS_SIGNATURE, and
|
|
|
|
|
IMAGE_NT_SIGNATURE.
|
|
|
|
|
* peXXigen.c: Likewise.
|
|
|
|
|
* coff-ia64.c: Likewise.
|
|
|
|
|
|
2018-02-12 11:51:56 +00:00
|
|
|
|
2018-02-12 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* elf32-nds32.c (nds32_elf_relax_longjump3): Remove redundant
|
|
|
|
|
assignment.
|
2018-02-12 11:57:41 +00:00
|
|
|
|
* elf32-arc.c (elf_arc_relocate_section): Likewise.
|
2018-02-12 11:51:56 +00:00
|
|
|
|
|
2018-02-10 02:37:32 +01:00
|
|
|
|
2018-02-09 Eric Botcazou <ebotcazou@adacore.com>
|
2018-02-10 02:30:25 +01:00
|
|
|
|
|
|
|
|
|
* elfxx-sparc.c (UNDEFINED_WEAK_RESOLVED_TO_ZERO): Reorder conditions.
|
|
|
|
|
(sparc_elf_append_rela): Assert that there is enough room in section.
|
|
|
|
|
(_bfd_sparc_elf_copy_indirect_symbol): Fix formatting.
|
|
|
|
|
(_bfd_sparc_elf_adjust_dynamic_symbol): Minor tweak.
|
|
|
|
|
(allocate_dynrelocs): Remove outdated comments and reorder conditions.
|
|
|
|
|
For a symbol subject to a GOT relocation, reserve a slot in the
|
|
|
|
|
relocation section if the symbol isn't dynamic and we are in PIC mode.
|
|
|
|
|
(_bfd_sparc_elf_relocate_section) <R_SPARC_GOTDATA_OP>: If relocation
|
|
|
|
|
is relaxed and a slot was reserved, generate a R_SPARC_NONE relocation.
|
|
|
|
|
<R_SPARC_GOTDATA_OP_HIX22>: Adjust comments.
|
|
|
|
|
<R_SPARC_PC10>: Reorder conditions. Remove always-false assertion.
|
|
|
|
|
(_bfd_sparc_elf_finish_dynamic_symbol): Rename local_undefweak into
|
|
|
|
|
resolved_to_zero. Do not generate a dynamic GOT relocation for an
|
|
|
|
|
undefined weak symbol with non-default visibility. Remove superfluous
|
|
|
|
|
'else' and fix formatting.
|
|
|
|
|
|
2018-02-09 08:44:42 -08:00
|
|
|
|
2018-02-09 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* elf32-i386.c (elf_i386_get_synthetic_symtab): Also handle
|
|
|
|
|
is_solaris.
|
|
|
|
|
(i386_elf32_sol2_vec): Don't declare.
|
|
|
|
|
(elf_i386_link_setup_gnu_properties): Also handle is_solaris.
|
|
|
|
|
Don't set need_global_offset_table.
|
|
|
|
|
(elf_i386_solaris_arch_bed): New.
|
|
|
|
|
(elf_backend_arch_data): Set to elf_i386_solaris_arch_bed for
|
|
|
|
|
Solaris.
|
|
|
|
|
* elf64-x86-64.c (elf_x86_64_get_synthetic_symtab): Check
|
|
|
|
|
target_os != is_nacl instead of target_os == is_normal.
|
|
|
|
|
(x86_64_elf64_sol2_vec): Don't declare.
|
|
|
|
|
(elf_x86_64_link_setup_gnu_properties): Check target_os !=
|
|
|
|
|
is_nacl instead of target_os == is_normal. Don't set
|
|
|
|
|
need_global_offset_table.
|
|
|
|
|
(elf_x86_64_solaris_arch_bed): New.
|
|
|
|
|
(elf_backend_arch_data): Set to elf_x86_64_solaris_arch_bed for
|
|
|
|
|
Solaris.
|
|
|
|
|
* elfxx-x86.c (_bfd_x86_elf_size_dynamic_sections): Keep
|
|
|
|
|
_GLOBAL_OFFSET_TABLE_ for Solaris.
|
|
|
|
|
(_bfd_x86_elf_link_setup_gnu_properties): Don't copy
|
|
|
|
|
need_global_offset_table.
|
|
|
|
|
* elfxx-x86.h (elf_x86_target_os): Add is_solaris.
|
|
|
|
|
(elf_x86_link_hash_table): Remove need_global_offset_table.
|
|
|
|
|
(elf_x86_init_table): Likewise.
|
|
|
|
|
|
2018-02-08 16:29:19 -08:00
|
|
|
|
2018-02-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* elf32-i386.c (elf32_i386_copy_solaris_special_section_fields):
|
|
|
|
|
Remove prototype.
|
|
|
|
|
(i386_elf32_sol2_vec): Declared.
|
|
|
|
|
(elf_i386_link_setup_gnu_properties): Set
|
|
|
|
|
need_global_offset_table with info->output_bfd->xvec.
|
|
|
|
|
* elf64-x86-64.c (elf64_x86_64_copy_solaris_special_section_fields):
|
|
|
|
|
Remove prototype.
|
|
|
|
|
(x86_64_elf64_sol2_vec): Declared.
|
|
|
|
|
(elf_x86_64_link_setup_gnu_properties): Set
|
|
|
|
|
need_global_offset_table with info->output_bfd->xvec.
|
|
|
|
|
|
2018-02-08 13:52:22 -08:00
|
|
|
|
2018-02-08 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
* elf32-i386.c (elf32_i386_copy_solaris_special_section_fields):
|
|
|
|
|
New prototype.
|
|
|
|
|
(elf_i386_link_setup_gnu_properties): Set need_global_offset_table
|
|
|
|
|
for Solaris.
|
|
|
|
|
* elf64-x86-64.c (elf64_x86_64_copy_solaris_special_section_fields):
|
|
|
|
|
New prototype.
|
|
|
|
|
(elf_x86_64_link_setup_gnu_properties): Set
|
|
|
|
|
need_global_offset_table for Solaris.
|
|
|
|
|
* elfxx-x86.c (_bfd_x86_elf_size_dynamic_sections): Keep the
|
|
|
|
|
unused _GLOBAL_OFFSET_TABLE_ for Solaris.
|
|
|
|
|
(_bfd_x86_elf_link_setup_gnu_properties): Copy
|
|
|
|
|
need_global_offset_table.
|
|
|
|
|
* elfxx-x86.h (elf_x86_link_hash_table): Add
|
|
|
|
|
need_global_offset_table.
|
|
|
|
|
(elf_x86_init_table): Likewise.
|
|
|
|
|
|
2018-02-08 13:15:10 -08:00
|
|
|
|
2018-02-08 Jim Wilson <jimw@sifive.com>
|
|
|
|
|
|
|
|
|
|
* elfnn-riscv.c (riscv_elf_relocate_section): Add comment for previous
|
|
|
|
|
change.
|
|
|
|
|
|
2018-02-08 10:28:25 +00:00
|
|
|
|
2018-02-08 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR 22788
|
|
|
|
|
* elf.c (elf_parse_notes): Reject notes with excessuively large
|
|
|
|
|
alignments.
|
|
|
|
|
|
2018-02-05 13:17:52 +10:30
|
|
|
|
2018-02-07 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
Revert 2018-01-17 Alan Modra <amodra@gmail.com>
|
|
|
|
|
* elf32-ppc.c: Remove speculation barrier support.
|
|
|
|
|
* elf32-ppc.h: Likewise.
|
|
|
|
|
* elf64-ppc.c: Likewise.
|
|
|
|
|
* elf64-ppc.h: Likewise.
|
|
|
|
|
|
2018-02-06 16:53:00 -08:00
|
|
|
|
2018-02-06 Jim Wilson <jimw@sifive.com>
|
|
|
|
|
|
|
|
|
|
* elfnn-riscv.c (riscv_elf_relocate_section): Return TRUE if used
|
|
|
|
|
callback to report an error.
|
|
|
|
|
|
2018-02-06 18:15:56 +01:00
|
|
|
|
2018-02-06 Eric Botcazou <ebotcazou@adacore.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22263
|
|
|
|
|
* elfxx-sparc.c (sparc_elf_tls_transition): Turn call to bfd_link_pic
|
|
|
|
|
into call to !bfd_link_executable and tidy up.
|
|
|
|
|
(_bfd_sparc_elf_check_relocs): Fix formatting and tidy up.
|
|
|
|
|
<R_SPARC_TLS_LE_HIX22>: Turn call to bfd_link_pic into call to
|
|
|
|
|
!bfd_link_executable.
|
|
|
|
|
<R_SPARC_TLS_IE_HI22>: Likewise.
|
|
|
|
|
<GOT relocations>: Remove useless code, tidy and merge related blocks.
|
|
|
|
|
<R_SPARC_TLS_GD_CALL>: Turn call to bfd_link_pic into call to
|
|
|
|
|
!bfd_link_executable.
|
|
|
|
|
<R_SPARC_WPLT30>: Tidy up.
|
|
|
|
|
(_bfd_sparc_elf_gc_mark_hook): Turn call to bfd_link_pic into call to
|
|
|
|
|
!bfd_link_executable.
|
|
|
|
|
(allocate_dynrelocs): Likewise.
|
|
|
|
|
(_bfd_sparc_elf_relocate_section): Fix formatting and tidy up.
|
|
|
|
|
<R_SPARC_TLS_GD_HI22>: Merge into...
|
|
|
|
|
<R_SPARC_TLS_GD_LO10>: ...this. Adjust 4th argument in call to
|
|
|
|
|
sparc_elf_tls_transition and remove redundant code.
|
|
|
|
|
<R_SPARC_TLS_LDM_HI22>: Turn call to bfd_link_pic into call to
|
|
|
|
|
!bfd_link_executable.
|
|
|
|
|
<R_SPARC_TLS_LDO_HIX22>: Likewise.
|
|
|
|
|
<R_SPARC_TLS_LE_HIX22>: Likewise. Tidy up.
|
|
|
|
|
<R_SPARC_TLS_LDM_CALL>: Likewise.
|
|
|
|
|
<R_SPARC_TLS_GD_CALL>: Likewise. Tidy up.
|
|
|
|
|
<R_SPARC_TLS_GD_ADD>: Likewise.
|
|
|
|
|
<R_SPARC_TLS_LDM_ADD>: Likewise.
|
|
|
|
|
<R_SPARC_TLS_LDO_ADD>: Likewise.
|
|
|
|
|
<R_SPARC_TLS_IE_LD>: Likewise.
|
|
|
|
|
|
2018-02-06 17:00:25 +00:00
|
|
|
|
2018-02-06 Miloš Stojanović <milos.stojanovic@rt-rk.com>
|
|
|
|
|
|
|
|
|
|
PR 22789
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_find_nearest_line): If the dwarf
|
|
|
|
|
functions failed to find the function name, try the generic elf
|
|
|
|
|
find function instead.
|
|
|
|
|
|
2018-02-06 10:37:04 -05:00
|
|
|
|
2018-02-06 Sergio Durigan Junior <sergiodj@redhat.com>
|
|
|
|
|
|
|
|
|
|
* coff-rs6000.c (xcoff_write_archive_contents_old): Use
|
|
|
|
|
'memcpy' instead of 'strncpy' when writing the magic number.
|
|
|
|
|
|
2018-02-06 15:48:29 +00:00
|
|
|
|
2018-02-06 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
PR 22794
|
|
|
|
|
* opncls.c (bfd_get_debug_link_info_1): Check the size of the
|
|
|
|
|
section before attempting to read it in.
|
|
|
|
|
(bfd_get_alt_debug_link_info): Likewise.
|
|
|
|
|
|
Allow the find_abstract_instance_name() function in the BFD library to also return file and line number information.
The nm utility supports -l for using debug information to obtain file and line information for each symbol, if available.
We have a tool that consumes this information and displays it.
This identified a problem with the 'nm' utility.
When a source is compiled with -O2, functions can be inlined. The compiler also produces an uninlined copy of the function, normally for linking to other object files.
In the case of DWARF2 debug information, the compiler generates debug information to describe a function. If that function is inlined, the compiler then references that debug information from the inlined and uninlined copies of the routine through the use of the DW_AT_abstract_origin reference.
When nm is used on such a file, it is not able to find file and line information because that information is present in the common debug information and not at each actual implementation of the function.
The 'nm' utility only retrieves the name of the function from the abstract origin debug information and no more.
What I am proposing is to modify the find_abstract_instance_name() function (which I renamed to find_abstract_instance() ) to return the name of the function as well as any file and line information. The routine is already parsing all of the debug information in the abstract instance, so it is easy to pick up the file and line information at that time. If, for some reason, the file and line information is not present, the routine behaves as before.
For example, if I have a simple test case:
int foo(int j)
{
if (j < 15)
j += j << 2;
else
j += j << 6;
return j;
}
int main (int argc,char **argv)
{
int i = argc;
i += foo(i);
return i;
}
If that test case is compiled with -O2 and then 'nm -l' reads that executable, it currently produces this symbol output (ignoring a lot of library symbols):
8048400 T foo
080482e0 T main /scratch/pcarroll/its254/test/mytest.c:12
If I modify 'nm' to return file and line information for abstract instances, it produces the following output:
08048400 T foo /scratch/pcarroll/its254/test/mytest.c:1
080482e0 T main /scratch/pcarroll/its254/test/mytest.c:12
--------------------------------------------------------------------------
bfd * bfd/dwarf2.c (find_abstract_name): Modified to return file and
line information in addition to name, if they can be found.
2018-02-06 15:45:31 +00:00
|
|
|
|
2018-02-06 Paul Carroll <pcarroll@codesourcery.com>
|
|
|
|
|
|
|
|
|
|
* bfd/dwarf2.c (find_abstract_name): Modified to return file and
|
|
|
|
|
line information in addition to name, if they can be found.
|
|
|
|
|
|
2018-02-03 13:18:17 +00:00
|
|
|
|
2018-02-05 Renlin Li <renlin.li@arm.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22764
|
|
|
|
|
* elfnn-aarch64.c (elfNN_aarch64_check_relocs): Relax the
|
|
|
|
|
R_AARCH64_ABS32 and R_AARCH64_ABS16 for absolute symbol. Apply the
|
|
|
|
|
check for writeable section as well.
|
|
|
|
|
|
2018-02-05 08:38:16 -08:00
|
|
|
|
2018-02-05 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22782
|
|
|
|
|
* elf32-i386.c (elf_i386_check_relocs): Set got_referenced if
|
|
|
|
|
_GLOBAL_OFFSET_TABLE_ is referenced or GOT is needed to resolve
|
|
|
|
|
undefined weak symbol to 0.
|
|
|
|
|
* elf64-x86-64.c (elf_x86_64_check_relocs): Set got_referenced
|
|
|
|
|
if _GLOBAL_OFFSET_TABLE_ is referenced.
|
|
|
|
|
* elfxx-x86.c (_bfd_x86_elf_size_dynamic_sections): Check
|
|
|
|
|
got_referenced instead of ref_regular_nonweak. Remove the
|
|
|
|
|
unused _GLOBAL_OFFSET_TABLE_ from symbol table.
|
|
|
|
|
* elfxx-x86.h (elf_x86_link_hash_table): Add got_referenced.
|
|
|
|
|
|
2018-02-05 14:05:51 +00:00
|
|
|
|
2018-02-05 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* elfnn-riscv.c (_bfd_riscv_relax_pc): Use `memset' to
|
|
|
|
|
initialize `hi_reloc'.
|
|
|
|
|
|
2018-02-05 14:00:21 +00:00
|
|
|
|
2018-02-05 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_section_processing): For
|
|
|
|
|
SHT_MIPS_REGINFO sections don't assert the correct size and
|
|
|
|
|
report an error instead.
|
|
|
|
|
|
2018-02-05 14:00:21 +00:00
|
|
|
|
2018-02-05 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* elf.c (_bfd_elf_write_object_contents): Propagate a failure
|
|
|
|
|
status from `->elf_backend_section_processing'.
|
|
|
|
|
|
2018-02-02 12:43:09 -08:00
|
|
|
|
2018-02-02 Jim Wilson <jimw@sifive.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22756
|
|
|
|
|
* elfnn-riscv.c (riscv_relax_delete_bytes): New parameter link_info.
|
|
|
|
|
If link_info->wrap_hash, check for a duplicate symbol and ignore.
|
|
|
|
|
(_bfd_riscv_relax_call, bfd_riscv_relax_lui, _bfd_riscv_relax_tls_le):
|
|
|
|
|
Pass new argument to riscv_relax_delete_bytes.
|
|
|
|
|
(_bfd_riscv_relax_align, _bfd_riscv_relax_delete): Likewise. Remove
|
|
|
|
|
ATTRIBUTE_UNUSED from link_info parameter.
|
|
|
|
|
|
2018-02-02 16:55:21 +10:30
|
|
|
|
2018-02-02 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_relocate_section): Don't relocate nops
|
|
|
|
|
emitted for toc sequence optimization. Set and use "howto" later.
|
|
|
|
|
|
Fix compile time warnings building the binutils with clang.
bfdI would like to fix instances of the following warning, when building
with clang with no special CFLAGS other than -g3 -O0.
/home/emaisin/src/binutils-gdb/bfd/elflink.c:5425:45: error: performing pointer arithmetic on a null pointer has undefined behavior [-Werror,-Wnull-pointer-arithmetic]
return (struct elf_link_hash_entry *) 0 - 1;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^
Replacing those with "(struct elf_link_hash_entry *) -1" gets rid of the
warning. I wanted to check that it didn't change the resulting code, so
I tried to build this:
$ cat test.c
int *before()
{
return (int *) 0 - 1;
}
int *after()
{
return (int *) - 1;
}
$ gcc -c test.c -g
$ objdump -d test.o
test.o: file format elf64-x86-64
Disassembly of section .text:
0000000000000000 <before>:
0: 55 push %rbp
1: 48 89 e5 mov %rsp,%rbp
4: 48 c7 c0 fc ff ff ff mov $0xfffffffffffffffc,%rax
b: 5d pop %rbp
c: c3 retq
000000000000000d <after>:
d: 55 push %rbp
e: 48 89 e5 mov %rsp,%rbp
11: 48 c7 c0 ff ff ff ff mov $0xffffffffffffffff,%rax
18: 5d pop %rbp
19: c3 retq
This shows that the previous code doesn't actually return -1 as the
function documentation says, but the new one does, so it's kind of a
bugfix.
bfd * elf64-ppc.c (ppc64_elf_archive_symbol_lookup): Avoid pointer
arithmetic on NULL pointer.
* elflink.c (_bfd_elf_archive_symbol_lookup,
elf_link_add_archive_symbols): Likewise.
ld * ldexp.c (fold_name, exp_fold_tree_1): Avoid pointer arithmetic
on NULL pointer.
2018-02-01 13:21:41 +00:00
|
|
|
|
2018-02-01 Simon Marchi <simon.marchi@ericsson.com>
|
|
|
|
|
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_archive_symbol_lookup): Avoid pointer
|
|
|
|
|
arithmetic on NULL pointer.
|
|
|
|
|
* elflink.c (_bfd_elf_archive_symbol_lookup,
|
|
|
|
|
elf_link_add_archive_symbols): Likewise.
|
|
|
|
|
|
2018-01-31 14:26:46 +01:00
|
|
|
|
2018-01-31 Michael Matz <matz@suse.de>
|
|
|
|
|
|
|
|
|
|
* elflink.c (bfd_elf_define_start_stop): Fix check of
|
|
|
|
|
def_dynamic.
|
|
|
|
|
|
2018-01-31 05:10:40 -08:00
|
|
|
|
2018-01-31 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/21964
|
|
|
|
|
* elflink.c (bfd_elf_define_start_stop): Check if __start and
|
|
|
|
|
__stop symbols are referenced by shared objects.
|
|
|
|
|
|
2018-01-30 16:02:32 +10:30
|
|
|
|
2018-01-30 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22758
|
|
|
|
|
* elf.c (_bfd_elf_map_sections_to_segments): Don't start a new
|
|
|
|
|
segment when demand paged with lma on the same page. Test this
|
|
|
|
|
before load/non-load, executable/non-executable,
|
|
|
|
|
writable/non-writable tests and simplify. Delete bogus relro
|
|
|
|
|
condition in writable/non-writable test. Delete outdated
|
|
|
|
|
comment. Formatting.
|
|
|
|
|
|
2018-01-29 21:45:09 +10:30
|
|
|
|
2018-01-30 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elflink.c (bfd_elf_define_start_stop): Make __start and __stop
|
|
|
|
|
symbols dynamic.
|
|
|
|
|
|
2018-01-27 08:19:33 +10:30
|
|
|
|
2018-01-29 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22741
|
|
|
|
|
* coffgen.c (coff_pointerize_aux): Ensure auxent tagndx is in
|
|
|
|
|
range before converting to a symbol table pointer.
|
|
|
|
|
|
2018-01-27 14:25:50 +00:00
|
|
|
|
2018-01-27 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* po/ru.po: Updated Russian translation.
|
|
|
|
|
|
2018-01-23 10:50:02 +10:30
|
|
|
|
2018-01-26 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elflink.c (bfd_elf_define_start_stop): Override symbols when
|
|
|
|
|
they are defined dynamically.
|
|
|
|
|
|
2018-01-26 12:25:09 +10:30
|
|
|
|
2018-01-26 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_size_stubs): Iterate sizing when
|
|
|
|
|
.branch_lt changes size.
|
|
|
|
|
|
2018-01-25 21:47:41 +10:30
|
|
|
|
2018-01-25 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22746
|
|
|
|
|
* elfcode.h (elf_object_p): Avoid integer overflow.
|
|
|
|
|
|
2018-01-25 12:16:06 +01:00
|
|
|
|
2018-01-25 Eric Botcazou <ebotcazou@adacore.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22727
|
|
|
|
|
* elfxx-sparc.c (_bfd_sparc_elf_check_relocs) <R_SPARC_TLS_GD_CALL>:
|
|
|
|
|
Do a mere lookup of the __tls_get_addr symbol instead of adding it.
|
|
|
|
|
|
|
|
|
|
Revert
|
|
|
|
|
2017-10-19 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22263
|
|
|
|
|
* elfxx-sparc.c (sparc_elf_tls_transition): Replace
|
|
|
|
|
bfd_link_pic with !bfd_link_executable, !bfd_link_pic with
|
|
|
|
|
bfd_link_executable for TLS check.
|
|
|
|
|
(_bfd_sparc_elf_check_relocs): Likewise.
|
|
|
|
|
(allocate_dynrelocs): Likewise.
|
|
|
|
|
(_bfd_sparc_elf_relocate_section): Likewise.
|
|
|
|
|
|
[LD][AARCH64]Add group relocations to create PC-relative offset.
This is a patch to add linker support for group relocations to create a
16, 32, 48, or 64 bit PC-relative offset inline.
The following relocations are added along with the test cases:
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G3.
bfd/
2018-01-24 Renlin Li <renlin.li@arm.com>
* elfnn-aarch64.c (elfNN_aarch64_final_link_relocate): Add support for
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G3.
* elfxx-aarch64.c (_bfd_aarch64_elf_put_addend): Likewise.
(_bfd_aarch64_elf_resolve_relocation): Likewise.
ld/
2018-01-24 Renlin Li <renlin.li@arm.com>
* testsuite/ld-aarch64/aarch64-elf.exp: Run new testes.
* testsuite/ld-aarch64/emit-relocs-287.s: Fix test case.
* testsuite/ld-aarch64/emit-relocs-287.d: Fix expected output.
* testsuite/ld-aarch64/emit-relocs-287-overflow.s: New.
* testsuite/ld-aarch64/emit-relocs-287-overflow.d: New.
* testsuite/ld-aarch64/emit-relocs-288.d: New.
* testsuite/ld-aarch64/emit-relocs-288.s: New.
* testsuite/ld-aarch64/emit-relocs-289.d: New.
* testsuite/ld-aarch64/emit-relocs-289.s: New.
* testsuite/ld-aarch64/emit-relocs-289-overflow.s: New.
* testsuite/ld-aarch64/emit-relocs-289-overflow.d: New.
* testsuite/ld-aarch64/emit-relocs-290.d: New.
* testsuite/ld-aarch64/emit-relocs-290.s: New.
* testsuite/ld-aarch64/emit-relocs-291.d: New.
* testsuite/ld-aarch64/emit-relocs-291.s: New.
* testsuite/ld-aarch64/emit-relocs-291-overflow.s: New.
* testsuite/ld-aarch64/emit-relocs-291-overflow.d: New.
* testsuite/ld-aarch64/emit-relocs-292.d: New.
* testsuite/ld-aarch64/emit-relocs-292.s: New.
* testsuite/ld-aarch64/emit-relocs-293.d: New.
* testsuite/ld-aarch64/emit-relocs-293.s: New.
2018-01-18 12:17:55 +00:00
|
|
|
|
2018-01-24 Renlin Li <renlin.li@arm.com>
|
|
|
|
|
|
|
|
|
|
* elfnn-aarch64.c (elfNN_aarch64_final_link_relocate): Add support for
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G3.
|
|
|
|
|
* elfxx-aarch64.c (_bfd_aarch64_elf_put_addend): Likewise.
|
|
|
|
|
(_bfd_aarch64_elf_resolve_relocation): Likewise.
|
|
|
|
|
|
[GAS][AARCH64]Add group relocations to create PC-relative offset.
This is a patch to add the gas support for group relocations to create a
16, 32, 48, or 64 bit PC-relative offset inline.
The following relocations are added along with the test cases:
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G3.
bfd/
2018-01-24 Renlin Li <renlin.li@arm.com>
* reloc.c: Add BFD_RELOC_AARCH64_MOVW_PREL_G0,
BFD_RELOC_AARCH64_MOVW_PREL_G0_NC, BFD_RELOC_AARCH64_MOVW_PREL_G1,
BFD_RELOC_AARCH64_MOVW_PREL_G1_NC, BFD_RELOC_AARCH64_MOVW_PREL_G2,
BFD_RELOC_AARCH64_MOVW_PREL_G2_NC, BFD_RELOC_AARCH64_MOVW_PREL_G3.
* bfd-in2.h: Regenerate.
* libbfd.h: Regenerate.
* elfnn-aarch64.c (elfNN_aarch64_howto_table): Add entries for
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G3.
gas/
2018-01-24 Renlin Li <renlin.li@arm.com>
* config/tc-aarch64.c (reloc_table): add entries for
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
BFD_RELOC_AARCH64_MOVW_PREL_G3.
(process_movw_reloc_info): Supports newly added MOVW_PREL relocations.
(md_apply_fix): Likewise
* testsuite/gas/aarch64/prel_g0.s: New.
* testsuite/gas/aarch64/prel_g0.d: New.
* testsuite/gas/aarch64/prel_g0_nc.s: New.
* testsuite/gas/aarch64/prel_g0_nc.d: New.
* testsuite/gas/aarch64/prel_g1.s: New.
* testsuite/gas/aarch64/prel_g1.d: New.
* testsuite/gas/aarch64/prel_g1_nc.s: New.
* testsuite/gas/aarch64/prel_g1_nc.d: New.
* testsuite/gas/aarch64/prel_g2.s: New.
* testsuite/gas/aarch64/prel_g2.d: New.
* testsuite/gas/aarch64/prel_g2_nc.s: New.
* testsuite/gas/aarch64/prel_g2_nc.d: New.
* testsuite/gas/aarch64/prel_g3.s: New.
* testsuite/gas/aarch64/prel_g3.d: New.
2018-01-18 12:08:40 +00:00
|
|
|
|
2018-01-24 Renlin Li <renlin.li@arm.com>
|
|
|
|
|
|
|
|
|
|
* reloc.c: Add BFD_RELOC_AARCH64_MOVW_PREL_G0,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G0_NC, BFD_RELOC_AARCH64_MOVW_PREL_G1,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G1_NC, BFD_RELOC_AARCH64_MOVW_PREL_G2,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G2_NC, BFD_RELOC_AARCH64_MOVW_PREL_G3.
|
|
|
|
|
* elfnn-aarch64.c (elfNN_aarch64_howto_table): Add entries for
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G0, BFD_RELOC_AARCH64_MOVW_PREL_G0_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G1, BFD_RELOC_AARCH64_MOVW_PREL_G1_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G2, BFD_RELOC_AARCH64_MOVW_PREL_G2_NC,
|
|
|
|
|
BFD_RELOC_AARCH64_MOVW_PREL_G3.
|
|
|
|
|
* bfd-in2.h: Regenerate.
|
|
|
|
|
* libbfd.h: Regenerate.
|
|
|
|
|
|
2018-01-23 19:01:34 +00:00
|
|
|
|
2018-01-23 Maciej W. Rozycki <macro@mips.com>
|
|
|
|
|
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_final_link): Update a stale
|
|
|
|
|
`mips_elf32_section_processing' comment reference.
|
|
|
|
|
|
2018-01-20 14:25:24 -08:00
|
|
|
|
2018-01-20 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22721
|
|
|
|
|
* elfxx-x86.c (_bfd_x86_elf_link_check_relocs): Check the
|
|
|
|
|
versioned __tls_get_addr symbol.
|
|
|
|
|
|
2018-01-19 10:50:06 +00:00
|
|
|
|
2018-01-19 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* po/fr.po: Updated French translation.
|
|
|
|
|
|
2018-01-18 22:06:40 +10:30
|
|
|
|
2018-01-18 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf32-ppc.c (ppc_elf_create_glink): Correct alignment of .glink.
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_size_stubs): Handle negative plt_stub_align.
|
|
|
|
|
(ppc64_elf_build_stubs): Likewise.
|
|
|
|
|
|
2018-01-17 15:52:37 +00:00
|
|
|
|
2018-01-17 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* po/ru.po: Updated Russian translation.
|
|
|
|
|
* po/uk/po: Updated Ukranian translation.
|
|
|
|
|
|
2018-01-17 21:24:32 +10:30
|
|
|
|
2018-01-17 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_build_stubs): Silence gcc warning.
|
|
|
|
|
|
2018-01-17 14:19:08 +10:30
|
|
|
|
2018-01-17 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf32-ppc.c (GLINK_ENTRY_SIZE): Handle speculation barrier.
|
|
|
|
|
(CRSETEQ, BEQCTRM): Define.
|
|
|
|
|
(is_nonpic_glink_stub): Don't check bctr.
|
|
|
|
|
(ppc_elf_link_hash_table_create): Init new ppc_elf_params field.
|
|
|
|
|
(ppc_elf_relax_section): Size speculation barrier.
|
|
|
|
|
(output_bctr): New function.
|
|
|
|
|
(write_glink_stub): Use output_bctr.
|
|
|
|
|
(ppc_elf_relocate_section): Use output_bctr for long branch stub.
|
|
|
|
|
(ppc_elf_finish_dynamic_symbol): Likewise.
|
|
|
|
|
(ppc_elf_finish_dynamic_sections): Use output_bctr.
|
|
|
|
|
* elf32-ppc.h (struct ppc_elf_params): Add speculate_indirect_jumps.
|
|
|
|
|
* elf64-ppc.c (CRSETEQ, BEQCTRM, BEQCTRLM): Define.
|
|
|
|
|
(GLINK_PLTRESOLVE_SIZE): Size speculation barrier.
|
|
|
|
|
(size_global_entry_stubs): Handle speculation barrier sizing.
|
|
|
|
|
(plt_stub_size): Likewise.
|
|
|
|
|
(output_bctr): New function.
|
|
|
|
|
(build_plt_stub, build_tls_get_addr_stub): Output speculation
|
|
|
|
|
barrier.
|
|
|
|
|
(ppc_build_one_stub): Likewise for ppc_stub_plt_branch.
|
|
|
|
|
(ppc_size_one_stub): Size speculation barrier in ppc_stub_plt_branch.
|
|
|
|
|
(build_global_entry_stubs): Output speculation barrier.
|
|
|
|
|
(ppc64_elf_build_stubs): Likewise in __glink_PLTresolve stub.
|
|
|
|
|
* elf64-ppc.h (struct ppc64_elf_params): Add speculate_indirect_jumps.
|
|
|
|
|
|
PowerPC PLT stub tidy
This is in preparation for the next patch adding Spectre variant 2
mitigation for PowerPC and PowerPC64. Besides tidying code involved
in stub output (to reduce the number of places where bctr is output),
the patch adds some user visible features:
1) PowerPC64 ELFv2 global entry stubs now are aligned under the
control of --plt-align, with a default alignment of 32 bytes.
2) PowerPC64 __glink_PLTresolve is no longer padded out with nops.
3) PowerPC32 PLT stubs are aligned under the control of --plt-align,
with the default alignment being 16 bytes as before.
4) The PowerPC32 branch/nop table emitted before __glink_PLTresolve
is now smaller in many cases. It was sized incorrectly when the
__tls_get_addr_opt stub was used, and unnecessarily included space
for local ifuncs.
bfd/
* elf32-ppc.c (GLINK_ENTRY_SIZE): Add parameters, handle
__tls_get_addr_opt, and alignment sizing.
(TLS_GET_ADDR_GLINK_SIZE): Delete.
(is_nonpic_glink_stub): Don't use GLINK_ENTRY_SIZE.
(ppc_elf_get_synthetic_symtab): Recognize stubs spaced at 4, 6,
or 8 insns.
(ppc_elf_link_hash_table_create): Init new ppc_elf_params field.
(allocate_dynrelocs): Use new GLINK_ENTRY_SIZE.
(ppc_elf_size_dynamic_sections): Likewise. Size branch table
by PLT reloc count.
(write_glink_stub): Handle __tls_get_addr_opt stub.
Pad out to size given by GLINK_ENTRY_SIZE.
(ppc_elf_relocate_section): Adjust write_glink_stub call.
(ppc_elf_finish_dynamic_symbol): Likewise.
(ppc_elf_finish_dynamic_sections): Write PLTresolve without using
insn array since so many need rewriting.
* elf32-ppc.h (struct ppc_elf_params): Add plt_stub_align.
* elf64-ppc.c (GLINK_PLTRESOLVE_SIZE): Rename from
GLINK_CALL_STUB_SIZE. Add htab param and evaluate to size without
nops. Adjust all uses.
(ppc64_elf_get_synthetic_symtab): Don't use GLINK_CALL_STUB_SIZE
in glink_vma calculation.
(struct ppc_link_hash_table): Add global_entry section pointer.
(create_linkage_sections): Create separate section for global
entry stubs.
(PPC_LO, PPC_HI, PPC_HA): Move earlier.
(size_global_entry_stubs): Handle sizing for aligned stubs.
(ppc64_elf_size_dynamic_sections): Handle global_entry alloc,
and don't stash end of glink branch table in rawsize.
(ppc_build_one_stub): Rewrite stub size calculations.
(build_global_entry_stubs): Use new section.
(ppc64_elf_build_stubs): Don't pad __glink_PLTresolve with nops.
Build lazy link stubs out to end of section. Build global entry
stubs in new section.
gold/
* options.h (plt_align): Support for PowerPC32 too.
* powerpc.cc (Stub_table::stub_align): Heed --plt-align for 32-bit.
(Stub_table::plt_call_size, branch_stub_size): Tidy.
(Stub_table::plt_call_align): Implement using stub_align.
(Output_data_glink::global_entry_align): New function.
(Output_data_glink::global_entry_off): New function.
(Output_data_glink::global_entry_address): Use global_entry_off.
(Output_data_glink::pltresolve_size): New function, replacing
pltresolve_size_ constant. Update all uses.
(Output_data_glink::add_global_entry): Align offset.
(Output_data_glink::set_final_data_size): Use global_entry_align.
(Stub_table::do_write): Don't pad __glink_PLTrelsolve with nops.
Tidy stub output. Use global_entry_off.
ld/
* emultempl/ppc32elf.em (params): Init new field.
(enum ppc32_opt): New enum to define OPTION_* values. Add
OPTION_PLT_ALIGN and OPTION_NO_PLT_ALIGN.
(PARSE_AND_LIST_LONGOPTS): Handle new options.
(PARSE_AND_LIST_ARGS_CASES): Likewise.
(PARSE_AND_LIST_OPTIONS): Likewise. Break up help output.
* emultempl/ppc64elf.em (ppc_add_stub_section): Init alignment
correctly for negative --plt-stub-align.
* testsuite/ld-powerpc/elfv2exe.d,
* testsuite/ld-powerpc/elfv2so.d,
* testsuite/ld-powerpc/relbrlt.d,
* testsuite/ld-powerpc/relbrlt.s,
* testsuite/ld-powerpc/tlsexe.d,
* testsuite/ld-powerpc/tlsexe.r,
* testsuite/ld-powerpc/tlsexe32.d,
* testsuite/ld-powerpc/tlsexe32.g,
* testsuite/ld-powerpc/tlsexe32.r,
* testsuite/ld-powerpc/tlsexetoc.d,
* testsuite/ld-powerpc/tlsexetoc.r,
* testsuite/ld-powerpc/tlsopt5_32.d,
* testsuite/ld-powerpc/tlsso.d,
* testsuite/ld-powerpc/tlstocso.d: Update for changed stub order.
2018-01-13 18:53:41 +10:30
|
|
|
|
2018-01-17 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
* elf32-ppc.c (GLINK_ENTRY_SIZE): Add parameters, handle
|
|
|
|
|
__tls_get_addr_opt, and alignment sizing.
|
|
|
|
|
(TLS_GET_ADDR_GLINK_SIZE): Delete.
|
|
|
|
|
(is_nonpic_glink_stub): Don't use GLINK_ENTRY_SIZE.
|
|
|
|
|
(ppc_elf_get_synthetic_symtab): Recognize stubs spaced at 4, 6,
|
|
|
|
|
or 8 insns.
|
|
|
|
|
(ppc_elf_link_hash_table_create): Init new ppc_elf_params field.
|
|
|
|
|
(allocate_dynrelocs): Use new GLINK_ENTRY_SIZE.
|
|
|
|
|
(ppc_elf_size_dynamic_sections): Likewise. Size branch table
|
|
|
|
|
by PLT reloc count.
|
|
|
|
|
(write_glink_stub): Handle __tls_get_addr_opt stub.
|
|
|
|
|
Pad out to size given by GLINK_ENTRY_SIZE.
|
|
|
|
|
(ppc_elf_relocate_section): Adjust write_glink_stub call.
|
|
|
|
|
(ppc_elf_finish_dynamic_symbol): Likewise.
|
|
|
|
|
(ppc_elf_finish_dynamic_sections): Write PLTresolve without using
|
|
|
|
|
insn array since so many need rewriting.
|
|
|
|
|
* elf32-ppc.h (struct ppc_elf_params): Add plt_stub_align.
|
|
|
|
|
* elf64-ppc.c (GLINK_PLTRESOLVE_SIZE): Rename from
|
|
|
|
|
GLINK_CALL_STUB_SIZE. Add htab param and evaluate to size without
|
|
|
|
|
nops. Adjust all uses.
|
|
|
|
|
(ppc64_elf_get_synthetic_symtab): Don't use GLINK_CALL_STUB_SIZE
|
|
|
|
|
in glink_vma calculation.
|
|
|
|
|
(struct ppc_link_hash_table): Add global_entry section pointer.
|
|
|
|
|
(create_linkage_sections): Create separate section for global
|
|
|
|
|
entry stubs.
|
|
|
|
|
(PPC_LO, PPC_HI, PPC_HA): Move earlier.
|
|
|
|
|
(size_global_entry_stubs): Handle sizing for aligned stubs.
|
|
|
|
|
(ppc64_elf_size_dynamic_sections): Handle global_entry alloc,
|
|
|
|
|
and don't stash end of glink branch table in rawsize.
|
|
|
|
|
(ppc_build_one_stub): Rewrite stub size calculations.
|
|
|
|
|
(build_global_entry_stubs): Use new section.
|
|
|
|
|
(ppc64_elf_build_stubs): Don't pad __glink_PLTresolve with nops.
|
|
|
|
|
Build lazy link stubs out to end of section. Build global entry
|
|
|
|
|
stubs in new section.
|
|
|
|
|
|
2018-01-15 12:09:11 +00:00
|
|
|
|
2018-01-15 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* po/uk.po: Updated Ukranian translation.
|
|
|
|
|
|
2018-01-13 13:56:48 +00:00
|
|
|
|
2018-01-13 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* po/bfd.pot: Regenerated.
|
|
|
|
|
|
2018-01-13 13:31:12 +00:00
|
|
|
|
2018-01-13 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
* version.m4: Bump version to 2.30.51
|
|
|
|
|
* configure: Regenerate.
|
|
|
|
|
|
2018-01-13 13:26:38 +00:00
|
|
|
|
2018-01-13 Nick Clifton <nickc@redhat.com>
|
|
|
|
|
|
|
|
|
|
2.30 branch created.
|
|
|
|
|
|
2018-01-12 13:16:17 +00:00
|
|
|
|
2018-01-12 Jens Widell <jl@opera.com>
|
|
|
|
|
|
|
|
|
|
* elf.c (setup_group): Optimize search for group by remembering
|
|
|
|
|
last found group and restarting search at that index.
|
|
|
|
|
* elf-bfd.h (struct elf_obj_tdata): Add group_search_offset field.
|
|
|
|
|
|
2018-01-12 10:37:28 +10:30
|
|
|
|
2018-01-12 Gunther Nikl <gnikl@users.sourceforge.net>
|
|
|
|
|
|
|
|
|
|
* aoutx.h (aout_link_check_ar_symbols): Remove default and handle
|
|
|
|
|
bfd_link_common_skip_none in switch.
|
|
|
|
|
|
2018-01-12 16:58:04 +10:30
|
|
|
|
2018-01-12 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22649
|
|
|
|
|
* elf64-ppc.c (ppc64_elf_gc_mark_dynamic_ref): Ignore dynamic
|
|
|
|
|
references on forced local symbols.
|
|
|
|
|
|
2018-01-12 09:25:11 +00:00
|
|
|
|
2018-01-12 Vlad Ivanov <vlad@ivanov.email>
|
|
|
|
|
|
|
|
|
|
* elfxx-mips.c (_bfd_mips_elf_final_link): Notify user when
|
|
|
|
|
.reginfo section has wrong size.
|
|
|
|
|
|
2018-01-11 19:04:55 -08:00
|
|
|
|
2018-01-11 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22393
|
|
|
|
|
* elf.c (_bfd_elf_map_sections_to_segments): When generating
|
|
|
|
|
separate code and read-only data LOAD segments, create a new
|
|
|
|
|
LOAD segment if the previous section contains text and the
|
|
|
|
|
current section doesn't or vice versa. Don't put a writable
|
|
|
|
|
section in a read-only segment if there is a RELRO segment.
|
|
|
|
|
|
2018-01-11 15:36:40 -08:00
|
|
|
|
2018-01-11 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22649
|
|
|
|
|
* elflink.c (bfd_elf_gc_mark_dynamic_ref_symbol): Ignore dynamic
|
|
|
|
|
references on forced local symbols.
|
|
|
|
|
|
2018-01-11 09:42:12 -08:00
|
|
|
|
2018-01-11 H.J. Lu <hongjiu.lu@intel.com>
|
|
|
|
|
|
|
|
|
|
PR ld/22677
|
|
|
|
|
* elflink.c (bfd_elf_gc_sections): Keep all PREINIT_ARRAY,
|
|
|
|
|
INIT_ARRAY as well as FINI_ARRAY sections for ld -r --gc-section.
|
|
|
|
|
|
2018-01-09 16:04:58 +08:00
|
|
|
|
2017-09-27 Kuan-Lin Chen <kuanlinchentw@gmail.com>
|
|
|
|
|
|
|
|
|
|
PR 22662
|
|
|
|
|
* elf32-nds32.c (nds32_elf_relax_loadstore): Fix a typographical error.
|
|
|
|
|
|
2018-01-03 12:06:26 -08:00
|
|
|
|
2018-01-03 John Baldwin <jhb@FreeBSD.org>
|
|
|
|
|
|
|
|
|
|
* elf.c (elfcore_grok_freebsd_note): Handle
|
|
|
|
|
NT_FREEBSD_PROCSTAT_PROC, NT_FREEBSD_PROCSTAT_FILES, and
|
|
|
|
|
NT_FREEBSD_PROCSTAT_VMMAP.
|
|
|
|
|
|
2018-01-03 15:47:27 +10:30
|
|
|
|
2018-01-03 Alan Modra <amodra@gmail.com>
|
|
|
|
|
|
|
|
|
|
Update year range in copyright notice of all files.
|
|
|
|
|
|
2018-01-03 15:45:17 +10:30
|
|
|
|
For older changes see ChangeLog-2017
|
2016-01-01 21:14:31 +10:30
|
|
|
|
|
2018-01-03 15:45:17 +10:30
|
|
|
|
Copyright (C) 2018 Free Software Foundation, Inc.
|
2016-01-01 21:14:31 +10:30
|
|
|
|
|
|
|
|
|
Copying and distribution of this file, with or without modification,
|
|
|
|
|
are permitted in any medium without royalty provided the copyright
|
|
|
|
|
notice and this notice are preserved.
|
|
|
|
|
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: change-log
|
|
|
|
|
left-margin: 8
|
|
|
|
|
fill-column: 74
|
|
|
|
|
version-control: never
|
|
|
|
|
End:
|