old-cross-binutils/gas
H.J. Lu 56ceb5b540 Add R_X86_64_[REX_]GOTPCRELX support to gas and ld
This patch adds support for the R_X86_64_GOTPCRELX and
R_X86_64_REX_GOTPCRELX relocations proposed in

https://groups.google.com/forum/#!topic/x86-64-abi/n9AWHogmVY0

to gas and ld.  It updates gas to generate R_X86_64_GOTPCRELX,
R_X86_64_REX_GOTPCRELX if there is a REX prefix, relocation for memory
operand, foo@GOTPCREL(%rip).  With the locally defined symbol, foo, we
convert

  mov foo@GOTPCREL(%rip), %reg

to

   lea foo(%rip), %reg

and convert

   call/jmp *foo@GOTPCREL(%rip)
to

   nop call foo/jmp foo nop

When PIC is false, convert

   test %reg, foo@GOTPCREL(%rip)
to

test $foo, %reg

and convert

   binop foo@GOTPCREL(%rip), %reg

to

   binop $foo, %reg

where binop is one of adc, add, and, cmp, or, sbb, sub, xor instructions.

bfd/

	* elf64-x86-64.c: Include opcode/i386.h.
	(x86_64_elf_howto_table): Add R_X86_64_GOTPCRELX and
	R_X86_64_REX_GOTPCRELX.
	(R_X86_64_standard): Replace R_X86_64_PLT32_BND with
	R_X86_64_REX_GOTPCRELX.
	(x86_64_reloc_map): Add BFD_RELOC_X86_64_GOTPCRELX and
	BFD_RELOC_X86_64_REX_GOTPCRELX.
	(need_convert_mov_to_lea): Renamed to ...
	(need_convert_load): This.
	(elf_x86_64_check_relocs): Handle R_X86_64_GOTPCRELX and
	R_X86_64_REX_GOTPCRELX.  Replace need_convert_mov_to_lea with
	need_convert_load.
	(elf_x86_64_gc_sweep_hook): Handle R_X86_64_GOTPCRELX and
	R_X86_64_REX_GOTPCRELX.
	(elf_x86_64_size_dynamic_sections): Likewise.
	(elf_x86_64_relocate_section): Likewise.
	(elf_x86_64_convert_mov_to_lea): Renamed to ...
	(elf_x86_64_convert_load): This.  Replace need_convert_mov_to_lea
	with need_convert_load.  Support R_X86_64_GOTPCRELX and
	R_X86_64_REX_GOTPCRELX transformations.
	* reloc.c (BFD_RELOC_X86_64_GOTPCRELX): New.
	(BFD_RELOC_X86_64_REX_GOTPCRELX): Likewise.
	* bfd-in2.h: Regenerated.
	* libbfd.h: Likewise.

gas/

	* config/tc-i386.c (tc_i386_fix_adjustable): Handle
	BFD_RELOC_X86_64_GOTPCRELX and BFD_RELOC_X86_64_REX_GOTPCRELX.
	(tc_gen_reloc): Likewise.
	(i386_validate_fix): Generate BFD_RELOC_X86_64_GOTPCRELX or
	BFD_RELOC_X86_64_REX_GOTPCRELX if fx_tcbit2 is set.
	* config/tc-i386.h (TC_FORCE_RELOCATION_LOCAL): Also return
	true for BFD_RELOC_X86_64_GOTPCRELX and
	BFD_RELOC_X86_64_REX_GOTPCRELX.

gas/testsuite/

	* gas/i386/i386.exp: Run x86-64-gotpcrel.
	* gas/i386/x86-64-gotpcrel.d: New file.
	* gas/i386/x86-64-gotpcrel.s: Likewise.
	* gas/i386/ilp32/x86-64-gotpcrel.d: Likewise.
	* gas/i386/x86-64-localpic.d: Replace R_X86_64_GOTPCREL with
	R_X86_64_REX_GOTPCRELX.
	* gas/i386/ilp32/x86-64-localpic.d: Likewise.

include/elf/

	* x86-64.h (R_X86_64_GOTPCRELX): New.
	(R_X86_64_REX_GOTPCRELX): Likewise.

ld/testsuite/

	* ld-ifunc/ifunc-5r-local-x86-64.d: Replace R_X86_64_GOTPCREL
	with R_X86_64_REX_GOTPCRELX.
	* ld-x86-64/plt-main1.rd: Likewise.
	* ld-x86-64/plt-main3.rd: Likewise.
	* ld-x86-64/plt-main4.rd: Likewise.
	* ld-x86-64/gotpcrel1.dd: New file.
	* ld-x86-64/gotpcrel1.out: Likewise.
	* ld-x86-64/gotpcrel1a.S: Likewise.
	* ld-x86-64/gotpcrel1b.c: Likewise.
	* ld-x86-64/gotpcrel1c.c: Likewise.
	* ld-x86-64/gotpcrel1d.S: Likewise.
	* ld-x86-64/load1.s: Likewise.
	* ld-x86-64/load1a.d: Likewise.
	* ld-x86-64/load1b.d: Likewise.
	* ld-x86-64/load1c.d: Likewise.
	* ld-x86-64/load1d.d: Likewise.
	* ld-x86-64/x86-64.exp: Run load1a, load1b, load1c and load1d
	tests.  Run gotpcrel1 test.
