ELF: Consolidate readonly_dynrelocs
[deliverable/binutils-gdb.git] / bfd / elf32-microblaze.c
CommitLineData
7ba29e2a
NC
1/* Xilinx MicroBlaze-specific support for 32-bit ELF
2
b3adc24a 3 Copyright (C) 2009-2020 Free Software Foundation, Inc.
7ba29e2a
NC
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the
19 Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
20 Boston, MA 02110-1301, USA. */
21
22
23int dbg = 0;
24
7ba29e2a 25#include "sysdep.h"
691bf19c 26#include "bfd.h"
7ba29e2a
NC
27#include "bfdlink.h"
28#include "libbfd.h"
29#include "elf-bfd.h"
30#include "elf/microblaze.h"
31#include <assert.h>
32
33#define USE_RELA /* Only USE_REL is actually significant, but this is
34 here are a reminder... */
35#define INST_WORD_SIZE 4
36
37static int ro_small_data_pointer = 0;
38static int rw_small_data_pointer = 0;
39
40static reloc_howto_type * microblaze_elf_howto_table [(int) R_MICROBLAZE_max];
41
42static reloc_howto_type microblaze_elf_howto_raw[] =
43{
44 /* This reloc does nothing. */
45 HOWTO (R_MICROBLAZE_NONE, /* Type. */
07d6d2b8
AM
46 0, /* Rightshift. */
47 3, /* Size (0 = byte, 1 = short, 2 = long). */
48 0, /* Bitsize. */
49 FALSE, /* PC_relative. */
50 0, /* Bitpos. */
51 complain_overflow_dont, /* Complain on overflow. */
52 NULL, /* Special Function. */
53 "R_MICROBLAZE_NONE", /* Name. */
54 FALSE, /* Partial Inplace. */
55 0, /* Source Mask. */
56 0, /* Dest Mask. */
57 FALSE), /* PC relative offset? */
7ba29e2a
NC
58
59 /* A standard 32 bit relocation. */
07d6d2b8
AM
60 HOWTO (R_MICROBLAZE_32, /* Type. */
61 0, /* Rightshift. */
62 2, /* Size (0 = byte, 1 = short, 2 = long). */
63 32, /* Bitsize. */
64 FALSE, /* PC_relative. */
65 0, /* Bitpos. */
66 complain_overflow_bitfield, /* Complain on overflow. */
67 bfd_elf_generic_reloc,/* Special Function. */
68 "R_MICROBLAZE_32", /* Name. */
69 FALSE, /* Partial Inplace. */
70 0, /* Source Mask. */
71 0xffffffff, /* Dest Mask. */
72 FALSE), /* PC relative offset? */
7ba29e2a
NC
73
74 /* A standard PCREL 32 bit relocation. */
75 HOWTO (R_MICROBLAZE_32_PCREL,/* Type. */
07d6d2b8
AM
76 0, /* Rightshift. */
77 2, /* Size (0 = byte, 1 = short, 2 = long). */
78 32, /* Bitsize. */
79 TRUE, /* PC_relative. */
80 0, /* Bitpos. */
81 complain_overflow_bitfield, /* Complain on overflow. */
82 bfd_elf_generic_reloc,/* Special Function. */
83 "R_MICROBLAZE_32_PCREL", /* Name. */
84 TRUE, /* Partial Inplace. */
85 0, /* Source Mask. */
86 0xffffffff, /* Dest Mask. */
87 TRUE), /* PC relative offset? */
7ba29e2a
NC
88
89 /* A 64 bit PCREL relocation. Table-entry not really used. */
90 HOWTO (R_MICROBLAZE_64_PCREL,/* Type. */
07d6d2b8
AM
91 0, /* Rightshift. */
92 2, /* Size (0 = byte, 1 = short, 2 = long). */
93 16, /* Bitsize. */
94 TRUE, /* PC_relative. */
95 0, /* Bitpos. */
96 complain_overflow_dont, /* Complain on overflow. */
97 bfd_elf_generic_reloc,/* Special Function. */
98 "R_MICROBLAZE_64_PCREL", /* Name. */
99 FALSE, /* Partial Inplace. */
100 0, /* Source Mask. */
101 0x0000ffff, /* Dest Mask. */
102 TRUE), /* PC relative offset? */
7ba29e2a
NC
103
104 /* The low half of a PCREL 32 bit relocation. */
07d6d2b8
AM
105 HOWTO (R_MICROBLAZE_32_PCREL_LO, /* Type. */
106 0, /* Rightshift. */
107 2, /* Size (0 = byte, 1 = short, 2 = long). */
108 16, /* Bitsize. */
109 TRUE, /* PC_relative. */
110 0, /* Bitpos. */
111 complain_overflow_signed, /* Complain on overflow. */
112 bfd_elf_generic_reloc, /* Special Function. */
113 "R_MICROBLAZE_32_PCREL_LO", /* Name. */
114 FALSE, /* Partial Inplace. */
115 0, /* Source Mask. */
116 0x0000ffff, /* Dest Mask. */
117 TRUE), /* PC relative offset? */
7ba29e2a
NC
118
119 /* A 64 bit relocation. Table entry not really used. */
07d6d2b8
AM
120 HOWTO (R_MICROBLAZE_64, /* Type. */
121 0, /* Rightshift. */
122 2, /* Size (0 = byte, 1 = short, 2 = long). */
123 16, /* Bitsize. */
124 FALSE, /* PC_relative. */
125 0, /* Bitpos. */
126 complain_overflow_dont, /* Complain on overflow. */
127 bfd_elf_generic_reloc,/* Special Function. */
128 "R_MICROBLAZE_64", /* Name. */
129 FALSE, /* Partial Inplace. */
130 0, /* Source Mask. */
131 0x0000ffff, /* Dest Mask. */
132 FALSE), /* PC relative offset? */
7ba29e2a
NC
133
134 /* The low half of a 32 bit relocation. */
07d6d2b8
AM
135 HOWTO (R_MICROBLAZE_32_LO, /* Type. */
136 0, /* Rightshift. */
137 2, /* Size (0 = byte, 1 = short, 2 = long). */
138 16, /* Bitsize. */
139 FALSE, /* PC_relative. */
140 0, /* Bitpos. */
141 complain_overflow_signed, /* Complain on overflow. */
142 bfd_elf_generic_reloc,/* Special Function. */
143 "R_MICROBLAZE_32_LO", /* Name. */
144 FALSE, /* Partial Inplace. */
145 0, /* Source Mask. */
146 0x0000ffff, /* Dest Mask. */
147 FALSE), /* PC relative offset? */
7ba29e2a
NC
148
149 /* Read-only small data section relocation. */
07d6d2b8
AM
150 HOWTO (R_MICROBLAZE_SRO32, /* Type. */
151 0, /* Rightshift. */
152 2, /* Size (0 = byte, 1 = short, 2 = long). */
153 16, /* Bitsize. */
154 FALSE, /* PC_relative. */
155 0, /* Bitpos. */
156 complain_overflow_bitfield, /* Complain on overflow. */
157 bfd_elf_generic_reloc,/* Special Function. */
158 "R_MICROBLAZE_SRO32", /* Name. */
159 FALSE, /* Partial Inplace. */
160 0, /* Source Mask. */
161 0x0000ffff, /* Dest Mask. */
162 FALSE), /* PC relative offset? */
7ba29e2a
NC
163
164 /* Read-write small data area relocation. */
07d6d2b8
AM
165 HOWTO (R_MICROBLAZE_SRW32, /* Type. */
166 0, /* Rightshift. */
167 2, /* Size (0 = byte, 1 = short, 2 = long). */
168 16, /* Bitsize. */
169 FALSE, /* PC_relative. */
170 0, /* Bitpos. */
171 complain_overflow_bitfield, /* Complain on overflow. */
172 bfd_elf_generic_reloc,/* Special Function. */
173 "R_MICROBLAZE_SRW32", /* Name. */
174 FALSE, /* Partial Inplace. */
175 0, /* Source Mask. */
176 0x0000ffff, /* Dest Mask. */
177 FALSE), /* PC relative offset? */
178
179 /* This reloc does nothing. Used for relaxation. */
7ba29e2a 180 HOWTO (R_MICROBLAZE_64_NONE, /* Type. */
07d6d2b8
AM
181 0, /* Rightshift. */
182 3, /* Size (0 = byte, 1 = short, 2 = long). */
183 0, /* Bitsize. */
184 TRUE, /* PC_relative. */
185 0, /* Bitpos. */
186 complain_overflow_dont, /* Complain on overflow. */
187 NULL, /* Special Function. */
188 "R_MICROBLAZE_64_NONE",/* Name. */
189 FALSE, /* Partial Inplace. */
190 0, /* Source Mask. */
191 0, /* Dest Mask. */
192 FALSE), /* PC relative offset? */
7ba29e2a
NC
193
194 /* Symbol Op Symbol relocation. */
07d6d2b8
AM
195 HOWTO (R_MICROBLAZE_32_SYM_OP_SYM, /* Type. */
196 0, /* Rightshift. */
197 2, /* Size (0 = byte, 1 = short, 2 = long). */
198 32, /* Bitsize. */
199 FALSE, /* PC_relative. */
200 0, /* Bitpos. */
201 complain_overflow_bitfield, /* Complain on overflow. */
202 bfd_elf_generic_reloc,/* Special Function. */
203 "R_MICROBLAZE_32_SYM_OP_SYM", /* Name. */
204 FALSE, /* Partial Inplace. */
205 0, /* Source Mask. */
206 0xffffffff, /* Dest Mask. */
207 FALSE), /* PC relative offset? */
7ba29e2a
NC
208
209 /* GNU extension to record C++ vtable hierarchy. */
210 HOWTO (R_MICROBLAZE_GNU_VTINHERIT, /* Type. */
07d6d2b8
AM
211 0, /* Rightshift. */
212 2, /* Size (0 = byte, 1 = short, 2 = long). */
213 0, /* Bitsize. */
214 FALSE, /* PC_relative. */
215 0, /* Bitpos. */
216 complain_overflow_dont,/* Complain on overflow. */
217 NULL, /* Special Function. */
218 "R_MICROBLAZE_GNU_VTINHERIT", /* Name. */
219 FALSE, /* Partial Inplace. */
220 0, /* Source Mask. */
221 0, /* Dest Mask. */
222 FALSE), /* PC relative offset? */
7ba29e2a
NC
223
224 /* GNU extension to record C++ vtable member usage. */
225 HOWTO (R_MICROBLAZE_GNU_VTENTRY, /* Type. */
07d6d2b8
AM
226 0, /* Rightshift. */
227 2, /* Size (0 = byte, 1 = short, 2 = long). */
228 0, /* Bitsize. */
229 FALSE, /* PC_relative. */
230 0, /* Bitpos. */
231 complain_overflow_dont,/* Complain on overflow. */
232 _bfd_elf_rel_vtable_reloc_fn, /* Special Function. */
233 "R_MICROBLAZE_GNU_VTENTRY", /* Name. */
234 FALSE, /* Partial Inplace. */
235 0, /* Source Mask. */
236 0, /* Dest Mask. */
237 FALSE), /* PC relative offset? */
7ba29e2a
NC
238
239 /* A 64 bit GOTPC relocation. Table-entry not really used. */
07d6d2b8
AM
240 HOWTO (R_MICROBLAZE_GOTPC_64, /* Type. */
241 0, /* Rightshift. */
242 2, /* Size (0 = byte, 1 = short, 2 = long). */
243 16, /* Bitsize. */
244 TRUE, /* PC_relative. */
245 0, /* Bitpos. */
246 complain_overflow_dont, /* Complain on overflow. */
247 bfd_elf_generic_reloc, /* Special Function. */
248 "R_MICROBLAZE_GOTPC_64", /* Name. */
249 FALSE, /* Partial Inplace. */
250 0, /* Source Mask. */
251 0x0000ffff, /* Dest Mask. */
252 TRUE), /* PC relative offset? */
7ba29e2a 253
3f0a5f17 254 /* A 64 bit TEXTPCREL relocation. Table-entry not really used. */
4b24dd1a 255 HOWTO (R_MICROBLAZE_TEXTPCREL_64, /* Type. */
3f0a5f17
ME
256 0, /* Rightshift. */
257 2, /* Size (0 = byte, 1 = short, 2 = long). */
258 16, /* Bitsize. */
259 TRUE, /* PC_relative. */
260 0, /* Bitpos. */
261 complain_overflow_dont, /* Complain on overflow. */
262 bfd_elf_generic_reloc, /* Special Function. */
4b24dd1a 263 "R_MICROBLAZE_TEXTPCREL_64", /* Name. */
3f0a5f17
ME
264 FALSE, /* Partial Inplace. */
265 0, /* Source Mask. */
266 0x0000ffff, /* Dest Mask. */
4b24dd1a 267 TRUE), /* PC relative offset? */
3f0a5f17 268
7ba29e2a
NC
269 /* A 64 bit GOT relocation. Table-entry not really used. */
270 HOWTO (R_MICROBLAZE_GOT_64, /* Type. */
07d6d2b8
AM
271 0, /* Rightshift. */
272 2, /* Size (0 = byte, 1 = short, 2 = long). */
273 16, /* Bitsize. */
274 FALSE, /* PC_relative. */
275 0, /* Bitpos. */
276 complain_overflow_dont, /* Complain on overflow. */
277 bfd_elf_generic_reloc,/* Special Function. */
278 "R_MICROBLAZE_GOT_64",/* Name. */
279 FALSE, /* Partial Inplace. */
280 0, /* Source Mask. */
281 0x0000ffff, /* Dest Mask. */
282 FALSE), /* PC relative offset? */
7ba29e2a 283
3f0a5f17
ME
284 /* A 64 bit TEXTREL relocation. Table-entry not really used. */
285 HOWTO (R_MICROBLAZE_TEXTREL_64, /* Type. */
286 0, /* Rightshift. */
287 2, /* Size (0 = byte, 1 = short, 2 = long). */
288 16, /* Bitsize. */
289 FALSE, /* PC_relative. */
290 0, /* Bitpos. */
291 complain_overflow_dont, /* Complain on overflow. */
292 bfd_elf_generic_reloc,/* Special Function. */
293 "R_MICROBLAZE_TEXTREL_64",/* Name. */
294 FALSE, /* Partial Inplace. */
295 0, /* Source Mask. */
296 0x0000ffff, /* Dest Mask. */
4b24dd1a 297 FALSE), /* PC relative offset? */
3f0a5f17 298
7ba29e2a
NC
299 /* A 64 bit PLT relocation. Table-entry not really used. */
300 HOWTO (R_MICROBLAZE_PLT_64, /* Type. */
07d6d2b8
AM
301 0, /* Rightshift. */
302 2, /* Size (0 = byte, 1 = short, 2 = long). */
303 16, /* Bitsize. */
304 TRUE, /* PC_relative. */
305 0, /* Bitpos. */
306 complain_overflow_dont, /* Complain on overflow. */
307 bfd_elf_generic_reloc,/* Special Function. */
308 "R_MICROBLAZE_PLT_64",/* Name. */
309 FALSE, /* Partial Inplace. */
310 0, /* Source Mask. */
311 0x0000ffff, /* Dest Mask. */
312 TRUE), /* PC relative offset? */
7ba29e2a
NC
313
314 /* Table-entry not really used. */
07d6d2b8
AM
315 HOWTO (R_MICROBLAZE_REL, /* Type. */
316 0, /* Rightshift. */
317 2, /* Size (0 = byte, 1 = short, 2 = long). */
318 16, /* Bitsize. */
319 TRUE, /* PC_relative. */
320 0, /* Bitpos. */
321 complain_overflow_dont, /* Complain on overflow. */
322 bfd_elf_generic_reloc,/* Special Function. */
323 "R_MICROBLAZE_REL", /* Name. */
324 FALSE, /* Partial Inplace. */
325 0, /* Source Mask. */
326 0x0000ffff, /* Dest Mask. */
327 TRUE), /* PC relative offset? */
7ba29e2a
NC
328
329 /* Table-entry not really used. */
330 HOWTO (R_MICROBLAZE_JUMP_SLOT,/* Type. */
07d6d2b8
AM
331 0, /* Rightshift. */
332 2, /* Size (0 = byte, 1 = short, 2 = long). */
333 16, /* Bitsize. */
334 TRUE, /* PC_relative. */
335 0, /* Bitpos. */
336 complain_overflow_dont, /* Complain on overflow. */
337 bfd_elf_generic_reloc,/* Special Function. */
338 "R_MICROBLAZE_JUMP_SLOT", /* Name. */
339 FALSE, /* Partial Inplace. */
340 0, /* Source Mask. */
341 0x0000ffff, /* Dest Mask. */
342 TRUE), /* PC relative offset? */
7ba29e2a
NC
343
344 /* Table-entry not really used. */
345 HOWTO (R_MICROBLAZE_GLOB_DAT,/* Type. */
07d6d2b8
AM
346 0, /* Rightshift. */
347 2, /* Size (0 = byte, 1 = short, 2 = long). */
348 16, /* Bitsize. */
349 TRUE, /* PC_relative. */
350 0, /* Bitpos. */
351 complain_overflow_dont, /* Complain on overflow. */
352 bfd_elf_generic_reloc,/* Special Function. */
353 "R_MICROBLAZE_GLOB_DAT", /* Name. */
354 FALSE, /* Partial Inplace. */
355 0, /* Source Mask. */
356 0x0000ffff, /* Dest Mask. */
357 TRUE), /* PC relative offset? */
7ba29e2a
NC
358
359 /* A 64 bit GOT relative relocation. Table-entry not really used. */
07d6d2b8
AM
360 HOWTO (R_MICROBLAZE_GOTOFF_64, /* Type. */
361 0, /* Rightshift. */
362 2, /* Size (0 = byte, 1 = short, 2 = long). */
363 16, /* Bitsize. */
364 FALSE, /* PC_relative. */
365 0, /* Bitpos. */
366 complain_overflow_dont, /* Complain on overflow. */
367 bfd_elf_generic_reloc,/* Special Function. */
368 "R_MICROBLAZE_GOTOFF_64", /* Name. */
369 FALSE, /* Partial Inplace. */
370 0, /* Source Mask. */
371 0x0000ffff, /* Dest Mask. */
372 FALSE), /* PC relative offset? */
7ba29e2a
NC
373
374 /* A 32 bit GOT relative relocation. Table-entry not really used. */
07d6d2b8
AM
375 HOWTO (R_MICROBLAZE_GOTOFF_32, /* Type. */
376 0, /* Rightshift. */
377 2, /* Size (0 = byte, 1 = short, 2 = long). */
378 16, /* Bitsize. */
379 FALSE, /* PC_relative. */
380 0, /* Bitpos. */
381 complain_overflow_dont, /* Complain on overflow. */
382 bfd_elf_generic_reloc, /* Special Function. */
383 "R_MICROBLAZE_GOTOFF_32", /* Name. */
384 FALSE, /* Partial Inplace. */
385 0, /* Source Mask. */
386 0x0000ffff, /* Dest Mask. */
387 FALSE), /* PC relative offset? */
7ba29e2a
NC
388
389 /* COPY relocation. Table-entry not really used. */
07d6d2b8
AM
390 HOWTO (R_MICROBLAZE_COPY, /* Type. */
391 0, /* Rightshift. */
392 2, /* Size (0 = byte, 1 = short, 2 = long). */
393 16, /* Bitsize. */
394 FALSE, /* PC_relative. */
395 0, /* Bitpos. */
396 complain_overflow_dont, /* Complain on overflow. */
397 bfd_elf_generic_reloc,/* Special Function. */
398 "R_MICROBLAZE_COPY", /* Name. */
399 FALSE, /* Partial Inplace. */
400 0, /* Source Mask. */
401 0x0000ffff, /* Dest Mask. */
402 FALSE), /* PC relative offset? */
69b06cc8
ME
403
404 /* Marker relocs for TLS. */
405 HOWTO (R_MICROBLAZE_TLS,
406 0, /* rightshift */
407 2, /* size (0 = byte, 1 = short, 2 = long) */
408 32, /* bitsize */
409 FALSE, /* pc_relative */
410 0, /* bitpos */
411 complain_overflow_dont, /* complain_on_overflow */
412 bfd_elf_generic_reloc, /* special_function */
413 "R_MICROBLAZE_TLS", /* name */
414 FALSE, /* partial_inplace */
415 0, /* src_mask */
416 0x0000ffff, /* dst_mask */
417 FALSE), /* pcrel_offset */
418
419 HOWTO (R_MICROBLAZE_TLSGD,
420 0, /* rightshift */
421 2, /* size (0 = byte, 1 = short, 2 = long) */
422 32, /* bitsize */
423 FALSE, /* pc_relative */
424 0, /* bitpos */
425 complain_overflow_dont, /* complain_on_overflow */
426 bfd_elf_generic_reloc, /* special_function */
427 "R_MICROBLAZE_TLSGD", /* name */
428 FALSE, /* partial_inplace */
429 0, /* src_mask */
430 0x0000ffff, /* dst_mask */
431 FALSE), /* pcrel_offset */
432
433 HOWTO (R_MICROBLAZE_TLSLD,
434 0, /* rightshift */
435 2, /* size (0 = byte, 1 = short, 2 = long) */
436 32, /* bitsize */
437 FALSE, /* pc_relative */
438 0, /* bitpos */
439 complain_overflow_dont, /* complain_on_overflow */
440 bfd_elf_generic_reloc, /* special_function */
441 "R_MICROBLAZE_TLSLD", /* name */
442 FALSE, /* partial_inplace */
443 0, /* src_mask */
444 0x0000ffff, /* dst_mask */
445 FALSE), /* pcrel_offset */
446
447 /* Computes the load module index of the load module that contains the
448 definition of its TLS sym. */
449 HOWTO (R_MICROBLAZE_TLSDTPMOD32,
450 0, /* rightshift */
451 2, /* size (0 = byte, 1 = short, 2 = long) */
452 32, /* bitsize */
453 FALSE, /* pc_relative */
454 0, /* bitpos */
455 complain_overflow_dont, /* complain_on_overflow */
456 bfd_elf_generic_reloc, /* special_function */
457 "R_MICROBLAZE_TLSDTPMOD32", /* name */
458 FALSE, /* partial_inplace */
459 0, /* src_mask */
460 0x0000ffff, /* dst_mask */
461 FALSE), /* pcrel_offset */
462
463 /* Computes a dtv-relative displacement, the difference between the value
464 of sym+add and the base address of the thread-local storage block that
465 contains the definition of sym, minus 0x8000. Used for initializing GOT */
466 HOWTO (R_MICROBLAZE_TLSDTPREL32,
467 0, /* rightshift */
468 2, /* size (0 = byte, 1 = short, 2 = long) */
469 32, /* bitsize */
470 FALSE, /* pc_relative */
471 0, /* bitpos */
472 complain_overflow_dont, /* complain_on_overflow */
473 bfd_elf_generic_reloc, /* special_function */
474 "R_MICROBLAZE_TLSDTPREL32", /* name */
475 FALSE, /* partial_inplace */
476 0, /* src_mask */
477 0x0000ffff, /* dst_mask */
478 FALSE), /* pcrel_offset */
479
480 /* Computes a dtv-relative displacement, the difference between the value
481 of sym+add and the base address of the thread-local storage block that
482 contains the definition of sym, minus 0x8000. */
483 HOWTO (R_MICROBLAZE_TLSDTPREL64,
484 0, /* rightshift */
485 2, /* size (0 = byte, 1 = short, 2 = long) */
486 32, /* bitsize */
487 FALSE, /* pc_relative */
488 0, /* bitpos */
489 complain_overflow_dont, /* complain_on_overflow */
490 bfd_elf_generic_reloc, /* special_function */
491 "R_MICROBLAZE_TLSDTPREL64", /* name */
492 FALSE, /* partial_inplace */
493 0, /* src_mask */
494 0x0000ffff, /* dst_mask */
495 FALSE), /* pcrel_offset */
496
497 /* Computes a tp-relative displacement, the difference between the value of
498 sym+add and the value of the thread pointer (r13). */
499 HOWTO (R_MICROBLAZE_TLSGOTTPREL32,
500 0, /* rightshift */
501 2, /* size (0 = byte, 1 = short, 2 = long) */
502 32, /* bitsize */
503 FALSE, /* pc_relative */
504 0, /* bitpos */
505 complain_overflow_dont, /* complain_on_overflow */
506 bfd_elf_generic_reloc, /* special_function */
507 "R_MICROBLAZE_TLSGOTTPREL32", /* name */
508 FALSE, /* partial_inplace */
509 0, /* src_mask */
510 0x0000ffff, /* dst_mask */
511 FALSE), /* pcrel_offset */
512
513 /* Computes a tp-relative displacement, the difference between the value of
514 sym+add and the value of the thread pointer (r13). */
515 HOWTO (R_MICROBLAZE_TLSTPREL32,
516 0, /* rightshift */
517 2, /* size (0 = byte, 1 = short, 2 = long) */
518 32, /* bitsize */
519 FALSE, /* pc_relative */
520 0, /* bitpos */
521 complain_overflow_dont, /* complain_on_overflow */
522 bfd_elf_generic_reloc, /* special_function */
523 "R_MICROBLAZE_TLSTPREL32", /* name */
524 FALSE, /* partial_inplace */
525 0, /* src_mask */
526 0x0000ffff, /* dst_mask */
527 FALSE), /* pcrel_offset */
528
7ba29e2a
NC
529};
530
531#ifndef NUM_ELEM
532#define NUM_ELEM(a) (sizeof (a) / sizeof (a)[0])
533#endif
534\f
535/* Initialize the microblaze_elf_howto_table, so that linear accesses can be done. */
536
537static void
538microblaze_elf_howto_init (void)
539{
540 unsigned int i;
541
542 for (i = NUM_ELEM (microblaze_elf_howto_raw); i--;)
543 {
544 unsigned int type;
545
546 type = microblaze_elf_howto_raw[i].type;
547
548 BFD_ASSERT (type < NUM_ELEM (microblaze_elf_howto_table));
549
550 microblaze_elf_howto_table [type] = & microblaze_elf_howto_raw [i];
551 }
552}
553\f
554static reloc_howto_type *
555microblaze_elf_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
556 bfd_reloc_code_real_type code)
557{
558 enum elf_microblaze_reloc_type microblaze_reloc = R_MICROBLAZE_NONE;
559
560 switch (code)
561 {
562 case BFD_RELOC_NONE:
563 microblaze_reloc = R_MICROBLAZE_NONE;
564 break;
565 case BFD_RELOC_MICROBLAZE_64_NONE:
566 microblaze_reloc = R_MICROBLAZE_64_NONE;
567 break;
568 case BFD_RELOC_32:
569 microblaze_reloc = R_MICROBLAZE_32;
570 break;
571 /* RVA is treated the same as 32 */
572 case BFD_RELOC_RVA:
573 microblaze_reloc = R_MICROBLAZE_32;
574 break;
575 case BFD_RELOC_32_PCREL:
576 microblaze_reloc = R_MICROBLAZE_32_PCREL;
577 break;
578 case BFD_RELOC_64_PCREL:
579 microblaze_reloc = R_MICROBLAZE_64_PCREL;
580 break;
581 case BFD_RELOC_MICROBLAZE_32_LO_PCREL:
582 microblaze_reloc = R_MICROBLAZE_32_PCREL_LO;
583 break;
584 case BFD_RELOC_64:
585 microblaze_reloc = R_MICROBLAZE_64;
586 break;
587 case BFD_RELOC_MICROBLAZE_32_LO:
588 microblaze_reloc = R_MICROBLAZE_32_LO;
589 break;
590 case BFD_RELOC_MICROBLAZE_32_ROSDA:
591 microblaze_reloc = R_MICROBLAZE_SRO32;
592 break;
593 case BFD_RELOC_MICROBLAZE_32_RWSDA:
594 microblaze_reloc = R_MICROBLAZE_SRW32;
595 break;
596 case BFD_RELOC_MICROBLAZE_32_SYM_OP_SYM:
597 microblaze_reloc = R_MICROBLAZE_32_SYM_OP_SYM;
598 break;
599 case BFD_RELOC_VTABLE_INHERIT:
600 microblaze_reloc = R_MICROBLAZE_GNU_VTINHERIT;
601 break;
602 case BFD_RELOC_VTABLE_ENTRY:
603 microblaze_reloc = R_MICROBLAZE_GNU_VTENTRY;
604 break;
605 case BFD_RELOC_MICROBLAZE_64_GOTPC:
606 microblaze_reloc = R_MICROBLAZE_GOTPC_64;
607 break;
608 case BFD_RELOC_MICROBLAZE_64_GOT:
609 microblaze_reloc = R_MICROBLAZE_GOT_64;
610 break;
3f0a5f17
ME
611 case BFD_RELOC_MICROBLAZE_64_TEXTPCREL:
612 microblaze_reloc = R_MICROBLAZE_TEXTPCREL_64;
613 break;
614 case BFD_RELOC_MICROBLAZE_64_TEXTREL:
615 microblaze_reloc = R_MICROBLAZE_TEXTREL_64;
616 break;
7ba29e2a
NC
617 case BFD_RELOC_MICROBLAZE_64_PLT:
618 microblaze_reloc = R_MICROBLAZE_PLT_64;
619 break;
620 case BFD_RELOC_MICROBLAZE_64_GOTOFF:
621 microblaze_reloc = R_MICROBLAZE_GOTOFF_64;
622 break;
623 case BFD_RELOC_MICROBLAZE_32_GOTOFF:
624 microblaze_reloc = R_MICROBLAZE_GOTOFF_32;
625 break;
69b06cc8
ME
626 case BFD_RELOC_MICROBLAZE_64_TLSGD:
627 microblaze_reloc = R_MICROBLAZE_TLSGD;
628 break;
629 case BFD_RELOC_MICROBLAZE_64_TLSLD:
630 microblaze_reloc = R_MICROBLAZE_TLSLD;
631 break;
632 case BFD_RELOC_MICROBLAZE_32_TLSDTPREL:
633 microblaze_reloc = R_MICROBLAZE_TLSDTPREL32;
634 break;
635 case BFD_RELOC_MICROBLAZE_64_TLSDTPREL:
636 microblaze_reloc = R_MICROBLAZE_TLSDTPREL64;
637 break;
638 case BFD_RELOC_MICROBLAZE_32_TLSDTPMOD:
639 microblaze_reloc = R_MICROBLAZE_TLSDTPMOD32;
640 break;
641 case BFD_RELOC_MICROBLAZE_64_TLSGOTTPREL:
642 microblaze_reloc = R_MICROBLAZE_TLSGOTTPREL32;
643 break;
644 case BFD_RELOC_MICROBLAZE_64_TLSTPREL:
645 microblaze_reloc = R_MICROBLAZE_TLSTPREL32;
646 break;
7ba29e2a
NC
647 case BFD_RELOC_MICROBLAZE_COPY:
648 microblaze_reloc = R_MICROBLAZE_COPY;
649 break;
650 default:
651 return (reloc_howto_type *) NULL;
652 }
653
654 if (!microblaze_elf_howto_table [R_MICROBLAZE_32])
655 /* Initialize howto table if needed. */
656 microblaze_elf_howto_init ();
657
658 return microblaze_elf_howto_table [(int) microblaze_reloc];
659};
660
661static reloc_howto_type *
662microblaze_elf_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
663 const char *r_name)
664{
665 unsigned int i;
666
667 for (i = 0; i < NUM_ELEM (microblaze_elf_howto_raw); i++)
668 if (microblaze_elf_howto_raw[i].name != NULL
669 && strcasecmp (microblaze_elf_howto_raw[i].name, r_name) == 0)
670 return &microblaze_elf_howto_raw[i];
671
672 return NULL;
673}
674
675/* Set the howto pointer for a RCE ELF reloc. */
676
f3185997 677static bfd_boolean
0aa13fee 678microblaze_elf_info_to_howto (bfd * abfd,
7ba29e2a
NC
679 arelent * cache_ptr,
680 Elf_Internal_Rela * dst)
681{
cd21f5da
NC
682 unsigned int r_type;
683
7ba29e2a
NC
684 if (!microblaze_elf_howto_table [R_MICROBLAZE_32])
685 /* Initialize howto table if needed. */
686 microblaze_elf_howto_init ();
687
cd21f5da
NC
688 r_type = ELF32_R_TYPE (dst->r_info);
689 if (r_type >= R_MICROBLAZE_max)
690 {
695344c0 691 /* xgettext:c-format */
0aa13fee 692 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
4eca0228 693 abfd, r_type);
cd21f5da 694 bfd_set_error (bfd_error_bad_value);
f3185997 695 return FALSE;
cd21f5da 696 }
7ba29e2a 697
cd21f5da 698 cache_ptr->howto = microblaze_elf_howto_table [r_type];
f3185997 699 return TRUE;
7ba29e2a
NC
700}
701
702/* Microblaze ELF local labels start with 'L.' or '$L', not '.L'. */
703
704static bfd_boolean
705microblaze_elf_is_local_label_name (bfd *abfd, const char *name)
706{
707 if (name[0] == 'L' && name[1] == '.')
708 return TRUE;
709
710 if (name[0] == '$' && name[1] == 'L')
711 return TRUE;
712
713 /* With gcc, the labels go back to starting with '.', so we accept
714 the generic ELF local label syntax as well. */
715 return _bfd_elf_is_local_label_name (abfd, name);
716}
717
7ba29e2a
NC
718/* ELF linker hash entry. */
719
720struct elf32_mb_link_hash_entry
721{
722 struct elf_link_hash_entry elf;
723
69b06cc8
ME
724 /* TLS Reference Types for the symbol; Updated by check_relocs */
725#define TLS_GD 1 /* GD reloc. */
726#define TLS_LD 2 /* LD reloc. */
727#define TLS_TPREL 4 /* TPREL reloc, => IE. */
728#define TLS_DTPREL 8 /* DTPREL reloc, => LD. */
729#define TLS_TLS 16 /* Any TLS reloc. */
730 unsigned char tls_mask;
731
7ba29e2a
NC
732};
733
69b06cc8
ME
734#define IS_TLS_GD(x) (x == (TLS_TLS | TLS_GD))
735#define IS_TLS_LD(x) (x == (TLS_TLS | TLS_LD))
736#define IS_TLS_DTPREL(x) (x == (TLS_TLS | TLS_DTPREL))
737#define IS_TLS_NONE(x) (x == 0)
738
7ba29e2a
NC
739#define elf32_mb_hash_entry(ent) ((struct elf32_mb_link_hash_entry *)(ent))
740
741/* ELF linker hash table. */
742
743struct elf32_mb_link_hash_table
744{
745 struct elf_link_hash_table elf;
746
7ba29e2a
NC
747 /* Small local sym to section mapping cache. */
748 struct sym_cache sym_sec;
69b06cc8
ME
749
750 /* TLS Local Dynamic GOT Entry */
751 union {
752 bfd_signed_vma refcount;
753 bfd_vma offset;
754 } tlsld_got;
7ba29e2a
NC
755};
756
69b06cc8
ME
757/* Nonzero if this section has TLS related relocations. */
758#define has_tls_reloc sec_flg0
759
7ba29e2a
NC
760/* Get the ELF linker hash table from a link_info structure. */
761
762#define elf32_mb_hash_table(p) \
4dfe6ac6
NC
763 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
764 == MICROBLAZE_ELF_DATA ? ((struct elf32_mb_link_hash_table *) ((p)->hash)) : NULL)
7ba29e2a
NC
765
766/* Create an entry in a microblaze ELF linker hash table. */
767
768static struct bfd_hash_entry *
769link_hash_newfunc (struct bfd_hash_entry *entry,
770 struct bfd_hash_table *table,
771 const char *string)
772{
773 /* Allocate the structure if it has not already been allocated by a
774 subclass. */
775 if (entry == NULL)
776 {
777 entry = bfd_hash_allocate (table,
778 sizeof (struct elf32_mb_link_hash_entry));
779 if (entry == NULL)
780 return entry;
781 }
782
783 /* Call the allocation method of the superclass. */
784 entry = _bfd_elf_link_hash_newfunc (entry, table, string);
785 if (entry != NULL)
786 {
787 struct elf32_mb_link_hash_entry *eh;
788
789 eh = (struct elf32_mb_link_hash_entry *) entry;
69b06cc8 790 eh->tls_mask = 0;
7ba29e2a
NC
791 }
792
793 return entry;
794}
795
796/* Create a mb ELF linker hash table. */
797
798static struct bfd_link_hash_table *
799microblaze_elf_link_hash_table_create (bfd *abfd)
800{
801 struct elf32_mb_link_hash_table *ret;
986f0783 802 size_t amt = sizeof (struct elf32_mb_link_hash_table);
7ba29e2a
NC
803
804 ret = (struct elf32_mb_link_hash_table *) bfd_zmalloc (amt);
805 if (ret == NULL)
806 return NULL;
807
808 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd, link_hash_newfunc,
4dfe6ac6
NC
809 sizeof (struct elf32_mb_link_hash_entry),
810 MICROBLAZE_ELF_DATA))
7ba29e2a
NC
811 {
812 free (ret);
813 return NULL;
814 }
815
816 return &ret->elf.root;
817}
818\f
819/* Set the values of the small data pointers. */
820
821static void
822microblaze_elf_final_sdp (struct bfd_link_info *info)
823{
824 struct bfd_link_hash_entry *h;
825
826 h = bfd_link_hash_lookup (info->hash, RO_SDA_ANCHOR_NAME, FALSE, FALSE, TRUE);
827 if (h != (struct bfd_link_hash_entry *) NULL
828 && h->type == bfd_link_hash_defined)
829 ro_small_data_pointer = (h->u.def.value
07d6d2b8
AM
830 + h->u.def.section->output_section->vma
831 + h->u.def.section->output_offset);
7ba29e2a
NC
832
833 h = bfd_link_hash_lookup (info->hash, RW_SDA_ANCHOR_NAME, FALSE, FALSE, TRUE);
834 if (h != (struct bfd_link_hash_entry *) NULL
835 && h->type == bfd_link_hash_defined)
836 rw_small_data_pointer = (h->u.def.value
07d6d2b8
AM
837 + h->u.def.section->output_section->vma
838 + h->u.def.section->output_offset);
7ba29e2a
NC
839}
840
69b06cc8
ME
841static bfd_vma
842dtprel_base (struct bfd_link_info *info)
843{
844 /* If tls_sec is NULL, we should have signalled an error already. */
845 if (elf_hash_table (info)->tls_sec == NULL)
846 return 0;
847 return elf_hash_table (info)->tls_sec->vma;
848}
849
850/* The size of the thread control block. */
851#define TCB_SIZE 8
852
853/* Output a simple dynamic relocation into SRELOC. */
854
855static void
856microblaze_elf_output_dynamic_relocation (bfd *output_bfd,
857 asection *sreloc,
858 unsigned long reloc_index,
859 unsigned long indx,
860 int r_type,
861 bfd_vma offset,
862 bfd_vma addend)
863{
864
865 Elf_Internal_Rela rel;
866
867 rel.r_info = ELF32_R_INFO (indx, r_type);
868 rel.r_offset = offset;
869 rel.r_addend = addend;
870
871 bfd_elf32_swap_reloca_out (output_bfd, &rel,
07d6d2b8 872 (sreloc->contents + reloc_index * sizeof (Elf32_External_Rela)));
69b06cc8
ME
873}
874
7ba29e2a
NC
875/* This code is taken from elf32-m32r.c
876 There is some attempt to make this function usable for many architectures,
877 both USE_REL and USE_RELA ['twould be nice if such a critter existed],
878 if only to serve as a learning tool.
879
880 The RELOCATE_SECTION function is called by the new ELF backend linker
881 to handle the relocations for a section.
882
883 The relocs are always passed as Rela structures; if the section
884 actually uses Rel structures, the r_addend field will always be
885 zero.
886
887 This function is responsible for adjust the section contents as
888 necessary, and (if using Rela relocs and generating a
889 relocatable output file) adjusting the reloc addend as
890 necessary.
891
892 This function does not have to worry about setting the reloc
893 address or the reloc symbol index.
894
895 LOCAL_SYMS is a pointer to the swapped in local symbols.
896
897 LOCAL_SECTIONS is an array giving the section in the input file
898 corresponding to the st_shndx field of each local symbol.
899
900 The global hash table entry for the global symbols can be found
901 via elf_sym_hashes (input_bfd).
902
903 When generating relocatable output, this function must handle
904 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
905 going to be the section symbol corresponding to the output
906 section, which means that the addend must be adjusted
907 accordingly. */
908
909static bfd_boolean
910microblaze_elf_relocate_section (bfd *output_bfd,
07d6d2b8
AM
911 struct bfd_link_info *info,
912 bfd *input_bfd,
913 asection *input_section,
914 bfd_byte *contents,
915 Elf_Internal_Rela *relocs,
916 Elf_Internal_Sym *local_syms,
917 asection **local_sections)
7ba29e2a
NC
918{
919 struct elf32_mb_link_hash_table *htab;
920 Elf_Internal_Shdr *symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
921 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
922 Elf_Internal_Rela *rel, *relend;
f23200ad 923 int endian = (bfd_little_endian (output_bfd)) ? 0 : 2;
7ba29e2a
NC
924 /* Assume success. */
925 bfd_boolean ret = TRUE;
926 asection *sreloc;
927 bfd_vma *local_got_offsets;
69b06cc8 928 unsigned int tls_type;
7ba29e2a
NC
929
930 if (!microblaze_elf_howto_table[R_MICROBLAZE_max-1])
931 microblaze_elf_howto_init ();
932
933 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
934 if (htab == NULL)
935 return FALSE;
936
7ba29e2a
NC
937 local_got_offsets = elf_local_got_offsets (input_bfd);
938
939 sreloc = elf_section_data (input_section)->sreloc;
940
941 rel = relocs;
942 relend = relocs + input_section->reloc_count;
943 for (; rel < relend; rel++)
944 {
945 int r_type;
946 reloc_howto_type *howto;
947 unsigned long r_symndx;
948 bfd_vma addend = rel->r_addend;
949 bfd_vma offset = rel->r_offset;
950 struct elf_link_hash_entry *h;
951 Elf_Internal_Sym *sym;
952 asection *sec;
953 const char *sym_name;
954 bfd_reloc_status_type r = bfd_reloc_ok;
955 const char *errmsg = NULL;
956 bfd_boolean unresolved_reloc = FALSE;
957
958 h = NULL;
959 r_type = ELF32_R_TYPE (rel->r_info);
69b06cc8
ME
960 tls_type = 0;
961
7ba29e2a
NC
962 if (r_type < 0 || r_type >= (int) R_MICROBLAZE_max)
963 {
695344c0 964 /* xgettext:c-format */
0aa13fee 965 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
dae82561 966 input_bfd, (int) r_type);
7ba29e2a
NC
967 bfd_set_error (bfd_error_bad_value);
968 ret = FALSE;
969 continue;
970 }
971
972 howto = microblaze_elf_howto_table[r_type];
973 r_symndx = ELF32_R_SYM (rel->r_info);
974
0e1862bb 975 if (bfd_link_relocatable (info))
7ba29e2a
NC
976 {
977 /* This is a relocatable link. We don't have to change
978 anything, unless the reloc is against a section symbol,
979 in which case we have to adjust according to where the
980 section symbol winds up in the output section. */
981 sec = NULL;
982 if (r_symndx >= symtab_hdr->sh_info)
983 /* External symbol. */
984 continue;
985
986 /* Local symbol. */
987 sym = local_syms + r_symndx;
988 sym_name = "<local symbol>";
989 /* STT_SECTION: symbol is associated with a section. */
990 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
991 /* Symbol isn't associated with a section. Nothing to do. */
992 continue;
993
994 sec = local_sections[r_symndx];
995 addend += sec->output_offset + sym->st_value;
996#ifndef USE_REL
997 /* This can't be done for USE_REL because it doesn't mean anything
998 and elf_link_input_bfd asserts this stays zero. */
999 /* rel->r_addend = addend; */
1000#endif
1001
1002#ifndef USE_REL
1003 /* Addends are stored with relocs. We're done. */
1004 continue;
1005#else /* USE_REL */
1006 /* If partial_inplace, we need to store any additional addend
1007 back in the section. */
1008 if (!howto->partial_inplace)
1009 continue;
1010 /* ??? Here is a nice place to call a special_function like handler. */
1011 r = _bfd_relocate_contents (howto, input_bfd, addend,
1012 contents + offset);
1013#endif /* USE_REL */
1014 }
1015 else
1016 {
1017 bfd_vma relocation;
112fef40 1018 bfd_boolean resolved_to_zero;
7ba29e2a
NC
1019
1020 /* This is a final link. */
1021 sym = NULL;
1022 sec = NULL;
1023 unresolved_reloc = FALSE;
1024
1025 if (r_symndx < symtab_hdr->sh_info)
1026 {
1027 /* Local symbol. */
1028 sym = local_syms + r_symndx;
1029 sec = local_sections[r_symndx];
1030 if (sec == 0)
1031 continue;
1032 sym_name = "<local symbol>";
1033 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
1034 /* r_addend may have changed if the reference section was
1035 a merge section. */
1036 addend = rel->r_addend;
1037 }
1038 else
1039 {
1040 /* External symbol. */
1041 bfd_boolean warned ATTRIBUTE_UNUSED;
62d887d4 1042 bfd_boolean ignored ATTRIBUTE_UNUSED;
7ba29e2a
NC
1043
1044 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
1045 r_symndx, symtab_hdr, sym_hashes,
1046 h, sec, relocation,
62d887d4 1047 unresolved_reloc, warned, ignored);
7ba29e2a
NC
1048 sym_name = h->root.root.string;
1049 }
1050
1051 /* Sanity check the address. */
e57278ef 1052 if (offset > bfd_get_section_limit (input_bfd, input_section))
7ba29e2a
NC
1053 {
1054 r = bfd_reloc_outofrange;
1055 goto check_reloc;
1056 }
1057
112fef40
L
1058 resolved_to_zero = (h != NULL
1059 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
1060
7ba29e2a
NC
1061 switch ((int) r_type)
1062 {
1063 case (int) R_MICROBLAZE_SRO32 :
1064 {
1065 const char *name;
1066
1067 /* Only relocate if the symbol is defined. */
1068 if (sec)
1069 {
fd361982 1070 name = bfd_section_name (sec);
7ba29e2a
NC
1071
1072 if (strcmp (name, ".sdata2") == 0
1073 || strcmp (name, ".sbss2") == 0)
1074 {
1075 if (ro_small_data_pointer == 0)
1076 microblaze_elf_final_sdp (info);
1077 if (ro_small_data_pointer == 0)
1078 {
1079 ret = FALSE;
1080 r = bfd_reloc_undefined;
1081 goto check_reloc;
1082 }
1083
1084 /* At this point `relocation' contains the object's
1085 address. */
1086 relocation -= ro_small_data_pointer;
1087 /* Now it contains the offset from _SDA2_BASE_. */
1088 r = _bfd_final_link_relocate (howto, input_bfd,
1089 input_section,
1090 contents, offset,
1091 relocation, addend);
1092 }
1093 else
1094 {
4eca0228 1095 _bfd_error_handler
695344c0 1096 /* xgettext:c-format */
38f14ab8 1097 (_("%pB: the target (%s) of an %s relocation"
871b3ab2 1098 " is in the wrong section (%pA)"),
dae82561 1099 input_bfd,
4eca0228
AM
1100 sym_name,
1101 microblaze_elf_howto_table[(int) r_type]->name,
dae82561 1102 sec);
7ba29e2a
NC
1103 /*bfd_set_error (bfd_error_bad_value); ??? why? */
1104 ret = FALSE;
1105 continue;
1106 }
1107 }
1108 }
1109 break;
1110
1111 case (int) R_MICROBLAZE_SRW32 :
1112 {
1113 const char *name;
1114
1115 /* Only relocate if the symbol is defined. */
1116 if (sec)
1117 {
fd361982 1118 name = bfd_section_name (sec);
7ba29e2a
NC
1119
1120 if (strcmp (name, ".sdata") == 0
1121 || strcmp (name, ".sbss") == 0)
1122 {
1123 if (rw_small_data_pointer == 0)
1124 microblaze_elf_final_sdp (info);
1125 if (rw_small_data_pointer == 0)
1126 {
1127 ret = FALSE;
1128 r = bfd_reloc_undefined;
1129 goto check_reloc;
1130 }
1131
1132 /* At this point `relocation' contains the object's
1133 address. */
1134 relocation -= rw_small_data_pointer;
1135 /* Now it contains the offset from _SDA_BASE_. */
1136 r = _bfd_final_link_relocate (howto, input_bfd,
1137 input_section,
1138 contents, offset,
1139 relocation, addend);
1140 }
1141 else
1142 {
4eca0228 1143 _bfd_error_handler
695344c0 1144 /* xgettext:c-format */
38f14ab8 1145 (_("%pB: the target (%s) of an %s relocation"
871b3ab2 1146 " is in the wrong section (%pA)"),
dae82561 1147 input_bfd,
4eca0228
AM
1148 sym_name,
1149 microblaze_elf_howto_table[(int) r_type]->name,
dae82561 1150 sec);
7ba29e2a
NC
1151 /*bfd_set_error (bfd_error_bad_value); ??? why? */
1152 ret = FALSE;
1153 continue;
1154 }
1155 }
1156 }
1157 break;
1158
1159 case (int) R_MICROBLAZE_32_SYM_OP_SYM:
1160 break; /* Do nothing. */
1161
1162 case (int) R_MICROBLAZE_GOTPC_64:
ce558b89
AM
1163 relocation = (htab->elf.sgotplt->output_section->vma
1164 + htab->elf.sgotplt->output_offset);
7ba29e2a
NC
1165 relocation -= (input_section->output_section->vma
1166 + input_section->output_offset
1167 + offset + INST_WORD_SIZE);
1168 relocation += addend;
1169 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
07d6d2b8 1170 contents + offset + endian);
7ba29e2a 1171 bfd_put_16 (input_bfd, relocation & 0xffff,
07d6d2b8 1172 contents + offset + endian + INST_WORD_SIZE);
7ba29e2a
NC
1173 break;
1174
3f0a5f17
ME
1175 case (int) R_MICROBLAZE_TEXTPCREL_64:
1176 relocation = input_section->output_section->vma;
1177 relocation -= (input_section->output_section->vma
1178 + input_section->output_offset
1179 + offset + INST_WORD_SIZE);
1180 relocation += addend;
1181 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
1182 contents + offset + endian);
1183 bfd_put_16 (input_bfd, relocation & 0xffff,
1184 contents + offset + endian + INST_WORD_SIZE);
1185 break;
1186
7ba29e2a
NC
1187 case (int) R_MICROBLAZE_PLT_64:
1188 {
1189 bfd_vma immediate;
ce558b89 1190 if (htab->elf.splt != NULL && h != NULL
7ba29e2a
NC
1191 && h->plt.offset != (bfd_vma) -1)
1192 {
ce558b89
AM
1193 relocation = (htab->elf.splt->output_section->vma
1194 + htab->elf.splt->output_offset
7ba29e2a
NC
1195 + h->plt.offset);
1196 unresolved_reloc = FALSE;
1197 immediate = relocation - (input_section->output_section->vma
1198 + input_section->output_offset
1199 + offset + INST_WORD_SIZE);
1200 bfd_put_16 (input_bfd, (immediate >> 16) & 0xffff,
07d6d2b8 1201 contents + offset + endian);
7ba29e2a 1202 bfd_put_16 (input_bfd, immediate & 0xffff,
07d6d2b8 1203 contents + offset + endian + INST_WORD_SIZE);
7ba29e2a
NC
1204 }
1205 else
1206 {
1207 relocation -= (input_section->output_section->vma
1208 + input_section->output_offset
1209 + offset + INST_WORD_SIZE);
1210 immediate = relocation;
1211 bfd_put_16 (input_bfd, (immediate >> 16) & 0xffff,
07d6d2b8 1212 contents + offset + endian);
7ba29e2a 1213 bfd_put_16 (input_bfd, immediate & 0xffff,
07d6d2b8 1214 contents + offset + endian + INST_WORD_SIZE);
7ba29e2a
NC
1215 }
1216 break;
1217 }
1218
69b06cc8
ME
1219 case (int) R_MICROBLAZE_TLSGD:
1220 tls_type = (TLS_TLS | TLS_GD);
1221 goto dogot;
1222 case (int) R_MICROBLAZE_TLSLD:
1223 tls_type = (TLS_TLS | TLS_LD);
1a0670f3 1224 /* Fall through. */
69b06cc8 1225 dogot:
7ba29e2a
NC
1226 case (int) R_MICROBLAZE_GOT_64:
1227 {
69b06cc8
ME
1228 bfd_vma *offp;
1229 bfd_vma off, off2;
1230 unsigned long indx;
1231 bfd_vma static_value;
1232
1233 bfd_boolean need_relocs = FALSE;
ce558b89 1234 if (htab->elf.sgot == NULL)
7ba29e2a 1235 abort ();
69b06cc8
ME
1236
1237 indx = 0;
1238 offp = NULL;
1239
1240 /* 1. Identify GOT Offset;
1241 2. Compute Static Values
1242 3. Process Module Id, Process Offset
1243 4. Fixup Relocation with GOT offset value. */
1244
1245 /* 1. Determine GOT Offset to use : TLS_LD, global, local */
1246 if (IS_TLS_LD (tls_type))
1247 offp = &htab->tlsld_got.offset;
1248 else if (h != NULL)
1249 {
ce558b89
AM
1250 if (htab->elf.sgotplt != NULL
1251 && h->got.offset != (bfd_vma) -1)
1252 offp = &h->got.offset;
69b06cc8 1253 else
ce558b89 1254 abort ();
69b06cc8
ME
1255 }
1256 else
7ba29e2a 1257 {
7ba29e2a
NC
1258 if (local_got_offsets == NULL)
1259 abort ();
69b06cc8
ME
1260 offp = &local_got_offsets[r_symndx];
1261 }
1262
1263 if (!offp)
1264 abort ();
1265
1266 off = (*offp) & ~1;
1267 off2 = off;
1268
1269 if (IS_TLS_LD(tls_type) || IS_TLS_GD(tls_type))
1270 off2 = off + 4;
1271
1272 /* Symbol index to use for relocs */
1273 if (h != NULL)
1274 {
1275 bfd_boolean dyn =
1276 elf_hash_table (info)->dynamic_sections_created;
1277
0e1862bb
L
1278 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
1279 bfd_link_pic (info),
1280 h)
1281 && (!bfd_link_pic (info)
1282 || !SYMBOL_REFERENCES_LOCAL (info, h)))
69b06cc8
ME
1283 indx = h->dynindx;
1284 }
7ba29e2a 1285
69b06cc8 1286 /* Need to generate relocs ? */
0e1862bb 1287 if ((bfd_link_pic (info) || indx != 0)
69b06cc8 1288 && (h == NULL
112fef40
L
1289 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
1290 && !resolved_to_zero)
69b06cc8
ME
1291 || h->root.type != bfd_link_hash_undefweak))
1292 need_relocs = TRUE;
1293
1294 /* 2. Compute/Emit Static value of r-expression */
1295 static_value = relocation + addend;
1296
1297 /* 3. Process module-id and offset */
1298 if (! ((*offp) & 1) )
1299 {
1300 bfd_vma got_offset;
1301
ce558b89
AM
1302 got_offset = (htab->elf.sgot->output_section->vma
1303 + htab->elf.sgot->output_offset
69b06cc8
ME
1304 + off);
1305
1306 /* Process module-id */
1307 if (IS_TLS_LD(tls_type))
1308 {
0e1862bb 1309 if (! bfd_link_pic (info))
ce558b89
AM
1310 bfd_put_32 (output_bfd, 1,
1311 htab->elf.sgot->contents + off);
69b06cc8 1312 else
ce558b89
AM
1313 microblaze_elf_output_dynamic_relocation
1314 (output_bfd,
1315 htab->elf.srelgot,
1316 htab->elf.srelgot->reloc_count++,
1317 /* symindex= */ 0, R_MICROBLAZE_TLSDTPMOD32,
1318 got_offset, 0);
7ba29e2a 1319 }
69b06cc8
ME
1320 else if (IS_TLS_GD(tls_type))
1321 {
07d6d2b8 1322 if (! need_relocs)
ce558b89
AM
1323 bfd_put_32 (output_bfd, 1,
1324 htab->elf.sgot->contents + off);
07d6d2b8 1325 else
ce558b89
AM
1326 microblaze_elf_output_dynamic_relocation
1327 (output_bfd,
1328 htab->elf.srelgot,
1329 htab->elf.srelgot->reloc_count++,
1330 /* symindex= */ indx, R_MICROBLAZE_TLSDTPMOD32,
1331 got_offset, indx ? 0 : static_value);
69b06cc8
ME
1332 }
1333
1334 /* Process Offset */
ce558b89 1335 if (htab->elf.srelgot == NULL)
69b06cc8
ME
1336 abort ();
1337
ce558b89
AM
1338 got_offset = (htab->elf.sgot->output_section->vma
1339 + htab->elf.sgot->output_offset
69b06cc8
ME
1340 + off2);
1341 if (IS_TLS_LD(tls_type))
1342 {
07d6d2b8
AM
1343 /* For LD, offset should be 0 */
1344 *offp |= 1;
1345 bfd_put_32 (output_bfd, 0,
ce558b89 1346 htab->elf.sgot->contents + off2);
69b06cc8
ME
1347 }
1348 else if (IS_TLS_GD(tls_type))
7ba29e2a 1349 {
07d6d2b8
AM
1350 *offp |= 1;
1351 static_value -= dtprel_base(info);
1352 if (need_relocs)
ce558b89
AM
1353 microblaze_elf_output_dynamic_relocation
1354 (output_bfd,
1355 htab->elf.srelgot,
1356 htab->elf.srelgot->reloc_count++,
1357 /* symindex= */ indx, R_MICROBLAZE_TLSDTPREL32,
1358 got_offset, indx ? 0 : static_value);
07d6d2b8 1359 else
ce558b89
AM
1360 bfd_put_32 (output_bfd, static_value,
1361 htab->elf.sgot->contents + off2);
7ba29e2a
NC
1362 }
1363 else
69b06cc8 1364 {
ce558b89
AM
1365 bfd_put_32 (output_bfd, static_value,
1366 htab->elf.sgot->contents + off2);
69b06cc8 1367
ce558b89
AM
1368 /* Relocs for dyn symbols generated by
1369 finish_dynamic_symbols */
1370 if (bfd_link_pic (info) && h == NULL)
1371 {
1372 *offp |= 1;
1373 microblaze_elf_output_dynamic_relocation
1374 (output_bfd,
1375 htab->elf.srelgot,
1376 htab->elf.srelgot->reloc_count++,
1377 /* symindex= */ indx, R_MICROBLAZE_REL,
1378 got_offset, static_value);
1379 }
69b06cc8 1380 }
7ba29e2a 1381 }
69b06cc8
ME
1382
1383 /* 4. Fixup Relocation with GOT offset value
1384 Compute relative address of GOT entry for applying
1385 the current relocation */
ce558b89
AM
1386 relocation = htab->elf.sgot->output_section->vma
1387 + htab->elf.sgot->output_offset
69b06cc8 1388 + off
ce558b89
AM
1389 - htab->elf.sgotplt->output_section->vma
1390 - htab->elf.sgotplt->output_offset;
69b06cc8
ME
1391
1392 /* Apply Current Relocation */
7ba29e2a 1393 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
07d6d2b8 1394 contents + offset + endian);
7ba29e2a 1395 bfd_put_16 (input_bfd, relocation & 0xffff,
07d6d2b8 1396 contents + offset + endian + INST_WORD_SIZE);
69b06cc8
ME
1397
1398 unresolved_reloc = FALSE;
7ba29e2a
NC
1399 break;
1400 }
1401
1402 case (int) R_MICROBLAZE_GOTOFF_64:
1403 {
1404 bfd_vma immediate;
1405 unsigned short lo, high;
1406 relocation += addend;
ce558b89
AM
1407 relocation -= (htab->elf.sgotplt->output_section->vma
1408 + htab->elf.sgotplt->output_offset);
7ba29e2a
NC
1409 /* Write this value into correct location. */
1410 immediate = relocation;
1411 lo = immediate & 0x0000ffff;
1412 high = (immediate >> 16) & 0x0000ffff;
f23200ad 1413 bfd_put_16 (input_bfd, high, contents + offset + endian);
ce558b89
AM
1414 bfd_put_16 (input_bfd, lo,
1415 contents + offset + INST_WORD_SIZE + endian);
7ba29e2a
NC
1416 break;
1417 }
1418
1419 case (int) R_MICROBLAZE_GOTOFF_32:
1420 {
1421 relocation += addend;
ce558b89
AM
1422 relocation -= (htab->elf.sgotplt->output_section->vma
1423 + htab->elf.sgotplt->output_offset);
7ba29e2a
NC
1424 /* Write this value into correct location. */
1425 bfd_put_32 (input_bfd, relocation, contents + offset);
1426 break;
1427 }
1428
69b06cc8
ME
1429 case (int) R_MICROBLAZE_TLSDTPREL64:
1430 relocation += addend;
1431 relocation -= dtprel_base(info);
1432 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
1433 contents + offset + 2);
1434 bfd_put_16 (input_bfd, relocation & 0xffff,
1435 contents + offset + 2 + INST_WORD_SIZE);
1436 break;
3f0a5f17
ME
1437 case (int) R_MICROBLAZE_TEXTREL_64:
1438 case (int) R_MICROBLAZE_TEXTREL_32_LO:
7ba29e2a
NC
1439 case (int) R_MICROBLAZE_64_PCREL :
1440 case (int) R_MICROBLAZE_64:
1441 case (int) R_MICROBLAZE_32:
1442 {
cf35638d 1443 /* r_symndx will be STN_UNDEF (zero) only for relocs against symbols
7ba29e2a
NC
1444 from removed linkonce sections, or sections discarded by
1445 a linker script. */
cf35638d 1446 if (r_symndx == STN_UNDEF || (input_section->flags & SEC_ALLOC) == 0)
7ba29e2a
NC
1447 {
1448 relocation += addend;
1449 if (r_type == R_MICROBLAZE_32)
1450 bfd_put_32 (input_bfd, relocation, contents + offset);
1451 else
1452 {
1453 if (r_type == R_MICROBLAZE_64_PCREL)
1454 relocation -= (input_section->output_section->vma
1455 + input_section->output_offset
1456 + offset + INST_WORD_SIZE);
3f0a5f17
ME
1457 else if (r_type == R_MICROBLAZE_TEXTREL_64
1458 || r_type == R_MICROBLAZE_TEXTREL_32_LO)
1459 relocation -= input_section->output_section->vma;
1460
1461 if (r_type == R_MICROBLAZE_TEXTREL_32_LO)
1462 bfd_put_16 (input_bfd, relocation & 0xffff,
1463 contents + offset + endian);
1464
1465 else
1466 {
1467 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
07d6d2b8 1468 contents + offset + endian);
3f0a5f17 1469 bfd_put_16 (input_bfd, relocation & 0xffff,
07d6d2b8 1470 contents + offset + endian + INST_WORD_SIZE);
7ba29e2a 1471 }
3f0a5f17 1472 }
7ba29e2a
NC
1473 break;
1474 }
1475
0e1862bb 1476 if ((bfd_link_pic (info)
7ba29e2a 1477 && (h == NULL
112fef40
L
1478 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
1479 && !resolved_to_zero)
7ba29e2a
NC
1480 || h->root.type != bfd_link_hash_undefweak)
1481 && (!howto->pc_relative
1482 || (h != NULL
1483 && h->dynindx != -1
1484 && (!info->symbolic
1485 || !h->def_regular))))
0e1862bb 1486 || (!bfd_link_pic (info)
7ba29e2a
NC
1487 && h != NULL
1488 && h->dynindx != -1
1489 && !h->non_got_ref
1490 && ((h->def_dynamic
1491 && !h->def_regular)
1492 || h->root.type == bfd_link_hash_undefweak
1493 || h->root.type == bfd_link_hash_undefined)))
1494 {
1495 Elf_Internal_Rela outrel;
1496 bfd_byte *loc;
c7e2358a 1497 bfd_boolean skip;
7ba29e2a
NC
1498
1499 /* When generating a shared object, these relocations
1500 are copied into the output file to be resolved at run
1501 time. */
1502
1503 BFD_ASSERT (sreloc != NULL);
1504
1505 skip = FALSE;
1506
1507 outrel.r_offset =
1508 _bfd_elf_section_offset (output_bfd, info, input_section,
1509 rel->r_offset);
1510 if (outrel.r_offset == (bfd_vma) -1)
1511 skip = TRUE;
1512 else if (outrel.r_offset == (bfd_vma) -2)
c7e2358a 1513 skip = TRUE;
7ba29e2a
NC
1514 outrel.r_offset += (input_section->output_section->vma
1515 + input_section->output_offset);
1516
1517 if (skip)
1518 memset (&outrel, 0, sizeof outrel);
1519 /* h->dynindx may be -1 if the symbol was marked to
1520 become local. */
1521 else if (h != NULL
1522 && ((! info->symbolic && h->dynindx != -1)
1523 || !h->def_regular))
1524 {
1525 BFD_ASSERT (h->dynindx != -1);
1526 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
1527 outrel.r_addend = addend;
1528 }
1529 else
1530 {
1531 if (r_type == R_MICROBLAZE_32)
1532 {
1533 outrel.r_info = ELF32_R_INFO (0, R_MICROBLAZE_REL);
1534 outrel.r_addend = relocation + addend;
1535 }
1536 else
1537 {
1538 BFD_FAIL ();
4eca0228 1539 _bfd_error_handler
871b3ab2 1540 (_("%pB: probably compiled without -fPIC?"),
7ba29e2a
NC
1541 input_bfd);
1542 bfd_set_error (bfd_error_bad_value);
1543 return FALSE;
1544 }
1545 }
1546
1547 loc = sreloc->contents;
1548 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rela);
1549 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
1550 break;
1551 }
1552 else
1553 {
1554 relocation += addend;
1555 if (r_type == R_MICROBLAZE_32)
1556 bfd_put_32 (input_bfd, relocation, contents + offset);
1557 else
1558 {
1559 if (r_type == R_MICROBLAZE_64_PCREL)
1560 relocation -= (input_section->output_section->vma
1561 + input_section->output_offset
1562 + offset + INST_WORD_SIZE);
3f0a5f17
ME
1563 else if (r_type == R_MICROBLAZE_TEXTREL_64
1564 || r_type == R_MICROBLAZE_TEXTREL_32_LO)
1565 relocation -= input_section->output_section->vma;
1566
1567 if (r_type == R_MICROBLAZE_TEXTREL_32_LO)
1568 {
1569 bfd_put_16 (input_bfd, relocation & 0xffff,
1570 contents + offset + endian);
1571 }
1572 else
1573 {
1574 bfd_put_16 (input_bfd, (relocation >> 16) & 0xffff,
1575 contents + offset + endian);
1576 bfd_put_16 (input_bfd, relocation & 0xffff,
1577 contents + offset + endian
1578 + INST_WORD_SIZE);
1579 }
1580 }
7ba29e2a
NC
1581 break;
1582 }
1583 }
1584
1585 default :
1586 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
1587 contents, offset,
1588 relocation, addend);
1589 break;
1590 }
1591 }
1592
1593 check_reloc:
1594
1595 if (r != bfd_reloc_ok)
1596 {
1597 /* FIXME: This should be generic enough to go in a utility. */
1598 const char *name;
1599
1600 if (h != NULL)
1601 name = h->root.root.string;
1602 else
1603 {
1604 name = (bfd_elf_string_from_elf_section
1605 (input_bfd, symtab_hdr->sh_link, sym->st_name));
1606 if (name == NULL || *name == '\0')
fd361982 1607 name = bfd_section_name (sec);
7ba29e2a
NC
1608 }
1609
1610 if (errmsg != NULL)
1611 goto common_error;
1612
1613 switch (r)
1614 {
1615 case bfd_reloc_overflow:
1a72702b
AM
1616 (*info->callbacks->reloc_overflow)
1617 (info, (h ? &h->root : NULL), name, howto->name,
1618 (bfd_vma) 0, input_bfd, input_section, offset);
7ba29e2a
NC
1619 break;
1620
1621 case bfd_reloc_undefined:
1a72702b
AM
1622 (*info->callbacks->undefined_symbol)
1623 (info, name, input_bfd, input_section, offset, TRUE);
7ba29e2a
NC
1624 break;
1625
1626 case bfd_reloc_outofrange:
1627 errmsg = _("internal error: out of range error");
1628 goto common_error;
1629
1630 case bfd_reloc_notsupported:
1631 errmsg = _("internal error: unsupported relocation error");
1632 goto common_error;
1633
1634 case bfd_reloc_dangerous:
1635 errmsg = _("internal error: dangerous error");
1636 goto common_error;
1637
1638 default:
1639 errmsg = _("internal error: unknown error");
1640 /* Fall through. */
1641 common_error:
1a72702b
AM
1642 (*info->callbacks->warning) (info, errmsg, name, input_bfd,
1643 input_section, offset);
7ba29e2a
NC
1644 break;
1645 }
1646 }
1647 }
1648
1649 return ret;
1650}
1651\f
1652/* Calculate fixup value for reference. */
1653
1654static int
886e427f 1655calc_fixup (bfd_vma start, bfd_vma size, asection *sec)
7ba29e2a 1656{
886e427f 1657 bfd_vma end = start + size;
7ba29e2a
NC
1658 int i, fixup = 0;
1659
1660 if (sec == NULL || sec->relax == NULL)
1661 return 0;
1662
1663 /* Look for addr in relax table, total fixup value. */
1664 for (i = 0; i < sec->relax_count; i++)
1665 {
886e427f 1666 if (end <= sec->relax[i].addr)
07d6d2b8 1667 break;
886e427f 1668 if ((end != start) && (start > sec->relax[i].addr))
07d6d2b8 1669 continue;
7ba29e2a
NC
1670 fixup += sec->relax[i].size;
1671 }
7ba29e2a
NC
1672 return fixup;
1673}
1674
f23200ad
ME
1675/* Read-modify-write into the bfd, an immediate value into appropriate fields of
1676 a 32-bit instruction. */
1677static void
1678microblaze_bfd_write_imm_value_32 (bfd *abfd, bfd_byte *bfd_addr, bfd_vma val)
1679{
1680 unsigned long instr = bfd_get_32 (abfd, bfd_addr);
1681 instr &= ~0x0000ffff;
1682 instr |= (val & 0x0000ffff);
1683 bfd_put_32 (abfd, instr, bfd_addr);
1684}
1685
1686/* Read-modify-write into the bfd, an immediate value into appropriate fields of
1687 two consecutive 32-bit instructions. */
1688static void
1689microblaze_bfd_write_imm_value_64 (bfd *abfd, bfd_byte *bfd_addr, bfd_vma val)
1690{
1691 unsigned long instr_hi;
1692 unsigned long instr_lo;
1693
1694 instr_hi = bfd_get_32 (abfd, bfd_addr);
1695 instr_hi &= ~0x0000ffff;
1696 instr_hi |= ((val >> 16) & 0x0000ffff);
1697 bfd_put_32 (abfd, instr_hi, bfd_addr);
1698
1699 instr_lo = bfd_get_32 (abfd, bfd_addr + INST_WORD_SIZE);
1700 instr_lo &= ~0x0000ffff;
1701 instr_lo |= (val & 0x0000ffff);
1702 bfd_put_32 (abfd, instr_lo, bfd_addr + INST_WORD_SIZE);
1703}
1704
7ba29e2a
NC
1705static bfd_boolean
1706microblaze_elf_relax_section (bfd *abfd,
1707 asection *sec,
1708 struct bfd_link_info *link_info,
1709 bfd_boolean *again)
1710{
1711 Elf_Internal_Shdr *symtab_hdr;
1712 Elf_Internal_Rela *internal_relocs;
1713 Elf_Internal_Rela *free_relocs = NULL;
1714 Elf_Internal_Rela *irel, *irelend;
1715 bfd_byte *contents = NULL;
1716 bfd_byte *free_contents = NULL;
1717 int rel_count;
1718 unsigned int shndx;
91d6fa6a 1719 int i, sym_index;
7ba29e2a
NC
1720 asection *o;
1721 struct elf_link_hash_entry *sym_hash;
1722 Elf_Internal_Sym *isymbuf, *isymend;
1723 Elf_Internal_Sym *isym;
1724 int symcount;
1725 int offset;
1726 bfd_vma src, dest;
1727
1728 /* We only do this once per section. We may be able to delete some code
1729 by running multiple passes, but it is not worth it. */
1730 *again = FALSE;
1731
1732 /* Only do this for a text section. */
0e1862bb 1733 if (bfd_link_relocatable (link_info)
7ba29e2a 1734 || (sec->flags & SEC_RELOC) == 0
f23200ad
ME
1735 || (sec->reloc_count == 0)
1736 || (sec->flags & SEC_CODE) == 0)
7ba29e2a
NC
1737 return TRUE;
1738
1739 BFD_ASSERT ((sec->size > 0) || (sec->rawsize > 0));
1740
1741 /* If this is the first time we have been called for this section,
1742 initialize the cooked size. */
1743 if (sec->size == 0)
1744 sec->size = sec->rawsize;
1745
1746 /* Get symbols for this section. */
1747 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1748 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
1749 symcount = symtab_hdr->sh_size / sizeof (Elf32_External_Sym);
1750 if (isymbuf == NULL)
1751 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr, symcount,
07d6d2b8 1752 0, NULL, NULL, NULL);
7ba29e2a
NC
1753 BFD_ASSERT (isymbuf != NULL);
1754
91d6fa6a 1755 internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, link_info->keep_memory);
7ba29e2a
NC
1756 if (internal_relocs == NULL)
1757 goto error_return;
1758 if (! link_info->keep_memory)
1759 free_relocs = internal_relocs;
1760
1761 sec->relax = (struct relax_table *) bfd_malloc ((sec->reloc_count + 1)
1762 * sizeof (struct relax_table));
1763 if (sec->relax == NULL)
1764 goto error_return;
1765 sec->relax_count = 0;
1766
1767 irelend = internal_relocs + sec->reloc_count;
1768 rel_count = 0;
1769 for (irel = internal_relocs; irel < irelend; irel++, rel_count++)
1770 {
1771 bfd_vma symval;
1772 if ((ELF32_R_TYPE (irel->r_info) != (int) R_MICROBLAZE_64_PCREL)
3f0a5f17
ME
1773 && (ELF32_R_TYPE (irel->r_info) != (int) R_MICROBLAZE_64)
1774 && (ELF32_R_TYPE (irel->r_info) != (int) R_MICROBLAZE_TEXTREL_64))
7ba29e2a
NC
1775 continue; /* Can't delete this reloc. */
1776
1777 /* Get the section contents. */
1778 if (contents == NULL)
1779 {
1780 if (elf_section_data (sec)->this_hdr.contents != NULL)
1781 contents = elf_section_data (sec)->this_hdr.contents;
1782 else
1783 {
1784 contents = (bfd_byte *) bfd_malloc (sec->size);
1785 if (contents == NULL)
1786 goto error_return;
1787 free_contents = contents;
1788
1789 if (!bfd_get_section_contents (abfd, sec, contents,
1790 (file_ptr) 0, sec->size))
1791 goto error_return;
07d6d2b8 1792 elf_section_data (sec)->this_hdr.contents = contents;
7ba29e2a
NC
1793 }
1794 }
1795
1796 /* Get the value of the symbol referred to by the reloc. */
1797 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
1798 {
1799 /* A local symbol. */
7ba29e2a
NC
1800 asection *sym_sec;
1801
1802 isym = isymbuf + ELF32_R_SYM (irel->r_info);
07d6d2b8 1803 if (isym->st_shndx == SHN_UNDEF)
7ba29e2a
NC
1804 sym_sec = bfd_und_section_ptr;
1805 else if (isym->st_shndx == SHN_ABS)
1806 sym_sec = bfd_abs_section_ptr;
1807 else if (isym->st_shndx == SHN_COMMON)
1808 sym_sec = bfd_com_section_ptr;
1809 else
1810 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
1811
1812 symval = _bfd_elf_rela_local_sym (abfd, isym, &sym_sec, irel);
1813 }
1814 else
1815 {
1816 unsigned long indx;
1817 struct elf_link_hash_entry *h;
1818
1819 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
1820 h = elf_sym_hashes (abfd)[indx];
1821 BFD_ASSERT (h != NULL);
1822
07d6d2b8 1823 if (h->root.type != bfd_link_hash_defined
7ba29e2a
NC
1824 && h->root.type != bfd_link_hash_defweak)
1825 /* This appears to be a reference to an undefined
1826 symbol. Just ignore it--it will be caught by the
1827 regular reloc processing. */
1828 continue;
1829
1830 symval = (h->root.u.def.value
1831 + h->root.u.def.section->output_section->vma
1832 + h->root.u.def.section->output_offset);
1833 }
1834
1835 /* If this is a PC-relative reloc, subtract the instr offset from
07d6d2b8 1836 the symbol value. */
7ba29e2a
NC
1837 if (ELF32_R_TYPE (irel->r_info) == (int) R_MICROBLAZE_64_PCREL)
1838 {
1839 symval = symval + irel->r_addend
1840 - (irel->r_offset
1841 + sec->output_section->vma
1842 + sec->output_offset);
07d6d2b8 1843 }
3f0a5f17
ME
1844 else if (ELF32_R_TYPE (irel->r_info) == (int) R_MICROBLAZE_TEXTREL_64)
1845 {
1846 symval = symval + irel->r_addend - (sec->output_section->vma);
1847 }
7ba29e2a
NC
1848 else
1849 symval += irel->r_addend;
1850
1851 if ((symval & 0xffff8000) == 0
1852 || (symval & 0xffff8000) == 0xffff8000)
1853 {
07d6d2b8 1854 /* We can delete this instruction. */
7ba29e2a
NC
1855 sec->relax[sec->relax_count].addr = irel->r_offset;
1856 sec->relax[sec->relax_count].size = INST_WORD_SIZE;
1857 sec->relax_count++;
1858
1859 /* Rewrite relocation type. */
07d6d2b8 1860 switch ((enum elf_microblaze_reloc_type) ELF32_R_TYPE (irel->r_info))
7ba29e2a
NC
1861 {
1862 case R_MICROBLAZE_64_PCREL:
1863 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
07d6d2b8 1864 (int) R_MICROBLAZE_32_PCREL_LO);
7ba29e2a
NC
1865 break;
1866 case R_MICROBLAZE_64:
07d6d2b8
AM
1867 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1868 (int) R_MICROBLAZE_32_LO);
7ba29e2a 1869 break;
3f0a5f17
ME
1870 case R_MICROBLAZE_TEXTREL_64:
1871 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1872 (int) R_MICROBLAZE_TEXTREL_32_LO);
1873 break;
7ba29e2a
NC
1874 default:
1875 /* Cannot happen. */
1876 BFD_ASSERT (FALSE);
07d6d2b8
AM
1877 }
1878 }
7ba29e2a
NC
1879 } /* Loop through all relocations. */
1880
1881 /* Loop through the relocs again, and see if anything needs to change. */
1882 if (sec->relax_count > 0)
1883 {
1884 shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
1885 rel_count = 0;
1886 sec->relax[sec->relax_count].addr = sec->size;
1887
1888 for (irel = internal_relocs; irel < irelend; irel++, rel_count++)
07d6d2b8 1889 {
7ba29e2a
NC
1890 bfd_vma nraddr;
1891
07d6d2b8 1892 /* Get the new reloc address. */
886e427f 1893 nraddr = irel->r_offset - calc_fixup (irel->r_offset, 0, sec);
07d6d2b8 1894 switch ((enum elf_microblaze_reloc_type) ELF32_R_TYPE (irel->r_info))
7ba29e2a
NC
1895 {
1896 default:
1897 break;
1898 case R_MICROBLAZE_64_PCREL:
1899 break;
3f0a5f17
ME
1900 case R_MICROBLAZE_TEXTREL_64:
1901 case R_MICROBLAZE_TEXTREL_32_LO:
7ba29e2a
NC
1902 case R_MICROBLAZE_64:
1903 case R_MICROBLAZE_32_LO:
1904 /* If this reloc is against a symbol defined in this
07d6d2b8
AM
1905 section, we must check the addend to see it will put the value in
1906 range to be adjusted, and hence must be changed. */
7ba29e2a 1907 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
07d6d2b8 1908 {
7ba29e2a
NC
1909 isym = isymbuf + ELF32_R_SYM (irel->r_info);
1910 /* Only handle relocs against .text. */
1911 if (isym->st_shndx == shndx
1912 && ELF32_ST_TYPE (isym->st_info) == STT_SECTION)
886e427f 1913 irel->r_addend -= calc_fixup (irel->r_addend, 0, sec);
07d6d2b8 1914 }
7ba29e2a
NC
1915 break;
1916 case R_MICROBLAZE_NONE:
1917 {
07d6d2b8
AM
1918 /* This was a PC-relative instruction that was
1919 completely resolved. */
1920 int sfix, efix;
1921 bfd_vma target_address;
1922 target_address = irel->r_addend + irel->r_offset;
1923 sfix = calc_fixup (irel->r_offset, 0, sec);
1924 efix = calc_fixup (target_address, 0, sec);
1925 irel->r_addend -= (efix - sfix);
1926 /* Should use HOWTO. */
1927 microblaze_bfd_write_imm_value_32 (abfd, contents + irel->r_offset,
1928 irel->r_addend);
7ba29e2a
NC
1929 }
1930 break;
1931 case R_MICROBLAZE_64_NONE:
1932 {
07d6d2b8
AM
1933 /* This was a PC-relative 64-bit instruction that was
1934 completely resolved. */
1935 int sfix, efix;
1936 bfd_vma target_address;
7ba29e2a 1937 target_address = irel->r_addend + irel->r_offset + INST_WORD_SIZE;
886e427f
ME
1938 sfix = calc_fixup (irel->r_offset + INST_WORD_SIZE, 0, sec);
1939 efix = calc_fixup (target_address, 0, sec);
7ba29e2a 1940 irel->r_addend -= (efix - sfix);
f23200ad 1941 microblaze_bfd_write_imm_value_32 (abfd, contents + irel->r_offset
07d6d2b8 1942 + INST_WORD_SIZE, irel->r_addend);
7ba29e2a
NC
1943 }
1944 break;
1945 }
07d6d2b8
AM
1946 irel->r_offset = nraddr;
1947 } /* Change all relocs in this section. */
7ba29e2a
NC
1948
1949 /* Look through all other sections. */
1950 for (o = abfd->sections; o != NULL; o = o->next)
07d6d2b8
AM
1951 {
1952 Elf_Internal_Rela *irelocs;
1953 Elf_Internal_Rela *irelscan, *irelscanend;
1954 bfd_byte *ocontents;
1955
1956 if (o == sec
1957 || (o->flags & SEC_RELOC) == 0
1958 || o->reloc_count == 0)
1959 continue;
1960
1961 /* We always cache the relocs. Perhaps, if info->keep_memory is
1962 FALSE, we should free them, if we are permitted to. */
1963
1964 irelocs = _bfd_elf_link_read_relocs (abfd, o, NULL, NULL, TRUE);
1965 if (irelocs == NULL)
1966 goto error_return;
1967
1968 ocontents = NULL;
1969 irelscanend = irelocs + o->reloc_count;
1970 for (irelscan = irelocs; irelscan < irelscanend; irelscan++)
1971 {
1972 if (ELF32_R_TYPE (irelscan->r_info) == (int) R_MICROBLAZE_32)
1973 {
1974 isym = isymbuf + ELF32_R_SYM (irelscan->r_info);
1975
1976 /* Look at the reloc only if the value has been resolved. */
1977 if (isym->st_shndx == shndx
1978 && (ELF32_ST_TYPE (isym->st_info) == STT_SECTION))
1979 {
1980 if (ocontents == NULL)
1981 {
1982 if (elf_section_data (o)->this_hdr.contents != NULL)
1983 ocontents = elf_section_data (o)->this_hdr.contents;
1984 else
1985 {
1986 /* We always cache the section contents.
1987 Perhaps, if info->keep_memory is FALSE, we
1988 should free them, if we are permitted to. */
1989 if (o->rawsize == 0)
1990 o->rawsize = o->size;
1991 ocontents = (bfd_byte *) bfd_malloc (o->rawsize);
1992 if (ocontents == NULL)
1993 goto error_return;
1994 if (!bfd_get_section_contents (abfd, o, ocontents,
1995 (file_ptr) 0,
7ba29e2a 1996 o->rawsize))
07d6d2b8
AM
1997 goto error_return;
1998 elf_section_data (o)->this_hdr.contents = ocontents;
1999 }
7ba29e2a 2000
07d6d2b8 2001 }
886e427f 2002 irelscan->r_addend -= calc_fixup (irelscan->r_addend, 0, sec);
07d6d2b8 2003 }
7ba29e2a
NC
2004 else if (ELF32_R_TYPE (irelscan->r_info) == (int) R_MICROBLAZE_32_SYM_OP_SYM)
2005 {
2006 isym = isymbuf + ELF32_R_SYM (irelscan->r_info);
2007
2008 /* Look at the reloc only if the value has been resolved. */
2009 if (ocontents == NULL)
2010 {
2011 if (elf_section_data (o)->this_hdr.contents != NULL)
2012 ocontents = elf_section_data (o)->this_hdr.contents;
2013 else
2014 {
2015 /* We always cache the section contents.
2016 Perhaps, if info->keep_memory is FALSE, we
2017 should free them, if we are permitted to. */
2018
2019 if (o->rawsize == 0)
2020 o->rawsize = o->size;
2021 ocontents = (bfd_byte *) bfd_malloc (o->rawsize);
2022 if (ocontents == NULL)
2023 goto error_return;
2024 if (!bfd_get_section_contents (abfd, o, ocontents,
2025 (file_ptr) 0,
2026 o->rawsize))
2027 goto error_return;
2028 elf_section_data (o)->this_hdr.contents = ocontents;
2029 }
2030 }
2031 irelscan->r_addend -= calc_fixup (irel->r_addend
2032 + isym->st_value,
886e427f 2033 0,
7ba29e2a
NC
2034 sec);
2035 }
2036 }
2037 else if ((ELF32_R_TYPE (irelscan->r_info) == (int) R_MICROBLAZE_32_PCREL_LO)
3f0a5f17
ME
2038 || (ELF32_R_TYPE (irelscan->r_info)
2039 == (int) R_MICROBLAZE_32_LO)
2040 || (ELF32_R_TYPE (irelscan->r_info)
2041 == (int) R_MICROBLAZE_TEXTREL_32_LO))
7ba29e2a
NC
2042 {
2043 isym = isymbuf + ELF32_R_SYM (irelscan->r_info);
2044
2045 /* Look at the reloc only if the value has been resolved. */
2046 if (isym->st_shndx == shndx
2047 && (ELF32_ST_TYPE (isym->st_info) == STT_SECTION))
2048 {
2049 bfd_vma immediate;
2050 bfd_vma target_address;
2051
2052 if (ocontents == NULL)
2053 {
2054 if (elf_section_data (o)->this_hdr.contents != NULL)
2055 ocontents = elf_section_data (o)->this_hdr.contents;
2056 else
2057 {
2058 /* We always cache the section contents.
2059 Perhaps, if info->keep_memory is FALSE, we
2060 should free them, if we are permitted to. */
2061 if (o->rawsize == 0)
2062 o->rawsize = o->size;
2063 ocontents = (bfd_byte *) bfd_malloc (o->rawsize);
2064 if (ocontents == NULL)
2065 goto error_return;
2066 if (!bfd_get_section_contents (abfd, o, ocontents,
2067 (file_ptr) 0,
2068 o->rawsize))
2069 goto error_return;
2070 elf_section_data (o)->this_hdr.contents = ocontents;
2071 }
2072 }
2073
f23200ad
ME
2074 unsigned long instr = bfd_get_32 (abfd, ocontents + irelscan->r_offset);
2075 immediate = instr & 0x0000ffff;
7ba29e2a 2076 target_address = immediate;
886e427f 2077 offset = calc_fixup (target_address, 0, sec);
7ba29e2a
NC
2078 immediate -= offset;
2079 irelscan->r_addend -= offset;
07d6d2b8
AM
2080 microblaze_bfd_write_imm_value_32 (abfd, ocontents + irelscan->r_offset,
2081 irelscan->r_addend);
7ba29e2a
NC
2082 }
2083 }
2084
3f0a5f17
ME
2085 if (ELF32_R_TYPE (irelscan->r_info) == (int) R_MICROBLAZE_64
2086 || (ELF32_R_TYPE (irelscan->r_info)
2087 == (int) R_MICROBLAZE_TEXTREL_64))
7ba29e2a
NC
2088 {
2089 isym = isymbuf + ELF32_R_SYM (irelscan->r_info);
2090
2091 /* Look at the reloc only if the value has been resolved. */
2092 if (isym->st_shndx == shndx
2093 && (ELF32_ST_TYPE (isym->st_info) == STT_SECTION))
2094 {
2095 bfd_vma immediate;
2096
2097 if (ocontents == NULL)
2098 {
2099 if (elf_section_data (o)->this_hdr.contents != NULL)
2100 ocontents = elf_section_data (o)->this_hdr.contents;
2101 else
2102 {
2103 /* We always cache the section contents.
2104 Perhaps, if info->keep_memory is FALSE, we
2105 should free them, if we are permitted to. */
2106
2107 if (o->rawsize == 0)
2108 o->rawsize = o->size;
2109 ocontents = (bfd_byte *) bfd_malloc (o->rawsize);
2110 if (ocontents == NULL)
2111 goto error_return;
2112 if (!bfd_get_section_contents (abfd, o, ocontents,
2113 (file_ptr) 0,
2114 o->rawsize))
2115 goto error_return;
2116 elf_section_data (o)->this_hdr.contents = ocontents;
2117 }
2118 }
07d6d2b8
AM
2119 unsigned long instr_hi = bfd_get_32 (abfd, ocontents
2120 + irelscan->r_offset);
2121 unsigned long instr_lo = bfd_get_32 (abfd, ocontents
2122 + irelscan->r_offset
2123 + INST_WORD_SIZE);
2124 immediate = (instr_hi & 0x0000ffff) << 16;
2125 immediate |= (instr_lo & 0x0000ffff);
886e427f 2126 offset = calc_fixup (irelscan->r_addend, 0, sec);
7ba29e2a
NC
2127 immediate -= offset;
2128 irelscan->r_addend -= offset;
2129 }
2130 }
2131 else if (ELF32_R_TYPE (irelscan->r_info) == (int) R_MICROBLAZE_64_PCREL)
2132 {
2133 isym = isymbuf + ELF32_R_SYM (irelscan->r_info);
2134
2135 /* Look at the reloc only if the value has been resolved. */
2136 if (isym->st_shndx == shndx
2137 && (ELF32_ST_TYPE (isym->st_info) == STT_SECTION))
2138 {
2139 bfd_vma immediate;
2140 bfd_vma target_address;
2141
2142 if (ocontents == NULL)
2143 {
2144 if (elf_section_data (o)->this_hdr.contents != NULL)
2145 ocontents = elf_section_data (o)->this_hdr.contents;
2146 else
2147 {
2148 /* We always cache the section contents.
2149 Perhaps, if info->keep_memory is FALSE, we
2150 should free them, if we are permitted to. */
2151 if (o->rawsize == 0)
2152 o->rawsize = o->size;
2153 ocontents = (bfd_byte *) bfd_malloc (o->rawsize);
2154 if (ocontents == NULL)
2155 goto error_return;
2156 if (!bfd_get_section_contents (abfd, o, ocontents,
2157 (file_ptr) 0,
2158 o->rawsize))
2159 goto error_return;
2160 elf_section_data (o)->this_hdr.contents = ocontents;
2161 }
2162 }
07d6d2b8
AM
2163 unsigned long instr_hi = bfd_get_32 (abfd, ocontents
2164 + irelscan->r_offset);
2165 unsigned long instr_lo = bfd_get_32 (abfd, ocontents
2166 + irelscan->r_offset
2167 + INST_WORD_SIZE);
2168 immediate = (instr_hi & 0x0000ffff) << 16;
2169 immediate |= (instr_lo & 0x0000ffff);
7ba29e2a 2170 target_address = immediate;
886e427f 2171 offset = calc_fixup (target_address, 0, sec);
7ba29e2a
NC
2172 immediate -= offset;
2173 irelscan->r_addend -= offset;
07d6d2b8
AM
2174 microblaze_bfd_write_imm_value_64 (abfd, ocontents
2175 + irelscan->r_offset, immediate);
7ba29e2a
NC
2176 }
2177 }
07d6d2b8
AM
2178 }
2179 }
7ba29e2a
NC
2180
2181 /* Adjust the local symbols defined in this section. */
2182 isymend = isymbuf + symtab_hdr->sh_info;
2183 for (isym = isymbuf; isym < isymend; isym++)
07d6d2b8
AM
2184 {
2185 if (isym->st_shndx == shndx)
2186 {
2187 isym->st_value -= calc_fixup (isym->st_value, 0, sec);
2188 if (isym->st_size)
2189 isym->st_size -= calc_fixup (isym->st_value, isym->st_size, sec);
2190 }
2191 }
7ba29e2a
NC
2192
2193 /* Now adjust the global symbols defined in this section. */
2194 isym = isymbuf + symtab_hdr->sh_info;
886e427f
ME
2195 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)) - symtab_hdr->sh_info;
2196 for (sym_index = 0; sym_index < symcount; sym_index++)
07d6d2b8
AM
2197 {
2198 sym_hash = elf_sym_hashes (abfd)[sym_index];
2199 if ((sym_hash->root.type == bfd_link_hash_defined
2200 || sym_hash->root.type == bfd_link_hash_defweak)
2201 && sym_hash->root.u.def.section == sec)
2202 {
2203 sym_hash->root.u.def.value -= calc_fixup (sym_hash->root.u.def.value,
2204 0, sec);
2205 if (sym_hash->size)
2206 sym_hash->size -= calc_fixup (sym_hash->root.u.def.value,
2207 sym_hash->size, sec);
2208 }
2209 }
7ba29e2a
NC
2210
2211 /* Physically move the code and change the cooked size. */
2212 dest = sec->relax[0].addr;
2213 for (i = 0; i < sec->relax_count; i++)
07d6d2b8
AM
2214 {
2215 int len;
2216 src = sec->relax[i].addr + sec->relax[i].size;
2217 len = sec->relax[i+1].addr - sec->relax[i].addr - sec->relax[i].size;
7ba29e2a 2218
07d6d2b8
AM
2219 memmove (contents + dest, contents + src, len);
2220 sec->size -= sec->relax[i].size;
2221 dest += len;
2222 }
7ba29e2a
NC
2223
2224 elf_section_data (sec)->relocs = internal_relocs;
2225 free_relocs = NULL;
2226
2227 elf_section_data (sec)->this_hdr.contents = contents;
2228 free_contents = NULL;
2229
2230 symtab_hdr->contents = (bfd_byte *) isymbuf;
2231 }
2232
c9594989
AM
2233 free (free_relocs);
2234 free_relocs = NULL;
7ba29e2a
NC
2235
2236 if (free_contents != NULL)
2237 {
2238 if (!link_info->keep_memory)
2239 free (free_contents);
2240 else
2241 /* Cache the section contents for elf_link_input_bfd. */
2242 elf_section_data (sec)->this_hdr.contents = contents;
2243 free_contents = NULL;
2244 }
2245
2246 if (sec->relax_count == 0)
2247 {
f23200ad 2248 *again = FALSE;
7ba29e2a
NC
2249 free (sec->relax);
2250 sec->relax = NULL;
2251 }
f23200ad
ME
2252 else
2253 *again = TRUE;
7ba29e2a
NC
2254 return TRUE;
2255
2256 error_return:
c9594989
AM
2257 free (free_relocs);
2258 free (free_contents);
2259 free (sec->relax);
2260 sec->relax = NULL;
2261 sec->relax_count = 0;
7ba29e2a
NC
2262 return FALSE;
2263}
2264
2265/* Return the section that should be marked against GC for a given
2266 relocation. */
2267
2268static asection *
2269microblaze_elf_gc_mark_hook (asection *sec,
fb34365b 2270 struct bfd_link_info * info,
07d6d2b8
AM
2271 Elf_Internal_Rela * rel,
2272 struct elf_link_hash_entry * h,
2273 Elf_Internal_Sym * sym)
7ba29e2a
NC
2274{
2275 if (h != NULL)
fb34365b
AM
2276 switch (ELF32_R_TYPE (rel->r_info))
2277 {
2278 case R_MICROBLAZE_GNU_VTINHERIT:
2279 case R_MICROBLAZE_GNU_VTENTRY:
2280 return NULL;
2281 }
2282
2283 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
7ba29e2a
NC
2284}
2285
7ba29e2a
NC
2286/* PIC support. */
2287
2288#define PLT_ENTRY_SIZE 16
2289
07d6d2b8
AM
2290#define PLT_ENTRY_WORD_0 0xb0000000 /* "imm 0". */
2291#define PLT_ENTRY_WORD_1 0xe9940000 /* "lwi r12,r20,0" - relocated to lwi r12,r20,func@GOT. */
2292#define PLT_ENTRY_WORD_1_NOPIC 0xe9800000 /* "lwi r12,r0,0" - non-PIC object. */
2293#define PLT_ENTRY_WORD_2 0x98186000 /* "brad r12". */
2294#define PLT_ENTRY_WORD_3 0x80000000 /* "nop". */
7ba29e2a 2295
69b06cc8
ME
2296static bfd_boolean
2297update_local_sym_info (bfd *abfd,
2298 Elf_Internal_Shdr *symtab_hdr,
2299 unsigned long r_symndx,
2300 unsigned int tls_type)
2301{
2302 bfd_signed_vma *local_got_refcounts = elf_local_got_refcounts (abfd);
2303 unsigned char *local_got_tls_masks;
2304
2305 if (local_got_refcounts == NULL)
2306 {
2307 bfd_size_type size = symtab_hdr->sh_info;
2308
2309 size *= (sizeof (*local_got_refcounts) + sizeof (*local_got_tls_masks));
2310 local_got_refcounts = bfd_zalloc (abfd, size);
2311 if (local_got_refcounts == NULL)
07d6d2b8 2312 return FALSE;
69b06cc8
ME
2313 elf_local_got_refcounts (abfd) = local_got_refcounts;
2314 }
2315
2316 local_got_tls_masks =
07d6d2b8 2317 (unsigned char *) (local_got_refcounts + symtab_hdr->sh_info);
69b06cc8
ME
2318 local_got_tls_masks[r_symndx] |= tls_type;
2319 local_got_refcounts[r_symndx] += 1;
2320
2321 return TRUE;
2322}
7ba29e2a
NC
2323/* Look through the relocs for a section during the first phase. */
2324
2325static bfd_boolean
2326microblaze_elf_check_relocs (bfd * abfd,
2327 struct bfd_link_info * info,
07d6d2b8 2328 asection * sec,
7ba29e2a
NC
2329 const Elf_Internal_Rela * relocs)
2330{
07d6d2b8 2331 Elf_Internal_Shdr * symtab_hdr;
7ba29e2a
NC
2332 struct elf_link_hash_entry ** sym_hashes;
2333 struct elf_link_hash_entry ** sym_hashes_end;
07d6d2b8
AM
2334 const Elf_Internal_Rela * rel;
2335 const Elf_Internal_Rela * rel_end;
7ba29e2a 2336 struct elf32_mb_link_hash_table *htab;
7ba29e2a
NC
2337 asection *sreloc = NULL;
2338
0e1862bb 2339 if (bfd_link_relocatable (info))
7ba29e2a
NC
2340 return TRUE;
2341
2342 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
2343 if (htab == NULL)
2344 return FALSE;
2345
7ba29e2a
NC
2346 symtab_hdr = & elf_tdata (abfd)->symtab_hdr;
2347 sym_hashes = elf_sym_hashes (abfd);
2348 sym_hashes_end = sym_hashes + symtab_hdr->sh_size / sizeof (Elf32_External_Sym);
2349 if (!elf_bad_symtab (abfd))
2350 sym_hashes_end -= symtab_hdr->sh_info;
2351
2352 rel_end = relocs + sec->reloc_count;
2353
2354 for (rel = relocs; rel < rel_end; rel++)
2355 {
2356 unsigned int r_type;
2357 struct elf_link_hash_entry * h;
2358 unsigned long r_symndx;
69b06cc8 2359 unsigned char tls_type = 0;
7ba29e2a
NC
2360
2361 r_symndx = ELF32_R_SYM (rel->r_info);
2362 r_type = ELF32_R_TYPE (rel->r_info);
2363
2364 if (r_symndx < symtab_hdr->sh_info)
07d6d2b8 2365 h = NULL;
7ba29e2a 2366 else
81fbe831
AM
2367 {
2368 h = sym_hashes [r_symndx - symtab_hdr->sh_info];
b7213666
L
2369 while (h->root.type == bfd_link_hash_indirect
2370 || h->root.type == bfd_link_hash_warning)
2371 h = (struct elf_link_hash_entry *) h->root.u.i.link;
81fbe831 2372 }
7ba29e2a
NC
2373
2374 switch (r_type)
07d6d2b8 2375 {
7ba29e2a
NC
2376 /* This relocation describes the C++ object vtable hierarchy.
2377 Reconstruct it for later use during GC. */
07d6d2b8
AM
2378 case R_MICROBLAZE_GNU_VTINHERIT:
2379 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
2380 return FALSE;
2381 break;
7ba29e2a
NC
2382
2383 /* This relocation describes which C++ vtable entries are actually
2384 used. Record for later use during GC. */
07d6d2b8
AM
2385 case R_MICROBLAZE_GNU_VTENTRY:
2386 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
2387 return FALSE;
2388 break;
7ba29e2a
NC
2389
2390 /* This relocation requires .plt entry. */
07d6d2b8
AM
2391 case R_MICROBLAZE_PLT_64:
2392 if (h != NULL)
7ba29e2a
NC
2393 {
2394 h->needs_plt = 1;
2395 h->plt.refcount += 1;
2396 }
07d6d2b8 2397 break;
7ba29e2a
NC
2398
2399 /* This relocation requires .got entry. */
07d6d2b8
AM
2400 case R_MICROBLAZE_TLSGD:
2401 tls_type |= (TLS_TLS | TLS_GD);
2402 goto dogottls;
2403 case R_MICROBLAZE_TLSLD:
2404 tls_type |= (TLS_TLS | TLS_LD);
1a0670f3 2405 /* Fall through. */
07d6d2b8
AM
2406 dogottls:
2407 sec->has_tls_reloc = 1;
1a0670f3 2408 /* Fall through. */
07d6d2b8
AM
2409 case R_MICROBLAZE_GOT_64:
2410 if (htab->elf.sgot == NULL)
2411 {
2412 if (htab->elf.dynobj == NULL)
2413 htab->elf.dynobj = abfd;
2414 if (!_bfd_elf_create_got_section (htab->elf.dynobj, info))
2415 return FALSE;
2416 }
2417 if (h != NULL)
7ba29e2a
NC
2418 {
2419 h->got.refcount += 1;
69b06cc8 2420 elf32_mb_hash_entry (h)->tls_mask |= tls_type;
7ba29e2a 2421 }
07d6d2b8 2422 else
7ba29e2a 2423 {
69b06cc8
ME
2424 if (! update_local_sym_info(abfd, symtab_hdr, r_symndx, tls_type) )
2425 return FALSE;
7ba29e2a 2426 }
07d6d2b8 2427 break;
7ba29e2a 2428
206c9c79
AM
2429 case R_MICROBLAZE_GOTOFF_64:
2430 case R_MICROBLAZE_GOTOFF_32:
2431 if (htab->elf.sgot == NULL)
2432 {
2433 if (htab->elf.dynobj == NULL)
2434 htab->elf.dynobj = abfd;
2435 if (!_bfd_elf_create_got_section (htab->elf.dynobj, info))
2436 return FALSE;
2437 }
2438 break;
2439
07d6d2b8
AM
2440 case R_MICROBLAZE_64:
2441 case R_MICROBLAZE_64_PCREL:
2442 case R_MICROBLAZE_32:
2443 {
2444 if (h != NULL && !bfd_link_pic (info))
7ba29e2a
NC
2445 {
2446 /* we may need a copy reloc. */
2447 h->non_got_ref = 1;
2448
2449 /* we may also need a .plt entry. */
2450 h->plt.refcount += 1;
2451 if (ELF32_R_TYPE (rel->r_info) != R_MICROBLAZE_64_PCREL)
2452 h->pointer_equality_needed = 1;
2453 }
2454
2455
2456 /* If we are creating a shared library, and this is a reloc
2457 against a global symbol, or a non PC relative reloc
2458 against a local symbol, then we need to copy the reloc
2459 into the shared library. However, if we are linking with
2460 -Bsymbolic, we do not need to copy a reloc against a
2461 global symbol which is defined in an object we are
2462 including in the link (i.e., DEF_REGULAR is set). At
2463 this point we have not seen all the input files, so it is
2464 possible that DEF_REGULAR is not set now but will be set
2465 later (it is never cleared). In case of a weak definition,
2466 DEF_REGULAR may be cleared later by a strong definition in
2467 a shared library. We account for that possibility below by
2468 storing information in the relocs_copied field of the hash
2469 table entry. A similar situation occurs when creating
2470 shared libraries and symbol visibility changes render the
2471 symbol local.
2472
2473 If on the other hand, we are creating an executable, we
2474 may need to keep relocations for symbols satisfied by a
2475 dynamic library if we manage to avoid copy relocs for the
2476 symbol. */
2477
07d6d2b8
AM
2478 if ((bfd_link_pic (info)
2479 && (sec->flags & SEC_ALLOC) != 0
2480 && (r_type != R_MICROBLAZE_64_PCREL
2481 || (h != NULL
7ba29e2a
NC
2482 && (! info->symbolic
2483 || h->root.type == bfd_link_hash_defweak
2484 || !h->def_regular))))
07d6d2b8
AM
2485 || (!bfd_link_pic (info)
2486 && (sec->flags & SEC_ALLOC) != 0
2487 && h != NULL
2488 && (h->root.type == bfd_link_hash_defweak
2489 || !h->def_regular)))
2490 {
2491 struct elf_dyn_relocs *p;
2492 struct elf_dyn_relocs **head;
2493
2494 /* When creating a shared object, we must copy these
2495 relocs into the output file. We create a reloc
2496 section in dynobj and make room for the reloc. */
7ba29e2a
NC
2497
2498 if (sreloc == NULL)
2499 {
7ba29e2a 2500 bfd *dynobj;
7ba29e2a
NC
2501
2502 if (htab->elf.dynobj == NULL)
2503 htab->elf.dynobj = abfd;
2504 dynobj = htab->elf.dynobj;
2505
69b06cc8
ME
2506 sreloc = _bfd_elf_make_dynamic_reloc_section (sec, dynobj,
2507 2, abfd, 1);
7ba29e2a 2508 if (sreloc == NULL)
69b06cc8 2509 return FALSE;
7ba29e2a
NC
2510 }
2511
2512 /* If this is a global symbol, we count the number of
2513 relocations we need for this symbol. */
2514 if (h != NULL)
190eb1dd 2515 head = &h->dyn_relocs;
7ba29e2a
NC
2516 else
2517 {
2518 /* Track dynamic relocs needed for local syms too.
2519 We really need local syms available to do this
2520 easily. Oh well. */
2521
2522 asection *s;
2523 Elf_Internal_Sym *isym;
918d9742 2524 void *vpp;
7ba29e2a
NC
2525
2526 isym = bfd_sym_from_r_symndx (&htab->sym_sec,
2527 abfd, r_symndx);
2528 if (isym == NULL)
2529 return FALSE;
2530
2531 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
2532 if (s == NULL)
2533 return FALSE;
2534
918d9742 2535 vpp = &elf_section_data (s)->local_dynrel;
3bf083ed 2536 head = (struct elf_dyn_relocs **) vpp;
7ba29e2a
NC
2537 }
2538
2539 p = *head;
2540 if (p == NULL || p->sec != sec)
2541 {
986f0783 2542 size_t amt = sizeof *p;
3bf083ed 2543 p = ((struct elf_dyn_relocs *)
7ba29e2a
NC
2544 bfd_alloc (htab->elf.dynobj, amt));
2545 if (p == NULL)
2546 return FALSE;
2547 p->next = *head;
2548 *head = p;
2549 p->sec = sec;
2550 p->count = 0;
2551 p->pc_count = 0;
2552 }
2553
2554 p->count += 1;
2555 if (r_type == R_MICROBLAZE_64_PCREL)
2556 p->pc_count += 1;
2557 }
07d6d2b8
AM
2558 }
2559 break;
2560 }
7ba29e2a
NC
2561 }
2562
2563 return TRUE;
2564}
2565
7ba29e2a
NC
2566/* Copy the extra info we tack onto an elf_link_hash_entry. */
2567
2568static void
2569microblaze_elf_copy_indirect_symbol (struct bfd_link_info *info,
2570 struct elf_link_hash_entry *dir,
2571 struct elf_link_hash_entry *ind)
2572{
2573 struct elf32_mb_link_hash_entry *edir, *eind;
2574
2575 edir = (struct elf32_mb_link_hash_entry *) dir;
2576 eind = (struct elf32_mb_link_hash_entry *) ind;
2577
190eb1dd 2578 if (ind->dyn_relocs != NULL)
7ba29e2a 2579 {
190eb1dd 2580 if (dir->dyn_relocs != NULL)
7ba29e2a 2581 {
3bf083ed
AM
2582 struct elf_dyn_relocs **pp;
2583 struct elf_dyn_relocs *p;
7ba29e2a
NC
2584
2585 if (ind->root.type == bfd_link_hash_indirect)
2586 abort ();
2587
2588 /* Add reloc counts against the weak sym to the strong sym
2589 list. Merge any entries against the same section. */
190eb1dd 2590 for (pp = &ind->dyn_relocs; (p = *pp) != NULL; )
7ba29e2a 2591 {
3bf083ed 2592 struct elf_dyn_relocs *q;
7ba29e2a 2593
190eb1dd 2594 for (q = dir->dyn_relocs; q != NULL; q = q->next)
7ba29e2a
NC
2595 if (q->sec == p->sec)
2596 {
2597 q->pc_count += p->pc_count;
2598 q->count += p->count;
2599 *pp = p->next;
2600 break;
2601 }
2602 if (q == NULL)
2603 pp = &p->next;
2604 }
190eb1dd 2605 *pp = dir->dyn_relocs;
7ba29e2a
NC
2606 }
2607
190eb1dd
L
2608 dir->dyn_relocs = ind->dyn_relocs;
2609 ind->dyn_relocs = NULL;
7ba29e2a
NC
2610 }
2611
69b06cc8
ME
2612 edir->tls_mask |= eind->tls_mask;
2613
7ba29e2a
NC
2614 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
2615}
2616
2617static bfd_boolean
2618microblaze_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
2619 struct elf_link_hash_entry *h)
2620{
2621 struct elf32_mb_link_hash_table *htab;
5474d94f 2622 asection *s, *srel;
7ba29e2a 2623 unsigned int power_of_two;
7ba29e2a
NC
2624
2625 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
2626 if (htab == NULL)
2627 return FALSE;
7ba29e2a
NC
2628
2629 /* If this is a function, put it in the procedure linkage table. We
2630 will fill in the contents of the procedure linkage table later,
2631 when we know the address of the .got section. */
2632 if (h->type == STT_FUNC
2633 || h->needs_plt)
2634 {
2635 if (h->plt.refcount <= 0
2636 || SYMBOL_CALLS_LOCAL (info, h)
2637 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
2638 && h->root.type == bfd_link_hash_undefweak))
2639 {
2640 /* This case can occur if we saw a PLT reloc in an input
2641 file, but the symbol was never referred to by a dynamic
2642 object, or if all references were garbage collected. In
2643 such a case, we don't actually need to build a procedure
2644 linkage table, and we can just do a PC32 reloc instead. */
2645 h->plt.offset = (bfd_vma) -1;
2646 h->needs_plt = 0;
2647 }
2648
2649 return TRUE;
2650 }
2651 else
2652 /* It's possible that we incorrectly decided a .plt reloc was
2653 needed for an R_MICROBLAZE_64_PCREL reloc to a non-function sym in
2654 check_relocs. We can't decide accurately between function and
2655 non-function syms in check-relocs; Objects loaded later in
2656 the link may change h->type. So fix it now. */
2657 h->plt.offset = (bfd_vma) -1;
2658
2659 /* If this is a weak symbol, and there is a real definition, the
2660 processor independent code will have arranged for us to see the
2661 real definition first, and we can just use the same value. */
60d67dc8 2662 if (h->is_weakalias)
7ba29e2a 2663 {
60d67dc8
AM
2664 struct elf_link_hash_entry *def = weakdef (h);
2665 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
2666 h->root.u.def.section = def->root.u.def.section;
2667 h->root.u.def.value = def->root.u.def.value;
7ba29e2a
NC
2668 return TRUE;
2669 }
2670
2671 /* This is a reference to a symbol defined by a dynamic object which
2672 is not a function. */
2673
2674 /* If we are creating a shared library, we must presume that the
2675 only references to the symbol are via the global offset table.
2676 For such cases we need not do anything here; the relocations will
2677 be handled correctly by relocate_section. */
0e1862bb 2678 if (bfd_link_pic (info))
7ba29e2a
NC
2679 return TRUE;
2680
2681 /* If there are no references to this symbol that do not use the
2682 GOT, we don't need to generate a copy reloc. */
2683 if (!h->non_got_ref)
2684 return TRUE;
2685
2686 /* If -z nocopyreloc was given, we won't generate them either. */
2687 if (info->nocopyreloc)
2688 {
2689 h->non_got_ref = 0;
2690 return TRUE;
2691 }
2692
3bf083ed 2693 /* If we don't find any dynamic relocs in read-only sections, then
7ba29e2a 2694 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
5dbc8b37 2695 if (!_bfd_elf_readonly_dynrelocs (h))
7ba29e2a
NC
2696 {
2697 h->non_got_ref = 0;
2698 return TRUE;
2699 }
2700
2701 /* We must allocate the symbol in our .dynbss section, which will
2702 become part of the .bss section of the executable. There will be
2703 an entry for this symbol in the .dynsym section. The dynamic
2704 object will contain position independent code, so all references
2705 from the dynamic object to this symbol will go through the global
2706 offset table. The dynamic linker will use the .dynsym entry to
2707 determine the address it must put in the global offset table, so
2708 both the dynamic object and the regular object will refer to the
2709 same memory location for the variable. */
2710
2711 /* We must generate a R_MICROBLAZE_COPY reloc to tell the dynamic linker
2712 to copy the initial value out of the dynamic object and into the
2713 runtime process image. */
5474d94f
AM
2714 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
2715 {
2716 s = htab->elf.sdynrelro;
2717 srel = htab->elf.sreldynrelro;
2718 }
2719 else
2720 {
2721 s = htab->elf.sdynbss;
2722 srel = htab->elf.srelbss;
2723 }
7ba29e2a
NC
2724 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
2725 {
5474d94f 2726 srel->size += sizeof (Elf32_External_Rela);
7ba29e2a
NC
2727 h->needs_copy = 1;
2728 }
2729
2730 /* We need to figure out the alignment required for this symbol. I
2731 have no idea how ELF linkers handle this. */
2732 power_of_two = bfd_log2 (h->size);
2733 if (power_of_two > 3)
2734 power_of_two = 3;
2735
7ba29e2a 2736 /* Apply the required alignment. */
5474d94f
AM
2737 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
2738 if (power_of_two > s->alignment_power)
7ba29e2a 2739 {
fd361982 2740 if (!bfd_set_section_alignment (s, power_of_two))
7ba29e2a
NC
2741 return FALSE;
2742 }
2743
2744 /* Define the symbol as being at this point in the section. */
5474d94f
AM
2745 h->root.u.def.section = s;
2746 h->root.u.def.value = s->size;
7ba29e2a
NC
2747
2748 /* Increment the section size to make room for the symbol. */
5474d94f 2749 s->size += h->size;
7ba29e2a
NC
2750 return TRUE;
2751}
2752
2753/* Allocate space in .plt, .got and associated reloc sections for
2754 dynamic relocs. */
2755
2756static bfd_boolean
2757allocate_dynrelocs (struct elf_link_hash_entry *h, void * dat)
2758{
2759 struct bfd_link_info *info;
2760 struct elf32_mb_link_hash_table *htab;
2761 struct elf32_mb_link_hash_entry *eh;
3bf083ed 2762 struct elf_dyn_relocs *p;
7ba29e2a
NC
2763
2764 if (h->root.type == bfd_link_hash_indirect)
2765 return TRUE;
2766
7ba29e2a
NC
2767 info = (struct bfd_link_info *) dat;
2768 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
2769 if (htab == NULL)
2770 return FALSE;
7ba29e2a
NC
2771
2772 if (htab->elf.dynamic_sections_created
2773 && h->plt.refcount > 0)
2774 {
2775 /* Make sure this symbol is output as a dynamic symbol.
2776 Undefined weak syms won't yet be marked as dynamic. */
2777 if (h->dynindx == -1
07d6d2b8
AM
2778 && !h->forced_local)
2779 {
2780 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2781 return FALSE;
2782 }
7ba29e2a 2783
0e1862bb 2784 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h))
07d6d2b8
AM
2785 {
2786 asection *s = htab->elf.splt;
2787
2788 /* The first entry in .plt is reserved. */
2789 if (s->size == 0)
2790 s->size = PLT_ENTRY_SIZE;
2791
2792 h->plt.offset = s->size;
2793
2794 /* If this symbol is not defined in a regular file, and we are
2795 not generating a shared library, then set the symbol to this
2796 location in the .plt. This is required to make function
2797 pointers compare as equal between the normal executable and
2798 the shared library. */
2799 if (! bfd_link_pic (info)
2800 && !h->def_regular)
2801 {
2802 h->root.u.def.section = s;
2803 h->root.u.def.value = h->plt.offset;
2804 }
2805
2806 /* Make room for this entry. */
2807 s->size += PLT_ENTRY_SIZE;
2808
2809 /* We also need to make an entry in the .got.plt section, which
2810 will be placed in the .got section by the linker script. */
ce558b89 2811 htab->elf.sgotplt->size += 4;
7ba29e2a 2812
07d6d2b8
AM
2813 /* We also need to make an entry in the .rel.plt section. */
2814 htab->elf.srelplt->size += sizeof (Elf32_External_Rela);
2815 }
7ba29e2a 2816 else
07d6d2b8
AM
2817 {
2818 h->plt.offset = (bfd_vma) -1;
2819 h->needs_plt = 0;
2820 }
7ba29e2a
NC
2821 }
2822 else
2823 {
2824 h->plt.offset = (bfd_vma) -1;
2825 h->needs_plt = 0;
2826 }
2827
69b06cc8 2828 eh = (struct elf32_mb_link_hash_entry *) h;
7ba29e2a
NC
2829 if (h->got.refcount > 0)
2830 {
69b06cc8 2831 unsigned int need;
7ba29e2a
NC
2832 asection *s;
2833
2834 /* Make sure this symbol is output as a dynamic symbol.
07d6d2b8 2835 Undefined weak syms won't yet be marked as dynamic. */
7ba29e2a 2836 if (h->dynindx == -1
07d6d2b8
AM
2837 && !h->forced_local)
2838 {
2839 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2840 return FALSE;
2841 }
7ba29e2a 2842
69b06cc8
ME
2843 need = 0;
2844 if ((eh->tls_mask & TLS_TLS) != 0)
07d6d2b8
AM
2845 {
2846 /* Handle TLS Symbol */
2847 if ((eh->tls_mask & TLS_LD) != 0)
2848 {
2849 if (!eh->elf.def_dynamic)
2850 /* We'll just use htab->tlsld_got.offset. This should
2851 always be the case. It's a little odd if we have
2852 a local dynamic reloc against a non-local symbol. */
2853 htab->tlsld_got.refcount += 1;
2854 else
2855 need += 8;
2856 }
2857 if ((eh->tls_mask & TLS_GD) != 0)
2858 need += 8;
2859 }
69b06cc8 2860 else
07d6d2b8
AM
2861 {
2862 /* Regular (non-TLS) symbol */
2863 need += 4;
2864 }
69b06cc8 2865 if (need == 0)
07d6d2b8
AM
2866 {
2867 h->got.offset = (bfd_vma) -1;
2868 }
69b06cc8 2869 else
07d6d2b8
AM
2870 {
2871 s = htab->elf.sgot;
2872 h->got.offset = s->size;
2873 s->size += need;
2874 htab->elf.srelgot->size += need * (sizeof (Elf32_External_Rela) / 4);
2875 }
7ba29e2a
NC
2876 }
2877 else
2878 h->got.offset = (bfd_vma) -1;
2879
190eb1dd 2880 if (h->dyn_relocs == NULL)
7ba29e2a
NC
2881 return TRUE;
2882
2883 /* In the shared -Bsymbolic case, discard space allocated for
2884 dynamic pc-relative relocs against symbols which turn out to be
2885 defined in regular objects. For the normal shared case, discard
2886 space for pc-relative relocs that have become local due to symbol
2887 visibility changes. */
2888
0e1862bb 2889 if (bfd_link_pic (info))
7ba29e2a
NC
2890 {
2891 if (h->def_regular
2892 && (h->forced_local
2893 || info->symbolic))
2894 {
3bf083ed 2895 struct elf_dyn_relocs **pp;
7ba29e2a 2896
190eb1dd 2897 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
7ba29e2a
NC
2898 {
2899 p->count -= p->pc_count;
2900 p->pc_count = 0;
2901 if (p->count == 0)
2902 *pp = p->next;
2903 else
2904 pp = &p->next;
2905 }
2906 }
112fef40 2907 else if (UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
190eb1dd 2908 h->dyn_relocs = NULL;
7ba29e2a
NC
2909 }
2910 else
2911 {
2912 /* For the non-shared case, discard space for relocs against
2913 symbols which turn out to need copy relocs or are not
2914 dynamic. */
2915
2916 if (!h->non_got_ref
2917 && ((h->def_dynamic
2918 && !h->def_regular)
2919 || (htab->elf.dynamic_sections_created
2920 && (h->root.type == bfd_link_hash_undefweak
2921 || h->root.type == bfd_link_hash_undefined))))
2922 {
2923 /* Make sure this symbol is output as a dynamic symbol.
2924 Undefined weak syms won't yet be marked as dynamic. */
2925 if (h->dynindx == -1
2926 && !h->forced_local)
2927 {
2928 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2929 return FALSE;
2930 }
2931
2932 /* If that succeeded, we know we'll be keeping all the
2933 relocs. */
2934 if (h->dynindx != -1)
2935 goto keep;
2936 }
2937
190eb1dd 2938 h->dyn_relocs = NULL;
7ba29e2a
NC
2939
2940 keep: ;
2941 }
2942
2943 /* Finally, allocate space. */
190eb1dd 2944 for (p = h->dyn_relocs; p != NULL; p = p->next)
7ba29e2a
NC
2945 {
2946 asection *sreloc = elf_section_data (p->sec)->sreloc;
2947 sreloc->size += p->count * sizeof (Elf32_External_Rela);
2948 }
2949
2950 return TRUE;
2951}
2952
2953/* Set the sizes of the dynamic sections. */
2954
2955static bfd_boolean
2956microblaze_elf_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
2957 struct bfd_link_info *info)
2958{
2959 struct elf32_mb_link_hash_table *htab;
2960 bfd *dynobj;
2961 asection *s;
2962 bfd *ibfd;
2963
2964 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
2965 if (htab == NULL)
2966 return FALSE;
2967
7ba29e2a
NC
2968 dynobj = htab->elf.dynobj;
2969 BFD_ASSERT (dynobj != NULL);
2970
2971 /* Set up .got offsets for local syms, and space for local dynamic
2972 relocs. */
c72f2fb2 2973 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
7ba29e2a
NC
2974 {
2975 bfd_signed_vma *local_got;
2976 bfd_signed_vma *end_local_got;
2977 bfd_size_type locsymcount;
2978 Elf_Internal_Shdr *symtab_hdr;
69b06cc8 2979 unsigned char *lgot_masks;
7ba29e2a
NC
2980 asection *srel;
2981
2982 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
07d6d2b8 2983 continue;
7ba29e2a
NC
2984
2985 for (s = ibfd->sections; s != NULL; s = s->next)
2986 {
3bf083ed 2987 struct elf_dyn_relocs *p;
7ba29e2a 2988
3bf083ed 2989 for (p = ((struct elf_dyn_relocs *)
7ba29e2a
NC
2990 elf_section_data (s)->local_dynrel);
2991 p != NULL;
2992 p = p->next)
2993 {
2994 if (!bfd_is_abs_section (p->sec)
2995 && bfd_is_abs_section (p->sec->output_section))
2996 {
2997 /* Input section has been discarded, either because
2998 it is a copy of a linkonce section or due to
2999 linker script /DISCARD/, so we'll be discarding
3000 the relocs too. */
3001 }
3002 else if (p->count != 0)
3003 {
3004 srel = elf_section_data (p->sec)->sreloc;
3005 srel->size += p->count * sizeof (Elf32_External_Rela);
3006 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
3007 info->flags |= DF_TEXTREL;
3008 }
3009 }
3010 }
3011
3012 local_got = elf_local_got_refcounts (ibfd);
3013 if (!local_got)
07d6d2b8 3014 continue;
7ba29e2a
NC
3015
3016 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
3017 locsymcount = symtab_hdr->sh_info;
3018 end_local_got = local_got + locsymcount;
69b06cc8 3019 lgot_masks = (unsigned char *) end_local_got;
ce558b89
AM
3020 s = htab->elf.sgot;
3021 srel = htab->elf.srelgot;
7ba29e2a 3022
69b06cc8
ME
3023 for (; local_got < end_local_got; ++local_got, ++lgot_masks)
3024 {
3025 if (*local_got > 0)
3026 {
3027 unsigned int need = 0;
3028 if ((*lgot_masks & TLS_TLS) != 0)
3029 {
3030 if ((*lgot_masks & TLS_GD) != 0)
3031 need += 8;
3032 if ((*lgot_masks & TLS_LD) != 0)
3033 htab->tlsld_got.refcount += 1;
3034 }
3035 else
3036 need += 4;
3037
3038 if (need == 0)
3039 {
3040 *local_got = (bfd_vma) -1;
3041 }
3042 else
3043 {
3044 *local_got = s->size;
3045 s->size += need;
0e1862bb 3046 if (bfd_link_pic (info))
69b06cc8
ME
3047 srel->size += need * (sizeof (Elf32_External_Rela) / 4);
3048 }
07d6d2b8
AM
3049 }
3050 else
3051 *local_got = (bfd_vma) -1;
3052 }
7ba29e2a
NC
3053 }
3054
3055 /* Allocate global sym .plt and .got entries, and space for global
3056 sym dynamic relocs. */
3057 elf_link_hash_traverse (elf_hash_table (info), allocate_dynrelocs, info);
3058
69b06cc8
ME
3059 if (htab->tlsld_got.refcount > 0)
3060 {
ce558b89
AM
3061 htab->tlsld_got.offset = htab->elf.sgot->size;
3062 htab->elf.sgot->size += 8;
0e1862bb 3063 if (bfd_link_pic (info))
07d6d2b8 3064 htab->elf.srelgot->size += sizeof (Elf32_External_Rela);
69b06cc8
ME
3065 }
3066 else
3067 htab->tlsld_got.offset = (bfd_vma) -1;
3068
7ba29e2a
NC
3069 if (elf_hash_table (info)->dynamic_sections_created)
3070 {
3071 /* Make space for the trailing nop in .plt. */
ce558b89 3072 if (htab->elf.splt->size > 0)
07d6d2b8 3073 htab->elf.splt->size += 4;
7ba29e2a
NC
3074 }
3075
3076 /* The check_relocs and adjust_dynamic_symbol entry points have
3077 determined the sizes of the various dynamic sections. Allocate
3078 memory for them. */
3079 for (s = dynobj->sections; s != NULL; s = s->next)
3080 {
3081 const char *name;
3082 bfd_boolean strip = FALSE;
3083
3084 if ((s->flags & SEC_LINKER_CREATED) == 0)
07d6d2b8 3085 continue;
7ba29e2a
NC
3086
3087 /* It's OK to base decisions on the section name, because none
07d6d2b8 3088 of the dynobj section names depend upon the input files. */
fd361982 3089 name = bfd_section_name (s);
7ba29e2a
NC
3090
3091 if (strncmp (name, ".rela", 5) == 0)
07d6d2b8
AM
3092 {
3093 if (s->size == 0)
3094 {
3095 /* If we don't need this section, strip it from the
3096 output file. This is to handle .rela.bss and
3097 .rela.plt. We must create it in
3098 create_dynamic_sections, because it must be created
3099 before the linker maps input sections to output
3100 sections. The linker does that before
3101 adjust_dynamic_symbol is called, and it is that
3102 function which decides whether anything needs to go
3103 into these sections. */
3104 strip = TRUE;
3105 }
3106 else
3107 {
3108 /* We use the reloc_count field as a counter if we need
3109 to copy relocs into the output file. */
3110 s->reloc_count = 0;
3111 }
3112 }
ce558b89
AM
3113 else if (s != htab->elf.splt
3114 && s != htab->elf.sgot
5474d94f
AM
3115 && s != htab->elf.sgotplt
3116 && s != htab->elf.sdynbss
3117 && s != htab->elf.sdynrelro)
07d6d2b8
AM
3118 {
3119 /* It's not one of our sections, so don't allocate space. */
3120 continue;
3121 }
7ba29e2a
NC
3122
3123 if (strip)
07d6d2b8
AM
3124 {
3125 s->flags |= SEC_EXCLUDE;
3126 continue;
3127 }
7ba29e2a
NC
3128
3129 /* Allocate memory for the section contents. */
3130 /* FIXME: This should be a call to bfd_alloc not bfd_zalloc.
07d6d2b8
AM
3131 Unused entries should be reclaimed before the section's contents
3132 are written out, but at the moment this does not happen. Thus in
3133 order to prevent writing out garbage, we initialise the section's
3134 contents to zero. */
7ba29e2a
NC
3135 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
3136 if (s->contents == NULL && s->size != 0)
07d6d2b8 3137 return FALSE;
7ba29e2a
NC
3138 }
3139
3140 if (elf_hash_table (info)->dynamic_sections_created)
3141 {
3142 /* Add some entries to the .dynamic section. We fill in the
3143 values later, in microblaze_elf_finish_dynamic_sections, but we
3144 must add the entries now so that we get the correct size for
3145 the .dynamic section. The DT_DEBUG entry is filled in by the
3146 dynamic linker and used by the debugger. */
3147#define add_dynamic_entry(TAG, VAL) \
3148 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3149
0e1862bb 3150 if (bfd_link_executable (info))
07d6d2b8
AM
3151 {
3152 if (!add_dynamic_entry (DT_DEBUG, 0))
3153 return FALSE;
3154 }
7ba29e2a
NC
3155
3156 if (!add_dynamic_entry (DT_RELA, 0)
07d6d2b8
AM
3157 || !add_dynamic_entry (DT_RELASZ, 0)
3158 || !add_dynamic_entry (DT_RELAENT, sizeof (Elf32_External_Rela)))
7ba29e2a
NC
3159 return FALSE;
3160
ce558b89 3161 if (htab->elf.splt->size != 0)
07d6d2b8
AM
3162 {
3163 if (!add_dynamic_entry (DT_PLTGOT, 0)
3164 || !add_dynamic_entry (DT_PLTRELSZ, 0)
3165 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
3166 || !add_dynamic_entry (DT_JMPREL, 0)
3167 || !add_dynamic_entry (DT_BIND_NOW, 1))
3168 return FALSE;
3169 }
7ba29e2a
NC
3170
3171 if (info->flags & DF_TEXTREL)
07d6d2b8
AM
3172 {
3173 if (!add_dynamic_entry (DT_TEXTREL, 0))
3174 return FALSE;
3175 }
7ba29e2a
NC
3176 }
3177#undef add_dynamic_entry
3178 return TRUE;
3179}
3180
3181/* Finish up dynamic symbol handling. We set the contents of various
3182 dynamic sections here. */
3183
3184static bfd_boolean
3185microblaze_elf_finish_dynamic_symbol (bfd *output_bfd,
3186 struct bfd_link_info *info,
3187 struct elf_link_hash_entry *h,
3188 Elf_Internal_Sym *sym)
3189{
7ba29e2a 3190 struct elf32_mb_link_hash_table *htab;
69b06cc8 3191 struct elf32_mb_link_hash_entry *eh = elf32_mb_hash_entry(h);
7ba29e2a
NC
3192
3193 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
3194 if (htab == NULL)
3195 return FALSE;
3196
7ba29e2a
NC
3197 if (h->plt.offset != (bfd_vma) -1)
3198 {
3199 asection *splt;
3200 asection *srela;
3201 asection *sgotplt;
3202 Elf_Internal_Rela rela;
3203 bfd_byte *loc;
3204 bfd_vma plt_index;
3205 bfd_vma got_offset;
3206 bfd_vma got_addr;
3207
3208 /* This symbol has an entry in the procedure linkage table. Set
07d6d2b8 3209 it up. */
7ba29e2a
NC
3210 BFD_ASSERT (h->dynindx != -1);
3211
ce558b89
AM
3212 splt = htab->elf.splt;
3213 srela = htab->elf.srelplt;
3214 sgotplt = htab->elf.sgotplt;
7ba29e2a
NC
3215 BFD_ASSERT (splt != NULL && srela != NULL && sgotplt != NULL);
3216
3217 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1; /* first entry reserved. */
3218 got_offset = (plt_index + 3) * 4; /* 3 reserved ??? */
3219 got_addr = got_offset;
3220
3221 /* For non-PIC objects we need absolute address of the GOT entry. */
0e1862bb 3222 if (!bfd_link_pic (info))
07d6d2b8 3223 got_addr += sgotplt->output_section->vma + sgotplt->output_offset;
7ba29e2a
NC
3224
3225 /* Fill in the entry in the procedure linkage table. */
3226 bfd_put_32 (output_bfd, PLT_ENTRY_WORD_0 + ((got_addr >> 16) & 0xffff),
07d6d2b8 3227 splt->contents + h->plt.offset);
0e1862bb 3228 if (bfd_link_pic (info))
07d6d2b8
AM
3229 bfd_put_32 (output_bfd, PLT_ENTRY_WORD_1 + (got_addr & 0xffff),
3230 splt->contents + h->plt.offset + 4);
7ba29e2a 3231 else
07d6d2b8
AM
3232 bfd_put_32 (output_bfd, PLT_ENTRY_WORD_1_NOPIC + (got_addr & 0xffff),
3233 splt->contents + h->plt.offset + 4);
7ba29e2a 3234 bfd_put_32 (output_bfd, (bfd_vma) PLT_ENTRY_WORD_2,
07d6d2b8 3235 splt->contents + h->plt.offset + 8);
7ba29e2a 3236 bfd_put_32 (output_bfd, (bfd_vma) PLT_ENTRY_WORD_3,
07d6d2b8 3237 splt->contents + h->plt.offset + 12);
7ba29e2a
NC
3238
3239 /* Any additions to the .got section??? */
3240 /* bfd_put_32 (output_bfd,
3241 splt->output_section->vma + splt->output_offset + h->plt.offset + 4,
3242 sgotplt->contents + got_offset); */
3243
3244 /* Fill in the entry in the .rela.plt section. */
3245 rela.r_offset = (sgotplt->output_section->vma
07d6d2b8
AM
3246 + sgotplt->output_offset
3247 + got_offset);
7ba29e2a
NC
3248 rela.r_info = ELF32_R_INFO (h->dynindx, R_MICROBLAZE_JUMP_SLOT);
3249 rela.r_addend = 0;
3250 loc = srela->contents;
3251 loc += plt_index * sizeof (Elf32_External_Rela);
3252 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
3253
3254 if (!h->def_regular)
07d6d2b8
AM
3255 {
3256 /* Mark the symbol as undefined, rather than as defined in
3257 the .plt section. Zero the value. */
3258 sym->st_shndx = SHN_UNDEF;
3259 sym->st_value = 0;
3260 }
7ba29e2a
NC
3261 }
3262
69b06cc8
ME
3263 /* h->got.refcount to be checked ? */
3264 if (h->got.offset != (bfd_vma) -1 &&
3265 ! ((h->got.offset & 1) ||
07d6d2b8 3266 IS_TLS_LD(eh->tls_mask) || IS_TLS_GD(eh->tls_mask)))
7ba29e2a
NC
3267 {
3268 asection *sgot;
3269 asection *srela;
69b06cc8 3270 bfd_vma offset;
7ba29e2a
NC
3271
3272 /* This symbol has an entry in the global offset table. Set it
07d6d2b8 3273 up. */
7ba29e2a 3274
ce558b89
AM
3275 sgot = htab->elf.sgot;
3276 srela = htab->elf.srelgot;
7ba29e2a
NC
3277 BFD_ASSERT (sgot != NULL && srela != NULL);
3278
69b06cc8 3279 offset = (sgot->output_section->vma + sgot->output_offset
47993b4a 3280 + (h->got.offset &~ (bfd_vma) 1));
7ba29e2a
NC
3281
3282 /* If this is a -Bsymbolic link, and the symbol is defined
07d6d2b8
AM
3283 locally, we just want to emit a RELATIVE reloc. Likewise if
3284 the symbol was forced to be local because of a version file.
3285 The entry in the global offset table will already have been
3286 initialized in the relocate_section function. */
0e1862bb 3287 if (bfd_link_pic (info)
07d6d2b8 3288 && ((info->symbolic && h->def_regular)
47993b4a 3289 || h->dynindx == -1))
07d6d2b8
AM
3290 {
3291 asection *sec = h->root.u.def.section;
bd757ca7
NC
3292 bfd_vma value;
3293
3294 value = h->root.u.def.value;
3295 if (sec->output_section != NULL)
3296 /* PR 21180: If the output section is NULL, then the symbol is no
3297 longer needed, and in theory the GOT entry is redundant. But
3298 it is too late to change our minds now... */
3299 value += sec->output_section->vma + sec->output_offset;
3300
07d6d2b8
AM
3301 microblaze_elf_output_dynamic_relocation (output_bfd,
3302 srela, srela->reloc_count++,
3303 /* symindex= */ 0,
3304 R_MICROBLAZE_REL, offset,
3305 value);
3306 }
7ba29e2a 3307 else
07d6d2b8
AM
3308 {
3309 microblaze_elf_output_dynamic_relocation (output_bfd,
3310 srela, srela->reloc_count++,
3311 h->dynindx,
3312 R_MICROBLAZE_GLOB_DAT,
3313 offset, 0);
3314 }
7ba29e2a
NC
3315
3316 bfd_put_32 (output_bfd, (bfd_vma) 0,
07d6d2b8 3317 sgot->contents + (h->got.offset &~ (bfd_vma) 1));
7ba29e2a
NC
3318 }
3319
3320 if (h->needs_copy)
3321 {
3322 asection *s;
3323 Elf_Internal_Rela rela;
3324 bfd_byte *loc;
3325
3326 /* This symbols needs a copy reloc. Set it up. */
3327
3328 BFD_ASSERT (h->dynindx != -1);
3329
7ba29e2a 3330 rela.r_offset = (h->root.u.def.value
07d6d2b8
AM
3331 + h->root.u.def.section->output_section->vma
3332 + h->root.u.def.section->output_offset);
7ba29e2a
NC
3333 rela.r_info = ELF32_R_INFO (h->dynindx, R_MICROBLAZE_COPY);
3334 rela.r_addend = 0;
afbf7e8e 3335 if (h->root.u.def.section == htab->elf.sdynrelro)
5474d94f
AM
3336 s = htab->elf.sreldynrelro;
3337 else
3338 s = htab->elf.srelbss;
7ba29e2a
NC
3339 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rela);
3340 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
3341 }
3342
3343 /* Mark some specially defined symbols as absolute. */
9637f6ef
L
3344 if (h == htab->elf.hdynamic
3345 || h == htab->elf.hgot
3346 || h == htab->elf.hplt)
7ba29e2a
NC
3347 sym->st_shndx = SHN_ABS;
3348
3349 return TRUE;
3350}
3351
3352
3353/* Finish up the dynamic sections. */
3354
3355static bfd_boolean
3356microblaze_elf_finish_dynamic_sections (bfd *output_bfd,
3357 struct bfd_link_info *info)
3358{
3359 bfd *dynobj;
3360 asection *sdyn, *sgot;
3361 struct elf32_mb_link_hash_table *htab;
3362
3363 htab = elf32_mb_hash_table (info);
4dfe6ac6
NC
3364 if (htab == NULL)
3365 return FALSE;
3366
7ba29e2a
NC
3367 dynobj = htab->elf.dynobj;
3368
3d4d4302 3369 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
7ba29e2a
NC
3370
3371 if (htab->elf.dynamic_sections_created)
3372 {
3373 asection *splt;
3374 Elf32_External_Dyn *dyncon, *dynconend;
3375
7ba29e2a
NC
3376 dyncon = (Elf32_External_Dyn *) sdyn->contents;
3377 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
3378 for (; dyncon < dynconend; dyncon++)
07d6d2b8
AM
3379 {
3380 Elf_Internal_Dyn dyn;
64f52338 3381 asection *s;
07d6d2b8 3382 bfd_boolean size;
7ba29e2a 3383
07d6d2b8 3384 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
7ba29e2a 3385
07d6d2b8
AM
3386 switch (dyn.d_tag)
3387 {
64f52338
AM
3388 case DT_PLTGOT:
3389 s = htab->elf.sgotplt;
3390 size = FALSE;
3391 break;
7ba29e2a 3392
64f52338
AM
3393 case DT_PLTRELSZ:
3394 s = htab->elf.srelplt;
3395 size = TRUE;
3396 break;
7ba29e2a 3397
64f52338
AM
3398 case DT_JMPREL:
3399 s = htab->elf.srelplt;
3400 size = FALSE;
3401 break;
3402
3403 default:
3404 continue;
07d6d2b8 3405 }
64f52338
AM
3406
3407 if (s == NULL)
3408 dyn.d_un.d_val = 0;
3409 else
3410 {
3411 if (!size)
3412 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
3413 else
3414 dyn.d_un.d_val = s->size;
3415 }
3416 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
07d6d2b8 3417 }
7ba29e2a 3418
64f52338
AM
3419 splt = htab->elf.splt;
3420 BFD_ASSERT (splt != NULL && sdyn != NULL);
3421
7ba29e2a
NC
3422 /* Clear the first entry in the procedure linkage table,
3423 and put a nop in the last four bytes. */
3424 if (splt->size > 0)
07d6d2b8
AM
3425 {
3426 memset (splt->contents, 0, PLT_ENTRY_SIZE);
3427 bfd_put_32 (output_bfd, (bfd_vma) 0x80000000 /* nop. */,
3428 splt->contents + splt->size - 4);
7ba29e2a 3429
94667ab1
AM
3430 if (splt->output_section != bfd_abs_section_ptr)
3431 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
3432 }
7ba29e2a
NC
3433 }
3434
3435 /* Set the first entry in the global offset table to the address of
3436 the dynamic section. */
ce558b89 3437 sgot = htab->elf.sgotplt;
7ba29e2a
NC
3438 if (sgot && sgot->size > 0)
3439 {
3440 if (sdyn == NULL)
07d6d2b8 3441 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
7ba29e2a 3442 else
07d6d2b8
AM
3443 bfd_put_32 (output_bfd,
3444 sdyn->output_section->vma + sdyn->output_offset,
3445 sgot->contents);
7ba29e2a
NC
3446 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
3447 }
3448
ce558b89
AM
3449 if (htab->elf.sgot && htab->elf.sgot->size > 0)
3450 elf_section_data (htab->elf.sgot->output_section)->this_hdr.sh_entsize = 4;
7ba29e2a
NC
3451
3452 return TRUE;
3453}
3454
3455/* Hook called by the linker routine which adds symbols from an object
3456 file. We use it to put .comm items in .sbss, and not .bss. */
3457
3458static bfd_boolean
3459microblaze_elf_add_symbol_hook (bfd *abfd,
07d6d2b8
AM
3460 struct bfd_link_info *info,
3461 Elf_Internal_Sym *sym,
3462 const char **namep ATTRIBUTE_UNUSED,
3463 flagword *flagsp ATTRIBUTE_UNUSED,
3464 asection **secp,
3465 bfd_vma *valp)
7ba29e2a
NC
3466{
3467 if (sym->st_shndx == SHN_COMMON
0e1862bb 3468 && !bfd_link_relocatable (info)
7ba29e2a
NC
3469 && sym->st_size <= elf_gp_size (abfd))
3470 {
3471 /* Common symbols less than or equal to -G nn bytes are automatically
3472 put into .sbss. */
3d4d4302 3473 *secp = bfd_make_section_old_way (abfd, ".sbss");
7ba29e2a 3474 if (*secp == NULL
fd361982 3475 || !bfd_set_section_flags (*secp, SEC_IS_COMMON))
07d6d2b8 3476 return FALSE;
7ba29e2a
NC
3477
3478 *valp = sym->st_size;
3479 }
3480
3481 return TRUE;
3482}
3483
6d00b590 3484#define TARGET_LITTLE_SYM microblaze_elf32_le_vec
f23200ad 3485#define TARGET_LITTLE_NAME "elf32-microblazeel"
7ba29e2a 3486
07d6d2b8 3487#define TARGET_BIG_SYM microblaze_elf32_vec
7ba29e2a
NC
3488#define TARGET_BIG_NAME "elf32-microblaze"
3489
3490#define ELF_ARCH bfd_arch_microblaze
ae95ffa6 3491#define ELF_TARGET_ID MICROBLAZE_ELF_DATA
7ba29e2a
NC
3492#define ELF_MACHINE_CODE EM_MICROBLAZE
3493#define ELF_MACHINE_ALT1 EM_MICROBLAZE_OLD
69b06cc8 3494#define ELF_MAXPAGESIZE 0x1000
7ba29e2a
NC
3495#define elf_info_to_howto microblaze_elf_info_to_howto
3496#define elf_info_to_howto_rel NULL
3497
3498#define bfd_elf32_bfd_reloc_type_lookup microblaze_elf_reloc_type_lookup
07d6d2b8 3499#define bfd_elf32_bfd_is_local_label_name microblaze_elf_is_local_label_name
7ba29e2a 3500#define elf_backend_relocate_section microblaze_elf_relocate_section
07d6d2b8
AM
3501#define bfd_elf32_bfd_relax_section microblaze_elf_relax_section
3502#define bfd_elf32_bfd_merge_private_bfd_data _bfd_generic_verify_endian_match
7ba29e2a
NC
3503#define bfd_elf32_bfd_reloc_name_lookup microblaze_elf_reloc_name_lookup
3504
3505#define elf_backend_gc_mark_hook microblaze_elf_gc_mark_hook
07d6d2b8
AM
3506#define elf_backend_check_relocs microblaze_elf_check_relocs
3507#define elf_backend_copy_indirect_symbol microblaze_elf_copy_indirect_symbol
3508#define bfd_elf32_bfd_link_hash_table_create microblaze_elf_link_hash_table_create
7ba29e2a 3509#define elf_backend_can_gc_sections 1
07d6d2b8
AM
3510#define elf_backend_can_refcount 1
3511#define elf_backend_want_got_plt 1
3512#define elf_backend_plt_readonly 1
3513#define elf_backend_got_header_size 12
5474d94f 3514#define elf_backend_want_dynrelro 1
07d6d2b8 3515#define elf_backend_rela_normal 1
64f52338 3516#define elf_backend_dtrel_excludes_plt 1
7ba29e2a 3517
07d6d2b8
AM
3518#define elf_backend_adjust_dynamic_symbol microblaze_elf_adjust_dynamic_symbol
3519#define elf_backend_create_dynamic_sections _bfd_elf_create_dynamic_sections
3520#define elf_backend_finish_dynamic_sections microblaze_elf_finish_dynamic_sections
3521#define elf_backend_finish_dynamic_symbol microblaze_elf_finish_dynamic_symbol
3522#define elf_backend_size_dynamic_sections microblaze_elf_size_dynamic_sections
7ba29e2a
NC
3523#define elf_backend_add_symbol_hook microblaze_elf_add_symbol_hook
3524
3525#include "elf32-target.h"
This page took 1.157539 seconds and 4 git commands to generate.