dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
[deliverable/binutils-gdb.git] / bfd / elf64-x86-64.c
CommitLineData
351f65ca 1/* X86-64 specific support for ELF
4dfe6ac6 2 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
61315175 3 2010, 2011, 2012, 2013
9f973f28 4 Free Software Foundation, Inc.
8d88c4ca
NC
5 Contributed by Jan Hubicka <jh@suse.cz>.
6
ae9a127f 7 This file is part of BFD, the Binary File Descriptor library.
8d88c4ca 8
ae9a127f
NC
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
cd123cb7 11 the Free Software Foundation; either version 3 of the License, or
ae9a127f 12 (at your option) any later version.
8d88c4ca 13
ae9a127f
NC
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
8d88c4ca 18
ae9a127f
NC
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
cd123cb7
NC
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 MA 02110-1301, USA. */
8d88c4ca 23
8d88c4ca 24#include "sysdep.h"
3db64b00 25#include "bfd.h"
c434dee6 26#include "bfdlink.h"
8d88c4ca
NC
27#include "libbfd.h"
28#include "elf-bfd.h"
5a68afcf 29#include "elf-nacl.h"
142411ca 30#include "bfd_stdint.h"
c25bc9fc
L
31#include "objalloc.h"
32#include "hashtab.h"
e41b3a13 33#include "dwarf2.h"
d7921315 34#include "libiberty.h"
8d88c4ca
NC
35
36#include "elf/x86-64.h"
37
8fd79e71
L
38#ifdef CORE_HEADER
39#include <stdarg.h>
40#include CORE_HEADER
41#endif
42
8d88c4ca
NC
43/* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
44#define MINUS_ONE (~ (bfd_vma) 0)
45
351f65ca
L
46/* Since both 32-bit and 64-bit x86-64 encode relocation type in the
47 identical manner, we use ELF32_R_TYPE instead of ELF64_R_TYPE to get
48 relocation type. We also use ELF_ST_TYPE instead of ELF64_ST_TYPE
49 since they are the same. */
50
51#define ABI_64_P(abfd) \
52 (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
53
8d88c4ca 54/* The relocation "howto" table. Order of fields:
7b81dfbb
AJ
55 type, rightshift, size, bitsize, pc_relative, bitpos, complain_on_overflow,
56 special_function, name, partial_inplace, src_mask, dst_mask, pcrel_offset. */
70256ad8
AJ
57static reloc_howto_type x86_64_elf_howto_table[] =
58{
b34976b6
AM
59 HOWTO(R_X86_64_NONE, 0, 0, 0, FALSE, 0, complain_overflow_dont,
60 bfd_elf_generic_reloc, "R_X86_64_NONE", FALSE, 0x00000000, 0x00000000,
61 FALSE),
62 HOWTO(R_X86_64_64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
63 bfd_elf_generic_reloc, "R_X86_64_64", FALSE, MINUS_ONE, MINUS_ONE,
64 FALSE),
65 HOWTO(R_X86_64_PC32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
66 bfd_elf_generic_reloc, "R_X86_64_PC32", FALSE, 0xffffffff, 0xffffffff,
67 TRUE),
68 HOWTO(R_X86_64_GOT32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
69 bfd_elf_generic_reloc, "R_X86_64_GOT32", FALSE, 0xffffffff, 0xffffffff,
70 FALSE),
71 HOWTO(R_X86_64_PLT32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
72 bfd_elf_generic_reloc, "R_X86_64_PLT32", FALSE, 0xffffffff, 0xffffffff,
73 TRUE),
74 HOWTO(R_X86_64_COPY, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
75 bfd_elf_generic_reloc, "R_X86_64_COPY", FALSE, 0xffffffff, 0xffffffff,
76 FALSE),
77 HOWTO(R_X86_64_GLOB_DAT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
78 bfd_elf_generic_reloc, "R_X86_64_GLOB_DAT", FALSE, MINUS_ONE,
79 MINUS_ONE, FALSE),
80 HOWTO(R_X86_64_JUMP_SLOT, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
81 bfd_elf_generic_reloc, "R_X86_64_JUMP_SLOT", FALSE, MINUS_ONE,
82 MINUS_ONE, FALSE),
83 HOWTO(R_X86_64_RELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
84 bfd_elf_generic_reloc, "R_X86_64_RELATIVE", FALSE, MINUS_ONE,
85 MINUS_ONE, FALSE),
86 HOWTO(R_X86_64_GOTPCREL, 0, 2, 32, TRUE, 0, complain_overflow_signed,
87 bfd_elf_generic_reloc, "R_X86_64_GOTPCREL", FALSE, 0xffffffff,
88 0xffffffff, TRUE),
89 HOWTO(R_X86_64_32, 0, 2, 32, FALSE, 0, complain_overflow_unsigned,
90 bfd_elf_generic_reloc, "R_X86_64_32", FALSE, 0xffffffff, 0xffffffff,
91 FALSE),
92 HOWTO(R_X86_64_32S, 0, 2, 32, FALSE, 0, complain_overflow_signed,
93 bfd_elf_generic_reloc, "R_X86_64_32S", FALSE, 0xffffffff, 0xffffffff,
94 FALSE),
95 HOWTO(R_X86_64_16, 0, 1, 16, FALSE, 0, complain_overflow_bitfield,
96 bfd_elf_generic_reloc, "R_X86_64_16", FALSE, 0xffff, 0xffff, FALSE),
b0360d8c 97 HOWTO(R_X86_64_PC16,0, 1, 16, TRUE, 0, complain_overflow_bitfield,
b34976b6 98 bfd_elf_generic_reloc, "R_X86_64_PC16", FALSE, 0xffff, 0xffff, TRUE),
ac2aa337 99 HOWTO(R_X86_64_8, 0, 0, 8, FALSE, 0, complain_overflow_bitfield,
b34976b6
AM
100 bfd_elf_generic_reloc, "R_X86_64_8", FALSE, 0xff, 0xff, FALSE),
101 HOWTO(R_X86_64_PC8, 0, 0, 8, TRUE, 0, complain_overflow_signed,
102 bfd_elf_generic_reloc, "R_X86_64_PC8", FALSE, 0xff, 0xff, TRUE),
103 HOWTO(R_X86_64_DTPMOD64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
104 bfd_elf_generic_reloc, "R_X86_64_DTPMOD64", FALSE, MINUS_ONE,
105 MINUS_ONE, FALSE),
106 HOWTO(R_X86_64_DTPOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
107 bfd_elf_generic_reloc, "R_X86_64_DTPOFF64", FALSE, MINUS_ONE,
108 MINUS_ONE, FALSE),
109 HOWTO(R_X86_64_TPOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
110 bfd_elf_generic_reloc, "R_X86_64_TPOFF64", FALSE, MINUS_ONE,
111 MINUS_ONE, FALSE),
112 HOWTO(R_X86_64_TLSGD, 0, 2, 32, TRUE, 0, complain_overflow_signed,
113 bfd_elf_generic_reloc, "R_X86_64_TLSGD", FALSE, 0xffffffff,
114 0xffffffff, TRUE),
115 HOWTO(R_X86_64_TLSLD, 0, 2, 32, TRUE, 0, complain_overflow_signed,
116 bfd_elf_generic_reloc, "R_X86_64_TLSLD", FALSE, 0xffffffff,
117 0xffffffff, TRUE),
ac2aa337 118 HOWTO(R_X86_64_DTPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
b34976b6
AM
119 bfd_elf_generic_reloc, "R_X86_64_DTPOFF32", FALSE, 0xffffffff,
120 0xffffffff, FALSE),
121 HOWTO(R_X86_64_GOTTPOFF, 0, 2, 32, TRUE, 0, complain_overflow_signed,
122 bfd_elf_generic_reloc, "R_X86_64_GOTTPOFF", FALSE, 0xffffffff,
123 0xffffffff, TRUE),
124 HOWTO(R_X86_64_TPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_signed,
125 bfd_elf_generic_reloc, "R_X86_64_TPOFF32", FALSE, 0xffffffff,
126 0xffffffff, FALSE),
d6ab8113
JB
127 HOWTO(R_X86_64_PC64, 0, 4, 64, TRUE, 0, complain_overflow_bitfield,
128 bfd_elf_generic_reloc, "R_X86_64_PC64", FALSE, MINUS_ONE, MINUS_ONE,
129 TRUE),
130 HOWTO(R_X86_64_GOTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
131 bfd_elf_generic_reloc, "R_X86_64_GOTOFF64",
132 FALSE, MINUS_ONE, MINUS_ONE, FALSE),
133 HOWTO(R_X86_64_GOTPC32, 0, 2, 32, TRUE, 0, complain_overflow_signed,
134 bfd_elf_generic_reloc, "R_X86_64_GOTPC32",
135 FALSE, 0xffffffff, 0xffffffff, TRUE),
7b81dfbb
AJ
136 HOWTO(R_X86_64_GOT64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
137 bfd_elf_generic_reloc, "R_X86_64_GOT64", FALSE, MINUS_ONE, MINUS_ONE,
138 FALSE),
139 HOWTO(R_X86_64_GOTPCREL64, 0, 4, 64, TRUE, 0, complain_overflow_signed,
140 bfd_elf_generic_reloc, "R_X86_64_GOTPCREL64", FALSE, MINUS_ONE,
141 MINUS_ONE, TRUE),
142 HOWTO(R_X86_64_GOTPC64, 0, 4, 64, TRUE, 0, complain_overflow_signed,
143 bfd_elf_generic_reloc, "R_X86_64_GOTPC64",
144 FALSE, MINUS_ONE, MINUS_ONE, TRUE),
145 HOWTO(R_X86_64_GOTPLT64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
146 bfd_elf_generic_reloc, "R_X86_64_GOTPLT64", FALSE, MINUS_ONE,
147 MINUS_ONE, FALSE),
148 HOWTO(R_X86_64_PLTOFF64, 0, 4, 64, FALSE, 0, complain_overflow_signed,
149 bfd_elf_generic_reloc, "R_X86_64_PLTOFF64", FALSE, MINUS_ONE,
150 MINUS_ONE, FALSE),
1788fc08
L
151 HOWTO(R_X86_64_SIZE32, 0, 2, 32, FALSE, 0, complain_overflow_unsigned,
152 bfd_elf_generic_reloc, "R_X86_64_SIZE32", FALSE, 0xffffffff, 0xffffffff,
153 FALSE),
154 HOWTO(R_X86_64_SIZE64, 0, 4, 64, FALSE, 0, complain_overflow_unsigned,
155 bfd_elf_generic_reloc, "R_X86_64_SIZE64", FALSE, MINUS_ONE, MINUS_ONE,
156 FALSE),
67a4f2b7
AO
157 HOWTO(R_X86_64_GOTPC32_TLSDESC, 0, 2, 32, TRUE, 0,
158 complain_overflow_bitfield, bfd_elf_generic_reloc,
159 "R_X86_64_GOTPC32_TLSDESC",
160 FALSE, 0xffffffff, 0xffffffff, TRUE),
161 HOWTO(R_X86_64_TLSDESC_CALL, 0, 0, 0, FALSE, 0,
162 complain_overflow_dont, bfd_elf_generic_reloc,
163 "R_X86_64_TLSDESC_CALL",
164 FALSE, 0, 0, FALSE),
165 HOWTO(R_X86_64_TLSDESC, 0, 4, 64, FALSE, 0,
166 complain_overflow_bitfield, bfd_elf_generic_reloc,
167 "R_X86_64_TLSDESC",
168 FALSE, MINUS_ONE, MINUS_ONE, FALSE),
cbe950e9
L
169 HOWTO(R_X86_64_IRELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
170 bfd_elf_generic_reloc, "R_X86_64_IRELATIVE", FALSE, MINUS_ONE,
171 MINUS_ONE, FALSE),
64d25c44
L
172 HOWTO(R_X86_64_RELATIVE64, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
173 bfd_elf_generic_reloc, "R_X86_64_RELATIVE64", FALSE, MINUS_ONE,
174 MINUS_ONE, FALSE),
c3320543
L
175 HOWTO(R_X86_64_PC32_BND, 0, 2, 32, TRUE, 0, complain_overflow_signed,
176 bfd_elf_generic_reloc, "R_X86_64_PC32_BND", FALSE, 0xffffffff, 0xffffffff,
177 TRUE),
178 HOWTO(R_X86_64_PLT32_BND, 0, 2, 32, TRUE, 0, complain_overflow_signed,
179 bfd_elf_generic_reloc, "R_X86_64_PLT32_BND", FALSE, 0xffffffff, 0xffffffff,
180 TRUE),
fe4770f4 181
a33d77bc
JB
182 /* We have a gap in the reloc numbers here.
183 R_X86_64_standard counts the number up to this point, and
184 R_X86_64_vt_offset is the value to subtract from a reloc type of
185 R_X86_64_GNU_VT* to form an index into this table. */
c3320543 186#define R_X86_64_standard (R_X86_64_PLT32_BND + 1)
a33d77bc
JB
187#define R_X86_64_vt_offset (R_X86_64_GNU_VTINHERIT - R_X86_64_standard)
188
fe4770f4 189/* GNU extension to record C++ vtable hierarchy. */
b34976b6
AM
190 HOWTO (R_X86_64_GNU_VTINHERIT, 0, 4, 0, FALSE, 0, complain_overflow_dont,
191 NULL, "R_X86_64_GNU_VTINHERIT", FALSE, 0, 0, FALSE),
fe4770f4
AJ
192
193/* GNU extension to record C++ vtable member usage. */
b34976b6
AM
194 HOWTO (R_X86_64_GNU_VTENTRY, 0, 4, 0, FALSE, 0, complain_overflow_dont,
195 _bfd_elf_rel_vtable_reloc_fn, "R_X86_64_GNU_VTENTRY", FALSE, 0, 0,
d7921315
L
196 FALSE),
197
198/* Use complain_overflow_bitfield on R_X86_64_32 for x32. */
199 HOWTO(R_X86_64_32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
200 bfd_elf_generic_reloc, "R_X86_64_32", FALSE, 0xffffffff, 0xffffffff,
201 FALSE)
8d88c4ca
NC
202};
203
d8045f23
NC
204#define IS_X86_64_PCREL_TYPE(TYPE) \
205 ( ((TYPE) == R_X86_64_PC8) \
206 || ((TYPE) == R_X86_64_PC16) \
207 || ((TYPE) == R_X86_64_PC32) \
c3320543 208 || ((TYPE) == R_X86_64_PC32_BND) \
d8045f23
NC
209 || ((TYPE) == R_X86_64_PC64))
210
8d88c4ca 211/* Map BFD relocs to the x86_64 elf relocs. */
70256ad8
AJ
212struct elf_reloc_map
213{
8d88c4ca
NC
214 bfd_reloc_code_real_type bfd_reloc_val;
215 unsigned char elf_reloc_val;
216};
217
dc810e39 218static const struct elf_reloc_map x86_64_reloc_map[] =
8d88c4ca 219{
70256ad8
AJ
220 { BFD_RELOC_NONE, R_X86_64_NONE, },
221 { BFD_RELOC_64, R_X86_64_64, },
222 { BFD_RELOC_32_PCREL, R_X86_64_PC32, },
223 { BFD_RELOC_X86_64_GOT32, R_X86_64_GOT32,},
224 { BFD_RELOC_X86_64_PLT32, R_X86_64_PLT32,},
225 { BFD_RELOC_X86_64_COPY, R_X86_64_COPY, },
226 { BFD_RELOC_X86_64_GLOB_DAT, R_X86_64_GLOB_DAT, },
227 { BFD_RELOC_X86_64_JUMP_SLOT, R_X86_64_JUMP_SLOT, },
228 { BFD_RELOC_X86_64_RELATIVE, R_X86_64_RELATIVE, },
229 { BFD_RELOC_X86_64_GOTPCREL, R_X86_64_GOTPCREL, },
230 { BFD_RELOC_32, R_X86_64_32, },
231 { BFD_RELOC_X86_64_32S, R_X86_64_32S, },
232 { BFD_RELOC_16, R_X86_64_16, },
233 { BFD_RELOC_16_PCREL, R_X86_64_PC16, },
234 { BFD_RELOC_8, R_X86_64_8, },
235 { BFD_RELOC_8_PCREL, R_X86_64_PC8, },
bffbf940
JJ
236 { BFD_RELOC_X86_64_DTPMOD64, R_X86_64_DTPMOD64, },
237 { BFD_RELOC_X86_64_DTPOFF64, R_X86_64_DTPOFF64, },
238 { BFD_RELOC_X86_64_TPOFF64, R_X86_64_TPOFF64, },
239 { BFD_RELOC_X86_64_TLSGD, R_X86_64_TLSGD, },
240 { BFD_RELOC_X86_64_TLSLD, R_X86_64_TLSLD, },
241 { BFD_RELOC_X86_64_DTPOFF32, R_X86_64_DTPOFF32, },
242 { BFD_RELOC_X86_64_GOTTPOFF, R_X86_64_GOTTPOFF, },
243 { BFD_RELOC_X86_64_TPOFF32, R_X86_64_TPOFF32, },
d6ab8113
JB
244 { BFD_RELOC_64_PCREL, R_X86_64_PC64, },
245 { BFD_RELOC_X86_64_GOTOFF64, R_X86_64_GOTOFF64, },
246 { BFD_RELOC_X86_64_GOTPC32, R_X86_64_GOTPC32, },
7b81dfbb
AJ
247 { BFD_RELOC_X86_64_GOT64, R_X86_64_GOT64, },
248 { BFD_RELOC_X86_64_GOTPCREL64,R_X86_64_GOTPCREL64, },
249 { BFD_RELOC_X86_64_GOTPC64, R_X86_64_GOTPC64, },
250 { BFD_RELOC_X86_64_GOTPLT64, R_X86_64_GOTPLT64, },
251 { BFD_RELOC_X86_64_PLTOFF64, R_X86_64_PLTOFF64, },
1788fc08
L
252 { BFD_RELOC_SIZE32, R_X86_64_SIZE32, },
253 { BFD_RELOC_SIZE64, R_X86_64_SIZE64, },
67a4f2b7
AO
254 { BFD_RELOC_X86_64_GOTPC32_TLSDESC, R_X86_64_GOTPC32_TLSDESC, },
255 { BFD_RELOC_X86_64_TLSDESC_CALL, R_X86_64_TLSDESC_CALL, },
256 { BFD_RELOC_X86_64_TLSDESC, R_X86_64_TLSDESC, },
cbe950e9 257 { BFD_RELOC_X86_64_IRELATIVE, R_X86_64_IRELATIVE, },
c3320543
L
258 { BFD_RELOC_X86_64_PC32_BND, R_X86_64_PC32_BND,},
259 { BFD_RELOC_X86_64_PLT32_BND, R_X86_64_PLT32_BND,},
fe4770f4
AJ
260 { BFD_RELOC_VTABLE_INHERIT, R_X86_64_GNU_VTINHERIT, },
261 { BFD_RELOC_VTABLE_ENTRY, R_X86_64_GNU_VTENTRY, },
8d88c4ca
NC
262};
263
67a4f2b7 264static reloc_howto_type *
351f65ca 265elf_x86_64_rtype_to_howto (bfd *abfd, unsigned r_type)
67a4f2b7
AO
266{
267 unsigned i;
268
d7921315
L
269 if (r_type == (unsigned int) R_X86_64_32)
270 {
271 if (ABI_64_P (abfd))
272 i = r_type;
273 else
274 i = ARRAY_SIZE (x86_64_elf_howto_table) - 1;
275 }
276 else if (r_type < (unsigned int) R_X86_64_GNU_VTINHERIT
277 || r_type >= (unsigned int) R_X86_64_max)
67a4f2b7
AO
278 {
279 if (r_type >= (unsigned int) R_X86_64_standard)
280 {
281 (*_bfd_error_handler) (_("%B: invalid relocation type %d"),
282 abfd, (int) r_type);
283 r_type = R_X86_64_NONE;
284 }
285 i = r_type;
286 }
287 else
288 i = r_type - (unsigned int) R_X86_64_vt_offset;
289 BFD_ASSERT (x86_64_elf_howto_table[i].type == r_type);
290 return &x86_64_elf_howto_table[i];
291}
8d88c4ca
NC
292
293/* Given a BFD reloc type, return a HOWTO structure. */
294static reloc_howto_type *
351f65ca
L
295elf_x86_64_reloc_type_lookup (bfd *abfd,
296 bfd_reloc_code_real_type code)
8d88c4ca
NC
297{
298 unsigned int i;
27482721 299
8d88c4ca
NC
300 for (i = 0; i < sizeof (x86_64_reloc_map) / sizeof (struct elf_reloc_map);
301 i++)
302 {
303 if (x86_64_reloc_map[i].bfd_reloc_val == code)
351f65ca
L
304 return elf_x86_64_rtype_to_howto (abfd,
305 x86_64_reloc_map[i].elf_reloc_val);
8d88c4ca
NC
306 }
307 return 0;
308}
309
157090f7 310static reloc_howto_type *
d7921315 311elf_x86_64_reloc_name_lookup (bfd *abfd,
351f65ca 312 const char *r_name)
157090f7
AM
313{
314 unsigned int i;
315
d7921315
L
316 if (!ABI_64_P (abfd) && strcasecmp (r_name, "R_X86_64_32") == 0)
317 {
318 /* Get x32 R_X86_64_32. */
319 reloc_howto_type *reloc
320 = &x86_64_elf_howto_table[ARRAY_SIZE (x86_64_elf_howto_table) - 1];
321 BFD_ASSERT (reloc->type == (unsigned int) R_X86_64_32);
322 return reloc;
323 }
324
325 for (i = 0; i < ARRAY_SIZE (x86_64_elf_howto_table); i++)
157090f7
AM
326 if (x86_64_elf_howto_table[i].name != NULL
327 && strcasecmp (x86_64_elf_howto_table[i].name, r_name) == 0)
328 return &x86_64_elf_howto_table[i];
329
330 return NULL;
331}
332
8d88c4ca 333/* Given an x86_64 ELF reloc type, fill in an arelent structure. */
8da6118f 334
8d88c4ca 335static void
351f65ca
L
336elf_x86_64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
337 Elf_Internal_Rela *dst)
8d88c4ca 338{
67a4f2b7 339 unsigned r_type;
8d88c4ca 340
351f65ca
L
341 r_type = ELF32_R_TYPE (dst->r_info);
342 cache_ptr->howto = elf_x86_64_rtype_to_howto (abfd, r_type);
8d88c4ca
NC
343 BFD_ASSERT (r_type == cache_ptr->howto->type);
344}
70256ad8 345\f
3bab7989 346/* Support for core dump NOTE sections. */
b34976b6 347static bfd_boolean
351f65ca 348elf_x86_64_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
3bab7989
ML
349{
350 int offset;
eea6121a 351 size_t size;
3bab7989
ML
352
353 switch (note->descsz)
354 {
355 default:
b34976b6 356 return FALSE;
3bab7989 357
bcd823f1
L
358 case 296: /* sizeof(istruct elf_prstatus) on Linux/x32 */
359 /* pr_cursig */
228e534f 360 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
bcd823f1
L
361
362 /* pr_pid */
228e534f 363 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
bcd823f1
L
364
365 /* pr_reg */
366 offset = 72;
367 size = 216;
368
369 break;
370
3bab7989
ML
371 case 336: /* sizeof(istruct elf_prstatus) on Linux/x86_64 */
372 /* pr_cursig */
228e534f 373 elf_tdata (abfd)->core->signal
3bab7989
ML
374 = bfd_get_16 (abfd, note->descdata + 12);
375
376 /* pr_pid */
228e534f 377 elf_tdata (abfd)->core->lwpid
3bab7989
ML
378 = bfd_get_32 (abfd, note->descdata + 32);
379
380 /* pr_reg */
381 offset = 112;
eea6121a 382 size = 216;
3bab7989
ML
383
384 break;
385 }
386
387 /* Make a ".reg/999" section. */
388 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
eea6121a 389 size, note->descpos + offset);
3bab7989
ML
390}
391
b34976b6 392static bfd_boolean
351f65ca 393elf_x86_64_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
3bab7989
ML
394{
395 switch (note->descsz)
396 {
397 default:
b34976b6 398 return FALSE;
3bab7989 399
bcd823f1 400 case 124: /* sizeof(struct elf_prpsinfo) on Linux/x32 */
228e534f 401 elf_tdata (abfd)->core->pid
bcd823f1 402 = bfd_get_32 (abfd, note->descdata + 12);
228e534f 403 elf_tdata (abfd)->core->program
bcd823f1 404 = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
228e534f 405 elf_tdata (abfd)->core->command
bcd823f1
L
406 = _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
407 break;
408
3bab7989 409 case 136: /* sizeof(struct elf_prpsinfo) on Linux/x86_64 */
228e534f 410 elf_tdata (abfd)->core->pid
261b8d08 411 = bfd_get_32 (abfd, note->descdata + 24);
228e534f 412 elf_tdata (abfd)->core->program
3bab7989 413 = _bfd_elfcore_strndup (abfd, note->descdata + 40, 16);
228e534f 414 elf_tdata (abfd)->core->command
3bab7989
ML
415 = _bfd_elfcore_strndup (abfd, note->descdata + 56, 80);
416 }
417
418 /* Note that for some reason, a spurious space is tacked
419 onto the end of the args in some (at least one anyway)
420 implementations, so strip it off if it exists. */
421
422 {
228e534f 423 char *command = elf_tdata (abfd)->core->command;
3bab7989
ML
424 int n = strlen (command);
425
426 if (0 < n && command[n - 1] == ' ')
427 command[n - 1] = '\0';
428 }
429
b34976b6 430 return TRUE;
3bab7989 431}
8fd79e71
L
432
433#ifdef CORE_HEADER
434static char *
435elf_x86_64_write_core_note (bfd *abfd, char *buf, int *bufsiz,
436 int note_type, ...)
437{
438 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
8fd79e71
L
439 va_list ap;
440 const char *fname, *psargs;
441 long pid;
442 int cursig;
443 const void *gregs;
444
445 switch (note_type)
446 {
447 default:
448 return NULL;
449
450 case NT_PRPSINFO:
451 va_start (ap, note_type);
452 fname = va_arg (ap, const char *);
453 psargs = va_arg (ap, const char *);
454 va_end (ap);
455
456 if (bed->s->elfclass == ELFCLASS32)
457 {
458 prpsinfo32_t data;
459 memset (&data, 0, sizeof (data));
460 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
461 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
e85c6a70
JK
462 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
463 &data, sizeof (data));
8fd79e71
L
464 }
465 else
466 {
b1bd052d 467 prpsinfo64_t data;
8fd79e71
L
468 memset (&data, 0, sizeof (data));
469 strncpy (data.pr_fname, fname, sizeof (data.pr_fname));
470 strncpy (data.pr_psargs, psargs, sizeof (data.pr_psargs));
e85c6a70
JK
471 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
472 &data, sizeof (data));
8fd79e71 473 }
e85c6a70 474 /* NOTREACHED */
8fd79e71
L
475
476 case NT_PRSTATUS:
477 va_start (ap, note_type);
478 pid = va_arg (ap, long);
479 cursig = va_arg (ap, int);
480 gregs = va_arg (ap, const void *);
481 va_end (ap);
482
483 if (bed->s->elfclass == ELFCLASS32)
484 {
485 if (bed->elf_machine_code == EM_X86_64)
486 {
487 prstatusx32_t prstat;
488 memset (&prstat, 0, sizeof (prstat));
489 prstat.pr_pid = pid;
490 prstat.pr_cursig = cursig;
491 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
492 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
493 &prstat, sizeof (prstat));
8fd79e71
L
494 }
495 else
496 {
497 prstatus32_t prstat;
498 memset (&prstat, 0, sizeof (prstat));
499 prstat.pr_pid = pid;
500 prstat.pr_cursig = cursig;
501 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
502 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
503 &prstat, sizeof (prstat));
8fd79e71
L
504 }
505 }
506 else
507 {
b1bd052d 508 prstatus64_t prstat;
8fd79e71
L
509 memset (&prstat, 0, sizeof (prstat));
510 prstat.pr_pid = pid;
511 prstat.pr_cursig = cursig;
512 memcpy (&prstat.pr_reg, gregs, sizeof (prstat.pr_reg));
e85c6a70
JK
513 return elfcore_write_note (abfd, buf, bufsiz, "CORE", note_type,
514 &prstat, sizeof (prstat));
8fd79e71 515 }
8fd79e71 516 }
e85c6a70 517 /* NOTREACHED */
8fd79e71
L
518}
519#endif
3bab7989 520\f
407443a3 521/* Functions for the x86-64 ELF linker. */
70256ad8 522
407443a3 523/* The name of the dynamic interpreter. This is put in the .interp
70256ad8
AJ
524 section. */
525
351f65ca 526#define ELF64_DYNAMIC_INTERPRETER "/lib/ld64.so.1"
eec9dd95 527#define ELF32_DYNAMIC_INTERPRETER "/lib/ldx32.so.1"
70256ad8 528
d40d037c
AJ
529/* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
530 copying dynamic variables from a shared lib into an app's dynbss
531 section, and instead use a dynamic relocation to point into the
532 shared lib. */
533#define ELIMINATE_COPY_RELOCS 1
534
70256ad8
AJ
535/* The size in bytes of an entry in the global offset table. */
536
537#define GOT_ENTRY_SIZE 8
8d88c4ca 538
70256ad8 539/* The size in bytes of an entry in the procedure linkage table. */
8d88c4ca 540
70256ad8
AJ
541#define PLT_ENTRY_SIZE 16
542
543/* The first entry in a procedure linkage table looks like this. See the
544 SVR4 ABI i386 supplement and the x86-64 ABI to see how this works. */
545
351f65ca 546static const bfd_byte elf_x86_64_plt0_entry[PLT_ENTRY_SIZE] =
70256ad8 547{
653165cc
AJ
548 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
549 0xff, 0x25, 16, 0, 0, 0, /* jmpq *GOT+16(%rip) */
10efb593 550 0x0f, 0x1f, 0x40, 0x00 /* nopl 0(%rax) */
70256ad8
AJ
551};
552
553/* Subsequent entries in a procedure linkage table look like this. */
554
351f65ca 555static const bfd_byte elf_x86_64_plt_entry[PLT_ENTRY_SIZE] =
70256ad8 556{
653165cc 557 0xff, 0x25, /* jmpq *name@GOTPC(%rip) */
407443a3 558 0, 0, 0, 0, /* replaced with offset to this symbol in .got. */
653165cc 559 0x68, /* pushq immediate */
70256ad8
AJ
560 0, 0, 0, 0, /* replaced with index into relocation table. */
561 0xe9, /* jmp relative */
562 0, 0, 0, 0 /* replaced with offset to start of .plt0. */
563};
564
e41b3a13
JJ
565/* .eh_frame covering the .plt section. */
566
567static const bfd_byte elf_x86_64_eh_frame_plt[] =
568{
569#define PLT_CIE_LENGTH 20
570#define PLT_FDE_LENGTH 36
571#define PLT_FDE_START_OFFSET 4 + PLT_CIE_LENGTH + 8
572#define PLT_FDE_LEN_OFFSET 4 + PLT_CIE_LENGTH + 12
573 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
574 0, 0, 0, 0, /* CIE ID */
575 1, /* CIE version */
576 'z', 'R', 0, /* Augmentation string */
577 1, /* Code alignment factor */
578 0x78, /* Data alignment factor */
579 16, /* Return address column */
580 1, /* Augmentation size */
581 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
582 DW_CFA_def_cfa, 7, 8, /* DW_CFA_def_cfa: r7 (rsp) ofs 8 */
583 DW_CFA_offset + 16, 1, /* DW_CFA_offset: r16 (rip) at cfa-8 */
584 DW_CFA_nop, DW_CFA_nop,
585
586 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
587 PLT_CIE_LENGTH + 8, 0, 0, 0, /* CIE pointer */
588 0, 0, 0, 0, /* R_X86_64_PC32 .plt goes here */
589 0, 0, 0, 0, /* .plt size goes here */
590 0, /* Augmentation size */
591 DW_CFA_def_cfa_offset, 16, /* DW_CFA_def_cfa_offset: 16 */
592 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
593 DW_CFA_def_cfa_offset, 24, /* DW_CFA_def_cfa_offset: 24 */
594 DW_CFA_advance_loc + 10, /* DW_CFA_advance_loc: 10 to __PLT__+16 */
595 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
596 11, /* Block length */
597 DW_OP_breg7, 8, /* DW_OP_breg7 (rsp): 8 */
598 DW_OP_breg16, 0, /* DW_OP_breg16 (rip): 0 */
599 DW_OP_lit15, DW_OP_and, DW_OP_lit11, DW_OP_ge,
600 DW_OP_lit3, DW_OP_shl, DW_OP_plus,
601 DW_CFA_nop, DW_CFA_nop, DW_CFA_nop, DW_CFA_nop
602};
603
eed180f8
RM
604/* Architecture-specific backend data for x86-64. */
605
606struct elf_x86_64_backend_data
607{
608 /* Templates for the initial PLT entry and for subsequent entries. */
609 const bfd_byte *plt0_entry;
610 const bfd_byte *plt_entry;
611 unsigned int plt_entry_size; /* Size of each PLT entry. */
612
613 /* Offsets into plt0_entry that are to be replaced with GOT[1] and GOT[2]. */
614 unsigned int plt0_got1_offset;
615 unsigned int plt0_got2_offset;
616
617 /* Offset of the end of the PC-relative instruction containing
618 plt0_got2_offset. */
619 unsigned int plt0_got2_insn_end;
620
621 /* Offsets into plt_entry that are to be replaced with... */
622 unsigned int plt_got_offset; /* ... address of this symbol in .got. */
623 unsigned int plt_reloc_offset; /* ... offset into relocation table. */
624 unsigned int plt_plt_offset; /* ... offset to start of .plt. */
625
626 /* Length of the PC-relative instruction containing plt_got_offset. */
627 unsigned int plt_got_insn_size;
628
629 /* Offset of the end of the PC-relative jump to plt0_entry. */
630 unsigned int plt_plt_insn_end;
631
632 /* Offset into plt_entry where the initial value of the GOT entry points. */
633 unsigned int plt_lazy_offset;
634
635 /* .eh_frame covering the .plt section. */
636 const bfd_byte *eh_frame_plt;
637 unsigned int eh_frame_plt_size;
638};
639
f8222080
L
640#define get_elf_x86_64_arch_data(bed) \
641 ((const struct elf_x86_64_backend_data *) (bed)->arch_data)
642
eed180f8 643#define get_elf_x86_64_backend_data(abfd) \
f8222080 644 get_elf_x86_64_arch_data (get_elf_backend_data (abfd))
eed180f8
RM
645
646#define GET_PLT_ENTRY_SIZE(abfd) \
647 get_elf_x86_64_backend_data (abfd)->plt_entry_size
648
649/* These are the standard parameters. */
650static const struct elf_x86_64_backend_data elf_x86_64_arch_bed =
651 {
652 elf_x86_64_plt0_entry, /* plt0_entry */
653 elf_x86_64_plt_entry, /* plt_entry */
654 sizeof (elf_x86_64_plt_entry), /* plt_entry_size */
655 2, /* plt0_got1_offset */
656 8, /* plt0_got2_offset */
657 12, /* plt0_got2_insn_end */
658 2, /* plt_got_offset */
659 7, /* plt_reloc_offset */
660 12, /* plt_plt_offset */
661 6, /* plt_got_insn_size */
662 PLT_ENTRY_SIZE, /* plt_plt_insn_end */
663 6, /* plt_lazy_offset */
664 elf_x86_64_eh_frame_plt, /* eh_frame_plt */
665 sizeof (elf_x86_64_eh_frame_plt), /* eh_frame_plt_size */
666 };
667
668#define elf_backend_arch_data &elf_x86_64_arch_bed
669
70256ad8
AJ
670/* x86-64 ELF linker hash entry. */
671
351f65ca 672struct elf_x86_64_link_hash_entry
70256ad8 673{
c434dee6 674 struct elf_link_hash_entry elf;
70256ad8 675
c434dee6 676 /* Track dynamic relocs copied for this symbol. */
e03a8ed8 677 struct elf_dyn_relocs *dyn_relocs;
bffbf940
JJ
678
679#define GOT_UNKNOWN 0
680#define GOT_NORMAL 1
681#define GOT_TLS_GD 2
682#define GOT_TLS_IE 3
67a4f2b7
AO
683#define GOT_TLS_GDESC 4
684#define GOT_TLS_GD_BOTH_P(type) \
685 ((type) == (GOT_TLS_GD | GOT_TLS_GDESC))
686#define GOT_TLS_GD_P(type) \
687 ((type) == GOT_TLS_GD || GOT_TLS_GD_BOTH_P (type))
688#define GOT_TLS_GDESC_P(type) \
689 ((type) == GOT_TLS_GDESC || GOT_TLS_GD_BOTH_P (type))
690#define GOT_TLS_GD_ANY_P(type) \
691 (GOT_TLS_GD_P (type) || GOT_TLS_GDESC_P (type))
bffbf940 692 unsigned char tls_type;
67a4f2b7
AO
693
694 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
695 starting at the end of the jump table. */
696 bfd_vma tlsdesc_got;
bffbf940
JJ
697};
698
351f65ca
L
699#define elf_x86_64_hash_entry(ent) \
700 ((struct elf_x86_64_link_hash_entry *)(ent))
bffbf940 701
351f65ca 702struct elf_x86_64_obj_tdata
bffbf940
JJ
703{
704 struct elf_obj_tdata root;
705
706 /* tls_type for each local got entry. */
707 char *local_got_tls_type;
67a4f2b7
AO
708
709 /* GOTPLT entries for TLS descriptors. */
710 bfd_vma *local_tlsdesc_gotent;
70256ad8
AJ
711};
712
351f65ca
L
713#define elf_x86_64_tdata(abfd) \
714 ((struct elf_x86_64_obj_tdata *) (abfd)->tdata.any)
bffbf940 715
351f65ca
L
716#define elf_x86_64_local_got_tls_type(abfd) \
717 (elf_x86_64_tdata (abfd)->local_got_tls_type)
bffbf940 718
351f65ca
L
719#define elf_x86_64_local_tlsdesc_gotent(abfd) \
720 (elf_x86_64_tdata (abfd)->local_tlsdesc_gotent)
bffbf940 721
0ffa91dd
NC
722#define is_x86_64_elf(bfd) \
723 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
724 && elf_tdata (bfd) != NULL \
4dfe6ac6 725 && elf_object_id (bfd) == X86_64_ELF_DATA)
0ffa91dd
NC
726
727static bfd_boolean
351f65ca 728elf_x86_64_mkobject (bfd *abfd)
0ffa91dd 729{
351f65ca 730 return bfd_elf_allocate_object (abfd, sizeof (struct elf_x86_64_obj_tdata),
4dfe6ac6 731 X86_64_ELF_DATA);
0ffa91dd
NC
732}
733
c434dee6 734/* x86-64 ELF linker hash table. */
8d88c4ca 735
351f65ca 736struct elf_x86_64_link_hash_table
407443a3 737{
c434dee6 738 struct elf_link_hash_table elf;
70256ad8 739
c434dee6 740 /* Short-cuts to get to dynamic linker sections. */
c434dee6
AJ
741 asection *sdynbss;
742 asection *srelbss;
e41b3a13 743 asection *plt_eh_frame;
70256ad8 744
4dfe6ac6
NC
745 union
746 {
bffbf940
JJ
747 bfd_signed_vma refcount;
748 bfd_vma offset;
749 } tls_ld_got;
750
67a4f2b7
AO
751 /* The amount of space used by the jump slots in the GOT. */
752 bfd_vma sgotplt_jump_table_size;
753
87d72d41
AM
754 /* Small local sym cache. */
755 struct sym_cache sym_cache;
9f03412a 756
351f65ca
L
757 bfd_vma (*r_info) (bfd_vma, bfd_vma);
758 bfd_vma (*r_sym) (bfd_vma);
248775ba 759 unsigned int pointer_r_type;
351f65ca
L
760 const char *dynamic_interpreter;
761 int dynamic_interpreter_size;
762
9f03412a
AO
763 /* _TLS_MODULE_BASE_ symbol. */
764 struct bfd_link_hash_entry *tls_module_base;
c25bc9fc
L
765
766 /* Used by local STT_GNU_IFUNC symbols. */
767 htab_t loc_hash_table;
4dfe6ac6
NC
768 void * loc_hash_memory;
769
770 /* The offset into splt of the PLT entry for the TLS descriptor
771 resolver. Special values are 0, if not necessary (or not found
772 to be necessary yet), and -1 if needed but not determined
773 yet. */
774 bfd_vma tlsdesc_plt;
775 /* The offset into sgot of the GOT entry used by the PLT entry
776 above. */
777 bfd_vma tlsdesc_got;
e1f98742
L
778
779 /* The index of the next R_X86_64_JUMP_SLOT entry in .rela.plt. */
780 bfd_vma next_jump_slot_index;
781 /* The index of the next R_X86_64_IRELATIVE entry in .rela.plt. */
782 bfd_vma next_irelative_index;
c434dee6 783};
70256ad8
AJ
784
785/* Get the x86-64 ELF linker hash table from a link_info structure. */
8d88c4ca 786
351f65ca 787#define elf_x86_64_hash_table(p) \
4dfe6ac6 788 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
351f65ca 789 == X86_64_ELF_DATA ? ((struct elf_x86_64_link_hash_table *) ((p)->hash)) : NULL)
8d88c4ca 790
351f65ca 791#define elf_x86_64_compute_jump_table_size(htab) \
6de2ae4a 792 ((htab)->elf.srelplt->reloc_count * GOT_ENTRY_SIZE)
67a4f2b7 793
407443a3 794/* Create an entry in an x86-64 ELF linker hash table. */
70256ad8
AJ
795
796static struct bfd_hash_entry *
351f65ca
L
797elf_x86_64_link_hash_newfunc (struct bfd_hash_entry *entry,
798 struct bfd_hash_table *table,
799 const char *string)
70256ad8 800{
70256ad8 801 /* Allocate the structure if it has not already been allocated by a
c434dee6
AJ
802 subclass. */
803 if (entry == NULL)
804 {
a50b1753 805 entry = (struct bfd_hash_entry *)
eed180f8
RM
806 bfd_hash_allocate (table,
807 sizeof (struct elf_x86_64_link_hash_entry));
c434dee6
AJ
808 if (entry == NULL)
809 return entry;
810 }
70256ad8
AJ
811
812 /* Call the allocation method of the superclass. */
c434dee6
AJ
813 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
814 if (entry != NULL)
70256ad8 815 {
351f65ca 816 struct elf_x86_64_link_hash_entry *eh;
c434dee6 817
351f65ca 818 eh = (struct elf_x86_64_link_hash_entry *) entry;
c434dee6 819 eh->dyn_relocs = NULL;
bffbf940 820 eh->tls_type = GOT_UNKNOWN;
67a4f2b7 821 eh->tlsdesc_got = (bfd_vma) -1;
70256ad8
AJ
822 }
823
c434dee6 824 return entry;
70256ad8
AJ
825}
826
c25bc9fc
L
827/* Compute a hash of a local hash entry. We use elf_link_hash_entry
828 for local symbol so that we can handle local STT_GNU_IFUNC symbols
829 as global symbol. We reuse indx and dynstr_index for local symbol
830 hash since they aren't used by global symbols in this backend. */
831
832static hashval_t
351f65ca 833elf_x86_64_local_htab_hash (const void *ptr)
c25bc9fc
L
834{
835 struct elf_link_hash_entry *h
836 = (struct elf_link_hash_entry *) ptr;
d2149d72 837 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
c25bc9fc
L
838}
839
840/* Compare local hash entries. */
841
842static int
351f65ca 843elf_x86_64_local_htab_eq (const void *ptr1, const void *ptr2)
c25bc9fc
L
844{
845 struct elf_link_hash_entry *h1
846 = (struct elf_link_hash_entry *) ptr1;
847 struct elf_link_hash_entry *h2
848 = (struct elf_link_hash_entry *) ptr2;
849
850 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
851}
852
853/* Find and/or create a hash entry for local symbol. */
854
855static struct elf_link_hash_entry *
351f65ca
L
856elf_x86_64_get_local_sym_hash (struct elf_x86_64_link_hash_table *htab,
857 bfd *abfd, const Elf_Internal_Rela *rel,
858 bfd_boolean create)
c25bc9fc 859{
351f65ca 860 struct elf_x86_64_link_hash_entry e, *ret;
c25bc9fc 861 asection *sec = abfd->sections;
d2149d72 862 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
351f65ca 863 htab->r_sym (rel->r_info));
c25bc9fc
L
864 void **slot;
865
866 e.elf.indx = sec->id;
351f65ca 867 e.elf.dynstr_index = htab->r_sym (rel->r_info);
c25bc9fc
L
868 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
869 create ? INSERT : NO_INSERT);
870
871 if (!slot)
872 return NULL;
873
874 if (*slot)
875 {
351f65ca 876 ret = (struct elf_x86_64_link_hash_entry *) *slot;
c25bc9fc
L
877 return &ret->elf;
878 }
879
351f65ca 880 ret = (struct elf_x86_64_link_hash_entry *)
c25bc9fc 881 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
351f65ca 882 sizeof (struct elf_x86_64_link_hash_entry));
c25bc9fc
L
883 if (ret)
884 {
885 memset (ret, 0, sizeof (*ret));
886 ret->elf.indx = sec->id;
351f65ca 887 ret->elf.dynstr_index = htab->r_sym (rel->r_info);
c25bc9fc 888 ret->elf.dynindx = -1;
c25bc9fc
L
889 *slot = ret;
890 }
891 return &ret->elf;
892}
893
8d88c4ca
NC
894/* Create an X86-64 ELF linker hash table. */
895
896static struct bfd_link_hash_table *
351f65ca 897elf_x86_64_link_hash_table_create (bfd *abfd)
8d88c4ca 898{
351f65ca
L
899 struct elf_x86_64_link_hash_table *ret;
900 bfd_size_type amt = sizeof (struct elf_x86_64_link_hash_table);
8d88c4ca 901
7bf52ea2 902 ret = (struct elf_x86_64_link_hash_table *) bfd_zmalloc (amt);
c434dee6 903 if (ret == NULL)
8d88c4ca
NC
904 return NULL;
905
eb4ff4d6 906 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
351f65ca
L
907 elf_x86_64_link_hash_newfunc,
908 sizeof (struct elf_x86_64_link_hash_entry),
4dfe6ac6 909 X86_64_ELF_DATA))
8d88c4ca 910 {
e2d34d7d 911 free (ret);
8d88c4ca
NC
912 return NULL;
913 }
914
351f65ca
L
915 if (ABI_64_P (abfd))
916 {
917 ret->r_info = elf64_r_info;
918 ret->r_sym = elf64_r_sym;
248775ba 919 ret->pointer_r_type = R_X86_64_64;
351f65ca
L
920 ret->dynamic_interpreter = ELF64_DYNAMIC_INTERPRETER;
921 ret->dynamic_interpreter_size = sizeof ELF64_DYNAMIC_INTERPRETER;
922 }
923 else
924 {
925 ret->r_info = elf32_r_info;
926 ret->r_sym = elf32_r_sym;
248775ba 927 ret->pointer_r_type = R_X86_64_32;
351f65ca
L
928 ret->dynamic_interpreter = ELF32_DYNAMIC_INTERPRETER;
929 ret->dynamic_interpreter_size = sizeof ELF32_DYNAMIC_INTERPRETER;
930 }
931
c25bc9fc 932 ret->loc_hash_table = htab_try_create (1024,
351f65ca
L
933 elf_x86_64_local_htab_hash,
934 elf_x86_64_local_htab_eq,
c25bc9fc
L
935 NULL);
936 ret->loc_hash_memory = objalloc_create ();
937 if (!ret->loc_hash_table || !ret->loc_hash_memory)
938 {
939 free (ret);
940 return NULL;
941 }
942
c434dee6
AJ
943 return &ret->elf.root;
944}
945
c25bc9fc
L
946/* Destroy an X86-64 ELF linker hash table. */
947
948static void
351f65ca 949elf_x86_64_link_hash_table_free (struct bfd_link_hash_table *hash)
c25bc9fc 950{
351f65ca
L
951 struct elf_x86_64_link_hash_table *htab
952 = (struct elf_x86_64_link_hash_table *) hash;
c25bc9fc
L
953
954 if (htab->loc_hash_table)
955 htab_delete (htab->loc_hash_table);
956 if (htab->loc_hash_memory)
957 objalloc_free ((struct objalloc *) htab->loc_hash_memory);
9f7c3e5e 958 _bfd_elf_link_hash_table_free (hash);
c25bc9fc
L
959}
960
c434dee6
AJ
961/* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
962 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
963 hash table. */
964
b34976b6 965static bfd_boolean
351f65ca
L
966elf_x86_64_create_dynamic_sections (bfd *dynobj,
967 struct bfd_link_info *info)
c434dee6 968{
351f65ca 969 struct elf_x86_64_link_hash_table *htab;
c434dee6 970
c434dee6 971 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
b34976b6 972 return FALSE;
c434dee6 973
351f65ca 974 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
975 if (htab == NULL)
976 return FALSE;
977
3d4d4302 978 htab->sdynbss = bfd_get_linker_section (dynobj, ".dynbss");
c434dee6 979 if (!info->shared)
3d4d4302 980 htab->srelbss = bfd_get_linker_section (dynobj, ".rela.bss");
c434dee6 981
6de2ae4a 982 if (!htab->sdynbss
c434dee6
AJ
983 || (!info->shared && !htab->srelbss))
984 abort ();
985
e41b3a13 986 if (!info->no_ld_generated_unwind_info
2fe0fd06 987 && htab->plt_eh_frame == NULL
e4de50d4 988 && htab->elf.splt != NULL)
e41b3a13 989 {
bbf96e4e
L
990 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_READONLY
991 | SEC_HAS_CONTENTS | SEC_IN_MEMORY
992 | SEC_LINKER_CREATED);
e41b3a13 993 htab->plt_eh_frame
bbf96e4e 994 = bfd_make_section_anyway_with_flags (dynobj, ".eh_frame", flags);
e41b3a13
JJ
995 if (htab->plt_eh_frame == NULL
996 || !bfd_set_section_alignment (dynobj, htab->plt_eh_frame, 3))
997 return FALSE;
e41b3a13 998 }
b34976b6 999 return TRUE;
c434dee6
AJ
1000}
1001
1002/* Copy the extra info we tack onto an elf_link_hash_entry. */
1003
1004static void
351f65ca
L
1005elf_x86_64_copy_indirect_symbol (struct bfd_link_info *info,
1006 struct elf_link_hash_entry *dir,
1007 struct elf_link_hash_entry *ind)
c434dee6 1008{
351f65ca 1009 struct elf_x86_64_link_hash_entry *edir, *eind;
c434dee6 1010
351f65ca
L
1011 edir = (struct elf_x86_64_link_hash_entry *) dir;
1012 eind = (struct elf_x86_64_link_hash_entry *) ind;
c434dee6
AJ
1013
1014 if (eind->dyn_relocs != NULL)
1015 {
1016 if (edir->dyn_relocs != NULL)
1017 {
e03a8ed8
L
1018 struct elf_dyn_relocs **pp;
1019 struct elf_dyn_relocs *p;
c434dee6 1020
fcfa13d2 1021 /* Add reloc counts against the indirect sym to the direct sym
c434dee6
AJ
1022 list. Merge any entries against the same section. */
1023 for (pp = &eind->dyn_relocs; (p = *pp) != NULL; )
1024 {
e03a8ed8 1025 struct elf_dyn_relocs *q;
c434dee6
AJ
1026
1027 for (q = edir->dyn_relocs; q != NULL; q = q->next)
1028 if (q->sec == p->sec)
1029 {
1030 q->pc_count += p->pc_count;
1031 q->count += p->count;
1032 *pp = p->next;
1033 break;
1034 }
1035 if (q == NULL)
1036 pp = &p->next;
1037 }
1038 *pp = edir->dyn_relocs;
1039 }
1040
1041 edir->dyn_relocs = eind->dyn_relocs;
1042 eind->dyn_relocs = NULL;
1043 }
1044
bffbf940
JJ
1045 if (ind->root.type == bfd_link_hash_indirect
1046 && dir->got.refcount <= 0)
1047 {
1048 edir->tls_type = eind->tls_type;
1049 eind->tls_type = GOT_UNKNOWN;
1050 }
1051
d40d037c
AJ
1052 if (ELIMINATE_COPY_RELOCS
1053 && ind->root.type != bfd_link_hash_indirect
f5385ebf
AM
1054 && dir->dynamic_adjusted)
1055 {
1056 /* If called to transfer flags for a weakdef during processing
1057 of elf_adjust_dynamic_symbol, don't copy non_got_ref.
1058 We clear it ourselves for ELIMINATE_COPY_RELOCS. */
1059 dir->ref_dynamic |= ind->ref_dynamic;
1060 dir->ref_regular |= ind->ref_regular;
1061 dir->ref_regular_nonweak |= ind->ref_regular_nonweak;
1062 dir->needs_plt |= ind->needs_plt;
1063 dir->pointer_equality_needed |= ind->pointer_equality_needed;
1064 }
d40d037c 1065 else
fcfa13d2 1066 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
8d88c4ca
NC
1067}
1068
b34976b6 1069static bfd_boolean
27482721 1070elf64_x86_64_elf_object_p (bfd *abfd)
bffbf940 1071{
8d88c4ca
NC
1072 /* Set the right machine number for an x86-64 elf64 file. */
1073 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x86_64);
b34976b6 1074 return TRUE;
8d88c4ca
NC
1075}
1076
8059fb19
RM
1077static bfd_boolean
1078elf32_x86_64_elf_object_p (bfd *abfd)
1079{
1080 /* Set the right machine number for an x86-64 elf32 file. */
1081 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x64_32);
1082 return TRUE;
1083}
1084
142411ca
L
1085/* Return TRUE if the TLS access code sequence support transition
1086 from R_TYPE. */
1087
1088static bfd_boolean
351f65ca
L
1089elf_x86_64_check_tls_transition (bfd *abfd,
1090 struct bfd_link_info *info,
1091 asection *sec,
1092 bfd_byte *contents,
1093 Elf_Internal_Shdr *symtab_hdr,
1094 struct elf_link_hash_entry **sym_hashes,
1095 unsigned int r_type,
1096 const Elf_Internal_Rela *rel,
1097 const Elf_Internal_Rela *relend)
bffbf940 1098{
142411ca
L
1099 unsigned int val;
1100 unsigned long r_symndx;
5c98a14e 1101 bfd_boolean largepic = FALSE;
142411ca
L
1102 struct elf_link_hash_entry *h;
1103 bfd_vma offset;
351f65ca 1104 struct elf_x86_64_link_hash_table *htab;
142411ca
L
1105
1106 /* Get the section contents. */
1107 if (contents == NULL)
1108 {
1109 if (elf_section_data (sec)->this_hdr.contents != NULL)
1110 contents = elf_section_data (sec)->this_hdr.contents;
1111 else
1112 {
1113 /* FIXME: How to better handle error condition? */
1114 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1115 return FALSE;
bffbf940 1116
142411ca
L
1117 /* Cache the section contents for elf_link_input_bfd. */
1118 elf_section_data (sec)->this_hdr.contents = contents;
1119 }
1120 }
1121
351f65ca 1122 htab = elf_x86_64_hash_table (info);
142411ca 1123 offset = rel->r_offset;
bffbf940 1124 switch (r_type)
142411ca
L
1125 {
1126 case R_X86_64_TLSGD:
1127 case R_X86_64_TLSLD:
1128 if ((rel + 1) >= relend)
1129 return FALSE;
1130
1131 if (r_type == R_X86_64_TLSGD)
1132 {
52bc799a 1133 /* Check transition from GD access model. For 64bit, only
142411ca
L
1134 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
1135 .word 0x6666; rex64; call __tls_get_addr
52bc799a
L
1136 can transit to different access model. For 32bit, only
1137 leaq foo@tlsgd(%rip), %rdi
1138 .word 0x6666; rex64; call __tls_get_addr
5c98a14e
JJ
1139 can transit to different access model. For largepic
1140 we also support:
1141 leaq foo@tlsgd(%rip), %rdi
1142 movabsq $__tls_get_addr@pltoff, %rax
1143 addq $rbx, %rax
1144 call *%rax. */
142411ca 1145
fa289a5f
AM
1146 static const unsigned char call[] = { 0x66, 0x66, 0x48, 0xe8 };
1147 static const unsigned char leaq[] = { 0x66, 0x48, 0x8d, 0x3d };
1148
5c98a14e 1149 if ((offset + 12) > sec->size)
142411ca 1150 return FALSE;
52bc799a 1151
5c98a14e
JJ
1152 if (memcmp (contents + offset + 4, call, 4) != 0)
1153 {
1154 if (!ABI_64_P (abfd)
1155 || (offset + 19) > sec->size
1156 || offset < 3
1157 || memcmp (contents + offset - 3, leaq + 1, 3) != 0
1158 || memcmp (contents + offset + 4, "\x48\xb8", 2) != 0
1159 || memcmp (contents + offset + 14, "\x48\x01\xd8\xff\xd0", 5)
1160 != 0)
1161 return FALSE;
1162 largepic = TRUE;
1163 }
1164 else if (ABI_64_P (abfd))
52bc799a 1165 {
52bc799a 1166 if (offset < 4
fa289a5f 1167 || memcmp (contents + offset - 4, leaq, 4) != 0)
52bc799a
L
1168 return FALSE;
1169 }
1170 else
1171 {
52bc799a 1172 if (offset < 3
fa289a5f 1173 || memcmp (contents + offset - 3, leaq + 1, 3) != 0)
52bc799a
L
1174 return FALSE;
1175 }
142411ca
L
1176 }
1177 else
1178 {
1179 /* Check transition from LD access model. Only
1180 leaq foo@tlsld(%rip), %rdi;
1181 call __tls_get_addr
5c98a14e
JJ
1182 can transit to different access model. For largepic
1183 we also support:
1184 leaq foo@tlsld(%rip), %rdi
1185 movabsq $__tls_get_addr@pltoff, %rax
1186 addq $rbx, %rax
1187 call *%rax. */
142411ca 1188
fa289a5f 1189 static const unsigned char lea[] = { 0x48, 0x8d, 0x3d };
142411ca
L
1190
1191 if (offset < 3 || (offset + 9) > sec->size)
1192 return FALSE;
1193
5c98a14e 1194 if (memcmp (contents + offset - 3, lea, 3) != 0)
142411ca 1195 return FALSE;
5c98a14e
JJ
1196
1197 if (0xe8 != *(contents + offset + 4))
1198 {
1199 if (!ABI_64_P (abfd)
1200 || (offset + 19) > sec->size
1201 || memcmp (contents + offset + 4, "\x48\xb8", 2) != 0
1202 || memcmp (contents + offset + 14, "\x48\x01\xd8\xff\xd0", 5)
1203 != 0)
1204 return FALSE;
1205 largepic = TRUE;
1206 }
142411ca
L
1207 }
1208
351f65ca 1209 r_symndx = htab->r_sym (rel[1].r_info);
142411ca
L
1210 if (r_symndx < symtab_hdr->sh_info)
1211 return FALSE;
1212
1213 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
c4fb387b 1214 /* Use strncmp to check __tls_get_addr since __tls_get_addr
eed180f8 1215 may be versioned. */
142411ca
L
1216 return (h != NULL
1217 && h->root.root.string != NULL
5c98a14e
JJ
1218 && (largepic
1219 ? ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PLTOFF64
1220 : (ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PC32
1221 || ELF32_R_TYPE (rel[1].r_info) == R_X86_64_PLT32))
c4fb387b
L
1222 && (strncmp (h->root.root.string,
1223 "__tls_get_addr", 14) == 0));
142411ca
L
1224
1225 case R_X86_64_GOTTPOFF:
1226 /* Check transition from IE access model:
4a4c5f25
L
1227 mov foo@gottpoff(%rip), %reg
1228 add foo@gottpoff(%rip), %reg
142411ca
L
1229 */
1230
4a4c5f25
L
1231 /* Check REX prefix first. */
1232 if (offset >= 3 && (offset + 4) <= sec->size)
1233 {
1234 val = bfd_get_8 (abfd, contents + offset - 3);
1235 if (val != 0x48 && val != 0x4c)
1236 {
1237 /* X32 may have 0x44 REX prefix or no REX prefix. */
1238 if (ABI_64_P (abfd))
1239 return FALSE;
1240 }
1241 }
1242 else
1243 {
1244 /* X32 may not have any REX prefix. */
1245 if (ABI_64_P (abfd))
1246 return FALSE;
1247 if (offset < 2 || (offset + 3) > sec->size)
1248 return FALSE;
1249 }
142411ca
L
1250
1251 val = bfd_get_8 (abfd, contents + offset - 2);
1252 if (val != 0x8b && val != 0x03)
1253 return FALSE;
1254
1255 val = bfd_get_8 (abfd, contents + offset - 1);
1256 return (val & 0xc7) == 5;
1257
1258 case R_X86_64_GOTPC32_TLSDESC:
1259 /* Check transition from GDesc access model:
1260 leaq x@tlsdesc(%rip), %rax
1261
1262 Make sure it's a leaq adding rip to a 32-bit offset
1263 into any register, although it's probably almost always
1264 going to be rax. */
1265
1266 if (offset < 3 || (offset + 4) > sec->size)
1267 return FALSE;
1268
1269 val = bfd_get_8 (abfd, contents + offset - 3);
1270 if ((val & 0xfb) != 0x48)
1271 return FALSE;
1272
1273 if (bfd_get_8 (abfd, contents + offset - 2) != 0x8d)
1274 return FALSE;
1275
1276 val = bfd_get_8 (abfd, contents + offset - 1);
1277 return (val & 0xc7) == 0x05;
1278
1279 case R_X86_64_TLSDESC_CALL:
1280 /* Check transition from GDesc access model:
1281 call *x@tlsdesc(%rax)
1282 */
1283 if (offset + 2 <= sec->size)
1284 {
1285 /* Make sure that it's a call *x@tlsdesc(%rax). */
fa289a5f
AM
1286 static const unsigned char call[] = { 0xff, 0x10 };
1287 return memcmp (contents + offset, call, 2) == 0;
142411ca
L
1288 }
1289
1290 return FALSE;
1291
1292 default:
1293 abort ();
1294 }
1295}
1296
1297/* Return TRUE if the TLS access transition is OK or no transition
1298 will be performed. Update R_TYPE if there is a transition. */
1299
1300static bfd_boolean
351f65ca
L
1301elf_x86_64_tls_transition (struct bfd_link_info *info, bfd *abfd,
1302 asection *sec, bfd_byte *contents,
1303 Elf_Internal_Shdr *symtab_hdr,
1304 struct elf_link_hash_entry **sym_hashes,
1305 unsigned int *r_type, int tls_type,
1306 const Elf_Internal_Rela *rel,
1307 const Elf_Internal_Rela *relend,
1308 struct elf_link_hash_entry *h,
1309 unsigned long r_symndx)
142411ca
L
1310{
1311 unsigned int from_type = *r_type;
1312 unsigned int to_type = from_type;
1313 bfd_boolean check = TRUE;
1314
bb1cb422
L
1315 /* Skip TLS transition for functions. */
1316 if (h != NULL
1317 && (h->type == STT_FUNC
1318 || h->type == STT_GNU_IFUNC))
1319 return TRUE;
1320
142411ca 1321 switch (from_type)
bffbf940
JJ
1322 {
1323 case R_X86_64_TLSGD:
67a4f2b7
AO
1324 case R_X86_64_GOTPC32_TLSDESC:
1325 case R_X86_64_TLSDESC_CALL:
bffbf940 1326 case R_X86_64_GOTTPOFF:
1d85728f 1327 if (info->executable)
142411ca
L
1328 {
1329 if (h == NULL)
1330 to_type = R_X86_64_TPOFF32;
1331 else
1332 to_type = R_X86_64_GOTTPOFF;
1333 }
1334
351f65ca 1335 /* When we are called from elf_x86_64_relocate_section,
142411ca
L
1336 CONTENTS isn't NULL and there may be additional transitions
1337 based on TLS_TYPE. */
1338 if (contents != NULL)
1339 {
1340 unsigned int new_to_type = to_type;
1341
1d85728f 1342 if (info->executable
142411ca
L
1343 && h != NULL
1344 && h->dynindx == -1
1345 && tls_type == GOT_TLS_IE)
1346 new_to_type = R_X86_64_TPOFF32;
1347
1348 if (to_type == R_X86_64_TLSGD
1349 || to_type == R_X86_64_GOTPC32_TLSDESC
1350 || to_type == R_X86_64_TLSDESC_CALL)
1351 {
1352 if (tls_type == GOT_TLS_IE)
1353 new_to_type = R_X86_64_GOTTPOFF;
1354 }
1355
1356 /* We checked the transition before when we were called from
351f65ca 1357 elf_x86_64_check_relocs. We only want to check the new
142411ca
L
1358 transition which hasn't been checked before. */
1359 check = new_to_type != to_type && from_type == to_type;
1360 to_type = new_to_type;
1361 }
1362
1363 break;
1364
bffbf940 1365 case R_X86_64_TLSLD:
1d85728f 1366 if (info->executable)
142411ca
L
1367 to_type = R_X86_64_TPOFF32;
1368 break;
1369
1370 default:
1371 return TRUE;
bffbf940
JJ
1372 }
1373
142411ca
L
1374 /* Return TRUE if there is no transition. */
1375 if (from_type == to_type)
1376 return TRUE;
1377
1378 /* Check if the transition can be performed. */
1379 if (check
351f65ca
L
1380 && ! elf_x86_64_check_tls_transition (abfd, info, sec, contents,
1381 symtab_hdr, sym_hashes,
1382 from_type, rel, relend))
142411ca 1383 {
2f629d23 1384 reloc_howto_type *from, *to;
4c544807 1385 const char *name;
142411ca 1386
351f65ca
L
1387 from = elf_x86_64_rtype_to_howto (abfd, from_type);
1388 to = elf_x86_64_rtype_to_howto (abfd, to_type);
142411ca 1389
4c544807
L
1390 if (h)
1391 name = h->root.root.string;
1392 else
1393 {
351f65ca 1394 struct elf_x86_64_link_hash_table *htab;
4dfe6ac6 1395
351f65ca 1396 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1397 if (htab == NULL)
1398 name = "*unknown*";
1399 else
1400 {
1401 Elf_Internal_Sym *isym;
1402
1403 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1404 abfd, r_symndx);
1405 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1406 }
4c544807
L
1407 }
1408
142411ca
L
1409 (*_bfd_error_handler)
1410 (_("%B: TLS transition from %s to %s against `%s' at 0x%lx "
1411 "in section `%A' failed"),
4c544807 1412 abfd, sec, from->name, to->name, name,
142411ca
L
1413 (unsigned long) rel->r_offset);
1414 bfd_set_error (bfd_error_bad_value);
1415 return FALSE;
1416 }
1417
1418 *r_type = to_type;
1419 return TRUE;
bffbf940
JJ
1420}
1421
70256ad8 1422/* Look through the relocs for a section during the first phase, and
c434dee6
AJ
1423 calculate needed space in the global offset table, procedure
1424 linkage table, and dynamic reloc sections. */
70256ad8 1425
b34976b6 1426static bfd_boolean
351f65ca
L
1427elf_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info,
1428 asection *sec,
1429 const Elf_Internal_Rela *relocs)
70256ad8 1430{
351f65ca 1431 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
1432 Elf_Internal_Shdr *symtab_hdr;
1433 struct elf_link_hash_entry **sym_hashes;
70256ad8
AJ
1434 const Elf_Internal_Rela *rel;
1435 const Elf_Internal_Rela *rel_end;
70256ad8
AJ
1436 asection *sreloc;
1437
1049f94e 1438 if (info->relocatable)
b34976b6 1439 return TRUE;
70256ad8 1440
0ffa91dd
NC
1441 BFD_ASSERT (is_x86_64_elf (abfd));
1442
351f65ca 1443 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1444 if (htab == NULL)
1445 return FALSE;
1446
0ffa91dd 1447 symtab_hdr = &elf_symtab_hdr (abfd);
70256ad8 1448 sym_hashes = elf_sym_hashes (abfd);
70256ad8 1449
c434dee6 1450 sreloc = NULL;
cbe950e9 1451
70256ad8
AJ
1452 rel_end = relocs + sec->reloc_count;
1453 for (rel = relocs; rel < rel_end; rel++)
1454 {
bffbf940 1455 unsigned int r_type;
70256ad8
AJ
1456 unsigned long r_symndx;
1457 struct elf_link_hash_entry *h;
4c544807
L
1458 Elf_Internal_Sym *isym;
1459 const char *name;
06a6a421 1460 bfd_boolean size_reloc;
70256ad8 1461
351f65ca
L
1462 r_symndx = htab->r_sym (rel->r_info);
1463 r_type = ELF32_R_TYPE (rel->r_info);
c434dee6
AJ
1464
1465 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
1466 {
d003868e
AM
1467 (*_bfd_error_handler) (_("%B: bad symbol index: %d"),
1468 abfd, r_symndx);
b34976b6 1469 return FALSE;
c434dee6
AJ
1470 }
1471
70256ad8 1472 if (r_symndx < symtab_hdr->sh_info)
c25bc9fc
L
1473 {
1474 /* A local symbol. */
c2e61a4e
L
1475 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1476 abfd, r_symndx);
1477 if (isym == NULL)
1478 return FALSE;
c25bc9fc
L
1479
1480 /* Check relocation against local STT_GNU_IFUNC symbol. */
351f65ca 1481 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
c25bc9fc 1482 {
351f65ca
L
1483 h = elf_x86_64_get_local_sym_hash (htab, abfd, rel,
1484 TRUE);
c25bc9fc 1485 if (h == NULL)
c2e61a4e 1486 return FALSE;
6bbec505 1487
c25bc9fc
L
1488 /* Fake a STT_GNU_IFUNC symbol. */
1489 h->type = STT_GNU_IFUNC;
1490 h->def_regular = 1;
1491 h->ref_regular = 1;
1492 h->forced_local = 1;
1493 h->root.type = bfd_link_hash_defined;
1494 }
1495 else
1496 h = NULL;
1497 }
70256ad8 1498 else
71cb9464 1499 {
4c544807 1500 isym = NULL;
71cb9464
L
1501 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1502 while (h->root.type == bfd_link_hash_indirect
1503 || h->root.type == bfd_link_hash_warning)
1504 h = (struct elf_link_hash_entry *) h->root.u.i.link;
c25bc9fc 1505 }
cbe950e9 1506
d1534d16
L
1507 /* Check invalid x32 relocations. */
1508 if (!ABI_64_P (abfd))
1509 switch (r_type)
1510 {
1511 default:
1512 break;
1513
d1534d16
L
1514 case R_X86_64_DTPOFF64:
1515 case R_X86_64_TPOFF64:
1516 case R_X86_64_PC64:
1517 case R_X86_64_GOTOFF64:
1518 case R_X86_64_GOT64:
1519 case R_X86_64_GOTPCREL64:
1520 case R_X86_64_GOTPC64:
1521 case R_X86_64_GOTPLT64:
1522 case R_X86_64_PLTOFF64:
1523 {
1524 if (h)
1525 name = h->root.root.string;
1526 else
1527 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
1528 NULL);
1529 (*_bfd_error_handler)
1530 (_("%B: relocation %s against symbol `%s' isn't "
1531 "supported in x32 mode"), abfd,
1532 x86_64_elf_howto_table[r_type].name, name);
1533 bfd_set_error (bfd_error_bad_value);
1534 return FALSE;
1535 }
1536 break;
1537 }
1538
c25bc9fc
L
1539 if (h != NULL)
1540 {
cbe950e9
L
1541 /* Create the ifunc sections for static executables. If we
1542 never see an indirect function symbol nor we are building
1543 a static executable, those sections will be empty and
1544 won't appear in output. */
1545 switch (r_type)
1546 {
1547 default:
1548 break;
1549
1550 case R_X86_64_32S:
1551 case R_X86_64_32:
1552 case R_X86_64_64:
1553 case R_X86_64_PC32:
c3320543 1554 case R_X86_64_PC32_BND:
cbe950e9
L
1555 case R_X86_64_PC64:
1556 case R_X86_64_PLT32:
c3320543 1557 case R_X86_64_PLT32_BND:
cbe950e9
L
1558 case R_X86_64_GOTPCREL:
1559 case R_X86_64_GOTPCREL64:
9d4057ee
AM
1560 if (htab->elf.dynobj == NULL)
1561 htab->elf.dynobj = abfd;
1562 if (!_bfd_elf_create_ifunc_sections (htab->elf.dynobj, info))
c2e61a4e 1563 return FALSE;
cbe950e9
L
1564 break;
1565 }
1566
ad1e85de
L
1567 /* It is referenced by a non-shared object. */
1568 h->ref_regular = 1;
61315175 1569 h->root.non_ir_ref = 1;
71cb9464 1570 }
70256ad8 1571
351f65ca
L
1572 if (! elf_x86_64_tls_transition (info, abfd, sec, NULL,
1573 symtab_hdr, sym_hashes,
1574 &r_type, GOT_UNKNOWN,
1575 rel, rel_end, h, r_symndx))
c2e61a4e 1576 return FALSE;
142411ca 1577
bffbf940 1578 switch (r_type)
70256ad8 1579 {
bffbf940
JJ
1580 case R_X86_64_TLSLD:
1581 htab->tls_ld_got.refcount += 1;
1582 goto create_got;
1583
1584 case R_X86_64_TPOFF32:
351f65ca 1585 if (!info->executable && ABI_64_P (abfd))
70256ad8 1586 {
09a24cbf 1587 if (h)
4c544807
L
1588 name = h->root.root.string;
1589 else
1590 name = bfd_elf_sym_name (abfd, symtab_hdr, isym,
1591 NULL);
bffbf940 1592 (*_bfd_error_handler)
d003868e
AM
1593 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
1594 abfd,
4c544807 1595 x86_64_elf_howto_table[r_type].name, name);
bffbf940 1596 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1597 return FALSE;
70256ad8 1598 }
bffbf940 1599 break;
c434dee6 1600
bffbf940 1601 case R_X86_64_GOTTPOFF:
1d85728f 1602 if (!info->executable)
bffbf940
JJ
1603 info->flags |= DF_STATIC_TLS;
1604 /* Fall through */
70256ad8 1605
bffbf940
JJ
1606 case R_X86_64_GOT32:
1607 case R_X86_64_GOTPCREL:
1608 case R_X86_64_TLSGD:
7b81dfbb
AJ
1609 case R_X86_64_GOT64:
1610 case R_X86_64_GOTPCREL64:
1611 case R_X86_64_GOTPLT64:
67a4f2b7
AO
1612 case R_X86_64_GOTPC32_TLSDESC:
1613 case R_X86_64_TLSDESC_CALL:
bffbf940
JJ
1614 /* This symbol requires a global offset table entry. */
1615 {
1616 int tls_type, old_tls_type;
1617
1618 switch (r_type)
1619 {
1620 default: tls_type = GOT_NORMAL; break;
1621 case R_X86_64_TLSGD: tls_type = GOT_TLS_GD; break;
1622 case R_X86_64_GOTTPOFF: tls_type = GOT_TLS_IE; break;
67a4f2b7
AO
1623 case R_X86_64_GOTPC32_TLSDESC:
1624 case R_X86_64_TLSDESC_CALL:
1625 tls_type = GOT_TLS_GDESC; break;
bffbf940
JJ
1626 }
1627
1628 if (h != NULL)
1629 {
7b81dfbb
AJ
1630 if (r_type == R_X86_64_GOTPLT64)
1631 {
1632 /* This relocation indicates that we also need
1633 a PLT entry, as this is a function. We don't need
1634 a PLT entry for local symbols. */
1635 h->needs_plt = 1;
1636 h->plt.refcount += 1;
1637 }
bffbf940 1638 h->got.refcount += 1;
351f65ca 1639 old_tls_type = elf_x86_64_hash_entry (h)->tls_type;
bffbf940
JJ
1640 }
1641 else
1642 {
1643 bfd_signed_vma *local_got_refcounts;
1644
1645 /* This is a global offset table entry for a local symbol. */
1646 local_got_refcounts = elf_local_got_refcounts (abfd);
1647 if (local_got_refcounts == NULL)
1648 {
1649 bfd_size_type size;
1650
1651 size = symtab_hdr->sh_info;
67a4f2b7
AO
1652 size *= sizeof (bfd_signed_vma)
1653 + sizeof (bfd_vma) + sizeof (char);
bffbf940
JJ
1654 local_got_refcounts = ((bfd_signed_vma *)
1655 bfd_zalloc (abfd, size));
1656 if (local_got_refcounts == NULL)
c2e61a4e 1657 return FALSE;
bffbf940 1658 elf_local_got_refcounts (abfd) = local_got_refcounts;
351f65ca 1659 elf_x86_64_local_tlsdesc_gotent (abfd)
67a4f2b7 1660 = (bfd_vma *) (local_got_refcounts + symtab_hdr->sh_info);
351f65ca 1661 elf_x86_64_local_got_tls_type (abfd)
67a4f2b7 1662 = (char *) (local_got_refcounts + 2 * symtab_hdr->sh_info);
bffbf940
JJ
1663 }
1664 local_got_refcounts[r_symndx] += 1;
1665 old_tls_type
351f65ca 1666 = elf_x86_64_local_got_tls_type (abfd) [r_symndx];
bffbf940
JJ
1667 }
1668
1669 /* If a TLS symbol is accessed using IE at least once,
1670 there is no point to use dynamic model for it. */
1671 if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
67a4f2b7
AO
1672 && (! GOT_TLS_GD_ANY_P (old_tls_type)
1673 || tls_type != GOT_TLS_IE))
bffbf940 1674 {
67a4f2b7 1675 if (old_tls_type == GOT_TLS_IE && GOT_TLS_GD_ANY_P (tls_type))
bffbf940 1676 tls_type = old_tls_type;
67a4f2b7
AO
1677 else if (GOT_TLS_GD_ANY_P (old_tls_type)
1678 && GOT_TLS_GD_ANY_P (tls_type))
1679 tls_type |= old_tls_type;
bffbf940
JJ
1680 else
1681 {
09a24cbf 1682 if (h)
4c544807
L
1683 name = h->root.root.string;
1684 else
1685 name = bfd_elf_sym_name (abfd, symtab_hdr,
1686 isym, NULL);
bffbf940 1687 (*_bfd_error_handler)
1f7a4e42 1688 (_("%B: '%s' accessed both as normal and thread local symbol"),
4c544807 1689 abfd, name);
68c4a57e 1690 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1691 return FALSE;
bffbf940
JJ
1692 }
1693 }
1694
1695 if (old_tls_type != tls_type)
1696 {
1697 if (h != NULL)
351f65ca 1698 elf_x86_64_hash_entry (h)->tls_type = tls_type;
bffbf940 1699 else
351f65ca 1700 elf_x86_64_local_got_tls_type (abfd) [r_symndx] = tls_type;
bffbf940
JJ
1701 }
1702 }
c434dee6
AJ
1703 /* Fall through */
1704
d6ab8113
JB
1705 case R_X86_64_GOTOFF64:
1706 case R_X86_64_GOTPC32:
7b81dfbb 1707 case R_X86_64_GOTPC64:
bffbf940 1708 create_got:
6de2ae4a 1709 if (htab->elf.sgot == NULL)
c434dee6
AJ
1710 {
1711 if (htab->elf.dynobj == NULL)
1712 htab->elf.dynobj = abfd;
6de2ae4a
L
1713 if (!_bfd_elf_create_got_section (htab->elf.dynobj,
1714 info))
c2e61a4e 1715 return FALSE;
c434dee6 1716 }
70256ad8
AJ
1717 break;
1718
1719 case R_X86_64_PLT32:
c3320543 1720 case R_X86_64_PLT32_BND:
70256ad8 1721 /* This symbol requires a procedure linkage table entry. We
407443a3
AJ
1722 actually build the entry in adjust_dynamic_symbol,
1723 because this might be a case of linking PIC code which is
1724 never referenced by a dynamic object, in which case we
1725 don't need to generate a procedure linkage table entry
1726 after all. */
70256ad8
AJ
1727
1728 /* If this is a local symbol, we resolve it directly without
407443a3 1729 creating a procedure linkage table entry. */
70256ad8
AJ
1730 if (h == NULL)
1731 continue;
1732
f5385ebf 1733 h->needs_plt = 1;
51b64d56 1734 h->plt.refcount += 1;
70256ad8
AJ
1735 break;
1736
7b81dfbb
AJ
1737 case R_X86_64_PLTOFF64:
1738 /* This tries to form the 'address' of a function relative
1739 to GOT. For global symbols we need a PLT entry. */
1740 if (h != NULL)
1741 {
1742 h->needs_plt = 1;
1743 h->plt.refcount += 1;
1744 }
1745 goto create_got;
1746
6a3e1bae
L
1747 case R_X86_64_SIZE32:
1748 case R_X86_64_SIZE64:
06a6a421 1749 size_reloc = TRUE;
6a3e1bae
L
1750 goto do_size;
1751
248775ba
L
1752 case R_X86_64_32:
1753 if (!ABI_64_P (abfd))
1754 goto pointer;
cc78d0af
AJ
1755 case R_X86_64_8:
1756 case R_X86_64_16:
70256ad8 1757 case R_X86_64_32S:
1b71fb54
AJ
1758 /* Let's help debug shared library creation. These relocs
1759 cannot be used in shared libs. Don't error out for
1760 sections we don't care about, such as debug sections or
1761 non-constant sections. */
1762 if (info->shared
1763 && (sec->flags & SEC_ALLOC) != 0
1764 && (sec->flags & SEC_READONLY) != 0)
1765 {
09a24cbf 1766 if (h)
4c544807
L
1767 name = h->root.root.string;
1768 else
1769 name = bfd_elf_sym_name (abfd, symtab_hdr, isym, NULL);
1b71fb54 1770 (*_bfd_error_handler)
d003868e 1771 (_("%B: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
4c544807 1772 abfd, x86_64_elf_howto_table[r_type].name, name);
1b71fb54 1773 bfd_set_error (bfd_error_bad_value);
c2e61a4e 1774 return FALSE;
1b71fb54
AJ
1775 }
1776 /* Fall through. */
1777
c434dee6
AJ
1778 case R_X86_64_PC8:
1779 case R_X86_64_PC16:
70256ad8 1780 case R_X86_64_PC32:
c3320543 1781 case R_X86_64_PC32_BND:
d6ab8113 1782 case R_X86_64_PC64:
1b71fb54 1783 case R_X86_64_64:
248775ba 1784pointer:
710ab287 1785 if (h != NULL && info->executable)
c434dee6
AJ
1786 {
1787 /* If this reloc is in a read-only section, we might
1788 need a copy reloc. We can't check reliably at this
1789 stage whether the section is read-only, as input
1790 sections have not yet been mapped to output sections.
1791 Tentatively set the flag for now, and correct in
1792 adjust_dynamic_symbol. */
f5385ebf 1793 h->non_got_ref = 1;
c434dee6
AJ
1794
1795 /* We may need a .plt entry if the function this reloc
1796 refers to is in a shared lib. */
1797 h->plt.refcount += 1;
c3320543
L
1798 if (r_type != R_X86_64_PC32
1799 && r_type != R_X86_64_PC32_BND
1800 && r_type != R_X86_64_PC64)
f5385ebf 1801 h->pointer_equality_needed = 1;
c434dee6 1802 }
70256ad8 1803
06a6a421 1804 size_reloc = FALSE;
6a3e1bae 1805do_size:
70256ad8
AJ
1806 /* If we are creating a shared library, and this is a reloc
1807 against a global symbol, or a non PC relative reloc
1808 against a local symbol, then we need to copy the reloc
1809 into the shared library. However, if we are linking with
1810 -Bsymbolic, we do not need to copy a reloc against a
1811 global symbol which is defined in an object we are
407443a3 1812 including in the link (i.e., DEF_REGULAR is set). At
70256ad8
AJ
1813 this point we have not seen all the input files, so it is
1814 possible that DEF_REGULAR is not set now but will be set
c434dee6
AJ
1815 later (it is never cleared). In case of a weak definition,
1816 DEF_REGULAR may be cleared later by a strong definition in
1817 a shared library. We account for that possibility below by
1818 storing information in the relocs_copied field of the hash
1819 table entry. A similar situation occurs when creating
1820 shared libraries and symbol visibility changes render the
1821 symbol local.
1822
1823 If on the other hand, we are creating an executable, we
1824 may need to keep relocations for symbols satisfied by a
1825 dynamic library if we manage to avoid copy relocs for the
0f88be7a 1826 symbol. */
c434dee6
AJ
1827 if ((info->shared
1828 && (sec->flags & SEC_ALLOC) != 0
d8045f23 1829 && (! IS_X86_64_PCREL_TYPE (r_type)
c434dee6 1830 || (h != NULL
55255dae 1831 && (! SYMBOLIC_BIND (info, h)
c434dee6 1832 || h->root.type == bfd_link_hash_defweak
f5385ebf 1833 || !h->def_regular))))
d40d037c
AJ
1834 || (ELIMINATE_COPY_RELOCS
1835 && !info->shared
c434dee6
AJ
1836 && (sec->flags & SEC_ALLOC) != 0
1837 && h != NULL
1838 && (h->root.type == bfd_link_hash_defweak
0f88be7a 1839 || !h->def_regular)))
70256ad8 1840 {
e03a8ed8
L
1841 struct elf_dyn_relocs *p;
1842 struct elf_dyn_relocs **head;
c434dee6
AJ
1843
1844 /* We must copy these reloc types into the output file.
1845 Create a reloc section in dynobj and make room for
1846 this reloc. */
70256ad8
AJ
1847 if (sreloc == NULL)
1848 {
c434dee6
AJ
1849 if (htab->elf.dynobj == NULL)
1850 htab->elf.dynobj = abfd;
1851
83bac4b0 1852 sreloc = _bfd_elf_make_dynamic_reloc_section
82e96e07
L
1853 (sec, htab->elf.dynobj, ABI_64_P (abfd) ? 3 : 2,
1854 abfd, /*rela?*/ TRUE);
70256ad8 1855
70256ad8 1856 if (sreloc == NULL)
c2e61a4e 1857 return FALSE;
70256ad8
AJ
1858 }
1859
c434dee6
AJ
1860 /* If this is a global symbol, we count the number of
1861 relocations we need for this symbol. */
1862 if (h != NULL)
70256ad8 1863 {
351f65ca 1864 head = &((struct elf_x86_64_link_hash_entry *) h)->dyn_relocs;
c434dee6
AJ
1865 }
1866 else
1867 {
1868 /* Track dynamic relocs needed for local syms too.
1869 We really need local syms available to do this
1870 easily. Oh well. */
c434dee6 1871 asection *s;
87d72d41 1872 void **vpp;
87d72d41
AM
1873
1874 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1875 abfd, r_symndx);
1876 if (isym == NULL)
1877 return FALSE;
1878
1879 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
c434dee6 1880 if (s == NULL)
87d72d41 1881 s = sec;
70256ad8 1882
e81d3500
DD
1883 /* Beware of type punned pointers vs strict aliasing
1884 rules. */
1885 vpp = &(elf_section_data (s)->local_dynrel);
e03a8ed8 1886 head = (struct elf_dyn_relocs **)vpp;
c434dee6 1887 }
70256ad8 1888
c434dee6
AJ
1889 p = *head;
1890 if (p == NULL || p->sec != sec)
1891 {
1892 bfd_size_type amt = sizeof *p;
d8045f23 1893
e03a8ed8 1894 p = ((struct elf_dyn_relocs *)
c434dee6 1895 bfd_alloc (htab->elf.dynobj, amt));
70256ad8 1896 if (p == NULL)
c2e61a4e 1897 return FALSE;
c434dee6
AJ
1898 p->next = *head;
1899 *head = p;
1900 p->sec = sec;
1901 p->count = 0;
1902 p->pc_count = 0;
70256ad8 1903 }
c434dee6
AJ
1904
1905 p->count += 1;
06a6a421
L
1906 /* Count size relocation as PC-relative relocation. */
1907 if (IS_X86_64_PCREL_TYPE (r_type) || size_reloc)
c434dee6 1908 p->pc_count += 1;
70256ad8
AJ
1909 }
1910 break;
fe4770f4
AJ
1911
1912 /* This relocation describes the C++ object vtable hierarchy.
1913 Reconstruct it for later use during GC. */
1914 case R_X86_64_GNU_VTINHERIT:
c152c796 1915 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
c2e61a4e 1916 return FALSE;
fe4770f4
AJ
1917 break;
1918
1919 /* This relocation describes which C++ vtable entries are actually
1920 used. Record for later use during GC. */
1921 case R_X86_64_GNU_VTENTRY:
d17e0c6e
JB
1922 BFD_ASSERT (h != NULL);
1923 if (h != NULL
1924 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
c2e61a4e 1925 return FALSE;
fe4770f4 1926 break;
c434dee6
AJ
1927
1928 default:
1929 break;
70256ad8
AJ
1930 }
1931 }
1932
b34976b6 1933 return TRUE;
70256ad8
AJ
1934}
1935
1936/* Return the section that should be marked against GC for a given
407443a3 1937 relocation. */
70256ad8
AJ
1938
1939static asection *
351f65ca
L
1940elf_x86_64_gc_mark_hook (asection *sec,
1941 struct bfd_link_info *info,
1942 Elf_Internal_Rela *rel,
1943 struct elf_link_hash_entry *h,
1944 Elf_Internal_Sym *sym)
70256ad8
AJ
1945{
1946 if (h != NULL)
351f65ca 1947 switch (ELF32_R_TYPE (rel->r_info))
07adf181
AM
1948 {
1949 case R_X86_64_GNU_VTINHERIT:
1950 case R_X86_64_GNU_VTENTRY:
1951 return NULL;
1952 }
1953
1954 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
70256ad8
AJ
1955}
1956
407443a3 1957/* Update the got entry reference counts for the section being removed. */
70256ad8 1958
b34976b6 1959static bfd_boolean
351f65ca
L
1960elf_x86_64_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
1961 asection *sec,
1962 const Elf_Internal_Rela *relocs)
70256ad8 1963{
351f65ca 1964 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
1965 Elf_Internal_Shdr *symtab_hdr;
1966 struct elf_link_hash_entry **sym_hashes;
1967 bfd_signed_vma *local_got_refcounts;
1968 const Elf_Internal_Rela *rel, *relend;
c434dee6 1969
7dda2462
TG
1970 if (info->relocatable)
1971 return TRUE;
1972
351f65ca 1973 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
1974 if (htab == NULL)
1975 return FALSE;
1976
c434dee6 1977 elf_section_data (sec)->local_dynrel = NULL;
70256ad8 1978
0ffa91dd 1979 symtab_hdr = &elf_symtab_hdr (abfd);
70256ad8
AJ
1980 sym_hashes = elf_sym_hashes (abfd);
1981 local_got_refcounts = elf_local_got_refcounts (abfd);
1982
351f65ca 1983 htab = elf_x86_64_hash_table (info);
70256ad8
AJ
1984 relend = relocs + sec->reloc_count;
1985 for (rel = relocs; rel < relend; rel++)
26e41594
AM
1986 {
1987 unsigned long r_symndx;
1988 unsigned int r_type;
1989 struct elf_link_hash_entry *h = NULL;
70256ad8 1990
351f65ca 1991 r_symndx = htab->r_sym (rel->r_info);
26e41594
AM
1992 if (r_symndx >= symtab_hdr->sh_info)
1993 {
26e41594 1994 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3eb128b2
AM
1995 while (h->root.type == bfd_link_hash_indirect
1996 || h->root.type == bfd_link_hash_warning)
1997 h = (struct elf_link_hash_entry *) h->root.u.i.link;
26e41594 1998 }
bb1cb422
L
1999 else
2000 {
2001 /* A local symbol. */
2002 Elf_Internal_Sym *isym;
2003
2004 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
2005 abfd, r_symndx);
2006
2007 /* Check relocation against local STT_GNU_IFUNC symbol. */
2008 if (isym != NULL
82e96e07 2009 && ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
bb1cb422 2010 {
351f65ca 2011 h = elf_x86_64_get_local_sym_hash (htab, abfd, rel, FALSE);
bb1cb422
L
2012 if (h == NULL)
2013 abort ();
2014 }
2015 }
c434dee6 2016
3db2e7dd
L
2017 if (h)
2018 {
2019 struct elf_x86_64_link_hash_entry *eh;
2020 struct elf_dyn_relocs **pp;
2021 struct elf_dyn_relocs *p;
2022
2023 eh = (struct elf_x86_64_link_hash_entry *) h;
2024
2025 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
2026 if (p->sec == sec)
2027 {
2028 /* Everything must go for SEC. */
2029 *pp = p->next;
2030 break;
2031 }
2032 }
2033
351f65ca
L
2034 r_type = ELF32_R_TYPE (rel->r_info);
2035 if (! elf_x86_64_tls_transition (info, abfd, sec, NULL,
2036 symtab_hdr, sym_hashes,
2037 &r_type, GOT_UNKNOWN,
2038 rel, relend, h, r_symndx))
142411ca
L
2039 return FALSE;
2040
26e41594
AM
2041 switch (r_type)
2042 {
2043 case R_X86_64_TLSLD:
4dfe6ac6
NC
2044 if (htab->tls_ld_got.refcount > 0)
2045 htab->tls_ld_got.refcount -= 1;
26e41594 2046 break;
c434dee6 2047
26e41594 2048 case R_X86_64_TLSGD:
67a4f2b7
AO
2049 case R_X86_64_GOTPC32_TLSDESC:
2050 case R_X86_64_TLSDESC_CALL:
26e41594
AM
2051 case R_X86_64_GOTTPOFF:
2052 case R_X86_64_GOT32:
2053 case R_X86_64_GOTPCREL:
7b81dfbb
AJ
2054 case R_X86_64_GOT64:
2055 case R_X86_64_GOTPCREL64:
2056 case R_X86_64_GOTPLT64:
26e41594
AM
2057 if (h != NULL)
2058 {
7b81dfbb 2059 if (r_type == R_X86_64_GOTPLT64 && h->plt.refcount > 0)
eed180f8 2060 h->plt.refcount -= 1;
26e41594
AM
2061 if (h->got.refcount > 0)
2062 h->got.refcount -= 1;
bb1cb422
L
2063 if (h->type == STT_GNU_IFUNC)
2064 {
2065 if (h->plt.refcount > 0)
2066 h->plt.refcount -= 1;
2067 }
26e41594
AM
2068 }
2069 else if (local_got_refcounts != NULL)
2070 {
2071 if (local_got_refcounts[r_symndx] > 0)
2072 local_got_refcounts[r_symndx] -= 1;
2073 }
2074 break;
c434dee6 2075
26e41594
AM
2076 case R_X86_64_8:
2077 case R_X86_64_16:
2078 case R_X86_64_32:
2079 case R_X86_64_64:
2080 case R_X86_64_32S:
2081 case R_X86_64_PC8:
2082 case R_X86_64_PC16:
2083 case R_X86_64_PC32:
c3320543 2084 case R_X86_64_PC32_BND:
d6ab8113 2085 case R_X86_64_PC64:
1788fc08
L
2086 case R_X86_64_SIZE32:
2087 case R_X86_64_SIZE64:
3db2e7dd
L
2088 if (info->shared
2089 && (h == NULL || h->type != STT_GNU_IFUNC))
26e41594
AM
2090 break;
2091 /* Fall thru */
c434dee6 2092
26e41594 2093 case R_X86_64_PLT32:
c3320543 2094 case R_X86_64_PLT32_BND:
7b81dfbb 2095 case R_X86_64_PLTOFF64:
26e41594
AM
2096 if (h != NULL)
2097 {
2098 if (h->plt.refcount > 0)
2099 h->plt.refcount -= 1;
2100 }
2101 break;
70256ad8 2102
26e41594
AM
2103 default:
2104 break;
2105 }
2106 }
70256ad8 2107
b34976b6 2108 return TRUE;
70256ad8
AJ
2109}
2110
2111/* Adjust a symbol defined by a dynamic object and referenced by a
2112 regular object. The current definition is in some section of the
2113 dynamic object, but we're not including those sections. We have to
2114 change the definition to something the rest of the link can
407443a3 2115 understand. */
70256ad8 2116
b34976b6 2117static bfd_boolean
351f65ca
L
2118elf_x86_64_adjust_dynamic_symbol (struct bfd_link_info *info,
2119 struct elf_link_hash_entry *h)
70256ad8 2120{
351f65ca 2121 struct elf_x86_64_link_hash_table *htab;
70256ad8 2122 asection *s;
5ca5bb35
L
2123 struct elf_x86_64_link_hash_entry *eh;
2124 struct elf_dyn_relocs *p;
70256ad8 2125
cbe950e9
L
2126 /* STT_GNU_IFUNC symbol must go through PLT. */
2127 if (h->type == STT_GNU_IFUNC)
2128 {
73bcf233
L
2129 /* All local STT_GNU_IFUNC references must be treate as local
2130 calls via local PLT. */
5ca5bb35
L
2131 if (h->ref_regular
2132 && SYMBOL_CALLS_LOCAL (info, h))
2133 {
73bcf233 2134 bfd_size_type pc_count = 0, count = 0;
5ca5bb35
L
2135 struct elf_dyn_relocs **pp;
2136
2137 eh = (struct elf_x86_64_link_hash_entry *) h;
2138 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2139 {
2140 pc_count += p->pc_count;
2141 p->count -= p->pc_count;
2142 p->pc_count = 0;
73bcf233 2143 count += p->count;
5ca5bb35
L
2144 if (p->count == 0)
2145 *pp = p->next;
2146 else
2147 pp = &p->next;
2148 }
2149
73bcf233 2150 if (pc_count || count)
5ca5bb35
L
2151 {
2152 h->needs_plt = 1;
5ca5bb35 2153 h->non_got_ref = 1;
a5479e5f
L
2154 if (h->plt.refcount <= 0)
2155 h->plt.refcount = 1;
2156 else
2157 h->plt.refcount += 1;
5ca5bb35
L
2158 }
2159 }
2160
cbe950e9
L
2161 if (h->plt.refcount <= 0)
2162 {
2163 h->plt.offset = (bfd_vma) -1;
2164 h->needs_plt = 0;
2165 }
2166 return TRUE;
2167 }
2168
70256ad8
AJ
2169 /* If this is a function, put it in the procedure linkage table. We
2170 will fill in the contents of the procedure linkage table later,
2171 when we know the address of the .got section. */
2172 if (h->type == STT_FUNC
f5385ebf 2173 || h->needs_plt)
70256ad8 2174 {
c434dee6 2175 if (h->plt.refcount <= 0
27482721
AJ
2176 || SYMBOL_CALLS_LOCAL (info, h)
2177 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2178 && h->root.type == bfd_link_hash_undefweak))
70256ad8 2179 {
70256ad8
AJ
2180 /* This case can occur if we saw a PLT32 reloc in an input
2181 file, but the symbol was never referred to by a dynamic
2182 object, or if all references were garbage collected. In
2183 such a case, we don't actually need to build a procedure
2184 linkage table, and we can just do a PC32 reloc instead. */
70256ad8 2185 h->plt.offset = (bfd_vma) -1;
f5385ebf 2186 h->needs_plt = 0;
70256ad8
AJ
2187 }
2188
b34976b6 2189 return TRUE;
70256ad8 2190 }
bbd7ec4a 2191 else
c434dee6
AJ
2192 /* It's possible that we incorrectly decided a .plt reloc was
2193 needed for an R_X86_64_PC32 reloc to a non-function sym in
2194 check_relocs. We can't decide accurately between function and
2195 non-function syms in check-relocs; Objects loaded later in
2196 the link may change h->type. So fix it now. */
bbd7ec4a 2197 h->plt.offset = (bfd_vma) -1;
70256ad8
AJ
2198
2199 /* If this is a weak symbol, and there is a real definition, the
2200 processor independent code will have arranged for us to see the
407443a3 2201 real definition first, and we can just use the same value. */
f6e332e6 2202 if (h->u.weakdef != NULL)
70256ad8 2203 {
f6e332e6
AM
2204 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
2205 || h->u.weakdef->root.type == bfd_link_hash_defweak);
2206 h->root.u.def.section = h->u.weakdef->root.u.def.section;
2207 h->root.u.def.value = h->u.weakdef->root.u.def.value;
d40d037c 2208 if (ELIMINATE_COPY_RELOCS || info->nocopyreloc)
f6e332e6 2209 h->non_got_ref = h->u.weakdef->non_got_ref;
b34976b6 2210 return TRUE;
70256ad8
AJ
2211 }
2212
2213 /* This is a reference to a symbol defined by a dynamic object which
407443a3 2214 is not a function. */
70256ad8
AJ
2215
2216 /* If we are creating a shared library, we must presume that the
2217 only references to the symbol are via the global offset table.
2218 For such cases we need not do anything here; the relocations will
407443a3 2219 be handled correctly by relocate_section. */
70256ad8 2220 if (info->shared)
b34976b6 2221 return TRUE;
70256ad8
AJ
2222
2223 /* If there are no references to this symbol that do not use the
2224 GOT, we don't need to generate a copy reloc. */
f5385ebf 2225 if (!h->non_got_ref)
b34976b6 2226 return TRUE;
70256ad8 2227
c434dee6
AJ
2228 /* If -z nocopyreloc was given, we won't generate them either. */
2229 if (info->nocopyreloc)
2230 {
f5385ebf 2231 h->non_got_ref = 0;
b34976b6 2232 return TRUE;
c434dee6
AJ
2233 }
2234
d40d037c 2235 if (ELIMINATE_COPY_RELOCS)
c434dee6 2236 {
351f65ca 2237 eh = (struct elf_x86_64_link_hash_entry *) h;
d40d037c
AJ
2238 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2239 {
2240 s = p->sec->output_section;
2241 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2242 break;
2243 }
2244
2245 /* If we didn't find any dynamic relocs in read-only sections, then
2246 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
2247 if (p == NULL)
2248 {
f5385ebf 2249 h->non_got_ref = 0;
d40d037c
AJ
2250 return TRUE;
2251 }
c434dee6
AJ
2252 }
2253
70256ad8 2254 /* We must allocate the symbol in our .dynbss section, which will
407443a3 2255 become part of the .bss section of the executable. There will be
70256ad8
AJ
2256 an entry for this symbol in the .dynsym section. The dynamic
2257 object will contain position independent code, so all references
2258 from the dynamic object to this symbol will go through the global
2259 offset table. The dynamic linker will use the .dynsym entry to
2260 determine the address it must put in the global offset table, so
2261 both the dynamic object and the regular object will refer to the
2262 same memory location for the variable. */
2263
351f65ca 2264 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2265 if (htab == NULL)
2266 return FALSE;
70256ad8
AJ
2267
2268 /* We must generate a R_X86_64_COPY reloc to tell the dynamic linker
2269 to copy the initial value out of the dynamic object and into the
cedb70c5 2270 runtime process image. */
1d7e9d18 2271 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
70256ad8 2272 {
351f65ca
L
2273 const struct elf_backend_data *bed;
2274 bed = get_elf_backend_data (info->output_bfd);
2275 htab->srelbss->size += bed->s->sizeof_rela;
f5385ebf 2276 h->needs_copy = 1;
70256ad8
AJ
2277 }
2278
c434dee6 2279 s = htab->sdynbss;
70256ad8 2280
027297b7 2281 return _bfd_elf_adjust_dynamic_copy (h, s);
70256ad8
AJ
2282}
2283
c434dee6
AJ
2284/* Allocate space in .plt, .got and associated reloc sections for
2285 dynamic relocs. */
2286
b34976b6 2287static bfd_boolean
351f65ca 2288elf_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
c434dee6
AJ
2289{
2290 struct bfd_link_info *info;
351f65ca
L
2291 struct elf_x86_64_link_hash_table *htab;
2292 struct elf_x86_64_link_hash_entry *eh;
e03a8ed8 2293 struct elf_dyn_relocs *p;
351f65ca 2294 const struct elf_backend_data *bed;
eed180f8 2295 unsigned int plt_entry_size;
c434dee6 2296
e92d460e 2297 if (h->root.type == bfd_link_hash_indirect)
b34976b6 2298 return TRUE;
c434dee6 2299
351f65ca 2300 eh = (struct elf_x86_64_link_hash_entry *) h;
e92d460e 2301
c434dee6 2302 info = (struct bfd_link_info *) inf;
351f65ca 2303 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2304 if (htab == NULL)
2305 return FALSE;
351f65ca 2306 bed = get_elf_backend_data (info->output_bfd);
eed180f8 2307 plt_entry_size = GET_PLT_ENTRY_SIZE (info->output_bfd);
c434dee6 2308
cbe950e9
L
2309 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
2310 here if it is defined and referenced in a non-shared object. */
2311 if (h->type == STT_GNU_IFUNC
2312 && h->def_regular)
e03a8ed8
L
2313 return _bfd_elf_allocate_ifunc_dyn_relocs (info, h,
2314 &eh->dyn_relocs,
eed180f8 2315 plt_entry_size,
7b70956d 2316 plt_entry_size,
e03a8ed8 2317 GOT_ENTRY_SIZE);
cbe950e9
L
2318 else if (htab->elf.dynamic_sections_created
2319 && h->plt.refcount > 0)
c434dee6
AJ
2320 {
2321 /* Make sure this symbol is output as a dynamic symbol.
2322 Undefined weak syms won't yet be marked as dynamic. */
2323 if (h->dynindx == -1
f5385ebf 2324 && !h->forced_local)
c434dee6 2325 {
c152c796 2326 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 2327 return FALSE;
c434dee6
AJ
2328 }
2329
27482721
AJ
2330 if (info->shared
2331 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
c434dee6 2332 {
6de2ae4a 2333 asection *s = htab->elf.splt;
c434dee6
AJ
2334
2335 /* If this is the first .plt entry, make room for the special
2336 first entry. */
eea6121a 2337 if (s->size == 0)
bb81b736 2338 s->size = plt_entry_size;
c434dee6 2339
eea6121a 2340 h->plt.offset = s->size;
c434dee6
AJ
2341
2342 /* If this symbol is not defined in a regular file, and we are
2343 not generating a shared library, then set the symbol to this
2344 location in the .plt. This is required to make function
2345 pointers compare as equal between the normal executable and
2346 the shared library. */
2347 if (! info->shared
f5385ebf 2348 && !h->def_regular)
c434dee6
AJ
2349 {
2350 h->root.u.def.section = s;
2351 h->root.u.def.value = h->plt.offset;
2352 }
2353
2354 /* Make room for this entry. */
eed180f8 2355 s->size += plt_entry_size;
c434dee6
AJ
2356
2357 /* We also need to make an entry in the .got.plt section, which
2358 will be placed in the .got section by the linker script. */
6de2ae4a 2359 htab->elf.sgotplt->size += GOT_ENTRY_SIZE;
c434dee6
AJ
2360
2361 /* We also need to make an entry in the .rela.plt section. */
351f65ca 2362 htab->elf.srelplt->size += bed->s->sizeof_rela;
6de2ae4a 2363 htab->elf.srelplt->reloc_count++;
c434dee6
AJ
2364 }
2365 else
2366 {
2367 h->plt.offset = (bfd_vma) -1;
f5385ebf 2368 h->needs_plt = 0;
c434dee6
AJ
2369 }
2370 }
2371 else
2372 {
2373 h->plt.offset = (bfd_vma) -1;
f5385ebf 2374 h->needs_plt = 0;
c434dee6
AJ
2375 }
2376
67a4f2b7
AO
2377 eh->tlsdesc_got = (bfd_vma) -1;
2378
bffbf940
JJ
2379 /* If R_X86_64_GOTTPOFF symbol is now local to the binary,
2380 make it a R_X86_64_TPOFF32 requiring no GOT entry. */
2381 if (h->got.refcount > 0
1d85728f 2382 && info->executable
bffbf940 2383 && h->dynindx == -1
351f65ca 2384 && elf_x86_64_hash_entry (h)->tls_type == GOT_TLS_IE)
d8045f23
NC
2385 {
2386 h->got.offset = (bfd_vma) -1;
2387 }
bffbf940 2388 else if (h->got.refcount > 0)
c434dee6
AJ
2389 {
2390 asection *s;
b34976b6 2391 bfd_boolean dyn;
351f65ca 2392 int tls_type = elf_x86_64_hash_entry (h)->tls_type;
c434dee6
AJ
2393
2394 /* Make sure this symbol is output as a dynamic symbol.
2395 Undefined weak syms won't yet be marked as dynamic. */
2396 if (h->dynindx == -1
f5385ebf 2397 && !h->forced_local)
c434dee6 2398 {
c152c796 2399 if (! bfd_elf_link_record_dynamic_symbol (info, h))
b34976b6 2400 return FALSE;
c434dee6
AJ
2401 }
2402
67a4f2b7
AO
2403 if (GOT_TLS_GDESC_P (tls_type))
2404 {
6de2ae4a 2405 eh->tlsdesc_got = htab->elf.sgotplt->size
351f65ca 2406 - elf_x86_64_compute_jump_table_size (htab);
6de2ae4a 2407 htab->elf.sgotplt->size += 2 * GOT_ENTRY_SIZE;
67a4f2b7
AO
2408 h->got.offset = (bfd_vma) -2;
2409 }
2410 if (! GOT_TLS_GDESC_P (tls_type)
2411 || GOT_TLS_GD_P (tls_type))
2412 {
6de2ae4a 2413 s = htab->elf.sgot;
67a4f2b7
AO
2414 h->got.offset = s->size;
2415 s->size += GOT_ENTRY_SIZE;
2416 if (GOT_TLS_GD_P (tls_type))
2417 s->size += GOT_ENTRY_SIZE;
2418 }
c434dee6 2419 dyn = htab->elf.dynamic_sections_created;
bffbf940
JJ
2420 /* R_X86_64_TLSGD needs one dynamic relocation if local symbol
2421 and two if global.
2422 R_X86_64_GOTTPOFF needs one dynamic relocation. */
67a4f2b7 2423 if ((GOT_TLS_GD_P (tls_type) && h->dynindx == -1)
bffbf940 2424 || tls_type == GOT_TLS_IE)
351f65ca 2425 htab->elf.srelgot->size += bed->s->sizeof_rela;
67a4f2b7 2426 else if (GOT_TLS_GD_P (tls_type))
351f65ca 2427 htab->elf.srelgot->size += 2 * bed->s->sizeof_rela;
67a4f2b7
AO
2428 else if (! GOT_TLS_GDESC_P (tls_type)
2429 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2430 || h->root.type != bfd_link_hash_undefweak)
27482721
AJ
2431 && (info->shared
2432 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
351f65ca 2433 htab->elf.srelgot->size += bed->s->sizeof_rela;
67a4f2b7
AO
2434 if (GOT_TLS_GDESC_P (tls_type))
2435 {
351f65ca 2436 htab->elf.srelplt->size += bed->s->sizeof_rela;
67a4f2b7
AO
2437 htab->tlsdesc_plt = (bfd_vma) -1;
2438 }
c434dee6
AJ
2439 }
2440 else
2441 h->got.offset = (bfd_vma) -1;
2442
c434dee6 2443 if (eh->dyn_relocs == NULL)
b34976b6 2444 return TRUE;
c434dee6
AJ
2445
2446 /* In the shared -Bsymbolic case, discard space allocated for
2447 dynamic pc-relative relocs against symbols which turn out to be
2448 defined in regular objects. For the normal shared case, discard
2449 space for pc-relative relocs that have become local due to symbol
2450 visibility changes. */
2451
2452 if (info->shared)
2453 {
27482721
AJ
2454 /* Relocs that use pc_count are those that appear on a call
2455 insn, or certain REL relocs that can generated via assembly.
2456 We want calls to protected symbols to resolve directly to the
2457 function rather than going via the plt. If people want
2458 function pointer comparisons to work as expected then they
2459 should avoid writing weird assembly. */
2460 if (SYMBOL_CALLS_LOCAL (info, h))
c434dee6 2461 {
e03a8ed8 2462 struct elf_dyn_relocs **pp;
c434dee6
AJ
2463
2464 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; )
2465 {
c3ce498c
L
2466 p->count -= p->pc_count;
2467 p->pc_count = 0;
c434dee6
AJ
2468 if (p->count == 0)
2469 *pp = p->next;
2470 else
2471 pp = &p->next;
2472 }
2473 }
4e795f50
AM
2474
2475 /* Also discard relocs on undefined weak syms with non-default
c353e543 2476 visibility. */
22d606e9 2477 if (eh->dyn_relocs != NULL
c353e543 2478 && h->root.type == bfd_link_hash_undefweak)
22d606e9
AM
2479 {
2480 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
2481 eh->dyn_relocs = NULL;
2482
2483 /* Make sure undefined weak symbols are output as a dynamic
2484 symbol in PIEs. */
2485 else if (h->dynindx == -1
d8045f23
NC
2486 && ! h->forced_local
2487 && ! bfd_elf_link_record_dynamic_symbol (info, h))
2488 return FALSE;
22d606e9 2489 }
cbe950e9 2490
d8045f23 2491 }
d40d037c 2492 else if (ELIMINATE_COPY_RELOCS)
c434dee6
AJ
2493 {
2494 /* For the non-shared case, discard space for relocs against
2495 symbols which turn out to need copy relocs or are not
2496 dynamic. */
2497
f5385ebf
AM
2498 if (!h->non_got_ref
2499 && ((h->def_dynamic
2500 && !h->def_regular)
c434dee6
AJ
2501 || (htab->elf.dynamic_sections_created
2502 && (h->root.type == bfd_link_hash_undefweak
2503 || h->root.type == bfd_link_hash_undefined))))
2504 {
2505 /* Make sure this symbol is output as a dynamic symbol.
2506 Undefined weak syms won't yet be marked as dynamic. */
2507 if (h->dynindx == -1
d8045f23
NC
2508 && ! h->forced_local
2509 && ! bfd_elf_link_record_dynamic_symbol (info, h))
2510 return FALSE;
c434dee6
AJ
2511
2512 /* If that succeeded, we know we'll be keeping all the
2513 relocs. */
2514 if (h->dynindx != -1)
2515 goto keep;
2516 }
2517
2518 eh->dyn_relocs = NULL;
2519
2520 keep: ;
2521 }
2522
2523 /* Finally, allocate space. */
2524 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2525 {
e7c33416
NC
2526 asection * sreloc;
2527
cbe950e9 2528 sreloc = elf_section_data (p->sec)->sreloc;
e7c33416
NC
2529
2530 BFD_ASSERT (sreloc != NULL);
2531
351f65ca 2532 sreloc->size += p->count * bed->s->sizeof_rela;
c434dee6
AJ
2533 }
2534
b34976b6 2535 return TRUE;
c434dee6
AJ
2536}
2537
c25bc9fc
L
2538/* Allocate space in .plt, .got and associated reloc sections for
2539 local dynamic relocs. */
2540
2541static bfd_boolean
351f65ca 2542elf_x86_64_allocate_local_dynrelocs (void **slot, void *inf)
c25bc9fc
L
2543{
2544 struct elf_link_hash_entry *h
2545 = (struct elf_link_hash_entry *) *slot;
2546
2547 if (h->type != STT_GNU_IFUNC
2548 || !h->def_regular
2549 || !h->ref_regular
2550 || !h->forced_local
2551 || h->root.type != bfd_link_hash_defined)
2552 abort ();
2553
351f65ca 2554 return elf_x86_64_allocate_dynrelocs (h, inf);
c25bc9fc
L
2555}
2556
c434dee6
AJ
2557/* Find any dynamic relocs that apply to read-only sections. */
2558
b34976b6 2559static bfd_boolean
351f65ca
L
2560elf_x86_64_readonly_dynrelocs (struct elf_link_hash_entry *h,
2561 void * inf)
c434dee6 2562{
351f65ca 2563 struct elf_x86_64_link_hash_entry *eh;
e03a8ed8 2564 struct elf_dyn_relocs *p;
c434dee6 2565
aa715242
L
2566 /* Skip local IFUNC symbols. */
2567 if (h->forced_local && h->type == STT_GNU_IFUNC)
2568 return TRUE;
2569
351f65ca 2570 eh = (struct elf_x86_64_link_hash_entry *) h;
c434dee6
AJ
2571 for (p = eh->dyn_relocs; p != NULL; p = p->next)
2572 {
2573 asection *s = p->sec->output_section;
2574
2575 if (s != NULL && (s->flags & SEC_READONLY) != 0)
2576 {
2577 struct bfd_link_info *info = (struct bfd_link_info *) inf;
2578
2579 info->flags |= DF_TEXTREL;
2580
b70321a2
L
2581 if (info->warn_shared_textrel && info->shared)
2582 info->callbacks->einfo (_("%P: %B: warning: relocation against `%s' in readonly section `%A'.\n"),
2583 p->sec->owner, h->root.root.string,
2584 p->sec);
2585
c434dee6 2586 /* Not an error, just cut short the traversal. */
b34976b6 2587 return FALSE;
c434dee6
AJ
2588 }
2589 }
b34976b6 2590 return TRUE;
c434dee6
AJ
2591}
2592
daa67607
L
2593/* Convert
2594 mov foo@GOTPCREL(%rip), %reg
2595 to
2596 lea foo(%rip), %reg
2597 with the local symbol, foo. */
2598
2599static bfd_boolean
2600elf_x86_64_convert_mov_to_lea (bfd *abfd, asection *sec,
2601 struct bfd_link_info *link_info)
2602{
2603 Elf_Internal_Shdr *symtab_hdr;
2604 Elf_Internal_Rela *internal_relocs;
2605 Elf_Internal_Rela *irel, *irelend;
2606 bfd_byte *contents;
2607 struct elf_x86_64_link_hash_table *htab;
2608 bfd_boolean changed_contents;
2609 bfd_boolean changed_relocs;
2610 bfd_signed_vma *local_got_refcounts;
2611
2612 /* Don't even try to convert non-ELF outputs. */
2613 if (!is_elf_hash_table (link_info->hash))
2614 return FALSE;
2615
fbdc86d9 2616 /* Nothing to do if there are no codes, no relocations or no output. */
daa67607 2617 if ((sec->flags & (SEC_CODE | SEC_RELOC)) != (SEC_CODE | SEC_RELOC)
fbdc86d9
L
2618 || sec->reloc_count == 0
2619 || discarded_section (sec))
daa67607
L
2620 return TRUE;
2621
2622 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2623
2624 /* Load the relocations for this section. */
2625 internal_relocs = (_bfd_elf_link_read_relocs
2626 (abfd, sec, NULL, (Elf_Internal_Rela *) NULL,
2627 link_info->keep_memory));
2628 if (internal_relocs == NULL)
2629 return FALSE;
2630
2631 htab = elf_x86_64_hash_table (link_info);
2632 changed_contents = FALSE;
2633 changed_relocs = FALSE;
2634 local_got_refcounts = elf_local_got_refcounts (abfd);
2635
2636 /* Get the section contents. */
2637 if (elf_section_data (sec)->this_hdr.contents != NULL)
2638 contents = elf_section_data (sec)->this_hdr.contents;
2639 else
2640 {
2641 if (!bfd_malloc_and_get_section (abfd, sec, &contents))
2642 goto error_return;
2643 }
2644
2645 irelend = internal_relocs + sec->reloc_count;
2646 for (irel = internal_relocs; irel < irelend; irel++)
2647 {
2648 unsigned int r_type = ELF32_R_TYPE (irel->r_info);
2649 unsigned int r_symndx = htab->r_sym (irel->r_info);
2650 unsigned int indx;
2651 struct elf_link_hash_entry *h;
2652
2653 if (r_type != R_X86_64_GOTPCREL)
2654 continue;
2655
2656 /* Get the symbol referred to by the reloc. */
2657 if (r_symndx < symtab_hdr->sh_info)
2658 {
2659 Elf_Internal_Sym *isym;
2660
2661 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
2662 abfd, r_symndx);
2663
2664 /* STT_GNU_IFUNC must keep R_X86_64_GOTPCREL relocation. */
2665 if (ELF_ST_TYPE (isym->st_info) != STT_GNU_IFUNC
2666 && bfd_get_8 (input_bfd,
2667 contents + irel->r_offset - 2) == 0x8b)
2668 {
2669 bfd_put_8 (output_bfd, 0x8d,
2670 contents + irel->r_offset - 2);
2671 irel->r_info = htab->r_info (r_symndx, R_X86_64_PC32);
2672 if (local_got_refcounts != NULL
2673 && local_got_refcounts[r_symndx] > 0)
2674 local_got_refcounts[r_symndx] -= 1;
2675 changed_contents = TRUE;
2676 changed_relocs = TRUE;
2677 }
2678 continue;
2679 }
2680
2681 indx = r_symndx - symtab_hdr->sh_info;
2682 h = elf_sym_hashes (abfd)[indx];
2683 BFD_ASSERT (h != NULL);
2684
2685 while (h->root.type == bfd_link_hash_indirect
2686 || h->root.type == bfd_link_hash_warning)
2687 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2688
3f65f599
L
2689 /* STT_GNU_IFUNC must keep R_X86_64_GOTPCREL relocation. We also
2690 avoid optimizing _DYNAMIC since ld.so may use its link-time
2691 address. */
daa67607
L
2692 if (h->def_regular
2693 && h->type != STT_GNU_IFUNC
9637f6ef 2694 && h != htab->elf.hdynamic
daa67607
L
2695 && SYMBOL_REFERENCES_LOCAL (link_info, h)
2696 && bfd_get_8 (input_bfd,
2697 contents + irel->r_offset - 2) == 0x8b)
2698 {
2699 bfd_put_8 (output_bfd, 0x8d,
2700 contents + irel->r_offset - 2);
2701 irel->r_info = htab->r_info (r_symndx, R_X86_64_PC32);
2702 if (h->got.refcount > 0)
2703 h->got.refcount -= 1;
2704 changed_contents = TRUE;
2705 changed_relocs = TRUE;
2706 }
2707 }
2708
2709 if (contents != NULL
2710 && elf_section_data (sec)->this_hdr.contents != contents)
2711 {
2712 if (!changed_contents && !link_info->keep_memory)
2713 free (contents);
2714 else
2715 {
2716 /* Cache the section contents for elf_link_input_bfd. */
2717 elf_section_data (sec)->this_hdr.contents = contents;
2718 }
2719 }
2720
2721 if (elf_section_data (sec)->relocs != internal_relocs)
2722 {
2723 if (!changed_relocs)
2724 free (internal_relocs);
2725 else
2726 elf_section_data (sec)->relocs = internal_relocs;
2727 }
2728
2729 return TRUE;
2730
2731 error_return:
2732 if (contents != NULL
2733 && elf_section_data (sec)->this_hdr.contents != contents)
2734 free (contents);
2735 if (internal_relocs != NULL
2736 && elf_section_data (sec)->relocs != internal_relocs)
2737 free (internal_relocs);
2738 return FALSE;
2739}
2740
70256ad8
AJ
2741/* Set the sizes of the dynamic sections. */
2742
b34976b6 2743static bfd_boolean
351f65ca
L
2744elf_x86_64_size_dynamic_sections (bfd *output_bfd,
2745 struct bfd_link_info *info)
70256ad8 2746{
351f65ca 2747 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
2748 bfd *dynobj;
2749 asection *s;
b34976b6 2750 bfd_boolean relocs;
c434dee6 2751 bfd *ibfd;
351f65ca 2752 const struct elf_backend_data *bed;
70256ad8 2753
351f65ca 2754 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
2755 if (htab == NULL)
2756 return FALSE;
351f65ca 2757 bed = get_elf_backend_data (output_bfd);
4dfe6ac6 2758
c434dee6
AJ
2759 dynobj = htab->elf.dynobj;
2760 if (dynobj == NULL)
2761 abort ();
70256ad8 2762
c434dee6 2763 if (htab->elf.dynamic_sections_created)
70256ad8
AJ
2764 {
2765 /* Set the contents of the .interp section to the interpreter. */
36af4a4e 2766 if (info->executable)
70256ad8 2767 {
3d4d4302 2768 s = bfd_get_linker_section (dynobj, ".interp");
c434dee6
AJ
2769 if (s == NULL)
2770 abort ();
351f65ca
L
2771 s->size = htab->dynamic_interpreter_size;
2772 s->contents = (unsigned char *) htab->dynamic_interpreter;
70256ad8
AJ
2773 }
2774 }
70256ad8 2775
c434dee6
AJ
2776 /* Set up .got offsets for local syms, and space for local dynamic
2777 relocs. */
2778 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
70256ad8 2779 {
c434dee6
AJ
2780 bfd_signed_vma *local_got;
2781 bfd_signed_vma *end_local_got;
bffbf940 2782 char *local_tls_type;
67a4f2b7 2783 bfd_vma *local_tlsdesc_gotent;
c434dee6
AJ
2784 bfd_size_type locsymcount;
2785 Elf_Internal_Shdr *symtab_hdr;
2786 asection *srel;
70256ad8 2787
0ffa91dd 2788 if (! is_x86_64_elf (ibfd))
70256ad8
AJ
2789 continue;
2790
c434dee6 2791 for (s = ibfd->sections; s != NULL; s = s->next)
70256ad8 2792 {
e03a8ed8 2793 struct elf_dyn_relocs *p;
c434dee6 2794
daa67607
L
2795 if (!elf_x86_64_convert_mov_to_lea (ibfd, s, info))
2796 return FALSE;
2797
e03a8ed8 2798 for (p = (struct elf_dyn_relocs *)
e81d3500 2799 (elf_section_data (s)->local_dynrel);
c434dee6
AJ
2800 p != NULL;
2801 p = p->next)
70256ad8 2802 {
c434dee6
AJ
2803 if (!bfd_is_abs_section (p->sec)
2804 && bfd_is_abs_section (p->sec->output_section))
2805 {
2806 /* Input section has been discarded, either because
2807 it is a copy of a linkonce section or due to
2808 linker script /DISCARD/, so we'll be discarding
2809 the relocs too. */
2810 }
2811 else if (p->count != 0)
2812 {
2813 srel = elf_section_data (p->sec)->sreloc;
351f65ca 2814 srel->size += p->count * bed->s->sizeof_rela;
4b819e1f
L
2815 if ((p->sec->output_section->flags & SEC_READONLY) != 0
2816 && (info->flags & DF_TEXTREL) == 0)
b70321a2
L
2817 {
2818 info->flags |= DF_TEXTREL;
2819 if (info->warn_shared_textrel && info->shared)
2820 info->callbacks->einfo (_("%P: %B: warning: relocation in readonly section `%A'.\n"),
2821 p->sec->owner, p->sec);
b70321a2 2822 }
c434dee6 2823 }
70256ad8
AJ
2824 }
2825 }
c434dee6
AJ
2826
2827 local_got = elf_local_got_refcounts (ibfd);
2828 if (!local_got)
2829 continue;
2830
0ffa91dd 2831 symtab_hdr = &elf_symtab_hdr (ibfd);
c434dee6
AJ
2832 locsymcount = symtab_hdr->sh_info;
2833 end_local_got = local_got + locsymcount;
351f65ca
L
2834 local_tls_type = elf_x86_64_local_got_tls_type (ibfd);
2835 local_tlsdesc_gotent = elf_x86_64_local_tlsdesc_gotent (ibfd);
6de2ae4a
L
2836 s = htab->elf.sgot;
2837 srel = htab->elf.srelgot;
67a4f2b7
AO
2838 for (; local_got < end_local_got;
2839 ++local_got, ++local_tls_type, ++local_tlsdesc_gotent)
70256ad8 2840 {
67a4f2b7 2841 *local_tlsdesc_gotent = (bfd_vma) -1;
c434dee6 2842 if (*local_got > 0)
70256ad8 2843 {
67a4f2b7
AO
2844 if (GOT_TLS_GDESC_P (*local_tls_type))
2845 {
6de2ae4a 2846 *local_tlsdesc_gotent = htab->elf.sgotplt->size
351f65ca 2847 - elf_x86_64_compute_jump_table_size (htab);
6de2ae4a 2848 htab->elf.sgotplt->size += 2 * GOT_ENTRY_SIZE;
67a4f2b7
AO
2849 *local_got = (bfd_vma) -2;
2850 }
2851 if (! GOT_TLS_GDESC_P (*local_tls_type)
2852 || GOT_TLS_GD_P (*local_tls_type))
2853 {
2854 *local_got = s->size;
2855 s->size += GOT_ENTRY_SIZE;
2856 if (GOT_TLS_GD_P (*local_tls_type))
2857 s->size += GOT_ENTRY_SIZE;
2858 }
bffbf940 2859 if (info->shared
67a4f2b7 2860 || GOT_TLS_GD_ANY_P (*local_tls_type)
bffbf940 2861 || *local_tls_type == GOT_TLS_IE)
67a4f2b7
AO
2862 {
2863 if (GOT_TLS_GDESC_P (*local_tls_type))
2864 {
6de2ae4a 2865 htab->elf.srelplt->size
351f65ca 2866 += bed->s->sizeof_rela;
67a4f2b7
AO
2867 htab->tlsdesc_plt = (bfd_vma) -1;
2868 }
2869 if (! GOT_TLS_GDESC_P (*local_tls_type)
2870 || GOT_TLS_GD_P (*local_tls_type))
351f65ca 2871 srel->size += bed->s->sizeof_rela;
67a4f2b7 2872 }
70256ad8
AJ
2873 }
2874 else
c434dee6
AJ
2875 *local_got = (bfd_vma) -1;
2876 }
2877 }
70256ad8 2878
bffbf940
JJ
2879 if (htab->tls_ld_got.refcount > 0)
2880 {
2881 /* Allocate 2 got entries and 1 dynamic reloc for R_X86_64_TLSLD
2882 relocs. */
6de2ae4a
L
2883 htab->tls_ld_got.offset = htab->elf.sgot->size;
2884 htab->elf.sgot->size += 2 * GOT_ENTRY_SIZE;
351f65ca 2885 htab->elf.srelgot->size += bed->s->sizeof_rela;
bffbf940
JJ
2886 }
2887 else
2888 htab->tls_ld_got.offset = -1;
2889
c434dee6
AJ
2890 /* Allocate global sym .plt and .got entries, and space for global
2891 sym dynamic relocs. */
351f65ca 2892 elf_link_hash_traverse (&htab->elf, elf_x86_64_allocate_dynrelocs,
eb4ff4d6 2893 info);
c434dee6 2894
c25bc9fc
L
2895 /* Allocate .plt and .got entries, and space for local symbols. */
2896 htab_traverse (htab->loc_hash_table,
351f65ca 2897 elf_x86_64_allocate_local_dynrelocs,
c25bc9fc
L
2898 info);
2899
67a4f2b7
AO
2900 /* For every jump slot reserved in the sgotplt, reloc_count is
2901 incremented. However, when we reserve space for TLS descriptors,
2902 it's not incremented, so in order to compute the space reserved
2903 for them, it suffices to multiply the reloc count by the jump
e1f98742
L
2904 slot size.
2905
2906 PR ld/13302: We start next_irelative_index at the end of .rela.plt
2907 so that R_X86_64_IRELATIVE entries come last. */
6de2ae4a 2908 if (htab->elf.srelplt)
e1f98742
L
2909 {
2910 htab->sgotplt_jump_table_size
2911 = elf_x86_64_compute_jump_table_size (htab);
2912 htab->next_irelative_index = htab->elf.srelplt->reloc_count - 1;
2913 }
2914 else if (htab->elf.irelplt)
2915 htab->next_irelative_index = htab->elf.irelplt->reloc_count - 1;
67a4f2b7
AO
2916
2917 if (htab->tlsdesc_plt)
2918 {
2919 /* If we're not using lazy TLS relocations, don't generate the
2920 PLT and GOT entries they require. */
2921 if ((info->flags & DF_BIND_NOW))
2922 htab->tlsdesc_plt = 0;
2923 else
2924 {
6de2ae4a
L
2925 htab->tlsdesc_got = htab->elf.sgot->size;
2926 htab->elf.sgot->size += GOT_ENTRY_SIZE;
67a4f2b7
AO
2927 /* Reserve room for the initial entry.
2928 FIXME: we could probably do away with it in this case. */
6de2ae4a 2929 if (htab->elf.splt->size == 0)
eed180f8 2930 htab->elf.splt->size += GET_PLT_ENTRY_SIZE (output_bfd);
6de2ae4a 2931 htab->tlsdesc_plt = htab->elf.splt->size;
eed180f8 2932 htab->elf.splt->size += GET_PLT_ENTRY_SIZE (output_bfd);
67a4f2b7
AO
2933 }
2934 }
2935
a7b16ceb
L
2936 if (htab->elf.sgotplt)
2937 {
2938 /* Don't allocate .got.plt section if there are no GOT nor PLT
eed180f8 2939 entries and there is no refeence to _GLOBAL_OFFSET_TABLE_. */
9d4b2dba
L
2940 if ((htab->elf.hgot == NULL
2941 || !htab->elf.hgot->ref_regular_nonweak)
e28df02b
L
2942 && (htab->elf.sgotplt->size
2943 == get_elf_backend_data (output_bfd)->got_header_size)
a7b16ceb
L
2944 && (htab->elf.splt == NULL
2945 || htab->elf.splt->size == 0)
2946 && (htab->elf.sgot == NULL
2947 || htab->elf.sgot->size == 0)
2948 && (htab->elf.iplt == NULL
2949 || htab->elf.iplt->size == 0)
2950 && (htab->elf.igotplt == NULL
2951 || htab->elf.igotplt->size == 0))
2952 htab->elf.sgotplt->size = 0;
2953 }
2954
9a2a56cc
AM
2955 if (htab->plt_eh_frame != NULL
2956 && htab->elf.splt != NULL
2957 && htab->elf.splt->size != 0
2958 && !bfd_is_abs_section (htab->elf.splt->output_section)
2959 && _bfd_elf_eh_frame_present (info))
2960 {
2961 const struct elf_x86_64_backend_data *arch_data
f8222080 2962 = get_elf_x86_64_arch_data (bed);
9a2a56cc
AM
2963 htab->plt_eh_frame->size = arch_data->eh_frame_plt_size;
2964 }
2965
c434dee6
AJ
2966 /* We now have determined the sizes of the various dynamic sections.
2967 Allocate memory for them. */
b34976b6 2968 relocs = FALSE;
c434dee6
AJ
2969 for (s = dynobj->sections; s != NULL; s = s->next)
2970 {
2971 if ((s->flags & SEC_LINKER_CREATED) == 0)
2972 continue;
2973
6de2ae4a
L
2974 if (s == htab->elf.splt
2975 || s == htab->elf.sgot
2976 || s == htab->elf.sgotplt
2977 || s == htab->elf.iplt
2978 || s == htab->elf.igotplt
9a2a56cc 2979 || s == htab->plt_eh_frame
75ff4589 2980 || s == htab->sdynbss)
c434dee6
AJ
2981 {
2982 /* Strip this section if we don't need it; see the
2983 comment below. */
2984 }
0112cd26 2985 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
c434dee6 2986 {
6de2ae4a 2987 if (s->size != 0 && s != htab->elf.srelplt)
b34976b6 2988 relocs = TRUE;
c434dee6
AJ
2989
2990 /* We use the reloc_count field as a counter if we need
2991 to copy relocs into the output file. */
6de2ae4a 2992 if (s != htab->elf.srelplt)
67a4f2b7 2993 s->reloc_count = 0;
70256ad8 2994 }
c434dee6 2995 else
70256ad8
AJ
2996 {
2997 /* It's not one of our sections, so don't allocate space. */
2998 continue;
2999 }
3000
eea6121a 3001 if (s->size == 0)
70256ad8 3002 {
c434dee6
AJ
3003 /* If we don't need this section, strip it from the
3004 output file. This is mostly to handle .rela.bss and
3005 .rela.plt. We must create both sections in
3006 create_dynamic_sections, because they must be created
3007 before the linker maps input sections to output
3008 sections. The linker does that before
3009 adjust_dynamic_symbol is called, and it is that
3010 function which decides whether anything needs to go
3011 into these sections. */
3012
8423293d 3013 s->flags |= SEC_EXCLUDE;
70256ad8
AJ
3014 continue;
3015 }
3016
c456f082
AM
3017 if ((s->flags & SEC_HAS_CONTENTS) == 0)
3018 continue;
3019
70256ad8
AJ
3020 /* Allocate memory for the section contents. We use bfd_zalloc
3021 here in case unused entries are not reclaimed before the
3022 section's contents are written out. This should not happen,
3023 but this way if it does, we get a R_X86_64_NONE reloc instead
3024 of garbage. */
eea6121a 3025 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
c434dee6 3026 if (s->contents == NULL)
b34976b6 3027 return FALSE;
70256ad8
AJ
3028 }
3029
e41b3a13 3030 if (htab->plt_eh_frame != NULL
9a2a56cc
AM
3031 && htab->plt_eh_frame->contents != NULL)
3032 {
3033 const struct elf_x86_64_backend_data *arch_data
f8222080 3034 = get_elf_x86_64_arch_data (bed);
9a2a56cc
AM
3035
3036 memcpy (htab->plt_eh_frame->contents,
3037 arch_data->eh_frame_plt, htab->plt_eh_frame->size);
3038 bfd_put_32 (dynobj, htab->elf.splt->size,
3039 htab->plt_eh_frame->contents + PLT_FDE_LEN_OFFSET);
3040 }
e41b3a13 3041
c434dee6 3042 if (htab->elf.dynamic_sections_created)
70256ad8
AJ
3043 {
3044 /* Add some entries to the .dynamic section. We fill in the
351f65ca 3045 values later, in elf_x86_64_finish_dynamic_sections, but we
70256ad8 3046 must add the entries now so that we get the correct size for
407443a3 3047 the .dynamic section. The DT_DEBUG entry is filled in by the
70256ad8 3048 dynamic linker and used by the debugger. */
dc810e39 3049#define add_dynamic_entry(TAG, VAL) \
5a580b3a 3050 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
dc810e39 3051
36af4a4e 3052 if (info->executable)
70256ad8 3053 {
dc810e39 3054 if (!add_dynamic_entry (DT_DEBUG, 0))
b34976b6 3055 return FALSE;
70256ad8
AJ
3056 }
3057
6de2ae4a 3058 if (htab->elf.splt->size != 0)
70256ad8 3059 {
dc810e39
AM
3060 if (!add_dynamic_entry (DT_PLTGOT, 0)
3061 || !add_dynamic_entry (DT_PLTRELSZ, 0)
3062 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
3063 || !add_dynamic_entry (DT_JMPREL, 0))
b34976b6 3064 return FALSE;
67a4f2b7
AO
3065
3066 if (htab->tlsdesc_plt
3067 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
3068 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
3069 return FALSE;
70256ad8
AJ
3070 }
3071
3072 if (relocs)
3073 {
dc810e39
AM
3074 if (!add_dynamic_entry (DT_RELA, 0)
3075 || !add_dynamic_entry (DT_RELASZ, 0)
351f65ca 3076 || !add_dynamic_entry (DT_RELAENT, bed->s->sizeof_rela))
b34976b6 3077 return FALSE;
70256ad8 3078
c434dee6
AJ
3079 /* If any dynamic relocs apply to a read-only section,
3080 then we need a DT_TEXTREL entry. */
3081 if ((info->flags & DF_TEXTREL) == 0)
eed180f8 3082 elf_link_hash_traverse (&htab->elf,
351f65ca 3083 elf_x86_64_readonly_dynrelocs,
eb4ff4d6 3084 info);
c434dee6
AJ
3085
3086 if ((info->flags & DF_TEXTREL) != 0)
3087 {
3088 if (!add_dynamic_entry (DT_TEXTREL, 0))
b34976b6 3089 return FALSE;
c434dee6 3090 }
70256ad8
AJ
3091 }
3092 }
dc810e39 3093#undef add_dynamic_entry
70256ad8 3094
b34976b6 3095 return TRUE;
70256ad8
AJ
3096}
3097
67a4f2b7 3098static bfd_boolean
351f65ca
L
3099elf_x86_64_always_size_sections (bfd *output_bfd,
3100 struct bfd_link_info *info)
67a4f2b7
AO
3101{
3102 asection *tls_sec = elf_hash_table (info)->tls_sec;
3103
3104 if (tls_sec)
3105 {
3106 struct elf_link_hash_entry *tlsbase;
3107
3108 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
3109 "_TLS_MODULE_BASE_",
3110 FALSE, FALSE, FALSE);
3111
3112 if (tlsbase && tlsbase->type == STT_TLS)
3113 {
351f65ca 3114 struct elf_x86_64_link_hash_table *htab;
67a4f2b7
AO
3115 struct bfd_link_hash_entry *bh = NULL;
3116 const struct elf_backend_data *bed
3117 = get_elf_backend_data (output_bfd);
3118
351f65ca 3119 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3120 if (htab == NULL)
3121 return FALSE;
3122
67a4f2b7
AO
3123 if (!(_bfd_generic_link_add_one_symbol
3124 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
3125 tls_sec, 0, NULL, FALSE,
3126 bed->collect, &bh)))
3127 return FALSE;
9f03412a 3128
4dfe6ac6 3129 htab->tls_module_base = bh;
9f03412a 3130
67a4f2b7
AO
3131 tlsbase = (struct elf_link_hash_entry *)bh;
3132 tlsbase->def_regular = 1;
3133 tlsbase->other = STV_HIDDEN;
3134 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
3135 }
3136 }
3137
3138 return TRUE;
3139}
3140
9f03412a
AO
3141/* _TLS_MODULE_BASE_ needs to be treated especially when linking
3142 executables. Rather than setting it to the beginning of the TLS
3143 section, we have to set it to the end. This function may be called
3144 multiple times, it is idempotent. */
3145
3146static void
351f65ca 3147elf_x86_64_set_tls_module_base (struct bfd_link_info *info)
9f03412a 3148{
351f65ca 3149 struct elf_x86_64_link_hash_table *htab;
9f03412a
AO
3150 struct bfd_link_hash_entry *base;
3151
3152 if (!info->executable)
3153 return;
3154
351f65ca 3155 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3156 if (htab == NULL)
3157 return;
9f03412a 3158
4dfe6ac6
NC
3159 base = htab->tls_module_base;
3160 if (base == NULL)
9f03412a
AO
3161 return;
3162
4dfe6ac6 3163 base->u.def.value = htab->elf.tls_size;
9f03412a
AO
3164}
3165
bffbf940
JJ
3166/* Return the base VMA address which should be subtracted from real addresses
3167 when resolving @dtpoff relocation.
3168 This is PT_TLS segment p_vaddr. */
3169
3170static bfd_vma
351f65ca 3171elf_x86_64_dtpoff_base (struct bfd_link_info *info)
bffbf940 3172{
e1918d23
AM
3173 /* If tls_sec is NULL, we should have signalled an error already. */
3174 if (elf_hash_table (info)->tls_sec == NULL)
bffbf940 3175 return 0;
e1918d23 3176 return elf_hash_table (info)->tls_sec->vma;
bffbf940
JJ
3177}
3178
3179/* Return the relocation value for @tpoff relocation
3180 if STT_TLS virtual address is ADDRESS. */
3181
3182static bfd_vma
351f65ca 3183elf_x86_64_tpoff (struct bfd_link_info *info, bfd_vma address)
bffbf940 3184{
e1918d23 3185 struct elf_link_hash_table *htab = elf_hash_table (info);
7dc98aea
RO
3186 const struct elf_backend_data *bed = get_elf_backend_data (info->output_bfd);
3187 bfd_vma static_tls_size;
bffbf940
JJ
3188
3189 /* If tls_segment is NULL, we should have signalled an error already. */
e1918d23 3190 if (htab->tls_sec == NULL)
bffbf940 3191 return 0;
7dc98aea
RO
3192
3193 /* Consider special static TLS alignment requirements. */
3194 static_tls_size = BFD_ALIGN (htab->tls_size, bed->static_tls_alignment);
3195 return address - static_tls_size - htab->tls_sec->vma;
bffbf940
JJ
3196}
3197
90f487df
L
3198/* Is the instruction before OFFSET in CONTENTS a 32bit relative
3199 branch? */
3200
3201static bfd_boolean
3202is_32bit_relative_branch (bfd_byte *contents, bfd_vma offset)
3203{
3204 /* Opcode Instruction
3205 0xe8 call
3206 0xe9 jump
3207 0x0f 0x8x conditional jump */
3208 return ((offset > 0
3209 && (contents [offset - 1] == 0xe8
3210 || contents [offset - 1] == 0xe9))
3211 || (offset > 1
3212 && contents [offset - 2] == 0x0f
3213 && (contents [offset - 1] & 0xf0) == 0x80));
3214}
3215
8d88c4ca
NC
3216/* Relocate an x86_64 ELF section. */
3217
b34976b6 3218static bfd_boolean
351f65ca
L
3219elf_x86_64_relocate_section (bfd *output_bfd,
3220 struct bfd_link_info *info,
3221 bfd *input_bfd,
3222 asection *input_section,
3223 bfd_byte *contents,
3224 Elf_Internal_Rela *relocs,
3225 Elf_Internal_Sym *local_syms,
3226 asection **local_sections)
8d88c4ca 3227{
351f65ca 3228 struct elf_x86_64_link_hash_table *htab;
8d88c4ca
NC
3229 Elf_Internal_Shdr *symtab_hdr;
3230 struct elf_link_hash_entry **sym_hashes;
3231 bfd_vma *local_got_offsets;
67a4f2b7 3232 bfd_vma *local_tlsdesc_gotents;
c434dee6 3233 Elf_Internal_Rela *rel;
8d88c4ca 3234 Elf_Internal_Rela *relend;
eed180f8 3235 const unsigned int plt_entry_size = GET_PLT_ENTRY_SIZE (info->output_bfd);
8d88c4ca 3236
0ffa91dd
NC
3237 BFD_ASSERT (is_x86_64_elf (input_bfd));
3238
351f65ca 3239 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
3240 if (htab == NULL)
3241 return FALSE;
0ffa91dd 3242 symtab_hdr = &elf_symtab_hdr (input_bfd);
8d88c4ca
NC
3243 sym_hashes = elf_sym_hashes (input_bfd);
3244 local_got_offsets = elf_local_got_offsets (input_bfd);
351f65ca 3245 local_tlsdesc_gotents = elf_x86_64_local_tlsdesc_gotent (input_bfd);
8d88c4ca 3246
351f65ca 3247 elf_x86_64_set_tls_module_base (info);
9f03412a 3248
c434dee6 3249 rel = relocs;
8d88c4ca 3250 relend = relocs + input_section->reloc_count;
c434dee6 3251 for (; rel < relend; rel++)
8d88c4ca 3252 {
bffbf940 3253 unsigned int r_type;
8d88c4ca
NC
3254 reloc_howto_type *howto;
3255 unsigned long r_symndx;
3256 struct elf_link_hash_entry *h;
3257 Elf_Internal_Sym *sym;
3258 asection *sec;
67a4f2b7 3259 bfd_vma off, offplt;
8d88c4ca 3260 bfd_vma relocation;
b34976b6 3261 bfd_boolean unresolved_reloc;
8d88c4ca 3262 bfd_reloc_status_type r;
bffbf940 3263 int tls_type;
cbe950e9 3264 asection *base_got;
1788fc08 3265 bfd_vma st_size;
8d88c4ca 3266
351f65ca 3267 r_type = ELF32_R_TYPE (rel->r_info);
fe4770f4
AJ
3268 if (r_type == (int) R_X86_64_GNU_VTINHERIT
3269 || r_type == (int) R_X86_64_GNU_VTENTRY)
3270 continue;
8d88c4ca 3271
9911c0fc 3272 if (r_type >= (int) R_X86_64_standard)
8da6118f 3273 {
9911c0fc
L
3274 (*_bfd_error_handler)
3275 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
3276 input_bfd, input_section, r_type);
8da6118f 3277 bfd_set_error (bfd_error_bad_value);
b34976b6 3278 return FALSE;
8da6118f 3279 }
8d88c4ca 3280
d7921315 3281 if (r_type != (int) R_X86_64_32
eed180f8 3282 || ABI_64_P (output_bfd))
d7921315
L
3283 howto = x86_64_elf_howto_table + r_type;
3284 else
3285 howto = (x86_64_elf_howto_table
3286 + ARRAY_SIZE (x86_64_elf_howto_table) - 1);
351f65ca 3287 r_symndx = htab->r_sym (rel->r_info);
8d88c4ca
NC
3288 h = NULL;
3289 sym = NULL;
3290 sec = NULL;
b34976b6 3291 unresolved_reloc = FALSE;
8d88c4ca 3292 if (r_symndx < symtab_hdr->sh_info)
8da6118f
KH
3293 {
3294 sym = local_syms + r_symndx;
3295 sec = local_sections[r_symndx];
c434dee6 3296
c25bc9fc
L
3297 relocation = _bfd_elf_rela_local_sym (output_bfd, sym,
3298 &sec, rel);
1788fc08 3299 st_size = sym->st_size;
c25bc9fc
L
3300
3301 /* Relocate against local STT_GNU_IFUNC symbol. */
1f85278f 3302 if (!info->relocatable
351f65ca 3303 && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
c25bc9fc 3304 {
351f65ca
L
3305 h = elf_x86_64_get_local_sym_hash (htab, input_bfd,
3306 rel, FALSE);
c25bc9fc
L
3307 if (h == NULL)
3308 abort ();
3309
eed180f8 3310 /* Set STT_GNU_IFUNC symbol value. */
c25bc9fc
L
3311 h->root.u.def.value = sym->st_value;
3312 h->root.u.def.section = sec;
3313 }
8da6118f 3314 }
8d88c4ca 3315 else
8da6118f 3316 {
c9736ba0 3317 bfd_boolean warned ATTRIBUTE_UNUSED;
62d887d4 3318 bfd_boolean ignored ATTRIBUTE_UNUSED;
c434dee6 3319
b2a8e766
AM
3320 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
3321 r_symndx, symtab_hdr, sym_hashes,
3322 h, sec, relocation,
62d887d4 3323 unresolved_reloc, warned, ignored);
1788fc08 3324 st_size = h->size;
8da6118f 3325 }
ab96bf03 3326
dbaa2011 3327 if (sec != NULL && discarded_section (sec))
0672748a 3328 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
545fd46b 3329 rel, 1, relend, howto, 0, contents);
ab96bf03
AM
3330
3331 if (info->relocatable)
3332 continue;
3333
1788fc08 3334 if (rel->r_addend == 0 && !ABI_64_P (output_bfd))
64d25c44 3335 {
1788fc08
L
3336 if (r_type == R_X86_64_64)
3337 {
3338 /* For x32, treat R_X86_64_64 like R_X86_64_32 and
3339 zero-extend it to 64bit if addend is zero. */
3340 r_type = R_X86_64_32;
3341 memset (contents + rel->r_offset + 4, 0, 4);
3342 }
3343 else if (r_type == R_X86_64_SIZE64)
3344 {
3345 /* For x32, treat R_X86_64_SIZE64 like R_X86_64_SIZE32 and
3346 zero-extend it to 64bit if addend is zero. */
3347 r_type = R_X86_64_SIZE32;
3348 memset (contents + rel->r_offset + 4, 0, 4);
3349 }
64d25c44
L
3350 }
3351
cbe950e9
L
3352 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
3353 it here if it is defined in a non-shared object. */
3354 if (h != NULL
3355 && h->type == STT_GNU_IFUNC
3356 && h->def_regular)
3357 {
3358 asection *plt;
3359 bfd_vma plt_index;
4c544807 3360 const char *name;
cbe950e9
L
3361
3362 if ((input_section->flags & SEC_ALLOC) == 0
3363 || h->plt.offset == (bfd_vma) -1)
3364 abort ();
3365
3366 /* STT_GNU_IFUNC symbol must go through PLT. */
6de2ae4a 3367 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
cbe950e9
L
3368 relocation = (plt->output_section->vma
3369 + plt->output_offset + h->plt.offset);
3370
3371 switch (r_type)
3372 {
3373 default:
4c544807
L
3374 if (h->root.root.string)
3375 name = h->root.root.string;
3376 else
3377 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
3378 NULL);
cbe950e9
L
3379 (*_bfd_error_handler)
3380 (_("%B: relocation %s against STT_GNU_IFUNC "
3381 "symbol `%s' isn't handled by %s"), input_bfd,
3382 x86_64_elf_howto_table[r_type].name,
4c544807 3383 name, __FUNCTION__);
cbe950e9
L
3384 bfd_set_error (bfd_error_bad_value);
3385 return FALSE;
3386
3387 case R_X86_64_32S:
710ab287 3388 if (info->shared)
cbe950e9 3389 abort ();
710ab287
L
3390 goto do_relocation;
3391
248775ba
L
3392 case R_X86_64_32:
3393 if (ABI_64_P (output_bfd))
3394 goto do_relocation;
17672001 3395 /* FALLTHROUGH */
eed180f8 3396 case R_X86_64_64:
710ab287
L
3397 if (rel->r_addend != 0)
3398 {
4c544807
L
3399 if (h->root.root.string)
3400 name = h->root.root.string;
3401 else
3402 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
3403 sym, NULL);
710ab287
L
3404 (*_bfd_error_handler)
3405 (_("%B: relocation %s against STT_GNU_IFUNC "
3406 "symbol `%s' has non-zero addend: %d"),
3407 input_bfd, x86_64_elf_howto_table[r_type].name,
4c544807 3408 name, rel->r_addend);
710ab287
L
3409 bfd_set_error (bfd_error_bad_value);
3410 return FALSE;
3411 }
3412
3413 /* Generate dynamic relcoation only when there is a
c293fa49 3414 non-GOT reference in a shared object. */
710ab287
L
3415 if (info->shared && h->non_got_ref)
3416 {
3417 Elf_Internal_Rela outrel;
710ab287
L
3418 asection *sreloc;
3419
c25bc9fc
L
3420 /* Need a dynamic relocation to get the real function
3421 address. */
710ab287
L
3422 outrel.r_offset = _bfd_elf_section_offset (output_bfd,
3423 info,
3424 input_section,
3425 rel->r_offset);
3426 if (outrel.r_offset == (bfd_vma) -1
3427 || outrel.r_offset == (bfd_vma) -2)
3428 abort ();
3429
3430 outrel.r_offset += (input_section->output_section->vma
3431 + input_section->output_offset);
3432
3433 if (h->dynindx == -1
44c4ea11
L
3434 || h->forced_local
3435 || info->executable)
710ab287
L
3436 {
3437 /* This symbol is resolved locally. */
56b8aada
L
3438 outrel.r_info = htab->r_info (0, R_X86_64_IRELATIVE);
3439 outrel.r_addend = (h->root.u.def.value
3440 + h->root.u.def.section->output_section->vma
3441 + h->root.u.def.section->output_offset);
710ab287
L
3442 }
3443 else
3444 {
351f65ca 3445 outrel.r_info = htab->r_info (h->dynindx, r_type);
710ab287
L
3446 outrel.r_addend = 0;
3447 }
3448
6de2ae4a 3449 sreloc = htab->elf.irelifunc;
351f65ca 3450 elf_append_rela (output_bfd, sreloc, &outrel);
710ab287
L
3451
3452 /* If this reloc is against an external symbol, we
3453 do not want to fiddle with the addend. Otherwise,
3454 we need to include the symbol value so that it
3455 becomes an addend for the dynamic reloc. For an
3456 internal symbol, we have updated addend. */
56b8aada 3457 continue;
710ab287 3458 }
17672001 3459 /* FALLTHROUGH */
cbe950e9 3460 case R_X86_64_PC32:
c3320543 3461 case R_X86_64_PC32_BND:
cbe950e9
L
3462 case R_X86_64_PC64:
3463 case R_X86_64_PLT32:
c3320543 3464 case R_X86_64_PLT32_BND:
cbe950e9
L
3465 goto do_relocation;
3466
3467 case R_X86_64_GOTPCREL:
3468 case R_X86_64_GOTPCREL64:
6de2ae4a 3469 base_got = htab->elf.sgot;
cbe950e9
L
3470 off = h->got.offset;
3471
7afd84dc 3472 if (base_got == NULL)
cbe950e9
L
3473 abort ();
3474
7afd84dc 3475 if (off == (bfd_vma) -1)
cbe950e9 3476 {
7afd84dc
L
3477 /* We can't use h->got.offset here to save state, or
3478 even just remember the offset, as finish_dynamic_symbol
3479 would use that as offset into .got. */
cbe950e9 3480
6de2ae4a 3481 if (htab->elf.splt != NULL)
7afd84dc 3482 {
eed180f8 3483 plt_index = h->plt.offset / plt_entry_size - 1;
7afd84dc 3484 off = (plt_index + 3) * GOT_ENTRY_SIZE;
6de2ae4a 3485 base_got = htab->elf.sgotplt;
7afd84dc 3486 }
cbe950e9
L
3487 else
3488 {
eed180f8 3489 plt_index = h->plt.offset / plt_entry_size;
7afd84dc 3490 off = plt_index * GOT_ENTRY_SIZE;
6de2ae4a 3491 base_got = htab->elf.igotplt;
7afd84dc
L
3492 }
3493
3494 if (h->dynindx == -1
3495 || h->forced_local
3496 || info->symbolic)
3497 {
eed180f8 3498 /* This references the local defitionion. We must
7afd84dc 3499 initialize this entry in the global offset table.
eed180f8 3500 Since the offset must always be a multiple of 8,
7afd84dc
L
3501 we use the least significant bit to record
3502 whether we have initialized it already.
3503
3504 When doing a dynamic link, we create a .rela.got
3505 relocation entry to initialize the value. This
3506 is done in the finish_dynamic_symbol routine. */
3507 if ((off & 1) != 0)
3508 off &= ~1;
3509 else
3510 {
3511 bfd_put_64 (output_bfd, relocation,
3512 base_got->contents + off);
3513 /* Note that this is harmless for the GOTPLT64
3514 case, as -1 | 1 still is -1. */
3515 h->got.offset |= 1;
3516 }
cbe950e9
L
3517 }
3518 }
3519
3520 relocation = (base_got->output_section->vma
3521 + base_got->output_offset + off);
3522
cbe950e9
L
3523 goto do_relocation;
3524 }
3525 }
3526
70256ad8
AJ
3527 /* When generating a shared object, the relocations handled here are
3528 copied into the output file to be resolved at run time. */
3529 switch (r_type)
3530 {
3531 case R_X86_64_GOT32:
7b81dfbb 3532 case R_X86_64_GOT64:
70256ad8
AJ
3533 /* Relocation is to the entry for this symbol in the global
3534 offset table. */
70256ad8 3535 case R_X86_64_GOTPCREL:
7b81dfbb
AJ
3536 case R_X86_64_GOTPCREL64:
3537 /* Use global offset table entry as symbol value. */
3538 case R_X86_64_GOTPLT64:
3539 /* This is the same as GOT64 for relocation purposes, but
3540 indicates the existence of a PLT entry. The difficulty is,
3541 that we must calculate the GOT slot offset from the PLT
3542 offset, if this symbol got a PLT entry (it was global).
3543 Additionally if it's computed from the PLT entry, then that
3544 GOT offset is relative to .got.plt, not to .got. */
6de2ae4a 3545 base_got = htab->elf.sgot;
7b81dfbb 3546
6de2ae4a 3547 if (htab->elf.sgot == NULL)
c434dee6 3548 abort ();
053579d7 3549
51e0a107 3550 if (h != NULL)
70256ad8 3551 {
b34976b6 3552 bfd_boolean dyn;
c434dee6
AJ
3553
3554 off = h->got.offset;
7b81dfbb 3555 if (h->needs_plt
eed180f8 3556 && h->plt.offset != (bfd_vma)-1
7b81dfbb
AJ
3557 && off == (bfd_vma)-1)
3558 {
3559 /* We can't use h->got.offset here to save
3560 state, or even just remember the offset, as
3561 finish_dynamic_symbol would use that as offset into
3562 .got. */
eed180f8 3563 bfd_vma plt_index = h->plt.offset / plt_entry_size - 1;
7b81dfbb 3564 off = (plt_index + 3) * GOT_ENTRY_SIZE;
6de2ae4a 3565 base_got = htab->elf.sgotplt;
7b81dfbb
AJ
3566 }
3567
c434dee6 3568 dyn = htab->elf.dynamic_sections_created;
51e0a107 3569
27482721 3570 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
51e0a107 3571 || (info->shared
27482721 3572 && SYMBOL_REFERENCES_LOCAL (info, h))
4bc6e03a
AJ
3573 || (ELF_ST_VISIBILITY (h->other)
3574 && h->root.type == bfd_link_hash_undefweak))
51e0a107
JH
3575 {
3576 /* This is actually a static link, or it is a -Bsymbolic
3577 link and the symbol is defined locally, or the symbol
407443a3 3578 was forced to be local because of a version file. We
51e0a107
JH
3579 must initialize this entry in the global offset table.
3580 Since the offset must always be a multiple of 8, we
3581 use the least significant bit to record whether we
3582 have initialized it already.
3583
3584 When doing a dynamic link, we create a .rela.got
407443a3
AJ
3585 relocation entry to initialize the value. This is
3586 done in the finish_dynamic_symbol routine. */
51e0a107
JH
3587 if ((off & 1) != 0)
3588 off &= ~1;
3589 else
3590 {
3591 bfd_put_64 (output_bfd, relocation,
7b81dfbb
AJ
3592 base_got->contents + off);
3593 /* Note that this is harmless for the GOTPLT64 case,
eed180f8 3594 as -1 | 1 still is -1. */
51e0a107
JH
3595 h->got.offset |= 1;
3596 }
3597 }
053579d7 3598 else
b34976b6 3599 unresolved_reloc = FALSE;
70256ad8 3600 }
51e0a107
JH
3601 else
3602 {
c434dee6
AJ
3603 if (local_got_offsets == NULL)
3604 abort ();
51e0a107
JH
3605
3606 off = local_got_offsets[r_symndx];
3607
3608 /* The offset must always be a multiple of 8. We use
407443a3
AJ
3609 the least significant bit to record whether we have
3610 already generated the necessary reloc. */
51e0a107
JH
3611 if ((off & 1) != 0)
3612 off &= ~1;
3613 else
3614 {
c434dee6 3615 bfd_put_64 (output_bfd, relocation,
7b81dfbb 3616 base_got->contents + off);
51e0a107
JH
3617
3618 if (info->shared)
3619 {
947216bf 3620 asection *s;
51e0a107 3621 Elf_Internal_Rela outrel;
70256ad8 3622
51e0a107
JH
3623 /* We need to generate a R_X86_64_RELATIVE reloc
3624 for the dynamic linker. */
6de2ae4a 3625 s = htab->elf.srelgot;
947216bf 3626 if (s == NULL)
c434dee6 3627 abort ();
51e0a107 3628
7b81dfbb
AJ
3629 outrel.r_offset = (base_got->output_section->vma
3630 + base_got->output_offset
51e0a107 3631 + off);
351f65ca 3632 outrel.r_info = htab->r_info (0, R_X86_64_RELATIVE);
51e0a107 3633 outrel.r_addend = relocation;
351f65ca 3634 elf_append_rela (output_bfd, s, &outrel);
51e0a107
JH
3635 }
3636
3637 local_got_offsets[r_symndx] |= 1;
3638 }
51e0a107 3639 }
6a2bda3f 3640
c434dee6
AJ
3641 if (off >= (bfd_vma) -2)
3642 abort ();
3643
7b81dfbb
AJ
3644 relocation = base_got->output_section->vma
3645 + base_got->output_offset + off;
3646 if (r_type != R_X86_64_GOTPCREL && r_type != R_X86_64_GOTPCREL64)
6de2ae4a
L
3647 relocation -= htab->elf.sgotplt->output_section->vma
3648 - htab->elf.sgotplt->output_offset;
c434dee6 3649
70256ad8
AJ
3650 break;
3651
d6ab8113
JB
3652 case R_X86_64_GOTOFF64:
3653 /* Relocation is relative to the start of the global offset
3654 table. */
3655
3656 /* Check to make sure it isn't a protected function symbol
3657 for shared library since it may not be local when used
3658 as function address. */
bdb892b9 3659 if (!info->executable
d6ab8113 3660 && h
bdb892b9 3661 && !SYMBOLIC_BIND (info, h)
d6ab8113
JB
3662 && h->def_regular
3663 && h->type == STT_FUNC
3664 && ELF_ST_VISIBILITY (h->other) == STV_PROTECTED)
3665 {
3666 (*_bfd_error_handler)
3667 (_("%B: relocation R_X86_64_GOTOFF64 against protected function `%s' can not be used when making a shared object"),
3668 input_bfd, h->root.root.string);
3669 bfd_set_error (bfd_error_bad_value);
3670 return FALSE;
3671 }
3672
3673 /* Note that sgot is not involved in this
3674 calculation. We always want the start of .got.plt. If we
3675 defined _GLOBAL_OFFSET_TABLE_ in a different way, as is
3676 permitted by the ABI, we might have to change this
3677 calculation. */
6de2ae4a
L
3678 relocation -= htab->elf.sgotplt->output_section->vma
3679 + htab->elf.sgotplt->output_offset;
d6ab8113
JB
3680 break;
3681
3682 case R_X86_64_GOTPC32:
7b81dfbb 3683 case R_X86_64_GOTPC64:
d6ab8113 3684 /* Use global offset table as symbol value. */
6de2ae4a
L
3685 relocation = htab->elf.sgotplt->output_section->vma
3686 + htab->elf.sgotplt->output_offset;
d6ab8113
JB
3687 unresolved_reloc = FALSE;
3688 break;
7b81dfbb
AJ
3689
3690 case R_X86_64_PLTOFF64:
3691 /* Relocation is PLT entry relative to GOT. For local
3692 symbols it's the symbol itself relative to GOT. */
eed180f8 3693 if (h != NULL
7b81dfbb
AJ
3694 /* See PLT32 handling. */
3695 && h->plt.offset != (bfd_vma) -1
6de2ae4a 3696 && htab->elf.splt != NULL)
7b81dfbb 3697 {
6de2ae4a
L
3698 relocation = (htab->elf.splt->output_section->vma
3699 + htab->elf.splt->output_offset
7b81dfbb
AJ
3700 + h->plt.offset);
3701 unresolved_reloc = FALSE;
3702 }
3703
6de2ae4a
L
3704 relocation -= htab->elf.sgotplt->output_section->vma
3705 + htab->elf.sgotplt->output_offset;
7b81dfbb 3706 break;
d6ab8113 3707
70256ad8 3708 case R_X86_64_PLT32:
c3320543 3709 case R_X86_64_PLT32_BND:
70256ad8
AJ
3710 /* Relocation is to the entry for this symbol in the
3711 procedure linkage table. */
3712
3713 /* Resolve a PLT32 reloc against a local symbol directly,
407443a3 3714 without using the procedure linkage table. */
70256ad8
AJ
3715 if (h == NULL)
3716 break;
3717
c434dee6 3718 if (h->plt.offset == (bfd_vma) -1
6de2ae4a 3719 || htab->elf.splt == NULL)
70256ad8
AJ
3720 {
3721 /* We didn't make a PLT entry for this symbol. This
407443a3
AJ
3722 happens when statically linking PIC code, or when
3723 using -Bsymbolic. */
70256ad8
AJ
3724 break;
3725 }
3726
6de2ae4a
L
3727 relocation = (htab->elf.splt->output_section->vma
3728 + htab->elf.splt->output_offset
70256ad8 3729 + h->plt.offset);
b34976b6 3730 unresolved_reloc = FALSE;
70256ad8
AJ
3731 break;
3732
1788fc08
L
3733 case R_X86_64_SIZE32:
3734 case R_X86_64_SIZE64:
1788fc08
L
3735 /* Set to symbol size. */
3736 relocation = st_size;
3737 goto direct;
3738
fd8ab9e5
AJ
3739 case R_X86_64_PC8:
3740 case R_X86_64_PC16:
3741 case R_X86_64_PC32:
c3320543 3742 case R_X86_64_PC32_BND:
6610a52d 3743 if (info->shared
ba3bee0b 3744 && (input_section->flags & SEC_ALLOC) != 0
90f487df 3745 && (input_section->flags & SEC_READONLY) != 0
41bed6dd 3746 && h != NULL)
6610a52d 3747 {
41bed6dd
L
3748 bfd_boolean fail = FALSE;
3749 bfd_boolean branch
c3320543
L
3750 = ((r_type == R_X86_64_PC32
3751 || r_type == R_X86_64_PC32_BND)
41bed6dd
L
3752 && is_32bit_relative_branch (contents, rel->r_offset));
3753
3754 if (SYMBOL_REFERENCES_LOCAL (info, h))
3755 {
3756 /* Symbol is referenced locally. Make sure it is
3757 defined locally or for a branch. */
3758 fail = !h->def_regular && !branch;
3759 }
90f487df 3760 else
41bed6dd
L
3761 {
3762 /* Symbol isn't referenced locally. We only allow
3763 branch to symbol with non-default visibility. */
3764 fail = (!branch
3765 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT);
3766 }
3767
3768 if (fail)
3769 {
3770 const char *fmt;
3771 const char *v;
3772 const char *pic = "";
3773
3774 switch (ELF_ST_VISIBILITY (h->other))
3775 {
3776 case STV_HIDDEN:
3777 v = _("hidden symbol");
3778 break;
3779 case STV_INTERNAL:
3780 v = _("internal symbol");
3781 break;
3782 case STV_PROTECTED:
3783 v = _("protected symbol");
3784 break;
3785 default:
3786 v = _("symbol");
3787 pic = _("; recompile with -fPIC");
3788 break;
3789 }
3790
3791 if (h->def_regular)
3792 fmt = _("%B: relocation %s against %s `%s' can not be used when making a shared object%s");
3793 else
3794 fmt = _("%B: relocation %s against undefined %s `%s' can not be used when making a shared object%s");
3795
3796 (*_bfd_error_handler) (fmt, input_bfd,
3797 x86_64_elf_howto_table[r_type].name,
3798 v, h->root.root.string, pic);
3799 bfd_set_error (bfd_error_bad_value);
3800 return FALSE;
3801 }
6610a52d
L
3802 }
3803 /* Fall through. */
3804
70256ad8
AJ
3805 case R_X86_64_8:
3806 case R_X86_64_16:
3807 case R_X86_64_32:
d6ab8113 3808 case R_X86_64_PC64:
6b3db546 3809 case R_X86_64_64:
80643fbc 3810 /* FIXME: The ABI says the linker should make sure the value is
407443a3 3811 the same when it's zeroextended to 64 bit. */
c434dee6 3812
1788fc08 3813direct:
b1e24c02 3814 if ((input_section->flags & SEC_ALLOC) == 0)
c434dee6
AJ
3815 break;
3816
3817 if ((info->shared
4bc6e03a
AJ
3818 && (h == NULL
3819 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3820 || h->root.type != bfd_link_hash_undefweak)
1788fc08
L
3821 && ((! IS_X86_64_PCREL_TYPE (r_type)
3822 && r_type != R_X86_64_SIZE32
3823 && r_type != R_X86_64_SIZE64)
d8045f23 3824 || ! SYMBOL_CALLS_LOCAL (info, h)))
d40d037c
AJ
3825 || (ELIMINATE_COPY_RELOCS
3826 && !info->shared
c434dee6
AJ
3827 && h != NULL
3828 && h->dynindx != -1
f5385ebf
AM
3829 && !h->non_got_ref
3830 && ((h->def_dynamic
3831 && !h->def_regular)
c434dee6 3832 || h->root.type == bfd_link_hash_undefweak
0f88be7a 3833 || h->root.type == bfd_link_hash_undefined)))
70256ad8
AJ
3834 {
3835 Elf_Internal_Rela outrel;
b34976b6 3836 bfd_boolean skip, relocate;
c434dee6 3837 asection *sreloc;
70256ad8
AJ
3838
3839 /* When generating a shared object, these relocations
3840 are copied into the output file to be resolved at run
407443a3 3841 time. */
b34976b6
AM
3842 skip = FALSE;
3843 relocate = FALSE;
70256ad8 3844
c629eae0
JJ
3845 outrel.r_offset =
3846 _bfd_elf_section_offset (output_bfd, info, input_section,
c434dee6 3847 rel->r_offset);
c629eae0 3848 if (outrel.r_offset == (bfd_vma) -1)
b34976b6 3849 skip = TRUE;
0fb19cbc 3850 else if (outrel.r_offset == (bfd_vma) -2)
b34976b6 3851 skip = TRUE, relocate = TRUE;
70256ad8
AJ
3852
3853 outrel.r_offset += (input_section->output_section->vma
3854 + input_section->output_offset);
3855
3856 if (skip)
0bb2d96a 3857 memset (&outrel, 0, sizeof outrel);
c434dee6 3858
fd8ab9e5
AJ
3859 /* h->dynindx may be -1 if this symbol was marked to
3860 become local. */
3861 else if (h != NULL
c434dee6 3862 && h->dynindx != -1
d8045f23
NC
3863 && (IS_X86_64_PCREL_TYPE (r_type)
3864 || ! info->shared
3865 || ! SYMBOLIC_BIND (info, h)
3866 || ! h->def_regular))
70256ad8 3867 {
351f65ca 3868 outrel.r_info = htab->r_info (h->dynindx, r_type);
c434dee6 3869 outrel.r_addend = rel->r_addend;
70256ad8
AJ
3870 }
3871 else
3872 {
c434dee6 3873 /* This symbol is local, or marked to become local. */
248775ba 3874 if (r_type == htab->pointer_r_type)
607c0e09 3875 {
b34976b6 3876 relocate = TRUE;
351f65ca 3877 outrel.r_info = htab->r_info (0, R_X86_64_RELATIVE);
607c0e09
AS
3878 outrel.r_addend = relocation + rel->r_addend;
3879 }
64d25c44
L
3880 else if (r_type == R_X86_64_64
3881 && !ABI_64_P (output_bfd))
3882 {
3883 relocate = TRUE;
3884 outrel.r_info = htab->r_info (0,
3885 R_X86_64_RELATIVE64);
3886 outrel.r_addend = relocation + rel->r_addend;
8cf0d2dd
L
3887 /* Check addend overflow. */
3888 if ((outrel.r_addend & 0x80000000)
3889 != (rel->r_addend & 0x80000000))
3890 {
3891 const char *name;
268a8d3a 3892 int addend = rel->r_addend;
8cf0d2dd
L
3893 if (h && h->root.root.string)
3894 name = h->root.root.string;
3895 else
3896 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
3897 sym, NULL);
6f2c9068
L
3898 if (addend < 0)
3899 (*_bfd_error_handler)
268a8d3a 3900 (_("%B: addend -0x%x in relocation %s against "
6f2c9068
L
3901 "symbol `%s' at 0x%lx in section `%A' is "
3902 "out of range"),
3903 input_bfd, input_section, addend,
3904 x86_64_elf_howto_table[r_type].name,
3905 name, (unsigned long) rel->r_offset);
3906 else
3907 (*_bfd_error_handler)
268a8d3a 3908 (_("%B: addend 0x%x in relocation %s against "
6f2c9068
L
3909 "symbol `%s' at 0x%lx in section `%A' is "
3910 "out of range"),
3911 input_bfd, input_section, addend,
3912 x86_64_elf_howto_table[r_type].name,
3913 name, (unsigned long) rel->r_offset);
8cf0d2dd
L
3914 bfd_set_error (bfd_error_bad_value);
3915 return FALSE;
3916 }
64d25c44 3917 }
607c0e09
AS
3918 else
3919 {
3920 long sindx;
3921
8517fae7 3922 if (bfd_is_abs_section (sec))
607c0e09
AS
3923 sindx = 0;
3924 else if (sec == NULL || sec->owner == NULL)
3925 {
3926 bfd_set_error (bfd_error_bad_value);
b34976b6 3927 return FALSE;
607c0e09
AS
3928 }
3929 else
3930 {
3931 asection *osec;
3932
74541ad4
AM
3933 /* We are turning this relocation into one
3934 against a section symbol. It would be
3935 proper to subtract the symbol's value,
3936 osec->vma, from the emitted reloc addend,
3937 but ld.so expects buggy relocs. */
607c0e09
AS
3938 osec = sec->output_section;
3939 sindx = elf_section_data (osec)->dynindx;
74541ad4
AM
3940 if (sindx == 0)
3941 {
3942 asection *oi = htab->elf.text_index_section;
3943 sindx = elf_section_data (oi)->dynindx;
3944 }
3945 BFD_ASSERT (sindx != 0);
607c0e09
AS
3946 }
3947
351f65ca 3948 outrel.r_info = htab->r_info (sindx, r_type);
607c0e09
AS
3949 outrel.r_addend = relocation + rel->r_addend;
3950 }
70256ad8
AJ
3951 }
3952
cbe950e9 3953 sreloc = elf_section_data (input_section)->sreloc;
d8045f23 3954
62d78908
L
3955 if (sreloc == NULL || sreloc->contents == NULL)
3956 {
3957 r = bfd_reloc_notsupported;
3958 goto check_relocation_error;
3959 }
c434dee6 3960
351f65ca 3961 elf_append_rela (output_bfd, sreloc, &outrel);
70256ad8
AJ
3962
3963 /* If this reloc is against an external symbol, we do
3964 not want to fiddle with the addend. Otherwise, we
3965 need to include the symbol value so that it becomes
3966 an addend for the dynamic reloc. */
0f88be7a 3967 if (! relocate)
70256ad8
AJ
3968 continue;
3969 }
3970
3971 break;
3972
bffbf940 3973 case R_X86_64_TLSGD:
67a4f2b7
AO
3974 case R_X86_64_GOTPC32_TLSDESC:
3975 case R_X86_64_TLSDESC_CALL:
bffbf940 3976 case R_X86_64_GOTTPOFF:
bffbf940
JJ
3977 tls_type = GOT_UNKNOWN;
3978 if (h == NULL && local_got_offsets)
351f65ca 3979 tls_type = elf_x86_64_local_got_tls_type (input_bfd) [r_symndx];
bffbf940 3980 else if (h != NULL)
351f65ca 3981 tls_type = elf_x86_64_hash_entry (h)->tls_type;
142411ca 3982
351f65ca
L
3983 if (! elf_x86_64_tls_transition (info, input_bfd,
3984 input_section, contents,
3985 symtab_hdr, sym_hashes,
3986 &r_type, tls_type, rel,
3987 relend, h, r_symndx))
534a31f6 3988 return FALSE;
bffbf940
JJ
3989
3990 if (r_type == R_X86_64_TPOFF32)
3991 {
142411ca
L
3992 bfd_vma roff = rel->r_offset;
3993
bffbf940 3994 BFD_ASSERT (! unresolved_reloc);
142411ca 3995
351f65ca 3996 if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSGD)
bffbf940 3997 {
52bc799a 3998 /* GD->LE transition. For 64bit, change
abcf1d52 3999 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
a3fadc9a 4000 .word 0x6666; rex64; call __tls_get_addr
52bc799a 4001 into:
bffbf940 4002 movq %fs:0, %rax
52bc799a
L
4003 leaq foo@tpoff(%rax), %rax
4004 For 32bit, change
4005 leaq foo@tlsgd(%rip), %rdi
4006 .word 0x6666; rex64; call __tls_get_addr
4007 into:
4008 movl %fs:0, %eax
5c98a14e
JJ
4009 leaq foo@tpoff(%rax), %rax
4010 For largepic, change:
4011 leaq foo@tlsgd(%rip), %rdi
4012 movabsq $__tls_get_addr@pltoff, %rax
4013 addq %rbx, %rax
4014 call *%rax
4015 into:
4016 movq %fs:0, %rax
4017 leaq foo@tpoff(%rax), %rax
4018 nopw 0x0(%rax,%rax,1) */
4019 int largepic = 0;
4020 if (ABI_64_P (output_bfd)
4021 && contents[roff + 5] == (bfd_byte) '\xb8')
4022 {
4023 memcpy (contents + roff - 3,
4024 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80"
4025 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
4026 largepic = 1;
4027 }
4028 else if (ABI_64_P (output_bfd))
52bc799a
L
4029 memcpy (contents + roff - 4,
4030 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
4031 16);
4032 else
4033 memcpy (contents + roff - 3,
4034 "\x64\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0",
4035 15);
eb4ff4d6 4036 bfd_put_32 (output_bfd,
351f65ca 4037 elf_x86_64_tpoff (info, relocation),
5c98a14e
JJ
4038 contents + roff + 8 + largepic);
4039 /* Skip R_X86_64_PC32/R_X86_64_PLT32/R_X86_64_PLTOFF64. */
bffbf940
JJ
4040 rel++;
4041 continue;
4042 }
351f65ca 4043 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTPC32_TLSDESC)
67a4f2b7
AO
4044 {
4045 /* GDesc -> LE transition.
4046 It's originally something like:
4047 leaq x@tlsdesc(%rip), %rax
4048
4049 Change it to:
c9736ba0 4050 movl $x@tpoff, %rax. */
67a4f2b7 4051
c9736ba0 4052 unsigned int val, type;
67a4f2b7 4053
67a4f2b7 4054 type = bfd_get_8 (input_bfd, contents + roff - 3);
67a4f2b7 4055 val = bfd_get_8 (input_bfd, contents + roff - 1);
67a4f2b7
AO
4056 bfd_put_8 (output_bfd, 0x48 | ((type >> 2) & 1),
4057 contents + roff - 3);
4058 bfd_put_8 (output_bfd, 0xc7, contents + roff - 2);
4059 bfd_put_8 (output_bfd, 0xc0 | ((val >> 3) & 7),
4060 contents + roff - 1);
eb4ff4d6 4061 bfd_put_32 (output_bfd,
351f65ca 4062 elf_x86_64_tpoff (info, relocation),
67a4f2b7
AO
4063 contents + roff);
4064 continue;
4065 }
351f65ca 4066 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSDESC_CALL)
67a4f2b7
AO
4067 {
4068 /* GDesc -> LE transition.
4069 It's originally:
4070 call *(%rax)
4071 Turn it into:
142411ca 4072 xchg %ax,%ax. */
10efb593 4073 bfd_put_8 (output_bfd, 0x66, contents + roff);
67a4f2b7
AO
4074 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
4075 continue;
4076 }
351f65ca 4077 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTTPOFF)
bffbf940 4078 {
bffbf940
JJ
4079 /* IE->LE transition:
4080 Originally it can be one of:
4081 movq foo@gottpoff(%rip), %reg
4082 addq foo@gottpoff(%rip), %reg
4083 We change it into:
4084 movq $foo, %reg
4085 leaq foo(%reg), %reg
4086 addq $foo, %reg. */
142411ca
L
4087
4088 unsigned int val, type, reg;
4089
4090 val = bfd_get_8 (input_bfd, contents + roff - 3);
4091 type = bfd_get_8 (input_bfd, contents + roff - 2);
4092 reg = bfd_get_8 (input_bfd, contents + roff - 1);
bffbf940 4093 reg >>= 3;
bffbf940
JJ
4094 if (type == 0x8b)
4095 {
4096 /* movq */
4097 if (val == 0x4c)
4098 bfd_put_8 (output_bfd, 0x49,
142411ca 4099 contents + roff - 3);
4a4c5f25
L
4100 else if (!ABI_64_P (output_bfd) && val == 0x44)
4101 bfd_put_8 (output_bfd, 0x41,
4102 contents + roff - 3);
bffbf940 4103 bfd_put_8 (output_bfd, 0xc7,
142411ca 4104 contents + roff - 2);
bffbf940 4105 bfd_put_8 (output_bfd, 0xc0 | reg,
142411ca 4106 contents + roff - 1);
bffbf940
JJ
4107 }
4108 else if (reg == 4)
4109 {
4110 /* addq -> addq - addressing with %rsp/%r12 is
4111 special */
4112 if (val == 0x4c)
4113 bfd_put_8 (output_bfd, 0x49,
142411ca 4114 contents + roff - 3);
4a4c5f25
L
4115 else if (!ABI_64_P (output_bfd) && val == 0x44)
4116 bfd_put_8 (output_bfd, 0x41,
4117 contents + roff - 3);
bffbf940 4118 bfd_put_8 (output_bfd, 0x81,
142411ca 4119 contents + roff - 2);
bffbf940 4120 bfd_put_8 (output_bfd, 0xc0 | reg,
142411ca 4121 contents + roff - 1);
bffbf940
JJ
4122 }
4123 else
4124 {
4125 /* addq -> leaq */
4126 if (val == 0x4c)
4127 bfd_put_8 (output_bfd, 0x4d,
142411ca 4128 contents + roff - 3);
4a4c5f25
L
4129 else if (!ABI_64_P (output_bfd) && val == 0x44)
4130 bfd_put_8 (output_bfd, 0x45,
4131 contents + roff - 3);
bffbf940 4132 bfd_put_8 (output_bfd, 0x8d,
142411ca 4133 contents + roff - 2);
bffbf940 4134 bfd_put_8 (output_bfd, 0x80 | reg | (reg << 3),
142411ca 4135 contents + roff - 1);
bffbf940 4136 }
eb4ff4d6 4137 bfd_put_32 (output_bfd,
351f65ca 4138 elf_x86_64_tpoff (info, relocation),
142411ca 4139 contents + roff);
bffbf940
JJ
4140 continue;
4141 }
142411ca
L
4142 else
4143 BFD_ASSERT (FALSE);
bffbf940
JJ
4144 }
4145
6de2ae4a 4146 if (htab->elf.sgot == NULL)
bffbf940
JJ
4147 abort ();
4148
4149 if (h != NULL)
67a4f2b7
AO
4150 {
4151 off = h->got.offset;
351f65ca 4152 offplt = elf_x86_64_hash_entry (h)->tlsdesc_got;
67a4f2b7 4153 }
bffbf940
JJ
4154 else
4155 {
4156 if (local_got_offsets == NULL)
4157 abort ();
4158
4159 off = local_got_offsets[r_symndx];
67a4f2b7 4160 offplt = local_tlsdesc_gotents[r_symndx];
bffbf940
JJ
4161 }
4162
4163 if ((off & 1) != 0)
4164 off &= ~1;
26e41594 4165 else
bffbf940
JJ
4166 {
4167 Elf_Internal_Rela outrel;
bffbf940 4168 int dr_type, indx;
67a4f2b7 4169 asection *sreloc;
bffbf940 4170
6de2ae4a 4171 if (htab->elf.srelgot == NULL)
bffbf940
JJ
4172 abort ();
4173
67a4f2b7
AO
4174 indx = h && h->dynindx != -1 ? h->dynindx : 0;
4175
4176 if (GOT_TLS_GDESC_P (tls_type))
4177 {
351f65ca 4178 outrel.r_info = htab->r_info (indx, R_X86_64_TLSDESC);
67a4f2b7 4179 BFD_ASSERT (htab->sgotplt_jump_table_size + offplt
6de2ae4a
L
4180 + 2 * GOT_ENTRY_SIZE <= htab->elf.sgotplt->size);
4181 outrel.r_offset = (htab->elf.sgotplt->output_section->vma
4182 + htab->elf.sgotplt->output_offset
67a4f2b7
AO
4183 + offplt
4184 + htab->sgotplt_jump_table_size);
6de2ae4a 4185 sreloc = htab->elf.srelplt;
67a4f2b7 4186 if (indx == 0)
351f65ca 4187 outrel.r_addend = relocation - elf_x86_64_dtpoff_base (info);
67a4f2b7
AO
4188 else
4189 outrel.r_addend = 0;
351f65ca 4190 elf_append_rela (output_bfd, sreloc, &outrel);
67a4f2b7
AO
4191 }
4192
6de2ae4a 4193 sreloc = htab->elf.srelgot;
67a4f2b7 4194
6de2ae4a
L
4195 outrel.r_offset = (htab->elf.sgot->output_section->vma
4196 + htab->elf.sgot->output_offset + off);
bffbf940 4197
67a4f2b7 4198 if (GOT_TLS_GD_P (tls_type))
bffbf940 4199 dr_type = R_X86_64_DTPMOD64;
67a4f2b7
AO
4200 else if (GOT_TLS_GDESC_P (tls_type))
4201 goto dr_done;
bffbf940
JJ
4202 else
4203 dr_type = R_X86_64_TPOFF64;
4204
6de2ae4a 4205 bfd_put_64 (output_bfd, 0, htab->elf.sgot->contents + off);
bffbf940 4206 outrel.r_addend = 0;
67a4f2b7
AO
4207 if ((dr_type == R_X86_64_TPOFF64
4208 || dr_type == R_X86_64_TLSDESC) && indx == 0)
351f65ca
L
4209 outrel.r_addend = relocation - elf_x86_64_dtpoff_base (info);
4210 outrel.r_info = htab->r_info (indx, dr_type);
bffbf940 4211
351f65ca 4212 elf_append_rela (output_bfd, sreloc, &outrel);
bffbf940 4213
67a4f2b7 4214 if (GOT_TLS_GD_P (tls_type))
bffbf940
JJ
4215 {
4216 if (indx == 0)
4217 {
d40d037c 4218 BFD_ASSERT (! unresolved_reloc);
bffbf940 4219 bfd_put_64 (output_bfd,
351f65ca 4220 relocation - elf_x86_64_dtpoff_base (info),
6de2ae4a 4221 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
bffbf940
JJ
4222 }
4223 else
4224 {
4225 bfd_put_64 (output_bfd, 0,
6de2ae4a 4226 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
351f65ca 4227 outrel.r_info = htab->r_info (indx,
bffbf940
JJ
4228 R_X86_64_DTPOFF64);
4229 outrel.r_offset += GOT_ENTRY_SIZE;
351f65ca 4230 elf_append_rela (output_bfd, sreloc,
464d3bd4 4231 &outrel);
bffbf940
JJ
4232 }
4233 }
4234
67a4f2b7 4235 dr_done:
bffbf940
JJ
4236 if (h != NULL)
4237 h->got.offset |= 1;
4238 else
4239 local_got_offsets[r_symndx] |= 1;
4240 }
4241
67a4f2b7
AO
4242 if (off >= (bfd_vma) -2
4243 && ! GOT_TLS_GDESC_P (tls_type))
bffbf940 4244 abort ();
351f65ca 4245 if (r_type == ELF32_R_TYPE (rel->r_info))
bffbf940 4246 {
67a4f2b7
AO
4247 if (r_type == R_X86_64_GOTPC32_TLSDESC
4248 || r_type == R_X86_64_TLSDESC_CALL)
6de2ae4a
L
4249 relocation = htab->elf.sgotplt->output_section->vma
4250 + htab->elf.sgotplt->output_offset
67a4f2b7
AO
4251 + offplt + htab->sgotplt_jump_table_size;
4252 else
6de2ae4a
L
4253 relocation = htab->elf.sgot->output_section->vma
4254 + htab->elf.sgot->output_offset + off;
b34976b6 4255 unresolved_reloc = FALSE;
bffbf940 4256 }
142411ca 4257 else
67a4f2b7 4258 {
142411ca 4259 bfd_vma roff = rel->r_offset;
67a4f2b7 4260
351f65ca 4261 if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSGD)
142411ca 4262 {
52bc799a 4263 /* GD->IE transition. For 64bit, change
142411ca
L
4264 .byte 0x66; leaq foo@tlsgd(%rip), %rdi
4265 .word 0x6666; rex64; call __tls_get_addr@plt
52bc799a 4266 into:
142411ca 4267 movq %fs:0, %rax
52bc799a
L
4268 addq foo@gottpoff(%rip), %rax
4269 For 32bit, change
4270 leaq foo@tlsgd(%rip), %rdi
4271 .word 0x6666; rex64; call __tls_get_addr@plt
4272 into:
4273 movl %fs:0, %eax
5c98a14e
JJ
4274 addq foo@gottpoff(%rip), %rax
4275 For largepic, change:
4276 leaq foo@tlsgd(%rip), %rdi
4277 movabsq $__tls_get_addr@pltoff, %rax
4278 addq %rbx, %rax
4279 call *%rax
4280 into:
4281 movq %fs:0, %rax
4282 addq foo@gottpoff(%rax), %rax
4283 nopw 0x0(%rax,%rax,1) */
4284 int largepic = 0;
4285 if (ABI_64_P (output_bfd)
4286 && contents[roff + 5] == (bfd_byte) '\xb8')
4287 {
4288 memcpy (contents + roff - 3,
4289 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05"
4290 "\0\0\0\0\x66\x0f\x1f\x44\0", 22);
4291 largepic = 1;
4292 }
4293 else if (ABI_64_P (output_bfd))
52bc799a
L
4294 memcpy (contents + roff - 4,
4295 "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
4296 16);
4297 else
4298 memcpy (contents + roff - 3,
4299 "\x64\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0",
4300 15);
142411ca 4301
6de2ae4a
L
4302 relocation = (htab->elf.sgot->output_section->vma
4303 + htab->elf.sgot->output_offset + off
142411ca 4304 - roff
5c98a14e 4305 - largepic
142411ca
L
4306 - input_section->output_section->vma
4307 - input_section->output_offset
4308 - 12);
4309 bfd_put_32 (output_bfd, relocation,
5c98a14e
JJ
4310 contents + roff + 8 + largepic);
4311 /* Skip R_X86_64_PLT32/R_X86_64_PLTOFF64. */
142411ca
L
4312 rel++;
4313 continue;
4314 }
351f65ca 4315 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_GOTPC32_TLSDESC)
142411ca
L
4316 {
4317 /* GDesc -> IE transition.
4318 It's originally something like:
4319 leaq x@tlsdesc(%rip), %rax
67a4f2b7 4320
142411ca 4321 Change it to:
c9736ba0 4322 movq x@gottpoff(%rip), %rax # before xchg %ax,%ax. */
67a4f2b7 4323
142411ca
L
4324 /* Now modify the instruction as appropriate. To
4325 turn a leaq into a movq in the form we use it, it
4326 suffices to change the second byte from 0x8d to
4327 0x8b. */
4328 bfd_put_8 (output_bfd, 0x8b, contents + roff - 2);
4329
4330 bfd_put_32 (output_bfd,
6de2ae4a
L
4331 htab->elf.sgot->output_section->vma
4332 + htab->elf.sgot->output_offset + off
142411ca
L
4333 - rel->r_offset
4334 - input_section->output_section->vma
4335 - input_section->output_offset
4336 - 4,
4337 contents + roff);
4338 continue;
4339 }
351f65ca 4340 else if (ELF32_R_TYPE (rel->r_info) == R_X86_64_TLSDESC_CALL)
142411ca
L
4341 {
4342 /* GDesc -> IE transition.
4343 It's originally:
4344 call *(%rax)
4345
4346 Change it to:
c9736ba0 4347 xchg %ax, %ax. */
142411ca 4348
142411ca
L
4349 bfd_put_8 (output_bfd, 0x66, contents + roff);
4350 bfd_put_8 (output_bfd, 0x90, contents + roff + 1);
4351 continue;
4352 }
4353 else
4354 BFD_ASSERT (FALSE);
67a4f2b7 4355 }
bffbf940
JJ
4356 break;
4357
4358 case R_X86_64_TLSLD:
351f65ca
L
4359 if (! elf_x86_64_tls_transition (info, input_bfd,
4360 input_section, contents,
4361 symtab_hdr, sym_hashes,
4362 &r_type, GOT_UNKNOWN,
4363 rel, relend, h, r_symndx))
142411ca 4364 return FALSE;
a3fadc9a 4365
142411ca
L
4366 if (r_type != R_X86_64_TLSLD)
4367 {
bffbf940 4368 /* LD->LE transition:
a3fadc9a 4369 leaq foo@tlsld(%rip), %rdi; call __tls_get_addr.
52bc799a
L
4370 For 64bit, we change it into:
4371 .word 0x6666; .byte 0x66; movq %fs:0, %rax.
4372 For 32bit, we change it into:
5c98a14e
JJ
4373 nopl 0x0(%rax); movl %fs:0, %eax.
4374 For largepic, change:
4375 leaq foo@tlsgd(%rip), %rdi
4376 movabsq $__tls_get_addr@pltoff, %rax
4377 addq %rbx, %rax
4378 call *%rax
4379 into:
4380 data32 data32 data32 nopw %cs:0x0(%rax,%rax,1)
4381 movq %fs:0, %eax */
142411ca
L
4382
4383 BFD_ASSERT (r_type == R_X86_64_TPOFF32);
5c98a14e
JJ
4384 if (ABI_64_P (output_bfd)
4385 && contents[rel->r_offset + 5] == (bfd_byte) '\xb8')
4386 memcpy (contents + rel->r_offset - 3,
4387 "\x66\x66\x66\x66\x2e\x0f\x1f\x84\0\0\0\0\0"
4388 "\x64\x48\x8b\x04\x25\0\0\0", 22);
4389 else if (ABI_64_P (output_bfd))
52bc799a
L
4390 memcpy (contents + rel->r_offset - 3,
4391 "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0", 12);
4392 else
4393 memcpy (contents + rel->r_offset - 3,
4394 "\x0f\x1f\x40\x00\x64\x8b\x04\x25\0\0\0", 12);
5c98a14e 4395 /* Skip R_X86_64_PC32/R_X86_64_PLT32/R_X86_64_PLTOFF64. */
bffbf940
JJ
4396 rel++;
4397 continue;
4398 }
4399
6de2ae4a 4400 if (htab->elf.sgot == NULL)
bffbf940
JJ
4401 abort ();
4402
4403 off = htab->tls_ld_got.offset;
4404 if (off & 1)
4405 off &= ~1;
4406 else
4407 {
4408 Elf_Internal_Rela outrel;
bffbf940 4409
6de2ae4a 4410 if (htab->elf.srelgot == NULL)
bffbf940
JJ
4411 abort ();
4412
6de2ae4a
L
4413 outrel.r_offset = (htab->elf.sgot->output_section->vma
4414 + htab->elf.sgot->output_offset + off);
bffbf940
JJ
4415
4416 bfd_put_64 (output_bfd, 0,
6de2ae4a 4417 htab->elf.sgot->contents + off);
bffbf940 4418 bfd_put_64 (output_bfd, 0,
6de2ae4a 4419 htab->elf.sgot->contents + off + GOT_ENTRY_SIZE);
351f65ca 4420 outrel.r_info = htab->r_info (0, R_X86_64_DTPMOD64);
bffbf940 4421 outrel.r_addend = 0;
351f65ca 4422 elf_append_rela (output_bfd, htab->elf.srelgot,
464d3bd4 4423 &outrel);
bffbf940
JJ
4424 htab->tls_ld_got.offset |= 1;
4425 }
6de2ae4a
L
4426 relocation = htab->elf.sgot->output_section->vma
4427 + htab->elf.sgot->output_offset + off;
b34976b6 4428 unresolved_reloc = FALSE;
bffbf940
JJ
4429 break;
4430
4431 case R_X86_64_DTPOFF32:
1d85728f 4432 if (!info->executable|| (input_section->flags & SEC_CODE) == 0)
351f65ca 4433 relocation -= elf_x86_64_dtpoff_base (info);
bffbf940 4434 else
351f65ca 4435 relocation = elf_x86_64_tpoff (info, relocation);
bffbf940
JJ
4436 break;
4437
4438 case R_X86_64_TPOFF32:
6769d501 4439 case R_X86_64_TPOFF64:
9b769489 4440 BFD_ASSERT (info->executable);
351f65ca 4441 relocation = elf_x86_64_tpoff (info, relocation);
bffbf940
JJ
4442 break;
4443
a69ed7f7
L
4444 case R_X86_64_DTPOFF64:
4445 BFD_ASSERT ((input_section->flags & SEC_CODE) == 0);
4446 relocation -= elf_x86_64_dtpoff_base (info);
4447 break;
4448
70256ad8
AJ
4449 default:
4450 break;
4451 }
8d88c4ca 4452
239e1f3a
AM
4453 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
4454 because such sections are not SEC_ALLOC and thus ld.so will
4455 not process them. */
c434dee6 4456 if (unresolved_reloc
239e1f3a 4457 && !((input_section->flags & SEC_DEBUGGING) != 0
1d5316ab
AM
4458 && h->def_dynamic)
4459 && _bfd_elf_section_offset (output_bfd, info, input_section,
4460 rel->r_offset) != (bfd_vma) -1)
a040981f
L
4461 {
4462 (*_bfd_error_handler)
4463 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
4464 input_bfd,
4465 input_section,
4466 (long) rel->r_offset,
4467 howto->name,
4468 h->root.root.string);
4469 return FALSE;
4470 }
c434dee6 4471
cbe950e9 4472do_relocation:
8d88c4ca 4473 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
c434dee6
AJ
4474 contents, rel->r_offset,
4475 relocation, rel->r_addend);
8d88c4ca 4476
62d78908 4477check_relocation_error:
8d88c4ca 4478 if (r != bfd_reloc_ok)
8da6118f 4479 {
c434dee6
AJ
4480 const char *name;
4481
4482 if (h != NULL)
4483 name = h->root.root.string;
4484 else
8da6118f 4485 {
c434dee6
AJ
4486 name = bfd_elf_string_from_elf_section (input_bfd,
4487 symtab_hdr->sh_link,
4488 sym->st_name);
4489 if (name == NULL)
b34976b6 4490 return FALSE;
c434dee6
AJ
4491 if (*name == '\0')
4492 name = bfd_section_name (input_bfd, sec);
4493 }
4494
4495 if (r == bfd_reloc_overflow)
4496 {
c434dee6 4497 if (! ((*info->callbacks->reloc_overflow)
dfeffb9f
L
4498 (info, (h ? &h->root : NULL), name, howto->name,
4499 (bfd_vma) 0, input_bfd, input_section,
4500 rel->r_offset)))
b34976b6 4501 return FALSE;
c434dee6
AJ
4502 }
4503 else
4504 {
4505 (*_bfd_error_handler)
bb95161d 4506 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
d003868e 4507 input_bfd, input_section,
c434dee6 4508 (long) rel->r_offset, name, (int) r);
b34976b6 4509 return FALSE;
8da6118f
KH
4510 }
4511 }
8d88c4ca 4512 }
70256ad8 4513
b34976b6 4514 return TRUE;
70256ad8
AJ
4515}
4516
4517/* Finish up dynamic symbol handling. We set the contents of various
4518 dynamic sections here. */
4519
b34976b6 4520static bfd_boolean
351f65ca
L
4521elf_x86_64_finish_dynamic_symbol (bfd *output_bfd,
4522 struct bfd_link_info *info,
4523 struct elf_link_hash_entry *h,
220cf809 4524 Elf_Internal_Sym *sym ATTRIBUTE_UNUSED)
70256ad8 4525{
351f65ca 4526 struct elf_x86_64_link_hash_table *htab;
eed180f8
RM
4527 const struct elf_x86_64_backend_data *const abed
4528 = get_elf_x86_64_backend_data (output_bfd);
70256ad8 4529
351f65ca 4530 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
4531 if (htab == NULL)
4532 return FALSE;
70256ad8
AJ
4533
4534 if (h->plt.offset != (bfd_vma) -1)
4535 {
70256ad8
AJ
4536 bfd_vma plt_index;
4537 bfd_vma got_offset;
4538 Elf_Internal_Rela rela;
947216bf 4539 bfd_byte *loc;
cbe950e9 4540 asection *plt, *gotplt, *relplt;
351f65ca 4541 const struct elf_backend_data *bed;
cbe950e9
L
4542
4543 /* When building a static executable, use .iplt, .igot.plt and
4544 .rela.iplt sections for STT_GNU_IFUNC symbols. */
6de2ae4a 4545 if (htab->elf.splt != NULL)
cbe950e9 4546 {
6de2ae4a
L
4547 plt = htab->elf.splt;
4548 gotplt = htab->elf.sgotplt;
4549 relplt = htab->elf.srelplt;
cbe950e9
L
4550 }
4551 else
4552 {
6de2ae4a
L
4553 plt = htab->elf.iplt;
4554 gotplt = htab->elf.igotplt;
4555 relplt = htab->elf.irelplt;
cbe950e9 4556 }
70256ad8
AJ
4557
4558 /* This symbol has an entry in the procedure linkage table. Set
407443a3 4559 it up. */
cbe950e9
L
4560 if ((h->dynindx == -1
4561 && !((h->forced_local || info->executable)
4562 && h->def_regular
4563 && h->type == STT_GNU_IFUNC))
4564 || plt == NULL
4565 || gotplt == NULL
4566 || relplt == NULL)
cec7f46a 4567 abort ();
70256ad8
AJ
4568
4569 /* Get the index in the procedure linkage table which
4570 corresponds to this symbol. This is the index of this symbol
4571 in all the symbols for which we are making plt entries. The
cbe950e9 4572 first entry in the procedure linkage table is reserved.
6bbec505 4573
cbe950e9 4574 Get the offset into the .got table of the entry that
407443a3 4575 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
cbe950e9
L
4576 bytes. The first three are reserved for the dynamic linker.
4577
4578 For static executables, we don't reserve anything. */
4579
6de2ae4a 4580 if (plt == htab->elf.splt)
cbe950e9 4581 {
eed180f8 4582 got_offset = h->plt.offset / abed->plt_entry_size - 1;
e1f98742 4583 got_offset = (got_offset + 3) * GOT_ENTRY_SIZE;
cbe950e9
L
4584 }
4585 else
4586 {
eed180f8 4587 got_offset = h->plt.offset / abed->plt_entry_size;
e1f98742 4588 got_offset = got_offset * GOT_ENTRY_SIZE;
cbe950e9 4589 }
70256ad8
AJ
4590
4591 /* Fill in the entry in the procedure linkage table. */
eed180f8
RM
4592 memcpy (plt->contents + h->plt.offset, abed->plt_entry,
4593 abed->plt_entry_size);
4594
4595 /* Insert the relocation positions of the plt section. */
4596
4597 /* Put offset the PC-relative instruction referring to the GOT entry,
4598 subtracting the size of that instruction. */
653165cc 4599 bfd_put_32 (output_bfd,
eed180f8
RM
4600 (gotplt->output_section->vma
4601 + gotplt->output_offset
4602 + got_offset
4603 - plt->output_section->vma
4604 - plt->output_offset
4605 - h->plt.offset
4606 - abed->plt_got_insn_size),
4607 plt->contents + h->plt.offset + abed->plt_got_offset);
cbe950e9 4608
653165cc 4609 /* Fill in the entry in the global offset table, initially this
eed180f8 4610 points to the second part of the PLT entry. */
cbe950e9
L
4611 bfd_put_64 (output_bfd, (plt->output_section->vma
4612 + plt->output_offset
eed180f8 4613 + h->plt.offset + abed->plt_lazy_offset),
cbe950e9 4614 gotplt->contents + got_offset);
70256ad8
AJ
4615
4616 /* Fill in the entry in the .rela.plt section. */
cbe950e9
L
4617 rela.r_offset = (gotplt->output_section->vma
4618 + gotplt->output_offset
70256ad8 4619 + got_offset);
cbe950e9
L
4620 if (h->dynindx == -1
4621 || ((info->executable
4622 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
4623 && h->def_regular
4624 && h->type == STT_GNU_IFUNC))
4625 {
4626 /* If an STT_GNU_IFUNC symbol is locally defined, generate
4627 R_X86_64_IRELATIVE instead of R_X86_64_JUMP_SLOT. */
351f65ca 4628 rela.r_info = htab->r_info (0, R_X86_64_IRELATIVE);
cbe950e9
L
4629 rela.r_addend = (h->root.u.def.value
4630 + h->root.u.def.section->output_section->vma
4631 + h->root.u.def.section->output_offset);
e1f98742
L
4632 /* R_X86_64_IRELATIVE comes last. */
4633 plt_index = htab->next_irelative_index--;
cbe950e9
L
4634 }
4635 else
4636 {
351f65ca 4637 rela.r_info = htab->r_info (h->dynindx, R_X86_64_JUMP_SLOT);
cbe950e9 4638 rela.r_addend = 0;
e1f98742
L
4639 plt_index = htab->next_jump_slot_index++;
4640 }
4641
4642 /* Don't fill PLT entry for static executables. */
4643 if (plt == htab->elf.splt)
4644 {
4645 /* Put relocation index. */
4646 bfd_put_32 (output_bfd, plt_index,
eed180f8 4647 plt->contents + h->plt.offset + abed->plt_reloc_offset);
e1f98742 4648 /* Put offset for jmp .PLT0. */
eed180f8
RM
4649 bfd_put_32 (output_bfd, - (h->plt.offset + abed->plt_plt_insn_end),
4650 plt->contents + h->plt.offset + abed->plt_plt_offset);
cbe950e9 4651 }
351f65ca
L
4652
4653 bed = get_elf_backend_data (output_bfd);
4654 loc = relplt->contents + plt_index * bed->s->sizeof_rela;
82e96e07 4655 bed->s->swap_reloca_out (output_bfd, &rela, loc);
70256ad8 4656
f5385ebf 4657 if (!h->def_regular)
70256ad8
AJ
4658 {
4659 /* Mark the symbol as undefined, rather than as defined in
47a9f7b3
JJ
4660 the .plt section. Leave the value if there were any
4661 relocations where pointer equality matters (this is a clue
c434dee6
AJ
4662 for the dynamic linker, to make function pointer
4663 comparisons work between an application and shared
47a9f7b3
JJ
4664 library), otherwise set it to zero. If a function is only
4665 called from a binary, there is no need to slow down
4666 shared libraries because of that. */
70256ad8 4667 sym->st_shndx = SHN_UNDEF;
f5385ebf 4668 if (!h->pointer_equality_needed)
47a9f7b3 4669 sym->st_value = 0;
70256ad8
AJ
4670 }
4671 }
4672
bffbf940 4673 if (h->got.offset != (bfd_vma) -1
351f65ca
L
4674 && ! GOT_TLS_GD_ANY_P (elf_x86_64_hash_entry (h)->tls_type)
4675 && elf_x86_64_hash_entry (h)->tls_type != GOT_TLS_IE)
053579d7 4676 {
053579d7
AJ
4677 Elf_Internal_Rela rela;
4678
4679 /* This symbol has an entry in the global offset table. Set it
bffbf940 4680 up. */
6de2ae4a 4681 if (htab->elf.sgot == NULL || htab->elf.srelgot == NULL)
c434dee6 4682 abort ();
053579d7 4683
6de2ae4a
L
4684 rela.r_offset = (htab->elf.sgot->output_section->vma
4685 + htab->elf.sgot->output_offset
dc810e39 4686 + (h->got.offset &~ (bfd_vma) 1));
053579d7
AJ
4687
4688 /* If this is a static link, or it is a -Bsymbolic link and the
4689 symbol is defined locally or was forced to be local because
4690 of a version file, we just want to emit a RELATIVE reloc.
4691 The entry in the global offset table will already have been
4692 initialized in the relocate_section function. */
710ab287 4693 if (h->def_regular
0018b0a3
L
4694 && h->type == STT_GNU_IFUNC)
4695 {
710ab287
L
4696 if (info->shared)
4697 {
4698 /* Generate R_X86_64_GLOB_DAT. */
4699 goto do_glob_dat;
4700 }
4701 else
4702 {
90d60710
L
4703 asection *plt;
4704
710ab287
L
4705 if (!h->pointer_equality_needed)
4706 abort ();
4707
4708 /* For non-shared object, we can't use .got.plt, which
4709 contains the real function addres if we need pointer
4710 equality. We load the GOT entry with the PLT entry. */
90d60710 4711 plt = htab->elf.splt ? htab->elf.splt : htab->elf.iplt;
710ab287
L
4712 bfd_put_64 (output_bfd, (plt->output_section->vma
4713 + plt->output_offset
4714 + h->plt.offset),
6de2ae4a 4715 htab->elf.sgot->contents + h->got.offset);
710ab287
L
4716 return TRUE;
4717 }
0018b0a3
L
4718 }
4719 else if (info->shared
4720 && SYMBOL_REFERENCES_LOCAL (info, h))
053579d7 4721 {
41bed6dd
L
4722 if (!h->def_regular)
4723 return FALSE;
cc78d0af 4724 BFD_ASSERT((h->got.offset & 1) != 0);
351f65ca 4725 rela.r_info = htab->r_info (0, R_X86_64_RELATIVE);
053579d7
AJ
4726 rela.r_addend = (h->root.u.def.value
4727 + h->root.u.def.section->output_section->vma
4728 + h->root.u.def.section->output_offset);
4729 }
4730 else
4731 {
4732 BFD_ASSERT((h->got.offset & 1) == 0);
710ab287 4733do_glob_dat:
c434dee6 4734 bfd_put_64 (output_bfd, (bfd_vma) 0,
6de2ae4a 4735 htab->elf.sgot->contents + h->got.offset);
351f65ca 4736 rela.r_info = htab->r_info (h->dynindx, R_X86_64_GLOB_DAT);
053579d7
AJ
4737 rela.r_addend = 0;
4738 }
4739
351f65ca 4740 elf_append_rela (output_bfd, htab->elf.srelgot, &rela);
053579d7
AJ
4741 }
4742
f5385ebf 4743 if (h->needs_copy)
70256ad8 4744 {
70256ad8
AJ
4745 Elf_Internal_Rela rela;
4746
4747 /* This symbol needs a copy reloc. Set it up. */
4748
c434dee6
AJ
4749 if (h->dynindx == -1
4750 || (h->root.type != bfd_link_hash_defined
4751 && h->root.type != bfd_link_hash_defweak)
4752 || htab->srelbss == NULL)
4753 abort ();
70256ad8
AJ
4754
4755 rela.r_offset = (h->root.u.def.value
4756 + h->root.u.def.section->output_section->vma
4757 + h->root.u.def.section->output_offset);
351f65ca 4758 rela.r_info = htab->r_info (h->dynindx, R_X86_64_COPY);
70256ad8 4759 rela.r_addend = 0;
351f65ca 4760 elf_append_rela (output_bfd, htab->srelbss, &rela);
70256ad8
AJ
4761 }
4762
b34976b6 4763 return TRUE;
70256ad8
AJ
4764}
4765
c25bc9fc
L
4766/* Finish up local dynamic symbol handling. We set the contents of
4767 various dynamic sections here. */
4768
4769static bfd_boolean
351f65ca 4770elf_x86_64_finish_local_dynamic_symbol (void **slot, void *inf)
c25bc9fc
L
4771{
4772 struct elf_link_hash_entry *h
4773 = (struct elf_link_hash_entry *) *slot;
4774 struct bfd_link_info *info
eed180f8 4775 = (struct bfd_link_info *) inf;
c25bc9fc 4776
351f65ca 4777 return elf_x86_64_finish_dynamic_symbol (info->output_bfd,
c25bc9fc
L
4778 info, h, NULL);
4779}
4780
c434dee6
AJ
4781/* Used to decide how to sort relocs in an optimal manner for the
4782 dynamic linker, before writing them out. */
4783
4784static enum elf_reloc_type_class
7e612e98
AM
4785elf_x86_64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
4786 const asection *rel_sec ATTRIBUTE_UNUSED,
4787 const Elf_Internal_Rela *rela)
c434dee6 4788{
351f65ca 4789 switch ((int) ELF32_R_TYPE (rela->r_info))
c434dee6
AJ
4790 {
4791 case R_X86_64_RELATIVE:
1da80baa 4792 case R_X86_64_RELATIVE64:
c434dee6
AJ
4793 return reloc_class_relative;
4794 case R_X86_64_JUMP_SLOT:
4795 return reloc_class_plt;
4796 case R_X86_64_COPY:
4797 return reloc_class_copy;
4798 default:
4799 return reloc_class_normal;
4800 }
4801}
4802
70256ad8
AJ
4803/* Finish up the dynamic sections. */
4804
b34976b6 4805static bfd_boolean
351f65ca
L
4806elf_x86_64_finish_dynamic_sections (bfd *output_bfd,
4807 struct bfd_link_info *info)
70256ad8 4808{
351f65ca 4809 struct elf_x86_64_link_hash_table *htab;
70256ad8
AJ
4810 bfd *dynobj;
4811 asection *sdyn;
eed180f8
RM
4812 const struct elf_x86_64_backend_data *const abed
4813 = get_elf_x86_64_backend_data (output_bfd);
70256ad8 4814
351f65ca 4815 htab = elf_x86_64_hash_table (info);
4dfe6ac6
NC
4816 if (htab == NULL)
4817 return FALSE;
4818
c434dee6 4819 dynobj = htab->elf.dynobj;
3d4d4302 4820 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
70256ad8 4821
c434dee6 4822 if (htab->elf.dynamic_sections_created)
70256ad8 4823 {
82e96e07
L
4824 bfd_byte *dyncon, *dynconend;
4825 const struct elf_backend_data *bed;
4826 bfd_size_type sizeof_dyn;
70256ad8 4827
6de2ae4a 4828 if (sdyn == NULL || htab->elf.sgot == NULL)
c434dee6 4829 abort ();
70256ad8 4830
82e96e07
L
4831 bed = get_elf_backend_data (dynobj);
4832 sizeof_dyn = bed->s->sizeof_dyn;
4833 dyncon = sdyn->contents;
4834 dynconend = sdyn->contents + sdyn->size;
4835 for (; dyncon < dynconend; dyncon += sizeof_dyn)
70256ad8
AJ
4836 {
4837 Elf_Internal_Dyn dyn;
70256ad8
AJ
4838 asection *s;
4839
82e96e07 4840 (*bed->s->swap_dyn_in) (dynobj, dyncon, &dyn);
70256ad8
AJ
4841
4842 switch (dyn.d_tag)
4843 {
4844 default:
053579d7 4845 continue;
70256ad8
AJ
4846
4847 case DT_PLTGOT:
6de2ae4a 4848 s = htab->elf.sgotplt;
8c37241b 4849 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
c434dee6 4850 break;
70256ad8
AJ
4851
4852 case DT_JMPREL:
6de2ae4a 4853 dyn.d_un.d_ptr = htab->elf.srelplt->output_section->vma;
c434dee6 4854 break;
70256ad8 4855
c434dee6 4856 case DT_PLTRELSZ:
6de2ae4a 4857 s = htab->elf.srelplt->output_section;
eea6121a 4858 dyn.d_un.d_val = s->size;
70256ad8
AJ
4859 break;
4860
4861 case DT_RELASZ:
c434dee6
AJ
4862 /* The procedure linkage table relocs (DT_JMPREL) should
4863 not be included in the overall relocs (DT_RELA).
4864 Therefore, we override the DT_RELASZ entry here to
4865 make it not include the JMPREL relocs. Since the
4866 linker script arranges for .rela.plt to follow all
4867 other relocation sections, we don't have to worry
4868 about changing the DT_RELA entry. */
6de2ae4a 4869 if (htab->elf.srelplt != NULL)
70256ad8 4870 {
6de2ae4a 4871 s = htab->elf.srelplt->output_section;
eea6121a 4872 dyn.d_un.d_val -= s->size;
70256ad8
AJ
4873 }
4874 break;
67a4f2b7
AO
4875
4876 case DT_TLSDESC_PLT:
6de2ae4a 4877 s = htab->elf.splt;
67a4f2b7
AO
4878 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
4879 + htab->tlsdesc_plt;
4880 break;
4881
4882 case DT_TLSDESC_GOT:
6de2ae4a 4883 s = htab->elf.sgot;
67a4f2b7
AO
4884 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
4885 + htab->tlsdesc_got;
4886 break;
70256ad8 4887 }
c434dee6 4888
82e96e07 4889 (*bed->s->swap_dyn_out) (output_bfd, &dyn, dyncon);
70256ad8
AJ
4890 }
4891
c434dee6 4892 /* Fill in the special first entry in the procedure linkage table. */
6de2ae4a 4893 if (htab->elf.splt && htab->elf.splt->size > 0)
70256ad8 4894 {
653165cc 4895 /* Fill in the first entry in the procedure linkage table. */
eed180f8
RM
4896 memcpy (htab->elf.splt->contents,
4897 abed->plt0_entry, abed->plt_entry_size);
653165cc
AJ
4898 /* Add offset for pushq GOT+8(%rip), since the instruction
4899 uses 6 bytes subtract this value. */
4900 bfd_put_32 (output_bfd,
6de2ae4a
L
4901 (htab->elf.sgotplt->output_section->vma
4902 + htab->elf.sgotplt->output_offset
653165cc 4903 + 8
6de2ae4a
L
4904 - htab->elf.splt->output_section->vma
4905 - htab->elf.splt->output_offset
653165cc 4906 - 6),
eed180f8
RM
4907 htab->elf.splt->contents + abed->plt0_got1_offset);
4908 /* Add offset for the PC-relative instruction accessing GOT+16,
4909 subtracting the offset to the end of that instruction. */
653165cc 4910 bfd_put_32 (output_bfd,
6de2ae4a
L
4911 (htab->elf.sgotplt->output_section->vma
4912 + htab->elf.sgotplt->output_offset
653165cc 4913 + 16
6de2ae4a
L
4914 - htab->elf.splt->output_section->vma
4915 - htab->elf.splt->output_offset
eed180f8
RM
4916 - abed->plt0_got2_insn_end),
4917 htab->elf.splt->contents + abed->plt0_got2_offset);
653165cc 4918
eed180f8
RM
4919 elf_section_data (htab->elf.splt->output_section)
4920 ->this_hdr.sh_entsize = abed->plt_entry_size;
67a4f2b7
AO
4921
4922 if (htab->tlsdesc_plt)
4923 {
4924 bfd_put_64 (output_bfd, (bfd_vma) 0,
6de2ae4a 4925 htab->elf.sgot->contents + htab->tlsdesc_got);
67a4f2b7 4926
6de2ae4a 4927 memcpy (htab->elf.splt->contents + htab->tlsdesc_plt,
eed180f8 4928 abed->plt0_entry, abed->plt_entry_size);
67a4f2b7
AO
4929
4930 /* Add offset for pushq GOT+8(%rip), since the
4931 instruction uses 6 bytes subtract this value. */
4932 bfd_put_32 (output_bfd,
6de2ae4a
L
4933 (htab->elf.sgotplt->output_section->vma
4934 + htab->elf.sgotplt->output_offset
67a4f2b7 4935 + 8
6de2ae4a
L
4936 - htab->elf.splt->output_section->vma
4937 - htab->elf.splt->output_offset
67a4f2b7
AO
4938 - htab->tlsdesc_plt
4939 - 6),
eed180f8
RM
4940 htab->elf.splt->contents
4941 + htab->tlsdesc_plt + abed->plt0_got1_offset);
4942 /* Add offset for the PC-relative instruction accessing GOT+TDG,
4943 where TGD stands for htab->tlsdesc_got, subtracting the offset
4944 to the end of that instruction. */
67a4f2b7 4945 bfd_put_32 (output_bfd,
6de2ae4a
L
4946 (htab->elf.sgot->output_section->vma
4947 + htab->elf.sgot->output_offset
67a4f2b7 4948 + htab->tlsdesc_got
6de2ae4a
L
4949 - htab->elf.splt->output_section->vma
4950 - htab->elf.splt->output_offset
67a4f2b7 4951 - htab->tlsdesc_plt
eed180f8
RM
4952 - abed->plt0_got2_insn_end),
4953 htab->elf.splt->contents
4954 + htab->tlsdesc_plt + abed->plt0_got2_offset);
67a4f2b7 4955 }
70256ad8 4956 }
70256ad8
AJ
4957 }
4958
6de2ae4a 4959 if (htab->elf.sgotplt)
70256ad8 4960 {
56d4289c
L
4961 if (bfd_is_abs_section (htab->elf.sgotplt->output_section))
4962 {
4963 (*_bfd_error_handler)
4964 (_("discarded output section: `%A'"), htab->elf.sgotplt);
4965 return FALSE;
4966 }
4967
c434dee6 4968 /* Fill in the first three entries in the global offset table. */
6de2ae4a 4969 if (htab->elf.sgotplt->size > 0)
c434dee6
AJ
4970 {
4971 /* Set the first entry in the global offset table to the address of
4972 the dynamic section. */
4973 if (sdyn == NULL)
6de2ae4a 4974 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents);
c434dee6
AJ
4975 else
4976 bfd_put_64 (output_bfd,
4977 sdyn->output_section->vma + sdyn->output_offset,
6de2ae4a 4978 htab->elf.sgotplt->contents);
c434dee6 4979 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
6de2ae4a
L
4980 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + GOT_ENTRY_SIZE);
4981 bfd_put_64 (output_bfd, (bfd_vma) 0, htab->elf.sgotplt->contents + GOT_ENTRY_SIZE*2);
c434dee6 4982 }
70256ad8 4983
6de2ae4a 4984 elf_section_data (htab->elf.sgotplt->output_section)->this_hdr.sh_entsize =
c434dee6
AJ
4985 GOT_ENTRY_SIZE;
4986 }
70256ad8 4987
e41b3a13 4988 /* Adjust .eh_frame for .plt section. */
9a2a56cc
AM
4989 if (htab->plt_eh_frame != NULL
4990 && htab->plt_eh_frame->contents != NULL)
e41b3a13
JJ
4991 {
4992 if (htab->elf.splt != NULL
4993 && htab->elf.splt->size != 0
4994 && (htab->elf.splt->flags & SEC_EXCLUDE) == 0
4995 && htab->elf.splt->output_section != NULL
4996 && htab->plt_eh_frame->output_section != NULL)
4997 {
4998 bfd_vma plt_start = htab->elf.splt->output_section->vma;
4999 bfd_vma eh_frame_start = htab->plt_eh_frame->output_section->vma
5000 + htab->plt_eh_frame->output_offset
5001 + PLT_FDE_START_OFFSET;
5002 bfd_put_signed_32 (dynobj, plt_start - eh_frame_start,
5003 htab->plt_eh_frame->contents
5004 + PLT_FDE_START_OFFSET);
5005 }
dbaa2011 5006 if (htab->plt_eh_frame->sec_info_type == SEC_INFO_TYPE_EH_FRAME)
e41b3a13
JJ
5007 {
5008 if (! _bfd_elf_write_section_eh_frame (output_bfd, info,
5009 htab->plt_eh_frame,
5010 htab->plt_eh_frame->contents))
5011 return FALSE;
5012 }
5013 }
5014
6de2ae4a
L
5015 if (htab->elf.sgot && htab->elf.sgot->size > 0)
5016 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize
8c37241b
JJ
5017 = GOT_ENTRY_SIZE;
5018
c25bc9fc
L
5019 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
5020 htab_traverse (htab->loc_hash_table,
351f65ca 5021 elf_x86_64_finish_local_dynamic_symbol,
c25bc9fc
L
5022 info);
5023
b34976b6 5024 return TRUE;
8d88c4ca
NC
5025}
5026
4c45e5c9
JJ
5027/* Return address for Ith PLT stub in section PLT, for relocation REL
5028 or (bfd_vma) -1 if it should not be included. */
5029
5030static bfd_vma
351f65ca
L
5031elf_x86_64_plt_sym_val (bfd_vma i, const asection *plt,
5032 const arelent *rel ATTRIBUTE_UNUSED)
4c45e5c9 5033{
eed180f8 5034 return plt->vma + (i + 1) * GET_PLT_ENTRY_SIZE (plt->owner);
4c45e5c9 5035}
8df9fc9d 5036
d2b2c203
DJ
5037/* Handle an x86-64 specific section when reading an object file. This
5038 is called when elfcode.h finds a section with an unknown type. */
5039
5040static bfd_boolean
0c723101
L
5041elf_x86_64_section_from_shdr (bfd *abfd, Elf_Internal_Shdr *hdr,
5042 const char *name, int shindex)
d2b2c203
DJ
5043{
5044 if (hdr->sh_type != SHT_X86_64_UNWIND)
5045 return FALSE;
5046
6dc132d9 5047 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
d2b2c203
DJ
5048 return FALSE;
5049
5050 return TRUE;
5051}
5052
3b22753a
L
5053/* Hook called by the linker routine which adds symbols from an object
5054 file. We use it to put SHN_X86_64_LCOMMON items in .lbss, instead
5055 of .bss. */
5056
5057static bfd_boolean
351f65ca
L
5058elf_x86_64_add_symbol_hook (bfd *abfd,
5059 struct bfd_link_info *info,
5060 Elf_Internal_Sym *sym,
5061 const char **namep ATTRIBUTE_UNUSED,
5062 flagword *flagsp ATTRIBUTE_UNUSED,
5063 asection **secp,
5064 bfd_vma *valp)
3b22753a
L
5065{
5066 asection *lcomm;
5067
5068 switch (sym->st_shndx)
5069 {
5070 case SHN_X86_64_LCOMMON:
5071 lcomm = bfd_get_section_by_name (abfd, "LARGE_COMMON");
5072 if (lcomm == NULL)
5073 {
5074 lcomm = bfd_make_section_with_flags (abfd,
5075 "LARGE_COMMON",
5076 (SEC_ALLOC
5077 | SEC_IS_COMMON
5078 | SEC_LINKER_CREATED));
5079 if (lcomm == NULL)
5080 return FALSE;
5081 elf_section_flags (lcomm) |= SHF_X86_64_LARGE;
5082 }
5083 *secp = lcomm;
5084 *valp = sym->st_size;
c35bdf6e 5085 return TRUE;
3b22753a 5086 }
d8045f23 5087
c16153ae 5088 if ((abfd->flags & DYNAMIC) == 0
f64b2e8d
NC
5089 && (ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC
5090 || ELF_ST_BIND (sym->st_info) == STB_GNU_UNIQUE))
5091 elf_tdata (info->output_bfd)->has_gnu_symbols = TRUE;
d8045f23 5092
3b22753a
L
5093 return TRUE;
5094}
5095
5096
5097/* Given a BFD section, try to locate the corresponding ELF section
5098 index. */
5099
5100static bfd_boolean
351f65ca
L
5101elf_x86_64_elf_section_from_bfd_section (bfd *abfd ATTRIBUTE_UNUSED,
5102 asection *sec, int *index_return)
3b22753a
L
5103{
5104 if (sec == &_bfd_elf_large_com_section)
5105 {
91d6fa6a 5106 *index_return = SHN_X86_64_LCOMMON;
3b22753a
L
5107 return TRUE;
5108 }
5109 return FALSE;
5110}
5111
5112/* Process a symbol. */
5113
5114static void
351f65ca
L
5115elf_x86_64_symbol_processing (bfd *abfd ATTRIBUTE_UNUSED,
5116 asymbol *asym)
3b22753a
L
5117{
5118 elf_symbol_type *elfsym = (elf_symbol_type *) asym;
5119
5120 switch (elfsym->internal_elf_sym.st_shndx)
5121 {
5122 case SHN_X86_64_LCOMMON:
5123 asym->section = &_bfd_elf_large_com_section;
5124 asym->value = elfsym->internal_elf_sym.st_size;
5125 /* Common symbol doesn't set BSF_GLOBAL. */
5126 asym->flags &= ~BSF_GLOBAL;
5127 break;
5128 }
5129}
5130
5131static bfd_boolean
351f65ca 5132elf_x86_64_common_definition (Elf_Internal_Sym *sym)
3b22753a
L
5133{
5134 return (sym->st_shndx == SHN_COMMON
5135 || sym->st_shndx == SHN_X86_64_LCOMMON);
5136}
5137
5138static unsigned int
351f65ca 5139elf_x86_64_common_section_index (asection *sec)
3b22753a
L
5140{
5141 if ((elf_section_flags (sec) & SHF_X86_64_LARGE) == 0)
5142 return SHN_COMMON;
5143 else
5144 return SHN_X86_64_LCOMMON;
5145}
5146
5147static asection *
351f65ca 5148elf_x86_64_common_section (asection *sec)
3b22753a
L
5149{
5150 if ((elf_section_flags (sec) & SHF_X86_64_LARGE) == 0)
5151 return bfd_com_section_ptr;
5152 else
5153 return &_bfd_elf_large_com_section;
5154}
5155
5156static bfd_boolean
5d13b3b3
AM
5157elf_x86_64_merge_symbol (struct elf_link_hash_entry *h,
5158 const Elf_Internal_Sym *sym,
351f65ca 5159 asection **psec,
5d13b3b3
AM
5160 bfd_boolean newdef,
5161 bfd_boolean olddef,
351f65ca 5162 bfd *oldbfd,
5d13b3b3 5163 const asection *oldsec)
3b22753a
L
5164{
5165 /* A normal common symbol and a large common symbol result in a
00492999
L
5166 normal common symbol. We turn the large common symbol into a
5167 normal one. */
5d13b3b3 5168 if (!olddef
3b22753a 5169 && h->root.type == bfd_link_hash_common
5d13b3b3
AM
5170 && !newdef
5171 && bfd_is_com_section (*psec)
5172 && oldsec != *psec)
3b22753a 5173 {
00492999 5174 if (sym->st_shndx == SHN_COMMON
5d13b3b3 5175 && (elf_section_flags (oldsec) & SHF_X86_64_LARGE) != 0)
00492999
L
5176 {
5177 h->root.u.c.p->section
5178 = bfd_make_section_old_way (oldbfd, "COMMON");
5179 h->root.u.c.p->section->flags = SEC_ALLOC;
5180 }
5181 else if (sym->st_shndx == SHN_X86_64_LCOMMON
5d13b3b3
AM
5182 && (elf_section_flags (oldsec) & SHF_X86_64_LARGE) == 0)
5183 *psec = bfd_com_section_ptr;
3b22753a
L
5184 }
5185
5186 return TRUE;
5187}
5188
5189static int
351f65ca
L
5190elf_x86_64_additional_program_headers (bfd *abfd,
5191 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3b22753a
L
5192{
5193 asection *s;
9a2e389a 5194 int count = 0;
3b22753a
L
5195
5196 /* Check to see if we need a large readonly segment. */
5197 s = bfd_get_section_by_name (abfd, ".lrodata");
5198 if (s && (s->flags & SEC_LOAD))
5199 count++;
5200
5201 /* Check to see if we need a large data segment. Since .lbss sections
5202 is placed right after the .bss section, there should be no need for
5203 a large data segment just because of .lbss. */
5204 s = bfd_get_section_by_name (abfd, ".ldata");
5205 if (s && (s->flags & SEC_LOAD))
5206 count++;
5207
5208 return count;
5209}
5210
fdc90cb4
JJ
5211/* Return TRUE if symbol should be hashed in the `.gnu.hash' section. */
5212
5213static bfd_boolean
351f65ca 5214elf_x86_64_hash_symbol (struct elf_link_hash_entry *h)
fdc90cb4
JJ
5215{
5216 if (h->plt.offset != (bfd_vma) -1
5217 && !h->def_regular
5218 && !h->pointer_equality_needed)
5219 return FALSE;
5220
5221 return _bfd_elf_hash_symbol (h);
5222}
5223
c543bf9a
L
5224/* Return TRUE iff relocations for INPUT are compatible with OUTPUT. */
5225
5226static bfd_boolean
5227elf_x86_64_relocs_compatible (const bfd_target *input,
5228 const bfd_target *output)
5229{
5230 return ((xvec_get_elf_backend_data (input)->s->elfclass
5231 == xvec_get_elf_backend_data (output)->s->elfclass)
5232 && _bfd_elf_relocs_compatible (input, output));
5233}
5234
9a2e389a 5235static const struct bfd_elf_special_section
351f65ca 5236 elf_x86_64_special_sections[]=
3b22753a 5237{
0112cd26
NC
5238 { STRING_COMMA_LEN (".gnu.linkonce.lb"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5239 { STRING_COMMA_LEN (".gnu.linkonce.lr"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_X86_64_LARGE},
5240 { STRING_COMMA_LEN (".gnu.linkonce.lt"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR + SHF_X86_64_LARGE},
5241 { STRING_COMMA_LEN (".lbss"), -2, SHT_NOBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5242 { STRING_COMMA_LEN (".ldata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE + SHF_X86_64_LARGE},
5243 { STRING_COMMA_LEN (".lrodata"), -2, SHT_PROGBITS, SHF_ALLOC + SHF_X86_64_LARGE},
5244 { NULL, 0, 0, 0, 0 }
3b22753a
L
5245};
5246
70256ad8
AJ
5247#define TARGET_LITTLE_SYM bfd_elf64_x86_64_vec
5248#define TARGET_LITTLE_NAME "elf64-x86-64"
5249#define ELF_ARCH bfd_arch_i386
ae95ffa6 5250#define ELF_TARGET_ID X86_64_ELF_DATA
70256ad8 5251#define ELF_MACHINE_CODE EM_X86_64
f7661549 5252#define ELF_MAXPAGESIZE 0x200000
2043964e 5253#define ELF_MINPAGESIZE 0x1000
24718e3b 5254#define ELF_COMMONPAGESIZE 0x1000
70256ad8
AJ
5255
5256#define elf_backend_can_gc_sections 1
51b64d56 5257#define elf_backend_can_refcount 1
70256ad8
AJ
5258#define elf_backend_want_got_plt 1
5259#define elf_backend_plt_readonly 1
5260#define elf_backend_want_plt_sym 0
5261#define elf_backend_got_header_size (GOT_ENTRY_SIZE*3)
b491616a 5262#define elf_backend_rela_normal 1
e41b3a13 5263#define elf_backend_plt_alignment 4
70256ad8 5264
351f65ca 5265#define elf_info_to_howto elf_x86_64_info_to_howto
70256ad8 5266
70256ad8 5267#define bfd_elf64_bfd_link_hash_table_create \
351f65ca 5268 elf_x86_64_link_hash_table_create
c25bc9fc 5269#define bfd_elf64_bfd_link_hash_table_free \
351f65ca
L
5270 elf_x86_64_link_hash_table_free
5271#define bfd_elf64_bfd_reloc_type_lookup elf_x86_64_reloc_type_lookup
157090f7 5272#define bfd_elf64_bfd_reloc_name_lookup \
351f65ca 5273 elf_x86_64_reloc_name_lookup
70256ad8 5274
351f65ca 5275#define elf_backend_adjust_dynamic_symbol elf_x86_64_adjust_dynamic_symbol
c543bf9a 5276#define elf_backend_relocs_compatible elf_x86_64_relocs_compatible
351f65ca
L
5277#define elf_backend_check_relocs elf_x86_64_check_relocs
5278#define elf_backend_copy_indirect_symbol elf_x86_64_copy_indirect_symbol
5279#define elf_backend_create_dynamic_sections elf_x86_64_create_dynamic_sections
5280#define elf_backend_finish_dynamic_sections elf_x86_64_finish_dynamic_sections
5281#define elf_backend_finish_dynamic_symbol elf_x86_64_finish_dynamic_symbol
5282#define elf_backend_gc_mark_hook elf_x86_64_gc_mark_hook
5283#define elf_backend_gc_sweep_hook elf_x86_64_gc_sweep_hook
5284#define elf_backend_grok_prstatus elf_x86_64_grok_prstatus
5285#define elf_backend_grok_psinfo elf_x86_64_grok_psinfo
8fd79e71
L
5286#ifdef CORE_HEADER
5287#define elf_backend_write_core_note elf_x86_64_write_core_note
5288#endif
351f65ca
L
5289#define elf_backend_reloc_type_class elf_x86_64_reloc_type_class
5290#define elf_backend_relocate_section elf_x86_64_relocate_section
5291#define elf_backend_size_dynamic_sections elf_x86_64_size_dynamic_sections
5292#define elf_backend_always_size_sections elf_x86_64_always_size_sections
74541ad4 5293#define elf_backend_init_index_section _bfd_elf_init_1_index_section
351f65ca 5294#define elf_backend_plt_sym_val elf_x86_64_plt_sym_val
407443a3 5295#define elf_backend_object_p elf64_x86_64_elf_object_p
351f65ca 5296#define bfd_elf64_mkobject elf_x86_64_mkobject
8d88c4ca 5297
d2b2c203 5298#define elf_backend_section_from_shdr \
351f65ca 5299 elf_x86_64_section_from_shdr
d2b2c203 5300
3b22753a 5301#define elf_backend_section_from_bfd_section \
351f65ca 5302 elf_x86_64_elf_section_from_bfd_section
3b22753a 5303#define elf_backend_add_symbol_hook \
351f65ca 5304 elf_x86_64_add_symbol_hook
3b22753a 5305#define elf_backend_symbol_processing \
351f65ca 5306 elf_x86_64_symbol_processing
3b22753a 5307#define elf_backend_common_section_index \
351f65ca 5308 elf_x86_64_common_section_index
3b22753a 5309#define elf_backend_common_section \
351f65ca 5310 elf_x86_64_common_section
3b22753a 5311#define elf_backend_common_definition \
351f65ca 5312 elf_x86_64_common_definition
3b22753a 5313#define elf_backend_merge_symbol \
351f65ca 5314 elf_x86_64_merge_symbol
3b22753a 5315#define elf_backend_special_sections \
351f65ca 5316 elf_x86_64_special_sections
3b22753a 5317#define elf_backend_additional_program_headers \
351f65ca 5318 elf_x86_64_additional_program_headers
fdc90cb4 5319#define elf_backend_hash_symbol \
351f65ca 5320 elf_x86_64_hash_symbol
3b22753a 5321
8d88c4ca 5322#include "elf64-target.h"
9d7cbccd
NC
5323
5324/* FreeBSD support. */
5325
5326#undef TARGET_LITTLE_SYM
5327#define TARGET_LITTLE_SYM bfd_elf64_x86_64_freebsd_vec
5328#undef TARGET_LITTLE_NAME
5329#define TARGET_LITTLE_NAME "elf64-x86-64-freebsd"
5330
d1036acb
L
5331#undef ELF_OSABI
5332#define ELF_OSABI ELFOSABI_FREEBSD
9d7cbccd 5333
9d7cbccd
NC
5334#undef elf64_bed
5335#define elf64_bed elf64_x86_64_fbsd_bed
5336
5337#include "elf64-target.h"
8a9036a4 5338
a6cc6b3b
RO
5339/* Solaris 2 support. */
5340
5341#undef TARGET_LITTLE_SYM
5342#define TARGET_LITTLE_SYM bfd_elf64_x86_64_sol2_vec
5343#undef TARGET_LITTLE_NAME
5344#define TARGET_LITTLE_NAME "elf64-x86-64-sol2"
5345
5346/* Restore default: we cannot use ELFOSABI_SOLARIS, otherwise ELFOSABI_NONE
5347 objects won't be recognized. */
5348#undef ELF_OSABI
5349
5350#undef elf64_bed
5351#define elf64_bed elf64_x86_64_sol2_bed
5352
7dc98aea
RO
5353/* The 64-bit static TLS arena size is rounded to the nearest 16-byte
5354 boundary. */
5355#undef elf_backend_static_tls_alignment
5356#define elf_backend_static_tls_alignment 16
5357
a6cc6b3b
RO
5358/* The Solaris 2 ABI requires a plt symbol on all platforms.
5359
5360 Cf. Linker and Libraries Guide, Ch. 2, Link-Editor, Generating the Output
5361 File, p.63. */
5362#undef elf_backend_want_plt_sym
5363#define elf_backend_want_plt_sym 1
5364
5365#include "elf64-target.h"
5366
8059fb19
RM
5367/* Native Client support. */
5368
64b384e1
RM
5369static bfd_boolean
5370elf64_x86_64_nacl_elf_object_p (bfd *abfd)
5371{
5372 /* Set the right machine number for a NaCl x86-64 ELF64 file. */
5373 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x86_64_nacl);
5374 return TRUE;
5375}
5376
8059fb19
RM
5377#undef TARGET_LITTLE_SYM
5378#define TARGET_LITTLE_SYM bfd_elf64_x86_64_nacl_vec
5379#undef TARGET_LITTLE_NAME
5380#define TARGET_LITTLE_NAME "elf64-x86-64-nacl"
5381#undef elf64_bed
5382#define elf64_bed elf64_x86_64_nacl_bed
5383
5384#undef ELF_MAXPAGESIZE
5385#undef ELF_MINPAGESIZE
5386#undef ELF_COMMONPAGESIZE
5387#define ELF_MAXPAGESIZE 0x10000
5388#define ELF_MINPAGESIZE 0x10000
5389#define ELF_COMMONPAGESIZE 0x10000
5390
5391/* Restore defaults. */
5392#undef ELF_OSABI
5393#undef elf_backend_static_tls_alignment
5394#undef elf_backend_want_plt_sym
5395#define elf_backend_want_plt_sym 0
5396
5397/* NaCl uses substantially different PLT entries for the same effects. */
5398
5399#undef elf_backend_plt_alignment
5400#define elf_backend_plt_alignment 5
5401#define NACL_PLT_ENTRY_SIZE 64
5402#define NACLMASK 0xe0 /* 32-byte alignment mask. */
5403
5404static const bfd_byte elf_x86_64_nacl_plt0_entry[NACL_PLT_ENTRY_SIZE] =
5405 {
5406 0xff, 0x35, 8, 0, 0, 0, /* pushq GOT+8(%rip) */
5407 0x4c, 0x8b, 0x1d, 16, 0, 0, 0, /* mov GOT+16(%rip), %r11 */
5408 0x41, 0x83, 0xe3, NACLMASK, /* and $-32, %r11d */
5409 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
5410 0x41, 0xff, 0xe3, /* jmpq *%r11 */
5411
ea2d813e 5412 /* 9-byte nop sequence to pad out to the next 32-byte boundary. */
70cc877f 5413 0x66, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw 0x0(%rax,%rax,1) */
ea2d813e
RM
5414
5415 /* 32 bytes of nop to pad out to the standard size. */
8059fb19
RM
5416 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5417 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5418 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5419 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
ea2d813e
RM
5420 0x66, /* excess data32 prefix */
5421 0x90 /* nop */
8059fb19
RM
5422 };
5423
5424static const bfd_byte elf_x86_64_nacl_plt_entry[NACL_PLT_ENTRY_SIZE] =
5425 {
5426 0x4c, 0x8b, 0x1d, 0, 0, 0, 0, /* mov name@GOTPCREL(%rip),%r11 */
5427 0x41, 0x83, 0xe3, NACLMASK, /* and $-32, %r11d */
5428 0x4d, 0x01, 0xfb, /* add %r15, %r11 */
5429 0x41, 0xff, 0xe3, /* jmpq *%r11 */
5430
5431 /* 15-byte nop sequence to pad out to the next 32-byte boundary. */
5432 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5433 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5434
5435 /* Lazy GOT entries point here (32-byte aligned). */
5436 0x68, /* pushq immediate */
5437 0, 0, 0, 0, /* replaced with index into relocation table. */
5438 0xe9, /* jmp relative */
5439 0, 0, 0, 0, /* replaced with offset to start of .plt0. */
5440
5441 /* 22 bytes of nop to pad out to the standard size. */
5442 0x66, 0x66, 0x66, 0x66, 0x66, 0x66, /* excess data32 prefixes */
5443 0x2e, 0x0f, 0x1f, 0x84, 0, 0, 0, 0, 0, /* nopw %cs:0x0(%rax,%rax,1) */
5444 0x0f, 0x1f, 0x80, 0, 0, 0, 0, /* nopl 0x0(%rax) */
5445 };
5446
5447/* .eh_frame covering the .plt section. */
5448
5449static const bfd_byte elf_x86_64_nacl_eh_frame_plt[] =
5450 {
5451#if (PLT_CIE_LENGTH != 20 \
5452 || PLT_FDE_LENGTH != 36 \
5453 || PLT_FDE_START_OFFSET != 4 + PLT_CIE_LENGTH + 8 \
5454 || PLT_FDE_LEN_OFFSET != 4 + PLT_CIE_LENGTH + 12)
5455# error "Need elf_x86_64_backend_data parameters for eh_frame_plt offsets!"
5456#endif
5457 PLT_CIE_LENGTH, 0, 0, 0, /* CIE length */
5458 0, 0, 0, 0, /* CIE ID */
5459 1, /* CIE version */
5460 'z', 'R', 0, /* Augmentation string */
5461 1, /* Code alignment factor */
5462 0x78, /* Data alignment factor */
5463 16, /* Return address column */
5464 1, /* Augmentation size */
5465 DW_EH_PE_pcrel | DW_EH_PE_sdata4, /* FDE encoding */
5466 DW_CFA_def_cfa, 7, 8, /* DW_CFA_def_cfa: r7 (rsp) ofs 8 */
5467 DW_CFA_offset + 16, 1, /* DW_CFA_offset: r16 (rip) at cfa-8 */
5468 DW_CFA_nop, DW_CFA_nop,
5469
5470 PLT_FDE_LENGTH, 0, 0, 0, /* FDE length */
5471 PLT_CIE_LENGTH + 8, 0, 0, 0,/* CIE pointer */
5472 0, 0, 0, 0, /* R_X86_64_PC32 .plt goes here */
5473 0, 0, 0, 0, /* .plt size goes here */
5474 0, /* Augmentation size */
5475 DW_CFA_def_cfa_offset, 16, /* DW_CFA_def_cfa_offset: 16 */
5476 DW_CFA_advance_loc + 6, /* DW_CFA_advance_loc: 6 to __PLT__+6 */
5477 DW_CFA_def_cfa_offset, 24, /* DW_CFA_def_cfa_offset: 24 */
5478 DW_CFA_advance_loc + 58, /* DW_CFA_advance_loc: 58 to __PLT__+64 */
5479 DW_CFA_def_cfa_expression, /* DW_CFA_def_cfa_expression */
5480 13, /* Block length */
5481 DW_OP_breg7, 8, /* DW_OP_breg7 (rsp): 8 */
5482 DW_OP_breg16, 0, /* DW_OP_breg16 (rip): 0 */
5483 DW_OP_const1u, 63, DW_OP_and, DW_OP_const1u, 37, DW_OP_ge,
5484 DW_OP_lit3, DW_OP_shl, DW_OP_plus,
5485 DW_CFA_nop, DW_CFA_nop
5486 };
5487
5488static const struct elf_x86_64_backend_data elf_x86_64_nacl_arch_bed =
5489 {
5490 elf_x86_64_nacl_plt0_entry, /* plt0_entry */
5491 elf_x86_64_nacl_plt_entry, /* plt_entry */
5492 NACL_PLT_ENTRY_SIZE, /* plt_entry_size */
5493 2, /* plt0_got1_offset */
5494 9, /* plt0_got2_offset */
5495 13, /* plt0_got2_insn_end */
5496 3, /* plt_got_offset */
5497 33, /* plt_reloc_offset */
5498 38, /* plt_plt_offset */
5499 7, /* plt_got_insn_size */
5500 42, /* plt_plt_insn_end */
5501 32, /* plt_lazy_offset */
5502 elf_x86_64_nacl_eh_frame_plt, /* eh_frame_plt */
5503 sizeof (elf_x86_64_nacl_eh_frame_plt), /* eh_frame_plt_size */
5504 };
5505
5506#undef elf_backend_arch_data
5507#define elf_backend_arch_data &elf_x86_64_nacl_arch_bed
5508
64b384e1
RM
5509#undef elf_backend_object_p
5510#define elf_backend_object_p elf64_x86_64_nacl_elf_object_p
5a68afcf
RM
5511#undef elf_backend_modify_segment_map
5512#define elf_backend_modify_segment_map nacl_modify_segment_map
5513#undef elf_backend_modify_program_headers
5514#define elf_backend_modify_program_headers nacl_modify_program_headers
887badb3
RM
5515#undef elf_backend_final_write_processing
5516#define elf_backend_final_write_processing nacl_final_write_processing
5a68afcf 5517
8059fb19
RM
5518#include "elf64-target.h"
5519
5520/* Native Client x32 support. */
5521
64b384e1
RM
5522static bfd_boolean
5523elf32_x86_64_nacl_elf_object_p (bfd *abfd)
5524{
5525 /* Set the right machine number for a NaCl x86-64 ELF32 file. */
5526 bfd_default_set_arch_mach (abfd, bfd_arch_i386, bfd_mach_x64_32_nacl);
5527 return TRUE;
5528}
5529
8059fb19
RM
5530#undef TARGET_LITTLE_SYM
5531#define TARGET_LITTLE_SYM bfd_elf32_x86_64_nacl_vec
5532#undef TARGET_LITTLE_NAME
5533#define TARGET_LITTLE_NAME "elf32-x86-64-nacl"
5534#undef elf32_bed
5535#define elf32_bed elf32_x86_64_nacl_bed
5536
5537#define bfd_elf32_bfd_link_hash_table_create \
5538 elf_x86_64_link_hash_table_create
5539#define bfd_elf32_bfd_link_hash_table_free \
5540 elf_x86_64_link_hash_table_free
5541#define bfd_elf32_bfd_reloc_type_lookup \
5542 elf_x86_64_reloc_type_lookup
5543#define bfd_elf32_bfd_reloc_name_lookup \
5544 elf_x86_64_reloc_name_lookup
5545#define bfd_elf32_mkobject \
5546 elf_x86_64_mkobject
5547
5548#undef elf_backend_object_p
5549#define elf_backend_object_p \
64b384e1 5550 elf32_x86_64_nacl_elf_object_p
8059fb19
RM
5551
5552#undef elf_backend_bfd_from_remote_memory
5553#define elf_backend_bfd_from_remote_memory \
5554 _bfd_elf32_bfd_from_remote_memory
5555
5556#undef elf_backend_size_info
5557#define elf_backend_size_info \
5558 _bfd_elf32_size_info
5559
5560#include "elf32-target.h"
5561
5562/* Restore defaults. */
5a68afcf 5563#undef elf_backend_object_p
8059fb19 5564#define elf_backend_object_p elf64_x86_64_elf_object_p
5a68afcf
RM
5565#undef elf_backend_bfd_from_remote_memory
5566#undef elf_backend_size_info
5567#undef elf_backend_modify_segment_map
5568#undef elf_backend_modify_program_headers
887badb3 5569#undef elf_backend_final_write_processing
8059fb19 5570
8a9036a4
L
5571/* Intel L1OM support. */
5572
5573static bfd_boolean
5574elf64_l1om_elf_object_p (bfd *abfd)
5575{
5576 /* Set the right machine number for an L1OM elf64 file. */
5577 bfd_default_set_arch_mach (abfd, bfd_arch_l1om, bfd_mach_l1om);
5578 return TRUE;
5579}
5580
5581#undef TARGET_LITTLE_SYM
5582#define TARGET_LITTLE_SYM bfd_elf64_l1om_vec
5583#undef TARGET_LITTLE_NAME
5584#define TARGET_LITTLE_NAME "elf64-l1om"
5585#undef ELF_ARCH
5586#define ELF_ARCH bfd_arch_l1om
5587
5588#undef ELF_MACHINE_CODE
5589#define ELF_MACHINE_CODE EM_L1OM
5590
5591#undef ELF_OSABI
5592
5593#undef elf64_bed
5594#define elf64_bed elf64_l1om_bed
5595
5596#undef elf_backend_object_p
5597#define elf_backend_object_p elf64_l1om_elf_object_p
5598
8059fb19
RM
5599/* Restore defaults. */
5600#undef ELF_MAXPAGESIZE
5601#undef ELF_MINPAGESIZE
5602#undef ELF_COMMONPAGESIZE
5603#define ELF_MAXPAGESIZE 0x200000
5604#define ELF_MINPAGESIZE 0x1000
5605#define ELF_COMMONPAGESIZE 0x1000
5606#undef elf_backend_plt_alignment
5607#define elf_backend_plt_alignment 4
5608#undef elf_backend_arch_data
5609#define elf_backend_arch_data &elf_x86_64_arch_bed
1a0c107f 5610
8a9036a4
L
5611#include "elf64-target.h"
5612
5613/* FreeBSD L1OM support. */
5614
5615#undef TARGET_LITTLE_SYM
5616#define TARGET_LITTLE_SYM bfd_elf64_l1om_freebsd_vec
5617#undef TARGET_LITTLE_NAME
5618#define TARGET_LITTLE_NAME "elf64-l1om-freebsd"
5619
5620#undef ELF_OSABI
5621#define ELF_OSABI ELFOSABI_FREEBSD
5622
5623#undef elf64_bed
5624#define elf64_bed elf64_l1om_fbsd_bed
5625
8a9036a4 5626#include "elf64-target.h"
351f65ca 5627
7a9068fe
L
5628/* Intel K1OM support. */
5629
5630static bfd_boolean
5631elf64_k1om_elf_object_p (bfd *abfd)
5632{
5633 /* Set the right machine number for an K1OM elf64 file. */
5634 bfd_default_set_arch_mach (abfd, bfd_arch_k1om, bfd_mach_k1om);
5635 return TRUE;
5636}
5637
5638#undef TARGET_LITTLE_SYM
5639#define TARGET_LITTLE_SYM bfd_elf64_k1om_vec
5640#undef TARGET_LITTLE_NAME
5641#define TARGET_LITTLE_NAME "elf64-k1om"
5642#undef ELF_ARCH
5643#define ELF_ARCH bfd_arch_k1om
5644
5645#undef ELF_MACHINE_CODE
5646#define ELF_MACHINE_CODE EM_K1OM
5647
5648#undef ELF_OSABI
5649
5650#undef elf64_bed
5651#define elf64_bed elf64_k1om_bed
5652
5653#undef elf_backend_object_p
5654#define elf_backend_object_p elf64_k1om_elf_object_p
5655
5656#undef elf_backend_static_tls_alignment
5657
5658#undef elf_backend_want_plt_sym
5659#define elf_backend_want_plt_sym 0
5660
5661#include "elf64-target.h"
5662
5663/* FreeBSD K1OM support. */
5664
5665#undef TARGET_LITTLE_SYM
5666#define TARGET_LITTLE_SYM bfd_elf64_k1om_freebsd_vec
5667#undef TARGET_LITTLE_NAME
5668#define TARGET_LITTLE_NAME "elf64-k1om-freebsd"
5669
5670#undef ELF_OSABI
5671#define ELF_OSABI ELFOSABI_FREEBSD
5672
5673#undef elf64_bed
5674#define elf64_bed elf64_k1om_fbsd_bed
5675
5676#include "elf64-target.h"
5677
351f65ca
L
5678/* 32bit x86-64 support. */
5679
351f65ca
L
5680#undef TARGET_LITTLE_SYM
5681#define TARGET_LITTLE_SYM bfd_elf32_x86_64_vec
5682#undef TARGET_LITTLE_NAME
5683#define TARGET_LITTLE_NAME "elf32-x86-64"
8059fb19 5684#undef elf32_bed
351f65ca
L
5685
5686#undef ELF_ARCH
5687#define ELF_ARCH bfd_arch_i386
5688
5689#undef ELF_MACHINE_CODE
5690#define ELF_MACHINE_CODE EM_X86_64
5691
351f65ca
L
5692#undef ELF_OSABI
5693
351f65ca
L
5694#undef elf_backend_object_p
5695#define elf_backend_object_p \
5696 elf32_x86_64_elf_object_p
5697
5698#undef elf_backend_bfd_from_remote_memory
5699#define elf_backend_bfd_from_remote_memory \
5700 _bfd_elf32_bfd_from_remote_memory
5701
5702#undef elf_backend_size_info
5703#define elf_backend_size_info \
5704 _bfd_elf32_size_info
5705
5706#include "elf32-target.h"
This page took 1.137162 seconds and 4 git commands to generate.