2015-10-22 04:49:38 -07:00
..
config Add R_X86_64_[REX_]GOTPCRELX support to gas and ld 2015-10-22 04:49:38 -07:00
doc Add a gas configure option to select the default behaviour for the generation of debug sections - compressed or uncompressed. 2015-10-19 11:45:54 +01:00
po FT32 initial support 2015-01-28 16:25:18 +10:30
testsuite Add R_X86_64_[REX_]GOTPCRELX support to gas and ld 2015-10-22 04:49:38 -07:00
.gitignore bfd/binutils/gas/gprof/ld/libiberty/opcodes: add .gitignore 2010-12-09 09:03:18 +00:00
acinclude.m4 Update "configure.in" in comments and doco 2014-07-04 15:06:40 +09:30
aclocal.m4 Revert the AM_ZLIB change in gas 2015-03-31 06:39:57 -07:00
app.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
as.c Add a gas configure option to select the default behaviour for the generation of debug sections - compressed or uncompressed. 2015-10-19 11:45:54 +01:00
as.h gas: section name substitution sequence 2015-06-17 08:52:00 +09:30
asintl.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
atof-generic.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
bignum.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
bit_fix.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
cgen.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
cgen.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ChangeLog Add R_X86_64_[REX_]GOTPCRELX support to gas and ld 2015-10-22 04:49:38 -07:00
ChangeLog-0001 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-0203 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2004 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2005 Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
ChangeLog-2006 Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
ChangeLog-2007 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2008 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2009 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2010 Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
ChangeLog-2011 Add copyright notices 2012-12-10 12:48:03 +00:00
ChangeLog-2012 correct pr reference 2013-02-04 05:10:44 +00:00
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-9295 Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
ChangeLog-9697 Update copyright years 2014-03-05 22:16:15 +10:30
ChangeLog-9899 Update copyright years 2014-03-05 22:16:15 +10:30
compress-debug.c Add --with-system-zlib in gas 2015-03-31 03:56:12 -07:00
compress-debug.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
cond.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
config.in Add a gas configure option to select the default behaviour for the generation of debug sections - compressed or uncompressed. 2015-10-19 11:45:54 +01:00
configure Extend description of the --enable-compressed-debug-sections configure option in gas and ld. 2015-10-21 14:57:28 +01:00
configure.ac Extend description of the --enable-compressed-debug-sections configure option in gas and ld. 2015-10-21 14:57:28 +01:00
configure.com Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
configure.tgt New ARC implementation. 2015-10-07 14:20:19 +01:00
CONTRIBUTORS ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
COPYING Switch to GPLv3 2007-07-03 11:01:12 +00:00
debug.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
dep-in.sed * dep-in.sed: Don't use \n in replacement part of s command. 2009-06-04 06:57:12 +00:00
depend.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
dw2gencfi.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
dw2gencfi.h Compact EH Support 2015-05-28 15:21:17 -07:00
dwarf2dbg.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
dwarf2dbg.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ecoff.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
ecoff.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
ehopt.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
emul-target.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
emul.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
expr.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
expr.h Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
flonum-copy.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
flonum-konst.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
flonum-mult.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
flonum.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
frags.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
frags.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
gdbinit.in * as.h (as_perror): Delete declaration. 2006-09-22 11:35:14 +00:00
hash.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
hash.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
input-file.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
input-file.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
input-scrub.c gas line buffer handling 2015-07-22 22:04:28 +09:30
itbl-lex-wrapper.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
itbl-lex.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
itbl-lex.l Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
itbl-ops.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
itbl-ops.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
itbl-parse.y Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
listing.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
listing.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
literal.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
macro.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
macro.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
MAINTAINERS ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
Makefile.am Add --with-system-zlib in gas 2015-03-31 03:56:12 -07:00
Makefile.in Revert the AM_ZLIB change in gas 2015-03-31 06:39:57 -07:00
makefile.vms Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
messages.c Make binutils abort message GDB friendly 2015-07-20 05:53:31 -07:00
NEWS Add --enable-compressed-debug-sections={all,gas,gold,ld} 2015-10-20 08:58:25 -07:00
obj.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
output-file.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
output-file.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
read.c Bug 19113 - read.c stringer assertion 2015-10-10 10:51:20 +10:30
read.h Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
README Remove trailing spaces in gas 2015-08-12 04:40:42 -07:00
remap.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
sb.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
sb.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
stabs.c Allow symbol and label names to be enclosed in double quotes. 2015-08-21 16:42:14 +01:00
stamp-h.in
struc-symbol.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
subsegs.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
subsegs.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
symbols.c ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
symbols.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
tc.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30
write.c Add support for converting VLDR <reg>,=<constant> to a VMOV instruction when appropriate. 2015-06-17 12:56:17 +01:00
write.h ChangeLog rotatation and copyright year update 2015-01-02 00:53:45 +10:30

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 GAS

