binutils-gdb/ld
Maciej W. Rozycki b416ba9b50 MIPS/GAS: Don't convert PC-relative REL relocs against absolute symbols
Don't convert PC-relative REL relocations against absolute symbols to
section-relative references and retain the original symbol reference
instead.  Offsets into the absolute section may overflow the limited
range of their in-place addend field, causing an assembly error, e.g.:

$ cat test.s
	.text
	.globl	foo
	.ent	foo
foo:
	b	bar
	.end	foo

	.set	bar, 0x12345678
$ as -EB -32 -o test.o test.s
test.s: Assembler messages:
test.s:3: Error: relocation overflow
$

With the original reference retained the source can now be assembled and
linked successfully:

$ as -EB -32 -o test.o test.s
$ objdump -dr test.o

test.o:     file format elf32-tradbigmips

Disassembly of section .text:

00000000 <foo>:
   0:	1000ffff 	b	0 <foo>
			0: R_MIPS_PC16	bar
   4:	00000000 	nop
	...
$ ld -melf32btsmip -Ttext 0x12340000 -e foo -o test test.o
$ objdump -dr test

test:     file format elf32-tradbigmips

Disassembly of section .text:

12340000 <foo>:
12340000:	1000159d 	b	12345678 <bar>
12340004:	00000000 	nop
	...
$

For simplicity always retain the original symbol reference, even if it
would indeed fit.

Making TC_FORCE_RELOCATION_ABS separate from TC_FORCE_RELOCATION causes
R_MICROMIPS_PC7_S1, R_MICROMIPS_PC10_S1 and R_MICROMIPS_PC16_S1 branch
relocations against absolute symbols to be converted on RELA targets to
section-relative references.  This is an intended effect of this change.
Absolute symbols carry no ISA annotation in their `st_other' field and
their value is not going to change with linker relaxation, so it is safe
to discard the original reference and keep the calculated final symbol
value only in the relocation's addend.

Similarly R6 R_MIPS_PCHI16 and R_MIPS_PCLO16 relocations referring
absolute symbols can be safely converted even on REL targets, as there
the in-place addend of these relocations covers the entire 32-bit
address space so it can hold the calculated final symbol value, and
likewise the value referred won't be affected by any linker relaxation.

Add a set of suitable test cases and enable REL linker tests which now
work and were previously used as dump patterns for RELA tests only.

	gas/
	* config/tc-mips.h (TC_FORCE_RELOCATION_ABS): New macro.
	(mips_force_relocation_abs): New prototype.
	* config/tc-mips.c (mips_force_relocation_abs): New function.
	* testsuite/gas/mips/branch-absolute.d: Adjust dump patterns.
	* testsuite/gas/mips/mips16-branch-absolute.d: Likewise.
	* testsuite/gas/mips/micromips-branch-absolute-n32.d: Likewise.
	* testsuite/gas/mips/micromips-branch-absolute-n64.d: Likewise.
	* testsuite/gas/mips/micromips-branch-absolute-addend-n32.d:
	Likewise.
	* testsuite/gas/mips/micromips-branch-absolute-addend-n64.d:
	Likewise.
	* testsuite/gas/mips/branch-absolute-addend.d: New test.
	* testsuite/gas/mips/mips16-branch-absolute-addend.d: New test.
	* testsuite/gas/mips/micromips-branch-absolute-addend.d: New
	test.
	* testsuite/gas/mips/mips.exp: Run the new tests.

	ld/
	* testsuite/ld-mips-elf/mips-elf.exp: Run
	`branch-absolute-addend', `mips16-branch-absolute',
	`mips16-branch-absolute-addend' and
	`micromips-branch-absolute-addend'.
