diff options
author | DJ Delorie <dj@redhat.com> | 2014-05-27 17:14:49 -0400 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2014-05-27 17:14:49 -0400 |
commit | 7a2f2d82fd0e757dfd6eb79637cb790959f52295 (patch) | |
tree | f83505a11ac59b3a0b866919d285d7c902647929 /bfd/elf32-rx.h | |
parent | Properly handle 64-bit GOT relocations (diff) | |
download | binutils-gdb-7a2f2d82fd0e757dfd6eb79637cb790959f52295.tar.gz binutils-gdb-7a2f2d82fd0e757dfd6eb79637cb790959f52295.tar.bz2 binutils-gdb-7a2f2d82fd0e757dfd6eb79637cb790959f52295.zip |
Add new link-map-text hook and RX auto-vector support.
* bfd/elf32-rx.c (get_symbol_value_maybe): New.
(rx_elf_relocate_section): If we find a reloc against
$tableentry$default$<name>, redirect it to the appropriate
$tableentry$<n>$.
(RX_Table_Info): New.
(rx_table_find): New. Check all tables and SEC_KEEP all sections
with table parts in them.
(rx_check_directives): New.
(rx_table_map_2): New.
(rx_table_map): New.
(rx_additional_link_map_text): New. Called to dump tables to the
map file.
* bfd/elf32-rx.h: New.
* ld/ldemul.h (extra_map_file_text): New field.
(ldemul_extra_map_file_text): Declare.
* ld/ldemul.c (ldemul_extra_map_file_text): Define.
* ld/ldlang.c (lang_map): Call it.
* ld/emultempl/rxelf.em: Add extra_map_file_text hook.
* ld/emultempl/aix.em: Add NULL extra_map_file_text hook.
* ld/emultempl/armcoff.em: Likewise.
* ld/emultempl/beos.em: Likewise.
* ld/emultempl/elf32.em: Likewise.
* ld/emultempl/generic.em: Likewise.
* ld/emultempl/gld960.em: Likewise.
* ld/emultempl/gld960c.em: Likewise.
* ld/emultempl/linux.em: Likewise.
* ld/emultempl/lnk960.em: Likewise.
* ld/emultempl/m68kcoff.em: Likewise.
* ld/emultempl/pe.em: Likewise.
* ld/emultempl/pep.em: Likewise.
* ld/emultempl/sunos.em: Likewise.
* ld/emultempl/ticoff.em: Likewise.
* ld/emultempl/vanilla.em: Likewise.
Diffstat (limited to 'bfd/elf32-rx.h')
-rw-r--r-- | bfd/elf32-rx.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bfd/elf32-rx.h b/bfd/elf32-rx.h new file mode 100644 index 00000000000..377938838e4 --- /dev/null +++ b/bfd/elf32-rx.h @@ -0,0 +1,21 @@ +/* Renesas RX specific support for 32-bit ELF. + Copyright (C) 2014 Free Software Foundation, Inc. + + This file is part of BFD, the Binary File Descriptor library. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ + + +void rx_additional_link_map_text (bfd *obfd, struct bfd_link_info *info, FILE *mapfile); |