Add translations for various sub-directories
[binutils-gdb.git] / bfd / elf32-lm32.c
blob45264d69c671019c786d7d11cd721e0238301baf
1 /* Lattice Mico32-specific support for 32-bit ELF
2 Copyright (C) 2008-2025 Free Software Foundation, Inc.
3 Contributed by Jon Beniston <jon@beniston.com>
5 This file is part of BFD, the Binary File Descriptor library.
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.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
22 #include "sysdep.h"
23 #include "bfd.h"
24 #include "libbfd.h"
25 #include "elf-bfd.h"
26 #include "elf/lm32.h"
28 #define DEFAULT_STACK_SIZE 0x20000
30 #define PLT_ENTRY_SIZE 20
32 #define PLT0_ENTRY_WORD0 0
33 #define PLT0_ENTRY_WORD1 0
34 #define PLT0_ENTRY_WORD2 0
35 #define PLT0_ENTRY_WORD3 0
36 #define PLT0_ENTRY_WORD4 0
38 #define PLT0_PIC_ENTRY_WORD0 0
39 #define PLT0_PIC_ENTRY_WORD1 0
40 #define PLT0_PIC_ENTRY_WORD2 0
41 #define PLT0_PIC_ENTRY_WORD3 0
42 #define PLT0_PIC_ENTRY_WORD4 0
44 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
46 extern const bfd_target lm32_elf32_fdpic_vec;
48 #define IS_FDPIC(bfd) ((bfd)->xvec == &lm32_elf32_fdpic_vec)
50 static bfd_reloc_status_type lm32_elf_gprel_reloc
51 (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **);
53 /* lm32 ELF linker hash table. */
55 struct elf_lm32_link_hash_table
57 struct elf_link_hash_table root;
59 /* Short-cuts to get to dynamic linker sections. */
60 asection *sfixup32;
61 asection *sdynbss;
62 asection *srelbss;
64 int relocs32;
67 /* Get the lm32 ELF linker hash table from a link_info structure. */
69 #define lm32_elf_hash_table(p) \
70 ((is_elf_hash_table ((p)->hash) \
71 && elf_hash_table_id (elf_hash_table (p)) == LM32_ELF_DATA) \
72 ? (struct elf_lm32_link_hash_table *) (p)->hash : NULL)
74 #define lm32fdpic_got_section(info) \
75 (lm32_elf_hash_table (info)->root.sgot)
76 #define lm32fdpic_gotrel_section(info) \
77 (lm32_elf_hash_table (info)->root.srelgot)
78 #define lm32fdpic_fixup32_section(info) \
79 (lm32_elf_hash_table (info)->sfixup32)
81 struct weak_symbol_list
83 const char *name;
84 struct weak_symbol_list *next;
87 /* Create an lm32 ELF linker hash table. */
89 static struct bfd_link_hash_table *
90 lm32_elf_link_hash_table_create (bfd *abfd)
92 struct elf_lm32_link_hash_table *ret;
93 size_t amt = sizeof (struct elf_lm32_link_hash_table);
95 ret = bfd_zmalloc (amt);
96 if (ret == NULL)
97 return NULL;
99 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
100 _bfd_elf_link_hash_newfunc,
101 sizeof (struct elf_link_hash_entry)))
103 free (ret);
104 return NULL;
107 return &ret->root.root;
110 /* Add a fixup to the ROFIXUP section. */
112 static bfd_vma
113 _lm32fdpic_add_rofixup (bfd *output_bfd, asection *rofixup, bfd_vma relocation)
115 bfd_vma fixup_offset;
117 if (rofixup->flags & SEC_EXCLUDE)
118 return -1;
120 fixup_offset = rofixup->reloc_count * 4;
121 if (rofixup->contents)
123 BFD_ASSERT (fixup_offset < rofixup->size);
124 if (fixup_offset < rofixup->size)
125 bfd_put_32 (output_bfd, relocation, rofixup->contents + fixup_offset);
127 rofixup->reloc_count++;
129 return fixup_offset;
132 /* Create .rofixup sections in DYNOBJ, and set up
133 shortcuts to them in our hash table. */
135 static bool
136 create_rofixup_section (bfd *dynobj, struct bfd_link_info *info)
138 struct elf_lm32_link_hash_table *htab;
139 htab = lm32_elf_hash_table (info);
141 if (htab == NULL)
142 return false;
144 /* Fixup section for R_LM32_32 relocs. */
145 lm32fdpic_fixup32_section (info)
146 = bfd_make_section_anyway_with_flags (dynobj,
147 ".rofixup",
148 (SEC_ALLOC
149 | SEC_LOAD
150 | SEC_HAS_CONTENTS
151 | SEC_IN_MEMORY
152 | SEC_LINKER_CREATED
153 | SEC_READONLY));
154 if (lm32fdpic_fixup32_section (info) == NULL
155 || !bfd_set_section_alignment (lm32fdpic_fixup32_section (info), 2))
156 return false;
158 return true;
161 static reloc_howto_type lm32_elf_howto_table [] =
163 /* This reloc does nothing. */
164 HOWTO (R_LM32_NONE, /* type */
165 0, /* rightshift */
166 0, /* size */
167 0, /* bitsize */
168 false, /* pc_relative */
169 0, /* bitpos */
170 complain_overflow_dont, /* complain_on_overflow */
171 bfd_elf_generic_reloc, /* special_function */
172 "R_LM32_NONE", /* name */
173 false, /* partial_inplace */
174 0, /* src_mask */
175 0, /* dst_mask */
176 false), /* pcrel_offset */
178 /* An 8 bit absolute relocation. */
179 HOWTO (R_LM32_8, /* type */
180 0, /* rightshift */
181 1, /* size */
182 8, /* bitsize */
183 false, /* pc_relative */
184 0, /* bitpos */
185 complain_overflow_bitfield,/* complain_on_overflow */
186 bfd_elf_generic_reloc, /* special_function */
187 "R_LM32_8", /* name */
188 false, /* partial_inplace */
189 0, /* src_mask */
190 0xff, /* dst_mask */
191 false), /* pcrel_offset */
193 /* A 16 bit absolute relocation. */
194 HOWTO (R_LM32_16, /* type */
195 0, /* rightshift */
196 2, /* size */
197 16, /* bitsize */
198 false, /* pc_relative */
199 0, /* bitpos */
200 complain_overflow_bitfield,/* complain_on_overflow */
201 bfd_elf_generic_reloc, /* special_function */
202 "R_LM32_16", /* name */
203 false, /* partial_inplace */
204 0, /* src_mask */
205 0xffff, /* dst_mask */
206 false), /* pcrel_offset */
208 /* A 32 bit absolute relocation. */
209 HOWTO (R_LM32_32, /* type */
210 0, /* rightshift */
211 4, /* size */
212 32, /* bitsize */
213 false, /* pc_relative */
214 0, /* bitpos */
215 complain_overflow_bitfield,/* complain_on_overflow */
216 bfd_elf_generic_reloc, /* special_function */
217 "R_LM32_32", /* name */
218 false, /* partial_inplace */
219 0, /* src_mask */
220 0xffffffff, /* dst_mask */
221 false), /* pcrel_offset */
223 HOWTO (R_LM32_HI16, /* type */
224 16, /* rightshift */
225 4, /* size */
226 16, /* bitsize */
227 false, /* pc_relative */
228 0, /* bitpos */
229 complain_overflow_bitfield,/* complain_on_overflow */
230 bfd_elf_generic_reloc, /* special_function */
231 "R_LM32_HI16", /* name */
232 false, /* partial_inplace */
233 0, /* src_mask */
234 0xffff, /* dst_mask */
235 false), /* pcrel_offset */
237 HOWTO (R_LM32_LO16, /* type */
238 0, /* rightshift */
239 4, /* size */
240 16, /* bitsize */
241 false, /* pc_relative */
242 0, /* bitpos */
243 complain_overflow_dont, /* complain_on_overflow */
244 bfd_elf_generic_reloc, /* special_function */
245 "R_LM32_LO16", /* name */
246 false, /* partial_inplace */
247 0, /* src_mask */
248 0xffff, /* dst_mask */
249 false), /* pcrel_offset */
251 HOWTO (R_LM32_GPREL16, /* type */
252 0, /* rightshift */
253 4, /* size */
254 16, /* bitsize */
255 false, /* pc_relative */
256 0, /* bitpos */
257 complain_overflow_dont, /* complain_on_overflow */
258 lm32_elf_gprel_reloc, /* special_function */
259 "R_LM32_GPREL16", /* name */
260 false, /* partial_inplace */
261 0, /* src_mask */
262 0xffff, /* dst_mask */
263 false), /* pcrel_offset */
265 HOWTO (R_LM32_CALL, /* type */
266 2, /* rightshift */
267 4, /* size */
268 26, /* bitsize */
269 true, /* pc_relative */
270 0, /* bitpos */
271 complain_overflow_signed, /* complain_on_overflow */
272 bfd_elf_generic_reloc, /* special_function */
273 "R_LM32_CALL", /* name */
274 false, /* partial_inplace */
275 0, /* src_mask */
276 0x3ffffff, /* dst_mask */
277 true), /* pcrel_offset */
279 HOWTO (R_LM32_BRANCH, /* type */
280 2, /* rightshift */
281 4, /* size */
282 16, /* bitsize */
283 true, /* pc_relative */
284 0, /* bitpos */
285 complain_overflow_signed, /* complain_on_overflow */
286 bfd_elf_generic_reloc, /* special_function */
287 "R_LM32_BRANCH", /* name */
288 false, /* partial_inplace */
289 0, /* src_mask */
290 0xffff, /* dst_mask */
291 true), /* pcrel_offset */
293 /* GNU extension to record C++ vtable hierarchy. */
294 HOWTO (R_LM32_GNU_VTINHERIT, /* type */
295 0, /* rightshift */
296 4, /* size */
297 0, /* bitsize */
298 false, /* pc_relative */
299 0, /* bitpos */
300 complain_overflow_dont, /* complain_on_overflow */
301 NULL, /* special_function */
302 "R_LM32_GNU_VTINHERIT", /* name */
303 false, /* partial_inplace */
304 0, /* src_mask */
305 0, /* dst_mask */
306 false), /* pcrel_offset */
308 /* GNU extension to record C++ vtable member usage. */
309 HOWTO (R_LM32_GNU_VTENTRY, /* type */
310 0, /* rightshift */
311 4, /* size */
312 0, /* bitsize */
313 false, /* pc_relative */
314 0, /* bitpos */
315 complain_overflow_dont, /* complain_on_overflow */
316 _bfd_elf_rel_vtable_reloc_fn,/* special_function */
317 "R_LM32_GNU_VTENTRY", /* name */
318 false, /* partial_inplace */
319 0, /* src_mask */
320 0, /* dst_mask */
321 false), /* pcrel_offset */
323 HOWTO (R_LM32_16_GOT, /* type */
324 0, /* rightshift */
325 4, /* size */
326 16, /* bitsize */
327 false, /* pc_relative */
328 0, /* bitpos */
329 complain_overflow_signed, /* complain_on_overflow */
330 bfd_elf_generic_reloc, /* special_function */
331 "R_LM32_16_GOT", /* name */
332 false, /* partial_inplace */
333 0, /* src_mask */
334 0xffff, /* dst_mask */
335 false), /* pcrel_offset */
337 HOWTO (R_LM32_GOTOFF_HI16, /* type */
338 16, /* rightshift */
339 4, /* size */
340 16, /* bitsize */
341 false, /* pc_relative */
342 0, /* bitpos */
343 complain_overflow_dont, /* complain_on_overflow */
344 bfd_elf_generic_reloc, /* special_function */
345 "R_LM32_GOTOFF_HI16", /* name */
346 false, /* partial_inplace */
347 0xffff, /* src_mask */
348 0xffff, /* dst_mask */
349 false), /* pcrel_offset */
351 HOWTO (R_LM32_GOTOFF_LO16, /* type */
352 0, /* rightshift */
353 4, /* size */
354 16, /* bitsize */
355 false, /* pc_relative */
356 0, /* bitpos */
357 complain_overflow_dont, /* complain_on_overflow */
358 bfd_elf_generic_reloc, /* special_function */
359 "R_LM32_GOTOFF_LO16", /* name */
360 false, /* partial_inplace */
361 0xffff, /* src_mask */
362 0xffff, /* dst_mask */
363 false), /* pcrel_offset */
365 HOWTO (R_LM32_COPY, /* type */
366 0, /* rightshift */
367 4, /* size */
368 32, /* bitsize */
369 false, /* pc_relative */
370 0, /* bitpos */
371 complain_overflow_bitfield, /* complain_on_overflow */
372 bfd_elf_generic_reloc, /* special_function */
373 "R_LM32_COPY", /* name */
374 false, /* partial_inplace */
375 0xffffffff, /* src_mask */
376 0xffffffff, /* dst_mask */
377 false), /* pcrel_offset */
379 HOWTO (R_LM32_GLOB_DAT, /* type */
380 0, /* rightshift */
381 4, /* size */
382 32, /* bitsize */
383 false, /* pc_relative */
384 0, /* bitpos */
385 complain_overflow_bitfield, /* complain_on_overflow */
386 bfd_elf_generic_reloc, /* special_function */
387 "R_LM32_GLOB_DAT", /* name */
388 false, /* partial_inplace */
389 0xffffffff, /* src_mask */
390 0xffffffff, /* dst_mask */
391 false), /* pcrel_offset */
393 HOWTO (R_LM32_JMP_SLOT, /* type */
394 0, /* rightshift */
395 4, /* size */
396 32, /* bitsize */
397 false, /* pc_relative */
398 0, /* bitpos */
399 complain_overflow_bitfield, /* complain_on_overflow */
400 bfd_elf_generic_reloc, /* special_function */
401 "R_LM32_JMP_SLOT", /* name */
402 false, /* partial_inplace */
403 0xffffffff, /* src_mask */
404 0xffffffff, /* dst_mask */
405 false), /* pcrel_offset */
407 HOWTO (R_LM32_RELATIVE, /* type */
408 0, /* rightshift */
409 4, /* size */
410 32, /* bitsize */
411 false, /* pc_relative */
412 0, /* bitpos */
413 complain_overflow_bitfield, /* complain_on_overflow */
414 bfd_elf_generic_reloc, /* special_function */
415 "R_LM32_RELATIVE", /* name */
416 false, /* partial_inplace */
417 0xffffffff, /* src_mask */
418 0xffffffff, /* dst_mask */
419 false), /* pcrel_offset */
423 /* Map BFD reloc types to lm32 ELF reloc types. */
425 struct lm32_reloc_map
427 bfd_reloc_code_real_type bfd_reloc_val;
428 unsigned char elf_reloc_val;
431 static const struct lm32_reloc_map lm32_reloc_map[] =
433 { BFD_RELOC_NONE, R_LM32_NONE },
434 { BFD_RELOC_8, R_LM32_8 },
435 { BFD_RELOC_16, R_LM32_16 },
436 { BFD_RELOC_32, R_LM32_32 },
437 { BFD_RELOC_HI16, R_LM32_HI16 },
438 { BFD_RELOC_LO16, R_LM32_LO16 },
439 { BFD_RELOC_GPREL16, R_LM32_GPREL16 },
440 { BFD_RELOC_LM32_CALL, R_LM32_CALL },
441 { BFD_RELOC_LM32_BRANCH, R_LM32_BRANCH },
442 { BFD_RELOC_VTABLE_INHERIT, R_LM32_GNU_VTINHERIT },
443 { BFD_RELOC_VTABLE_ENTRY, R_LM32_GNU_VTENTRY },
444 { BFD_RELOC_LM32_16_GOT, R_LM32_16_GOT },
445 { BFD_RELOC_LM32_GOTOFF_HI16, R_LM32_GOTOFF_HI16 },
446 { BFD_RELOC_LM32_GOTOFF_LO16, R_LM32_GOTOFF_LO16 },
447 { BFD_RELOC_LM32_COPY, R_LM32_COPY },
448 { BFD_RELOC_LM32_GLOB_DAT, R_LM32_GLOB_DAT },
449 { BFD_RELOC_LM32_JMP_SLOT, R_LM32_JMP_SLOT },
450 { BFD_RELOC_LM32_RELATIVE, R_LM32_RELATIVE },
453 static reloc_howto_type *
454 lm32_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
455 bfd_reloc_code_real_type code)
457 unsigned int i;
459 for (i = 0; i < sizeof (lm32_reloc_map) / sizeof (lm32_reloc_map[0]); i++)
460 if (lm32_reloc_map[i].bfd_reloc_val == code)
461 return &lm32_elf_howto_table[lm32_reloc_map[i].elf_reloc_val];
462 return NULL;
465 static reloc_howto_type *
466 lm32_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
467 const char *r_name)
469 unsigned int i;
471 for (i = 0;
472 i < sizeof (lm32_elf_howto_table) / sizeof (lm32_elf_howto_table[0]);
473 i++)
474 if (lm32_elf_howto_table[i].name != NULL
475 && strcasecmp (lm32_elf_howto_table[i].name, r_name) == 0)
476 return &lm32_elf_howto_table[i];
478 return NULL;
482 /* Set the howto pointer for an Lattice Mico32 ELF reloc. */
484 static bool
485 lm32_info_to_howto_rela (bfd *abfd,
486 arelent *cache_ptr,
487 Elf_Internal_Rela *dst)
489 unsigned int r_type;
491 r_type = ELF32_R_TYPE (dst->r_info);
492 if (r_type >= (unsigned int) R_LM32_max)
494 /* xgettext:c-format */
495 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
496 abfd, r_type);
497 bfd_set_error (bfd_error_bad_value);
498 return false;
500 cache_ptr->howto = &lm32_elf_howto_table[r_type];
501 return true;
504 /* Set the right machine number for an Lattice Mico32 ELF file. */
506 static bool
507 lm32_elf_object_p (bfd *abfd)
509 return bfd_default_set_arch_mach (abfd, bfd_arch_lm32, bfd_mach_lm32);
512 /* Set machine type flags just before file is written out. */
514 static bool
515 lm32_elf_final_write_processing (bfd *abfd)
517 elf_elfheader (abfd)->e_machine = EM_LATTICEMICO32;
518 elf_elfheader (abfd)->e_flags &=~ EF_LM32_MACH;
519 switch (bfd_get_mach (abfd))
521 case bfd_mach_lm32:
522 elf_elfheader (abfd)->e_flags |= E_LM32_MACH;
523 break;
524 default:
525 abort ();
527 return _bfd_elf_final_write_processing (abfd);
530 /* Set the GP value for OUTPUT_BFD. Returns FALSE if this is a
531 dangerous relocation. */
533 static bool
534 lm32_elf_assign_gp (bfd *output_bfd, bfd_vma *pgp)
536 unsigned int count;
537 asymbol **sym;
538 unsigned int i;
540 /* If we've already figured out what GP will be, just return it. */
541 *pgp = _bfd_get_gp_value (output_bfd);
542 if (*pgp)
543 return true;
545 count = bfd_get_symcount (output_bfd);
546 sym = bfd_get_outsymbols (output_bfd);
548 /* The linker script will have created a symbol named `_gp' with the
549 appropriate value. */
550 if (sym == NULL)
551 i = count;
552 else
554 for (i = 0; i < count; i++, sym++)
556 const char *name;
558 name = bfd_asymbol_name (*sym);
559 if (*name == '_' && strcmp (name, "_gp") == 0)
561 *pgp = bfd_asymbol_value (*sym);
562 _bfd_set_gp_value (output_bfd, *pgp);
563 break;
568 if (i >= count)
570 /* Only get the error once. */
571 *pgp = 4;
572 _bfd_set_gp_value (output_bfd, *pgp);
573 return false;
576 return true;
579 /* We have to figure out the gp value, so that we can adjust the
580 symbol value correctly. We look up the symbol _gp in the output
581 BFD. If we can't find it, we're stuck. We cache it in the ELF
582 target data. We don't need to adjust the symbol value for an
583 external symbol if we are producing relocatable output. */
585 static bfd_reloc_status_type
586 lm32_elf_final_gp (bfd *output_bfd, asymbol *symbol, bool relocatable,
587 char **error_message, bfd_vma *pgp)
589 if (bfd_is_und_section (symbol->section) && !relocatable)
591 *pgp = 0;
592 return bfd_reloc_undefined;
595 *pgp = _bfd_get_gp_value (output_bfd);
596 if (*pgp == 0 && (!relocatable || (symbol->flags & BSF_SECTION_SYM) != 0))
598 if (relocatable)
600 /* Make up a value. */
601 *pgp = symbol->section->output_section->vma + 0x4000;
602 _bfd_set_gp_value (output_bfd, *pgp);
604 else if (!lm32_elf_assign_gp (output_bfd, pgp))
606 *error_message =
607 (char *)
608 _("global pointer relative relocation when _gp not defined");
609 return bfd_reloc_dangerous;
613 return bfd_reloc_ok;
616 static bfd_reloc_status_type
617 lm32_elf_do_gprel_relocate (bfd *abfd,
618 reloc_howto_type *howto,
619 asection *input_section ATTRIBUTE_UNUSED,
620 bfd_byte *data,
621 bfd_vma offset,
622 bfd_vma symbol_value,
623 bfd_vma addend)
625 return _bfd_final_link_relocate (howto, abfd, input_section,
626 data, offset, symbol_value, addend);
629 static bfd_reloc_status_type
630 lm32_elf_gprel_reloc (bfd *abfd,
631 arelent *reloc_entry,
632 asymbol *symbol,
633 void *data,
634 asection *input_section,
635 bfd *output_bfd,
636 char **msg)
638 bfd_vma relocation;
639 bfd_vma gp;
640 bfd_reloc_status_type r;
642 if (output_bfd != (bfd *) NULL
643 && (symbol->flags & BSF_SECTION_SYM) == 0
644 && (!reloc_entry->howto->partial_inplace || reloc_entry->addend == 0))
646 reloc_entry->address += input_section->output_offset;
647 return bfd_reloc_ok;
650 if (output_bfd != NULL)
651 return bfd_reloc_ok;
653 relocation = symbol->value
654 + symbol->section->output_section->vma + symbol->section->output_offset;
656 if ((r =
657 lm32_elf_final_gp (abfd, symbol, false, msg, &gp)) == bfd_reloc_ok)
659 relocation = relocation + reloc_entry->addend - gp;
660 reloc_entry->addend = 0;
661 if ((signed) relocation < -32768 || (signed) relocation > 32767)
663 *msg = _("global pointer relative address out of range");
664 r = bfd_reloc_outofrange;
666 else
668 r = lm32_elf_do_gprel_relocate (abfd, reloc_entry->howto,
669 input_section,
670 data, reloc_entry->address,
671 relocation, reloc_entry->addend);
675 return r;
678 /* Find the segment number in which OSEC, and output section, is
679 located. */
681 static unsigned
682 _lm32fdpic_osec_to_segment (bfd *output_bfd, asection *osec)
684 struct elf_segment_map *m;
685 Elf_Internal_Phdr *p;
687 /* Find the segment that contains the output_section. */
688 for (m = elf_seg_map (output_bfd), p = elf_tdata (output_bfd)->phdr;
689 m != NULL;
690 m = m->next, p++)
692 int i;
694 for (i = m->count - 1; i >= 0; i--)
695 if (m->sections[i] == osec)
696 break;
698 if (i >= 0)
699 break;
702 return p - elf_tdata (output_bfd)->phdr;
705 /* Determine if an output section is read-only. */
707 inline static bool
708 _lm32fdpic_osec_readonly_p (bfd *output_bfd, asection *osec)
710 unsigned seg = _lm32fdpic_osec_to_segment (output_bfd, osec);
712 return ! (elf_tdata (output_bfd)->phdr[seg].p_flags & PF_W);
715 /* Relocate a section */
717 static int
718 lm32_elf_relocate_section (bfd *output_bfd,
719 struct bfd_link_info *info,
720 bfd *input_bfd,
721 asection *input_section,
722 bfd_byte *contents,
723 Elf_Internal_Rela *relocs,
724 Elf_Internal_Sym *local_syms,
725 asection **local_sections)
727 Elf_Internal_Shdr *symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
728 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (input_bfd);
729 Elf_Internal_Rela *rel, *relend;
730 struct elf_lm32_link_hash_table *htab = lm32_elf_hash_table (info);
731 bfd_vma *local_got_offsets;
732 asection *sgot;
734 if (htab == NULL)
735 return false;
737 local_got_offsets = elf_local_got_offsets (input_bfd);
739 sgot = htab->root.sgot;
741 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
742 sym_hashes = elf_sym_hashes (input_bfd);
744 rel = relocs;
745 relend = relocs + input_section->reloc_count;
746 for (; rel < relend; rel++)
748 reloc_howto_type *howto;
749 unsigned int r_type;
750 unsigned long r_symndx;
751 Elf_Internal_Sym *sym;
752 asection *sec;
753 struct elf_link_hash_entry *h;
754 bfd_vma relocation;
755 bfd_vma gp;
756 bfd_reloc_status_type r;
757 const char *name = NULL;
759 r_symndx = ELF32_R_SYM (rel->r_info);
760 r_type = ELF32_R_TYPE (rel->r_info);
762 if (r_type == R_LM32_GNU_VTENTRY
763 || r_type == R_LM32_GNU_VTINHERIT )
764 continue;
766 h = NULL;
767 sym = NULL;
768 sec = NULL;
770 howto = lm32_elf_howto_table + r_type;
772 if (r_symndx < symtab_hdr->sh_info)
774 /* It's a local symbol. */
775 sym = local_syms + r_symndx;
776 sec = local_sections[r_symndx];
777 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
778 name = bfd_elf_string_from_elf_section
779 (input_bfd, symtab_hdr->sh_link, sym->st_name);
780 name = name == NULL ? bfd_section_name (sec) : name;
782 else
784 /* It's a global symbol. */
785 bool unresolved_reloc;
786 bool warned, ignored;
788 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
789 r_symndx, symtab_hdr, sym_hashes,
790 h, sec, relocation,
791 unresolved_reloc, warned, ignored);
792 name = h->root.root.string;
795 if (sec != NULL && discarded_section (sec))
796 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
797 rel, 1, relend, howto, 0, contents);
799 if (bfd_link_relocatable (info))
801 /* This is a relocatable link. We don't have to change
802 anything, unless the reloc is against a section symbol,
803 in which case we have to adjust according to where the
804 section symbol winds up in the output section. */
805 if (sym == NULL || ELF_ST_TYPE (sym->st_info) != STT_SECTION)
806 continue;
808 /* If partial_inplace, we need to store any additional addend
809 back in the section. */
810 if (! howto->partial_inplace)
811 continue;
813 /* Shouldn't reach here. */
814 abort ();
815 r = bfd_reloc_ok;
817 else
819 switch (howto->type)
821 case R_LM32_GPREL16:
822 if (!lm32_elf_assign_gp (output_bfd, &gp))
823 r = bfd_reloc_dangerous;
824 else
826 relocation = relocation + rel->r_addend - gp;
827 rel->r_addend = 0;
828 if ((signed)relocation < -32768 || (signed)relocation > 32767)
829 r = bfd_reloc_outofrange;
830 else
832 r = _bfd_final_link_relocate (howto, input_bfd,
833 input_section, contents,
834 rel->r_offset, relocation,
835 rel->r_addend);
838 break;
839 case R_LM32_16_GOT:
840 /* Relocation is to the entry for this symbol in the global
841 offset table. */
842 BFD_ASSERT (sgot != NULL);
843 if (h != NULL)
845 bool dyn;
846 bfd_vma off;
848 off = h->got.offset;
849 BFD_ASSERT (off != (bfd_vma) -1);
851 dyn = htab->root.dynamic_sections_created;
852 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
853 bfd_link_pic (info),
855 || (bfd_link_pic (info)
856 && (info->symbolic
857 || h->dynindx == -1
858 || h->forced_local)
859 && h->def_regular))
861 /* This is actually a static link, or it is a
862 -Bsymbolic link and the symbol is defined
863 locally, or the symbol was forced to be local
864 because of a version file. We must initialize
865 this entry in the global offset table. Since the
866 offset must always be a multiple of 4, we use the
867 least significant bit to record whether we have
868 initialized it already.
870 When doing a dynamic link, we create a .rela.got
871 relocation entry to initialize the value. This
872 is done in the finish_dynamic_symbol routine. */
873 if ((off & 1) != 0)
874 off &= ~1;
875 else
877 /* Write entry in GOT */
878 bfd_put_32 (output_bfd, relocation,
879 sgot->contents + off);
880 /* Create entry in .rofixup pointing to GOT entry. */
881 if (IS_FDPIC (output_bfd) && h->root.type != bfd_link_hash_undefweak)
883 _lm32fdpic_add_rofixup (output_bfd,
884 lm32fdpic_fixup32_section
885 (info),
886 sgot->output_section->vma
887 + sgot->output_offset
888 + off);
890 /* Mark GOT entry as having been written. */
891 h->got.offset |= 1;
895 relocation = sgot->output_offset + off;
897 else
899 bfd_vma off;
900 bfd_byte *loc;
902 BFD_ASSERT (local_got_offsets != NULL
903 && local_got_offsets[r_symndx] != (bfd_vma) -1);
905 /* Get offset into GOT table. */
906 off = local_got_offsets[r_symndx];
908 /* The offset must always be a multiple of 4. We use
909 the least significant bit to record whether we have
910 already processed this entry. */
911 if ((off & 1) != 0)
912 off &= ~1;
913 else
915 /* Write entry in GOT. */
916 bfd_put_32 (output_bfd, relocation, sgot->contents + off);
917 /* Create entry in .rofixup pointing to GOT entry. */
918 if (IS_FDPIC (output_bfd))
920 _lm32fdpic_add_rofixup (output_bfd,
921 lm32fdpic_fixup32_section
922 (info),
923 sgot->output_section->vma
924 + sgot->output_offset
925 + off);
928 if (bfd_link_pic (info))
930 asection *srelgot;
931 Elf_Internal_Rela outrel;
933 /* We need to generate a R_LM32_RELATIVE reloc
934 for the dynamic linker. */
935 srelgot = htab->root.srelgot;
936 BFD_ASSERT (srelgot != NULL);
938 outrel.r_offset = (sgot->output_section->vma
939 + sgot->output_offset
940 + off);
941 outrel.r_info = ELF32_R_INFO (0, R_LM32_RELATIVE);
942 outrel.r_addend = relocation;
943 loc = srelgot->contents;
944 loc += srelgot->reloc_count * sizeof (Elf32_External_Rela);
945 bfd_elf32_swap_reloca_out (output_bfd, &outrel,loc);
946 ++srelgot->reloc_count;
949 local_got_offsets[r_symndx] |= 1;
953 relocation = sgot->output_offset + off;
956 /* Addend should be zero. */
957 if (rel->r_addend != 0)
958 _bfd_error_handler
959 (_("internal error: addend should be zero for %s"),
960 "R_LM32_16_GOT");
962 r = _bfd_final_link_relocate (howto,
963 input_bfd,
964 input_section,
965 contents,
966 rel->r_offset,
967 relocation,
968 rel->r_addend);
969 break;
971 case R_LM32_GOTOFF_LO16:
972 case R_LM32_GOTOFF_HI16:
973 /* Relocation is offset from GOT. */
974 BFD_ASSERT (sgot != NULL);
975 relocation -= sgot->output_section->vma;
976 /* Account for sign-extension. */
977 if ((r_type == R_LM32_GOTOFF_HI16)
978 && ((relocation + rel->r_addend) & 0x8000))
979 rel->r_addend += 0x10000;
980 r = _bfd_final_link_relocate (howto,
981 input_bfd,
982 input_section,
983 contents,
984 rel->r_offset,
985 relocation,
986 rel->r_addend);
987 break;
989 case R_LM32_32:
990 if (IS_FDPIC (output_bfd))
992 if ((!h) || (h && h->root.type != bfd_link_hash_undefweak))
994 /* Only create .rofixup entries for relocs in loadable sections. */
995 if ((bfd_section_flags (input_section->output_section)
996 & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
999 /* Check address to be modified is writable. */
1000 if (_lm32fdpic_osec_readonly_p (output_bfd,
1001 input_section
1002 ->output_section))
1004 info->callbacks->warning
1005 (info,
1006 _("cannot emit dynamic relocations in read-only section"),
1007 name, input_bfd, input_section, rel->r_offset);
1008 return false;
1010 /* Create entry in .rofixup section. */
1011 _lm32fdpic_add_rofixup (output_bfd,
1012 lm32fdpic_fixup32_section (info),
1013 input_section->output_section->vma
1014 + input_section->output_offset
1015 + rel->r_offset);
1019 /* Fall through. */
1021 default:
1022 r = _bfd_final_link_relocate (howto,
1023 input_bfd,
1024 input_section,
1025 contents,
1026 rel->r_offset,
1027 relocation,
1028 rel->r_addend);
1029 break;
1033 if (r != bfd_reloc_ok)
1035 const char *msg = NULL;
1036 arelent bfd_reloc;
1038 if (! lm32_info_to_howto_rela (input_bfd, &bfd_reloc, rel))
1039 continue;
1040 howto = bfd_reloc.howto;
1042 if (h != NULL)
1043 name = h->root.root.string;
1044 else
1046 name = (bfd_elf_string_from_elf_section
1047 (input_bfd, symtab_hdr->sh_link, sym->st_name));
1048 if (name == NULL || *name == '\0')
1049 name = bfd_section_name (sec);
1052 switch (r)
1054 case bfd_reloc_overflow:
1055 if ((h != NULL)
1056 && (h->root.type == bfd_link_hash_undefweak))
1057 break;
1058 (*info->callbacks->reloc_overflow)
1059 (info, (h ? &h->root : NULL), name, howto->name,
1060 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
1061 break;
1063 case bfd_reloc_undefined:
1064 (*info->callbacks->undefined_symbol)
1065 (info, name, input_bfd, input_section, rel->r_offset, true);
1066 break;
1068 case bfd_reloc_outofrange:
1069 msg = _("internal error: out of range error");
1070 goto common_error;
1072 case bfd_reloc_notsupported:
1073 msg = _("internal error: unsupported relocation error");
1074 goto common_error;
1076 case bfd_reloc_dangerous:
1077 msg = _("internal error: dangerous error");
1078 goto common_error;
1080 default:
1081 msg = _("internal error: unknown error");
1082 /* fall through */
1084 common_error:
1085 (*info->callbacks->warning) (info, msg, name, input_bfd,
1086 input_section, rel->r_offset);
1087 break;
1092 return true;
1095 static asection *
1096 lm32_elf_gc_mark_hook (asection *sec,
1097 struct bfd_link_info *info,
1098 Elf_Internal_Rela *rel,
1099 struct elf_link_hash_entry *h,
1100 Elf_Internal_Sym *sym)
1102 if (h != NULL)
1103 switch (ELF32_R_TYPE (rel->r_info))
1105 case R_LM32_GNU_VTINHERIT:
1106 case R_LM32_GNU_VTENTRY:
1107 return NULL;
1110 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1113 /* Look through the relocs for a section during the first phase. */
1115 static bool
1116 lm32_elf_check_relocs (bfd *abfd,
1117 struct bfd_link_info *info,
1118 asection *sec,
1119 const Elf_Internal_Rela *relocs)
1121 Elf_Internal_Shdr *symtab_hdr;
1122 struct elf_link_hash_entry **sym_hashes;
1123 const Elf_Internal_Rela *rel;
1124 const Elf_Internal_Rela *rel_end;
1125 struct elf_lm32_link_hash_table *htab;
1126 bfd *dynobj;
1128 if (bfd_link_relocatable (info))
1129 return true;
1131 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1132 sym_hashes = elf_sym_hashes (abfd);
1134 htab = lm32_elf_hash_table (info);
1135 if (htab == NULL)
1136 return false;
1138 dynobj = htab->root.dynobj;
1140 rel_end = relocs + sec->reloc_count;
1141 for (rel = relocs; rel < rel_end; rel++)
1143 int r_type;
1144 struct elf_link_hash_entry *h;
1145 unsigned long r_symndx;
1147 r_symndx = ELF32_R_SYM (rel->r_info);
1148 r_type = ELF32_R_TYPE (rel->r_info);
1149 if (r_symndx < symtab_hdr->sh_info)
1150 h = NULL;
1151 else
1153 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1154 while (h->root.type == bfd_link_hash_indirect
1155 || h->root.type == bfd_link_hash_warning)
1156 h = (struct elf_link_hash_entry *) h->root.u.i.link;
1159 /* Some relocs require a global offset table. */
1160 if (htab->root.sgot == NULL)
1162 switch (r_type)
1164 case R_LM32_16_GOT:
1165 case R_LM32_GOTOFF_HI16:
1166 case R_LM32_GOTOFF_LO16:
1167 if (dynobj == NULL)
1168 htab->root.dynobj = dynobj = abfd;
1169 if (!_bfd_elf_create_got_section (dynobj, info))
1170 return false;
1171 break;
1175 /* Some relocs require a rofixup table. */
1176 if (IS_FDPIC (abfd))
1178 switch (r_type)
1180 case R_LM32_32:
1181 /* FDPIC requires a GOT if there is a .rofixup section
1182 (Normal ELF doesn't). */
1183 if (dynobj == NULL)
1184 htab->root.dynobj = dynobj = abfd;
1185 if (!_bfd_elf_create_got_section (dynobj, info))
1186 return false;
1187 /* Create .rofixup section */
1188 if (htab->sfixup32 == NULL)
1190 if (! create_rofixup_section (dynobj, info))
1191 return false;
1193 break;
1194 case R_LM32_16_GOT:
1195 case R_LM32_GOTOFF_HI16:
1196 case R_LM32_GOTOFF_LO16:
1197 /* Create .rofixup section. */
1198 if (htab->sfixup32 == NULL)
1200 if (dynobj == NULL)
1201 htab->root.dynobj = dynobj = abfd;
1202 if (! create_rofixup_section (dynobj, info))
1203 return false;
1205 break;
1209 switch (r_type)
1211 case R_LM32_16_GOT:
1212 if (h != NULL)
1213 h->got.refcount += 1;
1214 else
1216 bfd_signed_vma *local_got_refcounts;
1218 /* This is a global offset table entry for a local symbol. */
1219 local_got_refcounts = elf_local_got_refcounts (abfd);
1220 if (local_got_refcounts == NULL)
1222 bfd_size_type size;
1224 size = symtab_hdr->sh_info;
1225 size *= sizeof (bfd_signed_vma);
1226 local_got_refcounts = bfd_zalloc (abfd, size);
1227 if (local_got_refcounts == NULL)
1228 return false;
1229 elf_local_got_refcounts (abfd) = local_got_refcounts;
1231 local_got_refcounts[r_symndx] += 1;
1233 break;
1235 /* This relocation describes the C++ object vtable hierarchy.
1236 Reconstruct it for later use during GC. */
1237 case R_LM32_GNU_VTINHERIT:
1238 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
1239 return false;
1240 break;
1242 /* This relocation describes which C++ vtable entries are actually
1243 used. Record for later use during GC. */
1244 case R_LM32_GNU_VTENTRY:
1245 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
1246 return false;
1247 break;
1252 return true;
1255 /* Finish up the dynamic sections. */
1257 static bool
1258 lm32_elf_finish_dynamic_sections (bfd *output_bfd,
1259 struct bfd_link_info *info)
1261 struct elf_lm32_link_hash_table *htab;
1262 bfd *dynobj;
1263 asection *sdyn;
1264 asection *sgot;
1266 htab = lm32_elf_hash_table (info);
1267 if (htab == NULL)
1268 return false;
1270 dynobj = htab->root.dynobj;
1272 sgot = htab->root.sgotplt;
1273 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
1275 if (htab->root.dynamic_sections_created)
1277 asection *splt;
1278 Elf32_External_Dyn *dyncon, *dynconend;
1280 BFD_ASSERT (sgot != NULL && sdyn != NULL);
1282 dyncon = (Elf32_External_Dyn *) sdyn->contents;
1283 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
1285 for (; dyncon < dynconend; dyncon++)
1287 Elf_Internal_Dyn dyn;
1288 asection *s;
1290 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
1292 switch (dyn.d_tag)
1294 default:
1295 break;
1297 case DT_PLTGOT:
1298 s = htab->root.sgotplt;
1299 goto get_vma;
1300 case DT_JMPREL:
1301 s = htab->root.srelplt;
1302 get_vma:
1303 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
1304 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1305 break;
1307 case DT_PLTRELSZ:
1308 s = htab->root.srelplt;
1309 dyn.d_un.d_val = s->size;
1310 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
1311 break;
1315 /* Fill in the first entry in the procedure linkage table. */
1316 splt = htab->root.splt;
1317 if (splt && splt->size > 0)
1319 if (bfd_link_pic (info))
1321 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD0, splt->contents);
1322 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD1, splt->contents + 4);
1323 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD2, splt->contents + 8);
1324 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD3, splt->contents + 12);
1325 bfd_put_32 (output_bfd, PLT0_PIC_ENTRY_WORD4, splt->contents + 16);
1327 else
1329 unsigned long addr;
1330 /* addr = .got + 4 */
1331 addr = sgot->output_section->vma + sgot->output_offset + 4;
1332 bfd_put_32 (output_bfd,
1333 PLT0_ENTRY_WORD0 | ((addr >> 16) & 0xffff),
1334 splt->contents);
1335 bfd_put_32 (output_bfd,
1336 PLT0_ENTRY_WORD1 | (addr & 0xffff),
1337 splt->contents + 4);
1338 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD2, splt->contents + 8);
1339 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD3, splt->contents + 12);
1340 bfd_put_32 (output_bfd, PLT0_ENTRY_WORD4, splt->contents + 16);
1343 elf_section_data (splt->output_section)->this_hdr.sh_entsize =
1344 PLT_ENTRY_SIZE;
1348 /* Fill in the first three entries in the global offset table. */
1349 if (sgot && sgot->size > 0)
1351 if (sdyn == NULL)
1352 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
1353 else
1354 bfd_put_32 (output_bfd,
1355 sdyn->output_section->vma + sdyn->output_offset,
1356 sgot->contents);
1357 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
1358 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
1360 /* FIXME: This can be null if create_dynamic_sections wasn't called. */
1361 if (elf_section_data (sgot->output_section) != NULL)
1362 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
1365 if (lm32fdpic_fixup32_section (info))
1367 struct elf_link_hash_entry *hgot = elf_hash_table (info)->hgot;
1368 bfd_vma got_value = hgot->root.u.def.value
1369 + hgot->root.u.def.section->output_section->vma
1370 + hgot->root.u.def.section->output_offset;
1371 struct bfd_link_hash_entry *hend;
1373 /* Last entry is pointer to GOT. */
1374 _lm32fdpic_add_rofixup (output_bfd, lm32fdpic_fixup32_section (info), got_value);
1376 /* Check we wrote enough entries. */
1377 if (lm32fdpic_fixup32_section (info)->size
1378 != (lm32fdpic_fixup32_section (info)->reloc_count * 4))
1380 _bfd_error_handler
1381 ("LINKER BUG: .rofixup section size mismatch: size/4 %" PRId64
1382 " != relocs %d",
1383 (int64_t) (lm32fdpic_fixup32_section (info)->size / 4),
1384 lm32fdpic_fixup32_section (info)->reloc_count);
1385 return false;
1388 hend = bfd_link_hash_lookup (info->hash, "__ROFIXUP_END__",
1389 false, false, true);
1390 if (hend
1391 && (hend->type == bfd_link_hash_defined
1392 || hend->type == bfd_link_hash_defweak)
1393 && hend->u.def.section->output_section != NULL)
1395 bfd_vma value =
1396 lm32fdpic_fixup32_section (info)->output_section->vma
1397 + lm32fdpic_fixup32_section (info)->output_offset
1398 + lm32fdpic_fixup32_section (info)->size
1399 - hend->u.def.section->output_section->vma
1400 - hend->u.def.section->output_offset;
1401 BFD_ASSERT (hend->u.def.value == value);
1402 if (hend->u.def.value != value)
1404 _bfd_error_handler
1405 ("LINKER BUG: .rofixup section hend->u.def.value != value: %"
1406 PRId64 " != %" PRId64,
1407 (int64_t) hend->u.def.value, (int64_t) value);
1408 return false;
1413 return true;
1416 /* Finish up dynamic symbol handling. We set the contents of various
1417 dynamic sections here. */
1419 static bool
1420 lm32_elf_finish_dynamic_symbol (bfd *output_bfd,
1421 struct bfd_link_info *info,
1422 struct elf_link_hash_entry *h,
1423 Elf_Internal_Sym *sym)
1425 struct elf_lm32_link_hash_table *htab;
1426 bfd_byte *loc;
1428 htab = lm32_elf_hash_table (info);
1430 if (h->plt.offset != (bfd_vma) -1)
1432 asection *splt;
1433 asection *sgot;
1434 asection *srela;
1436 bfd_vma plt_index;
1437 bfd_vma got_offset;
1438 Elf_Internal_Rela rela;
1440 /* This symbol has an entry in the procedure linkage table. Set
1441 it up. */
1442 BFD_ASSERT (h->dynindx != -1);
1444 splt = htab->root.splt;
1445 sgot = htab->root.sgotplt;
1446 srela = htab->root.srelplt;
1447 BFD_ASSERT (splt != NULL && sgot != NULL && srela != NULL);
1449 /* Get the index in the procedure linkage table which
1450 corresponds to this symbol. This is the index of this symbol
1451 in all the symbols for which we are making plt entries. The
1452 first entry in the procedure linkage table is reserved. */
1453 plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
1455 /* Get the offset into the .got table of the entry that
1456 corresponds to this function. Each .got entry is 4 bytes.
1457 The first three are reserved. */
1458 got_offset = (plt_index + 3) * 4;
1460 /* Fill in the entry in the procedure linkage table. */
1461 if (! bfd_link_pic (info))
1463 /* TODO */
1465 else
1467 /* TODO */
1470 /* Fill in the entry in the global offset table. */
1471 bfd_put_32 (output_bfd,
1472 (splt->output_section->vma
1473 + splt->output_offset
1474 + h->plt.offset
1475 + 12), /* same offset */
1476 sgot->contents + got_offset);
1478 /* Fill in the entry in the .rela.plt section. */
1479 rela.r_offset = (sgot->output_section->vma
1480 + sgot->output_offset
1481 + got_offset);
1482 rela.r_info = ELF32_R_INFO (h->dynindx, R_LM32_JMP_SLOT);
1483 rela.r_addend = 0;
1484 loc = srela->contents;
1485 loc += plt_index * sizeof (Elf32_External_Rela);
1486 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1488 if (!h->def_regular)
1490 /* Mark the symbol as undefined, rather than as defined in
1491 the .plt section. Leave the value alone. */
1492 sym->st_shndx = SHN_UNDEF;
1497 if (h->got.offset != (bfd_vma) -1)
1499 asection *sgot;
1500 asection *srela;
1501 Elf_Internal_Rela rela;
1503 /* This symbol has an entry in the global offset table. Set it
1504 up. */
1505 sgot = htab->root.sgot;
1506 srela = htab->root.srelgot;
1507 BFD_ASSERT (sgot != NULL && srela != NULL);
1509 rela.r_offset = (sgot->output_section->vma
1510 + sgot->output_offset
1511 + (h->got.offset &~ 1));
1513 /* If this is a -Bsymbolic link, and the symbol is defined
1514 locally, we just want to emit a RELATIVE reloc. Likewise if
1515 the symbol was forced to be local because of a version file.
1516 The entry in the global offset table will already have been
1517 initialized in the relocate_section function. */
1518 if (bfd_link_pic (info)
1519 && (info->symbolic
1520 || h->dynindx == -1
1521 || h->forced_local)
1522 && h->def_regular)
1524 rela.r_info = ELF32_R_INFO (0, R_LM32_RELATIVE);
1525 rela.r_addend = (h->root.u.def.value
1526 + h->root.u.def.section->output_section->vma
1527 + h->root.u.def.section->output_offset);
1529 else
1531 BFD_ASSERT ((h->got.offset & 1) == 0);
1532 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got.offset);
1533 rela.r_info = ELF32_R_INFO (h->dynindx, R_LM32_GLOB_DAT);
1534 rela.r_addend = 0;
1537 loc = srela->contents;
1538 loc += srela->reloc_count * sizeof (Elf32_External_Rela);
1539 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1540 ++srela->reloc_count;
1543 if (h->needs_copy)
1545 asection *s;
1546 Elf_Internal_Rela rela;
1548 /* This symbols needs a copy reloc. Set it up. */
1549 BFD_ASSERT (h->dynindx != -1
1550 && (h->root.type == bfd_link_hash_defined
1551 || h->root.type == bfd_link_hash_defweak));
1553 s = bfd_get_linker_section (htab->root.dynobj, ".rela.bss");
1554 BFD_ASSERT (s != NULL);
1556 rela.r_offset = (h->root.u.def.value
1557 + h->root.u.def.section->output_section->vma
1558 + h->root.u.def.section->output_offset);
1559 rela.r_info = ELF32_R_INFO (h->dynindx, R_LM32_COPY);
1560 rela.r_addend = 0;
1561 loc = s->contents;
1562 loc += s->reloc_count * sizeof (Elf32_External_Rela);
1563 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
1564 ++s->reloc_count;
1567 /* Mark some specially defined symbols as absolute. */
1568 if (h == htab->root.hdynamic || h == htab->root.hgot)
1569 sym->st_shndx = SHN_ABS;
1571 return true;
1574 static enum elf_reloc_type_class
1575 lm32_elf_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
1576 const asection *rel_sec ATTRIBUTE_UNUSED,
1577 const Elf_Internal_Rela *rela)
1579 switch ((int) ELF32_R_TYPE (rela->r_info))
1581 case R_LM32_RELATIVE: return reloc_class_relative;
1582 case R_LM32_JMP_SLOT: return reloc_class_plt;
1583 case R_LM32_COPY: return reloc_class_copy;
1584 default: return reloc_class_normal;
1588 /* Adjust a symbol defined by a dynamic object and referenced by a
1589 regular object. The current definition is in some section of the
1590 dynamic object, but we're not including those sections. We have to
1591 change the definition to something the rest of the link can
1592 understand. */
1594 static bool
1595 lm32_elf_adjust_dynamic_symbol (struct bfd_link_info *info,
1596 struct elf_link_hash_entry *h)
1598 struct elf_lm32_link_hash_table *htab;
1599 bfd *dynobj;
1600 asection *s;
1602 dynobj = elf_hash_table (info)->dynobj;
1604 /* Make sure we know what is going on here. */
1605 BFD_ASSERT (dynobj != NULL
1606 && (h->needs_plt
1607 || h->is_weakalias
1608 || (h->def_dynamic
1609 && h->ref_regular
1610 && !h->def_regular)));
1612 /* If this is a function, put it in the procedure linkage table. We
1613 will fill in the contents of the procedure linkage table later,
1614 when we know the address of the .got section. */
1615 if (h->type == STT_FUNC
1616 || h->needs_plt)
1618 if (! bfd_link_pic (info)
1619 && !h->def_dynamic
1620 && !h->ref_dynamic
1621 && h->root.type != bfd_link_hash_undefweak
1622 && h->root.type != bfd_link_hash_undefined)
1624 /* This case can occur if we saw a PLT reloc in an input
1625 file, but the symbol was never referred to by a dynamic
1626 object. In such a case, we don't actually need to build
1627 a procedure linkage table, and we can just do a PCREL
1628 reloc instead. */
1629 h->plt.offset = (bfd_vma) -1;
1630 h->needs_plt = 0;
1633 return true;
1635 else
1636 h->plt.offset = (bfd_vma) -1;
1638 /* If this is a weak symbol, and there is a real definition, the
1639 processor independent code will have arranged for us to see the
1640 real definition first, and we can just use the same value. */
1641 if (h->is_weakalias)
1643 struct elf_link_hash_entry *def = weakdef (h);
1644 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
1645 h->root.u.def.section = def->root.u.def.section;
1646 h->root.u.def.value = def->root.u.def.value;
1647 return true;
1650 /* This is a reference to a symbol defined by a dynamic object which
1651 is not a function. */
1653 /* If we are creating a shared library, we must presume that the
1654 only references to the symbol are via the global offset table.
1655 For such cases we need not do anything here; the relocations will
1656 be handled correctly by relocate_section. */
1657 if (bfd_link_pic (info))
1658 return true;
1660 /* If there are no references to this symbol that do not use the
1661 GOT, we don't need to generate a copy reloc. */
1662 if (!h->non_got_ref)
1663 return true;
1665 /* If -z nocopyreloc was given, we won't generate them either. */
1666 if (0 && info->nocopyreloc)
1668 h->non_got_ref = 0;
1669 return true;
1672 /* If we don't find any dynamic relocs in read-only sections, then
1673 we'll be keeping the dynamic relocs and avoiding the copy reloc. */
1674 if (0 && !_bfd_elf_readonly_dynrelocs (h))
1676 h->non_got_ref = 0;
1677 return true;
1680 /* We must allocate the symbol in our .dynbss section, which will
1681 become part of the .bss section of the executable. There will be
1682 an entry for this symbol in the .dynsym section. The dynamic
1683 object will contain position independent code, so all references
1684 from the dynamic object to this symbol will go through the global
1685 offset table. The dynamic linker will use the .dynsym entry to
1686 determine the address it must put in the global offset table, so
1687 both the dynamic object and the regular object will refer to the
1688 same memory location for the variable. */
1690 htab = lm32_elf_hash_table (info);
1691 if (htab == NULL)
1692 return false;
1694 s = htab->sdynbss;
1695 BFD_ASSERT (s != NULL);
1697 /* We must generate a R_LM32_COPY reloc to tell the dynamic linker
1698 to copy the initial value out of the dynamic object and into the
1699 runtime process image. We need to remember the offset into the
1700 .rela.bss section we are going to use. */
1701 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
1703 asection *srel;
1705 srel = htab->srelbss;
1706 BFD_ASSERT (srel != NULL);
1707 srel->size += sizeof (Elf32_External_Rela);
1708 h->needs_copy = 1;
1711 return _bfd_elf_adjust_dynamic_copy (info, h, s);
1714 /* Allocate space in .plt, .got and associated reloc sections for
1715 dynamic relocs. */
1717 static bool
1718 allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
1720 struct bfd_link_info *info;
1721 struct elf_lm32_link_hash_table *htab;
1722 struct elf_dyn_relocs *p;
1724 if (h->root.type == bfd_link_hash_indirect)
1725 return true;
1727 info = (struct bfd_link_info *) inf;
1728 htab = lm32_elf_hash_table (info);
1729 if (htab == NULL)
1730 return false;
1732 if (htab->root.dynamic_sections_created
1733 && h->plt.refcount > 0)
1735 /* Make sure this symbol is output as a dynamic symbol.
1736 Undefined weak syms won't yet be marked as dynamic. */
1737 if (h->dynindx == -1
1738 && !h->forced_local)
1740 if (! bfd_elf_link_record_dynamic_symbol (info, h))
1741 return false;
1744 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, bfd_link_pic (info), h))
1746 asection *s = htab->root.splt;
1748 /* If this is the first .plt entry, make room for the special
1749 first entry. */
1750 if (s->size == 0)
1751 s->size += PLT_ENTRY_SIZE;
1753 h->plt.offset = s->size;
1755 /* If this symbol is not defined in a regular file, and we are
1756 not generating a shared library, then set the symbol to this
1757 location in the .plt. This is required to make function
1758 pointers compare as equal between the normal executable and
1759 the shared library. */
1760 if (! bfd_link_pic (info)
1761 && !h->def_regular)
1763 h->root.u.def.section = s;
1764 h->root.u.def.value = h->plt.offset;
1767 /* Make room for this entry. */
1768 s->size += PLT_ENTRY_SIZE;
1770 /* We also need to make an entry in the .got.plt section, which
1771 will be placed in the .got section by the linker script. */
1772 htab->root.sgotplt->size += 4;
1774 /* We also need to make an entry in the .rel.plt section. */
1775 htab->root.srelplt->size += sizeof (Elf32_External_Rela);
1777 else
1779 h->plt.offset = (bfd_vma) -1;
1780 h->needs_plt = 0;
1783 else
1785 h->plt.offset = (bfd_vma) -1;
1786 h->needs_plt = 0;
1789 if (h->got.refcount > 0)
1791 asection *s;
1792 bool dyn;
1794 /* Make sure this symbol is output as a dynamic symbol.
1795 Undefined weak syms won't yet be marked as dynamic. */
1796 if (h->dynindx == -1
1797 && !h->forced_local)
1799 if (! bfd_elf_link_record_dynamic_symbol (info, h))
1800 return false;
1803 s = htab->root.sgot;
1805 h->got.offset = s->size;
1806 s->size += 4;
1807 dyn = htab->root.dynamic_sections_created;
1808 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h))
1809 htab->root.srelgot->size += sizeof (Elf32_External_Rela);
1811 else
1812 h->got.offset = (bfd_vma) -1;
1814 if (h->dyn_relocs == NULL)
1815 return true;
1817 /* In the shared -Bsymbolic case, discard space allocated for
1818 dynamic pc-relative relocs against symbols which turn out to be
1819 defined in regular objects. For the normal shared case, discard
1820 space for pc-relative relocs that have become local due to symbol
1821 visibility changes. */
1823 if (bfd_link_pic (info))
1825 if (h->def_regular
1826 && (h->forced_local
1827 || info->symbolic))
1829 struct elf_dyn_relocs **pp;
1831 for (pp = &h->dyn_relocs; (p = *pp) != NULL;)
1833 p->count -= p->pc_count;
1834 p->pc_count = 0;
1835 if (p->count == 0)
1836 *pp = p->next;
1837 else
1838 pp = &p->next;
1842 /* Also discard relocs on undefined weak syms with non-default
1843 visibility. */
1844 if (h->dyn_relocs != NULL
1845 && h->root.type == bfd_link_hash_undefweak)
1847 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
1848 h->dyn_relocs = NULL;
1850 /* Make sure undefined weak symbols are output as a dynamic
1851 symbol in PIEs. */
1852 else if (h->dynindx == -1
1853 && !h->forced_local)
1855 if (! bfd_elf_link_record_dynamic_symbol (info, h))
1856 return false;
1860 else
1862 /* For the non-shared case, discard space for relocs against
1863 symbols which turn out to need copy relocs or are not
1864 dynamic. */
1866 if (!h->non_got_ref
1867 && ((h->def_dynamic
1868 && !h->def_regular)
1869 || (htab->root.dynamic_sections_created
1870 && (h->root.type == bfd_link_hash_undefweak
1871 || h->root.type == bfd_link_hash_undefined))))
1873 /* Make sure this symbol is output as a dynamic symbol.
1874 Undefined weak syms won't yet be marked as dynamic. */
1875 if (h->dynindx == -1
1876 && !h->forced_local)
1878 if (! bfd_elf_link_record_dynamic_symbol (info, h))
1879 return false;
1882 /* If that succeeded, we know we'll be keeping all the
1883 relocs. */
1884 if (h->dynindx != -1)
1885 goto keep;
1888 h->dyn_relocs = NULL;
1890 keep: ;
1893 /* Finally, allocate space. */
1894 for (p = h->dyn_relocs; p != NULL; p = p->next)
1896 asection *sreloc = elf_section_data (p->sec)->sreloc;
1897 sreloc->size += p->count * sizeof (Elf32_External_Rela);
1900 return true;
1903 /* Set the sizes of the dynamic sections. */
1905 static bool
1906 lm32_elf_late_size_sections (bfd *output_bfd,
1907 struct bfd_link_info *info)
1909 struct elf_lm32_link_hash_table *htab;
1910 bfd *dynobj;
1911 asection *s;
1912 bool relocs;
1913 bfd *ibfd;
1915 htab = lm32_elf_hash_table (info);
1916 if (htab == NULL)
1917 return false;
1919 dynobj = htab->root.dynobj;
1920 if (dynobj == NULL)
1921 return true;
1923 if (htab->root.dynamic_sections_created)
1925 /* Set the contents of the .interp section to the interpreter. */
1926 if (bfd_link_executable (info) && !info->nointerp)
1928 s = bfd_get_linker_section (dynobj, ".interp");
1929 BFD_ASSERT (s != NULL);
1930 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
1931 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
1932 s->alloced = 1;
1936 /* Set up .got offsets for local syms, and space for local dynamic
1937 relocs. */
1938 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
1940 bfd_signed_vma *local_got;
1941 bfd_signed_vma *end_local_got;
1942 bfd_size_type locsymcount;
1943 Elf_Internal_Shdr *symtab_hdr;
1944 asection *srel;
1946 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
1947 continue;
1949 for (s = ibfd->sections; s != NULL; s = s->next)
1951 struct elf_dyn_relocs *p;
1953 for (p = ((struct elf_dyn_relocs *)
1954 elf_section_data (s)->local_dynrel);
1955 p != NULL;
1956 p = p->next)
1958 if (! bfd_is_abs_section (p->sec)
1959 && bfd_is_abs_section (p->sec->output_section))
1961 /* Input section has been discarded, either because
1962 it is a copy of a linkonce section or due to
1963 linker script /DISCARD/, so we'll be discarding
1964 the relocs too. */
1966 else if (p->count != 0)
1968 srel = elf_section_data (p->sec)->sreloc;
1969 srel->size += p->count * sizeof (Elf32_External_Rela);
1970 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
1971 info->flags |= DF_TEXTREL;
1976 local_got = elf_local_got_refcounts (ibfd);
1977 if (!local_got)
1978 continue;
1980 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
1981 locsymcount = symtab_hdr->sh_info;
1982 end_local_got = local_got + locsymcount;
1983 s = htab->root.sgot;
1984 srel = htab->root.srelgot;
1985 for (; local_got < end_local_got; ++local_got)
1987 if (*local_got > 0)
1989 *local_got = s->size;
1990 s->size += 4;
1991 if (bfd_link_pic (info))
1992 srel->size += sizeof (Elf32_External_Rela);
1994 else
1995 *local_got = (bfd_vma) -1;
1999 /* Allocate global sym .plt and .got entries, and space for global
2000 sym dynamic relocs. */
2001 elf_link_hash_traverse (&htab->root, allocate_dynrelocs, info);
2003 /* We now have determined the sizes of the various dynamic sections.
2004 Allocate memory for them. */
2005 relocs = false;
2006 for (s = dynobj->sections; s != NULL; s = s->next)
2008 if ((s->flags & SEC_LINKER_CREATED) == 0)
2009 continue;
2011 if (s == htab->root.splt
2012 || s == htab->root.sgot
2013 || s == htab->root.sgotplt
2014 || s == htab->sdynbss)
2016 /* Strip this section if we don't need it; see the
2017 comment below. */
2019 else if (startswith (bfd_section_name (s), ".rela"))
2021 if (s->size != 0 && s != htab->root.srelplt)
2022 relocs = true;
2024 /* We use the reloc_count field as a counter if we need
2025 to copy relocs into the output file. */
2026 s->reloc_count = 0;
2028 else
2029 /* It's not one of our sections, so don't allocate space. */
2030 continue;
2032 if (s->size == 0)
2034 /* If we don't need this section, strip it from the
2035 output file. This is mostly to handle .rela.bss and
2036 .rela.plt. We must create both sections in
2037 create_dynamic_sections, because they must be created
2038 before the linker maps input sections to output
2039 sections. The linker does that before
2040 adjust_dynamic_symbol is called, and it is that
2041 function which decides whether anything needs to go
2042 into these sections. */
2043 s->flags |= SEC_EXCLUDE;
2044 continue;
2047 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2048 continue;
2050 /* Allocate memory for the section contents. We use bfd_zalloc
2051 here in case unused entries are not reclaimed before the
2052 section's contents are written out. This should not happen,
2053 but this way if it does, we get a R_LM32_NONE reloc instead
2054 of garbage. */
2055 s->contents = bfd_zalloc (dynobj, s->size);
2056 if (s->contents == NULL)
2057 return false;
2058 s->alloced = 1;
2061 if (!_bfd_elf_add_dynamic_tags (output_bfd, info, relocs))
2062 return false;
2064 /* Allocate .rofixup section. */
2065 if (IS_FDPIC (output_bfd))
2067 struct weak_symbol_list *list_start = NULL, *list_end = NULL;
2068 int rgot_weak_count = 0;
2069 int r32_count = 0;
2070 int rgot_count ATTRIBUTE_UNUSED = 0;
2071 /* Look for deleted sections. */
2072 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
2074 for (s = ibfd->sections; s != NULL; s = s->next)
2076 if (s->reloc_count)
2078 /* Count relocs that need .rofixup entires. */
2079 Elf_Internal_Rela *internal_relocs, *end;
2080 internal_relocs = elf_section_data (s)->relocs;
2081 if (internal_relocs == NULL)
2082 internal_relocs = (_bfd_elf_link_read_relocs (ibfd, s, NULL, NULL, false));
2083 if (internal_relocs != NULL)
2085 end = internal_relocs + s->reloc_count;
2086 while (internal_relocs < end)
2088 Elf_Internal_Shdr *symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
2089 struct elf_link_hash_entry **sym_hashes = elf_sym_hashes (ibfd);
2090 unsigned long r_symndx;
2091 struct elf_link_hash_entry *h;
2093 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
2094 sym_hashes = elf_sym_hashes (ibfd);
2095 r_symndx = ELF32_R_SYM (internal_relocs->r_info);
2096 h = NULL;
2097 if (r_symndx < symtab_hdr->sh_info)
2100 else
2102 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2103 while (h->root.type == bfd_link_hash_indirect
2104 || h->root.type == bfd_link_hash_warning)
2105 h = (struct elf_link_hash_entry *) h->root.u.i.link;
2108 /* Don't generate entries for weak symbols. */
2109 if (!h || (h && h->root.type != bfd_link_hash_undefweak))
2111 if (!discarded_section (s) && !((bfd_section_flags (s) & SEC_ALLOC) == 0))
2113 switch (ELF32_R_TYPE (internal_relocs->r_info))
2115 case R_LM32_32:
2116 r32_count++;
2117 break;
2118 case R_LM32_16_GOT:
2119 rgot_count++;
2120 break;
2124 else
2126 struct weak_symbol_list *current, *new_entry;
2127 /* Is this symbol already in the list? */
2128 for (current = list_start; current; current = current->next)
2130 if (!strcmp (current->name, h->root.root.string))
2131 break;
2133 if (!current && !discarded_section (s) && (bfd_section_flags (s) & SEC_ALLOC))
2135 /* Will this have an entry in the GOT. */
2136 if (ELF32_R_TYPE (internal_relocs->r_info) == R_LM32_16_GOT)
2138 /* Create a new entry. */
2139 new_entry = malloc (sizeof (struct weak_symbol_list));
2140 if (!new_entry)
2141 return false;
2142 new_entry->name = h->root.root.string;
2143 new_entry->next = NULL;
2144 /* Add to list */
2145 if (list_start == NULL)
2147 list_start = new_entry;
2148 list_end = new_entry;
2150 else
2152 list_end->next = new_entry;
2153 list_end = new_entry;
2155 /* Increase count of undefined weak symbols in the got. */
2156 rgot_weak_count++;
2160 internal_relocs++;
2163 else
2164 return false;
2168 /* Free list. */
2169 while (list_start)
2171 list_end = list_start->next;
2172 free (list_start);
2173 list_start = list_end;
2176 /* Size sections. */
2177 lm32fdpic_fixup32_section (info)->size
2178 = (r32_count + (htab->root.sgot->size / 4) - rgot_weak_count + 1) * 4;
2179 if (lm32fdpic_fixup32_section (info)->size == 0)
2180 lm32fdpic_fixup32_section (info)->flags |= SEC_EXCLUDE;
2181 else
2183 lm32fdpic_fixup32_section (info)->contents =
2184 bfd_zalloc (dynobj, lm32fdpic_fixup32_section (info)->size);
2185 if (lm32fdpic_fixup32_section (info)->contents == NULL)
2186 return false;
2187 lm32fdpic_fixup32_section (info)->alloced = 1;
2191 return true;
2194 /* Create dynamic sections when linking against a dynamic object. */
2196 static bool
2197 lm32_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
2199 struct elf_lm32_link_hash_table *htab;
2200 flagword flags, pltflags;
2201 asection *s;
2202 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
2203 int ptralign = 2; /* 32bit */
2205 htab = lm32_elf_hash_table (info);
2206 if (htab == NULL)
2207 return false;
2209 /* Make sure we have a GOT - For the case where we have a dynamic object
2210 but none of the relocs in check_relocs */
2211 if (!_bfd_elf_create_got_section (abfd, info))
2212 return false;
2213 if (IS_FDPIC (abfd) && (htab->sfixup32 == NULL))
2215 if (! create_rofixup_section (abfd, info))
2216 return false;
2219 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
2220 .rel[a].bss sections. */
2221 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2222 | SEC_LINKER_CREATED);
2224 pltflags = flags;
2225 pltflags |= SEC_CODE;
2226 if (bed->plt_not_loaded)
2227 pltflags &= ~ (SEC_LOAD | SEC_HAS_CONTENTS);
2228 if (bed->plt_readonly)
2229 pltflags |= SEC_READONLY;
2231 s = bfd_make_section_anyway_with_flags (abfd, ".plt", pltflags);
2232 htab->root.splt = s;
2233 if (s == NULL
2234 || !bfd_set_section_alignment (s, bed->plt_alignment))
2235 return false;
2237 if (bed->want_plt_sym)
2239 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
2240 .plt section. */
2241 struct bfd_link_hash_entry *bh = NULL;
2242 struct elf_link_hash_entry *h;
2244 if (! (_bfd_generic_link_add_one_symbol
2245 (info, abfd, "_PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL, s,
2246 (bfd_vma) 0, NULL, false,
2247 get_elf_backend_data (abfd)->collect, &bh)))
2248 return false;
2249 h = (struct elf_link_hash_entry *) bh;
2250 h->def_regular = 1;
2251 h->type = STT_OBJECT;
2252 htab->root.hplt = h;
2254 if (bfd_link_pic (info)
2255 && ! bfd_elf_link_record_dynamic_symbol (info, h))
2256 return false;
2259 s = bfd_make_section_anyway_with_flags (abfd,
2260 bed->default_use_rela_p
2261 ? ".rela.plt" : ".rel.plt",
2262 flags | SEC_READONLY);
2263 htab->root.srelplt = s;
2264 if (s == NULL
2265 || !bfd_set_section_alignment (s, ptralign))
2266 return false;
2268 if (htab->root.sgot == NULL
2269 && !_bfd_elf_create_got_section (abfd, info))
2270 return false;
2272 if (bed->want_dynbss)
2274 /* The .dynbss section is a place to put symbols which are defined
2275 by dynamic objects, are referenced by regular objects, and are
2276 not functions. We must allocate space for them in the process
2277 image and use a R_*_COPY reloc to tell the dynamic linker to
2278 initialize them at run time. The linker script puts the .dynbss
2279 section into the .bss section of the final image. */
2280 s = bfd_make_section_anyway_with_flags (abfd, ".dynbss",
2281 SEC_ALLOC | SEC_LINKER_CREATED);
2282 htab->sdynbss = s;
2283 if (s == NULL)
2284 return false;
2285 /* The .rel[a].bss section holds copy relocs. This section is not
2286 normally needed. We need to create it here, though, so that the
2287 linker will map it to an output section. We can't just create it
2288 only if we need it, because we will not know whether we need it
2289 until we have seen all the input files, and the first time the
2290 main linker code calls BFD after examining all the input files
2291 (size_dynamic_sections) the input sections have already been
2292 mapped to the output sections. If the section turns out not to
2293 be needed, we can discard it later. We will never need this
2294 section when generating a shared object, since they do not use
2295 copy relocs. */
2296 if (! bfd_link_pic (info))
2298 s = bfd_make_section_anyway_with_flags (abfd,
2299 (bed->default_use_rela_p
2300 ? ".rela.bss" : ".rel.bss"),
2301 flags | SEC_READONLY);
2302 htab->srelbss = s;
2303 if (s == NULL
2304 || !bfd_set_section_alignment (s, ptralign))
2305 return false;
2309 return true;
2312 static bool
2313 lm32_elf_early_size_sections (bfd *output_bfd, struct bfd_link_info *info)
2315 if (!bfd_link_relocatable (info))
2317 if (!bfd_elf_stack_segment_size (output_bfd, info,
2318 "__stacksize", DEFAULT_STACK_SIZE))
2319 return false;
2321 asection *sec = bfd_get_section_by_name (output_bfd, ".stack");
2322 if (sec)
2323 sec->size = info->stacksize >= 0 ? info->stacksize : 0;
2326 return true;
2329 static bool
2330 lm32_elf_fdpic_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2332 unsigned i;
2334 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2335 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2336 return true;
2338 if (! _bfd_elf_copy_private_bfd_data (ibfd, obfd))
2339 return false;
2341 if (! elf_tdata (ibfd) || ! elf_tdata (ibfd)->phdr
2342 || ! elf_tdata (obfd) || ! elf_tdata (obfd)->phdr)
2343 return true;
2345 /* Copy the stack size. */
2346 for (i = 0; i < elf_elfheader (ibfd)->e_phnum; i++)
2347 if (elf_tdata (ibfd)->phdr[i].p_type == PT_GNU_STACK)
2349 Elf_Internal_Phdr *iphdr = &elf_tdata (ibfd)->phdr[i];
2351 for (i = 0; i < elf_elfheader (obfd)->e_phnum; i++)
2352 if (elf_tdata (obfd)->phdr[i].p_type == PT_GNU_STACK)
2354 memcpy (&elf_tdata (obfd)->phdr[i], iphdr, sizeof (*iphdr));
2356 /* Rewrite the phdrs, since we're only called after they were first written. */
2357 if (bfd_seek (obfd, (bfd_signed_vma) get_elf_backend_data (obfd)
2358 ->s->sizeof_ehdr, SEEK_SET) != 0
2359 || get_elf_backend_data (obfd)->s->write_out_phdrs (obfd, elf_tdata (obfd)->phdr,
2360 elf_elfheader (obfd)->e_phnum) != 0)
2361 return false;
2362 break;
2365 break;
2368 return true;
2372 #define ELF_ARCH bfd_arch_lm32
2373 #define ELF_TARGET_ID LM32_ELF_DATA
2374 #define ELF_MACHINE_CODE EM_LATTICEMICO32
2375 #define ELF_MAXPAGESIZE 0x1000
2377 #define TARGET_BIG_SYM lm32_elf32_vec
2378 #define TARGET_BIG_NAME "elf32-lm32"
2380 #define bfd_elf32_bfd_reloc_type_lookup lm32_reloc_type_lookup
2381 #define bfd_elf32_bfd_reloc_name_lookup lm32_reloc_name_lookup
2382 #define elf_info_to_howto lm32_info_to_howto_rela
2383 #define elf_info_to_howto_rel NULL
2384 #define elf_backend_rela_normal 1
2385 #define elf_backend_object_p lm32_elf_object_p
2386 #define elf_backend_final_write_processing lm32_elf_final_write_processing
2387 #define elf_backend_stack_align 8
2388 #define elf_backend_can_gc_sections 1
2389 #define elf_backend_can_refcount 1
2390 #define elf_backend_gc_mark_hook lm32_elf_gc_mark_hook
2391 #define elf_backend_plt_readonly 1
2392 #define elf_backend_want_got_plt 1
2393 #define elf_backend_want_plt_sym 0
2394 #define elf_backend_got_header_size 12
2395 #define elf_backend_dtrel_excludes_plt 1
2396 #define bfd_elf32_bfd_link_hash_table_create lm32_elf_link_hash_table_create
2397 #define elf_backend_check_relocs lm32_elf_check_relocs
2398 #define elf_backend_reloc_type_class lm32_elf_reloc_type_class
2399 #define elf_backend_late_size_sections lm32_elf_late_size_sections
2400 #define elf_backend_omit_section_dynsym _bfd_elf_omit_section_dynsym_all
2401 #define elf_backend_create_dynamic_sections lm32_elf_create_dynamic_sections
2402 #define elf_backend_finish_dynamic_sections lm32_elf_finish_dynamic_sections
2403 #define elf_backend_adjust_dynamic_symbol lm32_elf_adjust_dynamic_symbol
2404 #define elf_backend_finish_dynamic_symbol lm32_elf_finish_dynamic_symbol
2405 #define elf_backend_relocate_section lm32_elf_relocate_section
2407 #include "elf32-target.h"
2409 #undef ELF_MAXPAGESIZE
2410 #define ELF_MAXPAGESIZE 0x4000
2413 #undef TARGET_BIG_SYM
2414 #define TARGET_BIG_SYM lm32_elf32_fdpic_vec
2415 #undef TARGET_BIG_NAME
2416 #define TARGET_BIG_NAME "elf32-lm32fdpic"
2417 #undef elf32_bed
2418 #define elf32_bed elf32_lm32fdpic_bed
2420 #undef elf_backend_early_size_sections
2421 #define elf_backend_early_size_sections lm32_elf_early_size_sections
2422 #undef bfd_elf32_bfd_copy_private_bfd_data
2423 #define bfd_elf32_bfd_copy_private_bfd_data lm32_elf_fdpic_copy_private_bfd_data
2425 #include "elf32-target.h"