2016-07-14 20:11:03 +01:00
..
emulparams [ARC] Fix/improve small data support. 2016-07-14 10:08:57 +02:00
emultempl ld: Add a linker configure option --enable-relro 2016-06-22 05:37:38 -07:00
po Copyright update for binutils 2016-01-01 23:00:01 +10:30
scripttempl FT32 linker script cleanup 2016-07-06 18:58:10 -07:00
testsuite MIPS/GAS: Don't convert PC-relative REL relocs against absolute symbols 2016-07-14 20:11:03 +01:00
.gitignore
ChangeLog MIPS/GAS: Don't convert PC-relative REL relocs against absolute symbols 2016-07-14 20:11:03 +01:00
ChangeLog-0001
ChangeLog-0203
ChangeLog-2004
ChangeLog-2005
ChangeLog-2006
ChangeLog-2007
ChangeLog-2008 strip off +x bits on non-executable/script files 2013-12-07 02:03:03 -05:00
ChangeLog-2009 Remove trailing spaces in ld 2015-08-12 04:46:43 -07:00
ChangeLog-2010
ChangeLog-2011
ChangeLog-2012
ChangeLog-2013 New Year - binutils ChangeLog rotation 2014-01-08 05:32:12 -08:00
ChangeLog-2014 ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog-2015 binutils ChangeLog rotation 2016-01-01 22:59:17 +10:30
ChangeLog-9197 Remove trailing spaces in ld 2015-08-12 04:46:43 -07:00
ChangeLog-9899
MAINTAINERS Copyright update for binutils 2016-01-01 23:00:01 +10:30
Makefile.am Add support for configuring for the ARM Phoenix target. 2016-05-23 13:53:07 +01:00
Makefile.in Add support for configuring for the ARM Phoenix target. 2016-05-23 13:53:07 +01:00
NEWS Add marker for 2.27 branch. 2016-07-01 10:58:29 +02:00
README Copyright update for binutils 2016-01-01 23:00:01 +10:30
TODO
aclocal.m4 Regenerate Makefile.in/aclocal.m4 automake 1.11.6 2016-04-15 16:20:55 -07:00
config.in ld: Add a linker configure option --enable-relro 2016-06-22 05:37:38 -07:00
configure ld: Add a linker configure option --enable-relro 2016-06-22 05:37:38 -07:00
configure.ac ld: Add a linker configure option --enable-relro 2016-06-22 05:37:38 -07:00
configure.host Copyright update for binutils 2016-01-01 23:00:01 +10:30
configure.tgt ld: Add a linker configure option --enable-relro 2016-06-22 05:37:38 -07:00
deffile.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
deffilep.y Copyright update for binutils 2016-01-01 23:00:01 +10:30
dep-in.sed
elf-hints-local.h
fdl.texi
gen-doc.texi Copyright update for binutils 2016-01-01 23:00:01 +10:30
genscrba.sh
genscripts.sh Copyright update for binutils 2016-01-01 23:00:01 +10:30
h8-doc.texi Copyright update for binutils 2016-01-01 23:00:01 +10:30
ld.h Remove unused field from ld_config_type structure. 2016-02-25 10:33:29 +00:00
ld.texinfo [AArch64] Also puts value in place for R_AARCH64_RELATIVE 2016-05-03 11:59:37 +01:00
ldbuildid.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldbuildid.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldcref.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldctor.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldctor.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldemul.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldemul.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldexp.c ld: track linker-definedness of symbols 2016-07-05 11:36:08 +02:00
ldexp.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldfile.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldfile.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldgram.y Add new NOCROSSREFS_TO linker script command 2016-04-18 12:45:46 +01:00
ldint.texinfo Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldlang.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldlang.h Add new NOCROSSREFS_TO linker script command 2016-04-18 12:45:46 +01:00
ldlex-wrapper.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldlex.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldlex.l ld: track linker-definedness of symbols 2016-07-05 11:36:08 +02:00
ldmain.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldmain.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldmisc.c Delete bfd_my_archive macro 2016-06-14 13:24:37 +09:30
ldmisc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldver.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldver.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ldwrite.c Formatting fixes. 2016-06-14 13:25:21 +09:30
ldwrite.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
lexsup.c Allow a second -T<section>=<addr> to override a previous version on the same linker command line. 2016-06-27 16:35:58 +01:00
mri.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
mri.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
pe-dll.c Ignore DWARF debug information with a version of 0 - assume that it is padding. 2016-04-04 12:53:33 +01:00
pe-dll.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
pep-dll.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
pep-dll.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
plugin.c Warn and return for duplicated plugin 2016-07-04 08:55:20 -07:00
plugin.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
stamp-h.in
sysdep.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
testplug.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
testplug2.c Remove redundant sizeof on EXPECTED_VIEW_LENGTH 2016-05-14 05:51:28 -07:00
testplug3.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
testplug4.c Remove redundant sizeof on EXPECTED_VIEW_LENGTH 2016-05-14 05:51:28 -07:00

README

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

		README for LD

This is the GNU linker.  It is distributed with other "binary
utilities" which should be in ../binutils.  See ../binutils/README for
more general notes, including where to send bug reports.

There are many features of the linker:

* The linker uses a Binary File Descriptor library (../bfd)
  that it uses to read and write object files.  This helps
  insulate the linker itself from the format of object files.

* The linker supports a number of different object file
  formats.  It can even handle multiple formats at once:
  Read two input formats and write a third.

* The linker can be configured for cross-linking.

* The linker supports a control language.

* There is a user manual (ld.texinfo), as well as the
  beginnings of an internals manual (ldint.texinfo).

Installation
============

See ../binutils/README.

If you want to make a cross-linker, you may want to specify
a different search path of -lfoo libraries than the default.
You can do this by setting the LIB_PATH variable in ./Makefile
or using the --with-lib-path configure switch.

To build just the linker, make the target all-ld from the top level
directory (one directory above this one).

Porting to a new target
=======================

See the ldint.texinfo manual.

Reporting bugs etc
===========================

See ../binutils/README.

Known problems
==============

The Solaris linker normally exports all dynamic symbols from an
executable.  The GNU linker does not do this by default.  This is
because the GNU linker tries to present the same interface for all
similar targets (in this case, all native ELF targets).  This does not
matter for normal programs, but it can make a difference for programs
which try to dlopen an executable, such as PERL or Tcl.  You can make
the GNU linker export all dynamic symbols with the -E or
--export-dynamic command line option.

HP/UX 9.01 has a shell bug that causes the linker scripts to be
generated incorrectly.  The symptom of this appears to be "fatal error
- scanner input buffer overflow" error messages.  There are various
workarounds to this:
  * Build and install bash, and build with "make SHELL=bash".
  * Update to a version of HP/UX with a working shell (e.g., 9.05).
  * Replace "(. ${srcdir}/scripttempl/${SCRIPT_NAME}.sc)" in
    genscripts.sh with "sh ${srcdir}..." (no parens) and make sure the
    emulparams script used exports any shell variables it sets.

Copyright (C) 2012-2016 Free Software Foundation, Inc.

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.