A number of things have changed since version 1 and the wonderful
world of gas looks very different.  There's still a lot of irrelevant
garbage lying around that will be cleaned up in time.  Documentation
is scarce, as are logs of the changes made since the last gas release.
My apologies, and I'll try to get something useful.

Unpacking and Installation - Summary
====================================

See ../binutils/README.

To build just the assembler, make the target all-gas.

Documentation
=============

The GAS release includes texinfo source for its manual, which can be processed
into `info' or `dvi' forms.

The DVI form is suitable for printing or displaying; the commands for doing
this vary from system to system.  On many systems, `lpr -d' will print a DVI
file.  On others, you may need to run a program such as `dvips' to convert the
DVI file into a form your system can print.

If you wish to build the DVI file, you will need to have TeX installed on your
system.  You can rebuild it by typing:

	cd gas/doc
	make as.dvi

The Info form is viewable with the GNU Emacs `info' subsystem, or the
stand-alone `info' program, available as part of the GNU Texinfo distribution.
To build the info files, you will need the `makeinfo' program.  Type:

	cd gas/doc
	make info

Specifying names for hosts and targets
======================================

   The specifications used for hosts and targets in the `configure'
script are based on a three-part naming scheme, but some short
predefined aliases are also supported.  The full naming scheme encodes
three pieces of information in the following pattern:

     ARCHITECTURE-VENDOR-OS

   For example, you can use the alias `sun4' as a HOST argument or in a
`--target=TARGET' option.  The equivalent full name is
`sparc-sun-sunos4'.

   The `configure' script accompanying GAS does not provide any query
facility to list all supported host and target names or aliases.
`configure' calls the Bourne shell script `config.sub' to map
abbreviations to full names; you can read the script, if you wish, or
you can use it to test your guesses on abbreviations--for example:

     % sh config.sub i386v
     i386-unknown-sysv
     % sh config.sub i786v
     Invalid configuration `i786v': machine `i786v' not recognized


`configure' options
===================

   Here is a summary of the `configure' options and arguments that are
most often useful for building GAS.  `configure' also has several other
options not listed here.

     configure [--help]
               [--prefix=DIR]
               [--srcdir=PATH]
               [--host=HOST]
               [--target=TARGET]
               [--with-OPTION]
               [--enable-OPTION]

You may introduce options with a single `-' rather than `--' if you
prefer; but you may abbreviate option names if you use `--'.

`--help'
     Print a summary of the options to `configure', and exit.

`-prefix=DIR'
     Configure the source to install programs and files under directory
     `DIR'.

`--srcdir=PATH'
     Look for the package's source code in directory DIR.  Usually
     `configure' can determine that directory automatically.

`--host=HOST'
     Configure GAS to run on the specified HOST.  Normally the
     configure script can figure this out automatically.

     There is no convenient way to generate a list of all available
     hosts.

`--target=TARGET'
     Configure GAS for cross-assembling programs for the specified
     TARGET.  Without this option, GAS is configured to assemble .o files
     that run on the same machine (HOST) as GAS itself.

     There is no convenient way to generate a list of all available
     targets.

`--enable-OPTION'
     These flags tell the program or library being configured to
     configure itself differently from the default for the specified
     host/target combination.  See below for a list of `--enable'
     options recognized in the gas distribution.

`configure' accepts other options, for compatibility with configuring
other GNU tools recursively; but these are the only options that affect
GAS or its supporting libraries.

The `--enable' options recognized by software in the gas distribution are:

`--enable-targets=...'
     This causes one or more specified configurations to be added to those for
     which BFD support is compiled.  Currently gas cannot use any format other
     than its compiled-in default, so this option is not very useful.

`--enable-bfd-assembler'
     This causes the assembler to use the new code being merged into it to use
     BFD data structures internally, and use BFD for writing object files.
     For most targets, this isn't supported yet.  For most targets where it has
     been done, it's already the default.  So generally you won't need to use
     this option.

Compiler Support Hacks
======================

On a few targets, the assembler has been modified to support a feature
that is potentially useful when assembling compiler output, but which
may confuse assembly language programmers.  If assembler encounters a
.word pseudo-op of the form symbol1-symbol2 (the difference of two
symbols), and the difference of those two symbols will not fit in 16
bits, the assembler will create a branch around a long jump to
symbol1, and insert this into the output directly before the next
label: The .word will (instead of containing garbage, or giving an
error message) contain (the address of the long jump)-symbol2.  This
allows the assembler to assemble jump tables that jump to locations
very far away into code that works properly.  If the next label is
more than 32K away from the .word, you lose (silently); RMS claims
this will never happen.  If the -K option is given, you will get a
warning message when this happens.


REPORTING BUGS IN GAS
=====================

Bugs in gas should be reported to:

   bug-binutils@gnu.org.

They may be cross-posted to gcc-bugs@gnu.org if they affect the use of
gas with gcc.  They should not be reported just to gcc-bugs, since not
all of the maintainers read that list.

See ../binutils/README for what we need in a bug report.

Copyright (C) 2012-2015 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.