]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - bfd/elf32-tilepro.c
ELF: Copy dyn_relocs in _bfd_elf_link_hash_copy_indirect
[thirdparty/binutils-gdb.git] / bfd / elf32-tilepro.c
CommitLineData
aa137e4d 1/* TILEPro-specific support for 32-bit ELF.
b3adc24a 2 Copyright (C) 2011-2020 Free Software Foundation, Inc.
aa137e4d
NC
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
aa137e4d 21#include "sysdep.h"
691bf19c 22#include "bfd.h"
aa137e4d
NC
23#include "libbfd.h"
24#include "elf-bfd.h"
25#include "elf/tilepro.h"
26#include "opcode/tilepro.h"
27#include "libiberty.h"
28#include "elf32-tilepro.h"
29
30#define TILEPRO_BYTES_PER_WORD 4
31
32static reloc_howto_type tilepro_elf_howto_table [] =
33{
34 /* This reloc does nothing. */
35 HOWTO (R_TILEPRO_NONE, /* type */
36 0, /* rightshift */
6346d5ca
AM
37 3, /* size (0 = byte, 1 = short, 2 = long) */
38 0, /* bitsize */
aa137e4d
NC
39 FALSE, /* pc_relative */
40 0, /* bitpos */
6346d5ca 41 complain_overflow_dont, /* complain_on_overflow */
aa137e4d
NC
42 bfd_elf_generic_reloc, /* special_function */
43 "R_TILEPRO_NONE", /* name */
44 FALSE, /* partial_inplace */
45 0, /* src_mask */
46 0, /* dst_mask */
47 FALSE), /* pcrel_offset */
48
49 /* A 32 bit absolute relocation. */
50 HOWTO (R_TILEPRO_32, /* type */
51 0, /* rightshift */
52 2, /* size (0 = byte, 1 = short, 2 = long) */
53 32, /* bitsize */
54 FALSE, /* pc_relative */
55 0, /* bitpos */
56 complain_overflow_dont, /* complain_on_overflow */
57 bfd_elf_generic_reloc, /* special_function */
58 "R_TILEPRO_32", /* name */
59 FALSE, /* partial_inplace */
60 0, /* src_mask */
61 0xffffffff, /* dst_mask */
62 FALSE), /* pcrel_offset */
63
64 /* A 16 bit absolute relocation. */
65 HOWTO (R_TILEPRO_16, /* type */
66 0, /* rightshift */
67 1, /* size (0 = byte, 1 = short, 2 = long) */
68 16, /* bitsize */
69 FALSE, /* pc_relative */
70 0, /* bitpos */
71 complain_overflow_bitfield, /* complain_on_overflow */
72 bfd_elf_generic_reloc, /* special_function */
73 "R_TILEPRO_16", /* name */
74 FALSE, /* partial_inplace */
75 0, /* src_mask */
76 0xffff, /* dst_mask */
77 FALSE), /* pcrel_offset */
78
79 /* An 8 bit absolute relocation. */
80 HOWTO (R_TILEPRO_8, /* type */
81 0, /* rightshift */
82 0, /* size (0 = byte, 1 = short, 2 = long) */
83 8, /* bitsize */
84 FALSE, /* pc_relative */
85 0, /* bitpos */
86 complain_overflow_unsigned, /* complain_on_overflow */
87 bfd_elf_generic_reloc, /* special_function */
88 "R_TILEPRO_8", /* name */
89 FALSE, /* partial_inplace */
90 0, /* src_mask */
91 0xff, /* dst_mask */
92 FALSE), /* pcrel_offset */
93
94 /* A 32 bit pc-relative relocation. */
95 HOWTO (R_TILEPRO_32_PCREL,/* type */
96 0, /* rightshift */
97 2, /* size (0 = byte, 1 = short, 2 = long) */
98 32, /* bitsize */
99 TRUE, /* pc_relative */
100 0, /* bitpos */
101 complain_overflow_dont, /* complain_on_overflow */
102 bfd_elf_generic_reloc, /* special_function */
103 "R_TILEPRO_32_PCREL", /* name */
104 FALSE, /* partial_inplace */
105 0, /* src_mask */
106 0xffffffff, /* dst_mask */
107 TRUE), /* pcrel_offset */
108
109 /* A 16 bit pc-relative relocation. */
110 HOWTO (R_TILEPRO_16_PCREL,/* type */
111 0, /* rightshift */
112 1, /* size (0 = byte, 1 = short, 2 = long) */
113 16, /* bitsize */
114 TRUE, /* pc_relative */
115 0, /* bitpos */
116 complain_overflow_signed, /* complain_on_overflow */
117 bfd_elf_generic_reloc, /* special_function */
118 "R_TILEPRO_16_PCREL", /* name */
119 FALSE, /* partial_inplace */
120 0, /* src_mask */
121 0xffff, /* dst_mask */
122 TRUE), /* pcrel_offset */
123
124 /* An 8 bit pc-relative relocation. */
125 HOWTO (R_TILEPRO_8_PCREL, /* type */
126 0, /* rightshift */
127 0, /* size (0 = byte, 1 = short, 2 = long) */
128 8, /* bitsize */
129 TRUE, /* pc_relative */
130 0, /* bitpos */
131 complain_overflow_signed, /* complain_on_overflow */
132 bfd_elf_generic_reloc, /* special_function */
133 "R_TILEPRO_8_PCREL",/* name */
134 FALSE, /* partial_inplace */
135 0, /* src_mask */
136 0xff, /* dst_mask */
137 TRUE), /* pcrel_offset */
138
139 /* A 16 bit relocation without overflow. */
140 HOWTO (R_TILEPRO_LO16, /* type */
141 0, /* rightshift */
142 1, /* size (0 = byte, 1 = short, 2 = long) */
143 16, /* bitsize */
144 FALSE, /* pc_relative */
145 0, /* bitpos */
146 complain_overflow_dont,/* complain_on_overflow */
147 bfd_elf_generic_reloc, /* special_function */
148 "R_TILEPRO_LO16", /* name */
149 FALSE, /* partial_inplace */
150 0, /* src_mask */
151 0xffff, /* dst_mask */
152 FALSE), /* pcrel_offset */
153
154 /* The high order 16 bits of an address. */
155 HOWTO (R_TILEPRO_HI16, /* type */
156 16, /* rightshift */
157 1, /* size (0 = byte, 1 = short, 2 = long) */
158 16, /* bitsize */
159 FALSE, /* pc_relative */
160 0, /* bitpos */
161 complain_overflow_dont, /* complain_on_overflow */
162 bfd_elf_generic_reloc, /* special_function */
163 "R_TILEPRO_HI16", /* name */
164 FALSE, /* partial_inplace */
165 0, /* src_mask */
166 0xffff, /* dst_mask */
167 FALSE), /* pcrel_offset */
168
169 /* The high order 16 bits of an address, plus 1 if the contents of
170 the low 16 bits, treated as a signed number, is negative. */
171 HOWTO (R_TILEPRO_HA16, /* type */
172 16, /* rightshift */
173 1, /* size (0 = byte, 1 = short, 2 = long) */
174 16, /* bitsize */
175 FALSE, /* pc_relative */
176 0, /* bitpos */
177 complain_overflow_dont, /* complain_on_overflow */
178 bfd_elf_generic_reloc, /* special_function */
179 "R_TILEPRO_HA16", /* name */
180 FALSE, /* partial_inplace */
181 0, /* src_mask */
182 0xffff, /* dst_mask */
183 FALSE), /* pcrel_offset */
184
185 HOWTO (R_TILEPRO_COPY, /* type */
186 0, /* rightshift */
187 0, /* size (0 = byte, 1 = short, 2 = long) */
188 0, /* bitsize */
189 FALSE, /* pc_relative */
190 0, /* bitpos */
191 complain_overflow_dont, /* complain_on_overflow */
192 bfd_elf_generic_reloc, /* special_function */
193 "R_TILEPRO_COPY", /* name */
194 FALSE, /* partial_inplace */
195 0, /* src_mask */
196 0, /* dst_mask */
197 TRUE), /* pcrel_offset */
198
199 HOWTO (R_TILEPRO_GLOB_DAT, /* type */
200 0, /* rightshift */
201 0, /* size (0 = byte, 1 = short, 2 = long) */
202 0, /* bitsize */
203 FALSE, /* pc_relative */
204 0, /* bitpos */
205 complain_overflow_dont, /* complain_on_overflow */
206 bfd_elf_generic_reloc, /* special_function */
207 "R_TILEPRO_GLOB_DAT", /* name */
208 FALSE, /* partial_inplace */
209 0, /* src_mask */
210 0, /* dst_mask */
211 TRUE), /* pcrel_offset */
212
213 HOWTO (R_TILEPRO_JMP_SLOT, /* type */
214 0, /* rightshift */
215 0, /* size (0 = byte, 1 = short, 2 = long) */
216 0, /* bitsize */
217 FALSE, /* pc_relative */
218 0, /* bitpos */
219 complain_overflow_dont, /* complain_on_overflow */
220 bfd_elf_generic_reloc, /* special_function */
221 "R_TILEPRO_JMP_SLOT", /* name */
222 FALSE, /* partial_inplace */
223 0, /* src_mask */
224 0, /* dst_mask */
225 TRUE), /* pcrel_offset */
226
227 HOWTO (R_TILEPRO_RELATIVE, /* type */
228 0, /* rightshift */
229 0, /* size (0 = byte, 1 = short, 2 = long) */
230 0, /* bitsize */
231 FALSE, /* pc_relative */
232 0, /* bitpos */
233 complain_overflow_dont, /* complain_on_overflow */
234 bfd_elf_generic_reloc, /* special_function */
235 "R_TILEPRO_RELATIVE", /* name */
236 FALSE, /* partial_inplace */
237 0, /* src_mask */
238 0, /* dst_mask */
239 TRUE), /* pcrel_offset */
240
241 HOWTO (R_TILEPRO_BROFF_X1, /* type */
242 TILEPRO_LOG2_BUNDLE_ALIGNMENT_IN_BYTES, /* rightshift */
243 2, /* size (0 = byte, 1 = short, 2 = long) */
244 17, /* bitsize */
245 TRUE, /* pc_relative */
246 0, /* bitpos */
247 complain_overflow_signed, /* complain_on_overflow */
248 bfd_elf_generic_reloc, /* special_function */
249 "R_TILEPRO_BROFF_X1", /* name */
250 FALSE, /* partial_inplace */
251 0, /* src_mask */
252 -1, /* dst_mask */
253 TRUE), /* pcrel_offset */
254
255 HOWTO (R_TILEPRO_JOFFLONG_X1, /* type */
256 TILEPRO_LOG2_BUNDLE_ALIGNMENT_IN_BYTES, /* rightshift */
257 2, /* size (0 = byte, 1 = short, 2 = long) */
258 29, /* bitsize */
259 TRUE, /* pc_relative */
260 0, /* bitpos */
261 complain_overflow_signed,/* complain_on_overflow */
262 bfd_elf_generic_reloc, /* special_function */
263 "R_TILEPRO_JOFFLONG_X1", /* name */
264 FALSE, /* partial_inplace */
265 0, /* src_mask */
266 -1, /* dst_mask */
07d6d2b8 267 TRUE), /* pcrel_offset */
aa137e4d
NC
268
269 HOWTO (R_TILEPRO_JOFFLONG_X1_PLT, /* type */
270 TILEPRO_LOG2_BUNDLE_ALIGNMENT_IN_BYTES, /* rightshift */
271 2, /* size (0 = byte, 1 = short, 2 = long) */
272 29, /* bitsize */
273 TRUE, /* pc_relative */
274 0, /* bitpos */
275 complain_overflow_signed,/* complain_on_overflow */
276 bfd_elf_generic_reloc, /* special_function */
277 "R_TILEPRO_JOFFLONG_X1_PLT", /* name */
278 FALSE, /* partial_inplace */
279 0, /* src_mask */
280 -1, /* dst_mask */
07d6d2b8 281 TRUE), /* pcrel_offset */
aa137e4d
NC
282
283#define TILEPRO_IMM_HOWTO(name, size, bitsize) \
284 HOWTO (name, 0, size, bitsize, FALSE, 0, \
07d6d2b8
AM
285 complain_overflow_signed, bfd_elf_generic_reloc, \
286 #name, FALSE, 0, -1, FALSE)
aa137e4d
NC
287
288#define TILEPRO_UIMM_HOWTO(name, size, bitsize) \
289 HOWTO (name, 0, size, bitsize, FALSE, 0, \
07d6d2b8
AM
290 complain_overflow_unsigned, bfd_elf_generic_reloc, \
291 #name, FALSE, 0, -1, FALSE)
aa137e4d
NC
292
293 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_X0, 0, 8),
294 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_Y0, 0, 8),
295 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_X1, 0, 8),
296 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_Y1, 0, 8),
297 TILEPRO_UIMM_HOWTO(R_TILEPRO_MT_IMM15_X1, 1, 15),
298 TILEPRO_UIMM_HOWTO(R_TILEPRO_MF_IMM15_X1, 1, 15),
299 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM16_X0, 1, 16),
300 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM16_X1, 1, 16),
301
302#define TILEPRO_IMM16_HOWTO(name, rshift) \
303 HOWTO (name, rshift, 1, 16, FALSE, 0, \
07d6d2b8
AM
304 complain_overflow_dont, bfd_elf_generic_reloc, \
305 #name, FALSE, 0, 0xffff, FALSE)
aa137e4d
NC
306
307 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_LO, 0),
308 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_LO, 0),
309 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_HI, 16),
310 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_HI, 16),
311 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_HA, 16),
312 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_HA, 16),
313
314 /* PC-relative offsets. */
315
316 HOWTO (R_TILEPRO_IMM16_X0_PCREL, /* type */
317 0, /* rightshift */
318 1, /* size (0 = byte, 1 = short, 2 = long) */
319 16, /* bitsize */
320 TRUE, /* pc_relative */
321 0, /* bitpos */
322 complain_overflow_signed, /* complain_on_overflow */
323 bfd_elf_generic_reloc, /* special_function */
324 "R_TILEPRO_IMM16_X0_PCREL",/* name */
325 FALSE, /* partial_inplace */
326 0, /* src_mask */
327 -1, /* dst_mask */
328 TRUE), /* pcrel_offset */
329
330 HOWTO (R_TILEPRO_IMM16_X1_PCREL, /* type */
331 0, /* rightshift */
332 1, /* size (0 = byte, 1 = short, 2 = long) */
333 16, /* bitsize */
334 TRUE, /* pc_relative */
335 0, /* bitpos */
336 complain_overflow_signed, /* complain_on_overflow */
337 bfd_elf_generic_reloc, /* special_function */
338 "R_TILEPRO_IMM16_X1_PCREL",/* name */
339 FALSE, /* partial_inplace */
340 0, /* src_mask */
341 -1, /* dst_mask */
342 TRUE), /* pcrel_offset */
343
344#define TILEPRO_IMM16_HOWTO_PCREL(name, rshift) \
345 HOWTO (name, rshift, 1, 16, TRUE, 0, \
07d6d2b8
AM
346 complain_overflow_dont, bfd_elf_generic_reloc, \
347 #name, FALSE, 0, 0xffff, TRUE)
aa137e4d
NC
348
349 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X0_LO_PCREL, 0),
350 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X1_LO_PCREL, 0),
351 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X0_HI_PCREL, 16),
352 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X1_HI_PCREL, 16),
353 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X0_HA_PCREL, 16),
354 TILEPRO_IMM16_HOWTO_PCREL (R_TILEPRO_IMM16_X1_HA_PCREL, 16),
355
356 /* Byte offset into GOT for a particular symbol. */
357 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM16_X0_GOT, 1, 16),
358 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM16_X1_GOT, 1, 16),
359 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_GOT_LO, 0),
360 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_GOT_LO, 0),
361 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_GOT_HI, 16),
362 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_GOT_HI, 16),
363 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_GOT_HA, 16),
364 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_GOT_HA, 16),
365
366 TILEPRO_UIMM_HOWTO(R_TILEPRO_MMSTART_X0, 0, 5),
367 TILEPRO_UIMM_HOWTO(R_TILEPRO_MMEND_X0, 0, 5),
368 TILEPRO_UIMM_HOWTO(R_TILEPRO_MMSTART_X1, 0, 5),
369 TILEPRO_UIMM_HOWTO(R_TILEPRO_MMEND_X1, 0, 5),
370
371 TILEPRO_UIMM_HOWTO(R_TILEPRO_SHAMT_X0, 0, 5),
372 TILEPRO_UIMM_HOWTO(R_TILEPRO_SHAMT_X1, 0, 5),
373 TILEPRO_UIMM_HOWTO(R_TILEPRO_SHAMT_Y0, 0, 5),
374 TILEPRO_UIMM_HOWTO(R_TILEPRO_SHAMT_Y1, 0, 5),
375
376 TILEPRO_IMM_HOWTO(R_TILEPRO_DEST_IMM8_X1, 0, 8),
377
378 /* These relocs are currently not defined. */
379 EMPTY_HOWTO (56),
380 EMPTY_HOWTO (57),
381 EMPTY_HOWTO (58),
382 EMPTY_HOWTO (59),
6f7be959
WL
383
384 HOWTO (R_TILEPRO_TLS_GD_CALL, /* type */
385 TILEPRO_LOG2_BUNDLE_ALIGNMENT_IN_BYTES, /* rightshift */
386 2, /* size (0 = byte, 1 = short, 2 = long) */
387 29, /* bitsize */
388 TRUE, /* pc_relative */
389 0, /* bitpos */
390 complain_overflow_signed,/* complain_on_overflow */
391 bfd_elf_generic_reloc, /* special_function */
392 "R_TILEPRO_TLS_GD_CALL", /* name */
393 FALSE, /* partial_inplace */
394 0, /* src_mask */
395 -1, /* dst_mask */
07d6d2b8 396 TRUE), /* pcrel_offset */
6f7be959
WL
397
398 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_X0_TLS_GD_ADD, 0, 8),
399 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_X1_TLS_GD_ADD, 0, 8),
400 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_Y0_TLS_GD_ADD, 0, 8),
401 TILEPRO_IMM_HOWTO(R_TILEPRO_IMM8_Y1_TLS_GD_ADD, 0, 8),
402 TILEPRO_IMM_HOWTO(R_TILEPRO_TLS_IE_LOAD, 0, 8),
aa137e4d
NC
403
404 /* Offsets into the GOT of TLS Descriptors. */
405
406 HOWTO (R_TILEPRO_IMM16_X0_TLS_GD,/* type */
407 0, /* rightshift */
408 1, /* size (0 = byte, 1 = short, 2 = long) */
409 16, /* bitsize */
410 FALSE, /* pc_relative */
411 0, /* bitpos */
412 complain_overflow_signed, /* complain_on_overflow */
413 bfd_elf_generic_reloc, /* special_function */
414 "R_TILEPRO_IMM16_X0_TLS_GD",/* name */
415 FALSE, /* partial_inplace */
416 0, /* src_mask */
417 0xffff, /* dst_mask */
418 FALSE), /* pcrel_offset */
419
420 HOWTO (R_TILEPRO_IMM16_X1_TLS_GD,/* type */
421 0, /* rightshift */
422 1, /* size (0 = byte, 1 = short, 2 = long) */
423 16, /* bitsize */
424 FALSE, /* pc_relative */
425 0, /* bitpos */
426 complain_overflow_signed, /* complain_on_overflow */
427 bfd_elf_generic_reloc, /* special_function */
428 "R_TILEPRO_IMM16_X1_TLS_GD",/* name */
429 FALSE, /* partial_inplace */
430 0, /* src_mask */
431 0xffff, /* dst_mask */
432 FALSE), /* pcrel_offset */
433
434 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_GD_LO, 0),
435 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_GD_LO, 0),
436 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_GD_HI, 16),
437 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_GD_HI, 16),
438 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_GD_HA, 16),
439 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_GD_HA, 16),
440
441 /* Offsets into the GOT of TLS Descriptors. */
442
443 HOWTO (R_TILEPRO_IMM16_X0_TLS_IE,/* type */
444 0, /* rightshift */
445 1, /* size (0 = byte, 1 = short, 2 = long) */
446 16, /* bitsize */
447 FALSE, /* pc_relative */
448 0, /* bitpos */
449 complain_overflow_signed, /* complain_on_overflow */
450 bfd_elf_generic_reloc, /* special_function */
451 "R_TILEPRO_IMM16_X0_TLS_IE",/* name */
452 FALSE, /* partial_inplace */
453 0, /* src_mask */
454 -1, /* dst_mask */
455 TRUE), /* pcrel_offset */
456
457 HOWTO (R_TILEPRO_IMM16_X1_TLS_IE,/* type */
458 0, /* rightshift */
459 1, /* size (0 = byte, 1 = short, 2 = long) */
460 16, /* bitsize */
461 FALSE, /* pc_relative */
462 0, /* bitpos */
463 complain_overflow_signed, /* complain_on_overflow */
464 bfd_elf_generic_reloc, /* special_function */
465 "R_TILEPRO_IMM16_X1_TLS_IE",/* name */
466 FALSE, /* partial_inplace */
467 0, /* src_mask */
468 -1, /* dst_mask */
469 TRUE), /* pcrel_offset */
470
6f7be959
WL
471 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_IE_LO, 0),
472 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_IE_LO, 0),
473 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_IE_HI, 16),
474 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_IE_HI, 16),
475 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_IE_HA, 16),
476 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_IE_HA, 16),
aa137e4d
NC
477
478 /* These are common with the Solaris TLS implementation. */
479 HOWTO(R_TILEPRO_TLS_DTPMOD32, 0, 0, 0, FALSE, 0, complain_overflow_dont,
07d6d2b8
AM
480 bfd_elf_generic_reloc, "R_TILEPRO_TLS_DTPMOD32",
481 FALSE, 0, 0, TRUE),
aa137e4d 482 HOWTO(R_TILEPRO_TLS_DTPOFF32, 0, 2, 32, FALSE, 0, complain_overflow_bitfield,
07d6d2b8
AM
483 bfd_elf_generic_reloc, "R_TILEPRO_TLS_DTPOFF32",
484 FALSE, 0, 0xFFFFFFFF, TRUE),
aa137e4d 485 HOWTO(R_TILEPRO_TLS_TPOFF32, 0, 0, 0, FALSE, 0, complain_overflow_dont,
07d6d2b8
AM
486 bfd_elf_generic_reloc, "R_TILEPRO_TLS_TPOFF32",
487 FALSE, 0, 0, TRUE),
aa137e4d 488
6f7be959
WL
489 HOWTO (R_TILEPRO_IMM16_X0_TLS_LE,/* type */
490 0, /* rightshift */
491 1, /* size (0 = byte, 1 = short, 2 = long) */
492 16, /* bitsize */
493 FALSE, /* pc_relative */
494 0, /* bitpos */
495 complain_overflow_signed, /* complain_on_overflow */
496 bfd_elf_generic_reloc, /* special_function */
497 "R_TILEPRO_IMM16_X0_TLS_LE",/* name */
498 FALSE, /* partial_inplace */
499 0, /* src_mask */
500 -1, /* dst_mask */
501 TRUE), /* pcrel_offset */
502
503 HOWTO (R_TILEPRO_IMM16_X1_TLS_LE,/* type */
504 0, /* rightshift */
505 1, /* size (0 = byte, 1 = short, 2 = long) */
506 16, /* bitsize */
507 FALSE, /* pc_relative */
508 0, /* bitpos */
509 complain_overflow_signed, /* complain_on_overflow */
510 bfd_elf_generic_reloc, /* special_function */
511 "R_TILEPRO_IMM16_X1_TLS_LE",/* name */
512 FALSE, /* partial_inplace */
513 0, /* src_mask */
514 -1, /* dst_mask */
515 TRUE), /* pcrel_offset */
516
517 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_LE_LO, 0),
518 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_LE_LO, 0),
519 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_LE_HI, 16),
520 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_LE_HI, 16),
521 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X0_TLS_LE_HA, 16),
522 TILEPRO_IMM16_HOWTO (R_TILEPRO_IMM16_X1_TLS_LE_HA, 16),
aa137e4d
NC
523};
524
525static reloc_howto_type tilepro_elf_howto_table2 [] =
526{
527 /* GNU extension to record C++ vtable hierarchy */
528 HOWTO (R_TILEPRO_GNU_VTINHERIT, /* type */
07d6d2b8
AM
529 0, /* rightshift */
530 2, /* size (0 = byte, 1 = short, 2 = long) */
531 0, /* bitsize */
532 FALSE, /* pc_relative */
533 0, /* bitpos */
534 complain_overflow_dont, /* complain_on_overflow */
535 NULL, /* special_function */
536 "R_TILEPRO_GNU_VTINHERIT", /* name */
537 FALSE, /* partial_inplace */
538 0, /* src_mask */
539 0, /* dst_mask */
540 FALSE), /* pcrel_offset */
aa137e4d
NC
541
542 /* GNU extension to record C++ vtable member usage */
07d6d2b8
AM
543 HOWTO (R_TILEPRO_GNU_VTENTRY, /* type */
544 0, /* rightshift */
545 2, /* size (0 = byte, 1 = short, 2 = long) */
546 0, /* bitsize */
547 FALSE, /* pc_relative */
548 0, /* bitpos */
549 complain_overflow_dont, /* complain_on_overflow */
550 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
551 "R_TILEPRO_GNU_VTENTRY", /* name */
552 FALSE, /* partial_inplace */
553 0, /* src_mask */
554 0, /* dst_mask */
555 FALSE), /* pcrel_offset */
aa137e4d
NC
556
557};
558\f
559/* Map BFD reloc types to TILEPRO ELF reloc types. */
560
561typedef struct tilepro_reloc_map
562{
563 bfd_reloc_code_real_type bfd_reloc_val;
07d6d2b8
AM
564 unsigned int tilepro_reloc_val;
565 reloc_howto_type * table;
aa137e4d
NC
566} reloc_map;
567
568static const reloc_map tilepro_reloc_map [] =
569{
570#define TH_REMAP(bfd, tilepro) \
571 { bfd, tilepro, tilepro_elf_howto_table },
572
573 /* Standard relocations. */
07d6d2b8
AM
574 TH_REMAP (BFD_RELOC_NONE, R_TILEPRO_NONE)
575 TH_REMAP (BFD_RELOC_32, R_TILEPRO_32)
576 TH_REMAP (BFD_RELOC_16, R_TILEPRO_16)
577 TH_REMAP (BFD_RELOC_8, R_TILEPRO_8)
578 TH_REMAP (BFD_RELOC_32_PCREL, R_TILEPRO_32_PCREL)
579 TH_REMAP (BFD_RELOC_16_PCREL, R_TILEPRO_16_PCREL)
580 TH_REMAP (BFD_RELOC_8_PCREL, R_TILEPRO_8_PCREL)
581 TH_REMAP (BFD_RELOC_LO16, R_TILEPRO_LO16)
582 TH_REMAP (BFD_RELOC_HI16, R_TILEPRO_HI16)
583 TH_REMAP (BFD_RELOC_HI16_S, R_TILEPRO_HA16)
aa137e4d
NC
584
585 /* Custom relocations. */
07d6d2b8
AM
586 TH_REMAP (BFD_RELOC_TILEPRO_COPY, R_TILEPRO_COPY)
587 TH_REMAP (BFD_RELOC_TILEPRO_GLOB_DAT, R_TILEPRO_GLOB_DAT)
588 TH_REMAP (BFD_RELOC_TILEPRO_JMP_SLOT, R_TILEPRO_JMP_SLOT)
589 TH_REMAP (BFD_RELOC_TILEPRO_RELATIVE, R_TILEPRO_RELATIVE)
590 TH_REMAP (BFD_RELOC_TILEPRO_BROFF_X1, R_TILEPRO_BROFF_X1)
aa137e4d
NC
591 TH_REMAP (BFD_RELOC_TILEPRO_JOFFLONG_X1, R_TILEPRO_JOFFLONG_X1)
592 TH_REMAP (BFD_RELOC_TILEPRO_JOFFLONG_X1_PLT, R_TILEPRO_JOFFLONG_X1_PLT)
07d6d2b8
AM
593 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_X0, R_TILEPRO_IMM8_X0)
594 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_Y0, R_TILEPRO_IMM8_Y0)
595 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_X1, R_TILEPRO_IMM8_X1)
596 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_Y1, R_TILEPRO_IMM8_Y1)
aa137e4d
NC
597 TH_REMAP (BFD_RELOC_TILEPRO_DEST_IMM8_X1, R_TILEPRO_DEST_IMM8_X1)
598 TH_REMAP (BFD_RELOC_TILEPRO_MT_IMM15_X1, R_TILEPRO_MT_IMM15_X1)
599 TH_REMAP (BFD_RELOC_TILEPRO_MF_IMM15_X1, R_TILEPRO_MF_IMM15_X1)
07d6d2b8
AM
600 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0, R_TILEPRO_IMM16_X0)
601 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1, R_TILEPRO_IMM16_X1)
aa137e4d
NC
602 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_LO, R_TILEPRO_IMM16_X0_LO)
603 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_LO, R_TILEPRO_IMM16_X1_LO)
604 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_HI, R_TILEPRO_IMM16_X0_HI)
605 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_HI, R_TILEPRO_IMM16_X1_HI)
606 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_HA, R_TILEPRO_IMM16_X0_HA)
607 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_HA, R_TILEPRO_IMM16_X1_HA)
608
07d6d2b8
AM
609 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_PCREL, R_TILEPRO_IMM16_X0_PCREL)
610 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_PCREL, R_TILEPRO_IMM16_X1_PCREL)
aa137e4d
NC
611 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_LO_PCREL, R_TILEPRO_IMM16_X0_LO_PCREL)
612 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_LO_PCREL, R_TILEPRO_IMM16_X1_LO_PCREL)
613 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_HI_PCREL, R_TILEPRO_IMM16_X0_HI_PCREL)
614 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_HI_PCREL, R_TILEPRO_IMM16_X1_HI_PCREL)
615 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_HA_PCREL, R_TILEPRO_IMM16_X0_HA_PCREL)
616 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_HA_PCREL, R_TILEPRO_IMM16_X1_HA_PCREL)
617
618 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_GOT, R_TILEPRO_IMM16_X0_GOT)
619 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_GOT, R_TILEPRO_IMM16_X1_GOT)
620 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_GOT_LO, R_TILEPRO_IMM16_X0_GOT_LO)
621 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_GOT_LO, R_TILEPRO_IMM16_X1_GOT_LO)
622 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_GOT_HI, R_TILEPRO_IMM16_X0_GOT_HI)
623 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_GOT_HI, R_TILEPRO_IMM16_X1_GOT_HI)
624 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_GOT_HA, R_TILEPRO_IMM16_X0_GOT_HA)
625 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_GOT_HA, R_TILEPRO_IMM16_X1_GOT_HA)
626
627 TH_REMAP (BFD_RELOC_TILEPRO_MMSTART_X0, R_TILEPRO_MMSTART_X0)
07d6d2b8 628 TH_REMAP (BFD_RELOC_TILEPRO_MMEND_X0, R_TILEPRO_MMEND_X0)
aa137e4d 629 TH_REMAP (BFD_RELOC_TILEPRO_MMSTART_X1, R_TILEPRO_MMSTART_X1)
07d6d2b8
AM
630 TH_REMAP (BFD_RELOC_TILEPRO_MMEND_X1, R_TILEPRO_MMEND_X1)
631 TH_REMAP (BFD_RELOC_TILEPRO_SHAMT_X0, R_TILEPRO_SHAMT_X0)
632 TH_REMAP (BFD_RELOC_TILEPRO_SHAMT_X1, R_TILEPRO_SHAMT_X1)
633 TH_REMAP (BFD_RELOC_TILEPRO_SHAMT_Y0, R_TILEPRO_SHAMT_Y0)
634 TH_REMAP (BFD_RELOC_TILEPRO_SHAMT_Y1, R_TILEPRO_SHAMT_Y1)
aa137e4d 635
07d6d2b8 636 TH_REMAP (BFD_RELOC_TILEPRO_TLS_GD_CALL, R_TILEPRO_TLS_GD_CALL)
6f7be959
WL
637 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_X0_TLS_GD_ADD, R_TILEPRO_IMM8_X0_TLS_GD_ADD)
638 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_X1_TLS_GD_ADD, R_TILEPRO_IMM8_X1_TLS_GD_ADD)
639 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_Y0_TLS_GD_ADD, R_TILEPRO_IMM8_Y0_TLS_GD_ADD)
640 TH_REMAP (BFD_RELOC_TILEPRO_IMM8_Y1_TLS_GD_ADD, R_TILEPRO_IMM8_Y1_TLS_GD_ADD)
07d6d2b8 641 TH_REMAP (BFD_RELOC_TILEPRO_TLS_IE_LOAD, R_TILEPRO_TLS_IE_LOAD)
6f7be959 642
07d6d2b8
AM
643 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD, R_TILEPRO_IMM16_X0_TLS_GD)
644 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD, R_TILEPRO_IMM16_X1_TLS_GD)
aa137e4d
NC
645 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_LO, R_TILEPRO_IMM16_X0_TLS_GD_LO)
646 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_LO, R_TILEPRO_IMM16_X1_TLS_GD_LO)
647 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HI, R_TILEPRO_IMM16_X0_TLS_GD_HI)
648 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HI, R_TILEPRO_IMM16_X1_TLS_GD_HI)
649 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_GD_HA, R_TILEPRO_IMM16_X0_TLS_GD_HA)
650 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_GD_HA, R_TILEPRO_IMM16_X1_TLS_GD_HA)
651
07d6d2b8
AM
652 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE, R_TILEPRO_IMM16_X0_TLS_IE)
653 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE, R_TILEPRO_IMM16_X1_TLS_IE)
aa137e4d
NC
654 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_LO, R_TILEPRO_IMM16_X0_TLS_IE_LO)
655 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_LO, R_TILEPRO_IMM16_X1_TLS_IE_LO)
656 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HI, R_TILEPRO_IMM16_X0_TLS_IE_HI)
657 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HI, R_TILEPRO_IMM16_X1_TLS_IE_HI)
658 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_IE_HA, R_TILEPRO_IMM16_X0_TLS_IE_HA)
659 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_IE_HA, R_TILEPRO_IMM16_X1_TLS_IE_HA)
660
661 TH_REMAP (BFD_RELOC_TILEPRO_TLS_DTPMOD32, R_TILEPRO_TLS_DTPMOD32)
662 TH_REMAP (BFD_RELOC_TILEPRO_TLS_DTPOFF32, R_TILEPRO_TLS_DTPOFF32)
663 TH_REMAP (BFD_RELOC_TILEPRO_TLS_TPOFF32, R_TILEPRO_TLS_TPOFF32)
664
07d6d2b8
AM
665 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE, R_TILEPRO_IMM16_X0_TLS_LE)
666 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE, R_TILEPRO_IMM16_X1_TLS_LE)
6f7be959
WL
667 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_LO, R_TILEPRO_IMM16_X0_TLS_LE_LO)
668 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_LO, R_TILEPRO_IMM16_X1_TLS_LE_LO)
669 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HI, R_TILEPRO_IMM16_X0_TLS_LE_HI)
670 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HI, R_TILEPRO_IMM16_X1_TLS_LE_HI)
671 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X0_TLS_LE_HA, R_TILEPRO_IMM16_X0_TLS_LE_HA)
672 TH_REMAP (BFD_RELOC_TILEPRO_IMM16_X1_TLS_LE_HA, R_TILEPRO_IMM16_X1_TLS_LE_HA)
673
aa137e4d
NC
674#undef TH_REMAP
675
676 { BFD_RELOC_VTABLE_INHERIT, R_TILEPRO_GNU_VTINHERIT, tilepro_elf_howto_table2 },
677 { BFD_RELOC_VTABLE_ENTRY, R_TILEPRO_GNU_VTENTRY, tilepro_elf_howto_table2 },
678};
679
680
681
aa137e4d
NC
682/* TILEPRO ELF linker hash entry. */
683
684struct tilepro_elf_link_hash_entry
685{
686 struct elf_link_hash_entry elf;
687
aa137e4d
NC
688#define GOT_UNKNOWN 0
689#define GOT_NORMAL 1
690#define GOT_TLS_GD 2
691#define GOT_TLS_IE 4
692 unsigned char tls_type;
693};
694
695#define tilepro_elf_hash_entry(ent) \
696 ((struct tilepro_elf_link_hash_entry *)(ent))
697
698struct _bfd_tilepro_elf_obj_tdata
699{
700 struct elf_obj_tdata root;
701
702 /* tls_type for each local got entry. */
703 char *local_got_tls_type;
704};
705
706#define _bfd_tilepro_elf_tdata(abfd) \
707 ((struct _bfd_tilepro_elf_obj_tdata *) (abfd)->tdata.any)
708
709#define _bfd_tilepro_elf_local_got_tls_type(abfd) \
710 (_bfd_tilepro_elf_tdata (abfd)->local_got_tls_type)
711
712#define is_tilepro_elf(bfd) \
713 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
714 && elf_tdata (bfd) != NULL \
715 && elf_object_id (bfd) == TILEPRO_ELF_DATA)
716
a412bee5
MR
717/* Allocate TILEPro ELF private object data. */
718
719static bfd_boolean
720tilepro_elf_mkobject (bfd *abfd)
721{
722 return bfd_elf_allocate_object (abfd,
723 sizeof (struct _bfd_tilepro_elf_obj_tdata),
724 TILEPRO_ELF_DATA);
725}
726
aa137e4d
NC
727#include "elf/common.h"
728#include "elf/internal.h"
729
730struct tilepro_elf_link_hash_table
731{
732 struct elf_link_hash_table elf;
733
aa137e4d
NC
734 /* Small local sym to section mapping cache. */
735 struct sym_cache sym_cache;
736};
737
738/* Get the Tilepro ELF linker hash table from a link_info structure. */
739#define tilepro_elf_hash_table(p) \
740 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
741 == TILEPRO_ELF_DATA \
742 ? ((struct tilepro_elf_link_hash_table *) ((p)->hash)) : NULL)
743
744static reloc_howto_type *
745tilepro_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
07d6d2b8 746 bfd_reloc_code_real_type code)
aa137e4d
NC
747{
748 unsigned int i;
749
0ba38529 750 for (i = ARRAY_SIZE (tilepro_reloc_map); i--;)
aa137e4d
NC
751 {
752 const reloc_map * entry;
753
754 entry = tilepro_reloc_map + i;
755
756 if (entry->bfd_reloc_val == code)
757 return entry->table + (entry->tilepro_reloc_val
758 - entry->table[0].type);
759 }
760
761 return NULL;
762}
763
764static reloc_howto_type *
765tilepro_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
766 const char *r_name)
767{
768 unsigned int i;
769
770 for (i = 0;
771 i < (sizeof (tilepro_elf_howto_table)
07d6d2b8 772 / sizeof (tilepro_elf_howto_table[0]));
aa137e4d
NC
773 i++)
774 if (tilepro_elf_howto_table[i].name != NULL
07d6d2b8 775 && strcasecmp (tilepro_elf_howto_table[i].name, r_name) == 0)
aa137e4d
NC
776 return &tilepro_elf_howto_table[i];
777
778 return NULL;
779}
780
781/* Set the howto pointer for an TILEPro ELF reloc. */
782
f3185997 783static bfd_boolean
aa137e4d 784tilepro_info_to_howto_rela (bfd * abfd ATTRIBUTE_UNUSED,
07d6d2b8
AM
785 arelent * cache_ptr,
786 Elf_Internal_Rela * dst)
aa137e4d
NC
787{
788 unsigned int r_type = ELF32_R_TYPE (dst->r_info);
789
6f7be959 790 if (r_type <= (unsigned int) R_TILEPRO_IMM16_X1_TLS_LE_HA)
aa137e4d
NC
791 cache_ptr->howto = &tilepro_elf_howto_table [r_type];
792 else if (r_type - R_TILEPRO_GNU_VTINHERIT
f3185997
NC
793 <= ((unsigned int) R_TILEPRO_GNU_VTENTRY
794 - (unsigned int) R_TILEPRO_GNU_VTINHERIT))
aa137e4d
NC
795 cache_ptr->howto
796 = &tilepro_elf_howto_table2 [r_type - R_TILEPRO_GNU_VTINHERIT];
797 else
f3185997
NC
798 {
799 /* xgettext:c-format */
800 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
801 abfd, r_type);
802 bfd_set_error (bfd_error_bad_value);
803 return FALSE;
804 }
805 return TRUE;
aa137e4d
NC
806}
807
808typedef tilepro_bundle_bits (*tilepro_create_func)(int);
809
810static const tilepro_create_func reloc_to_create_func[] =
811{
812 /* The first fourteen relocation types don't correspond to operands */
813 NULL,
814 NULL,
815 NULL,
816 NULL,
817 NULL,
818 NULL,
819 NULL,
820 NULL,
821 NULL,
822 NULL,
823 NULL,
824 NULL,
825 NULL,
826 NULL,
827
828 /* The remaining relocations are used for immediate operands */
829 create_BrOff_X1,
830 create_JOffLong_X1,
831 create_JOffLong_X1,
832 create_Imm8_X0,
833 create_Imm8_Y0,
834 create_Imm8_X1,
835 create_Imm8_Y1,
836 create_MT_Imm15_X1,
837 create_MF_Imm15_X1,
838 create_Imm16_X0,
839 create_Imm16_X1,
840 create_Imm16_X0,
841 create_Imm16_X1,
842 create_Imm16_X0,
843 create_Imm16_X1,
844 create_Imm16_X0,
845 create_Imm16_X1,
846 create_Imm16_X0,
847 create_Imm16_X1,
848 create_Imm16_X0,
849 create_Imm16_X1,
850 create_Imm16_X0,
851 create_Imm16_X1,
852 create_Imm16_X0,
853 create_Imm16_X1,
854 create_Imm16_X0,
855 create_Imm16_X1,
856 create_Imm16_X0,
857 create_Imm16_X1,
858 create_Imm16_X0,
859 create_Imm16_X1,
860 create_Imm16_X0,
861 create_Imm16_X1,
862 create_MMStart_X0,
863 create_MMEnd_X0,
864 create_MMStart_X1,
865 create_MMEnd_X1,
866 create_ShAmt_X0,
867 create_ShAmt_X1,
868 create_ShAmt_Y0,
869 create_ShAmt_Y1,
870
871 create_Dest_Imm8_X1,
872 NULL,
873 NULL,
874 NULL,
875 NULL,
876 NULL,
877 NULL,
878 NULL,
879 NULL,
880 NULL,
881 NULL,
882
883 create_Imm16_X0,
884 create_Imm16_X1,
885 create_Imm16_X0,
886 create_Imm16_X1,
887 create_Imm16_X0,
888 create_Imm16_X1,
889 create_Imm16_X0,
890 create_Imm16_X1,
891 create_Imm16_X0,
892 create_Imm16_X1,
893 create_Imm16_X0,
894 create_Imm16_X1,
895 create_Imm16_X0,
896 create_Imm16_X1,
897 create_Imm16_X0,
6f7be959
WL
898 create_Imm16_X1,
899
900 NULL,
901 NULL,
902 NULL,
903
904 create_Imm16_X0,
905 create_Imm16_X1,
906 create_Imm16_X0,
907 create_Imm16_X1,
908 create_Imm16_X0,
909 create_Imm16_X1,
910 create_Imm16_X0,
911 create_Imm16_X1,
aa137e4d
NC
912};
913
914#define NELEMS(a) ((int) (sizeof (a) / sizeof ((a)[0])))
915
916/* Support for core dump NOTE sections. */
917
918static bfd_boolean
919tilepro_elf_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
920{
921 int offset;
922 size_t size;
923
924 if (note->descsz != TILEPRO_PRSTATUS_SIZEOF)
925 return FALSE;
926
927 /* pr_cursig */
228e534f 928 elf_tdata (abfd)->core->signal =
aa137e4d
NC
929 bfd_get_16 (abfd, note->descdata + TILEPRO_PRSTATUS_OFFSET_PR_CURSIG);
930
931 /* pr_pid */
228e534f 932 elf_tdata (abfd)->core->pid =
aa137e4d
NC
933 bfd_get_32 (abfd, note->descdata + TILEPRO_PRSTATUS_OFFSET_PR_PID);
934
935 /* pr_reg */
936 offset = TILEPRO_PRSTATUS_OFFSET_PR_REG;
937 size = TILEPRO_GREGSET_T_SIZE;
938
939 /* Make a ".reg/999" section. */
940 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
941 size, note->descpos + offset);
942}
943
944static bfd_boolean
945tilepro_elf_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
946{
947 if (note->descsz != TILEPRO_PRPSINFO_SIZEOF)
948 return FALSE;
949
228e534f 950 elf_tdata (abfd)->core->program
aa137e4d
NC
951 = _bfd_elfcore_strndup (abfd,
952 note->descdata + TILEPRO_PRPSINFO_OFFSET_PR_FNAME,
953 16);
228e534f 954 elf_tdata (abfd)->core->command
aa137e4d
NC
955 = _bfd_elfcore_strndup (abfd,
956 note->descdata + TILEPRO_PRPSINFO_OFFSET_PR_PSARGS,
957 ELF_PR_PSARGS_SIZE);
958
959
960 /* Note that for some reason, a spurious space is tacked
961 onto the end of the args in some (at least one anyway)
962 implementations, so strip it off if it exists. */
963 {
228e534f 964 char *command = elf_tdata (abfd)->core->command;
aa137e4d
NC
965 int n = strlen (command);
966
967 if (0 < n && command[n - 1] == ' ')
968 command[n - 1] = '\0';
969 }
970
971 return TRUE;
972}
973
974
975static void
976tilepro_elf_append_rela_32 (bfd *abfd, asection *s, Elf_Internal_Rela *rel)
977{
978 Elf32_External_Rela *loc32;
979
980 loc32 = (Elf32_External_Rela *) s->contents;
981 loc32 += s->reloc_count++;
982 bfd_elf32_swap_reloca_out (abfd, rel, (bfd_byte *) loc32);
983}
984
985/* PLT/GOT stuff */
986
987/* The procedure linkage table starts with the following header:
988
989 {
07d6d2b8 990 rli r29, r29, 16
aa137e4d
NC
991 lwadd r28, r27, 4
992 }
07d6d2b8 993 lw r27, r27
aa137e4d 994 {
07d6d2b8
AM
995 info 10 ## SP not offset, return PC in LR
996 jr r27
aa137e4d
NC
997 }
998
999 Subsequent entries are the following, jumping to the header at the end:
1000
07d6d2b8 1001 lnk r28
aa137e4d
NC
10021:
1003 {
1004 auli r28, r28, <_GLOBAL_OFFSET_TABLE_ - 1b + MY_GOT_OFFSET>
1005 auli r27, r28, <_GLOBAL_OFFSET_TABLE_ - 1b>
1006 }
1007 {
1008 addli r28, r28, <_GLOBAL_OFFSET_TABLE_ - 1b + MY_GOT_OFFSET>
1009 addli r27, r27, <_GLOBAL_OFFSET_TABLE_ - 1b>
1010 }
1011 {
1012 auli r29, zero, MY_PLT_INDEX
07d6d2b8 1013 lw r28, r28
aa137e4d
NC
1014 }
1015 {
07d6d2b8
AM
1016 info 10 ## SP not offset, return PC in LR
1017 jr r28
aa137e4d
NC
1018 }
1019
1020 We initially store MY_PLT_INDEX in the high bits so that we can use the all
1021 16 bits as an unsigned offset; if we use the low bits we would get an
1022 unwanted sign extension. The PLT header then rotates the index to get the
1023 right value, before calling the resolution routine. This computation can
1024 fit in unused bundle slots so it's free.
1025
1026 This code sequence lets the code at at the start of the PLT determine
1027 which PLT entry was executed by examining 'r29'.
1028
1029 Note that MY_PLT_INDEX skips over the header entries, so the first
1030 actual jump table entry has index zero.
1031*/
1032
1033#define PLT_HEADER_SIZE_IN_BUNDLES 3
1034#define PLT_ENTRY_SIZE_IN_BUNDLES 5
1035
1036#define PLT_HEADER_SIZE \
1037 (PLT_HEADER_SIZE_IN_BUNDLES * TILEPRO_BUNDLE_SIZE_IN_BYTES)
1038#define PLT_ENTRY_SIZE \
1039 (PLT_ENTRY_SIZE_IN_BUNDLES * TILEPRO_BUNDLE_SIZE_IN_BYTES)
1040
1041/* The size in bytes of an entry in the global offset table. */
1042
1043#define GOT_ENTRY_SIZE TILEPRO_BYTES_PER_WORD
1044
1045#define GOTPLT_HEADER_SIZE (2 * GOT_ENTRY_SIZE)
1046
1047
1048static const bfd_byte
1049tilepro_plt0_entry[PLT_HEADER_SIZE] =
1050{
1051 0x5d, 0x07, 0x03, 0x70,
1052 0x6e, 0x23, 0xd0, 0x30, /* { rli r29, r29, 16 ; lwadd r28, r27, 4 } */
1053 0x00, 0x50, 0xba, 0x6d,
1054 0x00, 0x08, 0x6d, 0xdc, /* { lw r27, r27 } */
1055 0xff, 0xaf, 0x10, 0x50,
1056 0x60, 0x03, 0x18, 0x08, /* { info 10 ; jr r27 } */
1057};
1058
1059static const bfd_byte
1060tilepro_short_plt_entry[PLT_ENTRY_SIZE] =
1061{
1062 0x00, 0x50, 0x16, 0x70,
1063 0x0e, 0x00, 0x1a, 0x08, /* { lnk r28 } */
1064 0x1c, 0x07, 0x00, 0xa0,
1065 0x8d, 0x03, 0x00, 0x18, /* { addli r28, r28, 0 ; addli r27, r28, 0 } */
1066 0xdd, 0x0f, 0x00, 0x30,
1067 0x8e, 0x73, 0x0b, 0x40, /* { auli r29, zero, 0 ; lw r28, r28 } */
1068 0xff, 0xaf, 0x10, 0x50,
1069 0x80, 0x03, 0x18, 0x08, /* { info 10 ; jr r28 } */
1070 0x00, 0x00, 0x00, 0x00,
1071 0x00, 0x00, 0x00, 0x00,
1072};
1073
1074static const bfd_byte
1075tilepro_long_plt_entry[PLT_ENTRY_SIZE] =
1076{
1077 0x00, 0x50, 0x16, 0x70,
1078 0x0e, 0x00, 0x1a, 0x08, /* { lnk r28 } */
1079 0x1c, 0x07, 0x00, 0xb0,
1080 0x8d, 0x03, 0x00, 0x20, /* { auli r28, r28, 0 ; auli r27, r28, 0 } */
1081 0x1c, 0x07, 0x00, 0xa0,
1082 0x6d, 0x03, 0x00, 0x18, /* { addli r28, r28, 0 ; addli r27, r27, 0 } */
1083 0xdd, 0x0f, 0x00, 0x30,
1084 0x8e, 0x73, 0x0b, 0x40, /* { auli r29, zero, 0 ; lw r28, r28 } */
1085 0xff, 0xaf, 0x10, 0x50,
1086 0x80, 0x03, 0x18, 0x08, /* { info 10 ; jr r28 } */
1087};
1088
1089static bfd_vma
1090tilepro_ha16(bfd_vma vma)
1091{
1092 return ((vma >> 16) + ((vma >> 15) & 1)) & 0xffff;
1093}
1094
1095static int
1096tilepro_plt_entry_build (asection *splt, asection *sgotplt, bfd_vma offset,
1097 bfd_vma *r_offset)
1098{
663b5850 1099 int plt_index = (offset - PLT_ENTRY_SIZE) / PLT_ENTRY_SIZE;
aa137e4d
NC
1100 int got_offset = plt_index * GOT_ENTRY_SIZE + GOTPLT_HEADER_SIZE;
1101 tilepro_bundle_bits *pc;
1102
1103 /* Compute the distance from the got entry to the lnk. */
1104 bfd_signed_vma dist_got_entry = sgotplt->output_section->vma
1105 + sgotplt->output_offset
1106 + got_offset
1107 - splt->output_section->vma
1108 - splt->output_offset
1109 - offset
1110 - TILEPRO_BUNDLE_SIZE_IN_BYTES;
1111
1112 /* Compute the distance to GOTPLT[0]. */
1113 bfd_signed_vma dist_got0 = dist_got_entry - got_offset;
1114
1115 /* Check whether we can use the short plt entry with 16-bit offset. */
1116 bfd_boolean short_plt_entry =
1117 (dist_got_entry <= 0x7fff && dist_got0 >= -0x8000);
1118
1119 /* Copy the plt entry template. */
1120 memcpy (splt->contents + offset,
1121 short_plt_entry ? tilepro_short_plt_entry : tilepro_long_plt_entry,
1122 PLT_ENTRY_SIZE);
1123
1124 /* Write the immediate offsets. */
1125 pc = (tilepro_bundle_bits *)(splt->contents + offset);
1126 pc++;
1127
1128 if (!short_plt_entry)
1129 {
1130 /* { auli r28, r28, &GOTPLT[MY_GOT_INDEX] ; auli r27, r28, &GOTPLT[0] } */
1131 *pc++ |= create_Imm16_X0 (tilepro_ha16 (dist_got_entry))
1132 | create_Imm16_X1 (tilepro_ha16 (dist_got0));
1133 }
1134
1135 /* { addli r28, r28, &GOTPLT[MY_GOT_INDEX] ; addli r27, r28, &GOTPLT[0] } or
1136 { addli r28, r28, &GOTPLT[MY_GOT_INDEX] ; addli r27, r27, &GOTPLT[0] } */
1137 *pc++ |= create_Imm16_X0 (dist_got_entry)
1138 | create_Imm16_X1 (dist_got0);
1139
1140 /* { auli r29, zero, MY_PLT_INDEX ; lw r28, r28 } */
1141 *pc |= create_Imm16_X0 (plt_index);
1142
1143 /* Set the relocation offset. */
1144 *r_offset = got_offset;
1145
1146 return plt_index;
1147}
1148
1149#define TILEPRO_ELF_RELA_BYTES (sizeof(Elf32_External_Rela))
1150
1151
1152/* Create an entry in an TILEPro ELF linker hash table. */
1153
1154static struct bfd_hash_entry *
1155link_hash_newfunc (struct bfd_hash_entry *entry,
1156 struct bfd_hash_table *table, const char *string)
1157{
1158 /* Allocate the structure if it has not already been allocated by a
1159 subclass. */
1160 if (entry == NULL)
1161 {
1162 entry =
07d6d2b8
AM
1163 bfd_hash_allocate (table,
1164 sizeof (struct tilepro_elf_link_hash_entry));
aa137e4d
NC
1165 if (entry == NULL)
1166 return entry;
1167 }
1168
1169 /* Call the allocation method of the superclass. */
1170 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
1171 if (entry != NULL)
1172 {
1173 struct tilepro_elf_link_hash_entry *eh;
1174
1175 eh = (struct tilepro_elf_link_hash_entry *) entry;
aa137e4d
NC
1176 eh->tls_type = GOT_UNKNOWN;
1177 }
1178
1179 return entry;
1180}
1181
1182/* Create a TILEPRO ELF linker hash table. */
1183
1184static struct bfd_link_hash_table *
1185tilepro_elf_link_hash_table_create (bfd *abfd)
1186{
1187 struct tilepro_elf_link_hash_table *ret;
986f0783 1188 size_t amt = sizeof (struct tilepro_elf_link_hash_table);
aa137e4d
NC
1189
1190 ret = (struct tilepro_elf_link_hash_table *) bfd_zmalloc (amt);
1191 if (ret == NULL)
1192 return NULL;
1193
1194 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc,
1195 sizeof (struct tilepro_elf_link_hash_entry),
1196 TILEPRO_ELF_DATA))
1197 {
1198 free (ret);
1199 return NULL;
1200 }
1201
1202 return &ret->elf.root;
1203}
1204
1205/* Create the .got section. */
1206
1207static bfd_boolean
1208tilepro_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
1209{
1210 flagword flags;
1211 asection *s, *s_got;
1212 struct elf_link_hash_entry *h;
1213 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
1214 struct elf_link_hash_table *htab = elf_hash_table (info);
1215
1216 /* This function may be called more than once. */
ce558b89 1217 if (htab->sgot != NULL)
aa137e4d
NC
1218 return TRUE;
1219
1220 flags = bed->dynamic_sec_flags;
1221
1222 s = bfd_make_section_with_flags (abfd,
1223 (bed->rela_plts_and_copies_p
1224 ? ".rela.got" : ".rel.got"),
1225 (bed->dynamic_sec_flags
1226 | SEC_READONLY));
1227 if (s == NULL
fd361982 1228 || !bfd_set_section_alignment (s, bed->s->log_file_align))
aa137e4d
NC
1229 return FALSE;
1230 htab->srelgot = s;
1231
1232 s = s_got = bfd_make_section_with_flags (abfd, ".got", flags);
1233 if (s == NULL
fd361982 1234 || !bfd_set_section_alignment (s, bed->s->log_file_align))
aa137e4d
NC
1235 return FALSE;
1236 htab->sgot = s;
1237
1238 /* The first bit of the global offset table is the header. */
1239 s->size += bed->got_header_size;
1240
1241 if (bed->want_got_plt)
1242 {
1243 s = bfd_make_section_with_flags (abfd, ".got.plt", flags);
1244 if (s == NULL
fd361982 1245 || !bfd_set_section_alignment (s, bed->s->log_file_align))
aa137e4d
NC
1246 return FALSE;
1247 htab->sgotplt = s;
1248
1249 /* Reserve room for the header. */
1250 s->size += GOTPLT_HEADER_SIZE;
1251 }
1252
1253 if (bed->want_got_sym)
1254 {
1255 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
1256 section. We don't do this in the linker script because we don't want
1257 to define the symbol if we are not creating a global offset
1258 table. */
1259 h = _bfd_elf_define_linkage_sym (abfd, info, s_got,
1260 "_GLOBAL_OFFSET_TABLE_");
1261 elf_hash_table (info)->hgot = h;
1262 if (h == NULL)
1263 return FALSE;
1264 }
1265
1266 return TRUE;
1267}
1268
1269/* Create .plt, .rela.plt, .got, .got.plt, .rela.got, .dynbss, and
1270 .rela.bss sections in DYNOBJ, and set up shortcuts to them in our
1271 hash table. */
1272
1273static bfd_boolean
1274tilepro_elf_create_dynamic_sections (bfd *dynobj,
1275 struct bfd_link_info *info)
1276{
aa137e4d
NC
1277 if (!tilepro_elf_create_got_section (dynobj, info))
1278 return FALSE;
1279
9d19e4fd 1280 return _bfd_elf_create_dynamic_sections (dynobj, info);
aa137e4d
NC
1281}
1282
1283/* Copy the extra info we tack onto an elf_link_hash_entry. */
1284
1285static void
1286tilepro_elf_copy_indirect_symbol (struct bfd_link_info *info,
1287 struct elf_link_hash_entry *dir,
1288 struct elf_link_hash_entry *ind)
1289{
1290 struct tilepro_elf_link_hash_entry *edir, *eind;
1291
1292 edir = (struct tilepro_elf_link_hash_entry *) dir;
1293 eind = (struct tilepro_elf_link_hash_entry *) ind;
1294
aa137e4d
NC
1295 if (ind->root.type == bfd_link_hash_indirect
1296 && dir->got.refcount <= 0)
1297 {
1298 edir->tls_type = eind->tls_type;
1299 eind->tls_type = GOT_UNKNOWN;
1300 }
1301 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
1302}
1303
6f7be959
WL
1304static int
1305tilepro_tls_translate_to_le (int r_type)
1306{
1307 switch (r_type)
1308 {
1309 case R_TILEPRO_IMM16_X0_TLS_GD:
1310 case R_TILEPRO_IMM16_X0_TLS_IE:
1311 return R_TILEPRO_IMM16_X0_TLS_LE;
1312
1313 case R_TILEPRO_IMM16_X1_TLS_GD:
1314 case R_TILEPRO_IMM16_X1_TLS_IE:
1315 return R_TILEPRO_IMM16_X1_TLS_LE;
1316
1317 case R_TILEPRO_IMM16_X0_TLS_GD_LO:
1318 case R_TILEPRO_IMM16_X0_TLS_IE_LO:
1319 return R_TILEPRO_IMM16_X0_TLS_LE_LO;
1320
1321 case R_TILEPRO_IMM16_X1_TLS_GD_LO:
1322 case R_TILEPRO_IMM16_X1_TLS_IE_LO:
1323 return R_TILEPRO_IMM16_X1_TLS_LE_LO;
1324
1325 case R_TILEPRO_IMM16_X0_TLS_GD_HI:
1326 case R_TILEPRO_IMM16_X0_TLS_IE_HI:
1327 return R_TILEPRO_IMM16_X0_TLS_LE_HI;
1328
1329 case R_TILEPRO_IMM16_X1_TLS_GD_HI:
1330 case R_TILEPRO_IMM16_X1_TLS_IE_HI:
1331 return R_TILEPRO_IMM16_X1_TLS_LE_HI;
1332
1333 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
1334 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
1335 return R_TILEPRO_IMM16_X0_TLS_LE_HA;
1336
1337 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
1338 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
1339 return R_TILEPRO_IMM16_X1_TLS_LE_HA;
1340 }
1341 return r_type;
1342}
1343
1344static int
1345tilepro_tls_translate_to_ie (int r_type)
1346{
1347 switch (r_type)
1348 {
1349 case R_TILEPRO_IMM16_X0_TLS_GD:
1350 case R_TILEPRO_IMM16_X0_TLS_IE:
1351 return R_TILEPRO_IMM16_X0_TLS_IE;
1352
1353 case R_TILEPRO_IMM16_X1_TLS_GD:
1354 case R_TILEPRO_IMM16_X1_TLS_IE:
1355 return R_TILEPRO_IMM16_X1_TLS_IE;
1356
1357 case R_TILEPRO_IMM16_X0_TLS_GD_LO:
1358 case R_TILEPRO_IMM16_X0_TLS_IE_LO:
1359 return R_TILEPRO_IMM16_X0_TLS_IE_LO;
1360
1361 case R_TILEPRO_IMM16_X1_TLS_GD_LO:
1362 case R_TILEPRO_IMM16_X1_TLS_IE_LO:
1363 return R_TILEPRO_IMM16_X1_TLS_IE_LO;
1364
1365 case R_TILEPRO_IMM16_X0_TLS_GD_HI:
1366 case R_TILEPRO_IMM16_X0_TLS_IE_HI:
1367 return R_TILEPRO_IMM16_X0_TLS_IE_HI;
1368
1369 case R_TILEPRO_IMM16_X1_TLS_GD_HI:
1370 case R_TILEPRO_IMM16_X1_TLS_IE_HI:
1371 return R_TILEPRO_IMM16_X1_TLS_IE_HI;
1372
1373 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
1374 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
1375 return R_TILEPRO_IMM16_X0_TLS_IE_HA;
1376
1377 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
1378 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
1379 return R_TILEPRO_IMM16_X1_TLS_IE_HA;
1380 }
1381 return r_type;
1382}
1383
1384static int
1385tilepro_elf_tls_transition (struct bfd_link_info *info, int r_type,
1386 int is_local)
1387{
1ba1f393 1388 if (!bfd_link_executable (info))
6f7be959
WL
1389 return r_type;
1390
1391 if (is_local)
1392 return tilepro_tls_translate_to_le (r_type);
1393 else
1394 return tilepro_tls_translate_to_ie (r_type);
1395}
1396
aa137e4d
NC
1397/* Look through the relocs for a section during the first phase, and
1398 allocate space in the global offset table or procedure linkage
1399 table. */
1400
1401static bfd_boolean
1402tilepro_elf_check_relocs (bfd *abfd, struct bfd_link_info *info,
1403 asection *sec, const Elf_Internal_Rela *relocs)
1404{
1405 struct tilepro_elf_link_hash_table *htab;
1406 Elf_Internal_Shdr *symtab_hdr;
1407 struct elf_link_hash_entry **sym_hashes;
aa137e4d
NC
1408 const Elf_Internal_Rela *rel;
1409 const Elf_Internal_Rela *rel_end;
1410 asection *sreloc;
1411 int num_relocs;
1412
0e1862bb 1413 if (bfd_link_relocatable (info))
aa137e4d
NC
1414 return TRUE;
1415
1416 htab = tilepro_elf_hash_table (info);
1417 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1418 sym_hashes = elf_sym_hashes (abfd);
aa137e4d
NC
1419
1420 sreloc = NULL;
1421
1422 num_relocs = sec->reloc_count;
1423
1424 BFD_ASSERT (is_tilepro_elf (abfd) || num_relocs == 0);
1425
1426 if (htab->elf.dynobj == NULL)
1427 htab->elf.dynobj = abfd;
1428
1429 rel_end = relocs + num_relocs;
1430 for (rel = relocs; rel < rel_end; rel++)
1431 {
1432 unsigned int r_type;
d42c267e 1433 unsigned int r_symndx;
aa137e4d
NC
1434 struct elf_link_hash_entry *h;
1435 int tls_type;
1436
1437 r_symndx = ELF32_R_SYM (rel->r_info);
1438 r_type = ELF32_R_TYPE (rel->r_info);
1439
1440 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
1441 {
695344c0 1442 /* xgettext:c-format */
871b3ab2 1443 _bfd_error_handler (_("%pB: bad symbol index: %d"),
4eca0228 1444 abfd, r_symndx);
aa137e4d
NC
1445 return FALSE;
1446 }
1447
1448 if (r_symndx < symtab_hdr->sh_info)
1449 h = NULL;
1450 else
1451 {
1452 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1453 while (h->root.type == bfd_link_hash_indirect
1454 || h->root.type == bfd_link_hash_warning)
1455 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1456 }
1457
6f7be959 1458 r_type = tilepro_elf_tls_transition (info, r_type, h == NULL);
aa137e4d
NC
1459 switch (r_type)
1460 {
07d6d2b8
AM
1461 case R_TILEPRO_IMM16_X0_TLS_LE:
1462 case R_TILEPRO_IMM16_X1_TLS_LE:
1463 case R_TILEPRO_IMM16_X0_TLS_LE_LO:
1464 case R_TILEPRO_IMM16_X1_TLS_LE_LO:
1465 case R_TILEPRO_IMM16_X0_TLS_LE_HI:
1466 case R_TILEPRO_IMM16_X1_TLS_LE_HI:
1467 case R_TILEPRO_IMM16_X0_TLS_LE_HA:
1468 case R_TILEPRO_IMM16_X1_TLS_LE_HA:
1ba1f393 1469 if (!bfd_link_executable (info))
6f7be959
WL
1470 goto r_tilepro_plt32;
1471 break;
1472
07d6d2b8
AM
1473 case R_TILEPRO_IMM16_X0_TLS_GD:
1474 case R_TILEPRO_IMM16_X1_TLS_GD:
1475 case R_TILEPRO_IMM16_X0_TLS_GD_LO:
1476 case R_TILEPRO_IMM16_X1_TLS_GD_LO:
1477 case R_TILEPRO_IMM16_X0_TLS_GD_HI:
1478 case R_TILEPRO_IMM16_X1_TLS_GD_HI:
1479 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
1480 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
0e1862bb 1481 BFD_ASSERT (bfd_link_pic (info));
6f7be959 1482 tls_type = GOT_TLS_GD;
07d6d2b8
AM
1483 goto have_got_reference;
1484
1485 case R_TILEPRO_IMM16_X0_TLS_IE:
1486 case R_TILEPRO_IMM16_X1_TLS_IE:
1487 case R_TILEPRO_IMM16_X0_TLS_IE_LO:
1488 case R_TILEPRO_IMM16_X1_TLS_IE_LO:
1489 case R_TILEPRO_IMM16_X0_TLS_IE_HI:
1490 case R_TILEPRO_IMM16_X1_TLS_IE_HI:
1491 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
1492 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
1493 tls_type = GOT_TLS_IE;
1494 if (!bfd_link_executable (info))
1495 info->flags |= DF_STATIC_TLS;
1496 goto have_got_reference;
1497
1498 case R_TILEPRO_IMM16_X0_GOT:
1499 case R_TILEPRO_IMM16_X1_GOT:
1500 case R_TILEPRO_IMM16_X0_GOT_LO:
1501 case R_TILEPRO_IMM16_X1_GOT_LO:
1502 case R_TILEPRO_IMM16_X0_GOT_HI:
1503 case R_TILEPRO_IMM16_X1_GOT_HI:
1504 case R_TILEPRO_IMM16_X0_GOT_HA:
1505 case R_TILEPRO_IMM16_X1_GOT_HA:
1506 tls_type = GOT_NORMAL;
1507 /* Fall Through */
1508
1509 have_got_reference:
aa137e4d
NC
1510 /* This symbol requires a global offset table entry. */
1511 {
07d6d2b8 1512 int old_tls_type;
aa137e4d
NC
1513
1514 if (h != NULL)
1515 {
1516 h->got.refcount += 1;
1517 old_tls_type = tilepro_elf_hash_entry(h)->tls_type;
1518 }
1519 else
1520 {
1521 bfd_signed_vma *local_got_refcounts;
1522
1523 /* This is a global offset table entry for a local symbol. */
1524 local_got_refcounts = elf_local_got_refcounts (abfd);
1525 if (local_got_refcounts == NULL)
1526 {
1527 bfd_size_type size;
1528
1529 size = symtab_hdr->sh_info;
1530 size *= (sizeof (bfd_signed_vma) + sizeof(char));
1531 local_got_refcounts = ((bfd_signed_vma *)
1532 bfd_zalloc (abfd, size));
1533 if (local_got_refcounts == NULL)
1534 return FALSE;
1535 elf_local_got_refcounts (abfd) = local_got_refcounts;
1536 _bfd_tilepro_elf_local_got_tls_type (abfd)
1537 = (char *) (local_got_refcounts + symtab_hdr->sh_info);
1538 }
1539 local_got_refcounts[r_symndx] += 1;
1540 old_tls_type =
1541 _bfd_tilepro_elf_local_got_tls_type (abfd) [r_symndx];
1542 }
1543
1544 /* If a TLS symbol is accessed using IE at least once,
1545 there is no point to use dynamic model for it. */
1546 if (old_tls_type != tls_type && old_tls_type != GOT_UNKNOWN
1547 && (old_tls_type != GOT_TLS_GD
1548 || tls_type != GOT_TLS_IE))
1549 {
1550 if (old_tls_type == GOT_TLS_IE && tls_type == GOT_TLS_GD)
1551 tls_type = old_tls_type;
1552 else
1553 {
4eca0228 1554 _bfd_error_handler
695344c0 1555 /* xgettext:c-format */
871b3ab2 1556 (_("%pB: `%s' accessed both as normal and thread local symbol"),
aa137e4d
NC
1557 abfd, h ? h->root.root.string : "<local>");
1558 return FALSE;
1559 }
1560 }
1561
1562 if (old_tls_type != tls_type)
1563 {
1564 if (h != NULL)
1565 tilepro_elf_hash_entry (h)->tls_type = tls_type;
1566 else
1567 _bfd_tilepro_elf_local_got_tls_type (abfd) [r_symndx] =
1568 tls_type;
1569 }
1570 }
1571
1572 if (htab->elf.sgot == NULL)
1573 {
1574 if (!tilepro_elf_create_got_section (htab->elf.dynobj, info))
1575 return FALSE;
1576 }
1577 break;
1578
6f7be959 1579 case R_TILEPRO_TLS_GD_CALL:
1ba1f393 1580 if (!bfd_link_executable (info))
6f7be959
WL
1581 {
1582 /* These are basically R_TILEPRO_JOFFLONG_X1_PLT relocs
1583 against __tls_get_addr. */
1584 struct bfd_link_hash_entry *bh = NULL;
1585 if (! _bfd_generic_link_add_one_symbol (info, abfd,
1586 "__tls_get_addr", 0,
1587 bfd_und_section_ptr, 0,
1588 NULL, FALSE, FALSE,
1589 &bh))
1590 return FALSE;
1591 h = (struct elf_link_hash_entry *) bh;
1592 }
1593 else
1594 break;
1595 /* Fall through */
1596
07d6d2b8 1597 case R_TILEPRO_JOFFLONG_X1_PLT:
aa137e4d
NC
1598 /* This symbol requires a procedure linkage table entry. We
1599 actually build the entry in adjust_dynamic_symbol,
1600 because this might be a case of linking PIC code without
1601 linking in any dynamic objects, in which case we don't
1602 need to generate a procedure linkage table after all. */
1603
1604 if (h != NULL)
07d6d2b8
AM
1605 {
1606 h->needs_plt = 1;
1607 h->plt.refcount += 1;
1608 }
aa137e4d
NC
1609 break;
1610
07d6d2b8
AM
1611 case R_TILEPRO_32_PCREL:
1612 case R_TILEPRO_16_PCREL:
1613 case R_TILEPRO_8_PCREL:
1614 case R_TILEPRO_IMM16_X0_PCREL:
1615 case R_TILEPRO_IMM16_X1_PCREL:
1616 case R_TILEPRO_IMM16_X0_LO_PCREL:
1617 case R_TILEPRO_IMM16_X1_LO_PCREL:
1618 case R_TILEPRO_IMM16_X0_HI_PCREL:
1619 case R_TILEPRO_IMM16_X1_HI_PCREL:
1620 case R_TILEPRO_IMM16_X0_HA_PCREL:
1621 case R_TILEPRO_IMM16_X1_HA_PCREL:
aa137e4d
NC
1622 if (h != NULL)
1623 h->non_got_ref = 1;
1624
1625 if (h != NULL
1626 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
1627 break;
1628 /* Fall through. */
1629
07d6d2b8
AM
1630 case R_TILEPRO_32:
1631 case R_TILEPRO_16:
1632 case R_TILEPRO_8:
1633 case R_TILEPRO_LO16:
1634 case R_TILEPRO_HI16:
1635 case R_TILEPRO_HA16:
1636 case R_TILEPRO_COPY:
1637 case R_TILEPRO_GLOB_DAT:
1638 case R_TILEPRO_JMP_SLOT:
1639 case R_TILEPRO_RELATIVE:
1640 case R_TILEPRO_BROFF_X1:
1641 case R_TILEPRO_JOFFLONG_X1:
1642 case R_TILEPRO_IMM8_X0:
1643 case R_TILEPRO_IMM8_Y0:
1644 case R_TILEPRO_IMM8_X1:
1645 case R_TILEPRO_IMM8_Y1:
1646 case R_TILEPRO_DEST_IMM8_X1:
1647 case R_TILEPRO_MT_IMM15_X1:
1648 case R_TILEPRO_MF_IMM15_X1:
1649 case R_TILEPRO_IMM16_X0:
1650 case R_TILEPRO_IMM16_X1:
1651 case R_TILEPRO_IMM16_X0_LO:
1652 case R_TILEPRO_IMM16_X1_LO:
1653 case R_TILEPRO_IMM16_X0_HI:
1654 case R_TILEPRO_IMM16_X1_HI:
1655 case R_TILEPRO_IMM16_X0_HA:
1656 case R_TILEPRO_IMM16_X1_HA:
1657 case R_TILEPRO_MMSTART_X0:
1658 case R_TILEPRO_MMEND_X0:
1659 case R_TILEPRO_MMSTART_X1:
1660 case R_TILEPRO_MMEND_X1:
1661 case R_TILEPRO_SHAMT_X0:
1662 case R_TILEPRO_SHAMT_X1:
1663 case R_TILEPRO_SHAMT_Y0:
1664 case R_TILEPRO_SHAMT_Y1:
aa137e4d 1665 if (h != NULL)
07d6d2b8 1666 h->non_got_ref = 1;
aa137e4d 1667
6f7be959 1668 r_tilepro_plt32:
0e1862bb 1669 if (h != NULL && !bfd_link_pic (info))
6f7be959
WL
1670 {
1671 /* We may need a .plt entry if the function this reloc
1672 refers to is in a shared lib. */
1673 h->plt.refcount += 1;
07d6d2b8 1674 }
aa137e4d
NC
1675
1676 /* If we are creating a shared library, and this is a reloc
1677 against a global symbol, or a non PC relative reloc
1678 against a local symbol, then we need to copy the reloc
1679 into the shared library. However, if we are linking with
1680 -Bsymbolic, we do not need to copy a reloc against a
1681 global symbol which is defined in an object we are
1682 including in the link (i.e., DEF_REGULAR is set). At
1683 this point we have not seen all the input files, so it is
1684 possible that DEF_REGULAR is not set now but will be set
1685 later (it is never cleared). In case of a weak definition,
1686 DEF_REGULAR may be cleared later by a strong definition in
1687 a shared library. We account for that possibility below by
1688 storing information in the relocs_copied field of the hash
1689 table entry. A similar situation occurs when creating
1690 shared libraries and symbol visibility changes render the
1691 symbol local.
1692
1693 If on the other hand, we are creating an executable, we
1694 may need to keep relocations for symbols satisfied by a
1695 dynamic library if we manage to avoid copy relocs for the
1696 symbol. */
0e1862bb 1697 if ((bfd_link_pic (info)
aa137e4d
NC
1698 && (sec->flags & SEC_ALLOC) != 0
1699 && (! tilepro_elf_howto_table[r_type].pc_relative
1700 || (h != NULL
1701 && (! info->symbolic
1702 || h->root.type == bfd_link_hash_defweak
1703 || !h->def_regular))))
0e1862bb 1704 || (!bfd_link_pic (info)
aa137e4d
NC
1705 && (sec->flags & SEC_ALLOC) != 0
1706 && h != NULL
1707 && (h->root.type == bfd_link_hash_defweak
1708 || !h->def_regular)))
1709 {
3bf083ed
AM
1710 struct elf_dyn_relocs *p;
1711 struct elf_dyn_relocs **head;
aa137e4d
NC
1712
1713 /* When creating a shared object, we must copy these
1714 relocs into the output file. We create a reloc
1715 section in dynobj and make room for the reloc. */
1716 if (sreloc == NULL)
1717 {
1718 sreloc = _bfd_elf_make_dynamic_reloc_section
1719 (sec, htab->elf.dynobj, 2, abfd, /*rela?*/ TRUE);
1720
1721 if (sreloc == NULL)
1722 return FALSE;
1723 }
1724
1725 /* If this is a global symbol, we count the number of
1726 relocations we need for this symbol. */
1727 if (h != NULL)
190eb1dd 1728 head = &h->dyn_relocs;
aa137e4d
NC
1729 else
1730 {
1731 /* Track dynamic relocs needed for local syms too.
1732 We really need local syms available to do this
1733 easily. Oh well. */
1734
1735 asection *s;
1736 void *vpp;
1737 Elf_Internal_Sym *isym;
1738
1739 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
1740 abfd, r_symndx);
1741 if (isym == NULL)
1742 return FALSE;
1743
1744 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
1745 if (s == NULL)
1746 s = sec;
1747
1748 vpp = &elf_section_data (s)->local_dynrel;
3bf083ed 1749 head = (struct elf_dyn_relocs **) vpp;
aa137e4d
NC
1750 }
1751
1752 p = *head;
1753 if (p == NULL || p->sec != sec)
1754 {
986f0783 1755 size_t amt = sizeof *p;
3bf083ed 1756 p = ((struct elf_dyn_relocs *)
aa137e4d
NC
1757 bfd_alloc (htab->elf.dynobj, amt));
1758 if (p == NULL)
1759 return FALSE;
1760 p->next = *head;
1761 *head = p;
1762 p->sec = sec;
1763 p->count = 0;
1764 p->pc_count = 0;
1765 }
1766
1767 p->count += 1;
1768 if (tilepro_elf_howto_table[r_type].pc_relative)
1769 p->pc_count += 1;
1770 }
1771
1772 break;
1773
1774 case R_TILEPRO_GNU_VTINHERIT:
1775 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
1776 return FALSE;
1777 break;
1778
1779 case R_TILEPRO_GNU_VTENTRY:
1780 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
1781 return FALSE;
1782 break;
1783
1784 default:
1785 break;
1786 }
1787 }
1788
1789 return TRUE;
1790}
1791
1792\f
1793static asection *
1794tilepro_elf_gc_mark_hook (asection *sec,
07d6d2b8
AM
1795 struct bfd_link_info *info,
1796 Elf_Internal_Rela *rel,
1797 struct elf_link_hash_entry *h,
1798 Elf_Internal_Sym *sym)
aa137e4d
NC
1799{
1800 if (h != NULL)
1801 {
1802 switch (ELF32_R_TYPE (rel->r_info))
b45b6908
AM
1803 {
1804 case R_TILEPRO_GNU_VTINHERIT:
1805 case R_TILEPRO_GNU_VTENTRY:
1806 return NULL;
1807 }
1808 }
1809
1810 /* FIXME: The test here, in check_relocs and in relocate_section
0e1862bb
L
1811 dealing with TLS optimization, ought to be !bfd_link_executable (info). */
1812 if (bfd_link_pic (info))
b45b6908 1813 {
8e354058
L
1814 struct bfd_link_hash_entry *bh;
1815
b45b6908
AM
1816 switch (ELF32_R_TYPE (rel->r_info))
1817 {
1818 case R_TILEPRO_TLS_GD_CALL:
1819 /* This reloc implicitly references __tls_get_addr. We know
1820 another reloc will reference the same symbol as the one
1821 on this reloc, so the real symbol and section will be
1822 gc marked when processing the other reloc. That lets
1823 us handle __tls_get_addr here. */
8e354058
L
1824 bh = NULL;
1825 if (! _bfd_generic_link_add_one_symbol (info, sec->owner,
1826 "__tls_get_addr", 0,
1827 bfd_und_section_ptr,
1828 0, NULL, FALSE,
1829 FALSE, &bh))
1830 return NULL;
1831 h = (struct elf_link_hash_entry *) bh;
b45b6908
AM
1832 BFD_ASSERT (h != NULL);
1833 h->mark = 1;
60d67dc8
AM
1834 if (h->is_weakalias)
1835 weakdef (h)->mark = 1;
b45b6908
AM
1836 sym = NULL;
1837 }
aa137e4d
NC
1838 }
1839
1840 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1841}
1842
aa137e4d
NC
1843/* Adjust a symbol defined by a dynamic object and referenced by a
1844 regular object. The current definition is in some section of the
1845 dynamic object, but we're not including those sections. We have to
1846 change the definition to something the rest of the link can
1847 understand. */
1848
1849static bfd_boolean
1850tilepro_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1851 struct elf_link_hash_entry *h)
1852{
1853 struct tilepro_elf_link_hash_table *htab;
5474d94f 1854 asection *s, *srel;
aa137e4d
NC
1855
1856 htab = tilepro_elf_hash_table (info);
1857 BFD_ASSERT (htab != NULL);
1858
1859 /* Make sure we know what is going on here. */
1860 BFD_ASSERT (htab->elf.dynobj != NULL
1861 && (h->needs_plt
60d67dc8 1862 || h->is_weakalias
aa137e4d
NC
1863 || (h->def_dynamic
1864 && h->ref_regular
1865 && !h->def_regular)));
1866
1867 /* If this is a function, put it in the procedure linkage table. We
1868 will fill in the contents of the procedure linkage table later
1869 (although we could actually do it here). */
1870 if (h->type == STT_FUNC || h->needs_plt)
1871 {
1872 if (h->plt.refcount <= 0
1873 || SYMBOL_CALLS_LOCAL (info, h)
1874 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
1875 && h->root.type == bfd_link_hash_undefweak))
1876 {
1877 /* This case can occur if we saw a R_TILEPRO_JOFFLONG_X1_PLT
07d6d2b8
AM
1878 reloc in an input file, but the symbol was never referred
1879 to by a dynamic object, or if all references were garbage
1880 collected. In such a case, we don't actually need to build
1881 a procedure linkage table, and we can just do a
1882 R_TILEPRO_JOFFLONG_X1 relocation instead. */
aa137e4d
NC
1883 h->plt.offset = (bfd_vma) -1;
1884 h->needs_plt = 0;
1885 }
1886
1887 return TRUE;
1888 }
1889 else
1890 h->plt.offset = (bfd_vma) -1;
1891
1892 /* If this is a weak symbol, and there is a real definition, the
1893 processor independent code will have arranged for us to see the
1894 real definition first, and we can just use the same value. */
60d67dc8 1895 if (h->is_weakalias)
aa137e4d 1896 {
60d67dc8
AM
1897 struct elf_link_hash_entry *def = weakdef (h);
1898 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
1899 h->root.u.def.section = def->root.u.def.section;
1900 h->root.u.def.value = def->root.u.def.value;
aa137e4d
NC
1901 return TRUE;
1902 }
1903
1904 /* This is a reference to a symbol defined by a dynamic object which
1905 is not a function. */
1906
1907 /* If we are creating a shared library, we must presume that the
1908 only references to the symbol are via the global offset table.
1909 For such cases we need not do anything here; the relocations will
1910 be handled correctly by relocate_section. */
0e1862bb 1911 if (bfd_link_pic (info))
aa137e4d
NC
1912 return TRUE;
1913
1914 /* If there are no references to this symbol that do not use the
1915 GOT, we don't need to generate a copy reloc. */
1916 if (!h->non_got_ref)
1917 return TRUE;
1918
1919 /* If -z nocopyreloc was given, we won't generate them either. */
1920 if (info->nocopyreloc)
1921 {
1922 h->non_got_ref = 0;
1923 return TRUE;
1924 }
1925
3bf083ed 1926 /* If we don't find any dynamic relocs in read-only sections, then
aa137e4d 1927 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
5dbc8b37 1928 if (!_bfd_elf_readonly_dynrelocs (h))
aa137e4d
NC
1929 {
1930 h->non_got_ref = 0;
1931 return TRUE;
1932 }
1933
aa137e4d
NC
1934 /* We must allocate the symbol in our .dynbss section, which will
1935 become part of the .bss section of the executable. There will be
1936 an entry for this symbol in the .dynsym section. The dynamic
1937 object will contain position independent code, so all references
1938 from the dynamic object to this symbol will go through the global
1939 offset table. The dynamic linker will use the .dynsym entry to
1940 determine the address it must put in the global offset table, so
1941 both the dynamic object and the regular object will refer to the
1942 same memory location for the variable. */
1943
1944 /* We must generate a R_TILEPRO_COPY reloc to tell the dynamic linker
1945 to copy the initial value out of the dynamic object and into the
1946 runtime process image. We need to remember the offset into the
1947 .rel.bss section we are going to use. */
5474d94f
AM
1948 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
1949 {
1950 s = htab->elf.sdynrelro;
1951 srel = htab->elf.sreldynrelro;
1952 }
1953 else
1954 {
1955 s = htab->elf.sdynbss;
1956 srel = htab->elf.srelbss;
1957 }
1d7e9d18 1958 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
aa137e4d 1959 {
5474d94f 1960 srel->size += TILEPRO_ELF_RELA_BYTES;
aa137e4d
NC
1961 h->needs_copy = 1;
1962 }
1963
5474d94f 1964 return _bfd_elf_adjust_dynamic_copy (info, h, s);
aa137e4d
NC
1965}
1966
1967/* Allocate space in .plt, .got and associated reloc sections for
1968 dynamic relocs. */
1969
1970static bfd_boolean
e4d34ace 1971allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
aa137e4d
NC
1972{
1973 struct bfd_link_info *info;
1974 struct tilepro_elf_link_hash_table *htab;
3bf083ed 1975 struct elf_dyn_relocs *p;
aa137e4d
NC
1976
1977 if (h->root.type == bfd_link_hash_indirect)
1978 return TRUE;
1979
aa137e4d
NC
1980 info = (struct bfd_link_info *) inf;
1981 htab = tilepro_elf_hash_table (info);
1982 BFD_ASSERT (htab != NULL);
1983
1984 if (htab->elf.dynamic_sections_created
1985 && h->plt.refcount > 0)
1986 {
1987 /* Make sure this symbol is output as a dynamic symbol.
1988 Undefined weak syms won't yet be marked as dynamic. */
1989 if (h->dynindx == -1
1990 && !h->forced_local)
1991 {
1992 if (! bfd_elf_link_record_dynamic_symbol (info, h))
1993 return FALSE;
1994 }
1995
0e1862bb 1996 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h))
aa137e4d
NC
1997 {
1998 asection *s = htab->elf.splt;
1999
2000 /* Allocate room for the header. */
2001 if (s->size == 0)
2002 {
663b5850 2003 s->size = PLT_ENTRY_SIZE;
aa137e4d
NC
2004 }
2005
07d6d2b8 2006 h->plt.offset = s->size;
aa137e4d
NC
2007
2008 /* If this symbol is not defined in a regular file, and we are
2009 not generating a shared library, then set the symbol to this
2010 location in the .plt. This is required to make function
2011 pointers compare as equal between the normal executable and
2012 the shared library. */
0e1862bb 2013 if (! bfd_link_pic (info)
aa137e4d
NC
2014 && !h->def_regular)
2015 {
2016 h->root.u.def.section = s;
2017 h->root.u.def.value = h->plt.offset;
2018 }
2019
2020 /* Make room for this entry. */
2021 s->size += PLT_ENTRY_SIZE;
2022
2023 /* We also need to make an entry in the .got.plt section. */
2024 htab->elf.sgotplt->size += GOT_ENTRY_SIZE;
2025
2026 /* We also need to make an entry in the .rela.plt section. */
2027 htab->elf.srelplt->size += TILEPRO_ELF_RELA_BYTES;
2028 }
2029 else
2030 {
2031 h->plt.offset = (bfd_vma) -1;
2032 h->needs_plt = 0;
2033 }
2034 }
2035 else
2036 {
2037 h->plt.offset = (bfd_vma) -1;
2038 h->needs_plt = 0;
2039 }
2040
6f7be959
WL
2041 /* If a TLS_IE symbol is now local to the binary, make it a TLS_LE
2042 requiring no TLS entry. */
2043 if (h->got.refcount > 0
1ba1f393 2044 && bfd_link_executable (info)
6f7be959
WL
2045 && h->dynindx == -1
2046 && tilepro_elf_hash_entry(h)->tls_type == GOT_TLS_IE)
2047 h->got.offset = (bfd_vma) -1;
2048 else if (h->got.refcount > 0)
aa137e4d
NC
2049 {
2050 asection *s;
2051 bfd_boolean dyn;
2052 int tls_type = tilepro_elf_hash_entry(h)->tls_type;
2053
2054 /* Make sure this symbol is output as a dynamic symbol.
2055 Undefined weak syms won't yet be marked as dynamic. */
2056 if (h->dynindx == -1
2057 && !h->forced_local)
2058 {
2059 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2060 return FALSE;
2061 }
2062
2063 s = htab->elf.sgot;
2064 h->got.offset = s->size;
2065 s->size += TILEPRO_BYTES_PER_WORD;
2066 /* R_TILEPRO_IMM16_Xn_TLS_GD entries need 2 consecutive GOT slots. */
2067 if (tls_type == GOT_TLS_GD)
2068 s->size += TILEPRO_BYTES_PER_WORD;
2069 dyn = htab->elf.dynamic_sections_created;
2070 /* R_TILEPRO_IMM16_Xn_TLS_IE_xxx needs one dynamic relocation,
2071 R_TILEPRO_IMM16_Xn_TLS_GD_xxx needs two if local symbol and two if
2072 global. */
2073 if (tls_type == GOT_TLS_GD || tls_type == GOT_TLS_IE)
2074 htab->elf.srelgot->size += 2 * TILEPRO_ELF_RELA_BYTES;
0e1862bb
L
2075 else if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
2076 bfd_link_pic (info),
2077 h))
aa137e4d
NC
2078 htab->elf.srelgot->size += TILEPRO_ELF_RELA_BYTES;
2079 }
2080 else
2081 h->got.offset = (bfd_vma) -1;
2082
190eb1dd 2083 if (h->dyn_relocs == NULL)
aa137e4d
NC
2084 return TRUE;
2085
2086 /* In the shared -Bsymbolic case, discard space allocated for
2087 dynamic pc-relative relocs against symbols which turn out to be
2088 defined in regular objects. For the normal shared case, discard
2089 space for pc-relative relocs that have become local due to symbol
2090 visibility changes. */
2091
0e1862bb 2092 if (bfd_link_pic (info))
aa137e4d
NC
2093 {
2094 if (SYMBOL_CALLS_LOCAL (info, h))
2095 {
3bf083ed 2096 struct elf_dyn_relocs **pp;
aa137e4d 2097
190eb1dd 2098 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
aa137e4d
NC
2099 {
2100 p->count -= p->pc_count;
2101 p->pc_count = 0;
2102 if (p->count == 0)
2103 *pp = p->next;
2104 else
2105 pp = &p->next;
2106 }
2107 }
2108
2109 /* Also discard relocs on undefined weak syms with non-default
2110 visibility. */
190eb1dd 2111 if (h->dyn_relocs != NULL
aa137e4d
NC
2112 && h->root.type == bfd_link_hash_undefweak)
2113 {
a3cd202a
L
2114 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2115 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
190eb1dd 2116 h->dyn_relocs = NULL;
aa137e4d
NC
2117
2118 /* Make sure undefined weak symbols are output as a dynamic
2119 symbol in PIEs. */
2120 else if (h->dynindx == -1
2121 && !h->forced_local)
2122 {
2123 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2124 return FALSE;
2125 }
2126 }
2127 }
2128 else
2129 {
2130 /* For the non-shared case, discard space for relocs against
2131 symbols which turn out to need copy relocs or are not
2132 dynamic. */
2133
2134 if (!h->non_got_ref
2135 && ((h->def_dynamic
2136 && !h->def_regular)
2137 || (htab->elf.dynamic_sections_created
2138 && (h->root.type == bfd_link_hash_undefweak
2139 || h->root.type == bfd_link_hash_undefined))))
2140 {
2141 /* Make sure this symbol is output as a dynamic symbol.
2142 Undefined weak syms won't yet be marked as dynamic. */
2143 if (h->dynindx == -1
2144 && !h->forced_local)
2145 {
2146 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2147 return FALSE;
2148 }
2149
2150 /* If that succeeded, we know we'll be keeping all the
2151 relocs. */
2152 if (h->dynindx != -1)
2153 goto keep;
2154 }
2155
190eb1dd 2156 h->dyn_relocs = NULL;
aa137e4d
NC
2157
2158 keep: ;
2159 }
2160
2161 /* Finally, allocate space. */
190eb1dd 2162 for (p = h->dyn_relocs; p != NULL; p = p->next)
aa137e4d
NC
2163 {
2164 asection *sreloc = elf_section_data (p->sec)->sreloc;
2165 sreloc->size += p->count * TILEPRO_ELF_RELA_BYTES;
2166 }
2167
2168 return TRUE;
2169}
2170
63c1f59d
AM
2171/* Set DF_TEXTREL if we find any dynamic relocs that apply to
2172 read-only sections. */
aa137e4d
NC
2173
2174static bfd_boolean
63c1f59d 2175maybe_set_textrel (struct elf_link_hash_entry *h, void *info_p)
aa137e4d 2176{
63c1f59d 2177 asection *sec;
aa137e4d 2178
63c1f59d
AM
2179 if (h->root.type == bfd_link_hash_indirect)
2180 return TRUE;
aa137e4d 2181
5dbc8b37 2182 sec = _bfd_elf_readonly_dynrelocs (h);
63c1f59d
AM
2183 if (sec != NULL)
2184 {
2185 struct bfd_link_info *info = (struct bfd_link_info *) info_p;
aa137e4d 2186
63c1f59d
AM
2187 info->flags |= DF_TEXTREL;
2188 info->callbacks->minfo
c1c8c1ef 2189 (_("%pB: dynamic relocation against `%pT' in read-only section `%pA'\n"),
63c1f59d 2190 sec->owner, h->root.root.string, sec);
007873f5 2191
63c1f59d
AM
2192 /* Not an error, just cut short the traversal. */
2193 return FALSE;
aa137e4d
NC
2194 }
2195 return TRUE;
2196}
2197
2198/* Return true if the dynamic symbol for a given section should be
2199 omitted when creating a shared library. */
2200
2201static bfd_boolean
2202tilepro_elf_omit_section_dynsym (bfd *output_bfd,
2203 struct bfd_link_info *info,
2204 asection *p)
2205{
2206 /* We keep the .got section symbol so that explicit relocations
2207 against the _GLOBAL_OFFSET_TABLE_ symbol emitted in PIC mode
2208 can be turned into relocations against the .got symbol. */
2209 if (strcmp (p->name, ".got") == 0)
2210 return FALSE;
2211
d00dd7dc 2212 return _bfd_elf_omit_section_dynsym_default (output_bfd, info, p);
aa137e4d
NC
2213}
2214
2215/* Set the sizes of the dynamic sections. */
2216
2217#define ELF32_DYNAMIC_INTERPRETER "/lib/ld.so.1"
2218
2219static bfd_boolean
2220tilepro_elf_size_dynamic_sections (bfd *output_bfd,
2221 struct bfd_link_info *info)
2222{
2223 (void)output_bfd;
2224
2225 struct tilepro_elf_link_hash_table *htab;
2226 bfd *dynobj;
2227 asection *s;
2228 bfd *ibfd;
2229
2230 htab = tilepro_elf_hash_table (info);
2231 BFD_ASSERT (htab != NULL);
2232 dynobj = htab->elf.dynobj;
2233 BFD_ASSERT (dynobj != NULL);
2234
2235 if (elf_hash_table (info)->dynamic_sections_created)
2236 {
2237 /* Set the contents of the .interp section to the interpreter. */
9b8b325a 2238 if (bfd_link_executable (info) && !info->nointerp)
aa137e4d 2239 {
3d4d4302 2240 s = bfd_get_linker_section (dynobj, ".interp");
aa137e4d
NC
2241 BFD_ASSERT (s != NULL);
2242 s->size = sizeof ELF32_DYNAMIC_INTERPRETER;
2243 s->contents = (unsigned char *) ELF32_DYNAMIC_INTERPRETER;
2244 }
2245 }
2246
2247 /* Set up .got offsets for local syms, and space for local dynamic
2248 relocs. */
c72f2fb2 2249 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
aa137e4d
NC
2250 {
2251 bfd_signed_vma *local_got;
2252 bfd_signed_vma *end_local_got;
2253 char *local_tls_type;
2254 bfd_size_type locsymcount;
2255 Elf_Internal_Shdr *symtab_hdr;
2256 asection *srel;
2257
2258 if (! is_tilepro_elf (ibfd))
2259 continue;
2260
2261 for (s = ibfd->sections; s != NULL; s = s->next)
2262 {
3bf083ed 2263 struct elf_dyn_relocs *p;
aa137e4d
NC
2264
2265 for (p = elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
2266 {
2267 if (!bfd_is_abs_section (p->sec)
2268 && bfd_is_abs_section (p->sec->output_section))
2269 {
2270 /* Input section has been discarded, either because
2271 it is a copy of a linkonce section or due to
2272 linker script /DISCARD/, so we'll be discarding
2273 the relocs too. */
2274 }
2275 else if (p->count != 0)
2276 {
2277 srel = elf_section_data (p->sec)->sreloc;
2278 srel->size += p->count * TILEPRO_ELF_RELA_BYTES;
2279 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
007873f5
L
2280 {
2281 info->flags |= DF_TEXTREL;
2282
871b3ab2 2283 info->callbacks->minfo (_("%pB: dynamic relocation in read-only section `%pA'\n"),
007873f5
L
2284 p->sec->owner, p->sec);
2285 }
aa137e4d
NC
2286 }
2287 }
2288 }
2289
2290 local_got = elf_local_got_refcounts (ibfd);
2291 if (!local_got)
2292 continue;
2293
2294 symtab_hdr = &elf_symtab_hdr (ibfd);
2295 locsymcount = symtab_hdr->sh_info;
2296 end_local_got = local_got + locsymcount;
2297 local_tls_type = _bfd_tilepro_elf_local_got_tls_type (ibfd);
2298 s = htab->elf.sgot;
2299 srel = htab->elf.srelgot;
2300 for (; local_got < end_local_got; ++local_got, ++local_tls_type)
2301 {
2302 if (*local_got > 0)
2303 {
2304 *local_got = s->size;
2305 s->size += TILEPRO_BYTES_PER_WORD;
2306 if (*local_tls_type == GOT_TLS_GD)
2307 s->size += TILEPRO_BYTES_PER_WORD;
0e1862bb 2308 if (bfd_link_pic (info)
aa137e4d
NC
2309 || *local_tls_type == GOT_TLS_GD
2310 || *local_tls_type == GOT_TLS_IE)
2311 srel->size += TILEPRO_ELF_RELA_BYTES;
2312 }
2313 else
2314 *local_got = (bfd_vma) -1;
2315 }
2316 }
2317
2318 /* Allocate global sym .plt and .got entries, and space for global
2319 sym dynamic relocs. */
e4d34ace 2320 elf_link_hash_traverse (&htab->elf, allocate_dynrelocs, info);
aa137e4d
NC
2321
2322 if (elf_hash_table (info)->dynamic_sections_created)
2323 {
2324 /* If the .got section is more than 0x8000 bytes, we add
2325 0x8000 to the value of _GLOBAL_OFFSET_TABLE_, so that 16
2326 bit relocations have a greater chance of working. */
2327 if (htab->elf.sgot->size >= 0x8000
2328 && elf_hash_table (info)->hgot->root.u.def.value == 0)
2329 elf_hash_table (info)->hgot->root.u.def.value = 0x8000;
2330 }
2331
2332 if (htab->elf.sgotplt)
2333 {
2334 struct elf_link_hash_entry *got;
2335 got = elf_link_hash_lookup (elf_hash_table (info),
2336 "_GLOBAL_OFFSET_TABLE_",
2337 FALSE, FALSE, FALSE);
2338
2339 /* Don't allocate .got.plt section if there are no GOT nor PLT
07d6d2b8 2340 entries and there is no refeence to _GLOBAL_OFFSET_TABLE_. */
aa137e4d
NC
2341 if ((got == NULL
2342 || !got->ref_regular_nonweak)
2343 && (htab->elf.sgotplt->size
2344 == GOTPLT_HEADER_SIZE)
2345 && (htab->elf.splt == NULL
2346 || htab->elf.splt->size == 0)
2347 && (htab->elf.sgot == NULL
2348 || (htab->elf.sgot->size
2349 == get_elf_backend_data (output_bfd)->got_header_size)))
2350 htab->elf.sgotplt->size = 0;
2351 }
2352
2353 /* The check_relocs and adjust_dynamic_symbol entry points have
2354 determined the sizes of the various dynamic sections. Allocate
2355 memory for them. */
2356 for (s = dynobj->sections; s != NULL; s = s->next)
2357 {
2358 if ((s->flags & SEC_LINKER_CREATED) == 0)
2359 continue;
2360
2361 if (s == htab->elf.splt
2362 || s == htab->elf.sgot
2363 || s == htab->elf.sgotplt
5474d94f
AM
2364 || s == htab->elf.sdynbss
2365 || s == htab->elf.sdynrelro)
aa137e4d
NC
2366 {
2367 /* Strip this section if we don't need it; see the
2368 comment below. */
2369 }
2370 else if (strncmp (s->name, ".rela", 5) == 0)
2371 {
2372 if (s->size != 0)
2373 {
2374 /* We use the reloc_count field as a counter if we need
2375 to copy relocs into the output file. */
2376 s->reloc_count = 0;
2377 }
2378 }
2379 else
2380 {
2381 /* It's not one of our sections. */
2382 continue;
2383 }
2384
2385 if (s->size == 0)
2386 {
2387 /* If we don't need this section, strip it from the
2388 output file. This is mostly to handle .rela.bss and
2389 .rela.plt. We must create both sections in
2390 create_dynamic_sections, because they must be created
2391 before the linker maps input sections to output
2392 sections. The linker does that before
2393 adjust_dynamic_symbol is called, and it is that
2394 function which decides whether anything needs to go
2395 into these sections. */
2396 s->flags |= SEC_EXCLUDE;
2397 continue;
2398 }
2399
2400 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2401 continue;
2402
2403 /* Allocate memory for the section contents. Zero the memory
2404 for the benefit of .rela.plt, which has 4 unused entries
2405 at the beginning, and we don't want garbage. */
2406 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
2407 if (s->contents == NULL)
2408 return FALSE;
2409 }
2410
2411 if (elf_hash_table (info)->dynamic_sections_created)
2412 {
2413 /* Add some entries to the .dynamic section. We fill in the
2414 values later, in tilepro_elf_finish_dynamic_sections, but we
2415 must add the entries now so that we get the correct size for
2416 the .dynamic section. The DT_DEBUG entry is filled in by the
2417 dynamic linker and used by the debugger. */
2418#define add_dynamic_entry(TAG, VAL) \
2419 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
2420
0e1862bb 2421 if (bfd_link_executable (info))
aa137e4d
NC
2422 {
2423 if (!add_dynamic_entry (DT_DEBUG, 0))
2424 return FALSE;
2425 }
2426
2427 if (htab->elf.srelplt->size != 0)
2428 {
2429 if (!add_dynamic_entry (DT_PLTGOT, 0)
2430 || !add_dynamic_entry (DT_PLTRELSZ, 0)
2431 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
2432 || !add_dynamic_entry (DT_JMPREL, 0))
2433 return FALSE;
2434 }
2435
2436 if (!add_dynamic_entry (DT_RELA, 0)
2437 || !add_dynamic_entry (DT_RELASZ, 0)
2438 || !add_dynamic_entry (DT_RELAENT, TILEPRO_ELF_RELA_BYTES))
2439 return FALSE;
2440
2441 /* If any dynamic relocs apply to a read-only section,
2442 then we need a DT_TEXTREL entry. */
2443 if ((info->flags & DF_TEXTREL) == 0)
63c1f59d 2444 elf_link_hash_traverse (&htab->elf, maybe_set_textrel, info);
aa137e4d
NC
2445
2446 if (info->flags & DF_TEXTREL)
2447 {
2448 if (!add_dynamic_entry (DT_TEXTREL, 0))
2449 return FALSE;
2450 }
2451 }
2452#undef add_dynamic_entry
2453
2454 return TRUE;
2455}
2456\f
2457/* Return the base VMA address which should be subtracted from real addresses
2458 when resolving @dtpoff relocation.
2459 This is PT_TLS segment p_vaddr. */
2460
2461static bfd_vma
2462dtpoff_base (struct bfd_link_info *info)
2463{
2464 /* If tls_sec is NULL, we should have signalled an error already. */
2465 if (elf_hash_table (info)->tls_sec == NULL)
2466 return 0;
2467 return elf_hash_table (info)->tls_sec->vma;
2468}
2469
2470/* Return the relocation value for R_TILEPRO_TLS_TPOFF32. */
2471
2472static bfd_vma
2473tpoff (struct bfd_link_info *info, bfd_vma address)
2474{
2475 struct elf_link_hash_table *htab = elf_hash_table (info);
2476
2477 /* If tls_sec is NULL, we should have signalled an error already. */
2478 if (htab->tls_sec == NULL)
2479 return 0;
2480
2481 return (address - htab->tls_sec->vma);
2482}
2483
6f7be959
WL
2484/* Replace the MASK bits in ADDR with those in INSN, for the next
2485 TILEPRO_BUNDLE_SIZE_IN_BYTES bytes. */
2486
2487static void
2488tilepro_replace_insn (bfd_byte *addr, const bfd_byte *mask,
2489 const bfd_byte *insn)
2490{
2491 int i;
2492 for (i = 0; i < TILEPRO_BUNDLE_SIZE_IN_BYTES; i++)
2493 {
2494 addr[i] = (addr[i] & ~mask[i]) | (insn[i] & mask[i]);
2495 }
2496}
2497
2498/* Mask to extract the bits corresponding to an instruction in a
2499 specific pipe of a bundle. */
2500static const bfd_byte insn_mask_X1[] = {
2501 0x00, 0x00, 0x00, 0x80, 0xff, 0xff, 0xff, 0x7f
2502};
2503
2504/* Mask to extract the bits corresponding to an instruction in a
2505 specific pipe of a bundle, minus the destination operand and the
2506 first source operand. */
2507static const bfd_byte insn_mask_X0_no_dest_no_srca[] = {
2508 0x00, 0xf0, 0xff, 0x7f, 0x00, 0x00, 0x00, 0x00
2509};
2510
2511static const bfd_byte insn_mask_X1_no_dest_no_srca[] = {
2512 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0xff, 0x7f
2513};
2514
2515static const bfd_byte insn_mask_Y0_no_dest_no_srca[] = {
2516 0x00, 0xf0, 0x0f, 0x78, 0x00, 0x00, 0x00, 0x00
2517};
2518
2519static const bfd_byte insn_mask_Y1_no_dest_no_srca[] = {
2520 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x07, 0x78
2521};
2522
2523/* Mask to extract the first source operand of an instruction. */
2524static const bfd_byte srca_mask_X0[] = {
2525 0xc0, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
2526};
2527
2528static const bfd_byte srca_mask_X1[] = {
2529 0x00, 0x00, 0x00, 0x00, 0xe0, 0x07, 0x00, 0x00
2530};
2531
2532/* Various instructions synthesized to support tls references. */
2533
2534/* move r0, r0 in the X1 pipe, used for tls le. */
2535static const bfd_byte insn_tls_le_move_X1[] = {
2536 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x33, 0x08
2537};
2538
2539/* move r0, zero in the X0 and X1 pipe, used for tls le. */
2540static const bfd_byte insn_tls_le_move_zero_X0X1[] = {
2541 0xc0, 0xff, 0xcf, 0x00, 0xe0, 0xff, 0x33, 0x08
2542};
2543
2544/* lw r0, r0 in the X1 pipe, used for tls ie. */
2545static const bfd_byte insn_tls_ie_lw_X1[] = {
2546 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x0b, 0x40
2547};
2548
2549/* add r0, r0, tp in various pipes, used for tls ie. */
2550static const bfd_byte insn_tls_ie_add_X0X1[] = {
2551 0x00, 0x50, 0x0f, 0x00, 0x00, 0xa8, 0x07, 0x08
2552};
2553static const bfd_byte insn_tls_ie_add_Y0Y1[] = {
2554 0x00, 0x50, 0x03, 0x08, 0x00, 0xa8, 0x01, 0x8c
2555};
2556
2557/* move r0, r0 in various pipes, used for tls gd. */
2558static const bfd_byte insn_tls_gd_add_X0X1[] = {
2559 0x00, 0xf0, 0xcf, 0x00, 0x00, 0xf8, 0x33, 0x08
2560};
2561static const bfd_byte insn_tls_gd_add_Y0Y1[] = {
2562 0x00, 0xf0, 0x0b, 0x18, 0x00, 0xf8, 0x05, 0x9c
2563};
2564
aa137e4d
NC
2565/* Relocate an TILEPRO ELF section.
2566
2567 The RELOCATE_SECTION function is called by the new ELF backend linker
2568 to handle the relocations for a section.
2569
2570 The relocs are always passed as Rela structures.
2571
2572 This function is responsible for adjusting the section contents as
2573 necessary, and (if generating a relocatable output file) adjusting
2574 the reloc addend as necessary.
2575
2576 This function does not have to worry about setting the reloc
2577 address or the reloc symbol index.
2578
2579 LOCAL_SYMS is a pointer to the swapped in local symbols.
2580
2581 LOCAL_SECTIONS is an array giving the section in the input file
2582 corresponding to the st_shndx field of each local symbol.
2583
2584 The global hash table entry for the global symbols can be found
2585 via elf_sym_hashes (input_bfd).
2586
2587 When generating relocatable output, this function must handle
2588 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
2589 going to be the section symbol corresponding to the output
2590 section, which means that the addend must be adjusted
2591 accordingly. */
2592
2593static bfd_boolean
2594tilepro_elf_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
07d6d2b8
AM
2595 bfd *input_bfd, asection *input_section,
2596 bfd_byte *contents, Elf_Internal_Rela *relocs,
2597 Elf_Internal_Sym *local_syms,
2598 asection **local_sections)
aa137e4d
NC
2599{
2600 struct tilepro_elf_link_hash_table *htab;
2601 Elf_Internal_Shdr *symtab_hdr;
2602 struct elf_link_hash_entry **sym_hashes;
2603 bfd_vma *local_got_offsets;
535127d2 2604 bfd_vma got_base;
aa137e4d
NC
2605 asection *sreloc;
2606 Elf_Internal_Rela *rel;
2607 Elf_Internal_Rela *relend;
2608 int num_relocs;
2609
2610 htab = tilepro_elf_hash_table (info);
2611 BFD_ASSERT (htab != NULL);
2612 symtab_hdr = &elf_symtab_hdr (input_bfd);
2613 sym_hashes = elf_sym_hashes (input_bfd);
2614 local_got_offsets = elf_local_got_offsets (input_bfd);
2615
535127d2
WL
2616 if (elf_hash_table (info)->hgot == NULL)
2617 got_base = 0;
2618 else
2619 got_base = elf_hash_table (info)->hgot->root.u.def.value;
2620
aa137e4d
NC
2621 sreloc = elf_section_data (input_section)->sreloc;
2622
2623 rel = relocs;
2624 num_relocs = input_section->reloc_count;
2625 relend = relocs + num_relocs;
2626 for (; rel < relend; rel++)
2627 {
2628 int r_type, tls_type;
6f7be959 2629 bfd_boolean is_tls_iele, is_tls_le;
aa137e4d
NC
2630 reloc_howto_type *howto;
2631 unsigned long r_symndx;
2632 struct elf_link_hash_entry *h;
2633 Elf_Internal_Sym *sym;
2634 tilepro_create_func create_func;
2635 asection *sec;
2636 bfd_vma relocation;
2637 bfd_reloc_status_type r;
2638 const char *name;
2639 bfd_vma off;
2640 bfd_boolean is_plt = FALSE;
a3cd202a 2641 bfd_boolean resolved_to_zero;
aa137e4d
NC
2642 bfd_boolean unresolved_reloc;
2643
2644 r_type = ELF32_R_TYPE (rel->r_info);
2645 if (r_type == R_TILEPRO_GNU_VTINHERIT
2646 || r_type == R_TILEPRO_GNU_VTENTRY)
2647 continue;
2648
2649 if ((unsigned int)r_type >= NELEMS(tilepro_elf_howto_table))
47aeb64c 2650 return _bfd_unrecognized_reloc (input_bfd, input_section, r_type);
aa137e4d
NC
2651
2652 howto = tilepro_elf_howto_table + r_type;
2653
2654 /* This is a final link. */
2655 r_symndx = ELF32_R_SYM (rel->r_info);
2656 h = NULL;
2657 sym = NULL;
2658 sec = NULL;
2659 unresolved_reloc = FALSE;
2660 if (r_symndx < symtab_hdr->sh_info)
2661 {
2662 sym = local_syms + r_symndx;
2663 sec = local_sections[r_symndx];
2664 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
2665 }
2666 else
2667 {
62d887d4
L
2668 bfd_boolean warned ATTRIBUTE_UNUSED;
2669 bfd_boolean ignored ATTRIBUTE_UNUSED;
aa137e4d
NC
2670
2671 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
2672 r_symndx, symtab_hdr, sym_hashes,
2673 h, sec, relocation,
62d887d4 2674 unresolved_reloc, warned, ignored);
aa137e4d
NC
2675 if (warned)
2676 {
2677 /* To avoid generating warning messages about truncated
2678 relocations, set the relocation's address to be the same as
2679 the start of this section. */
2680 if (input_section->output_section != NULL)
2681 relocation = input_section->output_section->vma;
2682 else
2683 relocation = 0;
2684 }
2685 }
2686
dbaa2011 2687 if (sec != NULL && discarded_section (sec))
aa137e4d 2688 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
545fd46b 2689 rel, 1, relend, howto, 0, contents);
aa137e4d 2690
0e1862bb 2691 if (bfd_link_relocatable (info))
aa137e4d
NC
2692 continue;
2693
2694 if (h != NULL)
2695 name = h->root.root.string;
2696 else
2697 {
2698 name = (bfd_elf_string_from_elf_section
2699 (input_bfd, symtab_hdr->sh_link, sym->st_name));
2700 if (name == NULL || *name == '\0')
fd361982 2701 name = bfd_section_name (sec);
aa137e4d
NC
2702 }
2703
6f7be959
WL
2704 switch (r_type)
2705 {
2706 case R_TILEPRO_TLS_GD_CALL:
2707 case R_TILEPRO_IMM8_X0_TLS_GD_ADD:
2708 case R_TILEPRO_IMM8_Y0_TLS_GD_ADD:
2709 case R_TILEPRO_IMM8_X1_TLS_GD_ADD:
2710 case R_TILEPRO_IMM8_Y1_TLS_GD_ADD:
2711 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
2712 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
2713 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
2714 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
2715 tls_type = GOT_UNKNOWN;
2716 if (h == NULL && local_got_offsets)
2717 tls_type =
2718 _bfd_tilepro_elf_local_got_tls_type (input_bfd) [r_symndx];
2719 else if (h != NULL)
2720 tls_type = tilepro_elf_hash_entry(h)->tls_type;
2721
1ba1f393
L
2722 is_tls_iele = (bfd_link_executable (info) || tls_type == GOT_TLS_IE);
2723 is_tls_le = is_tls_iele && (bfd_link_executable (info)
6f7be959
WL
2724 && (h == NULL || h->dynindx == -1));
2725
2726 if (r_type == R_TILEPRO_TLS_GD_CALL)
2727 {
2728 if (is_tls_le)
2729 {
2730 /* GD -> LE */
2731 tilepro_replace_insn (contents + rel->r_offset,
2732 insn_mask_X1, insn_tls_le_move_X1);
2733 continue;
2734 }
2735 else if (is_tls_iele)
2736 {
2737 /* GD -> IE */
2738 tilepro_replace_insn (contents + rel->r_offset,
2739 insn_mask_X1, insn_tls_ie_lw_X1);
2740 continue;
2741 }
2742
2743 /* GD -> GD */
2744 h = (struct elf_link_hash_entry *)
2745 bfd_link_hash_lookup (info->hash, "__tls_get_addr", FALSE,
2746 FALSE, TRUE);
2747 BFD_ASSERT (h != NULL);
2748 r_type = R_TILEPRO_JOFFLONG_X1_PLT;
2749 howto = tilepro_elf_howto_table + r_type;
2750 }
2751 else if (r_type == R_TILEPRO_IMM16_X0_TLS_GD_HA
2752 || r_type == R_TILEPRO_IMM16_X0_TLS_IE_HA)
2753 {
2754 if (is_tls_le)
2755 tilepro_replace_insn (contents + rel->r_offset, srca_mask_X0,
2756 insn_tls_le_move_zero_X0X1);
2757 }
2758 else if (r_type == R_TILEPRO_IMM16_X1_TLS_GD_HA
2759 || r_type == R_TILEPRO_IMM16_X1_TLS_IE_HA)
2760 {
2761 if (is_tls_le)
2762 tilepro_replace_insn (contents + rel->r_offset, srca_mask_X1,
2763 insn_tls_le_move_zero_X0X1);
2764 }
2765 else
2766 {
2767 const bfd_byte *mask = NULL;
2768 const bfd_byte *add_insn = NULL;
2769
2770 switch (r_type)
2771 {
2772 case R_TILEPRO_IMM8_X0_TLS_GD_ADD:
2773 add_insn = is_tls_iele ? insn_tls_ie_add_X0X1
2774 : insn_tls_gd_add_X0X1;
2775 mask = insn_mask_X0_no_dest_no_srca;
2776 break;
2777 case R_TILEPRO_IMM8_X1_TLS_GD_ADD:
2778 add_insn = is_tls_iele ? insn_tls_ie_add_X0X1
2779 : insn_tls_gd_add_X0X1;
2780 mask = insn_mask_X1_no_dest_no_srca;
2781 break;
2782 case R_TILEPRO_IMM8_Y0_TLS_GD_ADD:
2783 add_insn = is_tls_iele ? insn_tls_ie_add_Y0Y1
2784 : insn_tls_gd_add_Y0Y1;
2785 mask = insn_mask_Y0_no_dest_no_srca;
2786 break;
2787 case R_TILEPRO_IMM8_Y1_TLS_GD_ADD:
2788 add_insn = is_tls_iele ? insn_tls_ie_add_Y0Y1
2789 : insn_tls_gd_add_Y0Y1;
2790 mask = insn_mask_Y1_no_dest_no_srca;
2791 break;
2792 }
2793
2794 tilepro_replace_insn (contents + rel->r_offset, mask, add_insn);
2795
2796 continue;
2797 }
2798 break;
2799 case R_TILEPRO_TLS_IE_LOAD:
1ba1f393 2800 if (bfd_link_executable (info) && (h == NULL || h->dynindx == -1))
6f7be959
WL
2801 /* IE -> LE */
2802 tilepro_replace_insn (contents + rel->r_offset,
2803 insn_mask_X1_no_dest_no_srca,
2804 insn_tls_le_move_X1);
2805 else
2806 /* IE -> IE */
2807 tilepro_replace_insn (contents + rel->r_offset,
2808 insn_mask_X1_no_dest_no_srca,
2809 insn_tls_ie_lw_X1);
2810 continue;
2811 break;
2812 default:
2813 break;
2814 }
2815
a3cd202a
L
2816 resolved_to_zero = (h != NULL
2817 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
2818
aa137e4d
NC
2819 switch (r_type)
2820 {
07d6d2b8
AM
2821 case R_TILEPRO_IMM16_X0_GOT:
2822 case R_TILEPRO_IMM16_X1_GOT:
2823 case R_TILEPRO_IMM16_X0_GOT_LO:
2824 case R_TILEPRO_IMM16_X1_GOT_LO:
2825 case R_TILEPRO_IMM16_X0_GOT_HI:
2826 case R_TILEPRO_IMM16_X1_GOT_HI:
2827 case R_TILEPRO_IMM16_X0_GOT_HA:
2828 case R_TILEPRO_IMM16_X1_GOT_HA:
aa137e4d
NC
2829 /* Relocation is to the entry for this symbol in the global
2830 offset table. */
2831 if (htab->elf.sgot == NULL)
2832 abort ();
2833
2834 if (h != NULL)
2835 {
2836 bfd_boolean dyn;
2837
2838 off = h->got.offset;
2839 BFD_ASSERT (off != (bfd_vma) -1);
2840 dyn = elf_hash_table (info)->dynamic_sections_created;
2841
0e1862bb
L
2842 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
2843 bfd_link_pic (info),
2844 h)
2845 || (bfd_link_pic (info)
aa137e4d
NC
2846 && SYMBOL_REFERENCES_LOCAL (info, h)))
2847 {
2848 /* This is actually a static link, or it is a
2849 -Bsymbolic link and the symbol is defined
2850 locally, or the symbol was forced to be local
2851 because of a version file. We must initialize
2852 this entry in the global offset table. Since the
2853 offset must always be a multiple
2854 of 4 for 32-bit, we use the least significant bit
2855 to record whether we have initialized it already.
2856
2857 When doing a dynamic link, we create a .rela.got
2858 relocation entry to initialize the value. This
2859 is done in the finish_dynamic_symbol routine. */
2860 if ((off & 1) != 0)
2861 off &= ~1;
2862 else
2863 {
2864 bfd_put_32 (output_bfd, relocation,
2865 htab->elf.sgot->contents + off);
2866 h->got.offset |= 1;
2867 }
2868 }
2869 else
2870 unresolved_reloc = FALSE;
2871 }
2872 else
2873 {
2874 BFD_ASSERT (local_got_offsets != NULL
2875 && local_got_offsets[r_symndx] != (bfd_vma) -1);
2876
2877 off = local_got_offsets[r_symndx];
2878
2879 /* The offset must always be a multiple of 4 on 32-bit.
07d6d2b8 2880 We use the least significant bit to record
aa137e4d
NC
2881 whether we have already processed this entry. */
2882 if ((off & 1) != 0)
2883 off &= ~1;
2884 else
2885 {
0e1862bb 2886 if (bfd_link_pic (info))
aa137e4d
NC
2887 {
2888 asection *s;
2889 Elf_Internal_Rela outrel;
2890
2891 /* We need to generate a R_TILEPRO_RELATIVE reloc
2892 for the dynamic linker. */
2893 s = htab->elf.srelgot;
2894 BFD_ASSERT (s != NULL);
2895
2896 outrel.r_offset = (htab->elf.sgot->output_section->vma
2897 + htab->elf.sgot->output_offset
2898 + off);
2899 outrel.r_info = ELF32_R_INFO (0, R_TILEPRO_RELATIVE);
2900 outrel.r_addend = relocation;
2901 relocation = 0;
2902 tilepro_elf_append_rela_32 (output_bfd, s, &outrel);
2903 }
2904
2905 bfd_put_32 (output_bfd, relocation,
2906 htab->elf.sgot->contents + off);
2907 local_got_offsets[r_symndx] |= 1;
2908 }
2909 }
535127d2 2910 relocation = off - got_base;
aa137e4d
NC
2911 break;
2912
07d6d2b8 2913 case R_TILEPRO_JOFFLONG_X1_PLT:
aa137e4d
NC
2914 /* Relocation is to the entry for this symbol in the
2915 procedure linkage table. */
07d6d2b8 2916 BFD_ASSERT (h != NULL);
aa137e4d
NC
2917
2918 if (h->plt.offset == (bfd_vma) -1 || htab->elf.splt == NULL)
2919 {
2920 /* We didn't make a PLT entry for this symbol. This
2921 happens when statically linking PIC code, or when
2922 using -Bsymbolic. */
2923 break;
2924 }
2925
2926 relocation = (htab->elf.splt->output_section->vma
2927 + htab->elf.splt->output_offset
2928 + h->plt.offset);
2929 unresolved_reloc = FALSE;
2930 break;
2931
07d6d2b8
AM
2932 case R_TILEPRO_32_PCREL:
2933 case R_TILEPRO_16_PCREL:
2934 case R_TILEPRO_8_PCREL:
2935 case R_TILEPRO_IMM16_X0_PCREL:
2936 case R_TILEPRO_IMM16_X1_PCREL:
2937 case R_TILEPRO_IMM16_X0_LO_PCREL:
2938 case R_TILEPRO_IMM16_X1_LO_PCREL:
2939 case R_TILEPRO_IMM16_X0_HI_PCREL:
2940 case R_TILEPRO_IMM16_X1_HI_PCREL:
2941 case R_TILEPRO_IMM16_X0_HA_PCREL:
2942 case R_TILEPRO_IMM16_X1_HA_PCREL:
aa137e4d
NC
2943 if (h != NULL
2944 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
2945 break;
2946 /* Fall through. */
07d6d2b8
AM
2947 case R_TILEPRO_32:
2948 case R_TILEPRO_16:
2949 case R_TILEPRO_8:
2950 case R_TILEPRO_LO16:
2951 case R_TILEPRO_HI16:
2952 case R_TILEPRO_HA16:
2953 case R_TILEPRO_COPY:
2954 case R_TILEPRO_GLOB_DAT:
2955 case R_TILEPRO_JMP_SLOT:
2956 case R_TILEPRO_RELATIVE:
2957 case R_TILEPRO_BROFF_X1:
2958 case R_TILEPRO_JOFFLONG_X1:
2959 case R_TILEPRO_IMM8_X0:
2960 case R_TILEPRO_IMM8_Y0:
2961 case R_TILEPRO_IMM8_X1:
2962 case R_TILEPRO_IMM8_Y1:
2963 case R_TILEPRO_DEST_IMM8_X1:
2964 case R_TILEPRO_MT_IMM15_X1:
2965 case R_TILEPRO_MF_IMM15_X1:
2966 case R_TILEPRO_IMM16_X0:
2967 case R_TILEPRO_IMM16_X1:
2968 case R_TILEPRO_IMM16_X0_LO:
2969 case R_TILEPRO_IMM16_X1_LO:
2970 case R_TILEPRO_IMM16_X0_HI:
2971 case R_TILEPRO_IMM16_X1_HI:
2972 case R_TILEPRO_IMM16_X0_HA:
2973 case R_TILEPRO_IMM16_X1_HA:
2974 case R_TILEPRO_MMSTART_X0:
2975 case R_TILEPRO_MMEND_X0:
2976 case R_TILEPRO_MMSTART_X1:
2977 case R_TILEPRO_MMEND_X1:
2978 case R_TILEPRO_SHAMT_X0:
2979 case R_TILEPRO_SHAMT_X1:
2980 case R_TILEPRO_SHAMT_Y0:
2981 case R_TILEPRO_SHAMT_Y1:
aa137e4d
NC
2982 if ((input_section->flags & SEC_ALLOC) == 0)
2983 break;
2984
0e1862bb 2985 if ((bfd_link_pic (info)
aa137e4d 2986 && (h == NULL
a3cd202a
L
2987 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2988 && !resolved_to_zero)
aa137e4d
NC
2989 || h->root.type != bfd_link_hash_undefweak)
2990 && (! howto->pc_relative
2991 || !SYMBOL_CALLS_LOCAL (info, h)))
0e1862bb 2992 || (!bfd_link_pic (info)
aa137e4d
NC
2993 && h != NULL
2994 && h->dynindx != -1
2995 && !h->non_got_ref
2996 && ((h->def_dynamic
2997 && !h->def_regular)
2998 || h->root.type == bfd_link_hash_undefweak
2999 || h->root.type == bfd_link_hash_undefined)))
3000 {
3001 Elf_Internal_Rela outrel;
3002 bfd_boolean skip, relocate = FALSE;
3003
3004 /* When generating a shared object, these relocations
3005 are copied into the output file to be resolved at run
3006 time. */
3007
3008 BFD_ASSERT (sreloc != NULL);
3009
3010 skip = FALSE;
3011
3012 outrel.r_offset =
3013 _bfd_elf_section_offset (output_bfd, info, input_section,
3014 rel->r_offset);
3015 if (outrel.r_offset == (bfd_vma) -1)
3016 skip = TRUE;
3017 else if (outrel.r_offset == (bfd_vma) -2)
3018 skip = TRUE, relocate = TRUE;
3019 outrel.r_offset += (input_section->output_section->vma
3020 + input_section->output_offset);
3021
3022 switch (r_type)
3023 {
07d6d2b8
AM
3024 case R_TILEPRO_32_PCREL:
3025 case R_TILEPRO_16_PCREL:
3026 case R_TILEPRO_8_PCREL:
aa137e4d
NC
3027 /* If the symbol is not dynamic, we should not keep
3028 a dynamic relocation. But an .rela.* slot has been
3029 allocated for it, output R_TILEPRO_NONE.
3030 FIXME: Add code tracking needed dynamic relocs as
3031 e.g. i386 has. */
3032 if (h->dynindx == -1)
3033 skip = TRUE, relocate = TRUE;
3034 break;
3035 }
3036
3037 if (skip)
3038 memset (&outrel, 0, sizeof outrel);
3039 /* h->dynindx may be -1 if the symbol was marked to
3040 become local. */
3041 else if (h != NULL &&
3042 h->dynindx != -1
3043 && (! is_plt
0e1862bb 3044 || !bfd_link_pic (info)
aa137e4d
NC
3045 || !SYMBOLIC_BIND (info, h)
3046 || !h->def_regular))
3047 {
3048 BFD_ASSERT (h->dynindx != -1);
3049 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
3050 outrel.r_addend = rel->r_addend;
3051 }
3052 else
3053 {
3054 if (r_type == R_TILEPRO_32)
3055 {
3056 outrel.r_info = ELF32_R_INFO (0, R_TILEPRO_RELATIVE);
3057 outrel.r_addend = relocation + rel->r_addend;
3058 }
3059 else
3060 {
3061 long indx;
3062
3063 outrel.r_addend = relocation + rel->r_addend;
3064
3065 if (is_plt)
3066 sec = htab->elf.splt;
3067
3068 if (bfd_is_abs_section (sec))
3069 indx = 0;
3070 else if (sec == NULL || sec->owner == NULL)
3071 {
3072 bfd_set_error (bfd_error_bad_value);
3073 return FALSE;
3074 }
3075 else
3076 {
3077 asection *osec;
3078
3079 /* We are turning this relocation into one
3080 against a section symbol. It would be
3081 proper to subtract the symbol's value,
3082 osec->vma, from the emitted reloc addend,
3083 but ld.so expects buggy relocs. */
3084 osec = sec->output_section;
3085 indx = elf_section_data (osec)->dynindx;
3086
3087 if (indx == 0)
3088 {
3089 osec = htab->elf.text_index_section;
3090 indx = elf_section_data (osec)->dynindx;
3091 }
3092
3093 /* FIXME: we really should be able to link non-pic
3094 shared libraries. */
3095 if (indx == 0)
3096 {
3097 BFD_FAIL ();
4eca0228 3098 _bfd_error_handler
871b3ab2 3099 (_("%pB: probably compiled without -fPIC?"),
aa137e4d
NC
3100 input_bfd);
3101 bfd_set_error (bfd_error_bad_value);
3102 return FALSE;
3103 }
3104 }
3105
3106 outrel.r_info = ELF32_R_INFO (indx, r_type);
3107 }
3108 }
3109
3110 tilepro_elf_append_rela_32 (output_bfd, sreloc, &outrel);
3111
3112 /* This reloc will be computed at runtime, so there's no
3113 need to do anything now. */
3114 if (! relocate)
3115 continue;
3116 }
3117 break;
3118
07d6d2b8
AM
3119 case R_TILEPRO_IMM16_X0_TLS_LE:
3120 case R_TILEPRO_IMM16_X1_TLS_LE:
3121 case R_TILEPRO_IMM16_X0_TLS_LE_LO:
3122 case R_TILEPRO_IMM16_X1_TLS_LE_LO:
3123 case R_TILEPRO_IMM16_X0_TLS_LE_HI:
3124 case R_TILEPRO_IMM16_X1_TLS_LE_HI:
3125 case R_TILEPRO_IMM16_X0_TLS_LE_HA:
3126 case R_TILEPRO_IMM16_X1_TLS_LE_HA:
1ba1f393 3127 if (!bfd_link_executable (info))
6f7be959
WL
3128 {
3129 Elf_Internal_Rela outrel;
3130 bfd_boolean skip;
3131
3132 BFD_ASSERT (sreloc != NULL);
3133 skip = FALSE;
3134 outrel.r_offset =
3135 _bfd_elf_section_offset (output_bfd, info, input_section,
3136 rel->r_offset);
3137 if (outrel.r_offset == (bfd_vma) -1)
3138 skip = TRUE;
3139 else if (outrel.r_offset == (bfd_vma) -2)
3140 skip = TRUE;
3141 outrel.r_offset += (input_section->output_section->vma
3142 + input_section->output_offset);
3143 if (skip)
3144 memset (&outrel, 0, sizeof outrel);
3145 else
3146 {
3147 outrel.r_info = ELF32_R_INFO (0, r_type);
3148 outrel.r_addend = relocation - dtpoff_base (info)
3149 + rel->r_addend;
3150 }
3151
3152 tilepro_elf_append_rela_32 (output_bfd, sreloc, &outrel);
3153 continue;
3154 }
3155 relocation = tpoff (info, relocation);
3156 break;
3157
07d6d2b8
AM
3158 case R_TILEPRO_IMM16_X0_TLS_GD:
3159 case R_TILEPRO_IMM16_X1_TLS_GD:
3160 case R_TILEPRO_IMM16_X0_TLS_GD_LO:
3161 case R_TILEPRO_IMM16_X1_TLS_GD_LO:
3162 case R_TILEPRO_IMM16_X0_TLS_GD_HI:
3163 case R_TILEPRO_IMM16_X1_TLS_GD_HI:
3164 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
3165 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
3166 case R_TILEPRO_IMM16_X0_TLS_IE:
3167 case R_TILEPRO_IMM16_X1_TLS_IE:
3168 case R_TILEPRO_IMM16_X0_TLS_IE_LO:
3169 case R_TILEPRO_IMM16_X1_TLS_IE_LO:
3170 case R_TILEPRO_IMM16_X0_TLS_IE_HI:
3171 case R_TILEPRO_IMM16_X1_TLS_IE_HI:
3172 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
3173 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
6f7be959 3174 r_type = tilepro_elf_tls_transition (info, r_type, h == NULL);
07d6d2b8 3175 tls_type = GOT_UNKNOWN;
aa137e4d
NC
3176 if (h == NULL && local_got_offsets)
3177 tls_type
3178 = _bfd_tilepro_elf_local_got_tls_type (input_bfd) [r_symndx];
3179 else if (h != NULL)
3180 {
3181 tls_type = tilepro_elf_hash_entry(h)->tls_type;
1ba1f393
L
3182 if (bfd_link_executable (info)
3183 && h->dynindx == -1
3184 && tls_type == GOT_TLS_IE)
6f7be959 3185 r_type = tilepro_tls_translate_to_le (r_type);
aa137e4d
NC
3186 }
3187 if (tls_type == GOT_TLS_IE)
6f7be959
WL
3188 r_type = tilepro_tls_translate_to_ie (r_type);
3189
3190 if (r_type == R_TILEPRO_IMM16_X0_TLS_LE
3191 || r_type == R_TILEPRO_IMM16_X1_TLS_LE
3192 || r_type == R_TILEPRO_IMM16_X0_TLS_LE_LO
3193 || r_type == R_TILEPRO_IMM16_X1_TLS_LE_LO
3194 || r_type == R_TILEPRO_IMM16_X0_TLS_LE_HI
3195 || r_type == R_TILEPRO_IMM16_X1_TLS_LE_HI
3196 || r_type == R_TILEPRO_IMM16_X0_TLS_LE_HA
3197 || r_type == R_TILEPRO_IMM16_X1_TLS_LE_HA)
3198 {
3199 relocation = tpoff (info, relocation);
3200 break;
3201 }
aa137e4d
NC
3202
3203 if (h != NULL)
3204 {
3205 off = h->got.offset;
3206 h->got.offset |= 1;
3207 }
3208 else
3209 {
3210 BFD_ASSERT (local_got_offsets != NULL);
3211 off = local_got_offsets[r_symndx];
3212 local_got_offsets[r_symndx] |= 1;
3213 }
3214
3215 if (htab->elf.sgot == NULL)
3216 abort ();
3217
3218 if ((off & 1) != 0)
3219 off &= ~1;
3220 else
3221 {
3222 Elf_Internal_Rela outrel;
3223 int indx = 0;
3224 bfd_boolean need_relocs = FALSE;
3225
3226 if (htab->elf.srelgot == NULL)
3227 abort ();
3228
3229 if (h != NULL)
3230 {
07d6d2b8
AM
3231 bfd_boolean dyn;
3232 dyn = htab->elf.dynamic_sections_created;
aa137e4d 3233
0e1862bb
L
3234 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
3235 bfd_link_pic (info),
3236 h)
3237 && (!bfd_link_pic (info)
aa137e4d
NC
3238 || !SYMBOL_REFERENCES_LOCAL (info, h)))
3239 {
3240 indx = h->dynindx;
3241 }
3242 }
3243
3244 /* The GOT entries have not been initialized yet. Do it
07d6d2b8 3245 now, and emit any relocations. */
0e1862bb 3246 if ((bfd_link_pic (info) || indx != 0)
aa137e4d
NC
3247 && (h == NULL
3248 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3249 || h->root.type != bfd_link_hash_undefweak))
3250 need_relocs = TRUE;
3251
07d6d2b8
AM
3252 switch (r_type)
3253 {
3254 case R_TILEPRO_IMM16_X0_TLS_IE:
3255 case R_TILEPRO_IMM16_X1_TLS_IE:
3256 case R_TILEPRO_IMM16_X0_TLS_IE_LO:
3257 case R_TILEPRO_IMM16_X1_TLS_IE_LO:
3258 case R_TILEPRO_IMM16_X0_TLS_IE_HI:
3259 case R_TILEPRO_IMM16_X1_TLS_IE_HI:
3260 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
3261 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
aa137e4d 3262 if (need_relocs) {
07d6d2b8
AM
3263 bfd_put_32 (output_bfd, 0, htab->elf.sgot->contents + off);
3264 outrel.r_offset = (htab->elf.sgot->output_section->vma
aa137e4d 3265 + htab->elf.sgot->output_offset + off);
07d6d2b8 3266 outrel.r_addend = 0;
aa137e4d 3267 if (indx == 0)
07d6d2b8 3268 outrel.r_addend = relocation - dtpoff_base (info);
aa137e4d
NC
3269 outrel.r_info = ELF32_R_INFO (indx, R_TILEPRO_TLS_TPOFF32);
3270 tilepro_elf_append_rela_32 (output_bfd, htab->elf.srelgot,
3271 &outrel);
07d6d2b8 3272 } else {
aa137e4d
NC
3273 bfd_put_32 (output_bfd, tpoff (info, relocation),
3274 htab->elf.sgot->contents + off);
07d6d2b8
AM
3275 }
3276 break;
aa137e4d
NC
3277
3278 case R_TILEPRO_IMM16_X0_TLS_GD:
3279 case R_TILEPRO_IMM16_X1_TLS_GD:
3280 case R_TILEPRO_IMM16_X0_TLS_GD_LO:
3281 case R_TILEPRO_IMM16_X1_TLS_GD_LO:
3282 case R_TILEPRO_IMM16_X0_TLS_GD_HI:
3283 case R_TILEPRO_IMM16_X1_TLS_GD_HI:
3284 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
3285 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
3286 if (need_relocs) {
07d6d2b8 3287 outrel.r_offset = (htab->elf.sgot->output_section->vma
aa137e4d 3288 + htab->elf.sgot->output_offset + off);
07d6d2b8
AM
3289 outrel.r_addend = 0;
3290 outrel.r_info = ELF32_R_INFO (indx, R_TILEPRO_TLS_DTPMOD32);
3291 bfd_put_32 (output_bfd, 0, htab->elf.sgot->contents + off);
3292 tilepro_elf_append_rela_32 (output_bfd, htab->elf.srelgot,
aa137e4d
NC
3293 &outrel);
3294 if (indx == 0)
07d6d2b8
AM
3295 {
3296 BFD_ASSERT (! unresolved_reloc);
3297 bfd_put_32 (output_bfd,
aa137e4d
NC
3298 relocation - dtpoff_base (info),
3299 (htab->elf.sgot->contents + off +
3300 TILEPRO_BYTES_PER_WORD));
07d6d2b8 3301 }
aa137e4d 3302 else
07d6d2b8
AM
3303 {
3304 bfd_put_32 (output_bfd, 0,
aa137e4d
NC
3305 (htab->elf.sgot->contents + off +
3306 TILEPRO_BYTES_PER_WORD));
07d6d2b8 3307 outrel.r_info = ELF32_R_INFO (indx,
aa137e4d
NC
3308 R_TILEPRO_TLS_DTPOFF32);
3309 outrel.r_offset += TILEPRO_BYTES_PER_WORD;
07d6d2b8 3310 tilepro_elf_append_rela_32 (output_bfd,
aa137e4d 3311 htab->elf.srelgot, &outrel);
07d6d2b8
AM
3312 }
3313 }
aa137e4d
NC
3314
3315 else {
3316 /* If we are not emitting relocations for a
07d6d2b8
AM
3317 general dynamic reference, then we must be in a
3318 static link or an executable link with the
3319 symbol binding locally. Mark it as belonging
3320 to module 1, the executable. */
aa137e4d
NC
3321 bfd_put_32 (output_bfd, 1,
3322 htab->elf.sgot->contents + off );
3323 bfd_put_32 (output_bfd, relocation - dtpoff_base (info),
3324 htab->elf.sgot->contents + off +
3325 TILEPRO_BYTES_PER_WORD);
3326 }
07d6d2b8
AM
3327 break;
3328 }
aa137e4d
NC
3329 }
3330
3331 if (off >= (bfd_vma) -2)
3332 abort ();
3333
535127d2 3334 relocation = off - got_base;
aa137e4d
NC
3335 unresolved_reloc = FALSE;
3336 howto = tilepro_elf_howto_table + r_type;
3337 break;
3338
3339 default:
3340 break;
3341 }
3342
3343 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
3344 because such sections are not SEC_ALLOC and thus ld.so will
3345 not process them. */
3346 if (unresolved_reloc
3347 && !((input_section->flags & SEC_DEBUGGING) != 0
1d5316ab
AM
3348 && h->def_dynamic)
3349 && _bfd_elf_section_offset (output_bfd, info, input_section,
3350 rel->r_offset) != (bfd_vma) -1)
4eca0228 3351 _bfd_error_handler
695344c0 3352 /* xgettext:c-format */
2dcf00ce
AM
3353 (_("%pB(%pA+%#" PRIx64 "): "
3354 "unresolvable %s relocation against symbol `%s'"),
aa137e4d
NC
3355 input_bfd,
3356 input_section,
2dcf00ce 3357 (uint64_t) rel->r_offset,
aa137e4d
NC
3358 howto->name,
3359 h->root.root.string);
3360
3361 r = bfd_reloc_continue;
3362
3363 /* For the _HA types, we add 0x8000 so that if bit 15 is set,
3364 * we will increment bit 16. The howto->rightshift takes care
3365 * of the rest for us. */
3366 switch (r_type)
3367 {
3368 case R_TILEPRO_HA16:
3369 case R_TILEPRO_IMM16_X0_HA:
3370 case R_TILEPRO_IMM16_X1_HA:
3371 case R_TILEPRO_IMM16_X0_HA_PCREL:
3372 case R_TILEPRO_IMM16_X1_HA_PCREL:
3373 case R_TILEPRO_IMM16_X0_GOT_HA:
3374 case R_TILEPRO_IMM16_X1_GOT_HA:
3375 case R_TILEPRO_IMM16_X0_TLS_GD_HA:
3376 case R_TILEPRO_IMM16_X1_TLS_GD_HA:
3377 case R_TILEPRO_IMM16_X0_TLS_IE_HA:
3378 case R_TILEPRO_IMM16_X1_TLS_IE_HA:
07d6d2b8
AM
3379 relocation += 0x8000;
3380 break;
aa137e4d
NC
3381 }
3382
3383 /* Get the operand creation function, if any. */
3384 create_func = reloc_to_create_func[r_type];
3385 if (create_func == NULL)
3386 {
07d6d2b8
AM
3387 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
3388 contents, rel->r_offset,
3389 relocation, rel->r_addend);
aa137e4d
NC
3390 }
3391 else
3392 {
07d6d2b8
AM
3393 if (howto->pc_relative)
3394 {
3395 relocation -=
3396 input_section->output_section->vma + input_section->output_offset;
3397 if (howto->pcrel_offset)
3398 relocation -= rel->r_offset;
3399 }
3400
3401 bfd_byte *data;
3402
3403 /* Add the relocation addend if any to the final target value */
3404 relocation += rel->r_addend;
3405
3406 /* Do basic range checking */
3407 r = bfd_check_overflow (howto->complain_on_overflow,
3408 howto->bitsize,
3409 howto->rightshift,
3410 32,
3411 relocation);
3412
3413 /*
3414 * Write the relocated value out into the raw section data.
3415 * Don't put a relocation out in the .rela section.
3416 */
3417 tilepro_bundle_bits mask = create_func(-1);
3418 tilepro_bundle_bits value = create_func(relocation >> howto->rightshift);
3419
3420 /* Only touch bytes while the mask is not 0, so we
3421 don't write to out of bounds memory if this is actually
3422 a 16-bit switch instruction. */
3423 for (data = contents + rel->r_offset; mask != 0; data++)
3424 {
3425 bfd_byte byte_mask = (bfd_byte)mask;
3426 *data = (*data & ~byte_mask) | ((bfd_byte)value & byte_mask);
3427 mask >>= 8;
3428 value >>= 8;
3429 }
aa137e4d
NC
3430 }
3431
3432 if (r != bfd_reloc_ok)
3433 {
3434 const char *msg = NULL;
3435
3436 switch (r)
3437 {
3438 case bfd_reloc_overflow:
1a72702b 3439 (*info->callbacks->reloc_overflow)
aa137e4d
NC
3440 (info, (h ? &h->root : NULL), name, howto->name,
3441 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
3442 break;
3443
3444 case bfd_reloc_undefined:
1a72702b
AM
3445 (*info->callbacks->undefined_symbol)
3446 (info, name, input_bfd, input_section, rel->r_offset, TRUE);
aa137e4d
NC
3447 break;
3448
3449 case bfd_reloc_outofrange:
3450 msg = _("internal error: out of range error");
3451 break;
3452
3453 case bfd_reloc_notsupported:
3454 msg = _("internal error: unsupported relocation error");
3455 break;
3456
3457 case bfd_reloc_dangerous:
3458 msg = _("internal error: dangerous relocation");
3459 break;
3460
3461 default:
3462 msg = _("internal error: unknown error");
3463 break;
3464 }
3465
3466 if (msg)
1a72702b
AM
3467 (*info->callbacks->warning) (info, msg, name, input_bfd,
3468 input_section, rel->r_offset);
aa137e4d
NC
3469 }
3470 }
3471
3472 return TRUE;
3473}
3474
3475/* Finish up dynamic symbol handling. We set the contents of various
3476 dynamic sections here. */
3477
3478static bfd_boolean
3479tilepro_elf_finish_dynamic_symbol (bfd *output_bfd,
3480 struct bfd_link_info *info,
3481 struct elf_link_hash_entry *h,
3482 Elf_Internal_Sym *sym)
3483{
3484 struct tilepro_elf_link_hash_table *htab;
3485
3486 htab = tilepro_elf_hash_table (info);
3487 BFD_ASSERT (htab != NULL);
3488
3489 if (h->plt.offset != (bfd_vma) -1)
3490 {
3491 asection *splt;
3492 asection *srela;
3493 asection *sgotplt;
3494 Elf_Internal_Rela rela;
3495 bfd_byte *loc;
3496 bfd_vma r_offset;
3497
3498 int rela_index;
3499
3500 /* This symbol has an entry in the PLT. Set it up. */
3501
3502 BFD_ASSERT (h->dynindx != -1);
3503
3504 splt = htab->elf.splt;
3505 srela = htab->elf.srelplt;
3506 sgotplt = htab->elf.sgotplt;
3507
3508 if (splt == NULL || srela == NULL)
3509 abort ();
3510
3511 /* Fill in the entry in the procedure linkage table. */
3512 rela_index = tilepro_plt_entry_build (splt, sgotplt, h->plt.offset,
3513 &r_offset);
3514
3515 /* Fill in the entry in the global offset table, which initially points
3516 to the beginning of the plt. */
3517 bfd_put_32 (output_bfd, splt->output_section->vma + splt->output_offset,
3518 sgotplt->contents + r_offset);
3519
3520 /* Fill in the entry in the .rela.plt section. */
3521 rela.r_offset = (sgotplt->output_section->vma
3522 + sgotplt->output_offset
3523 + r_offset);
3524 rela.r_addend = 0;
3525 rela.r_info = ELF32_R_INFO (h->dynindx, R_TILEPRO_JMP_SLOT);
3526
3527 loc = srela->contents + rela_index * sizeof (Elf32_External_Rela);
3528 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
3529
3530 if (!h->def_regular)
3531 {
3532 /* Mark the symbol as undefined, rather than as defined in
3533 the .plt section. Leave the value alone. */
3534 sym->st_shndx = SHN_UNDEF;
3535 /* If the symbol is weak, we do need to clear the value.
3536 Otherwise, the PLT entry would provide a definition for
3537 the symbol even if the symbol wasn't defined anywhere,
3538 and so the symbol would never be NULL. */
3539 if (!h->ref_regular_nonweak)
3540 sym->st_value = 0;
3541 }
3542 }
3543
3544 if (h->got.offset != (bfd_vma) -1
3545 && tilepro_elf_hash_entry(h)->tls_type != GOT_TLS_GD
3546 && tilepro_elf_hash_entry(h)->tls_type != GOT_TLS_IE)
3547 {
3548 asection *sgot;
3549 asection *srela;
3550 Elf_Internal_Rela rela;
3551
3552 /* This symbol has an entry in the GOT. Set it up. */
3553
3554 sgot = htab->elf.sgot;
3555 srela = htab->elf.srelgot;
3556 BFD_ASSERT (sgot != NULL && srela != NULL);
3557
3558 rela.r_offset = (sgot->output_section->vma
3559 + sgot->output_offset
3560 + (h->got.offset &~ (bfd_vma) 1));
3561
3562 /* If this is a -Bsymbolic link, and the symbol is defined
3563 locally, we just want to emit a RELATIVE reloc. Likewise if
3564 the symbol was forced to be local because of a version file.
3565 The entry in the global offset table will already have been
3566 initialized in the relocate_section function. */
0e1862bb 3567 if (bfd_link_pic (info)
aa137e4d
NC
3568 && (info->symbolic || h->dynindx == -1)
3569 && h->def_regular)
3570 {
3571 asection *sec = h->root.u.def.section;
3572 rela.r_info = ELF32_R_INFO (0, R_TILEPRO_RELATIVE);
3573 rela.r_addend = (h->root.u.def.value
3574 + sec->output_section->vma
3575 + sec->output_offset);
3576 }
3577 else
3578 {
3579 rela.r_info = ELF32_R_INFO (h->dynindx, R_TILEPRO_GLOB_DAT);
3580 rela.r_addend = 0;
3581 }
3582
3583 bfd_put_32 (output_bfd, 0,
3584 sgot->contents + (h->got.offset & ~(bfd_vma) 1));
3585 tilepro_elf_append_rela_32 (output_bfd, srela, &rela);
3586 }
3587
3588 if (h->needs_copy)
3589 {
3590 asection *s;
3591 Elf_Internal_Rela rela;
3592
3593 /* This symbols needs a copy reloc. Set it up. */
3594 BFD_ASSERT (h->dynindx != -1);
3595
aa137e4d
NC
3596 rela.r_offset = (h->root.u.def.value
3597 + h->root.u.def.section->output_section->vma
3598 + h->root.u.def.section->output_offset);
3599 rela.r_info = ELF32_R_INFO (h->dynindx, R_TILEPRO_COPY);
3600 rela.r_addend = 0;
afbf7e8e 3601 if (h->root.u.def.section == htab->elf.sdynrelro)
5474d94f
AM
3602 s = htab->elf.sreldynrelro;
3603 else
3604 s = htab->elf.srelbss;
aa137e4d
NC
3605 tilepro_elf_append_rela_32 (output_bfd, s, &rela);
3606 }
3607
3608 /* Mark some specially defined symbols as absolute. */
9637f6ef 3609 if (h == htab->elf.hdynamic
aa137e4d
NC
3610 || (h == htab->elf.hgot || h == htab->elf.hplt))
3611 sym->st_shndx = SHN_ABS;
3612
3613 return TRUE;
3614}
3615
3616/* Finish up the dynamic sections. */
3617
3618static bfd_boolean
3619tilepro_finish_dyn (bfd *output_bfd, struct bfd_link_info *info,
3620 bfd *dynobj, asection *sdyn,
3621 asection *splt ATTRIBUTE_UNUSED)
3622{
3623 Elf32_External_Dyn *dyncon, *dynconend;
3624 struct tilepro_elf_link_hash_table *htab;
3625
3626 htab = tilepro_elf_hash_table (info);
3627 BFD_ASSERT (htab != NULL);
3628 dyncon = (Elf32_External_Dyn *) sdyn->contents;
3629 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
3630 for (; dyncon < dynconend; dyncon++)
3631 {
3632 Elf_Internal_Dyn dyn;
3633 asection *s;
3634
3635 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
3636
3637 switch (dyn.d_tag)
3638 {
3639 case DT_PLTGOT:
3640 s = htab->elf.sgotplt;
3641 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
3642 break;
3643 case DT_JMPREL:
3644 s = htab->elf.srelplt;
3645 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
3646 break;
3647 case DT_PLTRELSZ:
3648 s = htab->elf.srelplt;
3649 dyn.d_un.d_val = s->size;
3650 break;
3651 default:
3652 continue;
3653 }
3654
3655 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3656 }
3657 return TRUE;
3658}
3659
3660static bfd_boolean
3661tilepro_elf_finish_dynamic_sections (bfd *output_bfd,
07d6d2b8 3662 struct bfd_link_info *info)
aa137e4d
NC
3663{
3664 bfd *dynobj;
3665 asection *sdyn;
3666 struct tilepro_elf_link_hash_table *htab;
3667
3668 htab = tilepro_elf_hash_table (info);
3669 BFD_ASSERT (htab != NULL);
3670 dynobj = htab->elf.dynobj;
3671
3d4d4302 3672 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
aa137e4d
NC
3673
3674 if (elf_hash_table (info)->dynamic_sections_created)
3675 {
3676 asection *splt;
3677 bfd_boolean ret;
3678
3d4d4302 3679 splt = htab->elf.splt;
aa137e4d
NC
3680 BFD_ASSERT (splt != NULL && sdyn != NULL);
3681
3682 ret = tilepro_finish_dyn (output_bfd, info, dynobj, sdyn, splt);
3683
535b785f 3684 if (!ret)
aa137e4d
NC
3685 return ret;
3686
3687 /* Fill in the first entry in the procedure linkage table. */
3688 if (splt->size > 0)
663b5850
WL
3689 {
3690 memcpy (splt->contents, tilepro_plt0_entry, PLT_HEADER_SIZE);
3691 memset (splt->contents + PLT_HEADER_SIZE, 0,
3692 PLT_ENTRY_SIZE - PLT_HEADER_SIZE);
3693 }
aa137e4d 3694
387f8054
MR
3695 if (elf_section_data (splt->output_section) != NULL)
3696 elf_section_data (splt->output_section)->this_hdr.sh_entsize
3697 = PLT_ENTRY_SIZE;
aa137e4d
NC
3698 }
3699
3700 if (htab->elf.sgotplt)
3701 {
3702 if (bfd_is_abs_section (htab->elf.sgotplt->output_section))
3703 {
4eca0228 3704 _bfd_error_handler
871b3ab2 3705 (_("discarded output section: `%pA'"), htab->elf.sgotplt);
aa137e4d
NC
3706 return FALSE;
3707 }
3708
3709 if (htab->elf.sgotplt->size > 0)
3710 {
3711 /* Write the first two entries in .got.plt, needed for the dynamic
3712 linker. */
3713 bfd_put_32 (output_bfd, (bfd_vma) -1,
3714 htab->elf.sgotplt->contents);
3715 bfd_put_32 (output_bfd, (bfd_vma) 0,
3716 htab->elf.sgotplt->contents + GOT_ENTRY_SIZE);
3717 }
3718
3719 elf_section_data (htab->elf.sgotplt->output_section)->this_hdr.sh_entsize
3720 = GOT_ENTRY_SIZE;
3721 }
3722
3723 if (htab->elf.sgot)
3724 {
3725 if (htab->elf.sgot->size > 0)
3726 {
3727 /* Set the first entry in the global offset table to the address of
3728 the dynamic section. */
3729 bfd_vma val = (sdyn ?
3730 sdyn->output_section->vma + sdyn->output_offset :
3731 0);
3732 bfd_put_32 (output_bfd, val, htab->elf.sgot->contents);
3733 }
3734
3735 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize
3736 = GOT_ENTRY_SIZE;
3737 }
3738
3739 return TRUE;
3740}
3741
3742\f
3743
3744/* Return address for Ith PLT stub in section PLT, for relocation REL
3745 or (bfd_vma) -1 if it should not be included. */
3746
3747static bfd_vma
3748tilepro_elf_plt_sym_val (bfd_vma i, const asection *plt,
07d6d2b8 3749 const arelent *rel ATTRIBUTE_UNUSED)
aa137e4d 3750{
663b5850 3751 return plt->vma + (i + 1) * PLT_ENTRY_SIZE;
aa137e4d
NC
3752}
3753
3754static enum elf_reloc_type_class
7e612e98
AM
3755tilepro_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
3756 const asection *rel_sec ATTRIBUTE_UNUSED,
3757 const Elf_Internal_Rela *rela)
aa137e4d
NC
3758{
3759 switch ((int) ELF32_R_TYPE (rela->r_info))
3760 {
3761 case R_TILEPRO_RELATIVE:
3762 return reloc_class_relative;
3763 case R_TILEPRO_JMP_SLOT:
3764 return reloc_class_plt;
3765 case R_TILEPRO_COPY:
3766 return reloc_class_copy;
3767 default:
3768 return reloc_class_normal;
3769 }
3770}
3771
3772static int
3773tilepro_additional_program_headers (bfd *abfd,
07d6d2b8 3774 struct bfd_link_info *info ATTRIBUTE_UNUSED)
aa137e4d
NC
3775{
3776 /* Each .intrpt section specified by the user adds another PT_LOAD
3777 header since the sections are discontiguous. */
3778 static const char intrpt_sections[4][9] =
3779 {
3780 ".intrpt0", ".intrpt1", ".intrpt2", ".intrpt3"
3781 };
3782 int count = 0;
3783 int i;
3784
3785 for (i = 0; i < 4; i++)
3786 {
3787 asection *sec = bfd_get_section_by_name (abfd, intrpt_sections[i]);
3788 if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
3789 ++count;
3790 }
3791
3792 /* Add four "padding" headers in to leave room in case a custom linker
3793 script does something fancy. Otherwise ld complains that it ran
3794 out of program headers and refuses to link. */
3795 count += 4;
3796
3797 return count;
3798}
3799
3800#define ELF_ARCH bfd_arch_tilepro
3801#define ELF_TARGET_ID TILEPRO_ELF_DATA
3802#define ELF_MACHINE_CODE EM_TILEPRO
3803#define ELF_MAXPAGESIZE 0x10000
3804#define ELF_COMMONPAGESIZE 0x10000
3805
6d00b590 3806#define TARGET_LITTLE_SYM tilepro_elf32_vec
aa137e4d
NC
3807#define TARGET_LITTLE_NAME "elf32-tilepro"
3808
3809#define elf_backend_reloc_type_class tilepro_reloc_type_class
3810
07d6d2b8 3811#define bfd_elf32_bfd_reloc_name_lookup tilepro_reloc_name_lookup
aa137e4d
NC
3812#define bfd_elf32_bfd_link_hash_table_create tilepro_elf_link_hash_table_create
3813#define bfd_elf32_bfd_reloc_type_lookup tilepro_reloc_type_lookup
3814
3815#define elf_backend_copy_indirect_symbol tilepro_elf_copy_indirect_symbol
3816#define elf_backend_create_dynamic_sections tilepro_elf_create_dynamic_sections
3817#define elf_backend_check_relocs tilepro_elf_check_relocs
3818#define elf_backend_adjust_dynamic_symbol tilepro_elf_adjust_dynamic_symbol
3819#define elf_backend_omit_section_dynsym tilepro_elf_omit_section_dynsym
3820#define elf_backend_size_dynamic_sections tilepro_elf_size_dynamic_sections
3821#define elf_backend_relocate_section tilepro_elf_relocate_section
3822#define elf_backend_finish_dynamic_symbol tilepro_elf_finish_dynamic_symbol
3823#define elf_backend_finish_dynamic_sections tilepro_elf_finish_dynamic_sections
3824#define elf_backend_gc_mark_hook tilepro_elf_gc_mark_hook
aa137e4d 3825#define elf_backend_plt_sym_val tilepro_elf_plt_sym_val
07d6d2b8
AM
3826#define elf_info_to_howto_rel NULL
3827#define elf_info_to_howto tilepro_info_to_howto_rela
3828#define elf_backend_grok_prstatus tilepro_elf_grok_prstatus
3829#define elf_backend_grok_psinfo tilepro_elf_grok_psinfo
aa137e4d
NC
3830#define elf_backend_additional_program_headers tilepro_additional_program_headers
3831
a412bee5
MR
3832#define bfd_elf32_mkobject tilepro_elf_mkobject
3833
aa137e4d
NC
3834#define elf_backend_init_index_section _bfd_elf_init_1_index_section
3835
3836#define elf_backend_can_gc_sections 1
3837#define elf_backend_can_refcount 1
3838#define elf_backend_want_got_plt 1
3839#define elf_backend_plt_readonly 1
3840/* Align PLT mod 64 byte L2 line size. */
3841#define elf_backend_plt_alignment 6
3842#define elf_backend_want_plt_sym 1
3843#define elf_backend_got_header_size GOT_ENTRY_SIZE
5474d94f 3844#define elf_backend_want_dynrelro 1
aa137e4d
NC
3845#define elf_backend_rela_normal 1
3846#define elf_backend_default_execstack 0
3847
3848#include "elf32-target.h"